Whamcloud - gitweb
daa899405d95fc532fe8fc319d8bf1f930f18060
[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_25a() {
1391         echo '== symlink sanity ============================================='
1392
1393         test_mkdir $DIR/d25
1394         ln -s d25 $DIR/s25
1395         touch $DIR/s25/foo ||
1396                 error "File creation in symlinked directory failed"
1397 }
1398 run_test 25a "create file in symlinked directory ==============="
1399
1400 test_25b() {
1401         [ ! -d $DIR/d25 ] && test_25a
1402         $CHECKSTAT -t file $DIR/s25/foo || error "$DIR/s25/foo not file type"
1403 }
1404 run_test 25b "lookup file in symlinked directory ==============="
1405
1406 test_26a() {
1407         test_mkdir $DIR/d26
1408         test_mkdir $DIR/d26/d26-2
1409         ln -s d26/d26-2 $DIR/s26
1410         touch $DIR/s26/foo || error "File creation failed"
1411 }
1412 run_test 26a "multiple component symlink ======================="
1413
1414 test_26b() {
1415         test_mkdir -p $DIR/$tdir/d26-2
1416         ln -s $tdir/d26-2/foo $DIR/s26-2
1417         touch $DIR/s26-2 || error "File creation failed"
1418 }
1419 run_test 26b "multiple component symlink at end of lookup ======"
1420
1421 test_26c() {
1422         test_mkdir $DIR/d26.2
1423         touch $DIR/d26.2/foo
1424         ln -s d26.2 $DIR/s26.2-1
1425         ln -s s26.2-1 $DIR/s26.2-2
1426         ln -s s26.2-2 $DIR/s26.2-3
1427         chmod 0666 $DIR/s26.2-3/foo
1428 }
1429 run_test 26c "chain of symlinks"
1430
1431 # recursive symlinks (bug 439)
1432 test_26d() {
1433         ln -s d26-3/foo $DIR/d26-3
1434 }
1435 run_test 26d "create multiple component recursive symlink"
1436
1437 test_26e() {
1438         [ ! -h $DIR/d26-3 ] && test_26d
1439         rm $DIR/d26-3
1440 }
1441 run_test 26e "unlink multiple component recursive symlink"
1442
1443 # recursive symlinks (bug 7022)
1444 test_26f() {
1445         test_mkdir $DIR/$tdir
1446         test_mkdir $DIR/$tdir/$tfile
1447         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1448         test_mkdir -p lndir/bar1
1449         test_mkdir $DIR/$tdir/$tfile/$tfile
1450         cd $tfile                || error "cd $tfile failed"
1451         ln -s .. dotdot          || error "ln dotdot failed"
1452         ln -s dotdot/lndir lndir || error "ln lndir failed"
1453         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1454         output=`ls $tfile/$tfile/lndir/bar1`
1455         [ "$output" = bar1 ] && error "unexpected output"
1456         rm -r $tfile             || error "rm $tfile failed"
1457         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1458 }
1459 run_test 26f "rm -r of a directory which has recursive symlink"
1460
1461 test_27a() {
1462         test_mkdir $DIR/$tdir
1463         $LFS getstripe $DIR/$tdir
1464         $LFS setstripe -c 1 $DIR/$tdir/$tfile || error "setstripe failed"
1465         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1466         cp /etc/hosts $DIR/$tdir/$tfile || error "Can't copy to one stripe file"
1467 }
1468 run_test 27a "one stripe file"
1469
1470 test_27b() {
1471         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1472
1473         test_mkdir $DIR/$tdir
1474         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1475         $LFS getstripe -c $DIR/$tdir/$tfile
1476         [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
1477                 error "two-stripe file doesn't have two stripes"
1478
1479         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1480 }
1481 run_test 27b "create and write to two stripe file"
1482
1483 test_27d() {
1484         test_mkdir $DIR/$tdir
1485         $LFS setstripe -c 0 -i -1 -S 0 $DIR/$tdir/$tfile ||
1486                 error "setstripe failed"
1487         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1488         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1489 }
1490 run_test 27d "create file with default settings"
1491
1492 test_27e() {
1493         # LU-5839 adds check for existed layout before setting it
1494         [[ $MDS1_VERSION -lt $(version_code 2.7.56) ]] &&
1495                 skip "Need MDS version at least 2.7.56"
1496
1497         test_mkdir $DIR/$tdir
1498         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1499         $LFS setstripe -c 2 $DIR/$tdir/$tfile && error "setstripe worked twice"
1500         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1501 }
1502 run_test 27e "setstripe existing file (should return error)"
1503
1504 test_27f() {
1505         test_mkdir $DIR/$tdir
1506         $LFS setstripe -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1507                 error "$LFS setstripe $DIR/$tdir/$tfile failed"
1508         $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1509                 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1510         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1511         $LFS getstripe $DIR/$tdir/$tfile || error "$LFS getstripe failed"
1512 }
1513 run_test 27f "setstripe with bad stripe size (should return error)"
1514
1515 test_27g() {
1516         test_mkdir $DIR/$tdir
1517         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1518         $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "no stripe info" ||
1519                 error "$DIR/$tdir/$tfile has object"
1520 }
1521 run_test 27g "$LFS getstripe with no objects"
1522
1523 test_27i() {
1524         test_mkdir $DIR/$tdir
1525         touch $DIR/$tdir/$tfile || error "touch failed"
1526         [[ $($LFS getstripe -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1527                 error "missing objects"
1528 }
1529 run_test 27i "$LFS getstripe with some objects"
1530
1531 test_27j() {
1532         test_mkdir $DIR/$tdir
1533         $LFS setstripe -i $OSTCOUNT $DIR/$tdir/$tfile &&
1534                 error "setstripe failed" || true
1535 }
1536 run_test 27j "setstripe with bad stripe offset (should return error)"
1537
1538 test_27k() { # bug 2844
1539         test_mkdir $DIR/$tdir
1540         local file=$DIR/$tdir/$tfile
1541         local ll_max_blksize=$((4 * 1024 * 1024))
1542         $LFS setstripe -S 67108864 $file || error "setstripe failed"
1543         local blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1544         [ $blksize -le $ll_max_blksize ] || error "1:$blksize > $ll_max_blksize"
1545         dd if=/dev/zero of=$file bs=4k count=1
1546         blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1547         [ $blksize -le $ll_max_blksize ] || error "2:$blksize > $ll_max_blksize"
1548 }
1549 run_test 27k "limit i_blksize for broken user apps"
1550
1551 test_27l() {
1552         mcreate $DIR/$tfile || error "creating file"
1553         $RUNAS $LFS setstripe -c 1 $DIR/$tfile &&
1554                 error "setstripe should have failed" || true
1555 }
1556 run_test 27l "check setstripe permissions (should return error)"
1557
1558 test_27m() {
1559         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1560
1561         ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1562                    head -n1)
1563         if [[ $ORIGFREE -gt $MAXFREE ]]; then
1564                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1565         fi
1566         trap simple_cleanup_common EXIT
1567         test_mkdir $DIR/$tdir
1568         $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.1
1569         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=1024 count=$MAXFREE &&
1570                 error "dd should fill OST0"
1571         i=2
1572         while $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.$i; do
1573                 i=$((i + 1))
1574                 [ $i -gt 256 ] && break
1575         done
1576         i=$((i + 1))
1577         touch $DIR/$tdir/$tfile.$i
1578         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1579             awk '{print $1}'| grep -w "0") ] &&
1580                 error "OST0 was full but new created file still use it"
1581         i=$((i + 1))
1582         touch $DIR/$tdir/$tfile.$i
1583         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1584             awk '{print $1}'| grep -w "0") ] &&
1585                 error "OST0 was full but new created file still use it"
1586         simple_cleanup_common
1587 }
1588 run_test 27m "create file while OST0 was full"
1589
1590 sleep_maxage() {
1591         local delay=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage |
1592                       awk '{ print $1 * 2; exit; }')
1593         sleep $delay
1594 }
1595
1596 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1597 # if the OST isn't full anymore.
1598 reset_enospc() {
1599         local OSTIDX=${1:-""}
1600
1601         local list=$(comma_list $(osts_nodes))
1602         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1603
1604         do_nodes $list lctl set_param fail_loc=0
1605         sync    # initiate all OST_DESTROYs from MDS to OST
1606         sleep_maxage
1607 }
1608
1609 exhaust_precreations() {
1610         local OSTIDX=$1
1611         local FAILLOC=$2
1612         local FAILIDX=${3:-$OSTIDX}
1613         local ofacet=ost$((OSTIDX + 1))
1614
1615         test_mkdir -p -c1 $DIR/$tdir
1616         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
1617         local mfacet=mds$((mdtidx + 1))
1618         echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1619
1620         local OST=$(ostname_from_index $OSTIDX)
1621
1622         # on the mdt's osc
1623         local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1624         local last_id=$(do_facet $mfacet lctl get_param -n \
1625                         osc.$mdtosc_proc1.prealloc_last_id)
1626         local next_id=$(do_facet $mfacet lctl get_param -n \
1627                         osc.$mdtosc_proc1.prealloc_next_id)
1628
1629         local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1630         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1631
1632         test_mkdir -p $DIR/$tdir/${OST}
1633         $LFS setstripe -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1634 #define OBD_FAIL_OST_ENOSPC              0x215
1635         do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1636         echo "Creating to objid $last_id on ost $OST..."
1637         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1638         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1639         do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1640         sleep_maxage
1641 }
1642
1643 exhaust_all_precreations() {
1644         local i
1645         for (( i=0; i < OSTCOUNT; i++ )) ; do
1646                 exhaust_precreations $i $1 -1
1647         done
1648 }
1649
1650 test_27n() {
1651         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1652         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1653         remote_mds_nodsh && skip "remote MDS with nodsh"
1654         remote_ost_nodsh && skip "remote OST with nodsh"
1655
1656         reset_enospc
1657         rm -f $DIR/$tdir/$tfile
1658         exhaust_precreations 0 0x80000215
1659         $LFS setstripe -c -1 $DIR/$tdir || error "setstripe failed"
1660         touch $DIR/$tdir/$tfile || error "touch failed"
1661         $LFS getstripe $DIR/$tdir/$tfile
1662         reset_enospc
1663 }
1664 run_test 27n "create file with some full OSTs"
1665
1666 test_27o() {
1667         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1668         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1669         remote_mds_nodsh && skip "remote MDS with nodsh"
1670         remote_ost_nodsh && skip "remote OST with nodsh"
1671
1672         reset_enospc
1673         rm -f $DIR/$tdir/$tfile
1674         exhaust_all_precreations 0x215
1675
1676         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1677
1678         reset_enospc
1679         rm -rf $DIR/$tdir/*
1680 }
1681 run_test 27o "create file with all full OSTs (should error)"
1682
1683 test_27p() {
1684         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1685         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1686         remote_mds_nodsh && skip "remote MDS with nodsh"
1687         remote_ost_nodsh && skip "remote OST with nodsh"
1688
1689         reset_enospc
1690         rm -f $DIR/$tdir/$tfile
1691         test_mkdir $DIR/$tdir
1692
1693         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1694         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1695         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1696
1697         exhaust_precreations 0 0x80000215
1698         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1699         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1700         $LFS getstripe $DIR/$tdir/$tfile
1701
1702         reset_enospc
1703 }
1704 run_test 27p "append to a truncated file with some full OSTs"
1705
1706 test_27q() {
1707         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1708         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1709         remote_mds_nodsh && skip "remote MDS with nodsh"
1710         remote_ost_nodsh && skip "remote OST with nodsh"
1711
1712         reset_enospc
1713         rm -f $DIR/$tdir/$tfile
1714
1715         test_mkdir $DIR/$tdir
1716         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1717         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||
1718                 error "truncate $DIR/$tdir/$tfile failed"
1719         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1720
1721         exhaust_all_precreations 0x215
1722
1723         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1724         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1725
1726         reset_enospc
1727 }
1728 run_test 27q "append to truncated file with all OSTs full (should error)"
1729
1730 test_27r() {
1731         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1732         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1733         remote_mds_nodsh && skip "remote MDS with nodsh"
1734         remote_ost_nodsh && skip "remote OST with nodsh"
1735
1736         reset_enospc
1737         rm -f $DIR/$tdir/$tfile
1738         exhaust_precreations 0 0x80000215
1739
1740         $LFS setstripe -i 0 -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1741
1742         reset_enospc
1743 }
1744 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1745
1746 test_27s() { # bug 10725
1747         test_mkdir $DIR/$tdir
1748         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1749         local stripe_count=0
1750         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1751         $LFS setstripe -S $stripe_size -c $stripe_count $DIR/$tdir &&
1752                 error "stripe width >= 2^32 succeeded" || true
1753
1754 }
1755 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1756
1757 test_27t() { # bug 10864
1758         WDIR=$(pwd)
1759         WLFS=$(which lfs)
1760         cd $DIR
1761         touch $tfile
1762         $WLFS getstripe $tfile
1763         cd $WDIR
1764 }
1765 run_test 27t "check that utils parse path correctly"
1766
1767 test_27u() { # bug 4900
1768         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1769         remote_mds_nodsh && skip "remote MDS with nodsh"
1770
1771         local index
1772         local list=$(comma_list $(mdts_nodes))
1773
1774 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1775         do_nodes $list $LCTL set_param fail_loc=0x139
1776         test_mkdir -p $DIR/$tdir
1777         trap simple_cleanup_common EXIT
1778         createmany -o $DIR/$tdir/t- 1000
1779         do_nodes $list $LCTL set_param fail_loc=0
1780
1781         TLOG=$TMP/$tfile.getstripe
1782         $LFS getstripe $DIR/$tdir > $TLOG
1783         OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
1784         unlinkmany $DIR/$tdir/t- 1000
1785         trap 0
1786         [[ $OBJS -gt 0 ]] &&
1787                 error "$OBJS objects created on OST-0. See $TLOG" ||
1788                 rm -f $TLOG
1789 }
1790 run_test 27u "skip object creation on OSC w/o objects"
1791
1792 test_27v() { # bug 4900
1793         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1794         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1795         remote_mds_nodsh && skip "remote MDS with nodsh"
1796         remote_ost_nodsh && skip "remote OST with nodsh"
1797
1798         exhaust_all_precreations 0x215
1799         reset_enospc
1800
1801         $LFS setstripe -c 1 $DIR/$tdir         # 1 stripe / file
1802
1803         touch $DIR/$tdir/$tfile
1804         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1805         # all except ost1
1806         for (( i=1; i < OSTCOUNT; i++ )); do
1807                 do_facet ost$i lctl set_param fail_loc=0x705
1808         done
1809         local START=`date +%s`
1810         createmany -o $DIR/$tdir/$tfile 32
1811
1812         local FINISH=`date +%s`
1813         local TIMEOUT=`lctl get_param -n timeout`
1814         local PROCESS=$((FINISH - START))
1815         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1816                error "$FINISH - $START >= $TIMEOUT / 2"
1817         sleep $((TIMEOUT / 2 - PROCESS))
1818         reset_enospc
1819 }
1820 run_test 27v "skip object creation on slow OST"
1821
1822 test_27w() { # bug 10997
1823         test_mkdir $DIR/$tdir
1824         $LFS setstripe -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1825         [ $($LFS getstripe -S $DIR/$tdir/f0) -ne 65536 ] &&
1826                 error "stripe size $size != 65536" || true
1827         [ $($LFS getstripe -d $DIR/$tdir | grep -c "stripe_count") -eq 0 ] &&
1828                 error "$LFS getstripe -d $DIR/$tdir no 'stripe_count'" || true
1829 }
1830 run_test 27w "check $LFS setstripe -S and getstrip -d options"
1831
1832 test_27wa() {
1833         [[ $OSTCOUNT -lt 2 ]] &&
1834                 skip_env "skipping multiple stripe count/offset test"
1835
1836         test_mkdir $DIR/$tdir
1837         for i in $(seq 1 $OSTCOUNT); do
1838                 offset=$((i - 1))
1839                 $LFS setstripe -c $i -i $offset $DIR/$tdir/f$i ||
1840                         error "setstripe -c $i -i $offset failed"
1841                 count=$($LFS getstripe -c $DIR/$tdir/f$i)
1842                 index=$($LFS getstripe -i $DIR/$tdir/f$i)
1843                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1844                 [ $index -ne $offset ] &&
1845                         error "stripe offset $index != $offset" || true
1846         done
1847 }
1848 run_test 27wa "check $LFS setstripe -c -i options"
1849
1850 test_27x() {
1851         remote_ost_nodsh && skip "remote OST with nodsh"
1852         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1853         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1854
1855         OFFSET=$(($OSTCOUNT - 1))
1856         OSTIDX=0
1857         local OST=$(ostname_from_index $OSTIDX)
1858
1859         test_mkdir $DIR/$tdir
1860         $LFS setstripe -c 1 $DIR/$tdir  # 1 stripe per file
1861         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1862         sleep_maxage
1863         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1864         for i in $(seq 0 $OFFSET); do
1865                 [ $($LFS getstripe $DIR/$tdir/$tfile$i | grep -A 10 obdidx |
1866                         awk '{print $1}' | grep -w "$OSTIDX") ] &&
1867                 error "OST0 was degraded but new created file still use it"
1868         done
1869         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1870 }
1871 run_test 27x "create files while OST0 is degraded"
1872
1873 test_27y() {
1874         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1875         remote_mds_nodsh && skip "remote MDS with nodsh"
1876         remote_ost_nodsh && skip "remote OST with nodsh"
1877         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1878
1879         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1880         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1881                 osc.$mdtosc.prealloc_last_id)
1882         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1883                 osc.$mdtosc.prealloc_next_id)
1884         local fcount=$((last_id - next_id))
1885         [[ $fcount -eq 0 ]] && skip "not enough space on OST0"
1886         [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
1887
1888         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1889                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1890         local OST_DEACTIVE_IDX=-1
1891         local OSC
1892         local OSTIDX
1893         local OST
1894
1895         for OSC in $MDS_OSCS; do
1896                 OST=$(osc_to_ost $OSC)
1897                 OSTIDX=$(index_from_ostuuid $OST)
1898                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1899                         OST_DEACTIVE_IDX=$OSTIDX
1900                 fi
1901                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1902                         echo $OSC "is Deactivated:"
1903                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1904                 fi
1905         done
1906
1907         OSTIDX=$(index_from_ostuuid $OST)
1908         test_mkdir $DIR/$tdir
1909         $LFS setstripe -c 1 $DIR/$tdir      # 1 stripe / file
1910
1911         for OSC in $MDS_OSCS; do
1912                 OST=$(osc_to_ost $OSC)
1913                 OSTIDX=$(index_from_ostuuid $OST)
1914                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1915                         echo $OST "is degraded:"
1916                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1917                                                 obdfilter.$OST.degraded=1
1918                 fi
1919         done
1920
1921         sleep_maxage
1922         createmany -o $DIR/$tdir/$tfile $fcount
1923
1924         for OSC in $MDS_OSCS; do
1925                 OST=$(osc_to_ost $OSC)
1926                 OSTIDX=$(index_from_ostuuid $OST)
1927                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1928                         echo $OST "is recovered from degraded:"
1929                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1930                                                 obdfilter.$OST.degraded=0
1931                 else
1932                         do_facet $SINGLEMDS lctl --device %$OSC activate
1933                 fi
1934         done
1935
1936         # all osp devices get activated, hence -1 stripe count restored
1937         local stripe_count=0
1938
1939         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1940         # devices get activated.
1941         sleep_maxage
1942         $LFS setstripe -c -1 $DIR/$tfile
1943         stripe_count=$($LFS getstripe -c $DIR/$tfile)
1944         rm -f $DIR/$tfile
1945         [ $stripe_count -ne $OSTCOUNT ] &&
1946                 error "Of $OSTCOUNT OSTs, only $stripe_count is available"
1947         return 0
1948 }
1949 run_test 27y "create files while OST0 is degraded and the rest inactive"
1950
1951 check_seq_oid()
1952 {
1953         log "check file $1"
1954
1955         lmm_count=$($LFS getstripe -c $1)
1956         lmm_seq=$($LFS getstripe -v $1 | awk '/lmm_seq/ { print $2 }')
1957         lmm_oid=$($LFS getstripe -v $1 | awk '/lmm_object_id/ { print $2 }')
1958
1959         local old_ifs="$IFS"
1960         IFS=$'[:]'
1961         fid=($($LFS path2fid $1))
1962         IFS="$old_ifs"
1963
1964         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1965         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1966
1967         # compare lmm_seq and lu_fid->f_seq
1968         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1969         # compare lmm_object_id and lu_fid->oid
1970         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1971
1972         # check the trusted.fid attribute of the OST objects of the file
1973         local have_obdidx=false
1974         local stripe_nr=0
1975         $LFS getstripe $1 | while read obdidx oid hex seq; do
1976                 # skip lines up to and including "obdidx"
1977                 [ -z "$obdidx" ] && break
1978                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1979                 $have_obdidx || continue
1980
1981                 local ost=$((obdidx + 1))
1982                 local dev=$(ostdevname $ost)
1983                 local oid_hex
1984
1985                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1986
1987                 seq=$(echo $seq | sed -e "s/^0x//g")
1988                 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
1989                         oid_hex=$(echo $oid)
1990                 else
1991                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1992                 fi
1993                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1994
1995                 local ff=""
1996                 #
1997                 # Don't unmount/remount the OSTs if we don't need to do that.
1998                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1999                 # update too, until that use mount/ll_decode_filter_fid/mount.
2000                 # Re-enable when debugfs will understand new filter_fid.
2001                 #
2002                 if [ $(facet_fstype ost$ost) == ldiskfs ]; then
2003                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
2004                                 $dev 2>/dev/null" | grep "parent=")
2005                 fi
2006                 if [ -z "$ff" ]; then
2007                         stop ost$ost
2008                         mount_fstype ost$ost
2009                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
2010                                 $(facet_mntpt ost$ost)/$obj_file)
2011                         unmount_fstype ost$ost
2012                         start ost$ost $dev $OST_MOUNT_OPTS
2013                         clients_up
2014                 fi
2015
2016                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
2017
2018                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
2019
2020                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
2021                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
2022                 #
2023                 # fid: parent=[0x200000400:0x1e:0x0] stripe=1 stripe_count=2 \
2024                 #       stripe_size=1048576 component_id=1 component_start=0 \
2025                 #       component_end=33554432
2026                 local ff_parent=$(sed -e 's/.*parent=.//' <<<$ff)
2027                 local ff_pseq=$(cut -d: -f1 <<<$ff_parent)
2028                 local ff_poid=$(cut -d: -f2 <<<$ff_parent)
2029                 local ff_pstripe
2030                 if grep -q 'stripe=' <<<$ff; then
2031                         ff_pstripe=$(sed -e 's/.*stripe=//' -e 's/ .*//' <<<$ff)
2032                 else
2033                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
2034                         # into f_ver in this case.  See comment on ff_parent.
2035                         ff_pstripe=$(cut -d: -f3 <<<$ff_parent | sed -e 's/]//')
2036                 fi
2037
2038                 # compare lmm_seq and filter_fid->ff_parent.f_seq
2039                 [ $ff_pseq = $lmm_seq ] ||
2040                         error "FF parent SEQ $ff_pseq != $lmm_seq"
2041                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
2042                 [ $ff_poid = $lmm_oid ] ||
2043                         error "FF parent OID $ff_poid != $lmm_oid"
2044                 (($ff_pstripe == $stripe_nr)) ||
2045                         error "FF stripe $ff_pstripe != $stripe_nr"
2046
2047                 stripe_nr=$((stripe_nr + 1))
2048                 [ $CLIENT_VERSION -lt $(version_code 2.9.55) ] &&
2049                         continue
2050                 if grep -q 'stripe_count=' <<<$ff; then
2051                         local ff_scnt=$(sed -e 's/.*stripe_count=//' \
2052                                             -e 's/ .*//' <<<$ff)
2053                         [ $lmm_count = $ff_scnt ] ||
2054                                 error "FF stripe count $lmm_count != $ff_scnt"
2055                 fi
2056         done
2057 }
2058
2059 test_27z() {
2060         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2061         remote_ost_nodsh && skip "remote OST with nodsh"
2062
2063         test_mkdir $DIR/$tdir
2064         $LFS setstripe -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
2065                 { error "setstripe -c -1 failed"; return 1; }
2066         # We need to send a write to every object to get parent FID info set.
2067         # This _should_ also work for setattr, but does not currently.
2068         # touch $DIR/$tdir/$tfile-1 ||
2069         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
2070                 { error "dd $tfile-1 failed"; return 2; }
2071         $LFS setstripe -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
2072                 { error "setstripe -c -1 failed"; return 3; }
2073         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
2074                 { error "dd $tfile-2 failed"; return 4; }
2075
2076         # make sure write RPCs have been sent to OSTs
2077         sync; sleep 5; sync
2078
2079         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
2080         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
2081 }
2082 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
2083
2084 test_27A() { # b=19102
2085         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2086
2087         save_layout_restore_at_exit $MOUNT
2088         $LFS setstripe -c 0 -i -1 -S 0 $MOUNT
2089         wait_update $HOSTNAME "$LFS getstripe -c $MOUNT | sed 's/  *//g'" "1" 20 ||
2090                 error "stripe count $($LFS getstripe -c $MOUNT) != 1"
2091         local default_size=$($LFS getstripe -S $MOUNT)
2092         local default_offset=$($LFS getstripe -i $MOUNT)
2093         local dsize=$(do_facet $SINGLEMDS \
2094                 "$LCTL get_param -n lod.$(facet_svc $SINGLEMDS)*.stripesize")
2095         [ $default_size -eq $dsize ] ||
2096                 error "stripe size $default_size != $dsize"
2097         [ $default_offset -eq -1 ] ||
2098                 error "stripe offset $default_offset != -1"
2099 }
2100 run_test 27A "check filesystem-wide default LOV EA values"
2101
2102 test_27B() { # LU-2523
2103         test_mkdir $DIR/$tdir
2104         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
2105         touch $DIR/$tdir/f0
2106         # open f1 with O_LOV_DELAY_CREATE
2107         # rename f0 onto f1
2108         # call setstripe ioctl on open file descriptor for f1
2109         # close
2110         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
2111                 $DIR/$tdir/f0
2112
2113         rm -f $DIR/$tdir/f1
2114         # open f1 with O_LOV_DELAY_CREATE
2115         # unlink f1
2116         # call setstripe ioctl on open file descriptor for f1
2117         # close
2118         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
2119
2120         # Allow multiop to fail in imitation of NFS's busted semantics.
2121         true
2122 }
2123 run_test 27B "call setstripe on open unlinked file/rename victim"
2124
2125 test_27C() { #LU-2871
2126         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2127
2128         declare -a ost_idx
2129         local index
2130         local found
2131         local i
2132         local j
2133
2134         test_mkdir $DIR/$tdir
2135         cd $DIR/$tdir
2136         for i in $(seq 0 $((OSTCOUNT - 1))); do
2137                 # set stripe across all OSTs starting from OST$i
2138                 $LFS setstripe -i $i -c -1 $tfile$i
2139                 # get striping information
2140                 ost_idx=($($LFS getstripe $tfile$i |
2141                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2142                 echo ${ost_idx[@]}
2143
2144                 # check the layout
2145                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2146                         error "${#ost_idx[@]} != $OSTCOUNT"
2147
2148                 for index in $(seq 0 $((OSTCOUNT - 1))); do
2149                         found=0
2150                         for j in $(echo ${ost_idx[@]}); do
2151                                 if [ $index -eq $j ]; then
2152                                         found=1
2153                                         break
2154                                 fi
2155                         done
2156                         [ $found = 1 ] ||
2157                                 error "Can not find $index in ${ost_idx[@]}"
2158                 done
2159         done
2160 }
2161 run_test 27C "check full striping across all OSTs"
2162
2163 test_27D() {
2164         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
2165         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
2166         remote_mds_nodsh && skip "remote MDS with nodsh"
2167
2168         local POOL=${POOL:-testpool}
2169         local first_ost=0
2170         local last_ost=$(($OSTCOUNT - 1))
2171         local ost_step=1
2172         local ost_list=$(seq $first_ost $ost_step $last_ost)
2173         local ost_range="$first_ost $last_ost $ost_step"
2174
2175         if ! combined_mgs_mds ; then
2176                 mount_mgs_client
2177         fi
2178
2179         test_mkdir $DIR/$tdir
2180         pool_add $POOL || error "pool_add failed"
2181         pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2182
2183         local skip27D
2184         [ $MDS1_VERSION -lt $(version_code 2.8.55) ] &&
2185                 skip27D+="-s 29"
2186         [ $MDS1_VERSION -lt $(version_code 2.9.55) -o \
2187           $CLIENT_VERSION -lt $(version_code 2.9.55) ] &&
2188                 skip27D+=" -s 30,31"
2189         llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT $skip27D ||
2190                 error "llapi_layout_test failed"
2191
2192         destroy_test_pools || error "destroy test pools failed"
2193
2194         if ! combined_mgs_mds ; then
2195                 umount_mgs_client
2196         fi
2197 }
2198 run_test 27D "validate llapi_layout API"
2199
2200 # Verify that default_easize is increased from its initial value after
2201 # accessing a widely striped file.
2202 test_27E() {
2203         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
2204         [ $CLIENT_VERSION -lt $(version_code 2.5.57) ] &&
2205                 skip "client does not have LU-3338 fix"
2206
2207         # 72 bytes is the minimum space required to store striping
2208         # information for a file striped across one OST:
2209         # (sizeof(struct lov_user_md_v3) +
2210         #  sizeof(struct lov_user_ost_data_v1))
2211         local min_easize=72
2212         $LCTL set_param -n llite.*.default_easize $min_easize ||
2213                 error "lctl set_param failed"
2214         local easize=$($LCTL get_param -n llite.*.default_easize)
2215
2216         [ $easize -eq $min_easize ] ||
2217                 error "failed to set default_easize"
2218
2219         $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2220                 error "setstripe failed"
2221         cat $DIR/$tfile
2222         rm $DIR/$tfile
2223
2224         easize=$($LCTL get_param -n llite.*.default_easize)
2225
2226         [ $easize -gt $min_easize ] ||
2227                 error "default_easize not updated"
2228 }
2229 run_test 27E "check that default extended attribute size properly increases"
2230
2231 test_27F() { # LU-5346/LU-7975
2232         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2233         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs"
2234         [[ $MDS1_VERSION -lt $(version_code 2.8.51) ]] &&
2235                 skip "Need MDS version at least 2.8.51"
2236         remote_ost_nodsh && skip "remote OST with nodsh"
2237
2238         test_mkdir $DIR/$tdir
2239         rm -f $DIR/$tdir/f0
2240         $LFS setstripe -c 2 $DIR/$tdir
2241
2242         # stop all OSTs to reproduce situation for LU-7975 ticket
2243         for num in $(seq $OSTCOUNT); do
2244                 stop ost$num
2245         done
2246
2247         # open/create f0 with O_LOV_DELAY_CREATE
2248         # truncate f0 to a non-0 size
2249         # close
2250         multiop $DIR/$tdir/f0 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T1050000c
2251
2252         $CHECKSTAT -s 1050000 $DIR/$tdir/f0 || error "checkstat failed"
2253         # open/write it again to force delayed layout creation
2254         cat /etc/hosts > $DIR/$tdir/f0 &
2255         catpid=$!
2256
2257         # restart OSTs
2258         for num in $(seq $OSTCOUNT); do
2259                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
2260                         error "ost$num failed to start"
2261         done
2262
2263         wait $catpid || error "cat failed"
2264
2265         cmp /etc/hosts $DIR/$tdir/f0 || error "cmp failed"
2266         [[ $($LFS getstripe -c $DIR/$tdir/f0) == 2 ]] ||
2267                 error "wrong stripecount"
2268
2269 }
2270 run_test 27F "Client resend delayed layout creation with non-zero size"
2271
2272 test_27G() { #LU-10629
2273         [ $MDS1_VERSION -lt $(version_code 2.11.51) ] &&
2274                 skip "Need MDS version at least 2.11.51"
2275         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
2276         remote_mds_nodsh && skip "remote MDS with nodsh"
2277         local POOL=${POOL:-testpool}
2278         local ostrange="0 0 1"
2279
2280         test_mkdir $DIR/$tdir
2281         pool_add $POOL || error "pool_add failed"
2282         pool_add_targets $POOL $ostrange || error "pool_add_targets failed"
2283         $LFS setstripe -p $POOL $DIR/$tdir
2284
2285         local pool=$($LFS getstripe -p $DIR/$tdir)
2286
2287         [ "$pool" = "$POOL" ] || error "Striping failed got '$pool' not '$POOL'"
2288
2289         $LFS setstripe -d $DIR/$tdir
2290
2291         pool=$($LFS getstripe -p $DIR/$tdir)
2292
2293         rmdir $DIR/$tdir
2294
2295         [ -z "$pool" ] || error "'$pool' is not empty"
2296 }
2297 run_test 27G "Clear OST pool from stripe"
2298
2299 test_27H() {
2300         [[ $MDS1_VERSION -le $(version_code 2.11.54) ]] &&
2301                 skip "Need MDS version newer than 2.11.54"
2302         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
2303         test_mkdir $DIR/$tdir
2304         $LFS setstripe -o 0 -o 2 $DIR/$tdir || error "setstripe failed"
2305         touch $DIR/$tdir/$tfile
2306         $LFS getstripe -c $DIR/$tdir/$tfile
2307         [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
2308                 error "two-stripe file doesn't have two stripes"
2309
2310         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
2311         $LFS getstripe -y $DIR/$tdir/$tfile
2312         (( $($LFS getstripe -y $DIR/$tdir/$tfile |
2313              egrep -c "l_ost_idx: [02]$") == "2" )) ||
2314                 error "expected l_ost_idx: [02]$ not matched"
2315
2316         # make sure ost list has been cleared
2317         local stripesize=$($LFS getstripe -S $DIR/$tdir)
2318         $LFS setstripe -S $((stripesize * 4)) -i 1 \
2319                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
2320         touch $DIR/$tdir/f3
2321         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
2322 }
2323 run_test 27H "Set specific OSTs stripe"
2324
2325 # createtest also checks that device nodes are created and
2326 # then visible correctly (#2091)
2327 test_28() { # bug 2091
2328         test_mkdir $DIR/d28
2329         $CREATETEST $DIR/d28/ct || error "createtest failed"
2330 }
2331 run_test 28 "create/mknod/mkdir with bad file types ============"
2332
2333 test_29() {
2334         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2335
2336         sync; sleep 1; sync # flush out any dirty pages from previous tests
2337         cancel_lru_locks
2338         test_mkdir $DIR/d29
2339         touch $DIR/d29/foo
2340         log 'first d29'
2341         ls -l $DIR/d29
2342
2343         declare -i LOCKCOUNTORIG=0
2344         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2345                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2346         done
2347         [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
2348
2349         declare -i LOCKUNUSEDCOUNTORIG=0
2350         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2351                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2352         done
2353
2354         log 'second d29'
2355         ls -l $DIR/d29
2356         log 'done'
2357
2358         declare -i LOCKCOUNTCURRENT=0
2359         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2360                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2361         done
2362
2363         declare -i LOCKUNUSEDCOUNTCURRENT=0
2364         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2365                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2366         done
2367
2368         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2369                 $LCTL set_param -n ldlm.dump_namespaces ""
2370                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2371                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2372                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2373                 return 2
2374         fi
2375         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2376                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2377                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2378                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2379                 return 3
2380         fi
2381 }
2382 run_test 29 "IT_GETATTR regression  ============================"
2383
2384 test_30a() { # was test_30
2385         cp $(which ls) $DIR || cp /bin/ls $DIR
2386         $DIR/ls / || error "Can't execute binary from lustre"
2387         rm $DIR/ls
2388 }
2389 run_test 30a "execute binary from Lustre (execve) =============="
2390
2391 test_30b() {
2392         cp `which ls` $DIR || cp /bin/ls $DIR
2393         chmod go+rx $DIR/ls
2394         $RUNAS $DIR/ls / || error "Can't execute binary from lustre as non-root"
2395         rm $DIR/ls
2396 }
2397 run_test 30b "execute binary from Lustre as non-root ==========="
2398
2399 test_30c() { # b=22376
2400         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2401
2402         cp `which ls` $DIR || cp /bin/ls $DIR
2403         chmod a-rw $DIR/ls
2404         cancel_lru_locks mdc
2405         cancel_lru_locks osc
2406         $RUNAS $DIR/ls / || error "Can't execute binary from lustre"
2407         rm -f $DIR/ls
2408 }
2409 run_test 30c "execute binary from Lustre without read perms ===="
2410
2411 test_31a() {
2412         $OPENUNLINK $DIR/f31 $DIR/f31 || error "openunlink failed"
2413         $CHECKSTAT -a $DIR/f31 || error "$DIR/f31 exists"
2414 }
2415 run_test 31a "open-unlink file =================================="
2416
2417 test_31b() {
2418         touch $DIR/f31 || error "touch $DIR/f31 failed"
2419         ln $DIR/f31 $DIR/f31b || error "ln failed"
2420         $MULTIOP $DIR/f31b Ouc || error "multiop failed"
2421         $CHECKSTAT -t file $DIR/f31 || error "$DIR/f31 not file type"
2422 }
2423 run_test 31b "unlink file with multiple links while open ======="
2424
2425 test_31c() {
2426         touch $DIR/f31 || error "touch $DIR/f31 failed"
2427         ln $DIR/f31 $DIR/f31c || error "ln failed"
2428         multiop_bg_pause $DIR/f31 O_uc ||
2429                 error "multiop_bg_pause for $DIR/f31 failed"
2430         MULTIPID=$!
2431         $MULTIOP $DIR/f31c Ouc
2432         kill -USR1 $MULTIPID
2433         wait $MULTIPID
2434 }
2435 run_test 31c "open-unlink file with multiple links ============="
2436
2437 test_31d() {
2438         opendirunlink $DIR/d31d $DIR/d31d || error "opendirunlink failed"
2439         $CHECKSTAT -a $DIR/d31d || error "$DIR/d31d exists"
2440 }
2441 run_test 31d "remove of open directory ========================="
2442
2443 test_31e() { # bug 2904
2444         openfilleddirunlink $DIR/d31e || error "openfilleddirunlink failed"
2445 }
2446 run_test 31e "remove of open non-empty directory ==============="
2447
2448 test_31f() { # bug 4554
2449         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2450
2451         set -vx
2452         test_mkdir $DIR/d31f
2453         $LFS setstripe -S 1048576 -c 1 $DIR/d31f
2454         cp /etc/hosts $DIR/d31f
2455         ls -l $DIR/d31f
2456         $LFS getstripe $DIR/d31f/hosts
2457         multiop_bg_pause $DIR/d31f D_c || return 1
2458         MULTIPID=$!
2459
2460         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2461         test_mkdir $DIR/d31f
2462         $LFS setstripe -S 1048576 -c 1 $DIR/d31f
2463         cp /etc/hosts $DIR/d31f
2464         ls -l $DIR/d31f
2465         $LFS getstripe $DIR/d31f/hosts
2466         multiop_bg_pause $DIR/d31f D_c || return 1
2467         MULTIPID2=$!
2468
2469         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2470         wait $MULTIPID || error "first opendir $MULTIPID failed"
2471
2472         sleep 6
2473
2474         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2475         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2476         set +vx
2477 }
2478 run_test 31f "remove of open directory with open-unlink file ==="
2479
2480 test_31g() {
2481         echo "-- cross directory link --"
2482         test_mkdir -c1 $DIR/${tdir}ga
2483         test_mkdir -c1 $DIR/${tdir}gb
2484         touch $DIR/${tdir}ga/f
2485         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2486         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2487         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2488         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2489         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2490 }
2491 run_test 31g "cross directory link==============="
2492
2493 test_31h() {
2494         echo "-- cross directory link --"
2495         test_mkdir -c1 $DIR/${tdir}
2496         test_mkdir -c1 $DIR/${tdir}/dir
2497         touch $DIR/${tdir}/f
2498         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2499         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2500         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2501         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2502         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2503 }
2504 run_test 31h "cross directory link under child==============="
2505
2506 test_31i() {
2507         echo "-- cross directory link --"
2508         test_mkdir -c1 $DIR/$tdir
2509         test_mkdir -c1 $DIR/$tdir/dir
2510         touch $DIR/$tdir/dir/f
2511         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2512         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2513         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2514         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2515         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2516 }
2517 run_test 31i "cross directory link under parent==============="
2518
2519 test_31j() {
2520         test_mkdir -c1 -p $DIR/$tdir
2521         test_mkdir -c1 -p $DIR/$tdir/dir1
2522         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2523         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2524         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2525         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2526         return 0
2527 }
2528 run_test 31j "link for directory==============="
2529
2530 test_31k() {
2531         test_mkdir -c1 -p $DIR/$tdir
2532         touch $DIR/$tdir/s
2533         touch $DIR/$tdir/exist
2534         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2535         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2536         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2537         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2538         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2539         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2540         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2541         return 0
2542 }
2543 run_test 31k "link to file: the same, non-existing, dir==============="
2544
2545 test_31m() {
2546         mkdir $DIR/d31m
2547         touch $DIR/d31m/s
2548         mkdir $DIR/d31m2
2549         touch $DIR/d31m2/exist
2550         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2551         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2552         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2553         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2554         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2555         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2556         return 0
2557 }
2558 run_test 31m "link to file: the same, non-existing, dir==============="
2559
2560 test_31n() {
2561         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2562         nlink=$(stat --format=%h $DIR/$tfile)
2563         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2564         local fd=$(free_fd)
2565         local cmd="exec $fd<$DIR/$tfile"
2566         eval $cmd
2567         cmd="exec $fd<&-"
2568         trap "eval $cmd" EXIT
2569         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2570         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2571         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2572         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2573         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2574         eval $cmd
2575 }
2576 run_test 31n "check link count of unlinked file"
2577
2578 link_one() {
2579         local TEMPNAME=$(mktemp $1_XXXXXX)
2580         mlink $TEMPNAME $1 2> /dev/null &&
2581                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2582         munlink $TEMPNAME
2583 }
2584
2585 test_31o() { # LU-2901
2586         test_mkdir $DIR/$tdir
2587         for LOOP in $(seq 100); do
2588                 rm -f $DIR/$tdir/$tfile*
2589                 for THREAD in $(seq 8); do
2590                         link_one $DIR/$tdir/$tfile.$LOOP &
2591                 done
2592                 wait
2593                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2594                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2595                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2596                         break || true
2597         done
2598 }
2599 run_test 31o "duplicate hard links with same filename"
2600
2601 test_31p() {
2602         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
2603
2604         test_mkdir $DIR/$tdir
2605         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2606         $LFS setdirstripe -D -c2 -H all_char $DIR/$tdir/striped_dir
2607
2608         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2609                 error "open unlink test1 failed"
2610         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2611                 error "open unlink test2 failed"
2612
2613         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2614                 error "test1 still exists"
2615         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2616                 error "test2 still exists"
2617 }
2618 run_test 31p "remove of open striped directory"
2619
2620 cleanup_test32_mount() {
2621         local rc=0
2622         trap 0
2623         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$//p')
2624         $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
2625         losetup -d $loopdev || true
2626         rm -rf $DIR/$tdir
2627         return $rc
2628 }
2629
2630 test_32a() {
2631         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2632
2633         echo "== more mountpoints and symlinks ================="
2634         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2635         trap cleanup_test32_mount EXIT
2636         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2637         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2638                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2639         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. ||
2640                 error "$DIR/$tdir/ext2-mountpoint/.. not dir type"
2641         cleanup_test32_mount
2642 }
2643 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2644
2645 test_32b() {
2646         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2647
2648         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2649         trap cleanup_test32_mount EXIT
2650         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2651         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2652                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2653         ls -al $DIR/$tdir/ext2-mountpoint/.. ||
2654                 error "Can't list $DIR/$tdir/ext2-mountpoint/.."
2655         cleanup_test32_mount
2656 }
2657 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2658
2659 test_32c() {
2660         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2661
2662         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2663         trap cleanup_test32_mount EXIT
2664         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2665         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2666                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2667         test_mkdir -p $DIR/$tdir/d2/test_dir
2668         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
2669                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_dir not dir type"
2670         cleanup_test32_mount
2671 }
2672 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2673
2674 test_32d() {
2675         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2676
2677         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2678         trap cleanup_test32_mount EXIT
2679         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2680         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2681                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2682         test_mkdir -p $DIR/$tdir/d2/test_dir
2683         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
2684                 error "Can't list $DIR/$tdir/ext2-mountpoint/../d2/test_dir"
2685         cleanup_test32_mount
2686 }
2687 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir"
2688
2689 test_32e() {
2690         rm -fr $DIR/$tdir
2691         test_mkdir -p $DIR/$tdir/tmp
2692         local tmp_dir=$DIR/$tdir/tmp
2693         ln -s $DIR/$tdir $tmp_dir/symlink11
2694         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2695         $CHECKSTAT -t link $DIR/$tdir/tmp/symlink11 || error "symlink11 bad"
2696         $CHECKSTAT -t link $DIR/$tdir/symlink01 || error "symlink01 bad"
2697 }
2698 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir"
2699
2700 test_32f() {
2701         rm -fr $DIR/$tdir
2702         test_mkdir -p $DIR/$tdir/tmp
2703         local tmp_dir=$DIR/$tdir/tmp
2704         ln -s $DIR/$tdir $tmp_dir/symlink11
2705         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2706         ls $DIR/$tdir/tmp/symlink11  || error "symlink11 bad"
2707         ls $DIR/$tdir/symlink01 || error "symlink01 bad"
2708 }
2709 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir"
2710
2711 test_32g() {
2712         local tmp_dir=$DIR/$tdir/tmp
2713         test_mkdir -p $tmp_dir
2714         test_mkdir $DIR/${tdir}2
2715         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2716         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2717         $CHECKSTAT -t link $tmp_dir/symlink12 || error "symlink12 not a link"
2718         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error "symlink02 not a link"
2719         $CHECKSTAT -t dir -f $tmp_dir/symlink12 || error "symlink12 not a dir"
2720         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error "symlink12 not a dir"
2721 }
2722 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2723
2724 test_32h() {
2725         rm -fr $DIR/$tdir $DIR/${tdir}2
2726         tmp_dir=$DIR/$tdir/tmp
2727         test_mkdir -p $tmp_dir
2728         test_mkdir $DIR/${tdir}2
2729         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2730         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2731         ls $tmp_dir/symlink12 || error "listing symlink12"
2732         ls $DIR/$tdir/symlink02  || error "listing symlink02"
2733 }
2734 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2735
2736 test_32i() {
2737         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2738
2739         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2740         trap cleanup_test32_mount EXIT
2741         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2742         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2743                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2744         touch $DIR/$tdir/test_file
2745         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file ||
2746                 error "$DIR/$tdir/ext2-mountpoint/../test_file not file type"
2747         cleanup_test32_mount
2748 }
2749 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2750
2751 test_32j() {
2752         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2753
2754         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2755         trap cleanup_test32_mount EXIT
2756         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2757         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2758                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2759         touch $DIR/$tdir/test_file
2760         cat $DIR/$tdir/ext2-mountpoint/../test_file ||
2761                 error "Can't open $DIR/$tdir/ext2-mountpoint/../test_file"
2762         cleanup_test32_mount
2763 }
2764 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2765
2766 test_32k() {
2767         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2768
2769         rm -fr $DIR/$tdir
2770         trap cleanup_test32_mount EXIT
2771         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2772         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2773                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2774         test_mkdir -p $DIR/$tdir/d2
2775         touch $DIR/$tdir/d2/test_file || error "touch failed"
2776         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
2777                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_file not file type"
2778         cleanup_test32_mount
2779 }
2780 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2781
2782 test_32l() {
2783         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2784
2785         rm -fr $DIR/$tdir
2786         trap cleanup_test32_mount EXIT
2787         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2788         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2789                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2790         test_mkdir -p $DIR/$tdir/d2
2791         touch $DIR/$tdir/d2/test_file || error "touch failed"
2792         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
2793                 error "Can't open $DIR/$tdir/ext2-mountpoint/../d2/test_file"
2794         cleanup_test32_mount
2795 }
2796 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2797
2798 test_32m() {
2799         rm -fr $DIR/d32m
2800         test_mkdir -p $DIR/d32m/tmp
2801         TMP_DIR=$DIR/d32m/tmp
2802         ln -s $DIR $TMP_DIR/symlink11
2803         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2804         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 ||
2805                 error "symlink11 not a link"
2806         $CHECKSTAT -t link $DIR/d32m/symlink01 ||
2807                 error "symlink01 not a link"
2808 }
2809 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2810
2811 test_32n() {
2812         rm -fr $DIR/d32n
2813         test_mkdir -p $DIR/d32n/tmp
2814         TMP_DIR=$DIR/d32n/tmp
2815         ln -s $DIR $TMP_DIR/symlink11
2816         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2817         ls -l $DIR/d32n/tmp/symlink11  || error "listing symlink11"
2818         ls -l $DIR/d32n/symlink01 || error "listing symlink01"
2819 }
2820 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2821
2822 test_32o() {
2823         touch $DIR/$tfile
2824         test_mkdir -p $DIR/d32o/tmp
2825         TMP_DIR=$DIR/d32o/tmp
2826         ln -s $DIR/$tfile $TMP_DIR/symlink12
2827         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2828         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 ||
2829                 error "symlink12 not a link"
2830         $CHECKSTAT -t link $DIR/d32o/symlink02 || error "symlink02 not a link"
2831         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 ||
2832                 error "$DIR/d32o/tmp/symlink12 not file type"
2833         $CHECKSTAT -t file -f $DIR/d32o/symlink02 ||
2834                 error "$DIR/d32o/symlink02 not file type"
2835 }
2836 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2837
2838 test_32p() {
2839         log 32p_1
2840         rm -fr $DIR/d32p
2841         log 32p_2
2842         rm -f $DIR/$tfile
2843         log 32p_3
2844         touch $DIR/$tfile
2845         log 32p_4
2846         test_mkdir -p $DIR/d32p/tmp
2847         log 32p_5
2848         TMP_DIR=$DIR/d32p/tmp
2849         log 32p_6
2850         ln -s $DIR/$tfile $TMP_DIR/symlink12
2851         log 32p_7
2852         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2853         log 32p_8
2854         cat $DIR/d32p/tmp/symlink12 ||
2855                 error "Can't open $DIR/d32p/tmp/symlink12"
2856         log 32p_9
2857         cat $DIR/d32p/symlink02 || error "Can't open $DIR/d32p/symlink02"
2858         log 32p_10
2859 }
2860 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2861
2862 test_32q() {
2863         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2864
2865         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2866         trap cleanup_test32_mount EXIT
2867         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2868         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
2869         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2870                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2871         ls $DIR/$tdir/ext2-mountpoint | grep "\<under_the_mount\>" && error
2872         cleanup_test32_mount
2873 }
2874 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2875
2876 test_32r() {
2877         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2878
2879         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2880         trap cleanup_test32_mount EXIT
2881         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2882         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
2883         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2884                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2885         ls $DIR/$tdir/ext2-mountpoint | grep -q under_the_mount && error || true
2886         cleanup_test32_mount
2887 }
2888 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2889
2890 test_33aa() {
2891         rm -f $DIR/$tfile
2892         touch $DIR/$tfile
2893         chmod 444 $DIR/$tfile
2894         chown $RUNAS_ID $DIR/$tfile
2895         log 33_1
2896         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2897         log 33_2
2898 }
2899 run_test 33aa "write file with mode 444 (should return error)"
2900
2901 test_33a() {
2902         rm -fr $DIR/$tdir
2903         test_mkdir $DIR/$tdir
2904         chown $RUNAS_ID $DIR/$tdir
2905         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile ||
2906                 error "$RUNAS create $tdir/$tfile failed"
2907         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile &&
2908                 error "open RDWR" || true
2909 }
2910 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2911
2912 test_33b() {
2913         rm -fr $DIR/$tdir
2914         test_mkdir $DIR/$tdir
2915         chown $RUNAS_ID $DIR/$tdir
2916         $RUNAS $OPENFILE -f 1286739555 $DIR/$tdir/$tfile || true
2917 }
2918 run_test 33b "test open file with malformed flags (No panic)"
2919
2920 test_33c() {
2921         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2922         remote_ost_nodsh && skip "remote OST with nodsh"
2923
2924         local ostnum
2925         local ostname
2926         local write_bytes
2927         local all_zeros
2928
2929         all_zeros=:
2930         rm -fr $DIR/$tdir
2931         test_mkdir $DIR/$tdir
2932         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2933
2934         sync
2935         for ostnum in $(seq $OSTCOUNT); do
2936                 # test-framework's OST numbering is one-based, while Lustre's
2937                 # is zero-based
2938                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2939                 # Parsing llobdstat's output sucks; we could grep the /proc
2940                 # path, but that's likely to not be as portable as using the
2941                 # llobdstat utility.  So we parse lctl output instead.
2942                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2943                         obdfilter/$ostname/stats |
2944                         awk '/^write_bytes/ {print $7}' )
2945                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2946                 if (( ${write_bytes:-0} > 0 ))
2947                 then
2948                         all_zeros=false
2949                         break;
2950                 fi
2951         done
2952
2953         $all_zeros || return 0
2954
2955         # Write four bytes
2956         echo foo > $DIR/$tdir/bar
2957         # Really write them
2958         sync
2959
2960         # Total up write_bytes after writing.  We'd better find non-zeros.
2961         for ostnum in $(seq $OSTCOUNT); do
2962                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2963                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2964                         obdfilter/$ostname/stats |
2965                         awk '/^write_bytes/ {print $7}' )
2966                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2967                 if (( ${write_bytes:-0} > 0 ))
2968                 then
2969                         all_zeros=false
2970                         break;
2971                 fi
2972         done
2973
2974         if $all_zeros
2975         then
2976                 for ostnum in $(seq $OSTCOUNT); do
2977                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2978                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2979                         do_facet ost$ostnum lctl get_param -n \
2980                                 obdfilter/$ostname/stats
2981                 done
2982                 error "OST not keeping write_bytes stats (b22312)"
2983         fi
2984 }
2985 run_test 33c "test llobdstat and write_bytes"
2986
2987 test_33d() {
2988         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
2989         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2990
2991         local MDTIDX=1
2992         local remote_dir=$DIR/$tdir/remote_dir
2993
2994         test_mkdir $DIR/$tdir
2995         $LFS mkdir -i $MDTIDX $remote_dir ||
2996                 error "create remote directory failed"
2997
2998         touch $remote_dir/$tfile
2999         chmod 444 $remote_dir/$tfile
3000         chown $RUNAS_ID $remote_dir/$tfile
3001
3002         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
3003
3004         chown $RUNAS_ID $remote_dir
3005         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
3006                                         error "create" || true
3007         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
3008                                     error "open RDWR" || true
3009         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
3010 }
3011 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
3012
3013 test_33e() {
3014         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3015
3016         mkdir $DIR/$tdir
3017
3018         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3019         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3020         mkdir $DIR/$tdir/local_dir
3021
3022         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3023         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3024         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3025
3026         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3027                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
3028
3029         rmdir $DIR/$tdir/* || error "rmdir failed"
3030
3031         umask 777
3032         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3033         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3034         mkdir $DIR/$tdir/local_dir
3035
3036         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3037         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3038         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3039
3040         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3041                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
3042
3043         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
3044
3045         umask 000
3046         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3047         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3048         mkdir $DIR/$tdir/local_dir
3049
3050         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3051         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3052         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3053
3054         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3055                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
3056 }
3057 run_test 33e "mkdir and striped directory should have same mode"
3058
3059 cleanup_33f() {
3060         trap 0
3061         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
3062 }
3063
3064 test_33f() {
3065         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3066         remote_mds_nodsh && skip "remote MDS with nodsh"
3067
3068         mkdir $DIR/$tdir
3069         chmod go+rwx $DIR/$tdir
3070         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
3071         trap cleanup_33f EXIT
3072
3073         $RUNAS lfs mkdir -i 0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
3074                 error "cannot create striped directory"
3075
3076         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
3077                 error "cannot create files in striped directory"
3078
3079         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
3080                 error "cannot remove files in striped directory"
3081
3082         $RUNAS rmdir $DIR/$tdir/striped_dir ||
3083                 error "cannot remove striped directory"
3084
3085         cleanup_33f
3086 }
3087 run_test 33f "nonroot user can create, access, and remove a striped directory"
3088
3089 test_33g() {
3090         mkdir -p $DIR/$tdir/dir2
3091
3092         local err=$($RUNAS mkdir $DIR/$tdir/dir2 2>&1)
3093         echo $err
3094         [[ $err =~ "exists" ]] || error "Not exists error"
3095 }
3096 run_test 33g "nonroot user create already existing root created file"
3097
3098 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
3099 test_34a() {
3100         rm -f $DIR/f34
3101         $MCREATE $DIR/f34 || error "mcreate failed"
3102         $LFS getstripe $DIR/f34 2>&1 | grep -q "no stripe info" ||
3103                 error "getstripe failed"
3104         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error "truncate failed"
3105         $LFS getstripe $DIR/f34 2>&1 | grep -q "no stripe info" ||
3106                 error "getstripe failed"
3107         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3108                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3109 }
3110 run_test 34a "truncate file that has not been opened ==========="
3111
3112 test_34b() {
3113         [ ! -f $DIR/f34 ] && test_34a
3114         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3115                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3116         $OPENFILE -f O_RDONLY $DIR/f34
3117         $LFS getstripe $DIR/f34 2>&1 | grep -q "no stripe info" ||
3118                 error "getstripe failed"
3119         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3120                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3121 }
3122 run_test 34b "O_RDONLY opening file doesn't create objects ====="
3123
3124 test_34c() {
3125         [ ! -f $DIR/f34 ] && test_34a
3126         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3127                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3128         $OPENFILE -f O_RDWR $DIR/f34
3129         $LFS getstripe $DIR/f34 2>&1 | grep -q "no stripe info" &&
3130                 error "$LFS getstripe failed"
3131         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3132                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3133 }
3134 run_test 34c "O_RDWR opening file-with-size works =============="
3135
3136 test_34d() {
3137         [ ! -f $DIR/f34 ] && test_34a
3138         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 ||
3139                 error "dd failed"
3140         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3141                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3142         rm $DIR/f34
3143 }
3144 run_test 34d "write to sparse file ============================="
3145
3146 test_34e() {
3147         rm -f $DIR/f34e
3148         $MCREATE $DIR/f34e || error "mcreate failed"
3149         $TRUNCATE $DIR/f34e 1000 || error "truncate failed"
3150         $CHECKSTAT -s 1000 $DIR/f34e ||
3151                 error "Size of $DIR/f34e not equal to 1000 bytes"
3152         $OPENFILE -f O_RDWR $DIR/f34e
3153         $CHECKSTAT -s 1000 $DIR/f34e ||
3154                 error "Size of $DIR/f34e not equal to 1000 bytes"
3155 }
3156 run_test 34e "create objects, some with size and some without =="
3157
3158 test_34f() { # bug 6242, 6243
3159         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3160
3161         SIZE34F=48000
3162         rm -f $DIR/f34f
3163         $MCREATE $DIR/f34f || error "mcreate failed"
3164         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
3165         dd if=$DIR/f34f of=$TMP/f34f
3166         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
3167         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
3168         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
3169         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
3170         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
3171 }
3172 run_test 34f "read from a file with no objects until EOF ======="
3173
3174 test_34g() {
3175         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3176
3177         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE ||
3178                 error "dd failed"
3179         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error "truncate failed"
3180         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
3181                 error "Size of $DIR/$tfile not equal to $((TEST_34_SIZE / 2))"
3182         cancel_lru_locks osc
3183         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
3184                 error "wrong size after lock cancel"
3185
3186         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error "truncate failed"
3187         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
3188                 error "expanding truncate failed"
3189         cancel_lru_locks osc
3190         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
3191                 error "wrong expanded size after lock cancel"
3192 }
3193 run_test 34g "truncate long file ==============================="
3194
3195 test_34h() {
3196         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3197
3198         local gid=10
3199         local sz=1000
3200
3201         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error "dd failed"
3202         sync # Flush the cache so that multiop below does not block on cache
3203              # flush when getting the group lock
3204         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
3205         MULTIPID=$!
3206
3207         # Since just timed wait is not good enough, let's do a sync write
3208         # that way we are sure enough time for a roundtrip + processing
3209         # passed + 2 seconds of extra margin.
3210         dd if=/dev/zero of=$DIR/${tfile}-1 bs=$PAGE_SIZE oflag=direct count=1
3211         rm $DIR/${tfile}-1
3212         sleep 2
3213
3214         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
3215                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
3216                 kill -9 $MULTIPID
3217         fi
3218         wait $MULTIPID
3219         local nsz=`stat -c %s $DIR/$tfile`
3220         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
3221 }
3222 run_test 34h "ftruncate file under grouplock should not block"
3223
3224 test_35a() {
3225         cp /bin/sh $DIR/f35a
3226         chmod 444 $DIR/f35a
3227         chown $RUNAS_ID $DIR/f35a
3228         $RUNAS $DIR/f35a && error || true
3229         rm $DIR/f35a
3230 }
3231 run_test 35a "exec file with mode 444 (should return and not leak)"
3232
3233 test_36a() {
3234         rm -f $DIR/f36
3235         utime $DIR/f36 || error "utime failed for MDS"
3236 }
3237 run_test 36a "MDS utime check (mknod, utime)"
3238
3239 test_36b() {
3240         echo "" > $DIR/f36
3241         utime $DIR/f36 || error "utime failed for OST"
3242 }
3243 run_test 36b "OST utime check (open, utime)"
3244
3245 test_36c() {
3246         rm -f $DIR/d36/f36
3247         test_mkdir $DIR/d36
3248         chown $RUNAS_ID $DIR/d36
3249         $RUNAS utime $DIR/d36/f36 || error "utime failed for MDS as non-root"
3250 }
3251 run_test 36c "non-root MDS utime check (mknod, utime)"
3252
3253 test_36d() {
3254         [ ! -d $DIR/d36 ] && test_36c
3255         echo "" > $DIR/d36/f36
3256         $RUNAS utime $DIR/d36/f36 || error "utime failed for OST as non-root"
3257 }
3258 run_test 36d "non-root OST utime check (open, utime)"
3259
3260 test_36e() {
3261         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping"
3262
3263         test_mkdir $DIR/$tdir
3264         touch $DIR/$tdir/$tfile
3265         $RUNAS utime $DIR/$tdir/$tfile &&
3266                 error "utime worked, expected failure" || true
3267 }
3268 run_test 36e "utime on non-owned file (should return error)"
3269
3270 subr_36fh() {
3271         local fl="$1"
3272         local LANG_SAVE=$LANG
3273         local LC_LANG_SAVE=$LC_LANG
3274         export LANG=C LC_LANG=C # for date language
3275
3276         DATESTR="Dec 20  2000"
3277         test_mkdir $DIR/$tdir
3278         lctl set_param fail_loc=$fl
3279         date; date +%s
3280         cp /etc/hosts $DIR/$tdir/$tfile
3281         sync & # write RPC generated with "current" inode timestamp, but delayed
3282         sleep 1
3283         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
3284         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
3285         cancel_lru_locks osc
3286         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
3287         date; date +%s
3288         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
3289                 echo "BEFORE: $LS_BEFORE" && \
3290                 echo "AFTER : $LS_AFTER" && \
3291                 echo "WANT  : $DATESTR" && \
3292                 error "$DIR/$tdir/$tfile timestamps changed" || true
3293
3294         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
3295 }
3296
3297 test_36f() {
3298         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3299
3300         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
3301         subr_36fh "0x80000214"
3302 }
3303 run_test 36f "utime on file racing with OST BRW write =========="
3304
3305 test_36g() {
3306         remote_ost_nodsh && skip "remote OST with nodsh"
3307         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3308
3309         local fmd_max_age
3310         local fmd_before
3311         local fmd_after
3312
3313         test_mkdir $DIR/$tdir
3314         fmd_max_age=$(do_facet ost1 \
3315                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
3316                 head -n 1")
3317
3318         fmd_before=$(do_facet ost1 \
3319                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3320         touch $DIR/$tdir/$tfile
3321         sleep $((fmd_max_age + 12))
3322         fmd_after=$(do_facet ost1 \
3323                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3324
3325         echo "fmd_before: $fmd_before"
3326         echo "fmd_after: $fmd_after"
3327         [[ $fmd_after -gt $fmd_before ]] &&
3328                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" &&
3329                 error "fmd didn't expire after ping" || true
3330 }
3331 run_test 36g "filter mod data cache expiry ====================="
3332
3333 test_36h() {
3334         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3335
3336         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
3337         subr_36fh "0x80000227"
3338 }
3339 run_test 36h "utime on file racing with OST BRW write =========="
3340
3341 test_36i() {
3342         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3343
3344         test_mkdir $DIR/$tdir
3345         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3346
3347         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3348         local new_mtime=$((mtime + 200))
3349
3350         #change Modify time of striped dir
3351         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3352                         error "change mtime failed"
3353
3354         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3355
3356         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3357 }
3358 run_test 36i "change mtime on striped directory"
3359
3360 # test_37 - duplicate with tests 32q 32r
3361
3362 test_38() {
3363         local file=$DIR/$tfile
3364         touch $file
3365         openfile -f O_DIRECTORY $file
3366         local RC=$?
3367         local ENOTDIR=20
3368         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3369         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3370 }
3371 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3372
3373 test_39a() { # was test_39
3374         touch $DIR/$tfile
3375         touch $DIR/${tfile}2
3376 #       ls -l  $DIR/$tfile $DIR/${tfile}2
3377 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
3378 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
3379         sleep 2
3380         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3381         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3382                 echo "mtime"
3383                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3384                 echo "atime"
3385                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3386                 echo "ctime"
3387                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3388                 error "O_TRUNC didn't change timestamps"
3389         fi
3390 }
3391 run_test 39a "mtime changed on create"
3392
3393 test_39b() {
3394         test_mkdir -c1 $DIR/$tdir
3395         cp -p /etc/passwd $DIR/$tdir/fopen
3396         cp -p /etc/passwd $DIR/$tdir/flink
3397         cp -p /etc/passwd $DIR/$tdir/funlink
3398         cp -p /etc/passwd $DIR/$tdir/frename
3399         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3400
3401         sleep 1
3402         echo "aaaaaa" >> $DIR/$tdir/fopen
3403         echo "aaaaaa" >> $DIR/$tdir/flink
3404         echo "aaaaaa" >> $DIR/$tdir/funlink
3405         echo "aaaaaa" >> $DIR/$tdir/frename
3406
3407         local open_new=`stat -c %Y $DIR/$tdir/fopen`
3408         local link_new=`stat -c %Y $DIR/$tdir/flink`
3409         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3410         local rename_new=`stat -c %Y $DIR/$tdir/frename`
3411
3412         cat $DIR/$tdir/fopen > /dev/null
3413         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3414         rm -f $DIR/$tdir/funlink2
3415         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3416
3417         for (( i=0; i < 2; i++ )) ; do
3418                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3419                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3420                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3421                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3422
3423                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3424                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3425                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3426                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3427
3428                 cancel_lru_locks osc
3429                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3430         done
3431 }
3432 run_test 39b "mtime change on open, link, unlink, rename  ======"
3433
3434 # this should be set to past
3435 TEST_39_MTIME=`date -d "1 year ago" +%s`
3436
3437 # bug 11063
3438 test_39c() {
3439         touch $DIR1/$tfile
3440         sleep 2
3441         local mtime0=`stat -c %Y $DIR1/$tfile`
3442
3443         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3444         local mtime1=`stat -c %Y $DIR1/$tfile`
3445         [ "$mtime1" = $TEST_39_MTIME ] || \
3446                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3447
3448         local d1=`date +%s`
3449         echo hello >> $DIR1/$tfile
3450         local d2=`date +%s`
3451         local mtime2=`stat -c %Y $DIR1/$tfile`
3452         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3453                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3454
3455         mv $DIR1/$tfile $DIR1/$tfile-1
3456
3457         for (( i=0; i < 2; i++ )) ; do
3458                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3459                 [ "$mtime2" = "$mtime3" ] || \
3460                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3461
3462                 cancel_lru_locks osc
3463                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3464         done
3465 }
3466 run_test 39c "mtime change on rename ==========================="
3467
3468 # bug 21114
3469 test_39d() {
3470         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3471
3472         touch $DIR1/$tfile
3473         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3474
3475         for (( i=0; i < 2; i++ )) ; do
3476                 local mtime=`stat -c %Y $DIR1/$tfile`
3477                 [ $mtime = $TEST_39_MTIME ] || \
3478                         error "mtime($mtime) is not set to $TEST_39_MTIME"
3479
3480                 cancel_lru_locks osc
3481                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3482         done
3483 }
3484 run_test 39d "create, utime, stat =============================="
3485
3486 # bug 21114
3487 test_39e() {
3488         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3489
3490         touch $DIR1/$tfile
3491         local mtime1=`stat -c %Y $DIR1/$tfile`
3492
3493         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3494
3495         for (( i=0; i < 2; i++ )) ; do
3496                 local mtime2=`stat -c %Y $DIR1/$tfile`
3497                 [ $mtime2 = $TEST_39_MTIME ] || \
3498                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3499
3500                 cancel_lru_locks osc
3501                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3502         done
3503 }
3504 run_test 39e "create, stat, utime, stat ========================"
3505
3506 # bug 21114
3507 test_39f() {
3508         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3509
3510         touch $DIR1/$tfile
3511         mtime1=`stat -c %Y $DIR1/$tfile`
3512
3513         sleep 2
3514         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3515
3516         for (( i=0; i < 2; i++ )) ; do
3517                 local mtime2=`stat -c %Y $DIR1/$tfile`
3518                 [ $mtime2 = $TEST_39_MTIME ] || \
3519                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3520
3521                 cancel_lru_locks osc
3522                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3523         done
3524 }
3525 run_test 39f "create, stat, sleep, utime, stat ================="
3526
3527 # bug 11063
3528 test_39g() {
3529         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3530
3531         echo hello >> $DIR1/$tfile
3532         local mtime1=`stat -c %Y $DIR1/$tfile`
3533
3534         sleep 2
3535         chmod o+r $DIR1/$tfile
3536
3537         for (( i=0; i < 2; i++ )) ; do
3538                 local mtime2=`stat -c %Y $DIR1/$tfile`
3539                 [ "$mtime1" = "$mtime2" ] || \
3540                         error "lost mtime: $mtime2, should be $mtime1"
3541
3542                 cancel_lru_locks osc
3543                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3544         done
3545 }
3546 run_test 39g "write, chmod, stat ==============================="
3547
3548 # bug 11063
3549 test_39h() {
3550         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3551
3552         touch $DIR1/$tfile
3553         sleep 1
3554
3555         local d1=`date`
3556         echo hello >> $DIR1/$tfile
3557         local mtime1=`stat -c %Y $DIR1/$tfile`
3558
3559         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3560         local d2=`date`
3561         if [ "$d1" != "$d2" ]; then
3562                 echo "write and touch not within one second"
3563         else
3564                 for (( i=0; i < 2; i++ )) ; do
3565                         local mtime2=`stat -c %Y $DIR1/$tfile`
3566                         [ "$mtime2" = $TEST_39_MTIME ] || \
3567                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3568
3569                         cancel_lru_locks osc
3570                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3571                 done
3572         fi
3573 }
3574 run_test 39h "write, utime within one second, stat ============="
3575
3576 test_39i() {
3577         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3578
3579         touch $DIR1/$tfile
3580         sleep 1
3581
3582         echo hello >> $DIR1/$tfile
3583         local mtime1=`stat -c %Y $DIR1/$tfile`
3584
3585         mv $DIR1/$tfile $DIR1/$tfile-1
3586
3587         for (( i=0; i < 2; i++ )) ; do
3588                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3589
3590                 [ "$mtime1" = "$mtime2" ] || \
3591                         error "lost mtime: $mtime2, should be $mtime1"
3592
3593                 cancel_lru_locks osc
3594                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3595         done
3596 }
3597 run_test 39i "write, rename, stat =============================="
3598
3599 test_39j() {
3600         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3601
3602         start_full_debug_logging
3603         touch $DIR1/$tfile
3604         sleep 1
3605
3606         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3607         lctl set_param fail_loc=0x80000412
3608         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3609                 error "multiop failed"
3610         local multipid=$!
3611         local mtime1=`stat -c %Y $DIR1/$tfile`
3612
3613         mv $DIR1/$tfile $DIR1/$tfile-1
3614
3615         kill -USR1 $multipid
3616         wait $multipid || error "multiop close failed"
3617
3618         for (( i=0; i < 2; i++ )) ; do
3619                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3620                 [ "$mtime1" = "$mtime2" ] ||
3621                         error "mtime is lost on close: $mtime2, " \
3622                               "should be $mtime1"
3623
3624                 cancel_lru_locks osc
3625                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3626         done
3627         lctl set_param fail_loc=0
3628         stop_full_debug_logging
3629 }
3630 run_test 39j "write, rename, close, stat ======================="
3631
3632 test_39k() {
3633         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3634
3635         touch $DIR1/$tfile
3636         sleep 1
3637
3638         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3639         local multipid=$!
3640         local mtime1=`stat -c %Y $DIR1/$tfile`
3641
3642         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3643
3644         kill -USR1 $multipid
3645         wait $multipid || error "multiop close failed"
3646
3647         for (( i=0; i < 2; i++ )) ; do
3648                 local mtime2=`stat -c %Y $DIR1/$tfile`
3649
3650                 [ "$mtime2" = $TEST_39_MTIME ] || \
3651                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3652
3653                 cancel_lru_locks osc
3654                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3655         done
3656 }
3657 run_test 39k "write, utime, close, stat ========================"
3658
3659 # this should be set to future
3660 TEST_39_ATIME=`date -d "1 year" +%s`
3661
3662 test_39l() {
3663         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3664         remote_mds_nodsh && skip "remote MDS with nodsh"
3665
3666         local atime_diff=$(do_facet $SINGLEMDS \
3667                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3668         rm -rf $DIR/$tdir
3669         mkdir -p $DIR/$tdir
3670
3671         # test setting directory atime to future
3672         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3673         local atime=$(stat -c %X $DIR/$tdir)
3674         [ "$atime" = $TEST_39_ATIME ] ||
3675                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3676
3677         # test setting directory atime from future to now
3678         local now=$(date +%s)
3679         touch -a -d @$now $DIR/$tdir
3680
3681         atime=$(stat -c %X $DIR/$tdir)
3682         [ "$atime" -eq "$now"  ] ||
3683                 error "atime is not updated from future: $atime, $now"
3684
3685         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3686         sleep 3
3687
3688         # test setting directory atime when now > dir atime + atime_diff
3689         local d1=$(date +%s)
3690         ls $DIR/$tdir
3691         local d2=$(date +%s)
3692         cancel_lru_locks mdc
3693         atime=$(stat -c %X $DIR/$tdir)
3694         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3695                 error "atime is not updated  : $atime, should be $d2"
3696
3697         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3698         sleep 3
3699
3700         # test not setting directory atime when now < dir atime + atime_diff
3701         ls $DIR/$tdir
3702         cancel_lru_locks mdc
3703         atime=$(stat -c %X $DIR/$tdir)
3704         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3705                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3706
3707         do_facet $SINGLEMDS \
3708                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3709 }
3710 run_test 39l "directory atime update ==========================="
3711
3712 test_39m() {
3713         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3714
3715         touch $DIR1/$tfile
3716         sleep 2
3717         local far_past_mtime=$(date -d "May 29 1953" +%s)
3718         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3719
3720         touch -m -d @$far_past_mtime $DIR1/$tfile
3721         touch -a -d @$far_past_atime $DIR1/$tfile
3722
3723         for (( i=0; i < 2; i++ )) ; do
3724                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3725                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3726                         error "atime or mtime set incorrectly"
3727
3728                 cancel_lru_locks osc
3729                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3730         done
3731 }
3732 run_test 39m "test atime and mtime before 1970"
3733
3734 test_39n() { # LU-3832
3735         remote_mds_nodsh && skip "remote MDS with nodsh"
3736
3737         local atime_diff=$(do_facet $SINGLEMDS \
3738                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3739         local atime0
3740         local atime1
3741         local atime2
3742
3743         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3744
3745         rm -rf $DIR/$tfile
3746         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3747         atime0=$(stat -c %X $DIR/$tfile)
3748
3749         sleep 5
3750         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3751         atime1=$(stat -c %X $DIR/$tfile)
3752
3753         sleep 5
3754         cancel_lru_locks mdc
3755         cancel_lru_locks osc
3756         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3757         atime2=$(stat -c %X $DIR/$tfile)
3758
3759         do_facet $SINGLEMDS \
3760                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3761
3762         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3763         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3764 }
3765 run_test 39n "check that O_NOATIME is honored"
3766
3767 test_39o() {
3768         TESTDIR=$DIR/$tdir/$tfile
3769         [ -e $TESTDIR ] && rm -rf $TESTDIR
3770         mkdir -p $TESTDIR
3771         cd $TESTDIR
3772         links1=2
3773         ls
3774         mkdir a b
3775         ls
3776         links2=$(stat -c %h .)
3777         [ $(($links1 + 2)) != $links2 ] &&
3778                 error "wrong links count $(($links1 + 2)) != $links2"
3779         rmdir b
3780         links3=$(stat -c %h .)
3781         [ $(($links1 + 1)) != $links3 ] &&
3782                 error "wrong links count $links1 != $links3"
3783         return 0
3784 }
3785 run_test 39o "directory cached attributes updated after create"
3786
3787 test_39p() {
3788         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
3789
3790         local MDTIDX=1
3791         TESTDIR=$DIR/$tdir/$tdir
3792         [ -e $TESTDIR ] && rm -rf $TESTDIR
3793         test_mkdir -p $TESTDIR
3794         cd $TESTDIR
3795         links1=2
3796         ls
3797         test_mkdir -i $MDTIDX $TESTDIR/remote_dir1
3798         test_mkdir -i $MDTIDX $TESTDIR/remote_dir2
3799         ls
3800         links2=$(stat -c %h .)
3801         [ $(($links1 + 2)) != $links2 ] &&
3802                 error "wrong links count $(($links1 + 2)) != $links2"
3803         rmdir remote_dir2
3804         links3=$(stat -c %h .)
3805         [ $(($links1 + 1)) != $links3 ] &&
3806                 error "wrong links count $links1 != $links3"
3807         return 0
3808 }
3809 run_test 39p "remote directory cached attributes updated after create ========"
3810
3811
3812 test_39q() { # LU-8041
3813         local testdir=$DIR/$tdir
3814         mkdir -p $testdir
3815         multiop_bg_pause $testdir D_c || error "multiop failed"
3816         local multipid=$!
3817         cancel_lru_locks mdc
3818         kill -USR1 $multipid
3819         local atime=$(stat -c %X $testdir)
3820         [ "$atime" -ne 0 ] || error "atime is zero"
3821 }
3822 run_test 39q "close won't zero out atime"
3823
3824 test_40() {
3825         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3826         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3827                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3828         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3829                 error "$tfile is not 4096 bytes in size"
3830 }
3831 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3832
3833 test_41() {
3834         # bug 1553
3835         small_write $DIR/f41 18
3836 }
3837 run_test 41 "test small file write + fstat ====================="
3838
3839 count_ost_writes() {
3840         lctl get_param -n ${OSC}.*.stats |
3841                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
3842                         END { printf("%0.0f", writes) }'
3843 }
3844
3845 # decent default
3846 WRITEBACK_SAVE=500
3847 DIRTY_RATIO_SAVE=40
3848 MAX_DIRTY_RATIO=50
3849 BG_DIRTY_RATIO_SAVE=10
3850 MAX_BG_DIRTY_RATIO=25
3851
3852 start_writeback() {
3853         trap 0
3854         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3855         # dirty_ratio, dirty_background_ratio
3856         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3857                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3858                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3859                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3860         else
3861                 # if file not here, we are a 2.4 kernel
3862                 kill -CONT `pidof kupdated`
3863         fi
3864 }
3865
3866 stop_writeback() {
3867         # setup the trap first, so someone cannot exit the test at the
3868         # exact wrong time and mess up a machine
3869         trap start_writeback EXIT
3870         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3871         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3872                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3873                 sysctl -w vm.dirty_writeback_centisecs=0
3874                 sysctl -w vm.dirty_writeback_centisecs=0
3875                 # save and increase /proc/sys/vm/dirty_ratio
3876                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3877                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3878                 # save and increase /proc/sys/vm/dirty_background_ratio
3879                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3880                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3881         else
3882                 # if file not here, we are a 2.4 kernel
3883                 kill -STOP `pidof kupdated`
3884         fi
3885 }
3886
3887 # ensure that all stripes have some grant before we test client-side cache
3888 setup_test42() {
3889         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3890                 dd if=/dev/zero of=$i bs=4k count=1
3891                 rm $i
3892         done
3893 }
3894
3895 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3896 # file truncation, and file removal.
3897 test_42a() {
3898         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3899
3900         setup_test42
3901         cancel_lru_locks $OSC
3902         stop_writeback
3903         sync; sleep 1; sync # just to be safe
3904         BEFOREWRITES=`count_ost_writes`
3905         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3906         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3907         AFTERWRITES=`count_ost_writes`
3908         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3909                 error "$BEFOREWRITES < $AFTERWRITES"
3910         start_writeback
3911 }
3912 run_test 42a "ensure that we don't flush on close"
3913
3914 test_42b() {
3915         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3916
3917         setup_test42
3918         cancel_lru_locks $OSC
3919         stop_writeback
3920         sync
3921         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3922         BEFOREWRITES=$(count_ost_writes)
3923         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3924         AFTERWRITES=$(count_ost_writes)
3925         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3926                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3927         fi
3928         BEFOREWRITES=$(count_ost_writes)
3929         sync || error "sync: $?"
3930         AFTERWRITES=$(count_ost_writes)
3931         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3932                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3933         fi
3934         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3935         start_writeback
3936         return 0
3937 }
3938 run_test 42b "test destroy of file with cached dirty data ======"
3939
3940 # if these tests just want to test the effect of truncation,
3941 # they have to be very careful.  consider:
3942 # - the first open gets a {0,EOF}PR lock
3943 # - the first write conflicts and gets a {0, count-1}PW
3944 # - the rest of the writes are under {count,EOF}PW
3945 # - the open for truncate tries to match a {0,EOF}PR
3946 #   for the filesize and cancels the PWs.
3947 # any number of fixes (don't get {0,EOF} on open, match
3948 # composite locks, do smarter file size management) fix
3949 # this, but for now we want these tests to verify that
3950 # the cancellation with truncate intent works, so we
3951 # start the file with a full-file pw lock to match against
3952 # until the truncate.
3953 trunc_test() {
3954         test=$1
3955         file=$DIR/$test
3956         offset=$2
3957         cancel_lru_locks $OSC
3958         stop_writeback
3959         # prime the file with 0,EOF PW to match
3960         touch $file
3961         $TRUNCATE $file 0
3962         sync; sync
3963         # now the real test..
3964         dd if=/dev/zero of=$file bs=1024 count=100
3965         BEFOREWRITES=`count_ost_writes`
3966         $TRUNCATE $file $offset
3967         cancel_lru_locks $OSC
3968         AFTERWRITES=`count_ost_writes`
3969         start_writeback
3970 }
3971
3972 test_42c() {
3973         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3974
3975         trunc_test 42c 1024
3976         [ $BEFOREWRITES -eq $AFTERWRITES ] &&
3977                 error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3978         rm $file
3979 }
3980 run_test 42c "test partial truncate of file with cached dirty data"
3981
3982 test_42d() {
3983         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3984
3985         trunc_test 42d 0
3986         [ $BEFOREWRITES -eq $AFTERWRITES ] ||
3987                 error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3988         rm $file
3989 }
3990 run_test 42d "test complete truncate of file with cached dirty data"
3991
3992 test_42e() { # bug22074
3993         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3994
3995         local TDIR=$DIR/${tdir}e
3996         local pages=16 # hardcoded 16 pages, don't change it.
3997         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3998         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3999         local max_dirty_mb
4000         local warmup_files
4001
4002         test_mkdir $DIR/${tdir}e
4003         $LFS setstripe -c 1 $TDIR
4004         createmany -o $TDIR/f $files
4005
4006         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
4007
4008         # we assume that with $OSTCOUNT files, at least one of them will
4009         # be allocated on OST0.
4010         warmup_files=$((OSTCOUNT * max_dirty_mb))
4011         createmany -o $TDIR/w $warmup_files
4012
4013         # write a large amount of data into one file and sync, to get good
4014         # avail_grant number from OST.
4015         for ((i=0; i<$warmup_files; i++)); do
4016                 idx=$($LFS getstripe -i $TDIR/w$i)
4017                 [ $idx -ne 0 ] && continue
4018                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
4019                 break
4020         done
4021         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
4022         sync
4023         $LCTL get_param $proc_osc0/cur_dirty_bytes
4024         $LCTL get_param $proc_osc0/cur_grant_bytes
4025
4026         # create as much dirty pages as we can while not to trigger the actual
4027         # RPCs directly. but depends on the env, VFS may trigger flush during this
4028         # period, hopefully we are good.
4029         for ((i=0; i<$warmup_files; i++)); do
4030                 idx=$($LFS getstripe -i $TDIR/w$i)
4031                 [ $idx -ne 0 ] && continue
4032                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
4033         done
4034         $LCTL get_param $proc_osc0/cur_dirty_bytes
4035         $LCTL get_param $proc_osc0/cur_grant_bytes
4036
4037         # perform the real test
4038         $LCTL set_param $proc_osc0/rpc_stats 0
4039         for ((;i<$files; i++)); do
4040                 [ $($LFS getstripe -i $TDIR/f$i) -eq 0 ] || continue
4041                 dd if=/dev/zero of=$TDIR/f$i bs=$PAGE_SIZE count=$pages 2>/dev/null
4042         done
4043         sync
4044         $LCTL get_param $proc_osc0/rpc_stats
4045
4046         local percent=0
4047         local have_ppr=false
4048         $LCTL get_param $proc_osc0/rpc_stats |
4049                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
4050                         # skip lines until we are at the RPC histogram data
4051                         [ "$PPR" == "pages" ] && have_ppr=true && continue
4052                         $have_ppr || continue
4053
4054                         # we only want the percent stat for < 16 pages
4055                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
4056
4057                         percent=$((percent + WPCT))
4058                         if [[ $percent -gt 15 ]]; then
4059                                 error "less than 16-pages write RPCs" \
4060                                       "$percent% > 15%"
4061                                 break
4062                         fi
4063                 done
4064         rm -rf $TDIR
4065 }
4066 run_test 42e "verify sub-RPC writes are not done synchronously"
4067
4068 test_43A() { # was test_43
4069         test_mkdir $DIR/$tdir
4070         cp -p /bin/ls $DIR/$tdir/$tfile
4071         $MULTIOP $DIR/$tdir/$tfile Ow_c &
4072         pid=$!
4073         # give multiop a chance to open
4074         sleep 1
4075
4076         $DIR/$tdir/$tfile && error "execute $DIR/$tdir/$tfile succeeded" || true
4077         kill -USR1 $pid
4078 }
4079 run_test 43A "execution of file opened for write should return -ETXTBSY"
4080
4081 test_43a() {
4082         test_mkdir $DIR/$tdir
4083         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
4084                 cp -p multiop $DIR/$tdir/multiop
4085         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
4086                 error "multiop open $TMP/$tfile.junk failed"
4087         rm $TMP/$tfile.junk     # delete junk file on close (not part of test)
4088         MULTIOP_PID=$!
4089         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
4090         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
4091         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
4092 }
4093 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
4094
4095 test_43b() {
4096         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4097
4098         test_mkdir $DIR/$tdir
4099         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
4100                 cp -p multiop $DIR/$tdir/multiop
4101         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
4102                 error "multiop open $TMP/$tfile.junk failed"
4103         rm $TMP/$tfile.junk     # delete junk file on close (not part of test)
4104         MULTIOP_PID=$!
4105         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
4106         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
4107         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
4108 }
4109 run_test 43b "truncate of file being executed should return -ETXTBSY"
4110
4111 test_43c() {
4112         local testdir="$DIR/$tdir"
4113         test_mkdir $testdir
4114         cp $SHELL $testdir/
4115         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) |
4116                 ( cd $testdir && md5sum -c )
4117 }
4118 run_test 43c "md5sum of copy into lustre"
4119
4120 test_44A() { # was test_44
4121         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
4122
4123         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
4124         dd if=$DIR/f1 bs=4k count=1 > /dev/null
4125 }
4126 run_test 44A "zero length read from a sparse stripe"
4127
4128 test_44a() {
4129         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
4130                 awk '{ print $2 }')
4131         [ -z "$nstripe" ] && skip "can't get stripe info"
4132         [[ $nstripe -gt $OSTCOUNT ]] &&
4133                 skip "Wrong default_stripe_count: $nstripe OSTCOUNT: $OSTCOUNT"
4134
4135         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
4136                 awk '{ print $2 }')
4137         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
4138                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
4139                         awk '{ print $2 }')
4140         fi
4141
4142         OFFSETS="0 $((stride/2)) $((stride-1))"
4143         for offset in $OFFSETS; do
4144                 for i in $(seq 0 $((nstripe-1))); do
4145                         local GLOBALOFFSETS=""
4146                         # size in Bytes
4147                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
4148                         local myfn=$DIR/d44a-$size
4149                         echo "--------writing $myfn at $size"
4150                         ll_sparseness_write $myfn $size ||
4151                                 error "ll_sparseness_write"
4152                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
4153                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
4154                                 error "ll_sparseness_verify $GLOBALOFFSETS"
4155
4156                         for j in $(seq 0 $((nstripe-1))); do
4157                                 # size in Bytes
4158                                 size=$((((j + $nstripe )*$stride + $offset)))
4159                                 ll_sparseness_write $myfn $size ||
4160                                         error "ll_sparseness_write"
4161                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
4162                         done
4163                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
4164                                 error "ll_sparseness_verify $GLOBALOFFSETS"
4165                         rm -f $myfn
4166                 done
4167         done
4168 }
4169 run_test 44a "test sparse pwrite ==============================="
4170
4171 dirty_osc_total() {
4172         tot=0
4173         for d in `lctl get_param -n ${OSC}.*.cur_dirty_bytes`; do
4174                 tot=$(($tot + $d))
4175         done
4176         echo $tot
4177 }
4178 do_dirty_record() {
4179         before=`dirty_osc_total`
4180         echo executing "\"$*\""
4181         eval $*
4182         after=`dirty_osc_total`
4183         echo before $before, after $after
4184 }
4185 test_45() {
4186         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4187
4188         f="$DIR/f45"
4189         # Obtain grants from OST if it supports it
4190         echo blah > ${f}_grant
4191         stop_writeback
4192         sync
4193         do_dirty_record "echo blah > $f"
4194         [[ $before -eq $after ]] && error "write wasn't cached"
4195         do_dirty_record "> $f"
4196         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
4197         do_dirty_record "echo blah > $f"
4198         [[ $before -eq $after ]] && error "write wasn't cached"
4199         do_dirty_record "sync"
4200         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
4201         do_dirty_record "echo blah > $f"
4202         [[ $before -eq $after ]] && error "write wasn't cached"
4203         do_dirty_record "cancel_lru_locks osc"
4204         [[ $before -gt $after ]] ||
4205                 error "lock cancellation didn't lower dirty count"
4206         start_writeback
4207 }
4208 run_test 45 "osc io page accounting ============================"
4209
4210 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
4211 # test tickles a bug where re-dirtying a page was failing to be mapped to the
4212 # objects offset and an assert hit when an rpc was built with 1023's mapped
4213 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
4214 test_46() {
4215         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4216
4217         f="$DIR/f46"
4218         stop_writeback
4219         sync
4220         dd if=/dev/zero of=$f bs=$PAGE_SIZE seek=511 count=1
4221         sync
4222         dd conv=notrunc if=/dev/zero of=$f bs=$PAGE_SIZE seek=1023 count=1
4223         dd conv=notrunc if=/dev/zero of=$f bs=$PAGE_SIZE seek=511 count=1
4224         sync
4225         start_writeback
4226 }
4227 run_test 46 "dirtying a previously written page ================"
4228
4229 # test_47 is removed "Device nodes check" is moved to test_28
4230
4231 test_48a() { # bug 2399
4232         [ "$mds1_FSTYPE" = "zfs" ] &&
4233         [ $MDS1_VERSION -lt $(version_code 2.3.63) ] &&
4234                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly"
4235
4236         test_mkdir $DIR/$tdir
4237         cd $DIR/$tdir
4238         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
4239         test_mkdir $DIR/$tdir
4240         touch foo || error "'touch foo' failed after recreating cwd"
4241         test_mkdir bar
4242         touch .foo || error "'touch .foo' failed after recreating cwd"
4243         test_mkdir .bar
4244         ls . > /dev/null || error "'ls .' failed after recreating cwd"
4245         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4246         cd . || error "'cd .' failed after recreating cwd"
4247         mkdir . && error "'mkdir .' worked after recreating cwd"
4248         rmdir . && error "'rmdir .' worked after recreating cwd"
4249         ln -s . baz || error "'ln -s .' failed after recreating cwd"
4250         cd .. || error "'cd ..' failed after recreating cwd"
4251 }
4252 run_test 48a "Access renamed working dir (should return errors)="
4253
4254 test_48b() { # bug 2399
4255         rm -rf $DIR/$tdir
4256         test_mkdir $DIR/$tdir
4257         cd $DIR/$tdir
4258         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
4259         touch foo && error "'touch foo' worked after removing cwd"
4260         mkdir foo && error "'mkdir foo' worked after removing cwd"
4261         touch .foo && error "'touch .foo' worked after removing cwd"
4262         mkdir .foo && error "'mkdir .foo' worked after removing cwd"
4263         ls . > /dev/null && error "'ls .' worked after removing cwd"
4264         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4265         mkdir . && error "'mkdir .' worked after removing cwd"
4266         rmdir . && error "'rmdir .' worked after removing cwd"
4267         ln -s . foo && error "'ln -s .' worked after removing cwd"
4268         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
4269 }
4270 run_test 48b "Access removed working dir (should return errors)="
4271
4272 test_48c() { # bug 2350
4273         #lctl set_param debug=-1
4274         #set -vx
4275         rm -rf $DIR/$tdir
4276         test_mkdir -p $DIR/$tdir/dir
4277         cd $DIR/$tdir/dir
4278         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4279         $TRACE touch foo && error "touch foo worked after removing cwd"
4280         $TRACE mkdir foo && error "'mkdir foo' worked after removing cwd"
4281         touch .foo && error "touch .foo worked after removing cwd"
4282         mkdir .foo && error "mkdir .foo worked after removing cwd"
4283         $TRACE ls . && error "'ls .' worked after removing cwd"
4284         $TRACE ls .. || error "'ls ..' failed after removing cwd"
4285         $TRACE mkdir . && error "'mkdir .' worked after removing cwd"
4286         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
4287         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
4288         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
4289 }
4290 run_test 48c "Access removed working subdir (should return errors)"
4291
4292 test_48d() { # bug 2350
4293         #lctl set_param debug=-1
4294         #set -vx
4295         rm -rf $DIR/$tdir
4296         test_mkdir -p $DIR/$tdir/dir
4297         cd $DIR/$tdir/dir
4298         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4299         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4300         $TRACE touch foo && error "'touch foo' worked after removing parent"
4301         $TRACE mkdir foo && error "mkdir foo worked after removing parent"
4302         touch .foo && error "'touch .foo' worked after removing parent"
4303         mkdir .foo && error "mkdir .foo worked after removing parent"
4304         $TRACE ls . && error "'ls .' worked after removing parent"
4305         $TRACE ls .. && error "'ls ..' worked after removing parent"
4306         $TRACE mkdir . && error "'mkdir .' worked after removing parent"
4307         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
4308         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
4309         true
4310 }
4311 run_test 48d "Access removed parent subdir (should return errors)"
4312
4313 test_48e() { # bug 4134
4314         #lctl set_param debug=-1
4315         #set -vx
4316         rm -rf $DIR/$tdir
4317         test_mkdir -p $DIR/$tdir/dir
4318         cd $DIR/$tdir/dir
4319         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4320         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4321         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
4322         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
4323         # On a buggy kernel addition of "touch foo" after cd .. will
4324         # produce kernel oops in lookup_hash_it
4325         touch ../foo && error "'cd ..' worked after recreate parent"
4326         cd $DIR
4327         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
4328 }
4329 run_test 48e "Access to recreated parent subdir (should return errors)"
4330
4331 test_49() { # LU-1030
4332         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4333         remote_ost_nodsh && skip "remote OST with nodsh"
4334
4335         # get ost1 size - lustre-OST0000
4336         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
4337                 awk '{ print $4 }')
4338         # write 800M at maximum
4339         [[ $ost1_size -lt 2 ]] && ost1_size=2
4340         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
4341
4342         $LFS setstripe -c 1 -i 0 $DIR/$tfile
4343         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
4344         local dd_pid=$!
4345
4346         # change max_pages_per_rpc while writing the file
4347         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
4348         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
4349         # loop until dd process exits
4350         while ps ax -opid | grep -wq $dd_pid; do
4351                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
4352                 sleep $((RANDOM % 5 + 1))
4353         done
4354         # restore original max_pages_per_rpc
4355         $LCTL set_param $osc1_mppc=$orig_mppc
4356         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
4357 }
4358 run_test 49 "Change max_pages_per_rpc won't break osc extent"
4359
4360 test_50() {
4361         # bug 1485
4362         test_mkdir $DIR/$tdir
4363         cd $DIR/$tdir
4364         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
4365 }
4366 run_test 50 "special situations: /proc symlinks  ==============="
4367
4368 test_51a() {    # was test_51
4369         # bug 1516 - create an empty entry right after ".." then split dir
4370         test_mkdir -c1 $DIR/$tdir
4371         touch $DIR/$tdir/foo
4372         $MCREATE $DIR/$tdir/bar
4373         rm $DIR/$tdir/foo
4374         createmany -m $DIR/$tdir/longfile 201
4375         FNUM=202
4376         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
4377                 $MCREATE $DIR/$tdir/longfile$FNUM
4378                 FNUM=$(($FNUM + 1))
4379                 echo -n "+"
4380         done
4381         echo
4382         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
4383 }
4384 run_test 51a "special situations: split htree with empty entry =="
4385
4386 cleanup_print_lfs_df () {
4387         trap 0
4388         $LFS df
4389         $LFS df -i
4390 }
4391
4392 test_51b() {
4393         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4394
4395         local dir=$DIR/$tdir
4396         local nrdirs=$((65536 + 100))
4397
4398         # cleanup the directory
4399         rm -fr $dir
4400
4401         test_mkdir -c1 $dir
4402
4403         $LFS df
4404         $LFS df -i
4405         local mdtidx=$(printf "%04x" $($LFS getstripe -m $dir))
4406         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
4407         [[ $numfree -lt $nrdirs ]] &&
4408                 skip "not enough free inodes ($numfree) on MDT$mdtidx"
4409
4410         # need to check free space for the directories as well
4411         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
4412         numfree=$(( blkfree / $(fs_inode_ksize) ))
4413         [[ $numfree -lt $nrdirs ]] && skip "not enough blocks ($numfree)"
4414
4415         trap cleanup_print_lfs_df EXIT
4416
4417         # create files
4418         createmany -d $dir/d $nrdirs || {
4419                 unlinkmany $dir/d $nrdirs
4420                 error "failed to create $nrdirs subdirs in MDT$mdtidx:$dir"
4421         }
4422
4423         # really created :
4424         nrdirs=$(ls -U $dir | wc -l)
4425
4426         # unlink all but 100 subdirectories, then check it still works
4427         local left=100
4428         local delete=$((nrdirs - left))
4429
4430         $LFS df
4431         $LFS df -i
4432
4433         # for ldiskfs the nlink count should be 1, but this is OSD specific
4434         # and so this is listed for informational purposes only
4435         echo "nlink before: $(stat -c %h $dir), created before: $nrdirs"
4436         unlinkmany -d $dir/d $delete ||
4437                 error "unlink of first $delete subdirs failed"
4438
4439         echo "nlink between: $(stat -c %h $dir)"
4440         local found=$(ls -U $dir | wc -l)
4441         [ $found -ne $left ] &&
4442                 error "can't find subdirs: found only $found, expected $left"
4443
4444         unlinkmany -d $dir/d $delete $left ||
4445                 error "unlink of second $left subdirs failed"
4446         # regardless of whether the backing filesystem tracks nlink accurately
4447         # or not, the nlink count shouldn't be more than "." and ".." here
4448         local after=$(stat -c %h $dir)
4449         [[ $after -gt 2 ]] && error "nlink after: $after > 2" ||
4450                 echo "nlink after: $after"
4451
4452         cleanup_print_lfs_df
4453 }
4454 run_test 51b "exceed 64k subdirectory nlink limit on create, verify unlink"
4455
4456 test_51d() {
4457         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4458         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
4459
4460         test_mkdir $DIR/$tdir
4461         createmany -o $DIR/$tdir/t- 1000
4462         $LFS getstripe $DIR/$tdir > $TMP/$tfile
4463         for N in $(seq 0 $((OSTCOUNT - 1))); do
4464                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4465                         END { printf("%0.0f", objs) }' $TMP/$tfile)
4466                 OBJS0[$N]=$(grep -A 1 idx $TMP/$tfile | awk -vobjs=0 \
4467                         '($1 == '$N') { objs += 1 } \
4468                         END { printf("%0.0f", objs) }')
4469                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4470         done
4471         unlinkmany $DIR/$tdir/t- 1000
4472
4473         NLAST=0
4474         for N in $(seq 1 $((OSTCOUNT - 1))); do
4475                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4476                         error "OST $N has less objects vs OST $NLAST" \
4477                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4478                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4479                         error "OST $N has less objects vs OST $NLAST" \
4480                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4481
4482                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4483                         error "OST $N has less #0 objects vs OST $NLAST" \
4484                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4485                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4486                         error "OST $N has less #0 objects vs OST $NLAST" \
4487                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4488                 NLAST=$N
4489         done
4490         rm -f $TMP/$tfile
4491 }
4492 run_test 51d "check object distribution"
4493
4494 test_51e() {
4495         if [ "$mds1_FSTYPE" != ldiskfs ]; then
4496                 skip_env "ldiskfs only test"
4497         fi
4498
4499         test_mkdir -c1 $DIR/$tdir
4500         test_mkdir -c1 $DIR/$tdir/d0
4501
4502         touch $DIR/$tdir/d0/foo
4503         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4504                 error "file exceed 65000 nlink limit!"
4505         unlinkmany $DIR/$tdir/d0/f- 65001
4506         return 0
4507 }
4508 run_test 51e "check file nlink limit"
4509
4510 test_51f() {
4511         test_mkdir $DIR/$tdir
4512
4513         local max=100000
4514         local ulimit_old=$(ulimit -n)
4515         local spare=20 # number of spare fd's for scripts/libraries, etc.
4516         local mdt=$($LFS getstripe -m $DIR/$tdir)
4517         local numfree=$($LFS df -i $DIR/$tdir | awk '/MDT:'$mdt'/ { print $4 }')
4518
4519         echo "MDT$mdt numfree=$numfree, max=$max"
4520         [[ $numfree -gt $max ]] && numfree=$max || numfree=$((numfree * 7 / 8))
4521         if [ $((numfree + spare)) -gt $ulimit_old ]; then
4522                 while ! ulimit -n $((numfree + spare)); do
4523                         numfree=$((numfree * 3 / 4))
4524                 done
4525                 echo "changed ulimit from $ulimit_old to $((numfree + spare))"
4526         else
4527                 echo "left ulimit at $ulimit_old"
4528         fi
4529
4530         createmany -o -k -t 120 $DIR/$tdir/f $numfree || {
4531                 unlinkmany $DIR/$tdir/f $numfree
4532                 error "create+open $numfree files in $DIR/$tdir failed"
4533         }
4534         ulimit -n $ulimit_old
4535
4536         # if createmany exits at 120s there will be fewer than $numfree files
4537         unlinkmany $DIR/$tdir/f $numfree || true
4538 }
4539 run_test 51f "check many open files limit"
4540
4541 test_52a() {
4542         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4543         test_mkdir $DIR/$tdir
4544         touch $DIR/$tdir/foo
4545         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4546         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4547         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4548         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4549         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4550                                         error "link worked"
4551         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4552         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4553         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4554                                                      error "lsattr"
4555         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4556         cp -r $DIR/$tdir $TMP/
4557         rm -fr $DIR/$tdir $TMP/$tdir || error "cleanup rm failed"
4558 }
4559 run_test 52a "append-only flag test (should return errors)"
4560
4561 test_52b() {
4562         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4563         test_mkdir $DIR/$tdir
4564         touch $DIR/$tdir/foo
4565         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4566         cat test > $DIR/$tdir/foo && error "cat test worked"
4567         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4568         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4569         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4570                                         error "link worked"
4571         echo foo >> $DIR/$tdir/foo && error "echo worked"
4572         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4573         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4574         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4575         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4576                                                         error "lsattr"
4577         chattr -i $DIR/$tdir/foo || error "chattr failed"
4578
4579         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4580 }
4581 run_test 52b "immutable flag test (should return errors) ======="
4582
4583 test_53() {
4584         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4585         remote_mds_nodsh && skip "remote MDS with nodsh"
4586         remote_ost_nodsh && skip "remote OST with nodsh"
4587
4588         local param
4589         local param_seq
4590         local ostname
4591         local mds_last
4592         local mds_last_seq
4593         local ost_last
4594         local ost_last_seq
4595         local ost_last_id
4596         local ostnum
4597         local node
4598         local found=false
4599         local support_last_seq=true
4600
4601         [[ $MDS1_VERSION -ge $(version_code 2.3.60) ]] ||
4602                 support_last_seq=false
4603
4604         # only test MDT0000
4605         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4606         local value
4607         for value in $(do_facet $SINGLEMDS \
4608                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4609                 param=$(echo ${value[0]} | cut -d "=" -f1)
4610                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4611
4612                 if $support_last_seq; then
4613                         param_seq=$(echo $param |
4614                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4615                         mds_last_seq=$(do_facet $SINGLEMDS \
4616                                        $LCTL get_param -n $param_seq)
4617                 fi
4618                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4619
4620                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4621                 node=$(facet_active_host ost$((ostnum+1)))
4622                 param="obdfilter.$ostname.last_id"
4623                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4624                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4625                         ost_last_id=$ost_last
4626
4627                         if $support_last_seq; then
4628                                 ost_last_id=$(echo $ost_last |
4629                                               awk -F':' '{print $2}' |
4630                                               sed -e "s/^0x//g")
4631                                 ost_last_seq=$(echo $ost_last |
4632                                                awk -F':' '{print $1}')
4633                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4634                         fi
4635
4636                         if [[ $ost_last_id != $mds_last ]]; then
4637                                 error "$ost_last_id != $mds_last"
4638                         else
4639                                 found=true
4640                                 break
4641                         fi
4642                 done
4643         done
4644         $found || error "can not match last_seq/last_id for $mdtosc"
4645         return 0
4646 }
4647 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4648
4649 test_54a() {
4650         perl -MSocket -e ';' || skip "no Socket perl module installed"
4651
4652         $SOCKETSERVER $DIR/socket ||
4653                 error "$SOCKETSERVER $DIR/socket failed: $?"
4654         $SOCKETCLIENT $DIR/socket ||
4655                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4656         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4657 }
4658 run_test 54a "unix domain socket test =========================="
4659
4660 test_54b() {
4661         f="$DIR/f54b"
4662         mknod $f c 1 3
4663         chmod 0666 $f
4664         dd if=/dev/zero of=$f bs=$PAGE_SIZE count=1
4665 }
4666 run_test 54b "char device works in lustre ======================"
4667
4668 find_loop_dev() {
4669         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4670         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4671         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4672
4673         for i in $(seq 3 7); do
4674                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4675                 LOOPDEV=$LOOPBASE$i
4676                 LOOPNUM=$i
4677                 break
4678         done
4679 }
4680
4681 cleanup_54c() {
4682         local rc=0
4683         loopdev="$DIR/loop54c"
4684
4685         trap 0
4686         $UMOUNT $DIR/$tdir || rc=$?
4687         losetup -d $loopdev || true
4688         losetup -d $LOOPDEV || true
4689         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4690         return $rc
4691 }
4692
4693 test_54c() {
4694         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4695
4696         loopdev="$DIR/loop54c"
4697
4698         find_loop_dev
4699         [ -z "$LOOPNUM" ] && skip_env "couldn't find empty loop device"
4700         trap cleanup_54c EXIT
4701         mknod $loopdev b 7 $LOOPNUM
4702         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4703         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE seek=1024 count=1 > /dev/null
4704         losetup $loopdev $DIR/$tfile ||
4705                 error "can't set up $loopdev for $DIR/$tfile"
4706         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4707         test_mkdir $DIR/$tdir
4708         mount -t ext2 $loopdev $DIR/$tdir ||
4709                 error "error mounting $loopdev on $DIR/$tdir"
4710         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$PAGE_SIZE count=30 ||
4711                 error "dd write"
4712         df $DIR/$tdir
4713         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$PAGE_SIZE count=30 ||
4714                 error "dd read"
4715         cleanup_54c
4716 }
4717 run_test 54c "block device works in lustre ====================="
4718
4719 test_54d() {
4720         f="$DIR/f54d"
4721         string="aaaaaa"
4722         mknod $f p
4723         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4724 }
4725 run_test 54d "fifo device works in lustre ======================"
4726
4727 test_54e() {
4728         f="$DIR/f54e"
4729         string="aaaaaa"
4730         cp -aL /dev/console $f
4731         echo $string > $f || error "echo $string to $f failed"
4732 }
4733 run_test 54e "console/tty device works in lustre ======================"
4734
4735 test_56a() {
4736         local numfiles=3
4737         local dir=$DIR/$tdir
4738
4739         rm -rf $dir
4740         test_mkdir -p $dir/dir
4741         for i in $(seq $numfiles); do
4742                 touch $dir/file$i
4743                 touch $dir/dir/file$i
4744         done
4745
4746         local numcomp=$($LFS getstripe --component-count $dir)
4747
4748         [[ $numcomp == 0 ]] && numcomp=1
4749
4750         # test lfs getstripe with --recursive
4751         local filenum=$($LFS getstripe -r $dir | egrep -c "obdidx|l_ost_idx")
4752
4753         [[ $filenum -eq $((numfiles * 2)) ]] ||
4754                 error "$LFS getstripe -r: found $filenum != $((numfiles * 2))"
4755         filenum=$($LFS getstripe $dir | egrep -c "obdidx|l_ost_idx")
4756         [[ $filenum -eq $numfiles ]] ||
4757                 error "$LFS getstripe $dir: found $filenum, not $numfiles"
4758         echo "$LFS getstripe showed obdidx or l_ost_idx"
4759
4760         # test lfs getstripe with file instead of dir
4761         filenum=$($LFS getstripe $dir/file1 | egrep -c "obdidx|l_ost_idx")
4762         [[ $filenum -eq 1 ]] ||
4763                 error "$LFS getstripe $dir/file1: found $filenum, not 1"
4764         echo "$LFS getstripe file1 passed"
4765
4766         #test lfs getstripe with --verbose
4767         filenum=$($LFS getstripe --verbose $dir | grep -c lmm_magic)
4768         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
4769                 error "$LFS getstripe --verbose $dir: "\
4770                       "got $filenum want $((numfiles * numcomp)) lmm_magic"
4771         [[ $($LFS getstripe $dir | grep -c lmm_magic) -eq 0 ]] ||
4772                 error "$LFS getstripe $dir: showed lmm_magic"
4773
4774         #test lfs getstripe with -v prints lmm_fid
4775         filenum=$($LFS getstripe -v $dir | grep -c lmm_fid)
4776         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
4777                 error "$LFS getstripe -v $dir: "\
4778                       "got $filenum want $((numfiles * numcomp)) lmm_fid"
4779         [[ $($LFS getstripe $dir | grep -c lmm_fid) -eq 0 ]] ||
4780                 error "$LFS getstripe $dir: showed lmm_fid by default"
4781         echo "$LFS getstripe --verbose passed"
4782
4783         #check for FID information
4784         local fid1=$($LFS getstripe --fid $dir/file1)
4785         local fid2=$($LFS getstripe --verbose $dir/file1 |
4786                      awk '/lmm_fid: / { print $2; exit; }')
4787         local fid3=$($LFS path2fid $dir/file1)
4788
4789         [ "$fid1" != "$fid2" ] &&
4790                 error "getstripe --fid '$fid1' != getstripe --verbose '$fid2'"
4791         [ "$fid1" != "$fid3" ] &&
4792                 error "getstripe --fid '$fid1' != lfs path2fid '$fid3'"
4793         echo "$LFS getstripe --fid passed"
4794
4795         #test lfs getstripe with --obd
4796         $LFS getstripe --obd wrong_uuid $dir 2>&1 | grep -q "unknown obduuid" ||
4797                 error "$LFS getstripe --obd wrong_uuid: should return error"
4798
4799         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
4800
4801         local ostidx=1
4802         local obduuid=$(ostuuid_from_index $ostidx)
4803         local found=$($LFS getstripe -r --obd $obduuid $dir |
4804                 grep 'lmm_stripe_offset:' | grep -c " $ostidx\$")
4805
4806         filenum=$($LFS getstripe -ir $dir | grep -c "^$ostidx\$")
4807         [[ $($LFS getstripe -id $dir) -ne $ostidx ]] ||
4808                 ((filenum--))
4809         [[ $($LFS getstripe -id $dir/dir) -ne $ostidx ]] ||
4810                 ((filenum--))
4811
4812         [[ $found -eq $filenum ]] ||
4813                 error "$LFS getstripe --obd: found $found expect $filenum"
4814         [[ $($LFS getstripe -r -v --obd $obduuid $dir |
4815                 sed '/^[         ]*'${ostidx}'[  ]/d' |
4816                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4817                 error "$LFS getstripe --obd: should not show file on other obd"
4818         echo "$LFS getstripe --obd passed"
4819 }
4820 run_test 56a "check $LFS getstripe"
4821
4822 test_56b() {
4823         local dir=$DIR/$tdir
4824         local numdirs=3
4825
4826         test_mkdir $dir
4827         for i in $(seq $numdirs); do
4828                 test_mkdir $dir/dir$i
4829         done
4830
4831         # test lfs getdirstripe default mode is non-recursion, which is
4832         # different from lfs getstripe
4833         local dircnt=$($LFS getdirstripe $dir | grep -c lmv_stripe_count)
4834
4835         [[ $dircnt -eq 1 ]] ||
4836                 error "$LFS getdirstripe: found $dircnt, not 1"
4837         dircnt=$($LFS getdirstripe --recursive $dir |
4838                 grep -c lmv_stripe_count)
4839         [[ $dircnt -eq $((numdirs + 1)) ]] ||
4840                 error "$LFS getdirstripe -r: $dircnt, != $((numdirs + 1))"
4841 }
4842 run_test 56b "check $LFS getdirstripe"
4843
4844 test_56c() {
4845         remote_ost_nodsh && skip "remote OST with nodsh"
4846
4847         local ost_idx=0
4848         local ost_name=$(ostname_from_index $ost_idx)
4849         local old_status=$(ost_dev_status $ost_idx)
4850
4851         [[ -z "$old_status" ]] ||
4852                 skip_env "OST $ost_name is in $old_status status"
4853
4854         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=1
4855         sleep_maxage
4856
4857         local new_status=$(ost_dev_status $ost_idx)
4858
4859         [[ "$new_status" = "D" ]] ||
4860                 error "OST $ost_name is in status of '$new_status', not 'D'"
4861
4862         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=0
4863         sleep_maxage
4864
4865         new_status=$(ost_dev_status $ost_idx)
4866         [[ -z "$new_status" ]] ||
4867                 error "OST $ost_name is in status of '$new_status', not ''"
4868 }
4869 run_test 56c "check 'lfs df' showing device status"
4870
4871 NUMFILES=3
4872 NUMDIRS=3
4873 setup_56() {
4874         local local_tdir="$1"
4875         local local_numfiles="$2"
4876         local local_numdirs="$3"
4877         local dir_params="$4"
4878         local dir_stripe_params="$5"
4879
4880         if [ ! -d "$local_tdir" ] ; then
4881                 test_mkdir -p $dir_stripe_params $local_tdir
4882                 [ "$dir_params" ] && $LFS setstripe $dir_params $local_tdir
4883                 for i in $(seq $local_numfiles) ; do
4884                         touch $local_tdir/file$i
4885                 done
4886                 for i in $(seq $local_numdirs) ; do
4887                         test_mkdir $dir_stripe_params $local_tdir/dir$i
4888                         for j in $(seq $local_numfiles) ; do
4889                                 touch $local_tdir/dir$i/file$j
4890                         done
4891                 done
4892         fi
4893 }
4894
4895 setup_56_special() {
4896         local local_tdir=$1
4897         local local_numfiles=$2
4898         local local_numdirs=$3
4899
4900         setup_56 $local_tdir $local_numfiles $local_numdirs
4901
4902         if [ ! -e "$local_tdir/loop${local_numfiles}b" ] ; then
4903                 for i in $(seq $local_numfiles) ; do
4904                         mknod $local_tdir/loop${i}b b 7 $i
4905                         mknod $local_tdir/null${i}c c 1 3
4906                         ln -s $local_tdir/file1 $local_tdir/link${i}
4907                 done
4908                 for i in $(seq $local_numdirs) ; do
4909                         mknod $local_tdir/dir$i/loop${i}b b 7 $i
4910                         mknod $local_tdir/dir$i/null${i}c c 1 3
4911                         ln -s $local_tdir/dir$i/file1 $local_tdir/dir$i/link${i}
4912                 done
4913         fi
4914 }
4915
4916 test_56g() {
4917         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4918         local expected=$(($NUMDIRS + 2))
4919
4920         setup_56 $dir $NUMFILES $NUMDIRS
4921
4922         # test lfs find with -name
4923         for i in $(seq $NUMFILES) ; do
4924                 local nums=$($LFS find -name "*$i" $dir | wc -l)
4925
4926                 [ $nums -eq $expected ] ||
4927                         error "lfs find -name '*$i' $dir wrong: "\
4928                               "found $nums, expected $expected"
4929         done
4930 }
4931 run_test 56g "check lfs find -name"
4932
4933 test_56h() {
4934         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4935         local expected=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4936
4937         setup_56 $dir $NUMFILES $NUMDIRS
4938
4939         # test lfs find with ! -name
4940         for i in $(seq $NUMFILES) ; do
4941                 local nums=$($LFS find ! -name "*$i" $dir | wc -l)
4942
4943                 [ $nums -eq $expected ] ||
4944                         error "lfs find ! -name '*$i' $dir wrong: "\
4945                               "found $nums, expected $expected"
4946         done
4947 }
4948 run_test 56h "check lfs find ! -name"
4949
4950 test_56i() {
4951         local dir=$DIR/$tdir
4952
4953         test_mkdir $dir
4954
4955         local cmd="$LFS find -ost $(ostuuid_from_index 0 $dir) $dir"
4956         local out=$($cmd)
4957
4958         [ -z "$out" ] || error "'$cmd' returned directory '$out'"
4959 }
4960 run_test 56i "check 'lfs find -ost UUID' skips directories"
4961
4962 test_56j() {
4963         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4964
4965         setup_56_special $dir $NUMFILES $NUMDIRS
4966
4967         local expected=$((NUMDIRS + 1))
4968         local cmd="$LFS find -type d $dir"
4969         local nums=$($cmd | wc -l)
4970
4971         [ $nums -eq $expected ] ||
4972                 error "'$cmd' wrong: found $nums, expected $expected"
4973 }
4974 run_test 56j "check lfs find -type d"
4975
4976 test_56k() {
4977         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4978
4979         setup_56_special $dir $NUMFILES $NUMDIRS
4980
4981         local expected=$(((NUMDIRS + 1) * NUMFILES))
4982         local cmd="$LFS find -type f $dir"
4983         local nums=$($cmd | wc -l)
4984
4985         [ $nums -eq $expected ] ||
4986                 error "'$cmd' wrong: found $nums, expected $expected"
4987 }
4988 run_test 56k "check lfs find -type f"
4989
4990 test_56l() {
4991         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4992
4993         setup_56_special $dir $NUMFILES $NUMDIRS
4994
4995         local expected=$((NUMDIRS + NUMFILES))
4996         local cmd="$LFS find -type b $dir"
4997         local nums=$($cmd | wc -l)
4998
4999         [ $nums -eq $expected ] ||
5000                 error "'$cmd' wrong: found $nums, expected $expected"
5001 }
5002 run_test 56l "check lfs find -type b"
5003
5004 test_56m() {
5005         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5006
5007         setup_56_special $dir $NUMFILES $NUMDIRS
5008
5009         local expected=$((NUMDIRS + NUMFILES))
5010         local cmd="$LFS find -type c $dir"
5011         local nums=$($cmd | wc -l)
5012         [ $nums -eq $expected ] ||
5013                 error "'$cmd' wrong: found $nums, expected $expected"
5014 }
5015 run_test 56m "check lfs find -type c"
5016
5017 test_56n() {
5018         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5019         setup_56_special $dir $NUMFILES $NUMDIRS
5020
5021         local expected=$((NUMDIRS + NUMFILES))
5022         local cmd="$LFS find -type l $dir"
5023         local nums=$($cmd | wc -l)
5024
5025         [ $nums -eq $expected ] ||
5026                 error "'$cmd' wrong: found $nums, expected $expected"
5027 }
5028 run_test 56n "check lfs find -type l"
5029
5030 test_56o() {
5031         local dir=$DIR/$tdir
5032
5033         setup_56 $dir $NUMFILES $NUMDIRS
5034         utime $dir/file1 > /dev/null || error "utime (1)"
5035         utime $dir/file2 > /dev/null || error "utime (2)"
5036         utime $dir/dir1 > /dev/null || error "utime (3)"
5037         utime $dir/dir2 > /dev/null || error "utime (4)"
5038         utime $dir/dir1/file1 > /dev/null || error "utime (5)"
5039         dd if=/dev/zero count=1 >> $dir/dir1/file1 && sync
5040
5041         local expected=4
5042         local nums=$($LFS find -mtime +0 $dir | wc -l)
5043
5044         [ $nums -eq $expected ] ||
5045                 error "lfs find -mtime +0 $dir: found $nums expect $expected"
5046
5047         expected=12
5048         cmd="$LFS find -mtime 0 $dir"
5049         nums=$($cmd | wc -l)
5050         [ $nums -eq $expected ] ||
5051                 error "'$cmd' wrong: found $nums, expected $expected"
5052 }
5053 run_test 56o "check lfs find -mtime for old files"
5054
5055 test_56p() {
5056         [ $RUNAS_ID -eq $UID ] &&
5057                 skip_env "RUNAS_ID = UID = $UID -- skipping"
5058
5059         local dir=$DIR/$tdir
5060
5061         setup_56 $dir $NUMFILES $NUMDIRS
5062         chown $RUNAS_ID $dir/file* || error "chown $DIR/${tdir}g/file$i failed"
5063
5064         local expected=$NUMFILES
5065         local cmd="$LFS find -uid $RUNAS_ID $dir"
5066         local nums=$($cmd | wc -l)
5067
5068         [ $nums -eq $expected ] ||
5069                 error "'$cmd' wrong: found $nums, expected $expected"
5070
5071         expected=$(((NUMFILES + 1) * NUMDIRS + 1))
5072         cmd="$LFS find ! -uid $RUNAS_ID $dir"
5073         nums=$($cmd | wc -l)
5074         [ $nums -eq $expected ] ||
5075                 error "'$cmd' wrong: found $nums, expected $expected"
5076 }
5077 run_test 56p "check lfs find -uid and ! -uid"
5078
5079 test_56q() {
5080         [ $RUNAS_ID -eq $UID ] &&
5081                 skip_env "RUNAS_ID = UID = $UID -- skipping"
5082
5083         local dir=$DIR/$tdir
5084
5085         setup_56 $dir $NUMFILES $NUMDIRS
5086         chgrp $RUNAS_GID $dir/file* || error "chown $dir/file$i failed"
5087
5088         local expected=$NUMFILES
5089         local cmd="$LFS find -gid $RUNAS_GID $dir"
5090         local nums=$($cmd | wc -l)
5091
5092         [ $nums -eq $expected ] ||
5093                 error "'$cmd' wrong: found $nums, expected $expected"
5094
5095         expected=$(( ($NUMFILES+1) * $NUMDIRS + 1))
5096         cmd="$LFS find ! -gid $RUNAS_GID $dir"
5097         nums=$($cmd | wc -l)
5098         [ $nums -eq $expected ] ||
5099                 error "'$cmd' wrong: found $nums, expected $expected"
5100 }
5101 run_test 56q "check lfs find -gid and ! -gid"
5102
5103 test_56r() {
5104         local dir=$DIR/$tdir
5105
5106         setup_56 $dir $NUMFILES $NUMDIRS
5107
5108         local expected=12
5109         local cmd="$LFS find -size 0 -type f $dir"
5110         local nums=$($cmd | wc -l)
5111
5112         [ $nums -eq $expected ] ||
5113                 error "'$cmd' wrong: found $nums, expected $expected"
5114         expected=0
5115         cmd="$LFS find ! -size 0 -type f $dir"
5116         nums=$($cmd | wc -l)
5117         [ $nums -eq $expected ] ||
5118                 error "'$cmd' wrong: found $nums, expected $expected"
5119         echo "test" > $dir/$tfile
5120         echo "test2" > $dir/$tfile.2 && sync
5121         expected=1
5122         cmd="$LFS find -size 5 -type f $dir"
5123         nums=$($cmd | wc -l)
5124         [ $nums -eq $expected ] ||
5125                 error "'$cmd' wrong: found $nums, expected $expected"
5126         expected=1
5127         cmd="$LFS find -size +5 -type f $dir"
5128         nums=$($cmd | wc -l)
5129         [ $nums -eq $expected ] ||
5130                 error "'$cmd' wrong: found $nums, expected $expected"
5131         expected=2
5132         cmd="$LFS find -size +0 -type f $dir"
5133         nums=$($cmd | wc -l)
5134         [ $nums -eq $expected ] ||
5135                 error "'$cmd' wrong: found $nums, expected $expected"
5136         expected=2
5137         cmd="$LFS find ! -size -5 -type f $dir"
5138         nums=$($cmd | wc -l)
5139         [ $nums -eq $expected ] ||
5140                 error "'$cmd' wrong: found $nums, expected $expected"
5141         expected=12
5142         cmd="$LFS find -size -5 -type f $dir"
5143         nums=$($cmd | wc -l)
5144         [ $nums -eq $expected ] ||
5145                 error "'$cmd' wrong: found $nums, expected $expected"
5146 }
5147 run_test 56r "check lfs find -size works"
5148
5149 test_56s() { # LU-611 #LU-9369
5150         [[ $OSTCOUNT -lt 2 ]] && skip_env "need at least 2 OSTs"
5151
5152         local dir=$DIR/$tdir
5153         local onestripe=$(((NUMDIRS + 1) * NUMFILES))
5154
5155         setup_56 $dir $NUMFILES $NUMDIRS "-c 1"
5156         for i in $(seq $NUMDIRS); do
5157                 $LFS setstripe -c $((OSTCOUNT + 1)) $dir/dir$i/$tfile
5158         done
5159
5160         local expected=$NUMDIRS
5161         local cmd="$LFS find -c $OSTCOUNT $dir"
5162         local nums=$($cmd | wc -l)
5163
5164         [ $nums -eq $expected ] || {
5165                 $LFS getstripe -R $dir
5166                 error "'$cmd' wrong: found $nums, expected $expected"
5167         }
5168
5169         expected=$((NUMDIRS + onestripe))
5170         cmd="$LFS find -stripe-count +0 -type f $dir"
5171         nums=$($cmd | wc -l)
5172         [ $nums -eq $expected ] || {
5173                 $LFS getstripe -R $dir
5174                 error "'$cmd' wrong: found $nums, expected $expected"
5175         }
5176
5177         expected=$onestripe
5178         cmd="$LFS find -stripe-count 1 -type f $dir"
5179         nums=$($cmd | wc -l)
5180         [ $nums -eq $expected ] || {
5181                 $LFS getstripe -R $dir
5182                 error "'$cmd' wrong: found $nums, expected $expected"
5183         }
5184
5185         cmd="$LFS find -stripe-count -2 -type f $dir"
5186         nums=$($cmd | wc -l)
5187         [ $nums -eq $expected ] || {
5188                 $LFS getstripe -R $dir
5189                 error "'$cmd' wrong: found $nums, expected $expected"
5190         }
5191
5192         expected=0
5193         cmd="$LFS find -stripe-count $((OSTCOUNT + 1)) -type f $dir"
5194         nums=$($cmd | wc -l)
5195         [ $nums -eq $expected ] || {
5196                 $LFS getstripe -R $dir
5197                 error "'$cmd' wrong: found $nums, expected $expected"
5198         }
5199 }
5200 run_test 56s "check lfs find -stripe-count works"
5201
5202 test_56t() { # LU-611 #LU-9369
5203         local dir=$DIR/$tdir
5204
5205         setup_56 $dir 0 $NUMDIRS
5206         for i in $(seq $NUMDIRS); do
5207                 $LFS setstripe -S 8M $dir/dir$i/$tfile
5208         done
5209
5210         local expected=$NUMDIRS
5211         local cmd="$LFS find -S 8M $dir"
5212         local nums=$($cmd | wc -l)
5213
5214         [ $nums -eq $expected ] || {
5215                 $LFS getstripe -R $dir
5216                 error "'$cmd' wrong: found $nums, expected $expected"
5217         }
5218         rm -rf $dir
5219
5220         setup_56 $dir $NUMFILES $NUMDIRS "--stripe-size 512k"
5221
5222         $LFS setstripe -S 256k $dir/$tfile.{0,1,2,3}
5223
5224         expected=$(((NUMDIRS + 1) * NUMFILES))
5225         cmd="$LFS find -stripe-size 512k -type f $dir"
5226         nums=$($cmd | wc -l)
5227         [ $nums -eq $expected ] ||
5228                 error "'$cmd' wrong: found $nums, expected $expected"
5229
5230         cmd="$LFS find -stripe-size +320k -type f $dir"
5231         nums=$($cmd | wc -l)
5232         [ $nums -eq $expected ] ||
5233                 error "'$cmd' wrong: found $nums, expected $expected"
5234
5235         expected=$(((NUMDIRS + 1) * NUMFILES + 4))
5236         cmd="$LFS find -stripe-size +200k -type f $dir"
5237         nums=$($cmd | wc -l)
5238         [ $nums -eq $expected ] ||
5239                 error "'$cmd' wrong: found $nums, expected $expected"
5240
5241         cmd="$LFS find -stripe-size -640k -type f $dir"
5242         nums=$($cmd | wc -l)
5243         [ $nums -eq $expected ] ||
5244                 error "'$cmd' wrong: found $nums, expected $expected"
5245
5246         expected=4
5247         cmd="$LFS find -stripe-size 256k -type f $dir"
5248         nums=$($cmd | wc -l)
5249         [ $nums -eq $expected ] ||
5250                 error "'$cmd' wrong: found $nums, expected $expected"
5251
5252         cmd="$LFS find -stripe-size -320k -type f $dir"
5253         nums=$($cmd | wc -l)
5254         [ $nums -eq $expected ] ||
5255                 error "'$cmd' wrong: found $nums, expected $expected"
5256
5257         expected=0
5258         cmd="$LFS find -stripe-size 1024k -type f $dir"
5259         nums=$($cmd | wc -l)
5260         [ $nums -eq $expected ] ||
5261                 error "'$cmd' wrong: found $nums, expected $expected"
5262 }
5263 run_test 56t "check lfs find -stripe-size works"
5264
5265 test_56u() { # LU-611
5266         local dir=$DIR/$tdir
5267
5268         setup_56 $dir $NUMFILES $NUMDIRS "-i 0 -c 1"
5269
5270         if [[ $OSTCOUNT -gt 1 ]]; then
5271                 $LFS setstripe -i 1 -c 1 $dir/$tfile.{0,1,2,3}
5272                 onestripe=4
5273         else
5274                 onestripe=0
5275         fi
5276
5277         local expected=$(((NUMDIRS + 1) * NUMFILES))
5278         local cmd="$LFS find -stripe-index 0 -type f $dir"
5279         local nums=$($cmd | wc -l)
5280
5281         [ $nums -eq $expected ] ||
5282                 error "'$cmd' wrong: found $nums, expected $expected"
5283
5284         expected=$onestripe
5285         cmd="$LFS find -stripe-index 1 -type f $dir"
5286         nums=$($cmd | wc -l)
5287         [ $nums -eq $expected ] ||
5288                 error "'$cmd' wrong: found $nums, expected $expected"
5289
5290         cmd="$LFS find ! -stripe-index 0 -type f $dir"
5291         nums=$($cmd | wc -l)
5292         [ $nums -eq $expected ] ||
5293                 error "'$cmd' wrong: found $nums, expected $expected"
5294
5295         expected=0
5296         # This should produce an error and not return any files
5297         cmd="$LFS find -stripe-index $OSTCOUNT -type f $dir"
5298         nums=$($cmd 2>/dev/null | wc -l)
5299         [ $nums -eq $expected ] ||
5300                 error "'$cmd' wrong: found $nums, expected $expected"
5301
5302         if [[ $OSTCOUNT -gt 1 ]]; then
5303                 expected=$(((NUMDIRS + 1) * NUMFILES + onestripe))
5304                 cmd="$LFS find -stripe-index 0,1 -type f $dir"
5305                 nums=$($cmd | wc -l)
5306                 [ $nums -eq $expected ] ||
5307                         error "'$cmd' wrong: found $nums, expected $expected"
5308         fi
5309 }
5310 run_test 56u "check lfs find -stripe-index works"
5311
5312 test_56v() {
5313         local mdt_idx=0
5314         local dir=$DIR/$tdir
5315
5316         setup_56 $dir $NUMFILES $NUMDIRS
5317
5318         UUID=$(mdtuuid_from_index $mdt_idx $dir)
5319         [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT $mdt_idx"
5320
5321         for file in $($LFS find -m $UUID $dir); do
5322                 file_midx=$($LFS getstripe -m $file)
5323                 [ $file_midx -eq $mdt_idx ] ||
5324                         error "lfs find -m $UUID != getstripe -m $file_midx"
5325         done
5326 }
5327 run_test 56v "check 'lfs find -m match with lfs getstripe -m'"
5328
5329 test_56w() {
5330         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5331         [ $PARALLEL == "yes" ] && skip "skip parallel run"
5332
5333         local dir=$DIR/$tdir
5334
5335         setup_56 $dir $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
5336
5337         local stripe_size=$($LFS getstripe -S -d $dir) ||
5338                 error "$LFS getstripe -S -d $dir failed"
5339         stripe_size=${stripe_size%% *}
5340
5341         local file_size=$((stripe_size * OSTCOUNT))
5342         local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
5343         local required_space=$((file_num * file_size))
5344         local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
5345                            head -n1)
5346         [[ $free_space -le $((required_space / 1024)) ]] &&
5347                 skip_env "need $required_space, have $free_space kbytes"
5348
5349         local dd_bs=65536
5350         local dd_count=$((file_size / dd_bs))
5351
5352         # write data into the files
5353         local i
5354         local j
5355         local file
5356
5357         for i in $(seq $NUMFILES); do
5358                 file=$dir/file$i
5359                 yes | dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5360                         error "write data into $file failed"
5361         done
5362         for i in $(seq $NUMDIRS); do
5363                 for j in $(seq $NUMFILES); do
5364                         file=$dir/dir$i/file$j
5365                         yes|dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5366                                 error "write data into $file failed"
5367                 done
5368         done
5369
5370         # $LFS_MIGRATE will fail if hard link migration is unsupported
5371         if [[ $(lustre_version_code mds1) -gt $(version_code 2.5.55) ]]; then
5372                 createmany -l$dir/dir1/file1 $dir/dir1/link 200 ||
5373                         error "creating links to $dir/dir1/file1 failed"
5374         fi
5375
5376         local expected=-1
5377
5378         [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
5379
5380         # lfs_migrate file
5381         local cmd="$LFS_MIGRATE -y -c $expected $dir/file1"
5382
5383         echo "$cmd"
5384         eval $cmd || error "$cmd failed"
5385
5386         check_stripe_count $dir/file1 $expected
5387
5388         if [ $MDS1_VERSION -ge $(version_code 2.6.90) ];
5389         then
5390                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
5391                 # OST 1 if it is on OST 0. This file is small enough to
5392                 # be on only one stripe.
5393                 file=$dir/migr_1_ost
5394                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
5395                         error "write data into $file failed"
5396                 local obdidx=$($LFS getstripe -i $file)
5397                 local oldmd5=$(md5sum $file)
5398                 local newobdidx=0
5399
5400                 [[ $obdidx -eq 0 ]] && newobdidx=1
5401                 cmd="$LFS migrate -i $newobdidx $file"
5402                 echo $cmd
5403                 eval $cmd || error "$cmd failed"
5404
5405                 local realobdix=$($LFS getstripe -i $file)
5406                 local newmd5=$(md5sum $file)
5407
5408                 [[ $newobdidx -ne $realobdix ]] &&
5409                         error "new OST is different (was=$obdidx, "\
5410                               "wanted=$newobdidx, got=$realobdix)"
5411                 [[ "$oldmd5" != "$newmd5" ]] &&
5412                         error "md5sum differ: $oldmd5, $newmd5"
5413         fi
5414
5415         # lfs_migrate dir
5416         cmd="$LFS_MIGRATE -y -c $expected $dir/dir1"
5417         echo "$cmd"
5418         eval $cmd || error "$cmd failed"
5419
5420         for j in $(seq $NUMFILES); do
5421                 check_stripe_count $dir/dir1/file$j $expected
5422         done
5423
5424         # lfs_migrate works with lfs find
5425         cmd="$LFS find -stripe_count $OSTCOUNT -type f $dir |
5426              $LFS_MIGRATE -y -c $expected"
5427         echo "$cmd"
5428         eval $cmd || error "$cmd failed"
5429
5430         for i in $(seq 2 $NUMFILES); do
5431                 check_stripe_count $dir/file$i $expected
5432         done
5433         for i in $(seq 2 $NUMDIRS); do
5434                 for j in $(seq $NUMFILES); do
5435                 check_stripe_count $dir/dir$i/file$j $expected
5436                 done
5437         done
5438 }
5439 run_test 56w "check lfs_migrate -c stripe_count works"
5440
5441 test_56wb() {
5442         local file1=$DIR/$tdir/file1
5443         local create_pool=false
5444         local initial_pool=$($LFS getstripe -p $DIR)
5445         local pool_list=()
5446         local pool=""
5447
5448         echo -n "Creating test dir..."
5449         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
5450         echo "done."
5451
5452         echo -n "Creating test file..."
5453         touch $file1 || error "cannot create file"
5454         echo "done."
5455
5456         echo -n "Detecting existing pools..."
5457         pool_list=($($LFS pool_list $FSNAME | grep "$FSNAME\." | cut -d. -f2))
5458
5459         if [ ${#pool_list[@]} -gt 0 ]; then
5460                 echo "${pool_list[@]}"
5461                 for thispool in "${pool_list[@]}"; do
5462                         if [[ -z "$initial_pool" ||
5463                               "$initial_pool" != "$thispool" ]]; then
5464                                 pool="$thispool"
5465                                 echo "Using existing pool '$pool'"
5466                                 break
5467                         fi
5468                 done
5469         else
5470                 echo "none detected."
5471         fi
5472         if [ -z "$pool" ]; then
5473                 pool=${POOL:-testpool}
5474                 [ "$initial_pool" = "$pool" ] && pool="testpool2"
5475                 echo -n "Creating pool '$pool'..."
5476                 create_pool=true
5477                 pool_add $pool &> /dev/null ||
5478                         error "pool_add failed"
5479                 echo "done."
5480
5481                 echo -n "Adding target to pool..."
5482                 pool_add_targets $pool 0 0 1 &> /dev/null ||
5483                         error "pool_add_targets failed"
5484                 echo "done."
5485         fi
5486
5487         echo -n "Setting pool using -p option..."
5488         $LFS_MIGRATE -y -q --no-rsync -p $pool $file1 &> /dev/null ||
5489                 error "migrate failed rc = $?"
5490         echo "done."
5491
5492         echo -n "Verifying test file is in pool after migrating..."
5493         [ "$($LFS getstripe -p $file1)" = $pool ] ||
5494                 error "file was not migrated to pool $pool"
5495         echo "done."
5496
5497         echo -n "Removing test file from pool '$pool'..."
5498         $LFS migrate $file1 &> /dev/null ||
5499                 error "cannot remove from pool"
5500         [ "$($LFS getstripe -p $file1)" ] &&
5501                 error "pool still set"
5502         echo "done."
5503
5504         echo -n "Setting pool using --pool option..."
5505         $LFS_MIGRATE -y -q --no-rsync --pool $pool $file1 &> /dev/null ||
5506                 error "migrate failed rc = $?"
5507         echo "done."
5508
5509         # Clean up
5510         rm -f $file1
5511         if $create_pool; then
5512                 destroy_test_pools 2> /dev/null ||
5513                         error "destroy test pools failed"
5514         fi
5515 }
5516 run_test 56wb "check lfs_migrate pool support"
5517
5518 test_56wc() {
5519         local file1="$DIR/$tdir/file1"
5520
5521         echo -n "Creating test dir..."
5522         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
5523         local def_stripe_size=$($LFS getstripe -S $DIR/$tdir 2>/dev/null)
5524         $LFS setstripe -S 1M -c 1 "$DIR/$tdir" &> /dev/null ||
5525                 error "cannot set stripe"
5526         echo "done"
5527
5528         echo -n "Setting initial stripe for test file..."
5529         $LFS setstripe -S 512K -c 1 "$file1" &> /dev/null ||
5530                 error "cannot set stripe"
5531         [ $($LFS getstripe -S "$file1") -eq 524288 ] ||
5532                 error "stripe size not set"
5533         echo "done."
5534
5535         # File currently set to -S 512K -c 1
5536
5537         # Ensure -c and -S options are rejected when -R is set
5538         echo -n "Verifying incompatible options are detected..."
5539         $LFS_MIGRATE -y -R -c 1 "$file1" &> /dev/null &&
5540                 error "incompatible -c and -R options not detected"
5541         $LFS_MIGRATE -y -R -S 1M "$file1" &> /dev/null &&
5542                 error "incompatible -S and -R options not detected"
5543         echo "done."
5544
5545         # Ensure unrecognized options are passed through to 'lfs migrate'
5546         echo -n "Verifying -S option is passed through to lfs migrate..."
5547         $LFS_MIGRATE -y -S 1M "$file1" &> /dev/null ||
5548                 error "migration failed"
5549         [ $($LFS getstripe -S "$file1") -eq 1048576 ] ||
5550                 error "file was not restriped"
5551         echo "done."
5552
5553         # File currently set to -S 1M -c 1
5554
5555         # Ensure long options are supported
5556         echo -n "Verifying long options supported..."
5557         $LFS_MIGRATE -y --non-block "$file1" &> /dev/null ||
5558                 error "long option without argument not supported"
5559         $LFS_MIGRATE -y --stripe-size 512K "$file1" &> /dev/null ||
5560                 error "long option with argument not supported"
5561         [ $($LFS getstripe -S "$file1") -eq 524288 ] ||
5562                 error "file not restriped with --stripe-size option"
5563         echo "done."
5564
5565         # File currently set to -S 512K -c 1
5566
5567         if [ "$OSTCOUNT" -gt 1 ]; then
5568                 echo -n "Verifying explicit stripe count can be set..."
5569                 $LFS_MIGRATE -y -c 2 "$file1" &> /dev/null ||
5570                         error "migrate failed"
5571                 [ $($LFS getstripe -c "$file1") -eq 2 ] ||
5572                         error "file not restriped to explicit count"
5573                 echo "done."
5574         fi
5575
5576         # File currently set to -S 512K -c 1 or -S 512K -c 2
5577
5578         # Ensure parent striping is used if -R is set, and no stripe
5579         # count or size is specified
5580         echo -n "Setting stripe for parent directory..."
5581         $LFS setstripe -S 1M -c 1 "$DIR/$tdir" &> /dev/null ||
5582                 error "cannot set stripe"
5583         echo "done."
5584
5585         echo -n "Verifying restripe option uses parent stripe settings..."
5586         $LFS_MIGRATE -y -R "$file1" &> /dev/null ||
5587                 error "migrate failed"
5588         [ $($LFS getstripe -S "$file1") -eq $def_stripe_size ] ||
5589                 error "file not restriped to parent settings"
5590         [ $($LFS getstripe -c "$file1") -eq 1 ] ||
5591                 error "file not restriped to parent settings"
5592         echo "done."
5593
5594         # File currently set to -S 1M -c 1
5595
5596         # Ensure striping is preserved if -R is not set, and no stripe
5597         # count or size is specified
5598         echo -n "Verifying striping size preserved when not specified..."
5599         local orig_stripe_size=$($LFS getstripe -S "$file1" 2>/dev/null)
5600         $LFS setstripe -S 2M -c 1 "$DIR/$tdir" &> /dev/null ||
5601                 error "cannot set stripe on parent directory"
5602         $LFS_MIGRATE -y "$file1" &> /dev/null ||
5603                 error "migrate failed"
5604         [ $($LFS getstripe -S "$file1") -eq $orig_stripe_size ] ||
5605                 error "file was restriped"
5606         echo "done."
5607
5608         # Ensure file name properly detected when final option has no argument
5609         echo -n "Verifying file name properly detected..."
5610         $LFS_MIGRATE -y "$file1" &> /dev/null ||
5611                 error "file name interpreted as option argument"
5612         echo "done."
5613
5614         # Clean up
5615         rm -f "$file1"
5616 }
5617 run_test 56wc "check unrecognized options for lfs_migrate are passed through"
5618
5619 test_56wd() {
5620         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5621
5622         local file1=$DIR/$tdir/file1
5623
5624         echo -n "Creating test dir..."
5625         test_mkdir $DIR/$tdir || error "cannot create dir"
5626         echo "done."
5627
5628         echo -n "Creating test file..."
5629         touch $file1
5630         echo "done."
5631
5632         # Ensure 'lfs migrate' will fail by using a non-existent option,
5633         # and make sure rsync is not called to recover
5634         echo -n "Make sure --no-rsync option works..."
5635         $LFS_MIGRATE -y --no-rsync --invalid-opt $file1 2>&1 |
5636                 grep -q 'refusing to fall back to rsync' ||
5637                 error "rsync was called with --no-rsync set"
5638         echo "done."
5639
5640         # Ensure rsync is called without trying 'lfs migrate' first
5641         echo -n "Make sure --rsync option works..."
5642         $LFS_MIGRATE -y --rsync --invalid-opt $file1 2>&1 |
5643                 grep -q 'falling back to rsync' &&
5644                 error "lfs migrate was called with --rsync set"
5645         echo "done."
5646
5647         echo -n "Make sure --rsync and --no-rsync options are exclusive..."
5648         $LFS_MIGRATE -y --rsync --no-rsync $file1 2>&1 |
5649                 grep -q 'at the same time' ||
5650                 error "--rsync and --no-rsync accepted concurrently"
5651         echo "done."
5652
5653         # Clean up
5654         rm -f $file1
5655 }
5656 run_test 56wd "check lfs_migrate --rsync and --no-rsync work"
5657
5658 test_56x() {
5659         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5660         check_swap_layouts_support
5661
5662         local dir=$DIR/$tdir
5663         local ref1=/etc/passwd
5664         local file1=$dir/file1
5665
5666         test_mkdir $dir || error "creating dir $dir"
5667         $LFS setstripe -c 2 $file1
5668         cp $ref1 $file1
5669         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
5670         stripe=$($LFS getstripe -c $file1)
5671         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5672         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5673
5674         # clean up
5675         rm -f $file1
5676 }
5677 run_test 56x "lfs migration support"
5678
5679 test_56xa() {
5680         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5681         check_swap_layouts_support
5682
5683         local dir=$DIR/$tdir/$testnum
5684
5685         test_mkdir -p $dir
5686
5687         local ref1=/etc/passwd
5688         local file1=$dir/file1
5689
5690         $LFS setstripe -c 2 $file1
5691         cp $ref1 $file1
5692         $LFS migrate --block -c 1 $file1 || error "migrate failed rc = $?"
5693
5694         local stripe=$($LFS getstripe -c $file1)
5695
5696         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5697         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5698
5699         # clean up
5700         rm -f $file1
5701 }
5702 run_test 56xa "lfs migration --block support"
5703
5704 check_migrate_links() {
5705         local dir="$1"
5706         local file1="$dir/file1"
5707         local begin="$2"
5708         local count="$3"
5709         local total_count=$(($begin + $count - 1))
5710         local symlink_count=10
5711         local uniq_count=10
5712
5713         if [ ! -f "$file1" ]; then
5714                 echo -n "creating initial file..."
5715                 $LFS setstripe -c 1 -S "512k" "$file1" ||
5716                         error "cannot setstripe initial file"
5717                 echo "done"
5718
5719                 echo -n "creating symlinks..."
5720                 for s in $(seq 1 $symlink_count); do
5721                         ln -s "$file1" "$dir/slink$s" ||
5722                                 error "cannot create symlinks"
5723                 done
5724                 echo "done"
5725
5726                 echo -n "creating nonlinked files..."
5727                 createmany -o "$dir/uniq" 1 10 &> /dev/null ||
5728                         error "cannot create nonlinked files"
5729                 echo "done"
5730         fi
5731
5732         # create hard links
5733         if [ ! -f "$dir/file$total_count" ]; then
5734                 echo -n "creating hard links $begin:$total_count..."
5735                 createmany -l"$file1" "$dir/file" "$begin" "$count" &>  \
5736                         /dev/null || error "cannot create hard links"
5737                 echo "done"
5738         fi
5739
5740         echo -n "checking number of hard links listed in xattrs..."
5741         local fid=$($LFS getstripe -F "$file1")
5742         local paths=($($LFS fid2path "$MOUNT" "$fid" 2> /dev/null))
5743
5744         echo "${#paths[*]}"
5745         if [ ${#paths[*]} -lt $total_count -a "$begin" -eq 2  ]; then
5746                         skip "hard link list has unexpected size, skipping test"
5747         fi
5748         if [ ${#paths[*]} -ge $total_count -a "$begin" -ne 2  ]; then
5749                         error "link names should exceed xattrs size"
5750         fi
5751
5752         echo -n "migrating files..."
5753         local migrate_out=$($LFS_MIGRATE -y -S '1m' $dir)
5754         local rc=$?
5755         [ $rc -eq 0 ] || error "migrate failed rc = $rc"
5756         echo "done"
5757
5758         # make sure all links have been properly migrated
5759         echo -n "verifying files..."
5760         fid=$($LFS getstripe -F "$file1") ||
5761                 error "cannot get fid for file $file1"
5762         for i in $(seq 2 $total_count); do
5763                 local fid2=$($LFS getstripe -F $dir/file$i)
5764
5765                 [ "$fid2" == "$fid" ] ||
5766                         error "migrated hard link has mismatched FID"
5767         done
5768
5769         # make sure hard links were properly detected, and migration was
5770         # performed only once for the entire link set; nonlinked files should
5771         # also be migrated
5772         local actual=$(grep -c 'done migrate' <<< "$migrate_out")
5773         local expected=$(($uniq_count + 1))
5774
5775         [ "$actual" -eq  "$expected" ] ||
5776                 error "hard links individually migrated ($actual != $expected)"
5777
5778         # make sure the correct number of hard links are present
5779         local hardlinks=$(stat -c '%h' "$file1")
5780
5781         [ $hardlinks -eq $total_count ] ||
5782                 error "num hard links $hardlinks != $total_count"
5783         echo "done"
5784
5785         return 0
5786 }
5787
5788 test_56xb() {
5789         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
5790                 skip "Need MDS version at least 2.10.55"
5791
5792         local dir="$DIR/$tdir"
5793
5794         test_mkdir "$dir" || error "cannot create dir $dir"
5795
5796         echo "testing lfs migrate mode when all links fit within xattrs"
5797         LFS_MIGRATE_RSYNC=false check_migrate_links "$dir" 2 99
5798
5799         echo "testing rsync mode when all links fit within xattrs"
5800         LFS_MIGRATE_RSYNC=true check_migrate_links "$dir" 2 99
5801
5802         echo "testing lfs migrate mode when all links do not fit within xattrs"
5803         LFS_MIGRATE_RSYNC=false check_migrate_links "$dir" 101 100
5804
5805         echo "testing rsync mode when all links do not fit within xattrs"
5806         LFS_MIGRATE_RSYNC=true check_migrate_links "$dir" 101 100
5807
5808         # clean up
5809         rm -rf $dir
5810 }
5811 run_test 56xb "lfs migration hard link support"
5812
5813 test_56y() {
5814         [ $MDS1_VERSION -lt $(version_code 2.4.53) ] &&
5815                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53"
5816
5817         local res=""
5818         local dir=$DIR/$tdir
5819         local f1=$dir/file1
5820         local f2=$dir/file2
5821
5822         test_mkdir -p $dir || error "creating dir $dir"
5823         touch $f1 || error "creating std file $f1"
5824         $MULTIOP $f2 H2c || error "creating released file $f2"
5825
5826         # a directory can be raid0, so ask only for files
5827         res=$($LFS find $dir -L raid0 -type f | wc -l)
5828         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
5829
5830         res=$($LFS find $dir \! -L raid0 -type f | wc -l)
5831         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
5832
5833         # only files can be released, so no need to force file search
5834         res=$($LFS find $dir -L released)
5835         [[ $res == $f2 ]] || error "search released: found $res != $f2"
5836
5837         res=$($LFS find $dir -type f \! -L released)
5838         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
5839 }
5840 run_test 56y "lfs find -L raid0|released"
5841
5842 test_56z() { # LU-4824
5843         # This checks to make sure 'lfs find' continues after errors
5844         # There are two classes of errors that should be caught:
5845         # - If multiple paths are provided, all should be searched even if one
5846         #   errors out
5847         # - If errors are encountered during the search, it should not terminate
5848         #   early
5849         local dir=$DIR/$tdir
5850         local i
5851
5852         test_mkdir $dir
5853         for i in d{0..9}; do
5854                 test_mkdir $dir/$i
5855         done
5856         touch $dir/d{0..9}/$tfile
5857         $LFS find $DIR/non_existent_dir $dir &&
5858                 error "$LFS find did not return an error"
5859         # Make a directory unsearchable. This should NOT be the last entry in
5860         # directory order.  Arbitrarily pick the 6th entry
5861         chmod 700 $($LFS find $dir -type d | sed '6!d')
5862
5863         local count=$($RUNAS $LFS find $DIR/non_existent $dir | wc -l)
5864
5865         # The user should be able to see 10 directories and 9 files
5866         [ $count == 19 ] || error "$LFS find did not continue after error"
5867 }
5868 run_test 56z "lfs find should continue after an error"
5869
5870 test_56aa() { # LU-5937
5871         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
5872
5873         local dir=$DIR/$tdir
5874
5875         mkdir $dir
5876         $LFS setdirstripe -c$MDSCOUNT $dir/striped_dir
5877
5878         createmany -o $dir/striped_dir/${tfile}- 1024
5879         local dirs=$($LFS find --size +8k $dir/)
5880
5881         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
5882 }
5883 run_test 56aa "lfs find --size under striped dir"
5884
5885 test_56ab() { # LU-10705
5886         test_mkdir $DIR/$tdir
5887         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=8k count=1 seek=2k
5888         dd if=/dev/zero of=$DIR/$tdir/$tfile.2 bs=4k count=1 seek=4k
5889         dd if=/dev/zero of=$DIR/$tdir/$tfile.3 bs=1M count=2 seek=16
5890         # Flush writes to ensure valid blocks.  Need to be more thorough for
5891         # ZFS, since blocks are not allocated/returned to client immediately.
5892         sync_all_data
5893         wait_zfs_commit ost1 2
5894         cancel_lru_locks osc
5895         ls -ls $DIR/$tdir
5896
5897         local files=$($LFS find --size +16M $DIR/$tdir | wc -l)
5898
5899         [[ $files == 3 ]] || error ">16M size files $files isn't 3 as expected"
5900
5901         files=$($LFS find --blocks +1M $DIR/$tdir | wc -l)
5902         [[ $files == 1 ]] || error ">1M blocks files $files isn't 1 as expected"
5903
5904         rm -f $DIR/$tdir/$tfile.[123]
5905 }
5906 run_test 56ab "lfs find --blocks"
5907
5908 test_56ba() {
5909         [ $MDS1_VERSION -lt $(version_code 2.10.50) ] &&
5910                 skip "Need MDS version at least 2.10.50"
5911
5912         # Create composite files with one component
5913         local dir=$DIR/$tdir
5914
5915         setup_56 $dir/1Mfiles 5 1 "-S 1M --component-end 1M"
5916         # Create composite files with three components
5917         setup_56 $dir/2Mfiles 5 2 "-E 2M -S 1M -E 4M -E 6M"
5918         # Create non-composite files
5919         createmany -o $dir/${tfile}- 10
5920
5921         local nfiles=$($LFS find --component-end 1M --type f $dir | wc -l)
5922
5923         [[ $nfiles == 10 ]] ||
5924                 error "lfs find -E 1M found $nfiles != 10 files"
5925
5926         nfiles=$($LFS find ! -E 1M --type f $dir | wc -l)
5927         [[ $nfiles == 25 ]] ||
5928                 error "lfs find ! -E 1M found $nfiles != 25 files"
5929
5930         # All files have a component that starts at 0
5931         nfiles=$($LFS find --component-start 0 --type f $dir | wc -l)
5932         [[ $nfiles == 35 ]] ||
5933                 error "lfs find --component-start 0 - $nfiles != 35 files"
5934
5935         nfiles=$($LFS find --component-start 2M --type f $dir | wc -l)
5936         [[ $nfiles == 15 ]] ||
5937                 error "lfs find --component-start 2M - $nfiles != 15 files"
5938
5939         # All files created here have a componenet that does not starts at 2M
5940         nfiles=$($LFS find ! --component-start 2M --type f $dir | wc -l)
5941         [[ $nfiles == 35 ]] ||
5942                 error "lfs find ! --component-start 2M - $nfiles != 35 files"
5943
5944         # Find files with a specified number of components
5945         local nfiles=$($LFS find --component-count 3 --type f $dir | wc -l)
5946         [[ $nfiles == 15 ]] ||
5947                 error "lfs find --component-count 3 - $nfiles != 15 files"
5948
5949         # Remember non-composite files have a component count of zero
5950         local nfiles=$($LFS find --component-count 0 --type f $dir | wc -l)
5951         [[ $nfiles == 10 ]] ||
5952                 error "lfs find --component-count 0 - $nfiles != 10 files"
5953
5954         nfiles=$($LFS find ! --component-count 3 --type f $dir | wc -l)
5955         [[ $nfiles == 20 ]] ||
5956                 error "lfs find ! --component-count 3 - $nfiles != 20 files"
5957
5958         # All files have a flag called "init"
5959         local nfiles=$($LFS find --component-flags init --type f $dir | wc -l)
5960         [[ $nfiles == 35 ]] ||
5961                 error "lfs find --component-flags init - $nfiles != 35 files"
5962
5963         # Multi-component files will have a component not initialized
5964         local nfiles=$($LFS find ! --component-flags init --type f $dir | wc -l)
5965         [[ $nfiles == 15 ]] ||
5966                 error "lfs find !--component-flags init - $nfiles != 15 files"
5967
5968         rm -rf $dir
5969
5970 }
5971 run_test 56ba "test lfs find --component-end, -start, -count, and -flags"
5972
5973 test_56ca() {
5974         [[ $MDS1_VERSION -ge $(version_code 2.10.57) ]] ||
5975                 skip "Need MDS version at least 2.10.57"
5976
5977         local td=$DIR/$tdir
5978         local tf=$td/$tfile
5979         local dir
5980         local nfiles
5981         local cmd
5982         local i
5983         local j
5984
5985         # create mirrored directories and mirrored files
5986         mkdir $td || error "mkdir $td failed"
5987         $LFS mirror create -N3 $td || error "create mirrored dir $td failed"
5988         createmany -o $tf- 10 || error "create $tf- failed"
5989
5990         for i in $(seq 2); do
5991                 dir=$td/dir$i
5992                 mkdir $dir || error "mkdir $dir failed"
5993                 $LFS mirror create -N$((3 + i)) $dir ||
5994                         error "create mirrored dir $dir failed"
5995                 createmany -o $dir/$tfile- 10 ||
5996                         error "create $dir/$tfile- failed"
5997         done
5998
5999         # change the states of some mirrored files
6000         echo foo > $tf-6
6001         for i in $(seq 2); do
6002                 dir=$td/dir$i
6003                 for j in $(seq 4 9); do
6004                         echo foo > $dir/$tfile-$j
6005                 done
6006         done
6007
6008         # find mirrored files with specific mirror count
6009         cmd="$LFS find --mirror-count 3 --type f $td"
6010         nfiles=$($cmd | wc -l)
6011         [[ $nfiles = 10 ]] || error "$cmd: $nfiles != 10 files"
6012
6013         cmd="$LFS find ! --mirror-count 3 --type f $td"
6014         nfiles=$($cmd | wc -l)
6015         [[ $nfiles = 20 ]] || error "$cmd: $nfiles != 20 files"
6016
6017         cmd="$LFS find --mirror-count +2 --type f $td"
6018         nfiles=$($cmd | wc -l)
6019         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
6020
6021         cmd="$LFS find --mirror-count -6 --type f $td"
6022         nfiles=$($cmd | wc -l)
6023         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
6024
6025         # find mirrored files with specific file state
6026         cmd="$LFS find --maxdepth 1 --mirror-state=^ro --type f $td"
6027         [[ $($cmd) = $tf-6 ]] || error "$cmd: didn't return $tf-6"
6028
6029         cmd="$LFS find --mirror-state=ro --type f $td"
6030         nfiles=$($cmd | wc -l)
6031         [[ $nfiles = 17 ]] || error "$cmd: $nfiles != 17 files"
6032
6033         cmd="$LFS find ! --mirror-state=ro --type f $td"
6034         nfiles=$($cmd | wc -l)
6035         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
6036
6037         cmd="$LFS find --mirror-state=wp --type f $td"
6038         nfiles=$($cmd | wc -l)
6039         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
6040
6041         cmd="$LFS find ! --mirror-state=sp --type f $td"
6042         nfiles=$($cmd | wc -l)
6043         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
6044 }
6045 run_test 56ca "check lfs find --mirror-count|-N and --mirror-state"
6046
6047 test_57a() {
6048         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6049         # note test will not do anything if MDS is not local
6050         if [ "$mds1_FSTYPE" != ldiskfs ]; then
6051                 skip_env "ldiskfs only test"
6052         fi
6053         remote_mds_nodsh && skip "remote MDS with nodsh"
6054
6055         local MNTDEV="osd*.*MDT*.mntdev"
6056         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
6057         [ -z "$DEV" ] && error "can't access $MNTDEV"
6058         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
6059                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
6060                         error "can't access $DEV"
6061                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
6062                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
6063                 rm $TMP/t57a.dump
6064         done
6065 }
6066 run_test 57a "verify MDS filesystem created with large inodes =="
6067
6068 test_57b() {
6069         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6070         if [ "$mds1_FSTYPE" != ldiskfs ]; then
6071                 skip_env "ldiskfs only test"
6072         fi
6073         remote_mds_nodsh && skip "remote MDS with nodsh"
6074
6075         local dir=$DIR/$tdir
6076         local filecount=100
6077         local file1=$dir/f1
6078         local fileN=$dir/f$filecount
6079
6080         rm -rf $dir || error "removing $dir"
6081         test_mkdir -c1 $dir
6082         local mdtidx=$($LFS getstripe -m $dir)
6083         local mdtname=MDT$(printf %04x $mdtidx)
6084         local facet=mds$((mdtidx + 1))
6085
6086         echo "mcreating $filecount files"
6087         createmany -m $dir/f 1 $filecount || error "creating files in $dir"
6088
6089         # verify that files do not have EAs yet
6090         $LFS getstripe $file1 2>&1 | grep -q "no stripe" ||
6091                 error "$file1 has an EA"
6092         $LFS getstripe $fileN 2>&1 | grep -q "no stripe" ||
6093                 error "$fileN has an EA"
6094
6095         sync
6096         sleep 1
6097         df $dir  #make sure we get new statfs data
6098         local mdsfree=$(do_facet $facet \
6099                         lctl get_param -n osd*.*$mdtname.kbytesfree)
6100         local mdcfree=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
6101         local file
6102
6103         echo "opening files to create objects/EAs"
6104         for file in $(seq -f $dir/f%g 1 $filecount); do
6105                 $OPENFILE -f O_RDWR $file > /dev/null 2>&1 ||
6106                         error "opening $file"
6107         done
6108
6109         # verify that files have EAs now
6110         $LFS getstripe $file1 | grep -q "obdidx" || error "$file1 missing EA"
6111         $LFS getstripe $fileN | grep -q "obdidx" || error "$fileN missing EA"
6112
6113         sleep 1  #make sure we get new statfs data
6114         df $dir
6115         local mdsfree2=$(do_facet $facet \
6116                          lctl get_param -n osd*.*$mdtname.kbytesfree)
6117         local mdcfree2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
6118
6119         if [[ $mdcfree2 -lt $((mdcfree - 16)) ]]; then
6120                 if [ "$mdsfree" != "$mdsfree2" ]; then
6121                         error "MDC before $mdcfree != after $mdcfree2"
6122                 else
6123                         echo "MDC before $mdcfree != after $mdcfree2"
6124                         echo "unable to confirm if MDS has large inodes"
6125                 fi
6126         fi
6127         rm -rf $dir
6128 }
6129 run_test 57b "default LOV EAs are stored inside large inodes ==="
6130
6131 test_58() {
6132         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6133         [ -z "$(which wiretest 2>/dev/null)" ] &&
6134                         skip_env "could not find wiretest"
6135
6136         wiretest
6137 }
6138 run_test 58 "verify cross-platform wire constants =============="
6139
6140 test_59() {
6141         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6142
6143         echo "touch 130 files"
6144         createmany -o $DIR/f59- 130
6145         echo "rm 130 files"
6146         unlinkmany $DIR/f59- 130
6147         sync
6148         # wait for commitment of removal
6149         wait_delete_completed
6150 }
6151 run_test 59 "verify cancellation of llog records async ========="
6152
6153 TEST60_HEAD="test_60 run $RANDOM"
6154 test_60a() {
6155         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6156         remote_mgs_nodsh && skip "remote MGS with nodsh"
6157         do_facet mgs "! which run-llog.sh &> /dev/null" &&
6158                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
6159                         skip_env "missing subtest run-llog.sh"
6160
6161         log "$TEST60_HEAD - from kernel mode"
6162         do_facet mgs "$LCTL dk > /dev/null"
6163         do_facet mgs "bash run-llog.sh" || error "run-llog.sh failed"
6164         do_facet mgs $LCTL dk > $TMP/$tfile
6165
6166         # LU-6388: test llog_reader
6167         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
6168         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
6169         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
6170                         skip_env "missing llog_reader"
6171         local fstype=$(facet_fstype mgs)
6172         [ $fstype != ldiskfs -a $fstype != zfs ] &&
6173                 skip_env "Only for ldiskfs or zfs type mgs"
6174
6175         local mntpt=$(facet_mntpt mgs)
6176         local mgsdev=$(mgsdevname 1)
6177         local fid_list
6178         local fid
6179         local rec_list
6180         local rec
6181         local rec_type
6182         local obj_file
6183         local path
6184         local seq
6185         local oid
6186         local pass=true
6187
6188         #get fid and record list
6189         fid_list=($(awk '/9_sub.*record/ { print $NF }' /$TMP/$tfile |
6190                 tail -n 4))
6191         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' /$TMP/$tfile |
6192                 tail -n 4))
6193         #remount mgs as ldiskfs or zfs type
6194         stop mgs || error "stop mgs failed"
6195         mount_fstype mgs || error "remount mgs failed"
6196         for ((i = 0; i < ${#fid_list[@]}; i++)); do
6197                 fid=${fid_list[i]}
6198                 rec=${rec_list[i]}
6199                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
6200                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
6201                 oid=$((16#$oid))
6202
6203                 case $fstype in
6204                         ldiskfs )
6205                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
6206                         zfs )
6207                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
6208                 esac
6209                 echo "obj_file is $obj_file"
6210                 do_facet mgs $llog_reader $obj_file
6211
6212                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
6213                         awk '{ print $3 }' | sed -e "s/^type=//g")
6214                 if [ $rec_type != $rec ]; then
6215                         echo "FAILED test_60a wrong record type $rec_type," \
6216                               "should be $rec"
6217                         pass=false
6218                         break
6219                 fi
6220
6221                 #check obj path if record type is LLOG_LOGID_MAGIC
6222                 if [ "$rec" == "1064553b" ]; then
6223                         path=$(do_facet mgs $llog_reader $obj_file |
6224                                 grep "path=" | awk '{ print $NF }' |
6225                                 sed -e "s/^path=//g")
6226                         if [ $obj_file != $mntpt/$path ]; then
6227                                 echo "FAILED test_60a wrong obj path" \
6228                                       "$montpt/$path, should be $obj_file"
6229                                 pass=false
6230                                 break
6231                         fi
6232                 fi
6233         done
6234         rm -f $TMP/$tfile
6235         #restart mgs before "error", otherwise it will block the next test
6236         stop mgs || error "stop mgs failed"
6237         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
6238         $pass || error "test failed, see FAILED test_60a messages for specifics"
6239 }
6240 run_test 60a "llog_test run from kernel module and test llog_reader"
6241
6242 test_60b() { # bug 6411
6243         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6244
6245         dmesg > $DIR/$tfile
6246         LLOG_COUNT=$(do_facet mgs dmesg |
6247                      awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
6248                           /llog_[a-z]*.c:[0-9]/ {
6249                                 if (marker)
6250                                         from_marker++
6251                                 from_begin++
6252                           }
6253                           END {
6254                                 if (marker)
6255                                         print from_marker
6256                                 else
6257                                         print from_begin
6258                           }")
6259
6260         [[ $LLOG_COUNT -gt 120 ]] &&
6261                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
6262 }
6263 run_test 60b "limit repeated messages from CERROR/CWARN"
6264
6265 test_60c() {
6266         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6267
6268         echo "create 5000 files"
6269         createmany -o $DIR/f60c- 5000
6270 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
6271         lctl set_param fail_loc=0x80000137
6272         unlinkmany $DIR/f60c- 5000
6273         lctl set_param fail_loc=0
6274 }
6275 run_test 60c "unlink file when mds full"
6276
6277 test_60d() {
6278         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6279
6280         SAVEPRINTK=$(lctl get_param -n printk)
6281         # verify "lctl mark" is even working"
6282         MESSAGE="test message ID $RANDOM $$"
6283         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
6284         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
6285
6286         lctl set_param printk=0 || error "set lnet.printk failed"
6287         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
6288         MESSAGE="new test message ID $RANDOM $$"
6289         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
6290         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
6291         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
6292
6293         lctl set_param -n printk="$SAVEPRINTK"
6294 }
6295 run_test 60d "test printk console message masking"
6296
6297 test_60e() {
6298         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6299         remote_mds_nodsh && skip "remote MDS with nodsh"
6300
6301         touch $DIR/$tfile
6302 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
6303         do_facet mds1 lctl set_param fail_loc=0x15b
6304         rm $DIR/$tfile
6305 }
6306 run_test 60e "no space while new llog is being created"
6307
6308 test_60g() {
6309         local pid
6310
6311         test_mkdir -c $MDSCOUNT $DIR/$tdir
6312         $LFS setdirstripe -D -i -1 -c $MDSCOUNT $DIR/$tdir
6313
6314         (
6315                 local index=0
6316                 while true; do
6317                         mkdir $DIR/$tdir/subdir$index 2>/dev/null
6318                         rmdir $DIR/$tdir/subdir$index 2>/dev/null
6319                         index=$((index + 1))
6320                 done
6321         ) &
6322
6323         pid=$!
6324
6325         for i in $(seq 100); do 
6326                 # define OBD_FAIL_OSD_TXN_START    0x19a
6327                 do_facet mds1 lctl set_param fail_loc=0x8000019a
6328                 usleep 100
6329         done
6330
6331         kill -9 $pid
6332
6333         mkdir $DIR/$tdir/new || error "mkdir failed"
6334         rmdir $DIR/$tdir/new || error "rmdir failed"
6335 }
6336 run_test 60g "transaction abort won't cause MDT hung"
6337
6338 test_61() {
6339         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6340
6341         f="$DIR/f61"
6342         dd if=/dev/zero of=$f bs=$PAGE_SIZE count=1 || error "dd $f failed"
6343         cancel_lru_locks osc
6344         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
6345         sync
6346 }
6347 run_test 61 "mmap() writes don't make sync hang ================"
6348
6349 # bug 2330 - insufficient obd_match error checking causes LBUG
6350 test_62() {
6351         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6352
6353         f="$DIR/f62"
6354         echo foo > $f
6355         cancel_lru_locks osc
6356         lctl set_param fail_loc=0x405
6357         cat $f && error "cat succeeded, expect -EIO"
6358         lctl set_param fail_loc=0
6359 }
6360 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
6361 # match every page all of the time.
6362 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
6363
6364 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
6365 # Though this test is irrelevant anymore, it helped to reveal some
6366 # other grant bugs (LU-4482), let's keep it.
6367 test_63a() {   # was test_63
6368         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6369
6370         MAX_DIRTY_MB=$(lctl get_param -n osc.*.max_dirty_mb | head -n 1)
6371
6372         for i in `seq 10` ; do
6373                 dd if=/dev/zero of=$DIR/f63 bs=8k &
6374                 sleep 5
6375                 kill $!
6376                 sleep 1
6377         done
6378
6379         rm -f $DIR/f63 || true
6380 }
6381 run_test 63a "Verify oig_wait interruption does not crash ======="
6382
6383 # bug 2248 - async write errors didn't return to application on sync
6384 # bug 3677 - async write errors left page locked
6385 test_63b() {
6386         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6387
6388         debugsave
6389         lctl set_param debug=-1
6390
6391         # ensure we have a grant to do async writes
6392         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
6393         rm $DIR/$tfile
6394
6395         sync    # sync lest earlier test intercept the fail_loc
6396
6397         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
6398         lctl set_param fail_loc=0x80000406
6399         $MULTIOP $DIR/$tfile Owy && \
6400                 error "sync didn't return ENOMEM"
6401         sync; sleep 2; sync     # do a real sync this time to flush page
6402         lctl get_param -n llite.*.dump_page_cache | grep locked && \
6403                 error "locked page left in cache after async error" || true
6404         debugrestore
6405 }
6406 run_test 63b "async write errors should be returned to fsync ==="
6407
6408 test_64a () {
6409         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6410
6411         df $DIR
6412         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
6413 }
6414 run_test 64a "verify filter grant calculations (in kernel) ====="
6415
6416 test_64b () {
6417         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6418
6419         sh oos.sh $MOUNT || error "oos.sh failed: $?"
6420 }
6421 run_test 64b "check out-of-space detection on client"
6422
6423 test_64c() {
6424         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
6425 }
6426 run_test 64c "verify grant shrink"
6427
6428 # this does exactly what osc_request.c:osc_announce_cached() does in
6429 # order to calculate max amount of grants to ask from server
6430 want_grant() {
6431         local tgt=$1
6432
6433         local nrpages=$($LCTL get_param -n osc.${tgt}.max_pages_per_rpc)
6434         local rpc_in_flight=$($LCTL get_param -n osc.${tgt}.max_rpcs_in_flight)
6435
6436         ((rpc_in_flight ++));
6437         nrpages=$((nrpages * rpc_in_flight))
6438
6439         local dirty_max_pages=$($LCTL get_param -n osc.${tgt}.max_dirty_mb)
6440
6441         dirty_max_pages=$((dirty_max_pages * 1024 * 1024 / PAGE_SIZE))
6442
6443         [[ $dirty_max_pages -gt $nrpages ]] && nrpages=$dirty_max_pages
6444         local undirty=$((nrpages * PAGE_SIZE))
6445
6446         local max_extent_pages
6447         max_extent_pages=$($LCTL get_param osc.${tgt}.import |
6448             grep grant_max_extent_size | awk '{print $2}')
6449         max_extent_pages=$((max_extent_pages / PAGE_SIZE))
6450         local nrextents=$(((nrpages + max_extent_pages - 1) / max_extent_pages))
6451         local grant_extent_tax
6452         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6453             grep grant_extent_tax | awk '{print $2}')
6454
6455         undirty=$((undirty + nrextents * grant_extent_tax))
6456
6457         echo $undirty
6458 }
6459
6460 # this is size of unit for grant allocation. It should be equal to
6461 # what tgt_grant.c:tgt_grant_chunk() calculates
6462 grant_chunk() {
6463         local tgt=$1
6464         local max_brw_size
6465         local grant_extent_tax
6466
6467         max_brw_size=$($LCTL get_param osc.${tgt}.import |
6468             grep max_brw_size | awk '{print $2}')
6469
6470         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6471             grep grant_extent_tax | awk '{print $2}')
6472
6473         echo $(((max_brw_size + grant_extent_tax) * 2))
6474 }
6475
6476 test_64d() {
6477         [ $OST1_VERSION -lt $(version_code 2.10.56) ] &&
6478                 skip "OST < 2.10.55 doesn't limit grants enough"
6479
6480         local tgt=$($LCTL dl | grep "0000-osc-[^mM]" | awk '{print $4}')
6481         local file=$DIR/$tfile
6482
6483         [[ $($LCTL get_param osc.${tgt}.import |
6484              grep "connect_flags:.*grant_param") ]] ||
6485                 skip "no grant_param connect flag"
6486
6487         local olddebug=$($LCTL get_param -n debug 2> /dev/null)
6488
6489         $LCTL set_param debug="$OLDDEBUG" 2> /dev/null || true
6490
6491         local max_cur_granted=$(($(want_grant $tgt) + $(grant_chunk $tgt)))
6492         stack_trap "rm -f $file" EXIT
6493
6494         $LFS setstripe $file -i 0 -c 1
6495         dd if=/dev/zero of=$file bs=1M count=1000 &
6496         ddpid=$!
6497
6498         while true
6499         do
6500                 local cur_grant=$($LCTL get_param -n osc.${tgt}.cur_grant_bytes)
6501                 if [[ $cur_grant -gt $max_cur_granted ]]
6502                 then
6503                         kill $ddpid
6504                         error "cur_grant $cur_grant > $max_cur_granted"
6505                 fi
6506                 kill -0 $ddpid
6507                 [[ $? -ne 0 ]] && break;
6508                 sleep 2
6509         done
6510
6511         rm -f $DIR/$tfile
6512         wait_delete_completed
6513         $LCTL set_param debug="$olddebug" 2> /dev/null || true
6514 }
6515 run_test 64d "check grant limit exceed"
6516
6517 # bug 1414 - set/get directories' stripe info
6518 test_65a() {
6519         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6520
6521         test_mkdir $DIR/$tdir
6522         touch $DIR/$tdir/f1
6523         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
6524 }
6525 run_test 65a "directory with no stripe info"
6526
6527 test_65b() {
6528         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6529
6530         test_mkdir $DIR/$tdir
6531         local STRIPESIZE=$($LFS getstripe -S $DIR/$tdir)
6532
6533         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6534                                                 error "setstripe"
6535         touch $DIR/$tdir/f2
6536         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
6537 }
6538 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
6539
6540 test_65c() {
6541         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6542         [ $OSTCOUNT -lt 2 ] && skip_env "need at least 2 OSTs"
6543
6544         test_mkdir $DIR/$tdir
6545         local stripesize=$($LFS getstripe -S $DIR/$tdir)
6546
6547         $LFS setstripe -S $((stripesize * 4)) -i 1 \
6548                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
6549         touch $DIR/$tdir/f3
6550         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
6551 }
6552 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
6553
6554 test_65d() {
6555         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6556
6557         test_mkdir $DIR/$tdir
6558         local STRIPECOUNT=$($LFS getstripe -c $DIR/$tdir)
6559         local STRIPESIZE=$($LFS getstripe -S $DIR/$tdir)
6560
6561         if [[ $STRIPECOUNT -le 0 ]]; then
6562                 sc=1
6563         elif [[ $STRIPECOUNT -gt 2000 ]]; then
6564 #LOV_MAX_STRIPE_COUNT is 2000
6565                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
6566         else
6567                 sc=$(($STRIPECOUNT - 1))
6568         fi
6569         $LFS setstripe -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
6570         touch $DIR/$tdir/f4 $DIR/$tdir/f5
6571         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
6572                 error "lverify failed"
6573 }
6574 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
6575
6576 test_65e() {
6577         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6578
6579         test_mkdir $DIR/$tdir
6580
6581         $LFS setstripe $DIR/$tdir || error "setstripe"
6582         $LFS getstripe -v $DIR/$tdir | grep "Default" ||
6583                                         error "no stripe info failed"
6584         touch $DIR/$tdir/f6
6585         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
6586 }
6587 run_test 65e "directory setstripe defaults"
6588
6589 test_65f() {
6590         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6591
6592         test_mkdir $DIR/${tdir}f
6593         $RUNAS $LFS setstripe $DIR/${tdir}f &&
6594                 error "setstripe succeeded" || true
6595 }
6596 run_test 65f "dir setstripe permission (should return error) ==="
6597
6598 test_65g() {
6599         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6600
6601         test_mkdir $DIR/$tdir
6602         local STRIPESIZE=$($LFS getstripe -S $DIR/$tdir)
6603
6604         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6605                 error "setstripe -S failed"
6606         $LFS setstripe -d $DIR/$tdir || error "setstripe -d failed"
6607         $LFS getstripe -v $DIR/$tdir | grep "Default" ||
6608                 error "delete default stripe failed"
6609 }
6610 run_test 65g "directory setstripe -d"
6611
6612 test_65h() {
6613         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6614
6615         test_mkdir $DIR/$tdir
6616         local STRIPESIZE=$($LFS getstripe -S $DIR/$tdir)
6617
6618         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6619                 error "setstripe -S failed"
6620         test_mkdir $DIR/$tdir/dd1
6621         [ $($LFS getstripe -c $DIR/$tdir) = $($LFS getstripe -c $DIR/$tdir/dd1) ] ||
6622                 error "stripe info inherit failed"
6623 }
6624 run_test 65h "directory stripe info inherit ===================="
6625
6626 test_65i() {
6627         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6628
6629         save_layout_restore_at_exit $MOUNT
6630
6631         # bug6367: set non-default striping on root directory
6632         $LFS setstripe -S 65536 -c -1 $MOUNT || error "error setting stripe"
6633
6634         # bug12836: getstripe on -1 default directory striping
6635         $LFS getstripe $MOUNT || error "getstripe $MOUNT failed"
6636
6637         # bug12836: getstripe -v on -1 default directory striping
6638         $LFS getstripe -v $MOUNT || error "getstripe -v $MOUNT failed"
6639
6640         # bug12836: new find on -1 default directory striping
6641         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
6642 }
6643 run_test 65i "various tests to set root directory striping"
6644
6645 test_65j() { # bug6367
6646         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6647
6648         sync; sleep 1
6649
6650         # if we aren't already remounting for each test, do so for this test
6651         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
6652                 cleanup || error "failed to unmount"
6653                 setup
6654         fi
6655
6656         save_layout_restore_at_exit $MOUNT
6657
6658         $LFS setstripe -d $MOUNT || error "setstripe failed"
6659 }
6660 run_test 65j "set default striping on root directory (bug 6367)="
6661
6662 cleanup_65k() {
6663         rm -rf $DIR/$tdir
6664         wait_delete_completed
6665         do_facet $SINGLEMDS "lctl set_param -n \
6666                 osp.$ost*MDT0000.max_create_count=$max_count"
6667         do_facet $SINGLEMDS "lctl set_param -n \
6668                 osp.$ost*MDT0000.create_count=$count"
6669         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
6670         echo $INACTIVE_OSC "is Activate"
6671
6672         wait_osc_import_state mds ost$ostnum FULL
6673 }
6674
6675 test_65k() { # bug11679
6676         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6677         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
6678         remote_mds_nodsh && skip "remote MDS with nodsh"
6679
6680         local disable_precreate=true
6681         [ $MDS1_VERSION -le $(version_code 2.8.54) ] &&
6682                 disable_precreate=false
6683
6684         echo "Check OST status: "
6685         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
6686                 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
6687
6688         for OSC in $MDS_OSCS; do
6689                 echo $OSC "is active"
6690                 do_facet $SINGLEMDS lctl --device %$OSC activate
6691         done
6692
6693         for INACTIVE_OSC in $MDS_OSCS; do
6694                 local ost=$(osc_to_ost $INACTIVE_OSC)
6695                 local ostnum=$(do_facet $SINGLEMDS lctl get_param -n \
6696                                lov.*md*.target_obd |
6697                                awk -F: /$ost/'{ print $1 }' | head -n 1)
6698
6699                 mkdir -p $DIR/$tdir
6700                 $LFS setstripe -i $ostnum -c 1 $DIR/$tdir
6701                 createmany -o $DIR/$tdir/$tfile.$ostnum. 1000
6702
6703                 echo "Deactivate: " $INACTIVE_OSC
6704                 do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
6705
6706                 local count=$(do_facet $SINGLEMDS "lctl get_param -n \
6707                               osp.$ost*MDT0000.create_count")
6708                 local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
6709                                   osp.$ost*MDT0000.max_create_count")
6710                 $disable_precreate &&
6711                         do_facet $SINGLEMDS "lctl set_param -n \
6712                                 osp.$ost*MDT0000.max_create_count=0"
6713
6714                 for idx in $(seq 0 $((OSTCOUNT - 1))); do
6715                         [ -f $DIR/$tdir/$idx ] && continue
6716                         echo "$LFS setstripe -i $idx -c 1 $DIR/$tdir/$idx"
6717                         $LFS setstripe -i $idx -c 1 $DIR/$tdir/$idx ||
6718                                 { cleanup_65k;
6719                                   error "setstripe $idx should succeed"; }
6720                         rm -f $DIR/$tdir/$idx || error "rm $idx failed"
6721                 done
6722                 unlinkmany $DIR/$tdir/$tfile.$ostnum. 1000
6723                 rmdir $DIR/$tdir
6724
6725                 do_facet $SINGLEMDS "lctl set_param -n \
6726                         osp.$ost*MDT0000.max_create_count=$max_count"
6727                 do_facet $SINGLEMDS "lctl set_param -n \
6728                         osp.$ost*MDT0000.create_count=$count"
6729                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
6730                 echo $INACTIVE_OSC "is Activate"
6731
6732                 wait_osc_import_state mds ost$ostnum FULL
6733         done
6734 }
6735 run_test 65k "validate manual striping works properly with deactivated OSCs"
6736
6737 test_65l() { # bug 12836
6738         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6739
6740         test_mkdir -p $DIR/$tdir/test_dir
6741         $LFS setstripe -c -1 $DIR/$tdir/test_dir
6742         $LFS find -mtime -1 $DIR/$tdir >/dev/null
6743 }
6744 run_test 65l "lfs find on -1 stripe dir ========================"
6745
6746 test_65m() {
6747         local layout=$(save_layout $MOUNT)
6748         $RUNAS $LFS setstripe -c 2 $MOUNT && {
6749                 restore_layout $MOUNT $layout
6750                 error "setstripe should fail by non-root users"
6751         }
6752         true
6753 }
6754 run_test 65m "normal user can't set filesystem default stripe"
6755
6756 test_65n() {
6757         [ -n "$FILESET" ] && skip "Not functional for FILESET set"
6758         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.12.50) ]] ||
6759                 skip "Need MDS version at least 2.12.50"
6760         [[ $PARALLEL != "yes" ]] || skip "skip parallel run"
6761
6762         [[ $OSTCOUNT -ge 2 ]] || skip_env "needs >= 2 OSTs"
6763         which getfattr > /dev/null 2>&1 || skip_env "no getfattr command"
6764         which setfattr > /dev/null 2>&1 || skip_env "no setfattr command"
6765
6766         local root_layout=$(save_layout $MOUNT)
6767         stack_trap "restore_layout $MOUNT $root_layout" EXIT
6768
6769         # new subdirectory under root directory should not inherit
6770         # the default layout from root
6771         local dir1=$MOUNT/$tdir-1
6772         mkdir $dir1 || error "mkdir $dir1 failed"
6773         ! getfattr -n trusted.lov $dir1 &> /dev/null ||
6774                 error "$dir1 shouldn't have LOV EA"
6775
6776         # delete the default layout on root directory
6777         $LFS setstripe -d $MOUNT || error "delete root default layout failed"
6778
6779         local dir2=$MOUNT/$tdir-2
6780         mkdir $dir2 || error "mkdir $dir2 failed"
6781         ! getfattr -n trusted.lov $dir2 &> /dev/null ||
6782                 error "$dir2 shouldn't have LOV EA"
6783
6784         # set a new striping pattern on root directory
6785         local def_stripe_size=$($LFS getstripe -S $MOUNT)
6786         local new_def_stripe_size=$((def_stripe_size * 2))
6787         $LFS setstripe -S $new_def_stripe_size $MOUNT ||
6788                 error "set stripe size on $MOUNT failed"
6789
6790         # new file created in $dir2 should inherit the new stripe size from
6791         # the filesystem default
6792         local file2=$dir2/$tfile-2
6793         touch $file2 || error "touch $file2 failed"
6794
6795         local file2_stripe_size=$($LFS getstripe -S $file2)
6796         [[ $file2_stripe_size -eq $new_def_stripe_size ]] ||
6797                 error "$file2 didn't inherit stripe size $new_def_stripe_size"
6798
6799         local dir3=$MOUNT/$tdir-3
6800         mkdir $dir3 || error "mkdir $dir3 failed"
6801         ! getfattr -n trusted.lov $dir3 &> /dev/null ||
6802                 error "$dir3 shouldn't have LOV EA"
6803
6804         # set OST pool on root directory
6805         local pool=$TESTNAME
6806         pool_add $pool || error "add $pool failed"
6807         pool_add_targets $pool 0 $((OSTCOUNT - 1)) 1 ||
6808                 error "add targets to $pool failed"
6809
6810         $LFS setstripe -p $pool $MOUNT ||
6811                 error "set OST pool on $MOUNT failed"
6812
6813         # new file created in $dir3 should inherit the pool from
6814         # the filesystem default
6815         local file3=$dir3/$tfile-3
6816         touch $file3 || error "touch $file3 failed"
6817
6818         local file3_pool=$($LFS getstripe -p $file3)
6819         [[ "$file3_pool" = "$pool" ]] ||
6820                 error "$file3 didn't inherit OST pool $pool"
6821
6822         local dir4=$MOUNT/$tdir-4
6823         mkdir $dir4 || error "mkdir $dir4 failed"
6824         ! getfattr -n trusted.lov $dir4 &> /dev/null ||
6825                 error "$dir4 shouldn't have LOV EA"
6826
6827         # new file created in $dir4 should inherit the pool from
6828         # the filesystem default
6829         local file4=$dir4/$tfile-4
6830         touch $file4 || error "touch $file4 failed"
6831
6832         local file4_pool=$($LFS getstripe -p $file4)
6833         [[ "$file4_pool" = "$pool" ]] ||
6834                 error "$file4 didn't inherit OST pool $pool"
6835
6836         # new subdirectory under non-root directory should inherit
6837         # the default layout from its parent directory
6838         $LFS setstripe -S $new_def_stripe_size -p $pool $dir4 ||
6839                 error "set directory layout on $dir4 failed"
6840
6841         local dir5=$dir4/$tdir-5
6842         mkdir $dir5 || error "mkdir $dir5 failed"
6843
6844         local dir4_layout=$(get_layout_param $dir4)
6845         local dir5_layout=$(get_layout_param $dir5)
6846         [[ "$dir4_layout" = "$dir5_layout" ]] ||
6847                 error "$dir5 should inherit the default layout from $dir4"
6848 }
6849 run_test 65n "don't inherit default layout from root for new subdirectories"
6850
6851 # bug 2543 - update blocks count on client
6852 test_66() {
6853         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6854
6855         COUNT=${COUNT:-8}
6856         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
6857         sync; sync_all_data; sync; sync_all_data
6858         cancel_lru_locks osc
6859         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
6860         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
6861 }
6862 run_test 66 "update inode blocks count on client ==============="
6863
6864 meminfo() {
6865         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
6866 }
6867
6868 swap_used() {
6869         swapon -s | awk '($1 == "'$1'") { print $4 }'
6870 }
6871
6872 # bug5265, obdfilter oa2dentry return -ENOENT
6873 # #define OBD_FAIL_SRV_ENOENT 0x217
6874 test_69() {
6875         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6876         remote_ost_nodsh && skip "remote OST with nodsh"
6877
6878         f="$DIR/$tfile"
6879         $LFS setstripe -c 1 -i 0 $f
6880
6881         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
6882
6883         do_facet ost1 lctl set_param fail_loc=0x217
6884         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
6885         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
6886
6887         do_facet ost1 lctl set_param fail_loc=0
6888         $DIRECTIO write $f 0 2 || error "write error"
6889
6890         cancel_lru_locks osc
6891         $DIRECTIO read $f 0 1 || error "read error"
6892
6893         do_facet ost1 lctl set_param fail_loc=0x217
6894         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
6895
6896         do_facet ost1 lctl set_param fail_loc=0
6897         rm -f $f
6898 }
6899 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
6900
6901 test_71() {
6902         test_mkdir $DIR/$tdir
6903         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
6904         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
6905 }
6906 run_test 71 "Running dbench on lustre (don't segment fault) ===="
6907
6908 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
6909         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6910         [ "$RUNAS_ID" = "$UID" ] &&
6911                 skip_env "RUNAS_ID = UID = $UID -- skipping"
6912         # Check that testing environment is properly set up. Skip if not
6913         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS ||
6914                 skip_env "User $RUNAS_ID does not exist - skipping"
6915
6916         touch $DIR/$tfile
6917         chmod 777 $DIR/$tfile
6918         chmod ug+s $DIR/$tfile
6919         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
6920                 error "$RUNAS dd $DIR/$tfile failed"
6921         # See if we are still setuid/sgid
6922         test -u $DIR/$tfile -o -g $DIR/$tfile &&
6923                 error "S/gid is not dropped on write"
6924         # Now test that MDS is updated too
6925         cancel_lru_locks mdc
6926         test -u $DIR/$tfile -o -g $DIR/$tfile &&
6927                 error "S/gid is not dropped on MDS"
6928         rm -f $DIR/$tfile
6929 }
6930 run_test 72a "Test that remove suid works properly (bug5695) ===="
6931
6932 test_72b() { # bug 24226 -- keep mode setting when size is not changing
6933         local perm
6934
6935         [ "$RUNAS_ID" = "$UID" ] &&
6936                 skip_env "RUNAS_ID = UID = $UID -- skipping"
6937         [ "$RUNAS_ID" -eq 0 ] &&
6938                 skip_env "RUNAS_ID = 0 -- skipping"
6939         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6940         # Check that testing environment is properly set up. Skip if not
6941         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS ||
6942                 skip_env "User $RUNAS_ID does not exist - skipping"
6943
6944         touch $DIR/${tfile}-f{g,u}
6945         test_mkdir $DIR/${tfile}-dg
6946         test_mkdir $DIR/${tfile}-du
6947         chmod 770 $DIR/${tfile}-{f,d}{g,u}
6948         chmod g+s $DIR/${tfile}-{f,d}g
6949         chmod u+s $DIR/${tfile}-{f,d}u
6950         for perm in 777 2777 4777; do
6951                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
6952                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
6953                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
6954                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
6955         done
6956         true
6957 }
6958 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
6959
6960 # bug 3462 - multiple simultaneous MDC requests
6961 test_73() {
6962         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6963
6964         test_mkdir $DIR/d73-1
6965         test_mkdir $DIR/d73-2
6966         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
6967         pid1=$!
6968
6969         lctl set_param fail_loc=0x80000129
6970         $MULTIOP $DIR/d73-1/f73-2 Oc &
6971         sleep 1
6972         lctl set_param fail_loc=0
6973
6974         $MULTIOP $DIR/d73-2/f73-3 Oc &
6975         pid3=$!
6976
6977         kill -USR1 $pid1
6978         wait $pid1 || return 1
6979
6980         sleep 25
6981
6982         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
6983         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
6984         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
6985
6986         rm -rf $DIR/d73-*
6987 }
6988 run_test 73 "multiple MDC requests (should not deadlock)"
6989
6990 test_74a() { # bug 6149, 6184
6991         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6992
6993         touch $DIR/f74a
6994         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
6995         #
6996         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
6997         # will spin in a tight reconnection loop
6998         $LCTL set_param fail_loc=0x8000030e
6999         # get any lock that won't be difficult - lookup works.
7000         ls $DIR/f74a
7001         $LCTL set_param fail_loc=0
7002         rm -f $DIR/f74a
7003         true
7004 }
7005 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
7006
7007 test_74b() { # bug 13310
7008         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7009
7010         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
7011         #
7012         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
7013         # will spin in a tight reconnection loop
7014         $LCTL set_param fail_loc=0x8000030e
7015         # get a "difficult" lock
7016         touch $DIR/f74b
7017         $LCTL set_param fail_loc=0
7018         rm -f $DIR/f74b
7019         true
7020 }
7021 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
7022
7023 test_74c() {
7024         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7025
7026         #define OBD_FAIL_LDLM_NEW_LOCK
7027         $LCTL set_param fail_loc=0x319
7028         touch $DIR/$tfile && error "touch successful"
7029         $LCTL set_param fail_loc=0
7030         true
7031 }
7032 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
7033
7034 num_inodes() {
7035         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
7036 }
7037
7038 test_76() { # Now for bug 20433, added originally in bug 1443
7039         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7040
7041         local CPUS=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
7042
7043         cancel_lru_locks osc
7044         BEFORE_INODES=$(num_inodes)
7045         echo "before inodes: $BEFORE_INODES"
7046         local COUNT=1000
7047         [ "$SLOW" = "no" ] && COUNT=100
7048         for i in $(seq $COUNT); do
7049                 touch $DIR/$tfile
7050                 rm -f $DIR/$tfile
7051         done
7052         cancel_lru_locks osc
7053         AFTER_INODES=$(num_inodes)
7054         echo "after inodes: $AFTER_INODES"
7055         local wait=0
7056         while [[ $((AFTER_INODES-1*${CPUS:-1})) -gt $BEFORE_INODES ]]; do
7057                 sleep 2
7058                 AFTER_INODES=$(num_inodes)
7059                 wait=$((wait+2))
7060                 echo "wait $wait seconds inodes: $AFTER_INODES"
7061                 if [ $wait -gt 30 ]; then
7062                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
7063                 fi
7064         done
7065 }
7066 run_test 76 "confirm clients recycle inodes properly ===="
7067
7068
7069 export ORIG_CSUM=""
7070 set_checksums()
7071 {
7072         # Note: in sptlrpc modes which enable its own bulk checksum, the
7073         # original crc32_le bulk checksum will be automatically disabled,
7074         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
7075         # will be checked by sptlrpc code against sptlrpc bulk checksum.
7076         # In this case set_checksums() will not be no-op, because sptlrpc
7077         # bulk checksum will be enabled all through the test.
7078
7079         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
7080         lctl set_param -n osc.*.checksums $1
7081         return 0
7082 }
7083
7084 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
7085                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
7086 CKSUM_TYPES=${CKSUM_TYPES:-$(lctl get_param -n osc.*osc-[^mM]*.checksum_type |
7087                              tr -d [] | head -n1)}
7088 set_checksum_type()
7089 {
7090         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
7091         log "set checksum type to $1"
7092         return 0
7093 }
7094 F77_TMP=$TMP/f77-temp
7095 F77SZ=8
7096 setup_f77() {
7097         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
7098                 error "error writing to $F77_TMP"
7099 }
7100
7101 test_77a() { # bug 10889
7102         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7103         $GSS && skip_env "could not run with gss"
7104
7105         [ ! -f $F77_TMP ] && setup_f77
7106         set_checksums 1
7107         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
7108         set_checksums 0
7109         rm -f $DIR/$tfile
7110 }
7111 run_test 77a "normal checksum read/write operation"
7112
7113 test_77b() { # bug 10889
7114         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7115         $GSS && skip_env "could not run with gss"
7116
7117         [ ! -f $F77_TMP ] && setup_f77
7118         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7119         $LCTL set_param fail_loc=0x80000409
7120         set_checksums 1
7121
7122         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
7123                 error "dd error: $?"
7124         $LCTL set_param fail_loc=0
7125
7126         for algo in $CKSUM_TYPES; do
7127                 cancel_lru_locks osc
7128                 set_checksum_type $algo
7129                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
7130                 $LCTL set_param fail_loc=0x80000408
7131                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
7132                 $LCTL set_param fail_loc=0
7133         done
7134         set_checksums 0
7135         set_checksum_type $ORIG_CSUM_TYPE
7136         rm -f $DIR/$tfile
7137 }
7138 run_test 77b "checksum error on client write, read"
7139
7140 cleanup_77c() {
7141         trap 0
7142         set_checksums 0
7143         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=0
7144         $check_ost &&
7145                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=0
7146         [ -n "$osc_file_prefix" ] && rm -f ${osc_file_prefix}*
7147         $check_ost && [ -n "$ost_file_prefix" ] &&
7148                 do_facet ost1 rm -f ${ost_file_prefix}\*
7149 }
7150
7151 test_77c() {
7152         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7153         $GSS && skip_env "could not run with gss"
7154         remote_ost_nodsh && skip "remote OST with nodsh"
7155
7156         local bad1
7157         local osc_file_prefix
7158         local osc_file
7159         local check_ost=false
7160         local ost_file_prefix
7161         local ost_file
7162         local orig_cksum
7163         local dump_cksum
7164         local fid
7165
7166         # ensure corruption will occur on first OSS/OST
7167         $LFS setstripe -i 0 $DIR/$tfile
7168
7169         [ ! -f $F77_TMP ] && setup_f77
7170         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
7171                 error "dd write error: $?"
7172         fid=$($LFS path2fid $DIR/$tfile)
7173
7174         if [ $OST1_VERSION -ge $(version_code 2.9.57) ]
7175         then
7176                 check_ost=true
7177                 ost_file_prefix=$(do_facet ost1 $LCTL get_param -n debug_path)
7178                 ost_file_prefix=${ost_file_prefix}-checksum_dump-ost-\\${fid}
7179         else
7180                 echo "OSS do not support bulk pages dump upon error"
7181         fi
7182
7183         osc_file_prefix=$($LCTL get_param -n debug_path)
7184         osc_file_prefix=${osc_file_prefix}-checksum_dump-osc-\\${fid}
7185
7186         trap cleanup_77c EXIT
7187
7188         set_checksums 1
7189         # enable bulk pages dump upon error on Client
7190         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=1
7191         # enable bulk pages dump upon error on OSS
7192         $check_ost &&
7193                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=1
7194
7195         # flush Client cache to allow next read to reach OSS
7196         cancel_lru_locks osc
7197
7198         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE       0x408
7199         $LCTL set_param fail_loc=0x80000408
7200         dd if=$DIR/$tfile of=/dev/null bs=1M || error "dd read error: $?"
7201         $LCTL set_param fail_loc=0
7202
7203         rm -f $DIR/$tfile
7204
7205         # check cksum dump on Client
7206         osc_file=$(ls ${osc_file_prefix}*)
7207         [ -n "$osc_file" ] || error "no checksum dump file on Client"
7208         # OBD_FAIL_OSC_CHECKSUM_RECEIVE corrupts with "bad1" at start of file
7209         bad1=$(dd if=$osc_file bs=1 count=4 2>/dev/null) || error "dd error: $?"
7210         [ $bad1 == "bad1" ] || error "unexpected corrupt pattern"
7211         orig_cksum=$(dd if=$F77_TMP bs=1 skip=4 count=1048572 2>/dev/null |
7212                      cksum)
7213         dump_cksum=$(dd if=$osc_file bs=1 skip=4 2>/dev/null | cksum)
7214         [[ "$orig_cksum" == "$dump_cksum" ]] ||
7215                 error "dump content does not match on Client"
7216
7217         $check_ost || skip "No need to check cksum dump on OSS"
7218
7219         # check cksum dump on OSS
7220         ost_file=$(do_facet ost1 ls ${ost_file_prefix}\*)
7221         [ -n "$ost_file" ] || error "no checksum dump file on OSS"
7222         orig_cksum=$(dd if=$F77_TMP bs=1048576 count=1 2>/dev/null | cksum)
7223         dump_cksum=$(do_facet ost1 dd if=$ost_file 2>/dev/null \| cksum)
7224         [[ "$orig_cksum" == "$dump_cksum" ]] ||
7225                 error "dump content does not match on OSS"
7226
7227         cleanup_77c
7228 }
7229 run_test 77c "checksum error on client read with debug"
7230
7231 test_77d() { # bug 10889
7232         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7233         $GSS && skip_env "could not run with gss"
7234
7235         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7236         $LCTL set_param fail_loc=0x80000409
7237         set_checksums 1
7238         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
7239                 error "direct write: rc=$?"
7240         $LCTL set_param fail_loc=0
7241         set_checksums 0
7242
7243         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
7244         $LCTL set_param fail_loc=0x80000408
7245         set_checksums 1
7246         cancel_lru_locks osc
7247         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
7248                 error "direct read: rc=$?"
7249         $LCTL set_param fail_loc=0
7250         set_checksums 0
7251 }
7252 run_test 77d "checksum error on OST direct write, read"
7253
7254 test_77f() { # bug 10889
7255         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7256         $GSS && skip_env "could not run with gss"
7257
7258         set_checksums 1
7259         for algo in $CKSUM_TYPES; do
7260                 cancel_lru_locks osc
7261                 set_checksum_type $algo
7262                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7263                 $LCTL set_param fail_loc=0x409
7264                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
7265                         error "direct write succeeded"
7266                 $LCTL set_param fail_loc=0
7267         done
7268         set_checksum_type $ORIG_CSUM_TYPE
7269         set_checksums 0
7270 }
7271 run_test 77f "repeat checksum error on write (expect error)"
7272
7273 test_77g() { # bug 10889
7274         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7275         $GSS && skip_env "could not run with gss"
7276         remote_ost_nodsh && skip "remote OST with nodsh"
7277
7278         [ ! -f $F77_TMP ] && setup_f77
7279
7280         local file=$DIR/$tfile
7281         stack_trap "rm -f $file" EXIT
7282
7283         $LFS setstripe -c 1 -i 0 $file
7284         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
7285         do_facet ost1 lctl set_param fail_loc=0x8000021a
7286         set_checksums 1
7287         dd if=$F77_TMP of=$file bs=1M count=$F77SZ ||
7288                 error "write error: rc=$?"
7289         do_facet ost1 lctl set_param fail_loc=0
7290         set_checksums 0
7291
7292         cancel_lru_locks osc
7293         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
7294         do_facet ost1 lctl set_param fail_loc=0x8000021b
7295         set_checksums 1
7296         cmp $F77_TMP $file || error "file compare failed"
7297         do_facet ost1 lctl set_param fail_loc=0
7298         set_checksums 0
7299 }
7300 run_test 77g "checksum error on OST write, read"
7301
7302 test_77k() { # LU-10906
7303         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7304         $GSS && skip_env "could not run with gss"
7305
7306         local cksum_param="osc.$FSNAME*.checksums"
7307         local get_checksum="$LCTL get_param -n $cksum_param | head -n1"
7308         local checksum
7309         local i
7310
7311         [ "$ORIG_CSUM" ] || ORIG_CSUM=$(eval $get_checksum)
7312         stack_trap "wait_update $HOSTNAME '$get_checksum' $ORIG_CSUM" EXIT
7313         stack_trap "do_facet mgs $LCTL set_param -P $cksum_param=$ORIG_CSUM" \
7314                 EXIT
7315
7316         for i in 0 1; do
7317                 do_facet mgs $LCTL set_param -P $cksum_param=$i ||
7318                         error "failed to set checksum=$i on MGS"
7319                 wait_update $HOSTNAME "$get_checksum" $i
7320                 #remount
7321                 echo "remount client, checksum should be $i"
7322                 remount_client $MOUNT || "failed to remount client"
7323                 checksum=$(eval $get_checksum)
7324                 [ $checksum -eq $i ] || error "checksum($checksum) != $i"
7325         done
7326         # remove persistent param to avoid races with checksum mountopt below
7327         do_facet mgs $LCTL set_param -P -d $cksum_param ||
7328                 error "failed to delete checksum on MGS"
7329
7330         for opt in "checksum" "nochecksum"; do
7331                 #remount with mount option
7332                 echo "remount client with option $opt, checksum should be $i"
7333                 umount_client $MOUNT || "failed to umount client"
7334                 mount_client $MOUNT "$MOUNT_OPTS,$opt" ||
7335                         "failed to mount client with option '$opt'"
7336                 checksum=$(eval $get_checksum)
7337                 [ $checksum -eq $i ] || error "checksum($checksum) != $i"
7338                 i=$((i - 1))
7339         done
7340
7341         remount_client $MOUNT || "failed to remount client"
7342 }
7343 run_test 77k "enable/disable checksum correctly"
7344
7345 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
7346 rm -f $F77_TMP
7347 unset F77_TMP
7348
7349 cleanup_test_78() {
7350         trap 0
7351         rm -f $DIR/$tfile
7352 }
7353
7354 test_78() { # bug 10901
7355         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7356         remote_ost || skip_env "local OST"
7357
7358         NSEQ=5
7359         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
7360         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
7361         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
7362         echo "MemTotal: $MEMTOTAL"
7363
7364         # reserve 256MB of memory for the kernel and other running processes,
7365         # and then take 1/2 of the remaining memory for the read/write buffers.
7366         if [ $MEMTOTAL -gt 512 ] ;then
7367                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
7368         else
7369                 # for those poor memory-starved high-end clusters...
7370                 MEMTOTAL=$((MEMTOTAL / 2))
7371         fi
7372         echo "Mem to use for directio: $MEMTOTAL"
7373
7374         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
7375         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
7376         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
7377         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
7378                 head -n1)
7379         echo "Smallest OST: $SMALLESTOST"
7380         [[ $SMALLESTOST -lt 10240 ]] &&
7381                 skip "too small OSTSIZE, useless to run large O_DIRECT test"
7382
7383         trap cleanup_test_78 EXIT
7384
7385         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
7386                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
7387
7388         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
7389         echo "File size: $F78SIZE"
7390         $LFS setstripe -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
7391         for i in $(seq 1 $NSEQ); do
7392                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
7393                 echo directIO rdwr round $i of $NSEQ
7394                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
7395         done
7396
7397         cleanup_test_78
7398 }
7399 run_test 78 "handle large O_DIRECT writes correctly ============"
7400
7401 test_79() { # bug 12743
7402         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7403
7404         wait_delete_completed
7405
7406         BKTOTAL=$(calc_osc_kbytes kbytestotal)
7407         BKFREE=$(calc_osc_kbytes kbytesfree)
7408         BKAVAIL=$(calc_osc_kbytes kbytesavail)
7409
7410         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
7411         DFTOTAL=`echo $STRING | cut -d, -f1`
7412         DFUSED=`echo $STRING  | cut -d, -f2`
7413         DFAVAIL=`echo $STRING | cut -d, -f3`
7414         DFFREE=$(($DFTOTAL - $DFUSED))
7415
7416         ALLOWANCE=$((64 * $OSTCOUNT))
7417
7418         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
7419            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
7420                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
7421         fi
7422         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
7423            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
7424                 error "df free($DFFREE) mismatch OST free($BKFREE)"
7425         fi
7426         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
7427            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
7428                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
7429         fi
7430 }
7431 run_test 79 "df report consistency check ======================="
7432
7433 test_80() { # bug 10718
7434         remote_ost_nodsh && skip "remote OST with nodsh"
7435         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7436
7437         # relax strong synchronous semantics for slow backends like ZFS
7438         local soc="obdfilter.*.sync_on_lock_cancel"
7439         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
7440         local hosts=
7441         if [ "$soc_old" != "never" ] &&
7442                 [ "$ost1_FSTYPE" != "ldiskfs" ]; then
7443                         hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
7444                                 facet_active_host $host; done | sort -u)
7445                         do_nodes $hosts lctl set_param $soc=never
7446         fi
7447
7448         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
7449         sync; sleep 1; sync
7450         local BEFORE=`date +%s`
7451         cancel_lru_locks osc
7452         local AFTER=`date +%s`
7453         local DIFF=$((AFTER-BEFORE))
7454         if [ $DIFF -gt 1 ] ; then
7455                 error "elapsed for 1M@1T = $DIFF"
7456         fi
7457
7458         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
7459
7460         rm -f $DIR/$tfile
7461 }
7462 run_test 80 "Page eviction is equally fast at high offsets too  ===="
7463
7464 test_81a() { # LU-456
7465         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7466         remote_ost_nodsh && skip "remote OST with nodsh"
7467
7468         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
7469         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
7470         do_facet ost1 lctl set_param fail_loc=0x80000228
7471
7472         # write should trigger a retry and success
7473         $LFS setstripe -i 0 -c 1 $DIR/$tfile
7474         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7475         RC=$?
7476         if [ $RC -ne 0 ] ; then
7477                 error "write should success, but failed for $RC"
7478         fi
7479 }
7480 run_test 81a "OST should retry write when get -ENOSPC ==============="
7481
7482 test_81b() { # LU-456
7483         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7484         remote_ost_nodsh && skip "remote OST with nodsh"
7485
7486         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
7487         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
7488         do_facet ost1 lctl set_param fail_loc=0x228
7489
7490         # write should retry several times and return -ENOSPC finally
7491         $LFS setstripe -i 0 -c 1 $DIR/$tfile
7492         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7493         RC=$?
7494         ENOSPC=28
7495         if [ $RC -ne $ENOSPC ] ; then
7496                 error "dd should fail for -ENOSPC, but succeed."
7497         fi
7498 }
7499 run_test 81b "OST should return -ENOSPC when retry still fails ======="
7500
7501 test_82() { # LU-1031
7502         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
7503         local gid1=14091995
7504         local gid2=16022000
7505
7506         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
7507         local MULTIPID1=$!
7508         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
7509         local MULTIPID2=$!
7510         kill -USR1 $MULTIPID2
7511         sleep 2
7512         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
7513                 error "First grouplock does not block second one"
7514         else
7515                 echo "Second grouplock blocks first one"
7516         fi
7517         kill -USR1 $MULTIPID1
7518         wait $MULTIPID1
7519         wait $MULTIPID2
7520 }
7521 run_test 82 "Basic grouplock test"
7522
7523 test_99() {
7524         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs"
7525
7526         test_mkdir $DIR/$tdir.cvsroot
7527         chown $RUNAS_ID $DIR/$tdir.cvsroot
7528
7529         cd $TMP
7530         $RUNAS cvs -d $DIR/$tdir.cvsroot init || error "cvs init failed"
7531
7532         cd /etc/init.d
7533         # some versions of cvs import exit(1) when asked to import links or
7534         # files they can't read.  ignore those files.
7535         local toignore=$(find . -type l -printf '-I %f\n' -o \
7536                          ! -perm /4 -printf '-I %f\n')
7537         $RUNAS cvs -d $DIR/$tdir.cvsroot import -m "nomesg" $toignore \
7538                 $tdir.reposname vtag rtag
7539
7540         cd $DIR
7541         test_mkdir $DIR/$tdir.reposname
7542         chown $RUNAS_ID $DIR/$tdir.reposname
7543         $RUNAS cvs -d $DIR/$tdir.cvsroot co $tdir.reposname
7544
7545         cd $DIR/$tdir.reposname
7546         $RUNAS touch foo99
7547         $RUNAS cvs add -m 'addmsg' foo99
7548         $RUNAS cvs update
7549         $RUNAS cvs commit -m 'nomsg' foo99
7550         rm -fr $DIR/$tdir.cvsroot
7551 }
7552 run_test 99 "cvs strange file/directory operations"
7553
7554 test_100() {
7555         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7556         [[ "$NETTYPE" =~ tcp ]] ||
7557                 skip_env "TCP secure port test, not useful for NETTYPE=$NETTYPE"
7558         remote_ost_nodsh && skip "remote OST with nodsh"
7559         remote_mds_nodsh && skip "remote MDS with nodsh"
7560         remote_servers ||
7561                 skip "useless for local single node setup"
7562
7563         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
7564                 [ "$PROT" != "tcp" ] && continue
7565                 RPORT=$(echo $REMOTE | cut -d: -f2)
7566                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
7567
7568                 rc=0
7569                 LPORT=`echo $LOCAL | cut -d: -f2`
7570                 if [ $LPORT -ge 1024 ]; then
7571                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
7572                         netstat -tna
7573                         error_exit "local: $LPORT > 1024, remote: $RPORT"
7574                 fi
7575         done
7576         [ "$rc" = 0 ] || error_exit "privileged port not found" )
7577 }
7578 run_test 100 "check local port using privileged port ==========="
7579
7580 function get_named_value()
7581 {
7582     local tag
7583
7584     tag=$1
7585     while read ;do
7586         line=$REPLY
7587         case $line in
7588         $tag*)
7589             echo $line | sed "s/^$tag[ ]*//"
7590             break
7591             ;;
7592         esac
7593     done
7594 }
7595
7596 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
7597                    awk '/^max_cached_mb/ { print $2 }')
7598
7599 cleanup_101a() {
7600         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
7601         trap 0
7602 }
7603
7604 test_101a() {
7605         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7606         [ $MDSCOUNT -ge 2 ] && skip_env "needs < 2 MDTs" #LU-4322
7607
7608         local s
7609         local discard
7610         local nreads=10000
7611         local cache_limit=32
7612
7613         $LCTL set_param -n osc.*-osc*.rpc_stats 0
7614         trap cleanup_101a EXIT
7615         $LCTL set_param -n llite.*.read_ahead_stats 0
7616         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
7617
7618         #
7619         # randomly read 10000 of 64K chunks from file 3x 32MB in size
7620         #
7621         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
7622         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
7623
7624         discard=0
7625         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
7626                 get_named_value 'read but discarded' | cut -d" " -f1); do
7627                         discard=$(($discard + $s))
7628         done
7629         cleanup_101a
7630
7631         if [[ $(($discard * 10)) -gt $nreads ]]; then
7632                 $LCTL get_param osc.*-osc*.rpc_stats
7633                 $LCTL get_param llite.*.read_ahead_stats
7634                 error "too many ($discard) discarded pages"
7635         fi
7636         rm -f $DIR/$tfile || true
7637 }
7638 run_test 101a "check read-ahead for random reads"
7639
7640 setup_test101bc() {
7641         test_mkdir $DIR/$tdir
7642         local ssize=$1
7643         local FILE_LENGTH=$2
7644         STRIPE_OFFSET=0
7645
7646         local FILE_SIZE_MB=$((FILE_LENGTH / ssize))
7647
7648         local list=$(comma_list $(osts_nodes))
7649         set_osd_param $list '' read_cache_enable 0
7650         set_osd_param $list '' writethrough_cache_enable 0
7651
7652         trap cleanup_test101bc EXIT
7653         # prepare the read-ahead file
7654         $LFS setstripe -S $ssize -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
7655
7656         dd if=/dev/zero of=$DIR/$tfile bs=$ssize \
7657                                 count=$FILE_SIZE_MB 2> /dev/null
7658
7659 }
7660
7661 cleanup_test101bc() {
7662         trap 0
7663         rm -rf $DIR/$tdir
7664         rm -f $DIR/$tfile
7665
7666         local list=$(comma_list $(osts_nodes))
7667         set_osd_param $list '' read_cache_enable 1
7668         set_osd_param $list '' writethrough_cache_enable 1
7669 }
7670
7671 calc_total() {
7672         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
7673 }
7674
7675 ra_check_101() {
7676         local READ_SIZE=$1
7677         local STRIPE_SIZE=$2
7678         local FILE_LENGTH=$3
7679         local RA_INC=1048576
7680         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
7681         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
7682                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
7683         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
7684                         get_named_value 'read but discarded' |
7685                         cut -d" " -f1 | calc_total)
7686         if [[ $DISCARD -gt $discard_limit ]]; then
7687                 $LCTL get_param llite.*.read_ahead_stats
7688                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
7689         else
7690                 echo "Read-ahead success for size ${READ_SIZE}"
7691         fi
7692 }
7693
7694 test_101b() {
7695         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7696         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
7697
7698         local STRIPE_SIZE=1048576
7699         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
7700
7701         if [ $SLOW == "yes" ]; then
7702                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
7703         else
7704                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
7705         fi
7706
7707         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
7708
7709         # prepare the read-ahead file
7710         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
7711         cancel_lru_locks osc
7712         for BIDX in 2 4 8 16 32 64 128 256
7713         do
7714                 local BSIZE=$((BIDX*4096))
7715                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
7716                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
7717                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
7718                 $LCTL set_param -n llite.*.read_ahead_stats 0
7719                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
7720                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
7721                 cancel_lru_locks osc
7722                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
7723         done
7724         cleanup_test101bc
7725         true
7726 }
7727 run_test 101b "check stride-io mode read-ahead ================="
7728
7729 test_101c() {
7730         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7731
7732         local STRIPE_SIZE=1048576
7733         local FILE_LENGTH=$((STRIPE_SIZE*100))
7734         local nreads=10000
7735         local rsize=65536
7736         local osc_rpc_stats
7737
7738         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
7739
7740         cancel_lru_locks osc
7741         $LCTL set_param osc.*.rpc_stats 0
7742         $READS -f $DIR/$tfile -s$FILE_LENGTH -b$rsize -n$nreads -t 180
7743         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
7744                 local stats=$($LCTL get_param -n $osc_rpc_stats)
7745                 local lines=$(echo "$stats" | awk 'END {print NR;}')
7746                 local size
7747
7748                 if [ $lines -le 20 ]; then
7749                         continue
7750                 fi
7751                 for size in 1 2 4 8; do
7752                         local rpc=$(echo "$stats" |
7753                                     awk '($1 == "'$size':") {print $2; exit; }')
7754                         [ $rpc != 0 ] && ((size * PAGE_SIZE < rsize)) &&
7755                                 error "Small $((size*PAGE_SIZE)) read IO $rpc!"
7756                 done
7757                 echo "$osc_rpc_stats check passed!"
7758         done
7759         cleanup_test101bc
7760         true
7761 }
7762 run_test 101c "check stripe_size aligned read-ahead ================="
7763
7764 set_read_ahead() {
7765         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
7766         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
7767 }
7768
7769 test_101d() {
7770         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7771
7772         local file=$DIR/$tfile
7773         local sz_MB=${FILESIZE_101d:-500}
7774         local ra_MB=${READAHEAD_MB:-40}
7775
7776         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
7777         [ $free_MB -lt $sz_MB ] &&
7778                 skip "Need free space ${sz_MB}M, have ${free_MB}M"
7779
7780         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
7781         $LFS setstripe -c -1 $file || error "setstripe failed"
7782
7783         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
7784         echo Cancel LRU locks on lustre client to flush the client cache
7785         cancel_lru_locks osc
7786
7787         echo Disable read-ahead
7788         local old_READAHEAD=$(set_read_ahead 0)
7789
7790         echo Reading the test file $file with read-ahead disabled
7791         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
7792
7793         echo Cancel LRU locks on lustre client to flush the client cache
7794         cancel_lru_locks osc
7795         echo Enable read-ahead with ${ra_MB}MB
7796         set_read_ahead $ra_MB
7797
7798         echo Reading the test file $file with read-ahead enabled
7799         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
7800
7801         echo "read-ahead disabled time read $raOFF"
7802         echo "read-ahead enabled  time read $raON"
7803
7804         set_read_ahead $old_READAHEAD
7805         rm -f $file
7806         wait_delete_completed
7807
7808         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
7809                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
7810 }
7811 run_test 101d "file read with and without read-ahead enabled"
7812
7813 test_101e() {
7814         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7815
7816         local file=$DIR/$tfile
7817         local size_KB=500  #KB
7818         local count=100
7819         local bsize=1024
7820
7821         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
7822         local need_KB=$((count * size_KB))
7823         [[ $free_KB -le $need_KB ]] &&
7824                 skip_env "Need free space $need_KB, have $free_KB"
7825
7826         echo "Creating $count ${size_KB}K test files"
7827         for ((i = 0; i < $count; i++)); do
7828                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
7829         done
7830
7831         echo "Cancel LRU locks on lustre client to flush the client cache"
7832         cancel_lru_locks $OSC
7833
7834         echo "Reset readahead stats"
7835         $LCTL set_param -n llite.*.read_ahead_stats 0
7836
7837         for ((i = 0; i < $count; i++)); do
7838                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
7839         done
7840
7841         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
7842                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
7843
7844         for ((i = 0; i < $count; i++)); do
7845                 rm -rf $file.$i 2>/dev/null
7846         done
7847
7848         #10000 means 20% reads are missing in readahead
7849         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
7850 }
7851 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
7852
7853 test_101f() {
7854         which iozone || skip_env "no iozone installed"
7855
7856         local old_debug=$($LCTL get_param debug)
7857         old_debug=${old_debug#*=}
7858         $LCTL set_param debug="reada mmap"
7859
7860         # create a test file
7861         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
7862
7863         echo Cancel LRU locks on lustre client to flush the client cache
7864         cancel_lru_locks osc
7865
7866         echo Reset readahead stats
7867         $LCTL set_param -n llite.*.read_ahead_stats 0
7868
7869         echo mmap read the file with small block size
7870         iozone -i 1 -u 1 -l 1 -+n -r 32k -s 128m -B -f $DIR/$tfile \
7871                 > /dev/null 2>&1
7872
7873         echo checking missing pages
7874         $LCTL get_param llite.*.read_ahead_stats
7875         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
7876                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
7877
7878         $LCTL set_param debug="$old_debug"
7879         [ $miss -lt 3 ] || error "misses too much pages ('$miss')!"
7880         rm -f $DIR/$tfile
7881 }
7882 run_test 101f "check mmap read performance"
7883
7884 test_101g_brw_size_test() {
7885         local mb=$1
7886         local pages=$((mb * 1048576 / PAGE_SIZE))
7887         local file=$DIR/$tfile
7888
7889         $LCTL set_param osc.*.max_pages_per_rpc=${mb}M ||
7890                 { error "unable to set max_pages_per_rpc=${mb}M"; return 1; }
7891         for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
7892                 [ $mp -ne $pages ] && error "max_pages_per_rpc $mp != $pages" &&
7893                         return 2
7894         done
7895
7896         stack_trap "rm -f $file" EXIT
7897         $LCTL set_param -n osc.*.rpc_stats=0
7898
7899         # 10 RPCs should be enough for the test
7900         local count=10
7901         dd if=/dev/zero of=$file bs=${mb}M count=$count ||
7902                 { error "dd write ${mb} MB blocks failed"; return 3; }
7903         cancel_lru_locks osc
7904         dd of=/dev/null if=$file bs=${mb}M count=$count ||
7905                 { error "dd write ${mb} MB blocks failed"; return 4; }
7906
7907         # calculate number of full-sized read and write RPCs
7908         rpcs=($($LCTL get_param -n 'osc.*.rpc_stats' |
7909                 sed -n '/pages per rpc/,/^$/p' |
7910                 awk '/'$pages':/ { reads += $2; writes += $6 }; \
7911                 END { print reads,writes }'))
7912         [ ${rpcs[0]} -ne $count ] && error "${rpcs[0]} != $count read RPCs" &&
7913                 return 5
7914         [ ${rpcs[1]} -ne $count ] && error "${rpcs[1]} != $count write RPCs" &&
7915                 return 6
7916
7917         return 0
7918 }
7919
7920 test_101g() {
7921         remote_ost_nodsh && skip "remote OST with nodsh"
7922
7923         local rpcs
7924         local osts=$(get_facets OST)
7925         local list=$(comma_list $(osts_nodes))
7926         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
7927         local brw_size="obdfilter.*.brw_size"
7928
7929         $LFS setstripe -i 0 -c 1 $DIR/$tfile
7930
7931         local orig_mb=$(do_facet ost1 $LCTL get_param -n $brw_size | head -n 1)
7932         if [ $OST1_VERSION -ge $(version_code 2.8.52) -o \
7933              \( $OST1_VERSION -ge $(version_code 2.7.17) -a \
7934                 $OST1_VERSION -lt $(version_code 2.7.50) \) ] &&
7935            [ $CLIENT_VERSION -ge $(version_code 2.8.52) -o \
7936              \( $CLIENT_VERSION -ge $(version_code 2.7.17) -a \
7937                 $CLIENT_VERSION -lt $(version_code 2.7.50) \) ]; then
7938                 [ $OST1_VERSION -ge $(version_code 2.9.52) ] && suffix="M"
7939                 if [[ $orig_mb -lt 16 ]]; then
7940                         save_lustre_params $osts "$brw_size" > $p
7941                         do_nodes $list $LCTL set_param -n $brw_size=16$suffix ||
7942                                 error "set 16MB RPC size failed"
7943
7944                         echo "remount client to enable new RPC size"
7945                         remount_client $MOUNT || error "remount_client failed"
7946                 fi
7947
7948                 test_101g_brw_size_test 16 || error "16MB RPC test failed"
7949                 # should be able to set brw_size=12, but no rpc_stats for that
7950                 test_101g_brw_size_test 8 || error "8MB RPC test failed"
7951         fi
7952
7953         test_101g_brw_size_test 4 || error "4MB RPC test failed"
7954
7955         if [[ $orig_mb -lt 16 ]]; then
7956                 restore_lustre_params < $p
7957                 remount_client $MOUNT || error "remount_client restore failed"
7958         fi
7959
7960         rm -f $p $DIR/$tfile
7961 }
7962 run_test 101g "Big bulk(4/16 MiB) readahead"
7963
7964 setup_test102() {
7965         test_mkdir $DIR/$tdir
7966         chown $RUNAS_ID $DIR/$tdir
7967         STRIPE_SIZE=65536
7968         STRIPE_OFFSET=1
7969         STRIPE_COUNT=$OSTCOUNT
7970         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
7971
7972         trap cleanup_test102 EXIT
7973         cd $DIR
7974         $1 $LFS setstripe -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
7975         cd $DIR/$tdir
7976         for num in 1 2 3 4; do
7977                 for count in $(seq 1 $STRIPE_COUNT); do
7978                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
7979                                 local size=`expr $STRIPE_SIZE \* $num`
7980                                 local file=file"$num-$idx-$count"
7981                                 $1 $LFS setstripe -S $size -i $idx -c $count $file
7982                         done
7983                 done
7984         done
7985
7986         cd $DIR
7987         $1 tar cf $TMP/f102.tar $tdir --xattrs
7988 }
7989
7990 cleanup_test102() {
7991         trap 0
7992         rm -f $TMP/f102.tar
7993         rm -rf $DIR/d0.sanity/d102
7994 }
7995
7996 test_102a() {
7997         [ "$UID" != 0 ] && skip "must run as root"
7998         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
7999                 skip_env "must have user_xattr"
8000
8001         [ -z "$(which setfattr 2>/dev/null)" ] &&
8002                 skip_env "could not find setfattr"
8003
8004         local testfile=$DIR/$tfile
8005
8006         touch $testfile
8007         echo "set/get xattr..."
8008         setfattr -n trusted.name1 -v value1 $testfile ||
8009                 error "setfattr -n trusted.name1=value1 $testfile failed"
8010         getfattr -n trusted.name1 $testfile 2> /dev/null |
8011           grep "trusted.name1=.value1" ||
8012                 error "$testfile missing trusted.name1=value1"
8013
8014         setfattr -n user.author1 -v author1 $testfile ||
8015                 error "setfattr -n user.author1=author1 $testfile failed"
8016         getfattr -n user.author1 $testfile 2> /dev/null |
8017           grep "user.author1=.author1" ||
8018                 error "$testfile missing trusted.author1=author1"
8019
8020         echo "listxattr..."
8021         setfattr -n trusted.name2 -v value2 $testfile ||
8022                 error "$testfile unable to set trusted.name2"
8023         setfattr -n trusted.name3 -v value3 $testfile ||
8024                 error "$testfile unable to set trusted.name3"
8025         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
8026             grep "trusted.name" | wc -l) -eq 3 ] ||
8027                 error "$testfile missing 3 trusted.name xattrs"
8028
8029         setfattr -n user.author2 -v author2 $testfile ||
8030                 error "$testfile unable to set user.author2"
8031         setfattr -n user.author3 -v author3 $testfile ||
8032                 error "$testfile unable to set user.author3"
8033         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
8034             grep "user.author" | wc -l) -eq 3 ] ||
8035                 error "$testfile missing 3 user.author xattrs"
8036
8037         echo "remove xattr..."
8038         setfattr -x trusted.name1 $testfile ||
8039                 error "$testfile error deleting trusted.name1"
8040         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
8041                 error "$testfile did not delete trusted.name1 xattr"
8042
8043         setfattr -x user.author1 $testfile ||
8044                 error "$testfile error deleting user.author1"
8045         echo "set lustre special xattr ..."
8046         $LFS setstripe -c1 $testfile
8047         local lovea=$(getfattr -n "trusted.lov" -e hex $testfile |
8048                 awk -F "=" '/trusted.lov/ { print $2 }' )
8049         setfattr -n "trusted.lov" -v $lovea $testfile ||
8050                 error "$testfile doesn't ignore setting trusted.lov again"
8051         setfattr -n "trusted.lov" -v "invalid_value" $testfile &&
8052                 error "$testfile allow setting invalid trusted.lov"
8053         rm -f $testfile
8054 }
8055 run_test 102a "user xattr test =================================="
8056
8057 test_102b() {
8058         [ -z "$(which setfattr 2>/dev/null)" ] &&
8059                 skip_env "could not find setfattr"
8060         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8061
8062         # b10930: get/set/list trusted.lov xattr
8063         echo "get/set/list trusted.lov xattr ..."
8064         local testfile=$DIR/$tfile
8065         $LFS setstripe -S 65536 -i 1 -c $OSTCOUNT $testfile ||
8066                 error "setstripe failed"
8067         local STRIPECOUNT=$($LFS getstripe -c $testfile) ||
8068                 error "getstripe failed"
8069         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
8070                 error "can't get trusted.lov from $testfile"
8071
8072         local testfile2=${testfile}2
8073         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
8074                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
8075
8076         $MCREATE $testfile2
8077         setfattr -n trusted.lov -v $value $testfile2
8078         local stripe_size=$($LFS getstripe -S $testfile2)
8079         local stripe_count=$($LFS getstripe -c $testfile2)
8080         [[ $stripe_size -eq 65536 ]] ||
8081                 error "stripe size $stripe_size != 65536"
8082         [[ $stripe_count -eq $STRIPECOUNT ]] ||
8083                 error "stripe count $stripe_count != $STRIPECOUNT"
8084         rm -f $DIR/$tfile
8085 }
8086 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
8087
8088 test_102c() {
8089         [ -z "$(which setfattr 2>/dev/null)" ] &&
8090                 skip_env "could not find setfattr"
8091         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8092
8093         # b10930: get/set/list lustre.lov xattr
8094         echo "get/set/list lustre.lov xattr ..."
8095         test_mkdir $DIR/$tdir
8096         chown $RUNAS_ID $DIR/$tdir
8097         local testfile=$DIR/$tdir/$tfile
8098         $RUNAS $LFS setstripe -S 65536 -i 1 -c $OSTCOUNT $testfile ||
8099                 error "setstripe failed"
8100         local STRIPECOUNT=$($RUNAS $LFS getstripe -c $testfile) ||
8101                 error "getstripe failed"
8102         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
8103         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
8104
8105         local testfile2=${testfile}2
8106         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
8107                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
8108
8109         $RUNAS $MCREATE $testfile2
8110         $RUNAS setfattr -n lustre.lov -v $value $testfile2
8111         local stripe_size=$($RUNAS $LFS getstripe -S $testfile2)
8112         local stripe_count=$($RUNAS $LFS getstripe -c $testfile2)
8113         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
8114         [ $stripe_count -eq $STRIPECOUNT ] ||
8115                 error "stripe count $stripe_count != $STRIPECOUNT"
8116 }
8117 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
8118
8119 compare_stripe_info1() {
8120         local stripe_index_all_zero=true
8121
8122         for num in 1 2 3 4; do
8123                 for count in $(seq 1 $STRIPE_COUNT); do
8124                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
8125                                 local size=$((STRIPE_SIZE * num))
8126                                 local file=file"$num-$offset-$count"
8127                                 stripe_size=$($LFS getstripe -S $PWD/$file)
8128                                 [[ $stripe_size -ne $size ]] &&
8129                                     error "$file: size $stripe_size != $size"
8130                                 stripe_count=$($LFS getstripe -c $PWD/$file)
8131                                 # allow fewer stripes to be created, ORI-601
8132                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
8133                                     error "$file: count $stripe_count != $count"
8134                                 stripe_index=$($LFS getstripe -i $PWD/$file)
8135                                 [[ $stripe_index -ne 0 ]] &&
8136                                         stripe_index_all_zero=false
8137                         done
8138                 done
8139         done
8140         $stripe_index_all_zero &&
8141                 error "all files are being extracted starting from OST index 0"
8142         return 0
8143 }
8144
8145 have_xattrs_include() {
8146         tar --help | grep -q xattrs-include &&
8147                 echo --xattrs-include="lustre.*"
8148 }
8149
8150 test_102d() {
8151         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8152         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8153
8154         XINC=$(have_xattrs_include)
8155         setup_test102
8156         tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
8157         cd $DIR/$tdir/$tdir
8158         compare_stripe_info1
8159 }
8160 run_test 102d "tar restore stripe info from tarfile,not keep osts"
8161
8162 test_102f() {
8163         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8164         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8165
8166         XINC=$(have_xattrs_include)
8167         setup_test102
8168         test_mkdir $DIR/$tdir.restore
8169         cd $DIR
8170         tar cf - --xattrs $tdir | tar xf - \
8171                 -C $DIR/$tdir.restore --xattrs $XINC
8172         cd $DIR/$tdir.restore/$tdir
8173         compare_stripe_info1
8174 }
8175 run_test 102f "tar copy files, not keep osts"
8176
8177 grow_xattr() {
8178         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
8179                 skip "must have user_xattr"
8180         [ -z "$(which setfattr 2>/dev/null)" ] &&
8181                 skip_env "could not find setfattr"
8182         [ -z "$(which getfattr 2>/dev/null)" ] &&
8183                 skip_env "could not find getfattr"
8184
8185         local xsize=${1:-1024}  # in bytes
8186         local file=$DIR/$tfile
8187         local value="$(generate_string $xsize)"
8188         local xbig=trusted.big
8189
8190         touch $file
8191         log "save $xbig on $file"
8192         setfattr -n $xbig -v $value $file ||
8193                 error "saving $xbig on $file failed"
8194
8195         local orig=$(get_xattr_value $xbig $file)
8196         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
8197
8198         local xsml=trusted.sml
8199         log "save $xsml on $file"
8200         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
8201
8202         local new=$(get_xattr_value $xbig $file)
8203         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
8204
8205         log "grow $xsml on $file"
8206         setfattr -n $xsml -v "$value" $file ||
8207                 error "growing $xsml on $file failed"
8208
8209         new=$(get_xattr_value $xbig $file)
8210         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
8211         log "$xbig still valid after growing $xsml"
8212
8213         rm -f $file
8214 }
8215
8216 test_102h() { # bug 15777
8217         grow_xattr 1024
8218 }
8219 run_test 102h "grow xattr from inside inode to external block"
8220
8221 test_102ha() {
8222         large_xattr_enabled || skip_env "ea_inode feature disabled"
8223
8224         grow_xattr $(max_xattr_size)
8225 }
8226 run_test 102ha "grow xattr from inside inode to external inode"
8227
8228 test_102i() { # bug 17038
8229         [ -z "$(which getfattr 2>/dev/null)" ] &&
8230                 skip "could not find getfattr"
8231
8232         touch $DIR/$tfile
8233         ln -s $DIR/$tfile $DIR/${tfile}link
8234         getfattr -n trusted.lov $DIR/$tfile ||
8235                 error "lgetxattr on $DIR/$tfile failed"
8236         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
8237                 grep -i "no such attr" ||
8238                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
8239         rm -f $DIR/$tfile $DIR/${tfile}link
8240 }
8241 run_test 102i "lgetxattr test on symbolic link ============"
8242
8243 test_102j() {
8244         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8245         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8246
8247         XINC=$(have_xattrs_include)
8248         setup_test102 "$RUNAS"
8249         chown $RUNAS_ID $DIR/$tdir
8250         $RUNAS tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
8251         cd $DIR/$tdir/$tdir
8252         compare_stripe_info1 "$RUNAS"
8253 }
8254 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
8255
8256 test_102k() {
8257         [ -z "$(which setfattr 2>/dev/null)" ] &&
8258                 skip "could not find setfattr"
8259
8260         touch $DIR/$tfile
8261         # b22187 just check that does not crash for regular file.
8262         setfattr -n trusted.lov $DIR/$tfile
8263         # b22187 'setfattr -n trusted.lov' should remove LOV EA for directories
8264         local test_kdir=$DIR/$tdir
8265         test_mkdir $test_kdir
8266         local default_size=$($LFS getstripe -S $test_kdir)
8267         local default_count=$($LFS getstripe -c $test_kdir)
8268         local default_offset=$($LFS getstripe -i $test_kdir)
8269         $LFS setstripe -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
8270                 error 'dir setstripe failed'
8271         setfattr -n trusted.lov $test_kdir
8272         local stripe_size=$($LFS getstripe -S $test_kdir)
8273         local stripe_count=$($LFS getstripe -c $test_kdir)
8274         local stripe_offset=$($LFS getstripe -i $test_kdir)
8275         [ $stripe_size -eq $default_size ] ||
8276                 error "stripe size $stripe_size != $default_size"
8277         [ $stripe_count -eq $default_count ] ||
8278                 error "stripe count $stripe_count != $default_count"
8279         [ $stripe_offset -eq $default_offset ] ||
8280                 error "stripe offset $stripe_offset != $default_offset"
8281         rm -rf $DIR/$tfile $test_kdir
8282 }
8283 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
8284
8285 test_102l() {
8286         [ -z "$(which getfattr 2>/dev/null)" ] &&
8287                 skip "could not find getfattr"
8288
8289         # LU-532 trusted. xattr is invisible to non-root
8290         local testfile=$DIR/$tfile
8291
8292         touch $testfile
8293
8294         echo "listxattr as user..."
8295         chown $RUNAS_ID $testfile
8296         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
8297             grep -q "trusted" &&
8298                 error "$testfile trusted xattrs are user visible"
8299
8300         return 0;
8301 }
8302 run_test 102l "listxattr size test =================================="
8303
8304 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
8305         local path=$DIR/$tfile
8306         touch $path
8307
8308         listxattr_size_check $path || error "listattr_size_check $path failed"
8309 }
8310 run_test 102m "Ensure listxattr fails on small bufffer ========"
8311
8312 cleanup_test102
8313
8314 getxattr() { # getxattr path name
8315         # Return the base64 encoding of the value of xattr name on path.
8316         local path=$1
8317         local name=$2
8318
8319         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
8320         # file: $path
8321         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
8322         #
8323         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
8324
8325         getfattr --absolute-names --encoding=base64 --name=$name $path |
8326                 awk -F= -v name=$name '$1 == name {
8327                         print substr($0, index($0, "=") + 1);
8328         }'
8329 }
8330
8331 test_102n() { # LU-4101 mdt: protect internal xattrs
8332         [ -z "$(which setfattr 2>/dev/null)" ] &&
8333                 skip "could not find setfattr"
8334         if [ $MDS1_VERSION -lt $(version_code 2.5.50) ]
8335         then
8336                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
8337         fi
8338
8339         local file0=$DIR/$tfile.0
8340         local file1=$DIR/$tfile.1
8341         local xattr0=$TMP/$tfile.0
8342         local xattr1=$TMP/$tfile.1
8343         local namelist="lov lma lmv link fid version som hsm"
8344         local name
8345         local value
8346
8347         rm -rf $file0 $file1 $xattr0 $xattr1
8348         touch $file0 $file1
8349
8350         # Get 'before' xattrs of $file1.
8351         getfattr --absolute-names --dump --match=- $file1 > $xattr0
8352
8353         [ $MDS1_VERSION -lt $(version_code 2.8.53) ] &&
8354                 namelist+=" lfsck_namespace"
8355         for name in $namelist; do
8356                 # Try to copy xattr from $file0 to $file1.
8357                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
8358
8359                 setfattr --name=trusted.$name --value="$value" $file1 ||
8360                         error "setxattr 'trusted.$name' failed"
8361
8362                 # Try to set a garbage xattr.
8363                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
8364
8365                 if [[ x$name == "xlov" ]]; then
8366                         setfattr --name=trusted.lov --value="$value" $file1 &&
8367                         error "setxattr invalid 'trusted.lov' success"
8368                 else
8369                         setfattr --name=trusted.$name --value="$value" $file1 ||
8370                                 error "setxattr invalid 'trusted.$name' failed"
8371                 fi
8372
8373                 # Try to remove the xattr from $file1. We don't care if this
8374                 # appears to succeed or fail, we just don't want there to be
8375                 # any changes or crashes.
8376                 setfattr --remove=$trusted.$name $file1 2> /dev/null
8377         done
8378
8379         if [ $MDS1_VERSION -gt $(version_code 2.6.50) ]
8380         then
8381                 name="lfsck_ns"
8382                 # Try to copy xattr from $file0 to $file1.
8383                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
8384
8385                 setfattr --name=trusted.$name --value="$value" $file1 ||
8386                         error "setxattr 'trusted.$name' failed"
8387
8388                 # Try to set a garbage xattr.
8389                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
8390
8391                 setfattr --name=trusted.$name --value="$value" $file1 ||
8392                         error "setxattr 'trusted.$name' failed"
8393
8394                 # Try to remove the xattr from $file1. We don't care if this
8395                 # appears to succeed or fail, we just don't want there to be
8396                 # any changes or crashes.
8397                 setfattr --remove=$trusted.$name $file1 2> /dev/null
8398         fi
8399
8400         # Get 'after' xattrs of file1.
8401         getfattr --absolute-names --dump --match=- $file1 > $xattr1
8402
8403         if ! diff $xattr0 $xattr1; then
8404                 error "before and after xattrs of '$file1' differ"
8405         fi
8406
8407         rm -rf $file0 $file1 $xattr0 $xattr1
8408
8409         return 0
8410 }
8411 run_test 102n "silently ignore setxattr on internal trusted xattrs"
8412
8413 test_102p() { # LU-4703 setxattr did not check ownership
8414         [ $MDS1_VERSION -lt $(version_code 2.5.56) ] &&
8415                 skip "MDS needs to be at least 2.5.56"
8416
8417         local testfile=$DIR/$tfile
8418
8419         touch $testfile
8420
8421         echo "setfacl as user..."
8422         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
8423         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
8424
8425         echo "setfattr as user..."
8426         setfacl -m "u:$RUNAS_ID:---" $testfile
8427         $RUNAS setfattr -x system.posix_acl_access $testfile
8428         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
8429 }
8430 run_test 102p "check setxattr(2) correctly fails without permission"
8431
8432 test_102q() {
8433         [ $MDS1_VERSION -lt $(version_code 2.6.92) ] &&
8434                 skip "MDS needs to be at least 2.6.92"
8435
8436         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
8437 }
8438 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
8439
8440 test_102r() {
8441         [ $MDS1_VERSION -lt $(version_code 2.6.93) ] &&
8442                 skip "MDS needs to be at least 2.6.93"
8443
8444         touch $DIR/$tfile || error "touch"
8445         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
8446         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
8447         rm $DIR/$tfile || error "rm"
8448
8449         #normal directory
8450         mkdir -p $DIR/$tdir || error "mkdir"
8451         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
8452         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
8453         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
8454                 error "$testfile error deleting user.author1"
8455         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
8456                 grep "user.$(basename $tdir)" &&
8457                 error "$tdir did not delete user.$(basename $tdir)"
8458         rmdir $DIR/$tdir || error "rmdir"
8459
8460         #striped directory
8461         test_mkdir $DIR/$tdir
8462         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
8463         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
8464         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
8465                 error "$testfile error deleting user.author1"
8466         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
8467                 grep "user.$(basename $tdir)" &&
8468                 error "$tdir did not delete user.$(basename $tdir)"
8469         rmdir $DIR/$tdir || error "rm striped dir"
8470 }
8471 run_test 102r "set EAs with empty values"
8472
8473 test_102s() {
8474         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
8475                 skip "MDS needs to be at least 2.11.52"
8476
8477         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
8478
8479         save_lustre_params client "llite.*.xattr_cache" > $save
8480
8481         for cache in 0 1; do
8482                 lctl set_param llite.*.xattr_cache=$cache
8483
8484                 rm -f $DIR/$tfile
8485                 touch $DIR/$tfile || error "touch"
8486                 for prefix in lustre security system trusted user; do
8487                         # Note getxattr() may fail with 'Operation not
8488                         # supported' or 'No such attribute' depending
8489                         # on prefix and cache.
8490                         getfattr -n $prefix.n102s $DIR/$tfile &&
8491                                 error "getxattr '$prefix.n102s' should fail (cache = $cache)"
8492                 done
8493         done
8494
8495         restore_lustre_params < $save
8496 }
8497 run_test 102s "getting nonexistent xattrs should fail"
8498
8499 test_102t() {
8500         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
8501                 skip "MDS needs to be at least 2.11.52"
8502
8503         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
8504
8505         save_lustre_params client "llite.*.xattr_cache" > $save
8506
8507         for cache in 0 1; do
8508                 lctl set_param llite.*.xattr_cache=$cache
8509
8510                 for buf_size in 0 256; do
8511                         rm -f $DIR/$tfile
8512                         touch $DIR/$tfile || error "touch"
8513                         setfattr -n user.multiop $DIR/$tfile
8514                         $MULTIOP $DIR/$tfile oa$buf_size ||
8515                                 error "cannot get zero length xattr value (buf_size = $buf_size)"
8516                 done
8517         done
8518
8519         restore_lustre_params < $save
8520 }
8521 run_test 102t "zero length xattr values handled correctly"
8522
8523 run_acl_subtest()
8524 {
8525     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
8526     return $?
8527 }
8528
8529 test_103a() {
8530         [ "$UID" != 0 ] && skip "must run as root"
8531         $GSS && skip_env "could not run under gss"
8532         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
8533                 skip_env "must have acl enabled"
8534         [ -z "$(which setfacl 2>/dev/null)" ] &&
8535                 skip_env "could not find setfacl"
8536         remote_mds_nodsh && skip "remote MDS with nodsh"
8537
8538         gpasswd -a daemon bin                           # LU-5641
8539         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
8540
8541         declare -a identity_old
8542
8543         for num in $(seq $MDSCOUNT); do
8544                 switch_identity $num true || identity_old[$num]=$?
8545         done
8546
8547         SAVE_UMASK=$(umask)
8548         umask 0022
8549         mkdir -p $DIR/$tdir
8550         cd $DIR/$tdir
8551
8552         echo "performing cp ..."
8553         run_acl_subtest cp || error "run_acl_subtest cp failed"
8554         echo "performing getfacl-noacl..."
8555         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
8556         echo "performing misc..."
8557         run_acl_subtest misc || error  "misc test failed"
8558         echo "performing permissions..."
8559         run_acl_subtest permissions || error "permissions failed"
8560         # LU-1482 mdd: Setting xattr are properly checked with and without ACLs
8561         if [ $MDS1_VERSION -gt $(version_code 2.8.55) -o \
8562              \( $MDS1_VERSION -lt $(version_code 2.6) -a \
8563              $MDS1_VERSION -ge $(version_code 2.5.29) \) ]
8564         then
8565                 echo "performing permissions xattr..."
8566                 run_acl_subtest permissions_xattr ||
8567                         error "permissions_xattr failed"
8568         fi
8569         echo "performing setfacl..."
8570         run_acl_subtest setfacl || error  "setfacl test failed"
8571
8572         # inheritance test got from HP
8573         echo "performing inheritance..."
8574         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
8575         chmod +x make-tree || error "chmod +x failed"
8576         run_acl_subtest inheritance || error "inheritance test failed"
8577         rm -f make-tree
8578
8579         echo "LU-974 ignore umask when acl is enabled..."
8580         run_acl_subtest 974 || error "LU-974 umask test failed"
8581         if [ $MDSCOUNT -ge 2 ]; then
8582                 run_acl_subtest 974_remote ||
8583                         error "LU-974 umask test failed under remote dir"
8584         fi
8585
8586         echo "LU-2561 newly created file is same size as directory..."
8587         if [ "$mds1_FSTYPE" != "zfs" ]; then
8588                 run_acl_subtest 2561 || error "LU-2561 test failed"
8589         else
8590                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
8591         fi
8592
8593         run_acl_subtest 4924 || error "LU-4924 test failed"
8594
8595         cd $SAVE_PWD
8596         umask $SAVE_UMASK
8597
8598         for num in $(seq $MDSCOUNT); do
8599                 if [ "${identity_old[$num]}" = 1 ]; then
8600                         switch_identity $num false || identity_old[$num]=$?
8601                 fi
8602         done
8603 }
8604 run_test 103a "acl test"
8605
8606 test_103b() {
8607         declare -a pids
8608         local U
8609
8610         for U in {0..511}; do
8611                 {
8612                 local O=$(printf "%04o" $U)
8613
8614                 umask $(printf "%04o" $((511 ^ $O)))
8615                 $LFS setstripe -c 1 $DIR/$tfile.s$O
8616                 local S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.s$O))
8617
8618                 (( $S == ($O & 0666) )) ||
8619                         error "lfs setstripe $DIR/$tfile.s$O '$S' != '$O'"
8620
8621                 $LFS setstripe -E16M -c 1 -E1G -S4M $DIR/$tfile.p$O
8622                 S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.p$O))
8623                 (( $S == ($O & 0666) )) ||
8624                         error "lfs setstripe -E $DIR/$tfile.p$O '$S' != '$O'"
8625
8626                 $LFS setstripe -N2 -c 1 $DIR/$tfile.m$O
8627                 S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.m$O))
8628                 (( $S == ($O & 0666) )) ||
8629                         error "lfs setstripe -N2 $DIR/$tfile.m$O '$S' != '$O'"
8630                 rm -f $DIR/$tfile.[smp]$0
8631                 } &
8632                 local pid=$!
8633
8634                 # limit the concurrently running threads to 64. LU-11878
8635                 local idx=$((U % 64))
8636                 [ -z "${pids[idx]}" ] || wait ${pids[idx]}
8637                 pids[idx]=$pid
8638         done
8639         wait
8640 }
8641 run_test 103b "umask lfs setstripe"
8642
8643 test_103c() {
8644         mkdir -p $DIR/$tdir
8645         cp -rp $DIR/$tdir $DIR/$tdir.bak
8646
8647         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
8648                 error "$DIR/$tdir shouldn't contain default ACL"
8649         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
8650                 error "$DIR/$tdir.bak shouldn't contain default ACL"
8651         true
8652 }
8653 run_test 103c "'cp -rp' won't set empty acl"
8654
8655 test_104a() {
8656         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8657
8658         touch $DIR/$tfile
8659         lfs df || error "lfs df failed"
8660         lfs df -ih || error "lfs df -ih failed"
8661         lfs df -h $DIR || error "lfs df -h $DIR failed"
8662         lfs df -i $DIR || error "lfs df -i $DIR failed"
8663         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
8664         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
8665
8666         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
8667         lctl --device %$OSC deactivate
8668         lfs df || error "lfs df with deactivated OSC failed"
8669         lctl --device %$OSC activate
8670         # wait the osc back to normal
8671         wait_osc_import_state client ost FULL
8672
8673         lfs df || error "lfs df with reactivated OSC failed"
8674         rm -f $DIR/$tfile
8675 }
8676 run_test 104a "lfs df [-ih] [path] test ========================="
8677
8678 test_104b() {
8679         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8680         [ $RUNAS_ID -eq $UID ] &&
8681                 skip_env "RUNAS_ID = UID = $UID -- skipping"
8682
8683         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
8684                         grep "Permission denied" | wc -l)))
8685         if [ $denied_cnt -ne 0 ]; then
8686                 error "lfs check servers test failed"
8687         fi
8688 }
8689 run_test 104b "$RUNAS lfs check servers test ===================="
8690
8691 test_105a() {
8692         # doesn't work on 2.4 kernels
8693         touch $DIR/$tfile
8694         if $(flock_is_enabled); then
8695                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
8696         else
8697                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
8698         fi
8699         rm -f $DIR/$tfile
8700 }
8701 run_test 105a "flock when mounted without -o flock test ========"
8702
8703 test_105b() {
8704         touch $DIR/$tfile
8705         if $(flock_is_enabled); then
8706                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
8707         else
8708                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
8709         fi
8710         rm -f $DIR/$tfile
8711 }
8712 run_test 105b "fcntl when mounted without -o flock test ========"
8713
8714 test_105c() {
8715         touch $DIR/$tfile
8716         if $(flock_is_enabled); then
8717                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
8718         else
8719                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
8720         fi
8721         rm -f $DIR/$tfile
8722 }
8723 run_test 105c "lockf when mounted without -o flock test"
8724
8725 test_105d() { # bug 15924
8726         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8727
8728         test_mkdir $DIR/$tdir
8729         flock_is_enabled || skip_env "mount w/o flock enabled"
8730         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
8731         $LCTL set_param fail_loc=0x80000315
8732         flocks_test 2 $DIR/$tdir
8733 }
8734 run_test 105d "flock race (should not freeze) ========"
8735
8736 test_105e() { # bug 22660 && 22040
8737         flock_is_enabled || skip_env "mount w/o flock enabled"
8738
8739         touch $DIR/$tfile
8740         flocks_test 3 $DIR/$tfile
8741 }
8742 run_test 105e "Two conflicting flocks from same process"
8743
8744 test_106() { #bug 10921
8745         test_mkdir $DIR/$tdir
8746         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
8747         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
8748 }
8749 run_test 106 "attempt exec of dir followed by chown of that dir"
8750
8751 test_107() {
8752         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8753
8754         CDIR=`pwd`
8755         local file=core
8756
8757         cd $DIR
8758         rm -f $file
8759
8760         local save_pattern=$(sysctl -n kernel.core_pattern)
8761         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
8762         sysctl -w kernel.core_pattern=$file
8763         sysctl -w kernel.core_uses_pid=0
8764
8765         ulimit -c unlimited
8766         sleep 60 &
8767         SLEEPPID=$!
8768
8769         sleep 1
8770
8771         kill -s 11 $SLEEPPID
8772         wait $SLEEPPID
8773         if [ -e $file ]; then
8774                 size=`stat -c%s $file`
8775                 [ $size -eq 0 ] && error "Fail to create core file $file"
8776         else
8777                 error "Fail to create core file $file"
8778         fi
8779         rm -f $file
8780         sysctl -w kernel.core_pattern=$save_pattern
8781         sysctl -w kernel.core_uses_pid=$save_uses_pid
8782         cd $CDIR
8783 }
8784 run_test 107 "Coredump on SIG"
8785
8786 test_110() {
8787         test_mkdir $DIR/$tdir
8788         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255)
8789         $LFS mkdir -c $MDSCOUNT $DIR/$tdir/$(str_repeat 'b' 256) &&
8790                 error "mkdir with 256 char should fail, but did not"
8791         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
8792                 error "create with 255 char failed"
8793         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
8794                 error "create with 256 char should fail, but did not"
8795
8796         ls -l $DIR/$tdir
8797         rm -rf $DIR/$tdir
8798 }
8799 run_test 110 "filename length checking"
8800
8801 #
8802 # Purpose: To verify dynamic thread (OSS) creation.
8803 #
8804 test_115() {
8805         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8806         remote_ost_nodsh && skip "remote OST with nodsh"
8807
8808         # Lustre does not stop service threads once they are started.
8809         # Reset number of running threads to default.
8810         stopall
8811         setupall
8812
8813         local OSTIO_pre
8814         local save_params="$TMP/sanity-$TESTNAME.parameters"
8815
8816         # Get ll_ost_io count before I/O
8817         OSTIO_pre=$(do_facet ost1 \
8818                 "$LCTL get_param ost.OSS.ost_io.threads_started | cut -d= -f2")
8819         # Exit if lustre is not running (ll_ost_io not running).
8820         [ -z "$OSTIO_pre" ] && error "no OSS threads"
8821
8822         echo "Starting with $OSTIO_pre threads"
8823         local thread_max=$((OSTIO_pre * 2))
8824         local rpc_in_flight=$((thread_max * 2))
8825         # Number of I/O Process proposed to be started.
8826         local nfiles
8827         local facets=$(get_facets OST)
8828
8829         save_lustre_params client "osc.*OST*.max_rpcs_in_flight" > $save_params
8830         save_lustre_params $facets "ost.OSS.ost_io.threads_max" >> $save_params
8831
8832         # Set in_flight to $rpc_in_flight
8833         $LCTL set_param osc.*OST*.max_rpcs_in_flight=$rpc_in_flight ||
8834                 error "Failed to set max_rpcs_in_flight to $rpc_in_flight"
8835         nfiles=${rpc_in_flight}
8836         # Set ost thread_max to $thread_max
8837         do_facet ost1 "$LCTL set_param ost.OSS.ost_io.threads_max=$thread_max"
8838
8839         # 5 Minutes should be sufficient for max number of OSS
8840         # threads(thread_max) to be created.
8841         local timeout=300
8842
8843         # Start I/O.
8844         local WTL=${WTL:-"$LUSTRE/tests/write_time_limit"}
8845         test_mkdir $DIR/$tdir
8846         for i in $(seq $nfiles); do
8847                 local file=$DIR/$tdir/${tfile}-$i
8848                 $LFS setstripe -c -1 -i 0 $file
8849                 ($WTL $file $timeout)&
8850         done
8851
8852         # I/O Started - Wait for thread_started to reach thread_max or report
8853         # error if thread_started is more than thread_max.
8854         echo "Waiting for thread_started to reach thread_max"
8855         local thread_started=0
8856         local end_time=$((SECONDS + timeout))
8857
8858         while [ $SECONDS -le $end_time ] ; do
8859                 echo -n "."
8860                 # Get ost i/o thread_started count.
8861                 thread_started=$(do_facet ost1 \
8862                         "$LCTL get_param \
8863                         ost.OSS.ost_io.threads_started | cut -d= -f2")
8864                 # Break out if thread_started is equal/greater than thread_max
8865                 if [[ $thread_started -ge $thread_max ]]; then
8866                         echo ll_ost_io thread_started $thread_started, \
8867                                 equal/greater than thread_max $thread_max
8868                         break
8869                 fi
8870                 sleep 1
8871         done
8872
8873         # Cleanup - We have the numbers, Kill i/o jobs if running.
8874         jobcount=($(jobs -p))
8875         for i in $(seq 0 $((${#jobcount[@]}-1)))
8876         do
8877                 kill -9 ${jobcount[$i]}
8878                 if [ $? -ne 0 ] ; then
8879                         echo Warning: \
8880                         Failed to Kill \'WTL\(I/O\)\' with pid ${jobcount[$i]}
8881                 fi
8882         done
8883
8884         # Cleanup files left by WTL binary.
8885         for i in $(seq $nfiles); do
8886                 local file=$DIR/$tdir/${tfile}-$i
8887                 rm -rf $file
8888                 if [ $? -ne 0 ] ; then
8889                         echo "Warning: Failed to delete file $file"
8890                 fi
8891         done
8892
8893         restore_lustre_params <$save_params
8894         rm -f $save_params || echo "Warning: delete file '$save_params' failed"
8895
8896         # Error out if no new thread has started or Thread started is greater
8897         # than thread max.
8898         if [[ $thread_started -le $OSTIO_pre ||
8899                         $thread_started -gt $thread_max ]]; then
8900                 error "ll_ost_io: thread_started $thread_started" \
8901                       "OSTIO_pre $OSTIO_pre, thread_max $thread_max." \
8902                       "No new thread started or thread started greater " \
8903                       "than thread_max."
8904         fi
8905 }
8906 run_test 115 "verify dynamic thread creation===================="
8907
8908 free_min_max () {
8909         wait_delete_completed
8910         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
8911         echo "OST kbytes available: ${AVAIL[@]}"
8912         MAXV=${AVAIL[0]}
8913         MAXI=0
8914         MINV=${AVAIL[0]}
8915         MINI=0
8916         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
8917                 #echo OST $i: ${AVAIL[i]}kb
8918                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
8919                         MAXV=${AVAIL[i]}
8920                         MAXI=$i
8921                 fi
8922                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
8923                         MINV=${AVAIL[i]}
8924                         MINI=$i
8925                 fi
8926         done
8927         echo "Min free space: OST $MINI: $MINV"
8928         echo "Max free space: OST $MAXI: $MAXV"
8929 }
8930
8931 test_116a() { # was previously test_116()
8932         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8933         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8934         remote_mds_nodsh && skip "remote MDS with nodsh"
8935
8936         echo -n "Free space priority "
8937         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
8938                 head -n1
8939         declare -a AVAIL
8940         free_min_max
8941
8942         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip"
8943         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip"
8944         trap simple_cleanup_common EXIT
8945
8946         # Check if we need to generate uneven OSTs
8947         test_mkdir -p $DIR/$tdir/OST${MINI}
8948         local FILL=$((MINV / 4))
8949         local DIFF=$((MAXV - MINV))
8950         local DIFF2=$((DIFF * 100 / MINV))
8951
8952         local threshold=$(do_facet $SINGLEMDS \
8953                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
8954         threshold=${threshold%%%}
8955         echo -n "Check for uneven OSTs: "
8956         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
8957
8958         if [[ $DIFF2 -gt $threshold ]]; then
8959                 echo "ok"
8960                 echo "Don't need to fill OST$MINI"
8961         else
8962                 # generate uneven OSTs. Write 2% over the QOS threshold value
8963                 echo "no"
8964                 DIFF=$((threshold - DIFF2 + 2))
8965                 DIFF2=$((MINV * DIFF / 100))
8966                 echo "Fill $DIFF% remaining space in OST$MINI with ${DIFF2}KB"
8967                 $LFS setstripe -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
8968                         error "setstripe failed"
8969                 DIFF=$((DIFF2 / 2048))
8970                 i=0
8971                 while [ $i -lt $DIFF ]; do
8972                         i=$((i + 1))
8973                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
8974                                 bs=2M count=1 2>/dev/null
8975                         echo -n .
8976                 done
8977                 echo .
8978                 sync
8979                 sleep_maxage
8980                 free_min_max
8981         fi
8982
8983         DIFF=$((MAXV - MINV))
8984         DIFF2=$((DIFF * 100 / MINV))
8985         echo -n "diff=$DIFF=$DIFF2% must be > $threshold% for QOS mode..."
8986         if [ $DIFF2 -gt $threshold ]; then
8987                 echo "ok"
8988         else
8989                 echo "failed - QOS mode won't be used"
8990                 simple_cleanup_common
8991                 skip "QOS imbalance criteria not met"
8992         fi
8993
8994         MINI1=$MINI
8995         MINV1=$MINV
8996         MAXI1=$MAXI
8997         MAXV1=$MAXV
8998
8999         # now fill using QOS
9000         $LFS setstripe -c 1 $DIR/$tdir
9001         FILL=$((FILL / 200))
9002         if [ $FILL -gt 600 ]; then
9003                 FILL=600
9004         fi
9005         echo "writing $FILL files to QOS-assigned OSTs"
9006         i=0
9007         while [ $i -lt $FILL ]; do
9008                 i=$((i + 1))
9009                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
9010                         count=1 2>/dev/null
9011                 echo -n .
9012         done
9013         echo "wrote $i 200k files"
9014         sync
9015         sleep_maxage
9016
9017         echo "Note: free space may not be updated, so measurements might be off"
9018         free_min_max
9019         DIFF2=$((MAXV - MINV))
9020         echo "free space delta: orig $DIFF final $DIFF2"
9021         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
9022         DIFF=$((MINV1 - ${AVAIL[$MINI1]}))
9023         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
9024         DIFF2=$((MAXV1 - ${AVAIL[$MAXI1]}))
9025         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
9026         if [[ $DIFF -gt 0 ]]; then
9027                 FILL=$((DIFF2 * 100 / DIFF - 100))
9028                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
9029         fi
9030
9031         # Figure out which files were written where
9032         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
9033                awk '/'$MINI1': / {print $2; exit}')
9034         echo $UUID
9035         MINC=$($LFS getstripe --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
9036         echo "$MINC files created on smaller OST $MINI1"
9037         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
9038                awk '/'$MAXI1': / {print $2; exit}')
9039         echo $UUID
9040         MAXC=$($LFS getstripe --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
9041         echo "$MAXC files created on larger OST $MAXI1"
9042         if [[ $MINC -gt 0 ]]; then
9043                 FILL=$((MAXC * 100 / MINC - 100))
9044                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
9045         fi
9046         [[ $MAXC -gt $MINC ]] ||
9047                 error_ignore LU-9 "stripe QOS didn't balance free space"
9048         simple_cleanup_common
9049 }
9050 run_test 116a "stripe QOS: free space balance ==================="
9051
9052 test_116b() { # LU-2093
9053         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9054         remote_mds_nodsh && skip "remote MDS with nodsh"
9055
9056 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
9057         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
9058                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
9059         [ -z "$old_rr" ] && skip "no QOS"
9060         do_facet $SINGLEMDS lctl set_param \
9061                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
9062         mkdir -p $DIR/$tdir
9063         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
9064         createmany -o $DIR/$tdir/f- 20 || error "can't create"
9065         do_facet $SINGLEMDS lctl set_param fail_loc=0
9066         rm -rf $DIR/$tdir
9067         do_facet $SINGLEMDS lctl set_param \
9068                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
9069 }
9070 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
9071
9072 test_117() # bug 10891
9073 {
9074         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9075
9076         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
9077         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
9078         lctl set_param fail_loc=0x21e
9079         > $DIR/$tfile || error "truncate failed"
9080         lctl set_param fail_loc=0
9081         echo "Truncate succeeded."
9082         rm -f $DIR/$tfile
9083 }
9084 run_test 117 "verify osd extend =========="
9085
9086 NO_SLOW_RESENDCOUNT=4
9087 export OLD_RESENDCOUNT=""
9088 set_resend_count () {
9089         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
9090         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
9091         lctl set_param -n $PROC_RESENDCOUNT $1
9092         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
9093 }
9094
9095 # for reduce test_118* time (b=14842)
9096 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
9097
9098 # Reset async IO behavior after error case
9099 reset_async() {
9100         FILE=$DIR/reset_async
9101
9102         # Ensure all OSCs are cleared
9103         $LFS setstripe -c -1 $FILE
9104         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
9105         sync
9106         rm $FILE
9107 }
9108
9109 test_118a() #bug 11710
9110 {
9111         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9112
9113         reset_async
9114
9115         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9116         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9117         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9118
9119         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9120                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9121                 return 1;
9122         fi
9123         rm -f $DIR/$tfile
9124 }
9125 run_test 118a "verify O_SYNC works =========="
9126
9127 test_118b()
9128 {
9129         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9130         remote_ost_nodsh && skip "remote OST with nodsh"
9131
9132         reset_async
9133
9134         #define OBD_FAIL_SRV_ENOENT 0x217
9135         set_nodes_failloc "$(osts_nodes)" 0x217
9136         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9137         RC=$?
9138         set_nodes_failloc "$(osts_nodes)" 0
9139         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9140         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9141                     grep -c writeback)
9142
9143         if [[ $RC -eq 0 ]]; then
9144                 error "Must return error due to dropped pages, rc=$RC"
9145                 return 1;
9146         fi
9147
9148         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9149                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9150                 return 1;
9151         fi
9152
9153         echo "Dirty pages not leaked on ENOENT"
9154
9155         # Due to the above error the OSC will issue all RPCs syncronously
9156         # until a subsequent RPC completes successfully without error.
9157         $MULTIOP $DIR/$tfile Ow4096yc
9158         rm -f $DIR/$tfile
9159
9160         return 0
9161 }
9162 run_test 118b "Reclaim dirty pages on fatal error =========="
9163
9164 test_118c()
9165 {
9166         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9167
9168         # for 118c, restore the original resend count, LU-1940
9169         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
9170                                 set_resend_count $OLD_RESENDCOUNT
9171         remote_ost_nodsh && skip "remote OST with nodsh"
9172
9173         reset_async
9174
9175         #define OBD_FAIL_OST_EROFS               0x216
9176         set_nodes_failloc "$(osts_nodes)" 0x216
9177
9178         # multiop should block due to fsync until pages are written
9179         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9180         MULTIPID=$!
9181         sleep 1
9182
9183         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
9184                 error "Multiop failed to block on fsync, pid=$MULTIPID"
9185         fi
9186
9187         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9188                     grep -c writeback)
9189         if [[ $WRITEBACK -eq 0 ]]; then
9190                 error "No page in writeback, writeback=$WRITEBACK"
9191         fi
9192
9193         set_nodes_failloc "$(osts_nodes)" 0
9194         wait $MULTIPID
9195         RC=$?
9196         if [[ $RC -ne 0 ]]; then
9197                 error "Multiop fsync failed, rc=$RC"
9198         fi
9199
9200         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9201         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9202                     grep -c writeback)
9203         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9204                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9205         fi
9206
9207         rm -f $DIR/$tfile
9208         echo "Dirty pages flushed via fsync on EROFS"
9209         return 0
9210 }
9211 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
9212
9213 # continue to use small resend count to reduce test_118* time (b=14842)
9214 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
9215
9216 test_118d()
9217 {
9218         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9219         remote_ost_nodsh && skip "remote OST with nodsh"
9220
9221         reset_async
9222
9223         #define OBD_FAIL_OST_BRW_PAUSE_BULK
9224         set_nodes_failloc "$(osts_nodes)" 0x214
9225         # multiop should block due to fsync until pages are written
9226         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9227         MULTIPID=$!
9228         sleep 1
9229
9230         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
9231                 error "Multiop failed to block on fsync, pid=$MULTIPID"
9232         fi
9233
9234         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9235                     grep -c writeback)
9236         if [[ $WRITEBACK -eq 0 ]]; then
9237                 error "No page in writeback, writeback=$WRITEBACK"
9238         fi
9239
9240         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
9241         set_nodes_failloc "$(osts_nodes)" 0
9242
9243         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9244         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9245                     grep -c writeback)
9246         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9247                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9248         fi
9249
9250         rm -f $DIR/$tfile
9251         echo "Dirty pages gaurenteed flushed via fsync"
9252         return 0
9253 }
9254 run_test 118d "Fsync validation inject a delay of the bulk =========="
9255
9256 test_118f() {
9257         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9258
9259         reset_async
9260
9261         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
9262         lctl set_param fail_loc=0x8000040a
9263
9264         # Should simulate EINVAL error which is fatal
9265         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9266         RC=$?
9267         if [[ $RC -eq 0 ]]; then
9268                 error "Must return error due to dropped pages, rc=$RC"
9269         fi
9270
9271         lctl set_param fail_loc=0x0
9272
9273         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9274         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9275         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9276                     grep -c writeback)
9277         if [[ $LOCKED -ne 0 ]]; then
9278                 error "Locked pages remain in cache, locked=$LOCKED"
9279         fi
9280
9281         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9282                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9283         fi
9284
9285         rm -f $DIR/$tfile
9286         echo "No pages locked after fsync"
9287
9288         reset_async
9289         return 0
9290 }
9291 run_test 118f "Simulate unrecoverable OSC side error =========="
9292
9293 test_118g() {
9294         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9295
9296         reset_async
9297
9298         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
9299         lctl set_param fail_loc=0x406
9300
9301         # simulate local -ENOMEM
9302         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9303         RC=$?
9304
9305         lctl set_param fail_loc=0
9306         if [[ $RC -eq 0 ]]; then
9307                 error "Must return error due to dropped pages, rc=$RC"
9308         fi
9309
9310         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9311         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9312         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9313                         grep -c writeback)
9314         if [[ $LOCKED -ne 0 ]]; then
9315                 error "Locked pages remain in cache, locked=$LOCKED"
9316         fi
9317
9318         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9319                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9320         fi
9321
9322         rm -f $DIR/$tfile
9323         echo "No pages locked after fsync"
9324
9325         reset_async
9326         return 0
9327 }
9328 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
9329
9330 test_118h() {
9331         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9332         remote_ost_nodsh && skip "remote OST with nodsh"
9333
9334         reset_async
9335
9336         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9337         set_nodes_failloc "$(osts_nodes)" 0x20e
9338         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
9339         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9340         RC=$?
9341
9342         set_nodes_failloc "$(osts_nodes)" 0
9343         if [[ $RC -eq 0 ]]; then
9344                 error "Must return error due to dropped pages, rc=$RC"
9345         fi
9346
9347         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9348         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9349         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9350                     grep -c writeback)
9351         if [[ $LOCKED -ne 0 ]]; then
9352                 error "Locked pages remain in cache, locked=$LOCKED"
9353         fi
9354
9355         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9356                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9357         fi
9358
9359         rm -f $DIR/$tfile
9360         echo "No pages locked after fsync"
9361
9362         return 0
9363 }
9364 run_test 118h "Verify timeout in handling recoverables errors  =========="
9365
9366 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
9367
9368 test_118i() {
9369         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9370         remote_ost_nodsh && skip "remote OST with nodsh"
9371
9372         reset_async
9373
9374         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9375         set_nodes_failloc "$(osts_nodes)" 0x20e
9376
9377         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
9378         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9379         PID=$!
9380         sleep 5
9381         set_nodes_failloc "$(osts_nodes)" 0
9382
9383         wait $PID
9384         RC=$?
9385         if [[ $RC -ne 0 ]]; then
9386                 error "got error, but should be not, rc=$RC"
9387         fi
9388
9389         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9390         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9391         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9392         if [[ $LOCKED -ne 0 ]]; then
9393                 error "Locked pages remain in cache, locked=$LOCKED"
9394         fi
9395
9396         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9397                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9398         fi
9399
9400         rm -f $DIR/$tfile
9401         echo "No pages locked after fsync"
9402
9403         return 0
9404 }
9405 run_test 118i "Fix error before timeout in recoverable error  =========="
9406
9407 [ "$SLOW" = "no" ] && set_resend_count 4
9408
9409 test_118j() {
9410         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9411         remote_ost_nodsh && skip "remote OST with nodsh"
9412
9413         reset_async
9414
9415         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
9416         set_nodes_failloc "$(osts_nodes)" 0x220
9417
9418         # return -EIO from OST
9419         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9420         RC=$?
9421         set_nodes_failloc "$(osts_nodes)" 0x0
9422         if [[ $RC -eq 0 ]]; then
9423                 error "Must return error due to dropped pages, rc=$RC"
9424         fi
9425
9426         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9427         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9428         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9429         if [[ $LOCKED -ne 0 ]]; then
9430                 error "Locked pages remain in cache, locked=$LOCKED"
9431         fi
9432
9433         # in recoverable error on OST we want resend and stay until it finished
9434         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9435                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9436         fi
9437
9438         rm -f $DIR/$tfile
9439         echo "No pages locked after fsync"
9440
9441         return 0
9442 }
9443 run_test 118j "Simulate unrecoverable OST side error =========="
9444
9445 test_118k()
9446 {
9447         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9448         remote_ost_nodsh && skip "remote OSTs with nodsh"
9449
9450         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9451         set_nodes_failloc "$(osts_nodes)" 0x20e
9452         test_mkdir $DIR/$tdir
9453
9454         for ((i=0;i<10;i++)); do
9455                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
9456                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
9457                 SLEEPPID=$!
9458                 sleep 0.500s
9459                 kill $SLEEPPID
9460                 wait $SLEEPPID
9461         done
9462
9463         set_nodes_failloc "$(osts_nodes)" 0
9464         rm -rf $DIR/$tdir
9465 }
9466 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
9467
9468 test_118l() # LU-646
9469 {
9470         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9471
9472         test_mkdir $DIR/$tdir
9473         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
9474         rm -rf $DIR/$tdir
9475 }
9476 run_test 118l "fsync dir"
9477
9478 test_118m() # LU-3066
9479 {
9480         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9481
9482         test_mkdir $DIR/$tdir
9483         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
9484         rm -rf $DIR/$tdir
9485 }
9486 run_test 118m "fdatasync dir ========="
9487
9488 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
9489
9490 test_118n()
9491 {
9492         local begin
9493         local end
9494
9495         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9496         remote_ost_nodsh && skip "remote OSTs with nodsh"
9497
9498         # Sleep to avoid a cached response.
9499         #define OBD_STATFS_CACHE_SECONDS 1
9500         sleep 2
9501
9502         # Inject a 10 second delay in the OST_STATFS handler.
9503         #define OBD_FAIL_OST_STATFS_DELAY 0x242
9504         set_nodes_failloc "$(osts_nodes)" 0x242
9505
9506         begin=$SECONDS
9507         stat --file-system $MOUNT > /dev/null
9508         end=$SECONDS
9509
9510         set_nodes_failloc "$(osts_nodes)" 0
9511
9512         if ((end - begin > 20)); then
9513             error "statfs took $((end - begin)) seconds, expected 10"
9514         fi
9515 }
9516 run_test 118n "statfs() sends OST_STATFS requests in parallel"
9517
9518 test_119a() # bug 11737
9519 {
9520         BSIZE=$((512 * 1024))
9521         directio write $DIR/$tfile 0 1 $BSIZE
9522         # We ask to read two blocks, which is more than a file size.
9523         # directio will indicate an error when requested and actual
9524         # sizes aren't equeal (a normal situation in this case) and
9525         # print actual read amount.
9526         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
9527         if [ "$NOB" != "$BSIZE" ]; then
9528                 error "read $NOB bytes instead of $BSIZE"
9529         fi
9530         rm -f $DIR/$tfile
9531 }
9532 run_test 119a "Short directIO read must return actual read amount"
9533
9534 test_119b() # bug 11737
9535 {
9536         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
9537
9538         $LFS setstripe -c 2 $DIR/$tfile || error "setstripe failed"
9539         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
9540         sync
9541         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) ||
9542                 error "direct read failed"
9543         rm -f $DIR/$tfile
9544 }
9545 run_test 119b "Sparse directIO read must return actual read amount"
9546
9547 test_119c() # bug 13099
9548 {
9549         BSIZE=1048576
9550         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
9551         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
9552         rm -f $DIR/$tfile
9553 }
9554 run_test 119c "Testing for direct read hitting hole"
9555
9556 test_119d() # bug 15950
9557 {
9558         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9559
9560         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
9561         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
9562         BSIZE=1048576
9563         $LFS setstripe $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
9564         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
9565         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
9566         lctl set_param fail_loc=0x40d
9567         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
9568         pid_dio=$!
9569         sleep 1
9570         cat $DIR/$tfile > /dev/null &
9571         lctl set_param fail_loc=0
9572         pid_reads=$!
9573         wait $pid_dio
9574         log "the DIO writes have completed, now wait for the reads (should not block very long)"
9575         sleep 2
9576         [ -n "`ps h -p $pid_reads -o comm`" ] && \
9577         error "the read rpcs have not completed in 2s"
9578         rm -f $DIR/$tfile
9579         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
9580 }
9581 run_test 119d "The DIO path should try to send a new rpc once one is completed"
9582
9583 test_120a() {
9584         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9585         remote_mds_nodsh && skip "remote MDS with nodsh"
9586         test_mkdir $DIR/$tdir
9587         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9588                 skip_env "no early lock cancel on server"
9589
9590         lru_resize_disable mdc
9591         lru_resize_disable osc
9592         cancel_lru_locks mdc
9593         # asynchronous object destroy at MDT could cause bl ast to client
9594         cancel_lru_locks osc
9595
9596         stat $DIR/$tdir > /dev/null
9597         can1=$(do_facet $SINGLEMDS \
9598                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9599                awk '/ldlm_cancel/ {print $2}')
9600         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9601                awk '/ldlm_bl_callback/ {print $2}')
9602         test_mkdir -c1 $DIR/$tdir/d1
9603         can2=$(do_facet $SINGLEMDS \
9604                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9605                awk '/ldlm_cancel/ {print $2}')
9606         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9607                awk '/ldlm_bl_callback/ {print $2}')
9608         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9609         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9610         lru_resize_enable mdc
9611         lru_resize_enable osc
9612 }
9613 run_test 120a "Early Lock Cancel: mkdir test"
9614
9615 test_120b() {
9616         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9617         remote_mds_nodsh && skip "remote MDS with nodsh"
9618         test_mkdir $DIR/$tdir
9619         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9620                 skip_env "no early lock cancel on server"
9621
9622         lru_resize_disable mdc
9623         lru_resize_disable osc
9624         cancel_lru_locks mdc
9625         stat $DIR/$tdir > /dev/null
9626         can1=$(do_facet $SINGLEMDS \
9627                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9628                awk '/ldlm_cancel/ {print $2}')
9629         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9630                awk '/ldlm_bl_callback/ {print $2}')
9631         touch $DIR/$tdir/f1
9632         can2=$(do_facet $SINGLEMDS \
9633                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9634                awk '/ldlm_cancel/ {print $2}')
9635         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9636                awk '/ldlm_bl_callback/ {print $2}')
9637         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9638         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9639         lru_resize_enable mdc
9640         lru_resize_enable osc
9641 }
9642 run_test 120b "Early Lock Cancel: create test"
9643
9644 test_120c() {
9645         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9646         remote_mds_nodsh && skip "remote MDS with nodsh"
9647         test_mkdir -c1 $DIR/$tdir
9648         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9649                 skip "no early lock cancel on server"
9650
9651         lru_resize_disable mdc
9652         lru_resize_disable osc
9653         test_mkdir -c1 $DIR/$tdir/d1
9654         test_mkdir -c1 $DIR/$tdir/d2
9655         touch $DIR/$tdir/d1/f1
9656         cancel_lru_locks mdc
9657         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
9658         can1=$(do_facet $SINGLEMDS \
9659                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9660                awk '/ldlm_cancel/ {print $2}')
9661         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9662                awk '/ldlm_bl_callback/ {print $2}')
9663         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
9664         can2=$(do_facet $SINGLEMDS \
9665                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9666                awk '/ldlm_cancel/ {print $2}')
9667         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9668                awk '/ldlm_bl_callback/ {print $2}')
9669         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9670         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9671         lru_resize_enable mdc
9672         lru_resize_enable osc
9673 }
9674 run_test 120c "Early Lock Cancel: link test"
9675
9676 test_120d() {
9677         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9678         remote_mds_nodsh && skip "remote MDS with nodsh"
9679         test_mkdir -c1 $DIR/$tdir
9680         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9681                 skip_env "no early lock cancel on server"
9682
9683         lru_resize_disable mdc
9684         lru_resize_disable osc
9685         touch $DIR/$tdir
9686         cancel_lru_locks mdc
9687         stat $DIR/$tdir > /dev/null
9688         can1=$(do_facet $SINGLEMDS \
9689                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9690                awk '/ldlm_cancel/ {print $2}')
9691         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9692                awk '/ldlm_bl_callback/ {print $2}')
9693         chmod a+x $DIR/$tdir
9694         can2=$(do_facet $SINGLEMDS \
9695                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9696                awk '/ldlm_cancel/ {print $2}')
9697         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9698                awk '/ldlm_bl_callback/ {print $2}')
9699         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9700         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9701         lru_resize_enable mdc
9702         lru_resize_enable osc
9703 }
9704 run_test 120d "Early Lock Cancel: setattr test"
9705
9706 test_120e() {
9707         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9708         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9709                 skip_env "no early lock cancel on server"
9710         remote_mds_nodsh && skip "remote MDS with nodsh"
9711
9712         local dlmtrace_set=false
9713
9714         test_mkdir -c1 $DIR/$tdir
9715         lru_resize_disable mdc
9716         lru_resize_disable osc
9717         ! $LCTL get_param debug | grep -q dlmtrace &&
9718                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
9719         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
9720         cancel_lru_locks mdc
9721         cancel_lru_locks osc
9722         dd if=$DIR/$tdir/f1 of=/dev/null
9723         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
9724         # XXX client can not do early lock cancel of OST lock
9725         # during unlink (LU-4206), so cancel osc lock now.
9726         sleep 2
9727         cancel_lru_locks osc
9728         can1=$(do_facet $SINGLEMDS \
9729                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9730                awk '/ldlm_cancel/ {print $2}')
9731         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9732                awk '/ldlm_bl_callback/ {print $2}')
9733         unlink $DIR/$tdir/f1
9734         sleep 5
9735         can2=$(do_facet $SINGLEMDS \
9736                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9737                awk '/ldlm_cancel/ {print $2}')
9738         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9739                awk '/ldlm_bl_callback/ {print $2}')
9740         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
9741                 $LCTL dk $TMP/cancel.debug.txt
9742         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
9743                 $LCTL dk $TMP/blocking.debug.txt
9744         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
9745         lru_resize_enable mdc
9746         lru_resize_enable osc
9747 }
9748 run_test 120e "Early Lock Cancel: unlink test"
9749
9750 test_120f() {
9751         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9752         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9753                 skip_env "no early lock cancel on server"
9754         remote_mds_nodsh && skip "remote MDS with nodsh"
9755
9756         test_mkdir -c1 $DIR/$tdir
9757         lru_resize_disable mdc
9758         lru_resize_disable osc
9759         test_mkdir -c1 $DIR/$tdir/d1
9760         test_mkdir -c1 $DIR/$tdir/d2
9761         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
9762         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
9763         cancel_lru_locks mdc
9764         cancel_lru_locks osc
9765         dd if=$DIR/$tdir/d1/f1 of=/dev/null
9766         dd if=$DIR/$tdir/d2/f2 of=/dev/null
9767         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
9768         # XXX client can not do early lock cancel of OST lock
9769         # during rename (LU-4206), so cancel osc lock now.
9770         sleep 2
9771         cancel_lru_locks osc
9772         can1=$(do_facet $SINGLEMDS \
9773                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9774                awk '/ldlm_cancel/ {print $2}')
9775         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9776                awk '/ldlm_bl_callback/ {print $2}')
9777         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
9778         sleep 5
9779         can2=$(do_facet $SINGLEMDS \
9780                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9781                awk '/ldlm_cancel/ {print $2}')
9782         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9783                awk '/ldlm_bl_callback/ {print $2}')
9784         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9785         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9786         lru_resize_enable mdc
9787         lru_resize_enable osc
9788 }
9789 run_test 120f "Early Lock Cancel: rename test"
9790
9791 test_120g() {
9792         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9793         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9794                 skip_env "no early lock cancel on server"
9795         remote_mds_nodsh && skip "remote MDS with nodsh"
9796
9797         lru_resize_disable mdc
9798         lru_resize_disable osc
9799         count=10000
9800         echo create $count files
9801         test_mkdir $DIR/$tdir
9802         cancel_lru_locks mdc
9803         cancel_lru_locks osc
9804         t0=$(date +%s)
9805
9806         can0=$(do_facet $SINGLEMDS \
9807                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9808                awk '/ldlm_cancel/ {print $2}')
9809         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9810                awk '/ldlm_bl_callback/ {print $2}')
9811         createmany -o $DIR/$tdir/f $count
9812         sync
9813         can1=$(do_facet $SINGLEMDS \
9814                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9815                awk '/ldlm_cancel/ {print $2}')
9816         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9817                awk '/ldlm_bl_callback/ {print $2}')
9818         t1=$(date +%s)
9819         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
9820         echo rm $count files
9821         rm -r $DIR/$tdir
9822         sync
9823         can2=$(do_facet $SINGLEMDS \
9824                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9825                awk '/ldlm_cancel/ {print $2}')
9826         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9827                awk '/ldlm_bl_callback/ {print $2}')
9828         t2=$(date +%s)
9829         echo total: $count removes in $((t2-t1))
9830         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
9831         sleep 2
9832         # wait for commitment of removal
9833         lru_resize_enable mdc
9834         lru_resize_enable osc
9835 }
9836 run_test 120g "Early Lock Cancel: performance test"
9837
9838 test_121() { #bug #10589
9839         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9840
9841         rm -rf $DIR/$tfile
9842         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
9843 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
9844         lctl set_param fail_loc=0x310
9845         cancel_lru_locks osc > /dev/null
9846         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
9847         lctl set_param fail_loc=0
9848         [[ $reads -eq $writes ]] ||
9849                 error "read $reads blocks, must be $writes blocks"
9850 }
9851 run_test 121 "read cancel race ========="
9852
9853 test_123a() { # was test 123, statahead(bug 11401)
9854         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9855
9856         SLOWOK=0
9857         if ! grep -q "processor.*: 1" /proc/cpuinfo; then
9858                 log "testing UP system. Performance may be lower than expected."
9859                 SLOWOK=1
9860         fi
9861
9862         rm -rf $DIR/$tdir
9863         test_mkdir $DIR/$tdir
9864         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
9865         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
9866         MULT=10
9867         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
9868                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
9869
9870                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
9871                 lctl set_param -n llite.*.statahead_max 0
9872                 lctl get_param llite.*.statahead_max
9873                 cancel_lru_locks mdc
9874                 cancel_lru_locks osc
9875                 stime=`date +%s`
9876                 time ls -l $DIR/$tdir | wc -l
9877                 etime=`date +%s`
9878                 delta=$((etime - stime))
9879                 log "ls $i files without statahead: $delta sec"
9880                 lctl set_param llite.*.statahead_max=$max
9881
9882                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
9883                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
9884                 cancel_lru_locks mdc
9885                 cancel_lru_locks osc
9886                 stime=`date +%s`
9887                 time ls -l $DIR/$tdir | wc -l
9888                 etime=`date +%s`
9889                 delta_sa=$((etime - stime))
9890                 log "ls $i files with statahead: $delta_sa sec"
9891                 lctl get_param -n llite.*.statahead_stats
9892                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
9893
9894                 [[ $swrong -lt $ewrong ]] &&
9895                         log "statahead was stopped, maybe too many locks held!"
9896                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
9897
9898                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
9899                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
9900                     lctl set_param -n llite.*.statahead_max 0
9901                     lctl get_param llite.*.statahead_max
9902                     cancel_lru_locks mdc
9903                     cancel_lru_locks osc
9904                     stime=`date +%s`
9905                     time ls -l $DIR/$tdir | wc -l
9906                     etime=`date +%s`
9907                     delta=$((etime - stime))
9908                     log "ls $i files again without statahead: $delta sec"
9909                     lctl set_param llite.*.statahead_max=$max
9910                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
9911                         if [  $SLOWOK -eq 0 ]; then
9912                                 error "ls $i files is slower with statahead!"
9913                         else
9914                                 log "ls $i files is slower with statahead!"
9915                         fi
9916                         break
9917                     fi
9918                 fi
9919
9920                 [ $delta -gt 20 ] && break
9921                 [ $delta -gt 8 ] && MULT=$((50 / delta))
9922                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
9923         done
9924         log "ls done"
9925
9926         stime=`date +%s`
9927         rm -r $DIR/$tdir
9928         sync
9929         etime=`date +%s`
9930         delta=$((etime - stime))
9931         log "rm -r $DIR/$tdir/: $delta seconds"
9932         log "rm done"
9933         lctl get_param -n llite.*.statahead_stats
9934 }
9935 run_test 123a "verify statahead work"
9936
9937 test_123b () { # statahead(bug 15027)
9938         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9939
9940         test_mkdir $DIR/$tdir
9941         createmany -o $DIR/$tdir/$tfile-%d 1000
9942
9943         cancel_lru_locks mdc
9944         cancel_lru_locks osc
9945
9946 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
9947         lctl set_param fail_loc=0x80000803
9948         ls -lR $DIR/$tdir > /dev/null
9949         log "ls done"
9950         lctl set_param fail_loc=0x0
9951         lctl get_param -n llite.*.statahead_stats
9952         rm -r $DIR/$tdir
9953         sync
9954
9955 }
9956 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
9957
9958 test_124a() {
9959         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9960         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
9961                 skip_env "no lru resize on server"
9962
9963         local NR=2000
9964
9965         test_mkdir $DIR/$tdir
9966
9967         log "create $NR files at $DIR/$tdir"
9968         createmany -o $DIR/$tdir/f $NR ||
9969                 error "failed to create $NR files in $DIR/$tdir"
9970
9971         cancel_lru_locks mdc
9972         ls -l $DIR/$tdir > /dev/null
9973
9974         local NSDIR=""
9975         local LRU_SIZE=0
9976         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
9977                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
9978                 LRU_SIZE=$($LCTL get_param -n $PARAM)
9979                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
9980                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
9981                         log "NSDIR=$NSDIR"
9982                         log "NS=$(basename $NSDIR)"
9983                         break
9984                 fi
9985         done
9986
9987         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
9988                 skip "Not enough cached locks created!"
9989         fi
9990         log "LRU=$LRU_SIZE"
9991
9992         local SLEEP=30
9993
9994         # We know that lru resize allows one client to hold $LIMIT locks
9995         # for 10h. After that locks begin to be killed by client.
9996         local MAX_HRS=10
9997         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
9998         log "LIMIT=$LIMIT"
9999         if [ $LIMIT -lt $LRU_SIZE ]; then
10000                 skip "Limit is too small $LIMIT"
10001         fi
10002
10003         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
10004         # killing locks. Some time was spent for creating locks. This means
10005         # that up to the moment of sleep finish we must have killed some of
10006         # them (10-100 locks). This depends on how fast ther were created.
10007         # Many of them were touched in almost the same moment and thus will
10008         # be killed in groups.
10009         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
10010
10011         # Use $LRU_SIZE_B here to take into account real number of locks
10012         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
10013         local LRU_SIZE_B=$LRU_SIZE
10014         log "LVF=$LVF"
10015         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
10016         log "OLD_LVF=$OLD_LVF"
10017         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
10018
10019         # Let's make sure that we really have some margin. Client checks
10020         # cached locks every 10 sec.
10021         SLEEP=$((SLEEP+20))
10022         log "Sleep ${SLEEP} sec"
10023         local SEC=0
10024         while ((SEC<$SLEEP)); do
10025                 echo -n "..."
10026                 sleep 5
10027                 SEC=$((SEC+5))
10028                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
10029                 echo -n "$LRU_SIZE"
10030         done
10031         echo ""
10032         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
10033         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
10034
10035         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
10036                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
10037                 unlinkmany $DIR/$tdir/f $NR
10038                 return
10039         }
10040
10041         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
10042         log "unlink $NR files at $DIR/$tdir"
10043         unlinkmany $DIR/$tdir/f $NR
10044 }
10045 run_test 124a "lru resize ======================================="
10046
10047 get_max_pool_limit()
10048 {
10049         local limit=$($LCTL get_param \
10050                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
10051         local max=0
10052         for l in $limit; do
10053                 if [[ $l -gt $max ]]; then
10054                         max=$l
10055                 fi
10056         done
10057         echo $max
10058 }
10059
10060 test_124b() {
10061         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10062         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
10063                 skip_env "no lru resize on server"
10064
10065         LIMIT=$(get_max_pool_limit)
10066
10067         NR=$(($(default_lru_size)*20))
10068         if [[ $NR -gt $LIMIT ]]; then
10069                 log "Limit lock number by $LIMIT locks"
10070                 NR=$LIMIT
10071         fi
10072
10073         IFree=$(mdsrate_inodes_available)
10074         if [ $IFree -lt $NR ]; then
10075                 log "Limit lock number by $IFree inodes"
10076                 NR=$IFree
10077         fi
10078
10079         lru_resize_disable mdc
10080         test_mkdir -p $DIR/$tdir/disable_lru_resize
10081
10082         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
10083         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
10084         cancel_lru_locks mdc
10085         stime=`date +%s`
10086         PID=""
10087         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
10088         PID="$PID $!"
10089         sleep 2
10090         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
10091         PID="$PID $!"
10092         sleep 2
10093         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
10094         PID="$PID $!"
10095         wait $PID
10096         etime=`date +%s`
10097         nolruresize_delta=$((etime-stime))
10098         log "ls -la time: $nolruresize_delta seconds"
10099         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
10100         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
10101
10102         lru_resize_enable mdc
10103         test_mkdir -p $DIR/$tdir/enable_lru_resize
10104
10105         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
10106         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
10107         cancel_lru_locks mdc
10108         stime=`date +%s`
10109         PID=""
10110         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10111         PID="$PID $!"
10112         sleep 2
10113         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10114         PID="$PID $!"
10115         sleep 2
10116         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10117         PID="$PID $!"
10118         wait $PID
10119         etime=`date +%s`
10120         lruresize_delta=$((etime-stime))
10121         log "ls -la time: $lruresize_delta seconds"
10122         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
10123
10124         if [ $lruresize_delta -gt $nolruresize_delta ]; then
10125                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
10126         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
10127                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
10128         else
10129                 log "lru resize performs the same with no lru resize"
10130         fi
10131         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
10132 }
10133 run_test 124b "lru resize (performance test) ======================="
10134
10135 test_124c() {
10136         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10137         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
10138                 skip_env "no lru resize on server"
10139
10140         # cache ununsed locks on client
10141         local nr=100
10142         cancel_lru_locks mdc
10143         test_mkdir $DIR/$tdir
10144         createmany -o $DIR/$tdir/f $nr ||
10145                 error "failed to create $nr files in $DIR/$tdir"
10146         ls -l $DIR/$tdir > /dev/null
10147
10148         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
10149         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
10150         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
10151         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
10152         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
10153
10154         # set lru_max_age to 1 sec
10155         $LCTL set_param $nsdir.lru_max_age=1000 # milliseconds
10156         echo "sleep $((recalc_p * 2)) seconds..."
10157         sleep $((recalc_p * 2))
10158
10159         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
10160         # restore lru_max_age
10161         $LCTL set_param -n $nsdir.lru_max_age $max_age
10162         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
10163         unlinkmany $DIR/$tdir/f $nr
10164 }
10165 run_test 124c "LRUR cancel very aged locks"
10166
10167 test_125() { # 13358
10168         $LCTL get_param -n llite.*.client_type | grep -q local ||
10169                 skip "must run as local client"
10170         $LCTL get_param -n mdc.*-mdc-*.connect_flags | grep -q acl ||
10171                 skip_env "must have acl enabled"
10172         [ -z "$(which setfacl)" ] && skip_env "must have setfacl tool"
10173
10174         test_mkdir $DIR/$tdir
10175         $LFS setstripe -S 65536 -c -1 $DIR/$tdir || error "setstripe failed"
10176         setfacl -R -m u:bin:rwx $DIR/$tdir || error "setfacl $DIR/$tdir failed"
10177         ls -ld $DIR/$tdir || error "cannot access $DIR/$tdir"
10178 }
10179 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
10180
10181 test_126() { # bug 12829/13455
10182         $GSS && skip_env "must run as gss disabled"
10183         $LCTL get_param -n llite.*.client_type | grep -q local ||
10184                 skip "must run as local client"
10185         [ "$UID" != 0 ] && skip "must run as root, not UID $UID"
10186
10187         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
10188         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
10189         rm -f $DIR/$tfile
10190         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
10191 }
10192 run_test 126 "check that the fsgid provided by the client is taken into account"
10193
10194 test_127a() { # bug 15521
10195         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10196
10197         $LFS setstripe -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
10198         $LCTL set_param osc.*.stats=0
10199         FSIZE=$((2048 * 1024))
10200         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
10201         cancel_lru_locks osc
10202         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
10203
10204         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
10205         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
10206                 echo "got $COUNT $NAME"
10207                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
10208                 eval $NAME=$COUNT || error "Wrong proc format"
10209
10210                 case $NAME in
10211                         read_bytes|write_bytes)
10212                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
10213                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
10214                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
10215                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
10216                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
10217                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
10218                                 error "sumsquare is too small: $SUMSQ"
10219                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
10220                                 error "sumsquare is too big: $SUMSQ"
10221                         ;;
10222                         *) ;;
10223                 esac
10224         done < $DIR/${tfile}.tmp
10225
10226         #check that we actually got some stats
10227         [ "$read_bytes" ] || error "Missing read_bytes stats"
10228         [ "$write_bytes" ] || error "Missing write_bytes stats"
10229         [ "$read_bytes" != 0 ] || error "no read done"
10230         [ "$write_bytes" != 0 ] || error "no write done"
10231 }
10232 run_test 127a "verify the client stats are sane"
10233
10234 test_127b() { # bug LU-333
10235         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10236         local name count samp unit min max sum sumsq
10237
10238         $LCTL set_param llite.*.stats=0
10239
10240         # perform 2 reads and writes so MAX is different from SUM.
10241         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1
10242         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1
10243         cancel_lru_locks osc
10244         dd if=$DIR/$tfile of=/dev/null bs=$PAGE_SIZE count=1
10245         dd if=$DIR/$tfile of=/dev/null bs=$PAGE_SIZE count=1
10246
10247         $LCTL get_param llite.*.stats | grep samples > $TMP/$tfile.tmp
10248         while read name count samp unit min max sum sumsq; do
10249                 echo "got $count $name"
10250                 eval $name=$count || error "Wrong proc format"
10251
10252                 case $name in
10253                 read_bytes)
10254                         [ $count -ne 2 ] && error "count is not 2: $count"
10255                         [ $min -ne $PAGE_SIZE ] &&
10256                                 error "min is not $PAGE_SIZE: $min"
10257                         [ $max -ne $PAGE_SIZE ] &&
10258                                 error "max is incorrect: $max"
10259                         [ $sum -ne $((PAGE_SIZE * 2)) ] &&
10260                                 error "sum is wrong: $sum"
10261                         ;;
10262                 write_bytes)
10263                         [ $count -ne 2 ] && error "count is not 2: $count"
10264                         [ $min -ne $PAGE_SIZE ] &&
10265                                 error "min is not $PAGE_SIZE: $min"
10266                         [ $max -ne $PAGE_SIZE ] &&
10267                                 error "max is incorrect: $max"
10268                         [ $sum -ne $((PAGE_SIZE * 2)) ] &&
10269                                 error "sum is wrong: $sum"
10270                         ;;
10271                 *) ;;
10272                 esac
10273         done < $TMP/$tfile.tmp
10274
10275         #check that we actually got some stats
10276         [ "$read_bytes" ] || error "Missing read_bytes stats"
10277         [ "$write_bytes" ] || error "Missing write_bytes stats"
10278         [ "$read_bytes" != 0 ] || error "no read done"
10279         [ "$write_bytes" != 0 ] || error "no write done"
10280
10281         rm -f $TMP/${tfile}.tmp
10282 }
10283 run_test 127b "verify the llite client stats are sane"
10284
10285 test_128() { # bug 15212
10286         touch $DIR/$tfile
10287         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
10288                 find $DIR/$tfile
10289                 find $DIR/$tfile
10290         EOF
10291
10292         result=$(grep error $TMP/$tfile.log)
10293         rm -f $DIR/$tfile $TMP/$tfile.log
10294         [ -z "$result" ] ||
10295                 error "consecutive find's under interactive lfs failed"
10296 }
10297 run_test 128 "interactive lfs for 2 consecutive find's"
10298
10299 set_dir_limits () {
10300         local mntdev
10301         local canondev
10302         local node
10303
10304         local ldproc=/proc/fs/ldiskfs
10305         local facets=$(get_facets MDS)
10306
10307         for facet in ${facets//,/ }; do
10308                 canondev=$(ldiskfs_canon \
10309                            *.$(convert_facet2label $facet).mntdev $facet)
10310                 do_facet $facet "test -e $ldproc/$canondev/max_dir_size" ||
10311                         ldproc=/sys/fs/ldiskfs
10312                 do_facet $facet "echo $1 >$ldproc/$canondev/max_dir_size"
10313                 do_facet $facet "echo $2 >$ldproc/$canondev/warning_dir_size"
10314         done
10315 }
10316
10317 check_mds_dmesg() {
10318         local facets=$(get_facets MDS)
10319         for facet in ${facets//,/ }; do
10320                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
10321         done
10322         return 1
10323 }
10324
10325 test_129() {
10326         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10327         [[ $MDS1_VERSION -ge $(version_code 2.5.56) ]] ||
10328                 skip "Need MDS version with at least 2.5.56"
10329         if [ "$mds1_FSTYPE" != ldiskfs ]; then
10330                 skip_env "ldiskfs only test"
10331         fi
10332         remote_mds_nodsh && skip "remote MDS with nodsh"
10333
10334         local ENOSPC=28
10335         local EFBIG=27
10336         local has_warning=false
10337
10338         rm -rf $DIR/$tdir
10339         mkdir -p $DIR/$tdir
10340
10341         # block size of mds1
10342         local maxsize=$(($($LCTL get_param -n mdc.*MDT0000*.blocksize) * 5))
10343         set_dir_limits $maxsize $maxsize
10344         local dirsize=$(stat -c%s "$DIR/$tdir")
10345         local nfiles=0
10346         while [[ $dirsize -le $maxsize ]]; do
10347                 $MULTIOP $DIR/$tdir/file_base_$nfiles Oc
10348                 rc=$?
10349                 if ! $has_warning; then
10350                         check_mds_dmesg '"is approaching"' && has_warning=true
10351                 fi
10352                 # check two errors:
10353                 # ENOSPC for new ext4 max_dir_size (kernel commit df981d03ee)
10354                 # EFBIG for previous versions included in ldiskfs series
10355                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
10356                         set_dir_limits 0 0
10357                         echo "return code $rc received as expected"
10358
10359                         createmany -o $DIR/$tdir/file_extra_$nfiles. 5 ||
10360                                 error_exit "create failed w/o dir size limit"
10361
10362                         check_mds_dmesg '"has reached"' ||
10363                                 error_exit "reached message should be output"
10364
10365                         [ $has_warning = "false" ] &&
10366                                 error_exit "warning message should be output"
10367
10368                         dirsize=$(stat -c%s "$DIR/$tdir")
10369
10370                         [[ $dirsize -ge $maxsize ]] && return 0
10371                         error_exit "current dir size $dirsize, " \
10372                                    "previous limit $maxsize"
10373                 elif [ $rc -ne 0 ]; then
10374                         set_dir_limits 0 0
10375                         error_exit "return $rc received instead of expected " \
10376                                    "$EFBIG or $ENOSPC, files in dir $dirsize"
10377                 fi
10378                 nfiles=$((nfiles + 1))
10379                 dirsize=$(stat -c%s "$DIR/$tdir")
10380         done
10381
10382         set_dir_limits 0 0
10383         error "exceeded dir size limit $maxsize($MDSCOUNT) : $dirsize bytes"
10384 }
10385 run_test 129 "test directory size limit ========================"
10386
10387 OLDIFS="$IFS"
10388 cleanup_130() {
10389         trap 0
10390         IFS="$OLDIFS"
10391 }
10392
10393 test_130a() {
10394         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10395         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10396
10397         trap cleanup_130 EXIT RETURN
10398
10399         local fm_file=$DIR/$tfile
10400         $LFS setstripe -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
10401         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
10402                 error "dd failed for $fm_file"
10403
10404         # LU-1795: test filefrag/FIEMAP once, even if unsupported
10405         filefrag -ves $fm_file
10406         RC=$?
10407         [ "$(facet_fstype ost$(($($LFS getstripe -i $fm_file) + 1)))" = "zfs" ] &&
10408                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10409         [ $RC != 0 ] && error "filefrag $fm_file failed"
10410
10411         filefrag_op=$(filefrag -ve -k $fm_file |
10412                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10413         lun=$($LFS getstripe -i $fm_file)
10414
10415         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
10416         IFS=$'\n'
10417         tot_len=0
10418         for line in $filefrag_op
10419         do
10420                 frag_lun=`echo $line | cut -d: -f5`
10421                 ext_len=`echo $line | cut -d: -f4`
10422                 if (( $frag_lun != $lun )); then
10423                         cleanup_130
10424                         error "FIEMAP on 1-stripe file($fm_file) failed"
10425                         return
10426                 fi
10427                 (( tot_len += ext_len ))
10428         done
10429
10430         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
10431                 cleanup_130
10432                 error "FIEMAP on 1-stripe file($fm_file) failed;"
10433                 return
10434         fi
10435
10436         cleanup_130
10437
10438         echo "FIEMAP on single striped file succeeded"
10439 }
10440 run_test 130a "FIEMAP (1-stripe file)"
10441
10442 test_130b() {
10443         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >= 2 OSTs"
10444
10445         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10446         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10447
10448         trap cleanup_130 EXIT RETURN
10449
10450         local fm_file=$DIR/$tfile
10451         $LFS setstripe -S 65536 -c $OSTCOUNT $fm_file ||
10452                         error "setstripe on $fm_file"
10453         [ "$(facet_fstype ost$(($($LFS getstripe -i $fm_file) + 1)))" = "zfs" ] &&
10454                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10455
10456         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
10457                 error "dd failed on $fm_file"
10458
10459         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10460         filefrag_op=$(filefrag -ve -k $fm_file |
10461                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10462
10463         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10464                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10465
10466         IFS=$'\n'
10467         tot_len=0
10468         num_luns=1
10469         for line in $filefrag_op
10470         do
10471                 frag_lun=$(echo $line | cut -d: -f5 |
10472                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10473                 ext_len=$(echo $line | cut -d: -f4)
10474                 if (( $frag_lun != $last_lun )); then
10475                         if (( tot_len != 1024 )); then
10476                                 cleanup_130
10477                                 error "FIEMAP on $fm_file failed; returned " \
10478                                 "len $tot_len for OST $last_lun instead of 1024"
10479                                 return
10480                         else
10481                                 (( num_luns += 1 ))
10482                                 tot_len=0
10483                         fi
10484                 fi
10485                 (( tot_len += ext_len ))
10486                 last_lun=$frag_lun
10487         done
10488         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
10489                 cleanup_130
10490                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10491                         "luns or wrong len for OST $last_lun"
10492                 return
10493         fi
10494
10495         cleanup_130
10496
10497         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
10498 }
10499 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
10500
10501 test_130c() {
10502         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
10503
10504         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10505         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10506
10507         trap cleanup_130 EXIT RETURN
10508
10509         local fm_file=$DIR/$tfile
10510         $LFS setstripe -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
10511         [ "$(facet_fstype ost$(($($LFS getstripe -i $fm_file) + 1)))" = "zfs" ] &&
10512                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10513
10514         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
10515                         error "dd failed on $fm_file"
10516
10517         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10518         filefrag_op=$(filefrag -ve -k $fm_file |
10519                 sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10520
10521         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10522                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10523
10524         IFS=$'\n'
10525         tot_len=0
10526         num_luns=1
10527         for line in $filefrag_op
10528         do
10529                 frag_lun=$(echo $line | cut -d: -f5 |
10530                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10531                 ext_len=$(echo $line | cut -d: -f4)
10532                 if (( $frag_lun != $last_lun )); then
10533                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
10534                         if (( logical != 512 )); then
10535                                 cleanup_130
10536                                 error "FIEMAP on $fm_file failed; returned " \
10537                                 "logical start for lun $logical instead of 512"
10538                                 return
10539                         fi
10540                         if (( tot_len != 512 )); then
10541                                 cleanup_130
10542                                 error "FIEMAP on $fm_file failed; returned " \
10543                                 "len $tot_len for OST $last_lun instead of 1024"
10544                                 return
10545                         else
10546                                 (( num_luns += 1 ))
10547                                 tot_len=0
10548                         fi
10549                 fi
10550                 (( tot_len += ext_len ))
10551                 last_lun=$frag_lun
10552         done
10553         if (( num_luns != 2 || tot_len != 512 )); then
10554                 cleanup_130
10555                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10556                         "luns or wrong len for OST $last_lun"
10557                 return
10558         fi
10559
10560         cleanup_130
10561
10562         echo "FIEMAP on 2-stripe file with hole succeeded"
10563 }
10564 run_test 130c "FIEMAP (2-stripe file with hole)"
10565
10566 test_130d() {
10567         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
10568
10569         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10570         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10571
10572         trap cleanup_130 EXIT RETURN
10573
10574         local fm_file=$DIR/$tfile
10575         $LFS setstripe -S 65536 -c $OSTCOUNT $fm_file ||
10576                         error "setstripe on $fm_file"
10577         [ "$(facet_fstype ost$(($($LFS getstripe -i $fm_file) + 1)))" = "zfs" ] &&
10578                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10579
10580         local actual_stripe_count=$($LFS getstripe -c $fm_file)
10581         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripe_count ||
10582                 error "dd failed on $fm_file"
10583
10584         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10585         filefrag_op=$(filefrag -ve -k $fm_file |
10586                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10587
10588         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10589                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10590
10591         IFS=$'\n'
10592         tot_len=0
10593         num_luns=1
10594         for line in $filefrag_op
10595         do
10596                 frag_lun=$(echo $line | cut -d: -f5 |
10597                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10598                 ext_len=$(echo $line | cut -d: -f4)
10599                 if (( $frag_lun != $last_lun )); then
10600                         if (( tot_len != 1024 )); then
10601                                 cleanup_130
10602                                 error "FIEMAP on $fm_file failed; returned " \
10603                                 "len $tot_len for OST $last_lun instead of 1024"
10604                                 return
10605                         else
10606                                 (( num_luns += 1 ))
10607                                 tot_len=0
10608                         fi
10609                 fi
10610                 (( tot_len += ext_len ))
10611                 last_lun=$frag_lun
10612         done
10613         if (( num_luns != actual_stripe_count || tot_len != 1024 )); then
10614                 cleanup_130
10615                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10616                         "luns or wrong len for OST $last_lun"
10617                 return
10618         fi
10619
10620         cleanup_130
10621
10622         echo "FIEMAP on N-stripe file succeeded"
10623 }
10624 run_test 130d "FIEMAP (N-stripe file)"
10625
10626 test_130e() {
10627         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
10628
10629         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10630         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10631
10632         trap cleanup_130 EXIT RETURN
10633
10634         local fm_file=$DIR/$tfile
10635         $LFS setstripe -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
10636         [ "$(facet_fstype ost$(($($LFS getstripe -i $fm_file) + 1)))" = "zfs" ] &&
10637                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10638
10639         NUM_BLKS=512
10640         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
10641         for ((i = 0; i < $NUM_BLKS; i++))
10642         do
10643                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
10644         done
10645
10646         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10647         filefrag_op=$(filefrag -ve -k $fm_file |
10648                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10649
10650         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10651                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10652
10653         IFS=$'\n'
10654         tot_len=0
10655         num_luns=1
10656         for line in $filefrag_op
10657         do
10658                 frag_lun=$(echo $line | cut -d: -f5 |
10659                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10660                 ext_len=$(echo $line | cut -d: -f4)
10661                 if (( $frag_lun != $last_lun )); then
10662                         if (( tot_len != $EXPECTED_LEN )); then
10663                                 cleanup_130
10664                                 error "FIEMAP on $fm_file failed; returned " \
10665                                 "len $tot_len for OST $last_lun instead " \
10666                                 "of $EXPECTED_LEN"
10667                                 return
10668                         else
10669                                 (( num_luns += 1 ))
10670                                 tot_len=0
10671                         fi
10672                 fi
10673                 (( tot_len += ext_len ))
10674                 last_lun=$frag_lun
10675         done
10676         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
10677                 cleanup_130
10678                 error "FIEMAP on $fm_file failed; returned wrong number " \
10679                         "of luns or wrong len for OST $last_lun"
10680                 return
10681         fi
10682
10683         cleanup_130
10684
10685         echo "FIEMAP with continuation calls succeeded"
10686 }
10687 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
10688
10689 test_130f() {
10690         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10691         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10692
10693         local fm_file=$DIR/$tfile
10694         $MULTIOP $fm_file oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T33554432c ||
10695                 error "multiop create with lov_delay_create on $fm_file"
10696
10697         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10698         filefrag_extents=$(filefrag -vek $fm_file |
10699                            awk '/extents? found/ { print $2 }')
10700         if [[ "$filefrag_extents" != "0" ]]; then
10701                 error "FIEMAP on $fm_file failed; " \
10702                       "returned $filefrag_extents expected 0"
10703         fi
10704
10705         rm -f $fm_file
10706 }
10707 run_test 130f "FIEMAP (unstriped file)"
10708
10709 # Test for writev/readv
10710 test_131a() {
10711         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 ||
10712                 error "writev test failed"
10713         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 ||
10714                 error "readv failed"
10715         rm -f $DIR/$tfile
10716 }
10717 run_test 131a "test iov's crossing stripe boundary for writev/readv"
10718
10719 test_131b() {
10720         local fsize=$((524288 + 1048576 + 1572864))
10721         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 &&
10722                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
10723                         error "append writev test failed"
10724
10725         ((fsize += 1572864 + 1048576))
10726         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 &&
10727                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
10728                         error "append writev test failed"
10729         rm -f $DIR/$tfile
10730 }
10731 run_test 131b "test append writev"
10732
10733 test_131c() {
10734         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
10735         error "NOT PASS"
10736 }
10737 run_test 131c "test read/write on file w/o objects"
10738
10739 test_131d() {
10740         rwv -f $DIR/$tfile -w -n 1 1572864
10741         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
10742         if [ "$NOB" != 1572864 ]; then
10743                 error "Short read filed: read $NOB bytes instead of 1572864"
10744         fi
10745         rm -f $DIR/$tfile
10746 }
10747 run_test 131d "test short read"
10748
10749 test_131e() {
10750         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
10751         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
10752         error "read hitting hole failed"
10753         rm -f $DIR/$tfile
10754 }
10755 run_test 131e "test read hitting hole"
10756
10757 check_stats() {
10758         local facet=$1
10759         local op=$2
10760         local want=${3:-0}
10761         local res
10762
10763         case $facet in
10764         mds*) res=$(do_facet $facet \
10765                    $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$op")
10766                  ;;
10767         ost*) res=$(do_facet $facet \
10768                    $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$op")
10769                  ;;
10770         *) error "Wrong facet '$facet'" ;;
10771         esac
10772         [ "$res" ] || error "The counter for $op on $facet was not incremented"
10773         # if the argument $3 is zero, it means any stat increment is ok.
10774         if [[ $want -gt 0 ]]; then
10775                 local count=$(echo $res | awk '{ print $2 }')
10776                 [[ $count -ne $want ]] &&
10777                         error "The $op counter on $facet is $count, not $want"
10778         fi
10779 }
10780
10781 test_133a() {
10782         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10783         remote_ost_nodsh && skip "remote OST with nodsh"
10784         remote_mds_nodsh && skip "remote MDS with nodsh"
10785         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
10786                 skip_env "MDS doesn't support rename stats"
10787
10788         local testdir=$DIR/${tdir}/stats_testdir
10789
10790         mkdir -p $DIR/${tdir}
10791
10792         # clear stats.
10793         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10794         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10795
10796         # verify mdt stats first.
10797         mkdir ${testdir} || error "mkdir failed"
10798         check_stats $SINGLEMDS "mkdir" 1
10799         touch ${testdir}/${tfile} || error "touch failed"
10800         check_stats $SINGLEMDS "open" 1
10801         check_stats $SINGLEMDS "close" 1
10802         [ $MDS1_VERSION -ge $(version_code 2.8.54) ] && {
10803                 mknod ${testdir}/${tfile}-pipe p || error "mknod failed"
10804                 check_stats $SINGLEMDS "mknod" 2
10805         }
10806         rm -f ${testdir}/${tfile}-pipe || error "pipe remove failed"
10807         check_stats $SINGLEMDS "unlink" 1
10808         rm -f ${testdir}/${tfile} || error "file remove failed"
10809         check_stats $SINGLEMDS "unlink" 2
10810
10811         # remove working dir and check mdt stats again.
10812         rmdir ${testdir} || error "rmdir failed"
10813         check_stats $SINGLEMDS "rmdir" 1
10814
10815         local testdir1=$DIR/${tdir}/stats_testdir1
10816         mkdir -p ${testdir}
10817         mkdir -p ${testdir1}
10818         touch ${testdir1}/test1
10819         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
10820         check_stats $SINGLEMDS "crossdir_rename" 1
10821
10822         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
10823         check_stats $SINGLEMDS "samedir_rename" 1
10824
10825         rm -rf $DIR/${tdir}
10826 }
10827 run_test 133a "Verifying MDT stats ========================================"
10828
10829 test_133b() {
10830         local res
10831
10832         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10833         remote_ost_nodsh && skip "remote OST with nodsh"
10834         remote_mds_nodsh && skip "remote MDS with nodsh"
10835
10836         local testdir=$DIR/${tdir}/stats_testdir
10837
10838         mkdir -p ${testdir} || error "mkdir failed"
10839         touch ${testdir}/${tfile} || error "touch failed"
10840         cancel_lru_locks mdc
10841
10842         # clear stats.
10843         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10844         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10845
10846         # extra mdt stats verification.
10847         chmod 444 ${testdir}/${tfile} || error "chmod failed"
10848         check_stats $SINGLEMDS "setattr" 1
10849         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10850         if [ $MDS1_VERSION -ne $(version_code 2.2.0) ]
10851         then            # LU-1740
10852                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
10853                 check_stats $SINGLEMDS "getattr" 1
10854         fi
10855         rm -rf $DIR/${tdir}
10856
10857         # when DNE is enabled, MDT uses STATFS RPC to ping other targets
10858         # so the check below is not reliable
10859         [ $MDSCOUNT -eq 1 ] || return 0
10860
10861         # Sleep to avoid a cached response.
10862         #define OBD_STATFS_CACHE_SECONDS 1
10863         sleep 2
10864         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10865         do_facet ost1 $LCTL set_param obdfilter.*.exports.*.stats=clear
10866         $LFS df || error "lfs failed"
10867         check_stats $SINGLEMDS "statfs" 1
10868
10869         # check aggregated statfs (LU-10018)
10870         [ $MDS1_VERSION -lt $(version_code 2.11.54) ] &&
10871                 return 0
10872         [ $CLIENT_VERSION -lt $(version_code 2.11.54) ] &&
10873                 return 0
10874         sleep 2
10875         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10876         do_facet ost1 $LCTL set_param obdfilter.*.exports.*.stats=clear
10877         df $DIR
10878         check_stats $SINGLEMDS "statfs" 1
10879
10880         # We want to check that the client didn't send OST_STATFS to
10881         # ost1 but the MDT also uses OST_STATFS for precreate. So some
10882         # extra care is needed here.
10883         if remote_mds; then
10884                 local nid=$($LCTL list_nids | head -1 | sed  "s/\./\\\./g")
10885                 local param="obdfilter.$FSNAME-OST0000.exports.'$nid'.stats"
10886
10887                 res=$(do_facet ost1 $LCTL get_param $param | grep statfs)
10888                 [ "$res" ] && error "OST got STATFS"
10889         fi
10890
10891         return 0
10892 }
10893 run_test 133b "Verifying extra MDT stats =================================="
10894
10895 test_133c() {
10896         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10897         remote_ost_nodsh && skip "remote OST with nodsh"
10898         remote_mds_nodsh && skip "remote MDS with nodsh"
10899
10900         local testdir=$DIR/$tdir/stats_testdir
10901
10902         test_mkdir -p $testdir
10903
10904         # verify obdfilter stats.
10905         $LFS setstripe -c 1 -i 0 $testdir/$tfile
10906         sync
10907         cancel_lru_locks osc
10908         wait_delete_completed
10909
10910         # clear stats.
10911         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10912         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10913
10914         dd if=/dev/zero of=$testdir/$tfile conv=notrunc bs=512k count=1 ||
10915                 error "dd failed"
10916         sync
10917         cancel_lru_locks osc
10918         check_stats ost1 "write" 1
10919
10920         dd if=$testdir/$tfile of=/dev/null bs=1k count=1 || error "dd failed"
10921         check_stats ost1 "read" 1
10922
10923         > $testdir/$tfile || error "truncate failed"
10924         check_stats ost1 "punch" 1
10925
10926         rm -f $testdir/$tfile || error "file remove failed"
10927         wait_delete_completed
10928         check_stats ost1 "destroy" 1
10929
10930         rm -rf $DIR/$tdir
10931 }
10932 run_test 133c "Verifying OST stats ========================================"
10933
10934 order_2() {
10935         local value=$1
10936         local orig=$value
10937         local order=1
10938
10939         while [ $value -ge 2 ]; do
10940                 order=$((order*2))
10941                 value=$((value/2))
10942         done
10943
10944         if [ $orig -gt $order ]; then
10945                 order=$((order*2))
10946         fi
10947         echo $order
10948 }
10949
10950 size_in_KMGT() {
10951     local value=$1
10952     local size=('K' 'M' 'G' 'T');
10953     local i=0
10954     local size_string=$value
10955
10956     while [ $value -ge 1024 ]; do
10957         if [ $i -gt 3 ]; then
10958             #T is the biggest unit we get here, if that is bigger,
10959             #just return XXXT
10960             size_string=${value}T
10961             break
10962         fi
10963         value=$((value >> 10))
10964         if [ $value -lt 1024 ]; then
10965             size_string=${value}${size[$i]}
10966             break
10967         fi
10968         i=$((i + 1))
10969     done
10970
10971     echo $size_string
10972 }
10973
10974 get_rename_size() {
10975         local size=$1
10976         local context=${2:-.}
10977         local sample=$(do_facet $SINGLEMDS $LCTL \
10978                 get_param mdt.$FSNAME-MDT0000.rename_stats |
10979                 grep -A1 $context |
10980                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
10981         echo $sample
10982 }
10983
10984 test_133d() {
10985         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10986         remote_ost_nodsh && skip "remote OST with nodsh"
10987         remote_mds_nodsh && skip "remote MDS with nodsh"
10988         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
10989                 skip_env "MDS doesn't support rename stats"
10990
10991         local testdir1=$DIR/${tdir}/stats_testdir1
10992         local testdir2=$DIR/${tdir}/stats_testdir2
10993         mkdir -p $DIR/${tdir}
10994
10995         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
10996
10997         lfs mkdir -i 0 -c 1 ${testdir1} || error "mkdir failed"
10998         lfs mkdir -i 0 -c 1 ${testdir2} || error "mkdir failed"
10999
11000         createmany -o $testdir1/test 512 || error "createmany failed"
11001
11002         # check samedir rename size
11003         mv ${testdir1}/test0 ${testdir1}/test_0
11004
11005         local testdir1_size=$(ls -l $DIR/${tdir} |
11006                 awk '/stats_testdir1/ {print $5}')
11007         local testdir2_size=$(ls -l $DIR/${tdir} |
11008                 awk '/stats_testdir2/ {print $5}')
11009
11010         testdir1_size=$(order_2 $testdir1_size)
11011         testdir2_size=$(order_2 $testdir2_size)
11012
11013         testdir1_size=$(size_in_KMGT $testdir1_size)
11014         testdir2_size=$(size_in_KMGT $testdir2_size)
11015
11016         echo "source rename dir size: ${testdir1_size}"
11017         echo "target rename dir size: ${testdir2_size}"
11018
11019         local cmd="do_facet $SINGLEMDS $LCTL "
11020         cmd+="get_param mdt.$FSNAME-MDT0000.rename_stats"
11021
11022         eval $cmd || error "$cmd failed"
11023         local samedir=$($cmd | grep 'same_dir')
11024         local same_sample=$(get_rename_size $testdir1_size)
11025         [ -z "$samedir" ] && error "samedir_rename_size count error"
11026         [[ $same_sample -eq 1 ]] ||
11027                 error "samedir_rename_size error $same_sample"
11028         echo "Check same dir rename stats success"
11029
11030         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
11031
11032         # check crossdir rename size
11033         mv ${testdir1}/test_0 ${testdir2}/test_0
11034
11035         testdir1_size=$(ls -l $DIR/${tdir} |
11036                 awk '/stats_testdir1/ {print $5}')
11037         testdir2_size=$(ls -l $DIR/${tdir} |
11038                 awk '/stats_testdir2/ {print $5}')
11039
11040         testdir1_size=$(order_2 $testdir1_size)
11041         testdir2_size=$(order_2 $testdir2_size)
11042
11043         testdir1_size=$(size_in_KMGT $testdir1_size)
11044         testdir2_size=$(size_in_KMGT $testdir2_size)
11045
11046         echo "source rename dir size: ${testdir1_size}"
11047         echo "target rename dir size: ${testdir2_size}"
11048
11049         eval $cmd || error "$cmd failed"
11050         local crossdir=$($cmd | grep 'crossdir')
11051         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
11052         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
11053         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
11054         [[ $src_sample -eq 1 ]] ||
11055                 error "crossdir_rename_size error $src_sample"
11056         [[ $tgt_sample -eq 1 ]] ||
11057                 error "crossdir_rename_size error $tgt_sample"
11058         echo "Check cross dir rename stats success"
11059         rm -rf $DIR/${tdir}
11060 }
11061 run_test 133d "Verifying rename_stats ========================================"
11062
11063 test_133e() {
11064         remote_mds_nodsh && skip "remote MDS with nodsh"
11065         remote_ost_nodsh && skip "remote OST with nodsh"
11066         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11067
11068         local testdir=$DIR/${tdir}/stats_testdir
11069         local ctr f0 f1 bs=32768 count=42 sum
11070
11071         mkdir -p ${testdir} || error "mkdir failed"
11072
11073         $LFS setstripe -c 1 -i 0 ${testdir}/${tfile}
11074
11075         for ctr in {write,read}_bytes; do
11076                 sync
11077                 cancel_lru_locks osc
11078
11079                 do_facet ost1 $LCTL set_param -n \
11080                         "obdfilter.*.exports.clear=clear"
11081
11082                 if [ $ctr = write_bytes ]; then
11083                         f0=/dev/zero
11084                         f1=${testdir}/${tfile}
11085                 else
11086                         f0=${testdir}/${tfile}
11087                         f1=/dev/null
11088                 fi
11089
11090                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
11091                         error "dd failed"
11092                 sync
11093                 cancel_lru_locks osc
11094
11095                 sum=$(do_facet ost1 $LCTL get_param \
11096                         "obdfilter.*.exports.*.stats" |
11097                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
11098                                 $1 == ctr { sum += $7 }
11099                                 END { printf("%0.0f", sum) }')
11100
11101                 if ((sum != bs * count)); then
11102                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
11103                 fi
11104         done
11105
11106         rm -rf $DIR/${tdir}
11107 }
11108 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
11109
11110 proc_regexp="/{proc,sys}/{fs,sys,kernel/debug}/{lustre,lnet}/"
11111
11112 # Some versions of find (4.5.11, 4.5.14) included in CentOS 7.3-7.5 do
11113 # not honor the -ignore_readdir_race option correctly. So we call
11114 # error_ignore() rather than error() in these cases. See LU-11152.
11115 error_133() {
11116         if (find --version; do_facet mds1 find --version) |
11117                 grep -q '\b4\.5\.1[1-4]\b'; then
11118                 error_ignore LU-11152 "$@"
11119         else
11120                 error "$@"
11121         fi
11122 }
11123
11124 test_133f() {
11125         # First without trusting modes.
11126         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
11127         echo "proc_dirs='$proc_dirs'"
11128         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
11129         find $proc_dirs -exec cat '{}' \; &> /dev/null
11130
11131         # Second verifying readability.
11132         $LCTL get_param -R '*' &> /dev/null
11133
11134         # Verifing writability with badarea_io.
11135         find $proc_dirs \
11136                 -ignore_readdir_race \
11137                 -type f \
11138                 -not -name force_lbug \
11139                 -not -name changelog_mask \
11140                 -exec badarea_io '{}' \; ||
11141                         error_133 "find $proc_dirs failed"
11142 }
11143 run_test 133f "Check reads/writes of client lustre proc files with bad area io"
11144
11145 test_133g() {
11146         remote_mds_nodsh && skip "remote MDS with nodsh"
11147         remote_ost_nodsh && skip "remote OST with nodsh"
11148
11149         # eventually, this can also be replaced with "lctl get_param -R",
11150         # but not until that option is always available on the server
11151         local facet
11152         for facet in mds1 ost1; do
11153                 [ $(lustre_version_code $facet) -le $(version_code 2.5.54) ] &&
11154                         skip_noexit "Too old lustre on $facet"
11155                 local facet_proc_dirs=$(do_facet $facet \
11156                                         \\\ls -d $proc_regexp 2>/dev/null)
11157                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
11158                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
11159                 do_facet $facet find $facet_proc_dirs \
11160                         ! -name req_history \
11161                         -exec cat '{}' \\\; &> /dev/null
11162
11163                 do_facet $facet find $facet_proc_dirs \
11164                         ! -name req_history \
11165                         -type f \
11166                         -exec cat '{}' \\\; &> /dev/null ||
11167                                 error "proc file read failed"
11168
11169                 do_facet $facet find $facet_proc_dirs \
11170                         -ignore_readdir_race \
11171                         -type f \
11172                         -not -name force_lbug \
11173                         -not -name changelog_mask \
11174                         -exec badarea_io '{}' \\\; ||
11175                                 error_133 "$facet find $facet_proc_dirs failed"
11176         done
11177
11178         # remount the FS in case writes/reads /proc break the FS
11179         cleanup || error "failed to unmount"
11180         setup || error "failed to setup"
11181         true
11182 }
11183 run_test 133g "Check reads/writes of server lustre proc files with bad area io"
11184
11185 test_133h() {
11186         remote_mds_nodsh && skip "remote MDS with nodsh"
11187         remote_ost_nodsh && skip "remote OST with nodsh"
11188         [[ $MDS1_VERSION -lt $(version_code 2.9.54) ]] &&
11189                 skip "Need MDS version at least 2.9.54"
11190
11191         local facet
11192
11193         for facet in client mds1 ost1; do
11194                 local facet_proc_dirs=$(do_facet $facet \
11195                                         \\\ls -d $proc_regexp 2> /dev/null)
11196                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
11197                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
11198                 # Get the list of files that are missing the terminating newline
11199                 local missing=($(do_facet $facet \
11200                         find ${facet_proc_dirs} -type f \|              \
11201                                 while read F\; do                       \
11202                                         awk -v FS='\v' -v RS='\v\v'     \
11203                                         "'END { if(NR>0 &&              \
11204                                         \\\$NF !~ /.*\\\n\$/)           \
11205                                                 print FILENAME}'"       \
11206                                         '\$F'\;                         \
11207                                 done 2>/dev/null))
11208                 [ ${#missing[*]} -eq 0 ] ||
11209                         error "files do not end with newline: ${missing[*]}"
11210         done
11211 }
11212 run_test 133h "Proc files should end with newlines"
11213
11214 test_134a() {
11215         remote_mds_nodsh && skip "remote MDS with nodsh"
11216         [[ $MDS1_VERSION -lt $(version_code 2.7.54) ]] &&
11217                 skip "Need MDS version at least 2.7.54"
11218
11219         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
11220         cancel_lru_locks mdc
11221
11222         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
11223         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
11224         [ $unused -eq 0 ] || error "$unused locks are not cleared"
11225
11226         local nr=1000
11227         createmany -o $DIR/$tdir/f $nr ||
11228                 error "failed to create $nr files in $DIR/$tdir"
11229         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
11230
11231         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
11232         do_facet mds1 $LCTL set_param fail_loc=0x327
11233         do_facet mds1 $LCTL set_param fail_val=500
11234         touch $DIR/$tdir/m
11235
11236         echo "sleep 10 seconds ..."
11237         sleep 10
11238         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
11239
11240         do_facet mds1 $LCTL set_param fail_loc=0
11241         do_facet mds1 $LCTL set_param fail_val=0
11242         [ $lck_cnt -lt $unused ] ||
11243                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
11244
11245         rm $DIR/$tdir/m
11246         unlinkmany $DIR/$tdir/f $nr
11247 }
11248 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
11249
11250 test_134b() {
11251         remote_mds_nodsh && skip "remote MDS with nodsh"
11252         [[ $MDS1_VERSION -lt $(version_code 2.7.54) ]] &&
11253                 skip "Need MDS version at least 2.7.54"
11254
11255         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
11256         cancel_lru_locks mdc
11257
11258         local low_wm=$(do_facet mds1 $LCTL get_param -n \
11259                         ldlm.lock_reclaim_threshold_mb)
11260         # disable reclaim temporarily
11261         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
11262
11263         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
11264         do_facet mds1 $LCTL set_param fail_loc=0x328
11265         do_facet mds1 $LCTL set_param fail_val=500
11266
11267         $LCTL set_param debug=+trace
11268
11269         local nr=600
11270         createmany -o $DIR/$tdir/f $nr &
11271         local create_pid=$!
11272
11273         echo "Sleep $TIMEOUT seconds ..."
11274         sleep $TIMEOUT
11275         if ! ps -p $create_pid  > /dev/null 2>&1; then
11276                 do_facet mds1 $LCTL set_param fail_loc=0
11277                 do_facet mds1 $LCTL set_param fail_val=0
11278                 do_facet mds1 $LCTL set_param \
11279                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
11280                 error "createmany finished incorrectly!"
11281         fi
11282         do_facet mds1 $LCTL set_param fail_loc=0
11283         do_facet mds1 $LCTL set_param fail_val=0
11284         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
11285         wait $create_pid || return 1
11286
11287         unlinkmany $DIR/$tdir/f $nr
11288 }
11289 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
11290
11291 test_140() { #bug-17379
11292         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11293
11294         test_mkdir $DIR/$tdir
11295         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
11296         cp $(which stat) . || error "Copying stat to $DIR/$tdir"
11297
11298         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
11299         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
11300         local i=0
11301         while i=$((i + 1)); do
11302                 test_mkdir $i
11303                 cd $i || error "Changing to $i"
11304                 ln -s ../stat stat || error "Creating stat symlink"
11305                 # Read the symlink until ELOOP present,
11306                 # not LBUGing the system is considered success,
11307                 # we didn't overrun the stack.
11308                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
11309                 if [ $ret -ne 0 ]; then
11310                         if [ $ret -eq 40 ]; then
11311                                 break  # -ELOOP
11312                         else
11313                                 error "Open stat symlink"
11314                                         return
11315                         fi
11316                 fi
11317         done
11318         i=$((i - 1))
11319         echo "The symlink depth = $i"
11320         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
11321                                         error "Invalid symlink depth"
11322
11323         # Test recursive symlink
11324         ln -s symlink_self symlink_self
11325         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
11326         echo "open symlink_self returns $ret"
11327         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
11328 }
11329 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
11330
11331 test_150() {
11332         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11333
11334         local TF="$TMP/$tfile"
11335
11336         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
11337         cp $TF $DIR/$tfile
11338         cancel_lru_locks $OSC
11339         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
11340         remount_client $MOUNT
11341         df -P $MOUNT
11342         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
11343
11344         $TRUNCATE $TF 6000
11345         $TRUNCATE $DIR/$tfile 6000
11346         cancel_lru_locks $OSC
11347         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
11348
11349         echo "12345" >>$TF
11350         echo "12345" >>$DIR/$tfile
11351         cancel_lru_locks $OSC
11352         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
11353
11354         echo "12345" >>$TF
11355         echo "12345" >>$DIR/$tfile
11356         cancel_lru_locks $OSC
11357         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
11358
11359         rm -f $TF
11360         true
11361 }
11362 run_test 150 "truncate/append tests"
11363
11364 #LU-2902 roc_hit was not able to read all values from lproc
11365 function roc_hit_init() {
11366         local list=$(comma_list $(osts_nodes))
11367         local dir=$DIR/$tdir-check
11368         local file=$dir/$tfile
11369         local BEFORE
11370         local AFTER
11371         local idx
11372
11373         test_mkdir $dir
11374         #use setstripe to do a write to every ost
11375         for i in $(seq 0 $((OSTCOUNT-1))); do
11376                 $LFS setstripe -c 1 -i $i $dir || error "$LFS setstripe $file failed"
11377                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
11378                 idx=$(printf %04x $i)
11379                 BEFORE=$(get_osd_param $list *OST*$idx stats |
11380                         awk '$1 == "cache_access" {sum += $7}
11381                                 END { printf("%0.0f", sum) }')
11382
11383                 cancel_lru_locks osc
11384                 cat $file >/dev/null
11385
11386                 AFTER=$(get_osd_param $list *OST*$idx stats |
11387                         awk '$1 == "cache_access" {sum += $7}
11388                                 END { printf("%0.0f", sum) }')
11389
11390                 echo BEFORE:$BEFORE AFTER:$AFTER
11391                 if ! let "AFTER - BEFORE == 4"; then
11392                         rm -rf $dir
11393                         error "roc_hit is not safe to use"
11394                 fi
11395                 rm $file
11396         done
11397
11398         rm -rf $dir
11399 }
11400
11401 function roc_hit() {
11402         local list=$(comma_list $(osts_nodes))
11403         echo $(get_osd_param $list '' stats |
11404                 awk '$1 == "cache_hit" {sum += $7}
11405                         END { printf("%0.0f", sum) }')
11406 }
11407
11408 function set_cache() {
11409         local on=1
11410
11411         if [ "$2" == "off" ]; then
11412                 on=0;
11413         fi
11414         local list=$(comma_list $(osts_nodes))
11415         set_osd_param $list '' $1_cache_enable $on
11416
11417         cancel_lru_locks osc
11418 }
11419
11420 test_151() {
11421         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11422         remote_ost_nodsh && skip "remote OST with nodsh"
11423
11424         local CPAGES=3
11425         local list=$(comma_list $(osts_nodes))
11426
11427         # check whether obdfilter is cache capable at all
11428         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
11429                 skip "not cache-capable obdfilter"
11430         fi
11431
11432         # check cache is enabled on all obdfilters
11433         if get_osd_param $list '' read_cache_enable | grep 0; then
11434                 skip "oss cache is disabled"
11435         fi
11436
11437         set_osd_param $list '' writethrough_cache_enable 1
11438
11439         # check write cache is enabled on all obdfilters
11440         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
11441                 skip "oss write cache is NOT enabled"
11442         fi
11443
11444         roc_hit_init
11445
11446         #define OBD_FAIL_OBD_NO_LRU  0x609
11447         do_nodes $list $LCTL set_param fail_loc=0x609
11448
11449         # pages should be in the case right after write
11450         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
11451                 error "dd failed"
11452
11453         local BEFORE=$(roc_hit)
11454         cancel_lru_locks osc
11455         cat $DIR/$tfile >/dev/null
11456         local AFTER=$(roc_hit)
11457
11458         do_nodes $list $LCTL set_param fail_loc=0
11459
11460         if ! let "AFTER - BEFORE == CPAGES"; then
11461                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11462         fi
11463
11464         # the following read invalidates the cache
11465         cancel_lru_locks osc
11466         set_osd_param $list '' read_cache_enable 0
11467         cat $DIR/$tfile >/dev/null
11468
11469         # now data shouldn't be found in the cache
11470         BEFORE=$(roc_hit)
11471         cancel_lru_locks osc
11472         cat $DIR/$tfile >/dev/null
11473         AFTER=$(roc_hit)
11474         if let "AFTER - BEFORE != 0"; then
11475                 error "IN CACHE: before: $BEFORE, after: $AFTER"
11476         fi
11477
11478         set_osd_param $list '' read_cache_enable 1
11479         rm -f $DIR/$tfile
11480 }
11481 run_test 151 "test cache on oss and controls ==============================="
11482
11483 test_152() {
11484         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11485
11486         local TF="$TMP/$tfile"
11487
11488         # simulate ENOMEM during write
11489 #define OBD_FAIL_OST_NOMEM      0x226
11490         lctl set_param fail_loc=0x80000226
11491         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
11492         cp $TF $DIR/$tfile
11493         sync || error "sync failed"
11494         lctl set_param fail_loc=0
11495
11496         # discard client's cache
11497         cancel_lru_locks osc
11498
11499         # simulate ENOMEM during read
11500         lctl set_param fail_loc=0x80000226
11501         cmp $TF $DIR/$tfile || error "cmp failed"
11502         lctl set_param fail_loc=0
11503
11504         rm -f $TF
11505 }
11506 run_test 152 "test read/write with enomem ============================"
11507
11508 test_153() {
11509         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
11510 }
11511 run_test 153 "test if fdatasync does not crash ======================="
11512
11513 dot_lustre_fid_permission_check() {
11514         local fid=$1
11515         local ffid=$MOUNT/.lustre/fid/$fid
11516         local test_dir=$2
11517
11518         echo "stat fid $fid"
11519         stat $ffid > /dev/null || error "stat $ffid failed."
11520         echo "touch fid $fid"
11521         touch $ffid || error "touch $ffid failed."
11522         echo "write to fid $fid"
11523         cat /etc/hosts > $ffid || error "write $ffid failed."
11524         echo "read fid $fid"
11525         diff /etc/hosts $ffid || error "read $ffid failed."
11526         echo "append write to fid $fid"
11527         cat /etc/hosts >> $ffid || error "append write $ffid failed."
11528         echo "rename fid $fid"
11529         mv $ffid $test_dir/$tfile.1 &&
11530                 error "rename $ffid to $tfile.1 should fail."
11531         touch $test_dir/$tfile.1
11532         mv $test_dir/$tfile.1 $ffid &&
11533                 error "rename $tfile.1 to $ffid should fail."
11534         rm -f $test_dir/$tfile.1
11535         echo "truncate fid $fid"
11536         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
11537         echo "link fid $fid"
11538         ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
11539         if [[ $($LCTL get_param -n mdc.*-mdc-*.connect_flags) =~ acl ]]; then
11540                 echo "setfacl fid $fid"
11541                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
11542                 echo "getfacl fid $fid"
11543                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
11544         fi
11545         echo "unlink fid $fid"
11546         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
11547         echo "mknod fid $fid"
11548         mknod $ffid c 1 3 && error "mknod $ffid should fail."
11549
11550         fid=[0xf00000400:0x1:0x0]
11551         ffid=$MOUNT/.lustre/fid/$fid
11552
11553         echo "stat non-exist fid $fid"
11554         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
11555         echo "write to non-exist fid $fid"
11556         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
11557         echo "link new fid $fid"
11558         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
11559
11560         mkdir -p $test_dir/$tdir
11561         touch $test_dir/$tdir/$tfile
11562         fid=$($LFS path2fid $test_dir/$tdir)
11563         rc=$?
11564         [ $rc -ne 0 ] &&
11565                 error "error: could not get fid for $test_dir/$dir/$tfile."
11566
11567         ffid=$MOUNT/.lustre/fid/$fid
11568
11569         echo "ls $fid"
11570         ls $ffid > /dev/null || error "ls $ffid failed."
11571         echo "touch $fid/$tfile.1"
11572         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
11573
11574         echo "touch $MOUNT/.lustre/fid/$tfile"
11575         touch $MOUNT/.lustre/fid/$tfile && \
11576                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
11577
11578         echo "setxattr to $MOUNT/.lustre/fid"
11579         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
11580
11581         echo "listxattr for $MOUNT/.lustre/fid"
11582         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
11583
11584         echo "delxattr from $MOUNT/.lustre/fid"
11585         setfattr -x trusted.name1 $MOUNT/.lustre/fid
11586
11587         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
11588         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
11589                 error "touch invalid fid should fail."
11590
11591         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
11592         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
11593                 error "touch non-normal fid should fail."
11594
11595         echo "rename $tdir to $MOUNT/.lustre/fid"
11596         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
11597                 error "rename to $MOUNT/.lustre/fid should fail."
11598
11599         if [ $MDS1_VERSION -ge $(version_code 2.3.51) ]
11600         then            # LU-3547
11601                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
11602                 local new_obf_mode=777
11603
11604                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
11605                 chmod $new_obf_mode $DIR/.lustre/fid ||
11606                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
11607
11608                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
11609                 [ $obf_mode -eq $new_obf_mode ] ||
11610                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
11611
11612                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
11613                 chmod $old_obf_mode $DIR/.lustre/fid ||
11614                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
11615         fi
11616
11617         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
11618         fid=$($LFS path2fid $test_dir/$tfile-2)
11619
11620         if [ $MDS1_VERSION -ge $(version_code 2.6.50) ]
11621         then # LU-5424
11622                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
11623                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
11624                         error "create lov data thru .lustre failed"
11625         fi
11626         echo "cp /etc/passwd $test_dir/$tfile-2"
11627         cp /etc/passwd $test_dir/$tfile-2 ||
11628                 error "copy to $test_dir/$tfile-2 failed."
11629         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
11630         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
11631                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
11632
11633         rm -rf $test_dir/tfile.lnk
11634         rm -rf $test_dir/$tfile-2
11635 }
11636
11637 test_154A() {
11638         [[ $MDS1_VERSION -lt $(version_code 2.4.1) ]] &&
11639                 skip "Need MDS version at least 2.4.1"
11640
11641         local tf=$DIR/$tfile
11642         touch $tf
11643
11644         local fid=$($LFS path2fid $tf)
11645         [ -z "$fid" ] && error "path2fid unable to get $tf FID"
11646
11647         # check that we get the same pathname back
11648         local found=$($LFS fid2path $MOUNT "$fid")
11649         [ -z "$found" ] && error "fid2path unable to get '$fid' path"
11650         [ "$found" == "$tf" ] ||
11651                 error "fid2path($fid=path2fid($tf)) = $found != $tf"
11652 }
11653 run_test 154A "lfs path2fid and fid2path basic checks"
11654
11655 test_154B() {
11656         [[ $MDS1_VERSION -lt $(version_code 2.4.1) ]] &&
11657                 skip "Need MDS version at least 2.4.1"
11658
11659         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
11660         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
11661         local linkea=$($LL_DECODE_LINKEA $DIR/$tdir/$tfile | grep 'pfid')
11662         [ -z "$linkea" ] && error "decode linkea $DIR/$tdir/$tfile failed"
11663
11664         local name=$(echo $linkea | awk '/pfid/ {print $5}' | sed -e "s/'//g")
11665         local PFID=$(echo $linkea | awk '/pfid/ {print $3}' | sed -e "s/,//g")
11666
11667         # check that we get the same pathname
11668         echo "PFID: $PFID, name: $name"
11669         local FOUND=$($LFS fid2path $MOUNT "$PFID")
11670         [ -z "$FOUND" ] && error "fid2path unable to get $PFID path"
11671         [ "$FOUND/$name" != "$DIR/$tdir/$tfile" ] &&
11672                 error "ll_decode_linkea has $FOUND/$name != $DIR/$tdir/$tfile"
11673
11674         rm -rf $DIR/$tdir || error "Can not delete directory $DIR/$tdir"
11675 }
11676 run_test 154B "verify the ll_decode_linkea tool"
11677
11678 test_154a() {
11679         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11680         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11681         [[ $MDS1_VERSION -ge $(version_code 2.2.51) ]] ||
11682                 skip "Need MDS version at least 2.2.51"
11683         [ -z "$(which setfacl)" ] && skip_env "must have setfacl tool"
11684
11685         cp /etc/hosts $DIR/$tfile
11686
11687         fid=$($LFS path2fid $DIR/$tfile)
11688         rc=$?
11689         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
11690
11691         dot_lustre_fid_permission_check "$fid" $DIR ||
11692                 error "dot lustre permission check $fid failed"
11693
11694         ls -a $MOUNT | grep "\.lustre" && error ".lustre should not be listed"
11695
11696         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
11697
11698         touch $MOUNT/.lustre/file &&
11699                 error "creation is not allowed under .lustre"
11700
11701         mkdir $MOUNT/.lustre/dir &&
11702                 error "mkdir is not allowed under .lustre"
11703
11704         rm -rf $DIR/$tfile
11705 }
11706 run_test 154a "Open-by-FID"
11707
11708 test_154b() {
11709         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11710         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11711         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
11712         [[ $MDS1_VERSION -ge $(version_code 2.2.51) ]] ||
11713                 skip "Need MDS version at least 2.2.51"
11714
11715         local remote_dir=$DIR/$tdir/remote_dir
11716         local MDTIDX=1
11717         local rc=0
11718
11719         mkdir -p $DIR/$tdir
11720         $LFS mkdir -i $MDTIDX $remote_dir ||
11721                 error "create remote directory failed"
11722
11723         cp /etc/hosts $remote_dir/$tfile
11724
11725         fid=$($LFS path2fid $remote_dir/$tfile)
11726         rc=$?
11727         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
11728
11729         dot_lustre_fid_permission_check "$fid" $remote_dir ||
11730                 error "dot lustre permission check $fid failed"
11731         rm -rf $DIR/$tdir
11732 }
11733 run_test 154b "Open-by-FID for remote directory"
11734
11735 test_154c() {
11736         [[ $MDS1_VERSION -lt $(version_code 2.4.1) ]] &&
11737                 skip "Need MDS version at least 2.4.1"
11738
11739         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
11740         local FID1=$($LFS path2fid $DIR/$tfile.1)
11741         local FID2=$($LFS path2fid $DIR/$tfile.2)
11742         local FID3=$($LFS path2fid $DIR/$tfile.3)
11743
11744         local N=1
11745         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
11746                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
11747                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
11748                 local want=FID$N
11749                 [ "$FID" = "${!want}" ] ||
11750                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
11751                 N=$((N + 1))
11752         done
11753
11754         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
11755         do
11756                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
11757                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
11758                 N=$((N + 1))
11759         done
11760 }
11761 run_test 154c "lfs path2fid and fid2path multiple arguments"
11762
11763 test_154d() {
11764         remote_mds_nodsh && skip "remote MDS with nodsh"
11765         [[ $MDS1_VERSION -lt $(version_code 2.5.53) ]] &&
11766                 skip "Need MDS version at least 2.5.53"
11767
11768         if remote_mds; then
11769                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
11770         else
11771                 nid="0@lo"
11772         fi
11773         local proc_ofile="mdt.*.exports.'$nid'.open_files"
11774         local fd
11775         local cmd
11776
11777         rm -f $DIR/$tfile
11778         touch $DIR/$tfile
11779
11780         local fid=$($LFS path2fid $DIR/$tfile)
11781         # Open the file
11782         fd=$(free_fd)
11783         cmd="exec $fd<$DIR/$tfile"
11784         eval $cmd
11785         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
11786         echo "$fid_list" | grep "$fid"
11787         rc=$?
11788
11789         cmd="exec $fd>/dev/null"
11790         eval $cmd
11791         if [ $rc -ne 0 ]; then
11792                 error "FID $fid not found in open files list $fid_list"
11793         fi
11794 }
11795 run_test 154d "Verify open file fid"
11796
11797 test_154e()
11798 {
11799         [[ $MDS1_VERSION -lt $(version_code 2.6.50) ]] &&
11800                 skip "Need MDS version at least 2.6.50"
11801
11802         if ls -a $MOUNT | grep -q '^\.lustre$'; then
11803                 error ".lustre returned by readdir"
11804         fi
11805 }
11806 run_test 154e ".lustre is not returned by readdir"
11807
11808 test_154f() {
11809         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11810
11811         # create parent directory on a single MDT to avoid cross-MDT hardlinks
11812         test_mkdir -p -c1 $DIR/$tdir/d
11813         # test dirs inherit from its stripe
11814         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
11815         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
11816         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
11817         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
11818         touch $DIR/f
11819
11820         # get fid of parents
11821         local FID0=$($LFS path2fid $DIR/$tdir/d)
11822         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
11823         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
11824         local FID3=$($LFS path2fid $DIR)
11825
11826         # check that path2fid --parents returns expected <parent_fid>/name
11827         # 1) test for a directory (single parent)
11828         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
11829         [ "$parent" == "$FID0/foo1" ] ||
11830                 error "expected parent: $FID0/foo1, got: $parent"
11831
11832         # 2) test for a file with nlink > 1 (multiple parents)
11833         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
11834         echo "$parent" | grep -F "$FID1/$tfile" ||
11835                 error "$FID1/$tfile not returned in parent list"
11836         echo "$parent" | grep -F "$FID2/link" ||
11837                 error "$FID2/link not returned in parent list"
11838
11839         # 3) get parent by fid
11840         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
11841         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11842         echo "$parent" | grep -F "$FID1/$tfile" ||
11843                 error "$FID1/$tfile not returned in parent list (by fid)"
11844         echo "$parent" | grep -F "$FID2/link" ||
11845                 error "$FID2/link not returned in parent list (by fid)"
11846
11847         # 4) test for entry in root directory
11848         parent=$($LFS path2fid --parents $DIR/f)
11849         echo "$parent" | grep -F "$FID3/f" ||
11850                 error "$FID3/f not returned in parent list"
11851
11852         # 5) test it on root directory
11853         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
11854                 error "$MOUNT should not have parents"
11855
11856         # enable xattr caching and check that linkea is correctly updated
11857         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
11858         save_lustre_params client "llite.*.xattr_cache" > $save
11859         lctl set_param llite.*.xattr_cache 1
11860
11861         # 6.1) linkea update on rename
11862         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
11863
11864         # get parents by fid
11865         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11866         # foo1 should no longer be returned in parent list
11867         echo "$parent" | grep -F "$FID1" &&
11868                 error "$FID1 should no longer be in parent list"
11869         # the new path should appear
11870         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
11871                 error "$FID2/$tfile.moved is not in parent list"
11872
11873         # 6.2) linkea update on unlink
11874         rm -f $DIR/$tdir/d/foo2/link
11875         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11876         # foo2/link should no longer be returned in parent list
11877         echo "$parent" | grep -F "$FID2/link" &&
11878                 error "$FID2/link should no longer be in parent list"
11879         true
11880
11881         rm -f $DIR/f
11882         restore_lustre_params < $save
11883         rm -f $save
11884 }
11885 run_test 154f "get parent fids by reading link ea"
11886
11887 test_154g()
11888 {
11889         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11890         [[ $MDS1_VERSION -ge $(version_code 2.6.92) &&
11891            $CLIENT_VERSION -gt $(version_code 2.6.99) ]] ||
11892                 skip "Need MDS version at least 2.6.92"
11893
11894         mkdir -p $DIR/$tdir
11895         llapi_fid_test -d $DIR/$tdir
11896 }
11897 run_test 154g "various llapi FID tests"
11898
11899 test_155_small_load() {
11900     local temp=$TMP/$tfile
11901     local file=$DIR/$tfile
11902
11903     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
11904         error "dd of=$temp bs=6096 count=1 failed"
11905     cp $temp $file
11906     cancel_lru_locks $OSC
11907     cmp $temp $file || error "$temp $file differ"
11908
11909     $TRUNCATE $temp 6000
11910     $TRUNCATE $file 6000
11911     cmp $temp $file || error "$temp $file differ (truncate1)"
11912
11913     echo "12345" >>$temp
11914     echo "12345" >>$file
11915     cmp $temp $file || error "$temp $file differ (append1)"
11916
11917     echo "12345" >>$temp
11918     echo "12345" >>$file
11919     cmp $temp $file || error "$temp $file differ (append2)"
11920
11921     rm -f $temp $file
11922     true
11923 }
11924
11925 test_155_big_load() {
11926         remote_ost_nodsh && skip "remote OST with nodsh"
11927
11928         local temp=$TMP/$tfile
11929         local file=$DIR/$tfile
11930
11931         free_min_max
11932         local cache_size=$(do_facet ost$((MAXI+1)) \
11933                 "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
11934         local large_file_size=$((cache_size * 2))
11935
11936         echo "OSS cache size: $cache_size KB"
11937         echo "Large file size: $large_file_size KB"
11938
11939         [ $MAXV -le $large_file_size ] &&
11940                 skip_env "max available OST size needs > $large_file_size KB"
11941
11942         $LFS setstripe $file -c 1 -i $MAXI || error "$LFS setstripe $file failed"
11943
11944         dd if=/dev/urandom of=$temp bs=$large_file_size count=1k ||
11945                 error "dd of=$temp bs=$large_file_size count=1k failed"
11946         cp $temp $file
11947         ls -lh $temp $file
11948         cancel_lru_locks osc
11949         cmp $temp $file || error "$temp $file differ"
11950
11951         rm -f $temp $file
11952         true
11953 }
11954
11955 save_writethrough() {
11956         local facets=$(get_facets OST)
11957
11958         save_lustre_params $facets "osd-*.*.writethrough_cache_enable" > $1
11959 }
11960
11961 test_155a() {
11962         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11963
11964         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11965
11966         save_writethrough $p
11967
11968         set_cache read on
11969         set_cache writethrough on
11970         test_155_small_load
11971         restore_lustre_params < $p
11972         rm -f $p
11973 }
11974 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
11975
11976 test_155b() {
11977         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11978
11979         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11980
11981         save_writethrough $p
11982
11983         set_cache read on
11984         set_cache writethrough off
11985         test_155_small_load
11986         restore_lustre_params < $p
11987         rm -f $p
11988 }
11989 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
11990
11991 test_155c() {
11992         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11993
11994         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11995
11996         save_writethrough $p
11997
11998         set_cache read off
11999         set_cache writethrough on
12000         test_155_small_load
12001         restore_lustre_params < $p
12002         rm -f $p
12003 }
12004 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
12005
12006 test_155d() {
12007         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12008
12009         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12010
12011         save_writethrough $p
12012
12013         set_cache read off
12014         set_cache writethrough off
12015         test_155_small_load
12016         restore_lustre_params < $p
12017         rm -f $p
12018 }
12019 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
12020
12021 test_155e() {
12022         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12023
12024         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12025
12026         save_writethrough $p
12027
12028         set_cache read on
12029         set_cache writethrough on
12030         test_155_big_load
12031         restore_lustre_params < $p
12032         rm -f $p
12033 }
12034 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
12035
12036 test_155f() {
12037         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12038
12039         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12040
12041         save_writethrough $p
12042
12043         set_cache read on
12044         set_cache writethrough off
12045         test_155_big_load
12046         restore_lustre_params < $p
12047         rm -f $p
12048 }
12049 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
12050
12051 test_155g() {
12052         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12053
12054         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12055
12056         save_writethrough $p
12057
12058         set_cache read off
12059         set_cache writethrough on
12060         test_155_big_load
12061         restore_lustre_params < $p
12062         rm -f $p
12063 }
12064 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
12065
12066 test_155h() {
12067         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12068
12069         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12070
12071         save_writethrough $p
12072
12073         set_cache read off
12074         set_cache writethrough off
12075         test_155_big_load
12076         restore_lustre_params < $p
12077         rm -f $p
12078 }
12079 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
12080
12081 test_156() {
12082         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12083         remote_ost_nodsh && skip "remote OST with nodsh"
12084         [ $OST1_VERSION -lt $(version_code 2.6.93) ] &&
12085                 skip "stats not implemented on old servers"
12086         [ "$ost1_FSTYPE" = "zfs" ] &&
12087                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS"
12088
12089         local CPAGES=3
12090         local BEFORE
12091         local AFTER
12092         local file="$DIR/$tfile"
12093         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12094
12095         save_writethrough $p
12096         roc_hit_init
12097
12098         log "Turn on read and write cache"
12099         set_cache read on
12100         set_cache writethrough on
12101
12102         log "Write data and read it back."
12103         log "Read should be satisfied from the cache."
12104         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12105         BEFORE=$(roc_hit)
12106         cancel_lru_locks osc
12107         cat $file >/dev/null
12108         AFTER=$(roc_hit)
12109         if ! let "AFTER - BEFORE == CPAGES"; then
12110                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12111         else
12112                 log "cache hits:: before: $BEFORE, after: $AFTER"
12113         fi
12114
12115         log "Read again; it should be satisfied from the cache."
12116         BEFORE=$AFTER
12117         cancel_lru_locks osc
12118         cat $file >/dev/null
12119         AFTER=$(roc_hit)
12120         if ! let "AFTER - BEFORE == CPAGES"; then
12121                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12122         else
12123                 log "cache hits:: before: $BEFORE, after: $AFTER"
12124         fi
12125
12126         log "Turn off the read cache and turn on the write cache"
12127         set_cache read off
12128         set_cache writethrough on
12129
12130         log "Read again; it should be satisfied from the cache."
12131         BEFORE=$(roc_hit)
12132         cancel_lru_locks osc
12133         cat $file >/dev/null
12134         AFTER=$(roc_hit)
12135         if ! let "AFTER - BEFORE == CPAGES"; then
12136                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12137         else
12138                 log "cache hits:: before: $BEFORE, after: $AFTER"
12139         fi
12140
12141         log "Read again; it should not be satisfied from the cache."
12142         BEFORE=$AFTER
12143         cancel_lru_locks osc
12144         cat $file >/dev/null
12145         AFTER=$(roc_hit)
12146         if ! let "AFTER - BEFORE == 0"; then
12147                 error "IN CACHE: before: $BEFORE, after: $AFTER"
12148         else
12149                 log "cache hits:: before: $BEFORE, after: $AFTER"
12150         fi
12151
12152         log "Write data and read it back."
12153         log "Read should be satisfied from the cache."
12154         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12155         BEFORE=$(roc_hit)
12156         cancel_lru_locks osc
12157         cat $file >/dev/null
12158         AFTER=$(roc_hit)
12159         if ! let "AFTER - BEFORE == CPAGES"; then
12160                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12161         else
12162                 log "cache hits:: before: $BEFORE, after: $AFTER"
12163         fi
12164
12165         log "Read again; it should not be satisfied from the cache."
12166         BEFORE=$AFTER
12167         cancel_lru_locks osc
12168         cat $file >/dev/null
12169         AFTER=$(roc_hit)
12170         if ! let "AFTER - BEFORE == 0"; then
12171                 error "IN CACHE: before: $BEFORE, after: $AFTER"
12172         else
12173                 log "cache hits:: before: $BEFORE, after: $AFTER"
12174         fi
12175
12176         log "Turn off read and write cache"
12177         set_cache read off
12178         set_cache writethrough off
12179
12180         log "Write data and read it back"
12181         log "It should not be satisfied from the cache."
12182         rm -f $file
12183         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12184         cancel_lru_locks osc
12185         BEFORE=$(roc_hit)
12186         cat $file >/dev/null
12187         AFTER=$(roc_hit)
12188         if ! let "AFTER - BEFORE == 0"; then
12189                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
12190         else
12191                 log "cache hits:: before: $BEFORE, after: $AFTER"
12192         fi
12193
12194         log "Turn on the read cache and turn off the write cache"
12195         set_cache read on
12196         set_cache writethrough off
12197
12198         log "Write data and read it back"
12199         log "It should not be satisfied from the cache."
12200         rm -f $file
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 == 0"; then
12207                 error_ignore bz20762 "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=$(roc_hit)
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         restore_lustre_params < $p
12224         rm -f $p $file
12225 }
12226 run_test 156 "Verification of tunables"
12227
12228 test_160a() {
12229         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12230         remote_mds_nodsh && skip "remote MDS with nodsh"
12231         [ $MDS1_VERSION -ge $(version_code 2.2.0) ] ||
12232                 skip "Need MDS version at least 2.2.0"
12233
12234         changelog_register || error "changelog_register failed"
12235         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
12236         changelog_users $SINGLEMDS | grep -q $cl_user ||
12237                 error "User $cl_user not found in changelog_users"
12238
12239         # change something
12240         test_mkdir -p $DIR/$tdir/pics/2008/zachy
12241         changelog_clear 0 || error "changelog_clear failed"
12242         touch $DIR/$tdir/pics/2008/zachy/$tfile                 # open 1
12243         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg       # open 2
12244         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
12245         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
12246         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
12247         rm $DIR/$tdir/pics/desktop.jpg
12248
12249         changelog_dump | tail -10
12250
12251         echo "verifying changelog mask"
12252         changelog_chmask "-MKDIR"
12253         changelog_chmask "-CLOSE"
12254
12255         test_mkdir -p $DIR/$tdir/pics/zach/sofia                # not logged
12256         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # not logged
12257
12258         changelog_chmask "+MKDIR"
12259         changelog_chmask "+CLOSE"
12260
12261         test_mkdir -p $DIR/$tdir/pics/2008/sofia                # mkdir 1
12262         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # open 3
12263
12264         changelog_dump | tail -10
12265         MKDIRS=$(changelog_dump | grep -c "MKDIR")
12266         CLOSES=$(changelog_dump | grep -c "CLOSE")
12267         [ $MKDIRS -eq 1 ] || error "MKDIR changelog mask count $MKDIRS != 1"
12268         [ $CLOSES -eq 3 ] || error "CLOSE changelog mask count $CLOSES != 3"
12269
12270         # verify contents
12271         echo "verifying target fid"
12272         local fidc=$(changelog_extract_field "CREAT" "$tfile" "t=")
12273         local fidf=$($LFS path2fid $DIR/$tdir/pics/zach/$tfile)
12274         [ "$fidc" == "$fidf" ] ||
12275                 error "changelog '$tfile' fid $fidc != file fid $fidf"
12276         echo "verifying parent fid"
12277         # The FID returned from the Changelog may be the directory shard on
12278         # a different MDT, and not the FID returned by path2fid on the parent.
12279         # Instead of comparing FIDs, verify that fid2path(fidp) is correct,
12280         # since this is what will matter when recreating this file in the tree.
12281         local fidp=$(changelog_extract_field "CREAT" "$tfile" "p=")
12282         local pathp=$($LFS fid2path $MOUNT "$fidp")
12283         [ "${pathp%/}" == "$DIR/$tdir/pics/zach" ] ||
12284                 error "changelog fid2path($fidc) $pathp != $DIR/$tdir/pics/zach"
12285
12286         echo "getting records for $cl_user"
12287         changelog_users $SINGLEMDS
12288         local user_rec1=$(changelog_user_rec $SINGLEMDS $cl_user)
12289         local nclr=3
12290         __changelog_clear $SINGLEMDS $cl_user +$nclr ||
12291                 error "changelog_clear failed"
12292         local user_rec2=$(changelog_user_rec $SINGLEMDS $cl_user)
12293         echo "verifying user clear: $user_rec1 + $nclr == $user_rec2"
12294         [ $user_rec2 == $((user_rec1 + nclr)) ] ||
12295                 error "user index expect $user_rec1 + $nclr != $user_rec2"
12296
12297         local min0_rec=$(changelog_users $SINGLEMDS |
12298                 awk 'min == "" || $2 < min { min = $2 }; END { print min }')
12299         local first_rec=$($LFS changelog $(facet_svc $SINGLEMDS) |
12300                           awk '{ print $1; exit; }')
12301
12302         changelog_dump | tail -n 5
12303         echo "verifying user min purge: $min0_rec + 1 == $first_rec"
12304         [ $first_rec == $((min0_rec + 1)) ] ||
12305                 error "first index should be $min0_rec + 1 not $first_rec"
12306
12307         # LU-3446 changelog index reset on MDT restart
12308         local cur_rec1=$(changelog_users $SINGLEMDS |
12309                          awk '/^current.index:/ { print $NF }')
12310         changelog_clear 0 ||
12311                 error "clear all changelog records for $cl_user failed"
12312         stop $SINGLEMDS || error "Fail to stop $SINGLEMDS"
12313         start $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) $MDS_MOUNT_OPTS ||
12314                 error "Fail to start $SINGLEMDS"
12315         local cur_rec2=$(changelog_users $SINGLEMDS |
12316                          awk '/^current.index:/ { print $NF }')
12317         echo "verifying index survives MDT restart: $cur_rec1 == $cur_rec2"
12318         [ $cur_rec1 == $cur_rec2 ] ||
12319                 error "current index should be $cur_rec1 not $cur_rec2"
12320
12321         echo "verifying users from this test are deregistered"
12322         changelog_deregister || error "changelog_deregister failed"
12323         changelog_users $SINGLEMDS | grep -q $cl_user &&
12324                 error "User '$cl_user' still in changelog_users"
12325
12326         # lctl get_param -n mdd.*.changelog_users
12327         # current index: 144
12328         # ID    index (idle seconds)
12329         # cl3   144 (2)
12330         if ! changelog_users $SINGLEMDS | grep "^cl"; then
12331                 # this is the normal case where all users were deregistered
12332                 # make sure no new records are added when no users are present
12333                 local last_rec1=$(changelog_users $SINGLEMDS |
12334                                   awk '/^current.index:/ { print $NF }')
12335                 touch $DIR/$tdir/chloe
12336                 local last_rec2=$(changelog_users $SINGLEMDS |
12337                                   awk '/^current.index:/ { print $NF }')
12338                 echo "verify changelogs are off: $last_rec1 == $last_rec2"
12339                 [ $last_rec1 == $last_rec2 ] || error "changelogs not off"
12340         else
12341                 # any changelog users must be leftovers from a previous test
12342                 changelog_users $SINGLEMDS
12343                 echo "other changelog users; can't verify off"
12344         fi
12345 }
12346 run_test 160a "changelog sanity"
12347
12348 test_160b() { # LU-3587
12349         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12350         remote_mds_nodsh && skip "remote MDS with nodsh"
12351         [ $MDS1_VERSION -ge $(version_code 2.2.0) ] ||
12352                 skip "Need MDS version at least 2.2.0"
12353
12354         changelog_register || error "changelog_register failed"
12355         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
12356         changelog_users $SINGLEMDS | grep -q $cl_user ||
12357                 error "User '$cl_user' not found in changelog_users"
12358
12359         local longname1=$(str_repeat a 255)
12360         local longname2=$(str_repeat b 255)
12361
12362         cd $DIR
12363         echo "creating very long named file"
12364         touch $longname1 || error "create of '$longname1' failed"
12365         echo "renaming very long named file"
12366         mv $longname1 $longname2
12367
12368         changelog_dump | grep RENME | tail -n 5
12369         rm -f $longname2
12370 }
12371 run_test 160b "Verify that very long rename doesn't crash in changelog"
12372
12373 test_160c() {
12374         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12375         remote_mds_nodsh && skip "remote MDS with nodsh"
12376
12377         [[ $MDS1_VERSION -gt $(version_code 2.5.57) ]] ||
12378                 [[ $MDS1_VERSION -gt $(version_code 2.5.1) &&
12379                    $MDS1_VERSION -lt $(version_code 2.5.50) ]] ||
12380                 skip "Need MDS version at least 2.5.58 or 2.5.2+"
12381
12382         local rc=0
12383
12384         # Registration step
12385         changelog_register || error "changelog_register failed"
12386
12387         rm -rf $DIR/$tdir
12388         mkdir -p $DIR/$tdir
12389         $MCREATE $DIR/$tdir/foo_160c
12390         changelog_chmask "-TRUNC"
12391         $TRUNCATE $DIR/$tdir/foo_160c 200
12392         changelog_chmask "+TRUNC"
12393         $TRUNCATE $DIR/$tdir/foo_160c 199
12394         changelog_dump | tail -n 5
12395         local truncs=$(changelog_dump | tail -n 5 | grep -c TRUNC)
12396         [ $truncs -eq 1 ] || error "TRUNC changelog mask count $truncs != 1"
12397 }
12398 run_test 160c "verify that changelog log catch the truncate event"
12399
12400 test_160d() {
12401         remote_mds_nodsh && skip "remote MDS with nodsh"
12402         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
12403         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12404         [[ $MDS1_VERSION -ge $(version_code 2.7.60) ]] ||
12405                 skip "Need MDS version at least 2.7.60"
12406
12407         # Registration step
12408         changelog_register || error "changelog_register failed"
12409
12410         mkdir -p $DIR/$tdir/migrate_dir
12411         changelog_clear 0 || error "changelog_clear failed"
12412
12413         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
12414         changelog_dump | tail -n 5
12415         local migrates=$(changelog_dump | grep -c "MIGRT")
12416         [ $migrates -eq 1 ] || error "MIGRATE changelog count $migrates != 1"
12417 }
12418 run_test 160d "verify that changelog log catch the migrate event"
12419
12420 test_160e() {
12421         remote_mds_nodsh && skip "remote MDS with nodsh"
12422
12423         # Create a user
12424         changelog_register || error "changelog_register failed"
12425
12426         # Delete a future user (expect fail)
12427         local MDT0=$(facet_svc $SINGLEMDS)
12428         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister "cl77"
12429         local rc=$?
12430
12431         if [ $rc -eq 0 ]; then
12432                 error "Deleted non-existant user cl77"
12433         elif [ $rc -ne 2 ]; then
12434                 error "changelog_deregister failed with $rc, expect 2 (ENOENT)"
12435         fi
12436
12437         # Clear to a bad index (1 billion should be safe)
12438         $LFS changelog_clear $MDT0 "${CL_USERS[$SINGLEMDS]%% *}" 1000000000
12439         rc=$?
12440
12441         if [ $rc -eq 0 ]; then
12442                 error "Successfully cleared to invalid CL index"
12443         elif [ $rc -ne 22 ]; then
12444                 error "changelog_clear failed with $rc, expected 22 (EINVAL)"
12445         fi
12446 }
12447 run_test 160e "changelog negative testing (should return errors)"
12448
12449 test_160f() {
12450         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12451         [[ $MDS1_VERSION -ge $(version_code 2.10.56) ]] ||
12452                 skip "Need MDS version at least 2.10.56"
12453
12454         local mdts=$(comma_list $(mdts_nodes))
12455
12456         # Create a user
12457         changelog_register || error "first changelog_register failed"
12458         changelog_register || error "second changelog_register failed"
12459         local cl_users
12460         declare -A cl_user1
12461         declare -A cl_user2
12462         local user_rec1
12463         local user_rec2
12464         local i
12465
12466         # generate some changelog records to accumulate on each MDT
12467         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "test_mkdir $tdir failed"
12468         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12469                 error "create $DIR/$tdir/$tfile failed"
12470
12471         # check changelogs have been generated
12472         local nbcl=$(changelog_dump | wc -l)
12473         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12474
12475         for param in "changelog_max_idle_time=10" \
12476                      "changelog_gc=1" \
12477                      "changelog_min_gc_interval=2" \
12478                      "changelog_min_free_cat_entries=3"; do
12479                 local MDT0=$(facet_svc $SINGLEMDS)
12480                 local var="${param%=*}"
12481                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12482
12483                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12484                 do_nodes $mdts $LCTL set_param mdd.*.$param
12485         done
12486
12487         # force cl_user2 to be idle (1st part)
12488         sleep 9
12489
12490         # simulate changelog catalog almost full
12491         #define OBD_FAIL_CAT_FREE_RECORDS       0x1313
12492         do_nodes $mdts $LCTL set_param fail_loc=0x1313 fail_val=3
12493
12494         for i in $(seq $MDSCOUNT); do
12495                 cl_users=(${CL_USERS[mds$i]})
12496                 cl_user1[mds$i]="${cl_users[0]}"
12497                 cl_user2[mds$i]="${cl_users[1]}"
12498
12499                 [ -n "${cl_user1[mds$i]}" ] ||
12500                         error "mds$i: no user registered"
12501                 [ -n "${cl_user2[mds$i]}" ] ||
12502                         error "mds$i: only ${cl_user2[mds$i]} is registered"
12503
12504                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12505                 [ -n "$user_rec1" ] ||
12506                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12507                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12508                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12509                 [ -n "$user_rec2" ] ||
12510                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12511                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12512                      "$user_rec1 + 2 == $user_rec2"
12513                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12514                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12515                               "$user_rec1 + 2, but is $user_rec2"
12516                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12517                 [ -n "$user_rec2" ] ||
12518                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12519                 [ $user_rec1 == $user_rec2 ] ||
12520                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12521                               "$user_rec1, but is $user_rec2"
12522         done
12523
12524         # force cl_user2 to be idle (2nd part) and to reach
12525         # changelog_max_idle_time
12526         sleep 2
12527
12528         # generate one more changelog to trigger fail_loc
12529         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12530                 error "create $DIR/$tdir/${tfile}bis failed"
12531
12532         # ensure gc thread is done
12533         for i in $(mdts_nodes); do
12534                 wait_update $i \
12535                         "ps -e -o comm= | grep chlg_gc_thread" "" 20 ||
12536                         error "$i: GC-thread not done"
12537         done
12538
12539         local first_rec
12540         for i in $(seq $MDSCOUNT); do
12541                 # check cl_user1 still registered
12542                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12543                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12544                 # check cl_user2 unregistered
12545                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12546                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12547
12548                 # check changelogs are present and starting at $user_rec1 + 1
12549                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12550                 [ -n "$user_rec1" ] ||
12551                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12552                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12553                             awk '{ print $1; exit; }')
12554
12555                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12556                 [ $((user_rec1 + 1)) == $first_rec ] ||
12557                         error "mds$i: first index should be $user_rec1 + 1, " \
12558                               "but is $first_rec"
12559         done
12560 }
12561 run_test 160f "changelog garbage collect (timestamped users)"
12562
12563 test_160g() {
12564         remote_mds_nodsh && skip "remote MDS with nodsh"
12565         [[ $MDS1_VERSION -ge $(version_code 2.10.56) ]] ||
12566                 skip "Need MDS version at least 2.10.56"
12567
12568         local mdts=$(comma_list $(mdts_nodes))
12569
12570         #define OBD_FAIL_TIME_IN_CHLOG_USER     0x1314
12571         do_nodes $mdts $LCTL set_param fail_loc=0x1314
12572
12573         # Create a user
12574         changelog_register || error "first changelog_register failed"
12575         changelog_register || error "second changelog_register failed"
12576         local cl_users
12577         declare -A cl_user1
12578         declare -A cl_user2
12579         local user_rec1
12580         local user_rec2
12581         local i
12582
12583         # generate some changelog records to accumulate on each MDT
12584         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
12585         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12586                 error "create $DIR/$tdir/$tfile failed"
12587
12588         # check changelogs have been generated
12589         local nbcl=$(changelog_dump | wc -l)
12590         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12591
12592         # reduce the max_idle_indexes value to make sure we exceed it
12593         max_ndx=$((nbcl / 2 - 1))
12594
12595         for param in "changelog_max_idle_indexes=$max_ndx" \
12596                      "changelog_gc=1" \
12597                      "changelog_min_gc_interval=2" \
12598                      "changelog_min_free_cat_entries=3"; do
12599                 local MDT0=$(facet_svc $SINGLEMDS)
12600                 local var="${param%=*}"
12601                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12602
12603                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12604                 do_nodes $mdts $LCTL set_param mdd.*.$param ||
12605                         error "unable to set mdd.*.$param"
12606         done
12607
12608         # simulate changelog catalog almost full
12609         #define OBD_FAIL_CAT_FREE_RECORDS       0x1313
12610         do_nodes $mdts $LCTL set_param fail_loc=0x1313 fail_val=3
12611
12612         for i in $(seq $MDSCOUNT); do
12613                 cl_users=(${CL_USERS[mds$i]})
12614                 cl_user1[mds$i]="${cl_users[0]}"
12615                 cl_user2[mds$i]="${cl_users[1]}"
12616
12617                 [ -n "${cl_user1[mds$i]}" ] ||
12618                         error "mds$i: no user registered"
12619                 [ -n "${cl_user2[mds$i]}" ] ||
12620                         error "mds$i: only ${cl_user1[mds$i]} is registered"
12621
12622                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12623                 [ -n "$user_rec1" ] ||
12624                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12625                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12626                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12627                 [ -n "$user_rec2" ] ||
12628                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12629                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12630                      "$user_rec1 + 2 == $user_rec2"
12631                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12632                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12633                               "$user_rec1 + 2, but is $user_rec2"
12634                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12635                 [ -n "$user_rec2" ] ||
12636                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12637                 [ $user_rec1 == $user_rec2 ] ||
12638                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12639                               "$user_rec1, but is $user_rec2"
12640         done
12641
12642         # ensure we are past the previous changelog_min_gc_interval set above
12643         sleep 2
12644
12645         # generate one more changelog to trigger fail_loc
12646         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12647                 error "create $DIR/$tdir/${tfile}bis failed"
12648
12649         # ensure gc thread is done
12650         for i in $(mdts_nodes); do
12651                 wait_update $i \
12652                         "ps -e -o comm= | grep chlg_gc_thread" "" 20 ||
12653                         error "$i: GC-thread not done"
12654         done
12655
12656         local first_rec
12657         for i in $(seq $MDSCOUNT); do
12658                 # check cl_user1 still registered
12659                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12660                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12661                 # check cl_user2 unregistered
12662                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12663                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12664
12665                 # check changelogs are present and starting at $user_rec1 + 1
12666                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12667                 [ -n "$user_rec1" ] ||
12668                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12669                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12670                             awk '{ print $1; exit; }')
12671
12672                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12673                 [ $((user_rec1 + 1)) == $first_rec ] ||
12674                         error "mds$i: first index should be $user_rec1 + 1, " \
12675                               "but is $first_rec"
12676         done
12677 }
12678 run_test 160g "changelog garbage collect (old users)"
12679
12680 test_160h() {
12681         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12682         [[ $MDS1_VERSION -ge $(version_code 2.10.56) ]] ||
12683                 skip "Need MDS version at least 2.10.56"
12684
12685         local mdts=$(comma_list $(mdts_nodes))
12686
12687         # Create a user
12688         changelog_register || error "first changelog_register failed"
12689         changelog_register || error "second changelog_register failed"
12690         local cl_users
12691         declare -A cl_user1
12692         declare -A cl_user2
12693         local user_rec1
12694         local user_rec2
12695         local i
12696
12697         # generate some changelog records to accumulate on each MDT
12698         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "test_mkdir $tdir failed"
12699         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12700                 error "create $DIR/$tdir/$tfile failed"
12701
12702         # check changelogs have been generated
12703         local nbcl=$(changelog_dump | wc -l)
12704         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12705
12706         for param in "changelog_max_idle_time=10" \
12707                      "changelog_gc=1" \
12708                      "changelog_min_gc_interval=2"; do
12709                 local MDT0=$(facet_svc $SINGLEMDS)
12710                 local var="${param%=*}"
12711                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12712
12713                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12714                 do_nodes $mdts $LCTL set_param mdd.*.$param
12715         done
12716
12717         # force cl_user2 to be idle (1st part)
12718         sleep 9
12719
12720         for i in $(seq $MDSCOUNT); do
12721                 cl_users=(${CL_USERS[mds$i]})
12722                 cl_user1[mds$i]="${cl_users[0]}"
12723                 cl_user2[mds$i]="${cl_users[1]}"
12724
12725                 [ -n "${cl_user1[mds$i]}" ] ||
12726                         error "mds$i: no user registered"
12727                 [ -n "${cl_user2[mds$i]}" ] ||
12728                         error "mds$i: only ${cl_user2[mds$i]} is registered"
12729
12730                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12731                 [ -n "$user_rec1" ] ||
12732                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12733                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12734                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12735                 [ -n "$user_rec2" ] ||
12736                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12737                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12738                      "$user_rec1 + 2 == $user_rec2"
12739                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12740                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12741                               "$user_rec1 + 2, but is $user_rec2"
12742                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12743                 [ -n "$user_rec2" ] ||
12744                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12745                 [ $user_rec1 == $user_rec2 ] ||
12746                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12747                               "$user_rec1, but is $user_rec2"
12748         done
12749
12750         # force cl_user2 to be idle (2nd part) and to reach
12751         # changelog_max_idle_time
12752         sleep 2
12753
12754         # force each GC-thread start and block then
12755         # one per MDT/MDD, set fail_val accordingly
12756         #define OBD_FAIL_FORCE_GC_THREAD 0x1316
12757         do_nodes $mdts $LCTL set_param fail_loc=0x1316
12758
12759         # generate more changelogs to trigger fail_loc
12760         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12761                 error "create $DIR/$tdir/${tfile}bis failed"
12762
12763         # stop MDT to stop GC-thread, should be done in back-ground as it will
12764         # block waiting for the thread to be released and exit
12765         declare -A stop_pids
12766         for i in $(seq $MDSCOUNT); do
12767                 stop mds$i &
12768                 stop_pids[mds$i]=$!
12769         done
12770
12771         for i in $(mdts_nodes); do
12772                 local facet
12773                 local nb=0
12774                 local facets=$(facets_up_on_host $i)
12775
12776                 for facet in ${facets//,/ }; do
12777                         if [[ $facet == mds* ]]; then
12778                                 nb=$((nb + 1))
12779                         fi
12780                 done
12781                 # ensure each MDS's gc threads are still present and all in "R"
12782                 # state (OBD_FAIL_FORCE_GC_THREAD effect!)
12783                 [[ $(do_node $i pgrep chlg_gc_thread | wc -l) -eq $nb ]] ||
12784                         error "$i: expected $nb GC-thread"
12785                 wait_update $i \
12786                         "ps -C chlg_gc_thread -o state --no-headers | uniq" \
12787                         "R" 20 ||
12788                         error "$i: GC-thread not found in R-state"
12789                 # check umounts of each MDT on MDS have reached kthread_stop()
12790                 [[ $(do_node $i pgrep umount | wc -l) -eq $nb ]] ||
12791                         error "$i: expected $nb umount"
12792                 wait_update $i \
12793                         "ps -C umount -o state --no-headers | uniq" "D" 20 ||
12794                         error "$i: umount not found in D-state"
12795         done
12796
12797         # release all GC-threads
12798         do_nodes $mdts $LCTL set_param fail_loc=0
12799
12800         # wait for MDT stop to complete
12801         for i in $(seq $MDSCOUNT); do
12802                 wait ${stop_pids[mds$i]} || error "mds$i: stop failed"
12803         done
12804
12805         # XXX
12806         # may try to check if any orphan changelog records are present
12807         # via ldiskfs/zfs and llog_reader...
12808
12809         # re-start/mount MDTs
12810         for i in $(seq $MDSCOUNT); do
12811                 start mds$i $(mdsdevname $i) $MDS_MOUNT_OPTS ||
12812                         error "Fail to start mds$i"
12813         done
12814
12815         local first_rec
12816         for i in $(seq $MDSCOUNT); do
12817                 # check cl_user1 still registered
12818                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12819                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12820                 # check cl_user2 unregistered
12821                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12822                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12823
12824                 # check changelogs are present and starting at $user_rec1 + 1
12825                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12826                 [ -n "$user_rec1" ] ||
12827                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12828                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12829                             awk '{ print $1; exit; }')
12830
12831                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12832                 [ $((user_rec1 + 1)) == $first_rec ] ||
12833                         error "mds$i: first index should be $user_rec1 + 1, " \
12834                               "but is $first_rec"
12835         done
12836 }
12837 run_test 160h "changelog gc thread stop upon umount, orphan records delete " \
12838               "during mount"
12839
12840 test_160i() {
12841
12842         local mdts=$(comma_list $(mdts_nodes))
12843
12844         changelog_register || error "first changelog_register failed"
12845
12846         # generate some changelog records to accumulate on each MDT
12847         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
12848         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12849                 error "create $DIR/$tdir/$tfile failed"
12850
12851         # check changelogs have been generated
12852         local nbcl=$(changelog_dump | wc -l)
12853         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12854
12855         # simulate race between register and unregister
12856         # XXX as fail_loc is set per-MDS, with DNE configs the race
12857         # simulation will only occur for one MDT per MDS and for the
12858         # others the normal race scenario will take place
12859         #define CFS_FAIL_CHLOG_USER_REG_UNREG_RACE          0x1315
12860         do_nodes $mdts $LCTL set_param fail_loc=0x10001315
12861         do_nodes $mdts $LCTL set_param fail_val=1
12862
12863         # unregister 1st user
12864         changelog_deregister &
12865         local pid1=$!
12866         # wait some time for deregister work to reach race rdv
12867         sleep 2
12868         # register 2nd user
12869         changelog_register || error "2nd user register failed"
12870
12871         wait $pid1 || error "1st user deregister failed"
12872
12873         local i
12874         local last_rec
12875         declare -A LAST_REC
12876         for i in $(seq $MDSCOUNT); do
12877                 if changelog_users mds$i | grep "^cl"; then
12878                         # make sure new records are added with one user present
12879                         LAST_REC[mds$i]=$(changelog_users $SINGLEMDS |
12880                                           awk '/^current.index:/ { print $NF }')
12881                 else
12882                         error "mds$i has no user registered"
12883                 fi
12884         done
12885
12886         # generate more changelog records to accumulate on each MDT
12887         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12888                 error "create $DIR/$tdir/${tfile}bis failed"
12889
12890         for i in $(seq $MDSCOUNT); do
12891                 last_rec=$(changelog_users $SINGLEMDS |
12892                            awk '/^current.index:/ { print $NF }')
12893                 echo "verify changelogs are on: $last_rec != ${LAST_REC[mds$i]}"
12894                 [ $last_rec != ${LAST_REC[mds$i]} ] ||
12895                         error "changelogs are off on mds$i"
12896         done
12897 }
12898 run_test 160i "changelog user register/unregister race"
12899
12900 test_161a() {
12901         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12902
12903         test_mkdir -c1 $DIR/$tdir
12904         cp /etc/hosts $DIR/$tdir/$tfile
12905         test_mkdir -c1 $DIR/$tdir/foo1
12906         test_mkdir -c1 $DIR/$tdir/foo2
12907         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
12908         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
12909         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
12910         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
12911         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
12912         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
12913                 $LFS fid2path $DIR $FID
12914                 error "bad link ea"
12915         fi
12916         # middle
12917         rm $DIR/$tdir/foo2/zachary
12918         # last
12919         rm $DIR/$tdir/foo2/thor
12920         # first
12921         rm $DIR/$tdir/$tfile
12922         # rename
12923         mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
12924         [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ] &&
12925                 { $LFS fid2path $DIR $FID; error "bad link rename"; }
12926         rm $DIR/$tdir/foo2/maggie
12927
12928         # overflow the EA
12929         local longname=$tfile.avg_len_is_thirty_two_
12930         stack_trap "unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
12931                 error_noexit 'failed to unlink many hardlinks'" EXIT
12932         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
12933                 error "failed to hardlink many files"
12934         links=$($LFS fid2path $DIR $FID | wc -l)
12935         echo -n "${links}/1000 links in link EA"
12936         [[ $links -gt 60 ]] || error "expected at least 60 links in link EA"
12937 }
12938 run_test 161a "link ea sanity"
12939
12940 test_161b() {
12941         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12942         [ $MDSCOUNT -lt 2 ] && skip_env "skipping remote directory test"
12943
12944         local MDTIDX=1
12945         local remote_dir=$DIR/$tdir/remote_dir
12946
12947         mkdir -p $DIR/$tdir
12948         $LFS mkdir -i $MDTIDX $remote_dir ||
12949                 error "create remote directory failed"
12950
12951         cp /etc/hosts $remote_dir/$tfile
12952         mkdir -p $remote_dir/foo1
12953         mkdir -p $remote_dir/foo2
12954         ln $remote_dir/$tfile $remote_dir/foo1/sofia
12955         ln $remote_dir/$tfile $remote_dir/foo2/zachary
12956         ln $remote_dir/$tfile $remote_dir/foo1/luna
12957         ln $remote_dir/$tfile $remote_dir/foo2/thor
12958
12959         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
12960                      tr -d ']')
12961         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
12962                 $LFS fid2path $DIR $FID
12963                 error "bad link ea"
12964         fi
12965         # middle
12966         rm $remote_dir/foo2/zachary
12967         # last
12968         rm $remote_dir/foo2/thor
12969         # first
12970         rm $remote_dir/$tfile
12971         # rename
12972         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
12973         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
12974         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
12975                 $LFS fid2path $DIR $FID
12976                 error "bad link rename"
12977         fi
12978         rm $remote_dir/foo2/maggie
12979
12980         # overflow the EA
12981         local longname=filename_avg_len_is_thirty_two_
12982         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
12983                 error "failed to hardlink many files"
12984         links=$($LFS fid2path $DIR $FID | wc -l)
12985         echo -n "${links}/1000 links in link EA"
12986         [[ ${links} -gt 60 ]] ||
12987                 error "expected at least 60 links in link EA"
12988         unlinkmany $remote_dir/foo2/$longname 1000 ||
12989         error "failed to unlink many hardlinks"
12990 }
12991 run_test 161b "link ea sanity under remote directory"
12992
12993 test_161c() {
12994         remote_mds_nodsh && skip "remote MDS with nodsh"
12995         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12996         [[ $MDS1_VERSION -lt $(version_code 2.1.5) ]] &&
12997                 skip "Need MDS version at least 2.1.5"
12998
12999         # define CLF_RENAME_LAST 0x0001
13000         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
13001         changelog_register || error "changelog_register failed"
13002
13003         rm -rf $DIR/$tdir
13004         test_mkdir -i $((MDSCOUNT - 1)) $DIR/$tdir
13005         touch $DIR/$tdir/foo_161c
13006         touch $DIR/$tdir/bar_161c
13007         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
13008         changelog_dump | grep RENME | tail -n 5
13009         local flags=$(changelog_dump | grep "RENME.*bar_161c" | cut -f5 -d' ')
13010         changelog_clear 0 || error "changelog_clear failed"
13011         if [ x$flags != "x0x1" ]; then
13012                 error "flag $flags is not 0x1"
13013         fi
13014
13015         echo "rename overwrite target with nlink = 1, changelog flags=$flags"
13016         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
13017         touch $DIR/$tdir/foo_161c
13018         touch $DIR/$tdir/bar_161c
13019         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
13020         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
13021         changelog_dump | grep RENME | tail -n 5
13022         flags=$(changelog_dump | grep "RENME.*bar_161c" | cut -f5 -d' ')
13023         changelog_clear 0 || error "changelog_clear failed"
13024         if [ x$flags != "x0x0" ]; then
13025                 error "flag $flags is not 0x0"
13026         fi
13027         echo "rename overwrite a target having nlink > 1," \
13028                 "changelog record has flags of $flags"
13029
13030         # rename doesn't overwrite a target (changelog flag 0x0)
13031         touch $DIR/$tdir/foo_161c
13032         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
13033         changelog_dump | grep RENME | tail -n 5
13034         flags=$(changelog_dump | grep RENME | tail -1 | cut -f5 -d' ')
13035         changelog_clear 0 || error "changelog_clear failed"
13036         if [ x$flags != "x0x0" ]; then
13037                 error "flag $flags is not 0x0"
13038         fi
13039         echo "rename doesn't overwrite a target," \
13040                 "changelog record has flags of $flags"
13041
13042         # define CLF_UNLINK_LAST 0x0001
13043         # unlink a file having nlink = 1 (changelog flag 0x1)
13044         rm -f $DIR/$tdir/foo2_161c
13045         changelog_dump | grep UNLNK | tail -n 5
13046         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
13047         changelog_clear 0 || error "changelog_clear failed"
13048         if [ x$flags != "x0x1" ]; then
13049                 error "flag $flags is not 0x1"
13050         fi
13051         echo "unlink a file having nlink = 1," \
13052                 "changelog record has flags of $flags"
13053
13054         # unlink a file having nlink > 1 (changelog flag 0x0)
13055         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
13056         rm -f $DIR/$tdir/foobar_161c
13057         changelog_dump | grep UNLNK | tail -n 5
13058         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
13059         changelog_clear 0 || error "changelog_clear failed"
13060         if [ x$flags != "x0x0" ]; then
13061                 error "flag $flags is not 0x0"
13062         fi
13063         echo "unlink a file having nlink > 1, changelog record flags '$flags'"
13064 }
13065 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
13066
13067 test_161d() {
13068         remote_mds_nodsh && skip "remote MDS with nodsh"
13069         [ -n "$FILESET" ] && skip "Not functional for FILESET set"
13070
13071         local pid
13072         local fid
13073
13074         changelog_register || error "changelog_register failed"
13075
13076         # work in a standalone dir to avoid locking on $DIR/$MOUNT to
13077         # interfer with $MOUNT/.lustre/fid/ access
13078         mkdir $DIR/$tdir
13079         [[ $? -eq 0 ]] || error "mkdir failed"
13080
13081         #define OBD_FAIL_LLITE_CREATE_NODE_PAUSE 0x140c | OBD_FAIL_ONCE
13082         $LCTL set_param fail_loc=0x8000140c
13083         # 5s pause
13084         $LCTL set_param fail_val=5
13085
13086         # create file
13087         echo foofoo > $DIR/$tdir/$tfile &
13088         pid=$!
13089
13090         # wait for create to be delayed
13091         sleep 2
13092
13093         ps -p $pid
13094         [[ $? -eq 0 ]] || error "create should be blocked"
13095
13096         local tempfile=$(mktemp)
13097         fid=$(changelog_extract_field "CREAT" "$tfile" "t=")
13098         cat $MOUNT/.lustre/fid/$fid 2>/dev/null >$tempfile || error "cat failed"
13099         # some delay may occur during ChangeLog publishing and file read just
13100         # above, that could allow file write to happen finally
13101         [[ -s $tempfile ]] && echo "file should be empty"
13102
13103         $LCTL set_param fail_loc=0
13104
13105         wait $pid
13106         [[ $? -eq 0 ]] || error "create failed"
13107 }
13108 run_test 161d "create with concurrent .lustre/fid access"
13109
13110 check_path() {
13111         local expected="$1"
13112         shift
13113         local fid="$2"
13114
13115         local path
13116         path=$($LFS fid2path "$@")
13117         local rc=$?
13118
13119         if [ $rc -ne 0 ]; then
13120                 error "path looked up of '$expected' failed: rc=$rc"
13121         elif [ "$path" != "$expected" ]; then
13122                 error "path looked up '$path' instead of '$expected'"
13123         else
13124                 echo "FID '$fid' resolves to path '$path' as expected"
13125         fi
13126 }
13127
13128 test_162a() { # was test_162
13129         test_mkdir -p -c1 $DIR/$tdir/d2
13130         touch $DIR/$tdir/d2/$tfile
13131         touch $DIR/$tdir/d2/x1
13132         touch $DIR/$tdir/d2/x2
13133         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
13134         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
13135         # regular file
13136         local fid=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
13137         check_path "$tdir/d2/$tfile" $FSNAME "$fid" --link 0
13138
13139         # softlink
13140         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
13141         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
13142         check_path "$tdir/d2/p/q/r/slink" $FSNAME "$fid" --link 0
13143
13144         # softlink to wrong file
13145         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
13146         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
13147         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME "$fid" --link 0
13148
13149         # hardlink
13150         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
13151         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
13152         fid=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
13153         # fid2path dir/fsname should both work
13154         check_path "$tdir/d2/a/b/c/new_file" $FSNAME "$fid" --link 1
13155         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR "$fid" --link 0
13156
13157         # hardlink count: check that there are 2 links
13158         local nlinks=$($LFS fid2path $DIR "$fid" | wc -l)
13159         [ $nlinks -eq 2 ] || error "expect 2 links, found $nlinks"
13160
13161         # hardlink indexing: remove the first link
13162         rm $DIR/$tdir/d2/p/q/r/hlink
13163         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $fid --link 0
13164 }
13165 run_test 162a "path lookup sanity"
13166
13167 test_162b() {
13168         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13169         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
13170
13171         mkdir $DIR/$tdir
13172         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
13173                                 error "create striped dir failed"
13174
13175         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
13176                                         tail -n 1 | awk '{print $2}')
13177         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
13178
13179         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
13180         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
13181
13182         # regular file
13183         for ((i=0;i<5;i++)); do
13184                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
13185                         error "get fid for f$i failed"
13186                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0
13187
13188                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
13189                         error "get fid for d$i failed"
13190                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0
13191         done
13192
13193         return 0
13194 }
13195 run_test 162b "striped directory path lookup sanity"
13196
13197 # LU-4239: Verify fid2path works with paths 100 or more directories deep
13198 test_162c() {
13199         [[ $MDS1_VERSION -lt $(version_code 2.7.51) ]] &&
13200                 skip "Need MDS version at least 2.7.51"
13201
13202         local lpath=$tdir.local
13203         local rpath=$tdir.remote
13204
13205         test_mkdir $DIR/$lpath
13206         test_mkdir $DIR/$rpath
13207
13208         for ((i = 0; i <= 101; i++)); do
13209                 lpath="$lpath/$i"
13210                 mkdir $DIR/$lpath
13211                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
13212                         error "get fid for local directory $DIR/$lpath failed"
13213                 check_path "$DIR/$lpath" $MOUNT $FID --link 0
13214
13215                 rpath="$rpath/$i"
13216                 test_mkdir $DIR/$rpath
13217                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
13218                         error "get fid for remote directory $DIR/$rpath failed"
13219                 check_path "$DIR/$rpath" $MOUNT $FID --link 0
13220         done
13221
13222         return 0
13223 }
13224 run_test 162c "fid2path works with paths 100 or more directories deep"
13225
13226 test_169() {
13227         # do directio so as not to populate the page cache
13228         log "creating a 10 Mb file"
13229         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
13230         log "starting reads"
13231         dd if=$DIR/$tfile of=/dev/null bs=4096 &
13232         log "truncating the file"
13233         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
13234         log "killing dd"
13235         kill %+ || true # reads might have finished
13236         echo "wait until dd is finished"
13237         wait
13238         log "removing the temporary file"
13239         rm -rf $DIR/$tfile || error "tmp file removal failed"
13240 }
13241 run_test 169 "parallel read and truncate should not deadlock"
13242
13243 test_170() {
13244         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13245
13246         $LCTL clear     # bug 18514
13247         $LCTL debug_daemon start $TMP/${tfile}_log_good
13248         touch $DIR/$tfile
13249         $LCTL debug_daemon stop
13250         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
13251                 error "sed failed to read log_good"
13252
13253         $LCTL debug_daemon start $TMP/${tfile}_log_good
13254         rm -rf $DIR/$tfile
13255         $LCTL debug_daemon stop
13256
13257         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
13258                error "lctl df log_bad failed"
13259
13260         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
13261         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
13262
13263         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
13264         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
13265
13266         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
13267                 error "bad_line good_line1 good_line2 are empty"
13268
13269         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
13270         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
13271         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
13272
13273         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
13274         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
13275         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
13276
13277         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
13278                 error "bad_line_new good_line_new are empty"
13279
13280         local expected_good=$((good_line1 + good_line2*2))
13281
13282         rm -f $TMP/${tfile}*
13283         # LU-231, short malformed line may not be counted into bad lines
13284         if [ $bad_line -ne $bad_line_new ] &&
13285                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
13286                 error "expected $bad_line bad lines, but got $bad_line_new"
13287                 return 1
13288         fi
13289
13290         if [ $expected_good -ne $good_line_new ]; then
13291                 error "expected $expected_good good lines, but got $good_line_new"
13292                 return 2
13293         fi
13294         true
13295 }
13296 run_test 170 "test lctl df to handle corrupted log ====================="
13297
13298 test_171() { # bug20592
13299         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13300
13301         #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
13302         $LCTL set_param fail_loc=0x50e
13303         $LCTL set_param fail_val=3000
13304         multiop_bg_pause $DIR/$tfile O_s || true
13305         local MULTIPID=$!
13306         kill -USR1 $MULTIPID
13307         # cause log dump
13308         sleep 3
13309         wait $MULTIPID
13310         if dmesg | grep "recursive fault"; then
13311                 error "caught a recursive fault"
13312         fi
13313         $LCTL set_param fail_loc=0
13314         true
13315 }
13316 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
13317
13318 # it would be good to share it with obdfilter-survey/iokit-libecho code
13319 setup_obdecho_osc () {
13320         local rc=0
13321         local ost_nid=$1
13322         local obdfilter_name=$2
13323         echo "Creating new osc for $obdfilter_name on $ost_nid"
13324         # make sure we can find loopback nid
13325         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
13326
13327         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
13328                            ${obdfilter_name}_osc_UUID || rc=2; }
13329         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
13330                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
13331         return $rc
13332 }
13333
13334 cleanup_obdecho_osc () {
13335         local obdfilter_name=$1
13336         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
13337         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
13338         return 0
13339 }
13340
13341 obdecho_test() {
13342         local OBD=$1
13343         local node=$2
13344         local pages=${3:-64}
13345         local rc=0
13346         local id
13347
13348         local count=10
13349         local obd_size=$(get_obd_size $node $OBD)
13350         local page_size=$(get_page_size $node)
13351         if [[ -n "$obd_size" ]]; then
13352                 local new_count=$((obd_size / (pages * page_size / 1024)))
13353                 [[ $new_count -ge $count ]] || count=$new_count
13354         fi
13355
13356         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
13357         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
13358                            rc=2; }
13359         if [ $rc -eq 0 ]; then
13360             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
13361             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
13362         fi
13363         echo "New object id is $id"
13364         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
13365                            rc=4; }
13366         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
13367                            "test_brw $count w v $pages $id" || rc=4; }
13368         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
13369                            rc=4; }
13370         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
13371                                         "cleanup" || rc=5; }
13372         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
13373                                         "detach" || rc=6; }
13374         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
13375         return $rc
13376 }
13377
13378 test_180a() {
13379         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13380
13381         if ! module_loaded obdecho; then
13382                 load_module obdecho/obdecho &&
13383                         stack_trap "rmmod obdecho" EXIT ||
13384                         error "unable to load obdecho on client"
13385         fi
13386
13387         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
13388         local host=$($LCTL get_param -n osc.$osc.import |
13389                      awk '/current_connection:/ { print $2 }' )
13390         local target=$($LCTL get_param -n osc.$osc.import |
13391                        awk '/target:/ { print $2 }' )
13392         target=${target%_UUID}
13393
13394         if [ -n "$target" ]; then
13395                 setup_obdecho_osc $host $target &&
13396                         stack_trap "cleanup_obdecho_osc $target" EXIT ||
13397                         { error "obdecho setup failed with $?"; return; }
13398
13399                 obdecho_test ${target}_osc client ||
13400                         error "obdecho_test failed on ${target}_osc"
13401         else
13402                 $LCTL get_param osc.$osc.import
13403                 error "there is no osc.$osc.import target"
13404         fi
13405 }
13406 run_test 180a "test obdecho on osc"
13407
13408 test_180b() {
13409         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13410         remote_ost_nodsh && skip "remote OST with nodsh"
13411
13412         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
13413                 stack_trap "do_facet ost1 rmmod obdecho" EXIT ||
13414                 error "failed to load module obdecho"
13415
13416         local target=$(do_facet ost1 $LCTL dl |
13417                        awk '/obdfilter/ { print $4; exit; }')
13418
13419         if [ -n "$target" ]; then
13420                 obdecho_test $target ost1 || error "obdecho_test failed with $?"
13421         else
13422                 do_facet ost1 $LCTL dl
13423                 error "there is no obdfilter target on ost1"
13424         fi
13425 }
13426 run_test 180b "test obdecho directly on obdfilter"
13427
13428 test_180c() { # LU-2598
13429         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13430         remote_ost_nodsh && skip "remote OST with nodsh"
13431         [[ $MDS1_VERSION -lt $(version_code 2.4.0) ]] &&
13432                 skip "Need MDS version at least 2.4.0"
13433
13434         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
13435                 stack_trap "do_facet ost1 rmmod obdecho" EXIT ||
13436                 error "failed to load module obdecho"
13437
13438         local target=$(do_facet ost1 $LCTL dl |
13439                        awk '/obdfilter/ { print $4; exit; }')
13440
13441         if [ -n "$target" ]; then
13442                 local pages=16384 # 64MB bulk I/O RPC size
13443
13444                 obdecho_test "$target" ost1 "$pages" ||
13445                         error "obdecho_test with pages=$pages failed with $?"
13446         else
13447                 do_facet ost1 $LCTL dl
13448                 error "there is no obdfilter target on ost1"
13449         fi
13450 }
13451 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
13452
13453 test_181() { # bug 22177
13454         test_mkdir $DIR/$tdir
13455         # create enough files to index the directory
13456         createmany -o $DIR/$tdir/foobar 4000
13457         # print attributes for debug purpose
13458         lsattr -d .
13459         # open dir
13460         multiop_bg_pause $DIR/$tdir D_Sc || return 1
13461         MULTIPID=$!
13462         # remove the files & current working dir
13463         unlinkmany $DIR/$tdir/foobar 4000
13464         rmdir $DIR/$tdir
13465         kill -USR1 $MULTIPID
13466         wait $MULTIPID
13467         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
13468         return 0
13469 }
13470 run_test 181 "Test open-unlinked dir ========================"
13471
13472 test_182() {
13473         local fcount=1000
13474         local tcount=10
13475
13476         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13477
13478         $LCTL set_param mdc.*.rpc_stats=clear
13479
13480         for (( i = 0; i < $tcount; i++ )) ; do
13481                 mkdir $DIR/$tdir/$i
13482         done
13483
13484         for (( i = 0; i < $tcount; i++ )) ; do
13485                 createmany -o $DIR/$tdir/$i/f- $fcount &
13486         done
13487         wait
13488
13489         for (( i = 0; i < $tcount; i++ )) ; do
13490                 unlinkmany $DIR/$tdir/$i/f- $fcount &
13491         done
13492         wait
13493
13494         $LCTL get_param mdc.*.rpc_stats
13495
13496         rm -rf $DIR/$tdir
13497 }
13498 run_test 182 "Test parallel modify metadata operations ================"
13499
13500 test_183() { # LU-2275
13501         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13502         remote_mds_nodsh && skip "remote MDS with nodsh"
13503         [[ $MDS1_VERSION -lt $(version_code 2.3.56) ]] &&
13504                 skip "Need MDS version at least 2.3.56"
13505
13506         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13507         echo aaa > $DIR/$tdir/$tfile
13508
13509 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
13510         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
13511
13512         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
13513         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
13514
13515         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
13516
13517         # Flush negative dentry cache
13518         touch $DIR/$tdir/$tfile
13519
13520         # We are not checking for any leaked references here, they'll
13521         # become evident next time we do cleanup with module unload.
13522         rm -rf $DIR/$tdir
13523 }
13524 run_test 183 "No crash or request leak in case of strange dispositions ========"
13525
13526 # test suite 184 is for LU-2016, LU-2017
13527 test_184a() {
13528         check_swap_layouts_support
13529
13530         dir0=$DIR/$tdir/$testnum
13531         test_mkdir -p -c1 $dir0
13532         ref1=/etc/passwd
13533         ref2=/etc/group
13534         file1=$dir0/f1
13535         file2=$dir0/f2
13536         $LFS setstripe -c1 $file1
13537         cp $ref1 $file1
13538         $LFS setstripe -c2 $file2
13539         cp $ref2 $file2
13540         gen1=$($LFS getstripe -g $file1)
13541         gen2=$($LFS getstripe -g $file2)
13542
13543         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
13544         gen=$($LFS getstripe -g $file1)
13545         [[ $gen1 != $gen ]] ||
13546                 "Layout generation on $file1 does not change"
13547         gen=$($LFS getstripe -g $file2)
13548         [[ $gen2 != $gen ]] ||
13549                 "Layout generation on $file2 does not change"
13550
13551         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
13552         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
13553
13554         lfsck_verify_pfid $file1 $file2 || error "PFID are not transferred"
13555 }
13556 run_test 184a "Basic layout swap"
13557
13558 test_184b() {
13559         check_swap_layouts_support
13560
13561         dir0=$DIR/$tdir/$testnum
13562         mkdir -p $dir0 || error "creating dir $dir0"
13563         file1=$dir0/f1
13564         file2=$dir0/f2
13565         file3=$dir0/f3
13566         dir1=$dir0/d1
13567         dir2=$dir0/d2
13568         mkdir $dir1 $dir2
13569         $LFS setstripe -c1 $file1
13570         $LFS setstripe -c2 $file2
13571         $LFS setstripe -c1 $file3
13572         chown $RUNAS_ID $file3
13573         gen1=$($LFS getstripe -g $file1)
13574         gen2=$($LFS getstripe -g $file2)
13575
13576         $LFS swap_layouts $dir1 $dir2 &&
13577                 error "swap of directories layouts should fail"
13578         $LFS swap_layouts $dir1 $file1 &&
13579                 error "swap of directory and file layouts should fail"
13580         $RUNAS $LFS swap_layouts $file1 $file2 &&
13581                 error "swap of file we cannot write should fail"
13582         $LFS swap_layouts $file1 $file3 &&
13583                 error "swap of file with different owner should fail"
13584         /bin/true # to clear error code
13585 }
13586 run_test 184b "Forbidden layout swap (will generate errors)"
13587
13588 test_184c() {
13589         local cmpn_arg=$(cmp -n 2>&1 | grep "invalid option")
13590         [ -n "$cmpn_arg" ] && skip_env "cmp does not support -n"
13591         check_swap_layouts_support
13592
13593         local dir0=$DIR/$tdir/$testnum
13594         mkdir -p $dir0 || error "creating dir $dir0"
13595
13596         local ref1=$dir0/ref1
13597         local ref2=$dir0/ref2
13598         local file1=$dir0/file1
13599         local file2=$dir0/file2
13600         # create a file large enough for the concurrent test
13601         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
13602         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
13603         echo "ref file size: ref1($(stat -c %s $ref1))," \
13604              "ref2($(stat -c %s $ref2))"
13605
13606         cp $ref2 $file2
13607         dd if=$ref1 of=$file1 bs=16k &
13608         local DD_PID=$!
13609
13610         # Make sure dd starts to copy file
13611         while [ ! -f $file1 ]; do sleep 0.1; done
13612
13613         $LFS swap_layouts $file1 $file2
13614         local rc=$?
13615         wait $DD_PID
13616         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
13617         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
13618
13619         # how many bytes copied before swapping layout
13620         local copied=$(stat -c %s $file2)
13621         local remaining=$(stat -c %s $ref1)
13622         remaining=$((remaining - copied))
13623         echo "Copied $copied bytes before swapping layout..."
13624
13625         cmp -n $copied $file1 $ref2 | grep differ &&
13626                 error "Content mismatch [0, $copied) of ref2 and file1"
13627         cmp -n $copied $file2 $ref1 ||
13628                 error "Content mismatch [0, $copied) of ref1 and file2"
13629         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
13630                 error "Content mismatch [$copied, EOF) of ref1 and file1"
13631
13632         # clean up
13633         rm -f $ref1 $ref2 $file1 $file2
13634 }
13635 run_test 184c "Concurrent write and layout swap"
13636
13637 test_184d() {
13638         check_swap_layouts_support
13639         [ -z "$(which getfattr 2>/dev/null)" ] &&
13640                 skip_env "no getfattr command"
13641
13642         local file1=$DIR/$tdir/$tfile-1
13643         local file2=$DIR/$tdir/$tfile-2
13644         local file3=$DIR/$tdir/$tfile-3
13645         local lovea1
13646         local lovea2
13647
13648         mkdir -p $DIR/$tdir
13649         touch $file1 || error "create $file1 failed"
13650         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
13651                 error "create $file2 failed"
13652         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
13653                 error "create $file3 failed"
13654         lovea1=$(get_layout_param $file1)
13655
13656         $LFS swap_layouts $file2 $file3 ||
13657                 error "swap $file2 $file3 layouts failed"
13658         $LFS swap_layouts $file1 $file2 ||
13659                 error "swap $file1 $file2 layouts failed"
13660
13661         lovea2=$(get_layout_param $file2)
13662         echo "$lovea1"
13663         echo "$lovea2"
13664         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
13665
13666         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
13667         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
13668 }
13669 run_test 184d "allow stripeless layouts swap"
13670
13671 test_184e() {
13672         [[ $MDS1_VERSION -ge $(version_code 2.6.94) ]] ||
13673                 skip "Need MDS version at least 2.6.94"
13674         check_swap_layouts_support
13675         [ -z "$(which getfattr 2>/dev/null)" ] &&
13676                 skip_env "no getfattr command"
13677
13678         local file1=$DIR/$tdir/$tfile-1
13679         local file2=$DIR/$tdir/$tfile-2
13680         local file3=$DIR/$tdir/$tfile-3
13681         local lovea
13682
13683         mkdir -p $DIR/$tdir
13684         touch $file1 || error "create $file1 failed"
13685         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
13686                 error "create $file2 failed"
13687         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
13688                 error "create $file3 failed"
13689
13690         $LFS swap_layouts $file1 $file2 ||
13691                 error "swap $file1 $file2 layouts failed"
13692
13693         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
13694         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
13695
13696         echo 123 > $file1 || error "Should be able to write into $file1"
13697
13698         $LFS swap_layouts $file1 $file3 ||
13699                 error "swap $file1 $file3 layouts failed"
13700
13701         echo 123 > $file1 || error "Should be able to write into $file1"
13702
13703         rm -rf $file1 $file2 $file3
13704 }
13705 run_test 184e "Recreate layout after stripeless layout swaps"
13706
13707 test_184f() {
13708         # Create a file with name longer than sizeof(struct stat) ==
13709         # 144 to see if we can get chars from the file name to appear
13710         # in the returned striping. Note that 'f' == 0x66.
13711         local file=$(for ((i = 0; i < 200; i++)); do echo -n f; done)
13712
13713         mkdir -p $DIR/$tdir
13714         mcreate $DIR/$tdir/$file
13715         if lfs find --stripe-count 0x6666 $DIR/$tdir | grep $file; then
13716                 error "IOC_MDC_GETFILEINFO returned garbage striping"
13717         fi
13718 }
13719 run_test 184f "IOC_MDC_GETFILEINFO for files with long names but no striping"
13720
13721 test_185() { # LU-2441
13722         # LU-3553 - no volatile file support in old servers
13723         [[ $MDS1_VERSION -ge $(version_code 2.3.60) ]] ||
13724                 skip "Need MDS version at least 2.3.60"
13725
13726         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13727         touch $DIR/$tdir/spoo
13728         local mtime1=$(stat -c "%Y" $DIR/$tdir)
13729         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
13730                 error "cannot create/write a volatile file"
13731         [ "$FILESET" == "" ] &&
13732         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
13733                 error "FID is still valid after close"
13734
13735         multiop_bg_pause $DIR/$tdir vVw4096_c
13736         local multi_pid=$!
13737
13738         local OLD_IFS=$IFS
13739         IFS=":"
13740         local fidv=($fid)
13741         IFS=$OLD_IFS
13742         # assume that the next FID for this client is sequential, since stdout
13743         # is unfortunately eaten by multiop_bg_pause
13744         local n=$((${fidv[1]} + 1))
13745         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
13746         if [ "$FILESET" == "" ]; then
13747                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
13748                         error "FID is missing before close"
13749         fi
13750         kill -USR1 $multi_pid
13751         # 1 second delay, so if mtime change we will see it
13752         sleep 1
13753         local mtime2=$(stat -c "%Y" $DIR/$tdir)
13754         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
13755 }
13756 run_test 185 "Volatile file support"
13757
13758 test_187a() {
13759         remote_mds_nodsh && skip "remote MDS with nodsh"
13760         [ $MDS1_VERSION -lt $(version_code 2.3.0) ] &&
13761                 skip "Need MDS version at least 2.3.0"
13762
13763         local dir0=$DIR/$tdir/$testnum
13764         mkdir -p $dir0 || error "creating dir $dir0"
13765
13766         local file=$dir0/file1
13767         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
13768         local dv1=$($LFS data_version $file)
13769         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
13770         local dv2=$($LFS data_version $file)
13771         [[ $dv1 != $dv2 ]] ||
13772                 error "data version did not change on write $dv1 == $dv2"
13773
13774         # clean up
13775         rm -f $file1
13776 }
13777 run_test 187a "Test data version change"
13778
13779 test_187b() {
13780         remote_mds_nodsh && skip "remote MDS with nodsh"
13781         [ $MDS1_VERSION -lt $(version_code 2.3.0) ] &&
13782                 skip "Need MDS version at least 2.3.0"
13783
13784         local dir0=$DIR/$tdir/$testnum
13785         mkdir -p $dir0 || error "creating dir $dir0"
13786
13787         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
13788         [[ ${DV[0]} != ${DV[1]} ]] ||
13789                 error "data version did not change on write"\
13790                       " ${DV[0]} == ${DV[1]}"
13791
13792         # clean up
13793         rm -f $file1
13794 }
13795 run_test 187b "Test data version change on volatile file"
13796
13797 test_200() {
13798         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13799         remote_mgs_nodsh && skip "remote MGS with nodsh"
13800         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
13801
13802         local POOL=${POOL:-cea1}
13803         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
13804         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
13805         # Pool OST targets
13806         local first_ost=0
13807         local last_ost=$(($OSTCOUNT - 1))
13808         local ost_step=2
13809         local ost_list=$(seq $first_ost $ost_step $last_ost)
13810         local ost_range="$first_ost $last_ost $ost_step"
13811         local test_path=$POOL_ROOT/$POOL_DIR_NAME
13812         local file_dir=$POOL_ROOT/file_tst
13813         local subdir=$test_path/subdir
13814         local rc=0
13815
13816         if ! combined_mgs_mds ; then
13817                 mount_mgs_client
13818         fi
13819
13820         while : ; do
13821                 # former test_200a test_200b
13822                 pool_add $POOL                          || { rc=$? ; break; }
13823                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
13824                 # former test_200c test_200d
13825                 mkdir -p $test_path
13826                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
13827                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
13828                 mkdir -p $subdir
13829                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
13830                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
13831                                                         || { rc=$? ; break; }
13832                 # former test_200e test_200f
13833                 local files=$((OSTCOUNT*3))
13834                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
13835                                                         || { rc=$? ; break; }
13836                 pool_create_files $POOL $file_dir $files "$ost_list" \
13837                                                         || { rc=$? ; break; }
13838                 # former test_200g test_200h
13839                 pool_lfs_df $POOL                       || { rc=$? ; break; }
13840                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
13841
13842                 # former test_201a test_201b test_201c
13843                 pool_remove_first_target $POOL          || { rc=$? ; break; }
13844
13845                 local f=$test_path/$tfile
13846                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
13847                 pool_remove $POOL $f                    || { rc=$? ; break; }
13848                 break
13849         done
13850
13851         destroy_test_pools
13852
13853         if ! combined_mgs_mds ; then
13854                 umount_mgs_client
13855         fi
13856         return $rc
13857 }
13858 run_test 200 "OST pools"
13859
13860 # usage: default_attr <count | size | offset>
13861 default_attr() {
13862         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
13863 }
13864
13865 # usage: check_default_stripe_attr
13866 check_default_stripe_attr() {
13867         ACTUAL=$($LFS getstripe $* $DIR/$tdir)
13868         case $1 in
13869         --stripe-count|-c)
13870                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
13871         --stripe-size|-S)
13872                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
13873         --stripe-index|-i)
13874                 EXPECTED=-1;;
13875         *)
13876                 error "unknown getstripe attr '$1'"
13877         esac
13878
13879         [ $ACTUAL == $EXPECTED ] ||
13880                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
13881 }
13882
13883 test_204a() {
13884         test_mkdir $DIR/$tdir
13885         $LFS setstripe --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
13886
13887         check_default_stripe_attr --stripe-count
13888         check_default_stripe_attr --stripe-size
13889         check_default_stripe_attr --stripe-index
13890 }
13891 run_test 204a "Print default stripe attributes"
13892
13893 test_204b() {
13894         test_mkdir $DIR/$tdir
13895         $LFS setstripe --stripe-count 1 $DIR/$tdir
13896
13897         check_default_stripe_attr --stripe-size
13898         check_default_stripe_attr --stripe-index
13899 }
13900 run_test 204b "Print default stripe size and offset"
13901
13902 test_204c() {
13903         test_mkdir $DIR/$tdir
13904         $LFS setstripe --stripe-size 65536 $DIR/$tdir
13905
13906         check_default_stripe_attr --stripe-count
13907         check_default_stripe_attr --stripe-index
13908 }
13909 run_test 204c "Print default stripe count and offset"
13910
13911 test_204d() {
13912         test_mkdir $DIR/$tdir
13913         $LFS setstripe --stripe-index 0 $DIR/$tdir
13914
13915         check_default_stripe_attr --stripe-count
13916         check_default_stripe_attr --stripe-size
13917 }
13918 run_test 204d "Print default stripe count and size"
13919
13920 test_204e() {
13921         test_mkdir $DIR/$tdir
13922         $LFS setstripe -d $DIR/$tdir
13923
13924         check_default_stripe_attr --stripe-count --raw
13925         check_default_stripe_attr --stripe-size --raw
13926         check_default_stripe_attr --stripe-index --raw
13927 }
13928 run_test 204e "Print raw stripe attributes"
13929
13930 test_204f() {
13931         test_mkdir $DIR/$tdir
13932         $LFS setstripe --stripe-count 1 $DIR/$tdir
13933
13934         check_default_stripe_attr --stripe-size --raw
13935         check_default_stripe_attr --stripe-index --raw
13936 }
13937 run_test 204f "Print raw stripe size and offset"
13938
13939 test_204g() {
13940         test_mkdir $DIR/$tdir
13941         $LFS setstripe --stripe-size 65536 $DIR/$tdir
13942
13943         check_default_stripe_attr --stripe-count --raw
13944         check_default_stripe_attr --stripe-index --raw
13945 }
13946 run_test 204g "Print raw stripe count and offset"
13947
13948 test_204h() {
13949         test_mkdir $DIR/$tdir
13950         $LFS setstripe --stripe-index 0 $DIR/$tdir
13951
13952         check_default_stripe_attr --stripe-count --raw
13953         check_default_stripe_attr --stripe-size --raw
13954 }
13955 run_test 204h "Print raw stripe count and size"
13956
13957 # Figure out which job scheduler is being used, if any,
13958 # or use a fake one
13959 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
13960         JOBENV=SLURM_JOB_ID
13961 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
13962         JOBENV=LSB_JOBID
13963 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
13964         JOBENV=PBS_JOBID
13965 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
13966         JOBENV=LOADL_STEP_ID
13967 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
13968         JOBENV=JOB_ID
13969 else
13970         $LCTL list_param jobid_name > /dev/null 2>&1
13971         if [ $? -eq 0 ]; then
13972                 JOBENV=nodelocal
13973         else
13974                 JOBENV=FAKE_JOBID
13975         fi
13976 fi
13977 LUSTRE_JOBID_SIZE=31 # plus NUL terminator
13978
13979 verify_jobstats() {
13980         local cmd=($1)
13981         shift
13982         local facets="$@"
13983
13984 # we don't really need to clear the stats for this test to work, since each
13985 # command has a unique jobid, but it makes debugging easier if needed.
13986 #       for facet in $facets; do
13987 #               local dev=$(convert_facet2label $facet)
13988 #               # clear old jobstats
13989 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
13990 #       done
13991
13992         # use a new JobID for each test, or we might see an old one
13993         [ "$JOBENV" = "FAKE_JOBID" ] &&
13994                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
13995
13996         JOBVAL=${!JOBENV:0:$LUSTRE_JOBID_SIZE}
13997
13998         [ "$JOBENV" = "nodelocal" ] && {
13999                 FAKE_JOBID=id.$testnum.%e.$RANDOM
14000                 $LCTL set_param jobid_name=$FAKE_JOBID
14001                 JOBVAL=${FAKE_JOBID/\%e/$(basename ${cmd[0]})}
14002         }
14003
14004         log "Test: ${cmd[*]}"
14005         log "Using JobID environment $($LCTL get_param -n jobid_var)=$JOBVAL"
14006
14007         if [ $JOBENV = "FAKE_JOBID" ]; then
14008                 FAKE_JOBID=$JOBVAL ${cmd[*]}
14009         else
14010                 ${cmd[*]}
14011         fi
14012
14013         # all files are created on OST0000
14014         for facet in $facets; do
14015                 local stats="*.$(convert_facet2label $facet).job_stats"
14016
14017                 # strip out libtool wrappers for in-tree executables
14018                 if [ $(do_facet $facet lctl get_param $stats |
14019                        sed -e 's/\.lt-/./' | grep -c $JOBVAL) -ne 1 ]; then
14020                         do_facet $facet lctl get_param $stats
14021                         error "No jobstats for $JOBVAL found on $facet::$stats"
14022                 fi
14023         done
14024 }
14025
14026 jobstats_set() {
14027         local new_jobenv=$1
14028
14029         set_persistent_param_and_check client "jobid_var" \
14030                 "$FSNAME.sys.jobid_var" $new_jobenv
14031 }
14032
14033 test_205() { # Job stats
14034         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14035         [[ $MDS1_VERSION -ge $(version_code 2.7.1) ]] ||
14036                 skip "Need MDS version with at least 2.7.1"
14037         remote_mgs_nodsh && skip "remote MGS with nodsh"
14038         remote_mds_nodsh && skip "remote MDS with nodsh"
14039         remote_ost_nodsh && skip "remote OST with nodsh"
14040         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
14041                 skip "Server doesn't support jobstats"
14042         [[ $JOBID_VAR = disable ]] && skip_env "jobstats is disabled"
14043
14044         local old_jobenv=$($LCTL get_param -n jobid_var)
14045         [ $old_jobenv != $JOBENV ] && jobstats_set $JOBENV
14046
14047         if [[ $PERM_CMD == *"set_param -P"* ]]; then
14048                 stack_trap "do_facet mgs $PERM_CMD jobid_var=$old_jobenv" EXIT
14049         else
14050                 stack_trap "do_facet mgs $PERM_CMD \
14051                         $FSNAME.sys.jobid_var=$old_jobenv" EXIT
14052         fi
14053         changelog_register
14054
14055         local old_interval=$(do_facet $SINGLEMDS lctl get_param -n \
14056                                 mdt.*.job_cleanup_interval | head -n 1)
14057         local new_interval=5
14058         do_facet $SINGLEMDS \
14059                 $LCTL set_param mdt.*.job_cleanup_interval=$new_interval
14060         stack_trap "do_facet $SINGLEMDS \
14061                 $LCTL set_param mdt.*.job_cleanup_interval=$old_interval" EXIT
14062         local start=$SECONDS
14063
14064         local cmd
14065         # mkdir
14066         cmd="mkdir $DIR/$tdir"
14067         verify_jobstats "$cmd" "$SINGLEMDS"
14068         # rmdir
14069         cmd="rmdir $DIR/$tdir"
14070         verify_jobstats "$cmd" "$SINGLEMDS"
14071         # mkdir on secondary MDT
14072         if [ $MDSCOUNT -gt 1 ]; then
14073                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
14074                 verify_jobstats "$cmd" "mds2"
14075         fi
14076         # mknod
14077         cmd="mknod $DIR/$tfile c 1 3"
14078         verify_jobstats "$cmd" "$SINGLEMDS"
14079         # unlink
14080         cmd="rm -f $DIR/$tfile"
14081         verify_jobstats "$cmd" "$SINGLEMDS"
14082         # create all files on OST0000 so verify_jobstats can find OST stats
14083         # open & close
14084         cmd="$LFS setstripe -i 0 -c 1 $DIR/$tfile"
14085         verify_jobstats "$cmd" "$SINGLEMDS"
14086         # setattr
14087         cmd="touch $DIR/$tfile"
14088         verify_jobstats "$cmd" "$SINGLEMDS ost1"
14089         # write
14090         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
14091         verify_jobstats "$cmd" "ost1"
14092         # read
14093         cancel_lru_locks osc
14094         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
14095         verify_jobstats "$cmd" "ost1"
14096         # truncate
14097         cmd="$TRUNCATE $DIR/$tfile 0"
14098         verify_jobstats "$cmd" "$SINGLEMDS ost1"
14099         # rename
14100         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
14101         verify_jobstats "$cmd" "$SINGLEMDS"
14102         # jobstats expiry - sleep until old stats should be expired
14103         local left=$((new_interval + 5 - (SECONDS - start)))
14104         [ $left -ge 0 ] && wait_update_facet $SINGLEMDS \
14105                 "lctl get_param *.*.job_stats | grep -c 'job_id.*mkdir'" \
14106                         "0" $left
14107         cmd="mkdir $DIR/$tdir.expire"
14108         verify_jobstats "$cmd" "$SINGLEMDS"
14109         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
14110             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
14111
14112         # Ensure that jobid are present in changelog (if supported by MDS)
14113         if [ $MDS1_VERSION -ge $(version_code 2.6.52) ];then
14114                 changelog_dump | tail -10
14115                 jobids=$(changelog_dump | tail -9 | grep -c "j=")
14116                 [ $jobids -eq 9 ] ||
14117                         error "Wrong changelog jobid count $jobids != 9"
14118
14119                 # LU-5862
14120                 JOBENV="disable"
14121                 jobstats_set $JOBENV
14122                 touch $DIR/$tfile
14123                 changelog_dump | grep $tfile
14124                 jobids=$(changelog_dump | grep $tfile | tail -1 | grep -c "j=")
14125                 [ $jobids -eq 0 ] ||
14126                         error "Unexpected jobids when jobid_var=$JOBENV"
14127         fi
14128
14129         lctl set_param jobid_var=USER jobid_name="S.%j.%e.%u.%h.E"
14130         JOBENV="JOBCOMPLEX"
14131         JOBCOMPLEX="S.$USER.touch.$(id -u).$(hostname).E"
14132
14133         verify_jobstats "touch $DIR/$tfile" $SINGLEMDS
14134 }
14135 run_test 205 "Verify job stats"
14136
14137 # LU-1480, LU-1773 and LU-1657
14138 test_206() {
14139         mkdir -p $DIR/$tdir
14140         $LFS setstripe -c -1 $DIR/$tdir
14141 #define OBD_FAIL_LOV_INIT 0x1403
14142         $LCTL set_param fail_loc=0xa0001403
14143         $LCTL set_param fail_val=1
14144         touch $DIR/$tdir/$tfile || true
14145 }
14146 run_test 206 "fail lov_init_raid0() doesn't lbug"
14147
14148 test_207a() {
14149         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
14150         local fsz=`stat -c %s $DIR/$tfile`
14151         cancel_lru_locks mdc
14152
14153         # do not return layout in getattr intent
14154 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
14155         $LCTL set_param fail_loc=0x170
14156         local sz=`stat -c %s $DIR/$tfile`
14157
14158         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
14159
14160         rm -rf $DIR/$tfile
14161 }
14162 run_test 207a "can refresh layout at glimpse"
14163
14164 test_207b() {
14165         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
14166         local cksum=`md5sum $DIR/$tfile`
14167         local fsz=`stat -c %s $DIR/$tfile`
14168         cancel_lru_locks mdc
14169         cancel_lru_locks osc
14170
14171         # do not return layout in getattr intent
14172 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
14173         $LCTL set_param fail_loc=0x171
14174
14175         # it will refresh layout after the file is opened but before read issues
14176         echo checksum is "$cksum"
14177         echo "$cksum" |md5sum -c --quiet || error "file differs"
14178
14179         rm -rf $DIR/$tfile
14180 }
14181 run_test 207b "can refresh layout at open"
14182
14183 test_208() {
14184         # FIXME: in this test suite, only RD lease is used. This is okay
14185         # for now as only exclusive open is supported. After generic lease
14186         # is done, this test suite should be revised. - Jinshan
14187
14188         remote_mds_nodsh && skip "remote MDS with nodsh"
14189         [[ $MDS1_VERSION -ge $(version_code 2.4.52) ]] ||
14190                 skip "Need MDS version at least 2.4.52"
14191
14192         echo "==== test 1: verify get lease work"
14193         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
14194
14195         echo "==== test 2: verify lease can be broken by upcoming open"
14196         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
14197         local PID=$!
14198         sleep 1
14199
14200         $MULTIOP $DIR/$tfile oO_RDONLY:c
14201         kill -USR1 $PID && wait $PID || error "break lease error"
14202
14203         echo "==== test 3: verify lease can't be granted if an open already exists"
14204         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
14205         local PID=$!
14206         sleep 1
14207
14208         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
14209         kill -USR1 $PID && wait $PID || error "open file error"
14210
14211         echo "==== test 4: lease can sustain over recovery"
14212         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
14213         PID=$!
14214         sleep 1
14215
14216         fail mds1
14217
14218         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
14219
14220         echo "==== test 5: lease broken can't be regained by replay"
14221         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
14222         PID=$!
14223         sleep 1
14224
14225         # open file to break lease and then recovery
14226         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
14227         fail mds1
14228
14229         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
14230
14231         rm -f $DIR/$tfile
14232 }
14233 run_test 208 "Exclusive open"
14234
14235 test_209() {
14236         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
14237                 skip_env "must have disp_stripe"
14238
14239         touch $DIR/$tfile
14240         sync; sleep 5; sync;
14241
14242         echo 3 > /proc/sys/vm/drop_caches
14243         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
14244
14245         # open/close 500 times
14246         for i in $(seq 500); do
14247                 cat $DIR/$tfile
14248         done
14249
14250         echo 3 > /proc/sys/vm/drop_caches
14251         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
14252
14253         echo "before: $req_before, after: $req_after"
14254         [ $((req_after - req_before)) -ge 300 ] &&
14255                 error "open/close requests are not freed"
14256         return 0
14257 }
14258 run_test 209 "read-only open/close requests should be freed promptly"
14259
14260 test_212() {
14261         size=`date +%s`
14262         size=$((size % 8192 + 1))
14263         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
14264         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
14265         rm -f $DIR/f212 $DIR/f212.xyz
14266 }
14267 run_test 212 "Sendfile test ============================================"
14268
14269 test_213() {
14270         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
14271         cancel_lru_locks osc
14272         lctl set_param fail_loc=0x8000040f
14273         # generate a read lock
14274         cat $DIR/$tfile > /dev/null
14275         # write to the file, it will try to cancel the above read lock.
14276         cat /etc/hosts >> $DIR/$tfile
14277 }
14278 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
14279
14280 test_214() { # for bug 20133
14281         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
14282         for (( i=0; i < 340; i++ )) ; do
14283                 touch $DIR/$tdir/d214c/a$i
14284         done
14285
14286         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
14287         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
14288         ls $DIR/d214c || error "ls $DIR/d214c failed"
14289         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
14290         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
14291 }
14292 run_test 214 "hash-indexed directory test - bug 20133"
14293
14294 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
14295 create_lnet_proc_files() {
14296         lctl get_param -n $1 >$TMP/lnet_$1.sys || error "cannot read lnet.$1"
14297 }
14298
14299 # counterpart of create_lnet_proc_files
14300 remove_lnet_proc_files() {
14301         rm -f $TMP/lnet_$1.sys
14302 }
14303
14304 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
14305 # 3rd arg as regexp for body
14306 check_lnet_proc_stats() {
14307         local l=$(cat "$TMP/lnet_$1" |wc -l)
14308         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
14309
14310         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
14311 }
14312
14313 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
14314 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
14315 # optional and can be regexp for 2nd line (lnet.routes case)
14316 check_lnet_proc_entry() {
14317         local blp=2          # blp stands for 'position of 1st line of body'
14318         [ -z "$5" ] || blp=3 # lnet.routes case
14319
14320         local l=$(cat "$TMP/lnet_$1" |wc -l)
14321         # subtracting one from $blp because the body can be empty
14322         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
14323
14324         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
14325                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
14326
14327         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
14328                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
14329
14330         # bail out if any unexpected line happened
14331         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
14332         [ "$?" != 0 ] || error "$2 misformatted"
14333 }
14334
14335 test_215() { # for bugs 18102, 21079, 21517
14336         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14337
14338         local N='(0|[1-9][0-9]*)'       # non-negative numeric
14339         local P='[1-9][0-9]*'           # positive numeric
14340         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
14341         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
14342         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
14343         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
14344
14345         local L1 # regexp for 1st line
14346         local L2 # regexp for 2nd line (optional)
14347         local BR # regexp for the rest (body)
14348
14349         # lnet.stats should look as 11 space-separated non-negative numerics
14350         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
14351         create_lnet_proc_files "stats"
14352         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
14353         remove_lnet_proc_files "stats"
14354
14355         # lnet.routes should look like this:
14356         # Routing disabled/enabled
14357         # net hops priority state router
14358         # where net is a string like tcp0, hops > 0, priority >= 0,
14359         # state is up/down,
14360         # router is a string like 192.168.1.1@tcp2
14361         L1="^Routing (disabled|enabled)$"
14362         L2="^net +hops +priority +state +router$"
14363         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
14364         create_lnet_proc_files "routes"
14365         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
14366         remove_lnet_proc_files "routes"
14367
14368         # lnet.routers should look like this:
14369         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
14370         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
14371         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
14372         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
14373         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
14374         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
14375         create_lnet_proc_files "routers"
14376         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
14377         remove_lnet_proc_files "routers"
14378
14379         # lnet.peers should look like this:
14380         # nid refs state last max rtr min tx min queue
14381         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
14382         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
14383         # numeric (0 or >0 or <0), queue >= 0.
14384         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
14385         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
14386         create_lnet_proc_files "peers"
14387         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
14388         remove_lnet_proc_files "peers"
14389
14390         # lnet.buffers  should look like this:
14391         # pages count credits min
14392         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
14393         L1="^pages +count +credits +min$"
14394         BR="^ +$N +$N +$I +$I$"
14395         create_lnet_proc_files "buffers"
14396         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
14397         remove_lnet_proc_files "buffers"
14398
14399         # lnet.nis should look like this:
14400         # nid status alive refs peer rtr max tx min
14401         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
14402         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
14403         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
14404         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
14405         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
14406         create_lnet_proc_files "nis"
14407         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
14408         remove_lnet_proc_files "nis"
14409
14410         # can we successfully write to lnet.stats?
14411         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
14412 }
14413 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
14414
14415 test_216() { # bug 20317
14416         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14417         remote_ost_nodsh && skip "remote OST with nodsh"
14418
14419         local node
14420         local facets=$(get_facets OST)
14421         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
14422
14423         save_lustre_params client "osc.*.contention_seconds" > $p
14424         save_lustre_params $facets \
14425                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
14426         save_lustre_params $facets \
14427                 "ldlm.namespaces.filter-*.contended_locks" >> $p
14428         save_lustre_params $facets \
14429                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
14430         clear_stats osc.*.osc_stats
14431
14432         # agressive lockless i/o settings
14433         do_nodes $(comma_list $(osts_nodes)) \
14434                 "lctl set_param -n ldlm.namespaces.*.max_nolock_bytes=2000000 \
14435                         ldlm.namespaces.filter-*.contended_locks=0 \
14436                         ldlm.namespaces.filter-*.contention_seconds=60"
14437         lctl set_param -n osc.*.contention_seconds=60
14438
14439         $DIRECTIO write $DIR/$tfile 0 10 4096
14440         $CHECKSTAT -s 40960 $DIR/$tfile
14441
14442         # disable lockless i/o
14443         do_nodes $(comma_list $(osts_nodes)) \
14444                 "lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes=0 \
14445                         ldlm.namespaces.filter-*.contended_locks=32 \
14446                         ldlm.namespaces.filter-*.contention_seconds=0"
14447         lctl set_param -n osc.*.contention_seconds=0
14448         clear_stats osc.*.osc_stats
14449
14450         dd if=/dev/zero of=$DIR/$tfile count=0
14451         $CHECKSTAT -s 0 $DIR/$tfile
14452
14453         restore_lustre_params <$p
14454         rm -f $p
14455         rm $DIR/$tfile
14456 }
14457 run_test 216 "check lockless direct write updates file size and kms correctly"
14458
14459 test_217() { # bug 22430
14460         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14461
14462         local node
14463         local nid
14464
14465         for node in $(nodes_list); do
14466                 nid=$(host_nids_address $node $NETTYPE)
14467                 if [[ $nid = *-* ]] ; then
14468                         echo "lctl ping $(h2nettype $nid)"
14469                         lctl ping $(h2nettype $nid)
14470                 else
14471                         echo "skipping $node (no hyphen detected)"
14472                 fi
14473         done
14474 }
14475 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
14476
14477 test_218() {
14478        # do directio so as not to populate the page cache
14479        log "creating a 10 Mb file"
14480        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
14481        log "starting reads"
14482        dd if=$DIR/$tfile of=/dev/null bs=4096 &
14483        log "truncating the file"
14484        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
14485        log "killing dd"
14486        kill %+ || true # reads might have finished
14487        echo "wait until dd is finished"
14488        wait
14489        log "removing the temporary file"
14490        rm -rf $DIR/$tfile || error "tmp file removal failed"
14491 }
14492 run_test 218 "parallel read and truncate should not deadlock"
14493
14494 test_219() {
14495         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14496
14497         # write one partial page
14498         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
14499         # set no grant so vvp_io_commit_write will do sync write
14500         $LCTL set_param fail_loc=0x411
14501         # write a full page at the end of file
14502         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
14503
14504         $LCTL set_param fail_loc=0
14505         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
14506         $LCTL set_param fail_loc=0x411
14507         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
14508
14509         # LU-4201
14510         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
14511         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
14512 }
14513 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
14514
14515 test_220() { #LU-325
14516         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14517         remote_ost_nodsh && skip "remote OST with nodsh"
14518         remote_mds_nodsh && skip "remote MDS with nodsh"
14519         remote_mgs_nodsh && skip "remote MGS with nodsh"
14520
14521         local OSTIDX=0
14522
14523         # create on MDT0000 so the last_id and next_id are correct
14524         mkdir $DIR/$tdir
14525         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
14526         OST=${OST%_UUID}
14527
14528         # on the mdt's osc
14529         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
14530         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
14531                         osc.$mdtosc_proc1.prealloc_last_id)
14532         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
14533                         osc.$mdtosc_proc1.prealloc_next_id)
14534
14535         $LFS df -i
14536
14537         if ! combined_mgs_mds ; then
14538                 mount_mgs_client
14539         fi
14540
14541         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
14542         #define OBD_FAIL_OST_ENOINO              0x229
14543         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
14544         create_pool $FSNAME.$TESTNAME || return 1
14545         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
14546
14547         $LFS setstripe $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
14548
14549         MDSOBJS=$((last_id - next_id))
14550         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
14551
14552         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
14553         echo "OST still has $count kbytes free"
14554
14555         echo "create $MDSOBJS files @next_id..."
14556         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
14557
14558         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
14559                         osc.$mdtosc_proc1.prealloc_last_id)
14560         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
14561                         osc.$mdtosc_proc1.prealloc_next_id)
14562
14563         echo "after creation, last_id=$last_id2, next_id=$next_id2"
14564         $LFS df -i
14565
14566         echo "cleanup..."
14567
14568         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
14569         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
14570
14571         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST ||
14572                 error "$LCTL pool_remove $FSNAME.$TESTNAME $OST failed"
14573         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
14574                 error "$LCTL pool_destroy $FSNAME.$TESTNAME failed"
14575         echo "unlink $MDSOBJS files @$next_id..."
14576         unlinkmany $DIR/$tdir/f $MDSOBJS || error "unlinkmany failed"
14577
14578         if ! combined_mgs_mds ; then
14579                 umount_mgs_client
14580         fi
14581 }
14582 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
14583
14584 test_221() {
14585         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14586
14587         dd if=`which date` of=$MOUNT/date oflag=sync
14588         chmod +x $MOUNT/date
14589
14590         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
14591         $LCTL set_param fail_loc=0x80001401
14592
14593         $MOUNT/date > /dev/null
14594         rm -f $MOUNT/date
14595 }
14596 run_test 221 "make sure fault and truncate race to not cause OOM"
14597
14598 test_222a () {
14599         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14600
14601         rm -rf $DIR/$tdir
14602         test_mkdir $DIR/$tdir
14603         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14604         createmany -o $DIR/$tdir/$tfile 10
14605         cancel_lru_locks mdc
14606         cancel_lru_locks osc
14607         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
14608         $LCTL set_param fail_loc=0x31a
14609         ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
14610         $LCTL set_param fail_loc=0
14611         rm -r $DIR/$tdir
14612 }
14613 run_test 222a "AGL for ls should not trigger CLIO lock failure"
14614
14615 test_222b () {
14616         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14617
14618         rm -rf $DIR/$tdir
14619         test_mkdir $DIR/$tdir
14620         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14621         createmany -o $DIR/$tdir/$tfile 10
14622         cancel_lru_locks mdc
14623         cancel_lru_locks osc
14624         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
14625         $LCTL set_param fail_loc=0x31a
14626         rm -r $DIR/$tdir || error "AGL for rmdir failed"
14627         $LCTL set_param fail_loc=0
14628 }
14629 run_test 222b "AGL for rmdir should not trigger CLIO lock failure"
14630
14631 test_223 () {
14632         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14633
14634         rm -rf $DIR/$tdir
14635         test_mkdir $DIR/$tdir
14636         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14637         createmany -o $DIR/$tdir/$tfile 10
14638         cancel_lru_locks mdc
14639         cancel_lru_locks osc
14640         #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
14641         $LCTL set_param fail_loc=0x31b
14642         ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
14643         $LCTL set_param fail_loc=0
14644         rm -r $DIR/$tdir
14645 }
14646 run_test 223 "osc reenqueue if without AGL lock granted ======================="
14647
14648 test_224a() { # LU-1039, MRP-303
14649         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14650
14651         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
14652         $LCTL set_param fail_loc=0x508
14653         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
14654         $LCTL set_param fail_loc=0
14655         df $DIR
14656 }
14657 run_test 224a "Don't panic on bulk IO failure"
14658
14659 test_224b() { # LU-1039, MRP-303
14660         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14661
14662         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
14663         cancel_lru_locks osc
14664         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
14665         $LCTL set_param fail_loc=0x515
14666         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
14667         $LCTL set_param fail_loc=0
14668         df $DIR
14669 }
14670 run_test 224b "Don't panic on bulk IO failure"
14671
14672 test_224c() { # LU-6441
14673         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14674         remote_mds_nodsh && skip "remote MDS with nodsh"
14675
14676         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
14677         save_writethrough $p
14678         set_cache writethrough on
14679
14680         local pages_per_rpc=$($LCTL get_param \
14681                                 osc.*.max_pages_per_rpc)
14682         local at_max=$($LCTL get_param -n at_max)
14683         local timeout=$($LCTL get_param -n timeout)
14684         local test_at="at_max"
14685         local param_at="$FSNAME.sys.at_max"
14686         local test_timeout="timeout"
14687         local param_timeout="$FSNAME.sys.timeout"
14688
14689         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
14690
14691         set_persistent_param_and_check client "$test_at" "$param_at" 0
14692         set_persistent_param_and_check client "$test_timeout" "$param_timeout" 5
14693
14694         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3 0x520
14695         do_facet ost1 "$LCTL set_param fail_loc=0x520"
14696         $LFS setstripe -c 1 -i 0 $DIR/$tfile
14697         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
14698         sync
14699         do_facet ost1 "$LCTL set_param fail_loc=0"
14700
14701         set_persistent_param_and_check client "$test_at" "$param_at" $at_max
14702         set_persistent_param_and_check client "$test_timeout" "$param_timeout" \
14703                 $timeout
14704
14705         $LCTL set_param -n $pages_per_rpc
14706         restore_lustre_params < $p
14707         rm -f $p
14708 }
14709 run_test 224c "Don't hang if one of md lost during large bulk RPC"
14710
14711 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
14712 test_225a () {
14713         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14714         if [ -z ${MDSSURVEY} ]; then
14715                 skip_env "mds-survey not found"
14716         fi
14717         [ $MDS1_VERSION -ge $(version_code 2.2.51) ] ||
14718                 skip "Need MDS version at least 2.2.51"
14719
14720         local mds=$(facet_host $SINGLEMDS)
14721         local target=$(do_nodes $mds 'lctl dl' |
14722                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
14723
14724         local cmd1="file_count=1000 thrhi=4"
14725         local cmd2="dir_count=2 layer=mdd stripe_count=0"
14726         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
14727         local cmd="$cmd1 $cmd2 $cmd3"
14728
14729         rm -f ${TMP}/mds_survey*
14730         echo + $cmd
14731         eval $cmd || error "mds-survey with zero-stripe failed"
14732         cat ${TMP}/mds_survey*
14733         rm -f ${TMP}/mds_survey*
14734 }
14735 run_test 225a "Metadata survey sanity with zero-stripe"
14736
14737 test_225b () {
14738         if [ -z ${MDSSURVEY} ]; then
14739                 skip_env "mds-survey not found"
14740         fi
14741         [ $MDS1_VERSION -ge $(version_code 2.2.51) ] ||
14742                 skip "Need MDS version at least 2.2.51"
14743         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14744         remote_mds_nodsh && skip "remote MDS with nodsh"
14745         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
14746                 skip_env "Need to mount OST to test"
14747         fi
14748
14749         local mds=$(facet_host $SINGLEMDS)
14750         local target=$(do_nodes $mds 'lctl dl' |
14751                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
14752
14753         local cmd1="file_count=1000 thrhi=4"
14754         local cmd2="dir_count=2 layer=mdd stripe_count=1"
14755         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
14756         local cmd="$cmd1 $cmd2 $cmd3"
14757
14758         rm -f ${TMP}/mds_survey*
14759         echo + $cmd
14760         eval $cmd || error "mds-survey with stripe_count failed"
14761         cat ${TMP}/mds_survey*
14762         rm -f ${TMP}/mds_survey*
14763 }
14764 run_test 225b "Metadata survey sanity with stripe_count = 1"
14765
14766 mcreate_path2fid () {
14767         local mode=$1
14768         local major=$2
14769         local minor=$3
14770         local name=$4
14771         local desc=$5
14772         local path=$DIR/$tdir/$name
14773         local fid
14774         local rc
14775         local fid_path
14776
14777         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
14778                 error "cannot create $desc"
14779
14780         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
14781         rc=$?
14782         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
14783
14784         fid_path=$($LFS fid2path $MOUNT $fid)
14785         rc=$?
14786         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
14787
14788         [ "$path" == "$fid_path" ] ||
14789                 error "fid2path returned $fid_path, expected $path"
14790
14791         echo "pass with $path and $fid"
14792 }
14793
14794 test_226a () {
14795         rm -rf $DIR/$tdir
14796         mkdir -p $DIR/$tdir
14797
14798         mcreate_path2fid 0010666 0 0 fifo "FIFO"
14799         mcreate_path2fid 0020666 1 3 null "character special file (null)"
14800         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
14801         mcreate_path2fid 0040666 0 0 dir "directory"
14802         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
14803         mcreate_path2fid 0100666 0 0 file "regular file"
14804         mcreate_path2fid 0120666 0 0 link "symbolic link"
14805         mcreate_path2fid 0140666 0 0 sock "socket"
14806 }
14807 run_test 226a "call path2fid and fid2path on files of all type"
14808
14809 test_226b () {
14810         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14811
14812         local MDTIDX=1
14813
14814         rm -rf $DIR/$tdir
14815         mkdir -p $DIR/$tdir
14816         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
14817                 error "create remote directory failed"
14818         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
14819         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
14820                                 "character special file (null)"
14821         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
14822                                 "character special file (no device)"
14823         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
14824         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
14825                                 "block special file (loop)"
14826         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
14827         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
14828         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
14829 }
14830 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
14831
14832 # LU-1299 Executing or running ldd on a truncated executable does not
14833 # cause an out-of-memory condition.
14834 test_227() {
14835         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14836         [ -z "$(which ldd)" ] && skip_env "should have ldd tool"
14837
14838         dd if=$(which date) of=$MOUNT/date bs=1k count=1
14839         chmod +x $MOUNT/date
14840
14841         $MOUNT/date > /dev/null
14842         ldd $MOUNT/date > /dev/null
14843         rm -f $MOUNT/date
14844 }
14845 run_test 227 "running truncated executable does not cause OOM"
14846
14847 # LU-1512 try to reuse idle OI blocks
14848 test_228a() {
14849         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14850         remote_mds_nodsh && skip "remote MDS with nodsh"
14851         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
14852
14853         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14854         local myDIR=$DIR/$tdir
14855
14856         mkdir -p $myDIR
14857         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14858         $LCTL set_param fail_loc=0x80001002
14859         createmany -o $myDIR/t- 10000
14860         $LCTL set_param fail_loc=0
14861         # The guard is current the largest FID holder
14862         touch $myDIR/guard
14863         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14864                     tr -d '[')
14865         local IDX=$(($SEQ % 64))
14866
14867         do_facet $SINGLEMDS sync
14868         # Make sure journal flushed.
14869         sleep 6
14870         local blk1=$(do_facet $SINGLEMDS \
14871                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14872                      grep Blockcount | awk '{print $4}')
14873
14874         # Remove old files, some OI blocks will become idle.
14875         unlinkmany $myDIR/t- 10000
14876         # Create new files, idle OI blocks should be reused.
14877         createmany -o $myDIR/t- 2000
14878         do_facet $SINGLEMDS sync
14879         # Make sure journal flushed.
14880         sleep 6
14881         local blk2=$(do_facet $SINGLEMDS \
14882                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14883                      grep Blockcount | awk '{print $4}')
14884
14885         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14886 }
14887 run_test 228a "try to reuse idle OI blocks"
14888
14889 test_228b() {
14890         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14891         remote_mds_nodsh && skip "remote MDS with nodsh"
14892         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
14893
14894         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14895         local myDIR=$DIR/$tdir
14896
14897         mkdir -p $myDIR
14898         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14899         $LCTL set_param fail_loc=0x80001002
14900         createmany -o $myDIR/t- 10000
14901         $LCTL set_param fail_loc=0
14902         # The guard is current the largest FID holder
14903         touch $myDIR/guard
14904         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14905                     tr -d '[')
14906         local IDX=$(($SEQ % 64))
14907
14908         do_facet $SINGLEMDS sync
14909         # Make sure journal flushed.
14910         sleep 6
14911         local blk1=$(do_facet $SINGLEMDS \
14912                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14913                      grep Blockcount | awk '{print $4}')
14914
14915         # Remove old files, some OI blocks will become idle.
14916         unlinkmany $myDIR/t- 10000
14917
14918         # stop the MDT
14919         stop $SINGLEMDS || error "Fail to stop MDT."
14920         # remount the MDT
14921         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
14922
14923         df $MOUNT || error "Fail to df."
14924         # Create new files, idle OI blocks should be reused.
14925         createmany -o $myDIR/t- 2000
14926         do_facet $SINGLEMDS sync
14927         # Make sure journal flushed.
14928         sleep 6
14929         local blk2=$(do_facet $SINGLEMDS \
14930                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14931                      grep Blockcount | awk '{print $4}')
14932
14933         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14934 }
14935 run_test 228b "idle OI blocks can be reused after MDT restart"
14936
14937 #LU-1881
14938 test_228c() {
14939         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14940         remote_mds_nodsh && skip "remote MDS with nodsh"
14941         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
14942
14943         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14944         local myDIR=$DIR/$tdir
14945
14946         mkdir -p $myDIR
14947         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14948         $LCTL set_param fail_loc=0x80001002
14949         # 20000 files can guarantee there are index nodes in the OI file
14950         createmany -o $myDIR/t- 20000
14951         $LCTL set_param fail_loc=0
14952         # The guard is current the largest FID holder
14953         touch $myDIR/guard
14954         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14955                     tr -d '[')
14956         local IDX=$(($SEQ % 64))
14957
14958         do_facet $SINGLEMDS sync
14959         # Make sure journal flushed.
14960         sleep 6
14961         local blk1=$(do_facet $SINGLEMDS \
14962                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14963                      grep Blockcount | awk '{print $4}')
14964
14965         # Remove old files, some OI blocks will become idle.
14966         unlinkmany $myDIR/t- 20000
14967         rm -f $myDIR/guard
14968         # The OI file should become empty now
14969
14970         # Create new files, idle OI blocks should be reused.
14971         createmany -o $myDIR/t- 2000
14972         do_facet $SINGLEMDS sync
14973         # Make sure journal flushed.
14974         sleep 6
14975         local blk2=$(do_facet $SINGLEMDS \
14976                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14977                      grep Blockcount | awk '{print $4}')
14978
14979         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14980 }
14981 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
14982
14983 test_229() { # LU-2482, LU-3448
14984         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14985         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
14986         [ $MDS1_VERSION -lt $(version_code 2.4.53) ] &&
14987                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53"
14988
14989         rm -f $DIR/$tfile
14990
14991         # Create a file with a released layout and stripe count 2.
14992         $MULTIOP $DIR/$tfile H2c ||
14993                 error "failed to create file with released layout"
14994
14995         $LFS getstripe -v $DIR/$tfile
14996
14997         local pattern=$($LFS getstripe -L $DIR/$tfile)
14998         [ X"$pattern" = X"released" ] || error "pattern error ($pattern)"
14999
15000         local stripe_count=$($LFS getstripe -c $DIR/$tfile) ||
15001                 error "getstripe"
15002         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
15003         stat $DIR/$tfile || error "failed to stat released file"
15004
15005         chown $RUNAS_ID $DIR/$tfile ||
15006                 error "chown $RUNAS_ID $DIR/$tfile failed"
15007
15008         chgrp $RUNAS_ID $DIR/$tfile ||
15009                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
15010
15011         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
15012         rm $DIR/$tfile || error "failed to remove released file"
15013 }
15014 run_test 229 "getstripe/stat/rm/attr changes work on released files"
15015
15016 test_230a() {
15017         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15018         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15019         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15020                 skip "Need MDS version at least 2.11.52"
15021
15022         local MDTIDX=1
15023
15024         test_mkdir $DIR/$tdir
15025         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
15026         local mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230_local)
15027         [ $mdt_idx -ne 0 ] &&
15028                 error "create local directory on wrong MDT $mdt_idx"
15029
15030         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
15031                         error "create remote directory failed"
15032         local mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230)
15033         [ $mdt_idx -ne $MDTIDX ] &&
15034                 error "create remote directory on wrong MDT $mdt_idx"
15035
15036         createmany -o $DIR/$tdir/test_230/t- 10 ||
15037                 error "create files on remote directory failed"
15038         mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230/t-0)
15039         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
15040         rm -r $DIR/$tdir || error "unlink remote directory failed"
15041 }
15042 run_test 230a "Create remote directory and files under the remote directory"
15043
15044 test_230b() {
15045         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15046         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15047         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15048                 skip "Need MDS version at least 2.11.52"
15049
15050         local MDTIDX=1
15051         local mdt_index
15052         local i
15053         local file
15054         local pid
15055         local stripe_count
15056         local migrate_dir=$DIR/$tdir/migrate_dir
15057         local other_dir=$DIR/$tdir/other_dir
15058
15059         test_mkdir $DIR/$tdir
15060         test_mkdir -i0 -c1 $migrate_dir
15061         test_mkdir -i0 -c1 $other_dir
15062         for ((i=0; i<10; i++)); do
15063                 mkdir -p $migrate_dir/dir_${i}
15064                 createmany -o $migrate_dir/dir_${i}/f 10 ||
15065                         error "create files under remote dir failed $i"
15066         done
15067
15068         cp /etc/passwd $migrate_dir/$tfile
15069         cp /etc/passwd $other_dir/$tfile
15070         chattr +SAD $migrate_dir
15071         chattr +SAD $migrate_dir/$tfile
15072
15073         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
15074         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
15075         local old_dir_mode=$(stat -c%f $migrate_dir)
15076         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
15077
15078         mkdir -p $migrate_dir/dir_default_stripe2
15079         $LFS setstripe -c 2 $migrate_dir/dir_default_stripe2
15080         $LFS setstripe -c 2 $migrate_dir/${tfile}_stripe2
15081
15082         mkdir -p $other_dir
15083         ln $migrate_dir/$tfile $other_dir/luna
15084         ln $migrate_dir/$tfile $migrate_dir/sofia
15085         ln $other_dir/$tfile $migrate_dir/david
15086         ln -s $migrate_dir/$tfile $other_dir/zachary
15087         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
15088         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
15089
15090         $LFS migrate -m $MDTIDX $migrate_dir ||
15091                 error "fails on migrating remote dir to MDT1"
15092
15093         echo "migratate to MDT1, then checking.."
15094         for ((i = 0; i < 10; i++)); do
15095                 for file in $(find $migrate_dir/dir_${i}); do
15096                         mdt_index=$($LFS getstripe -m $file)
15097                         [ $mdt_index == $MDTIDX ] ||
15098                                 error "$file is not on MDT${MDTIDX}"
15099                 done
15100         done
15101
15102         # the multiple link file should still in MDT0
15103         mdt_index=$($LFS getstripe -m $migrate_dir/$tfile)
15104         [ $mdt_index == 0 ] ||
15105                 error "$file is not on MDT${MDTIDX}"
15106
15107         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
15108         [ "$old_dir_flag" = "$new_dir_flag" ] ||
15109                 error " expect $old_dir_flag get $new_dir_flag"
15110
15111         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
15112         [ "$old_file_flag" = "$new_file_flag" ] ||
15113                 error " expect $old_file_flag get $new_file_flag"
15114
15115         local new_dir_mode=$(stat -c%f $migrate_dir)
15116         [ "$old_dir_mode" = "$new_dir_mode" ] ||
15117                 error "expect mode $old_dir_mode get $new_dir_mode"
15118
15119         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
15120         [ "$old_file_mode" = "$new_file_mode" ] ||
15121                 error "expect mode $old_file_mode get $new_file_mode"
15122
15123         diff /etc/passwd $migrate_dir/$tfile ||
15124                 error "$tfile different after migration"
15125
15126         diff /etc/passwd $other_dir/luna ||
15127                 error "luna different after migration"
15128
15129         diff /etc/passwd $migrate_dir/sofia ||
15130                 error "sofia different after migration"
15131
15132         diff /etc/passwd $migrate_dir/david ||
15133                 error "david different after migration"
15134
15135         diff /etc/passwd $other_dir/zachary ||
15136                 error "zachary different after migration"
15137
15138         diff /etc/passwd $migrate_dir/${tfile}_ln ||
15139                 error "${tfile}_ln different after migration"
15140
15141         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
15142                 error "${tfile}_ln_other different after migration"
15143
15144         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
15145         [ $stripe_count = 2 ] ||
15146                 error "dir strpe_count $d != 2 after migration."
15147
15148         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
15149         [ $stripe_count = 2 ] ||
15150                 error "file strpe_count $d != 2 after migration."
15151
15152         #migrate back to MDT0
15153         MDTIDX=0
15154
15155         $LFS migrate -m $MDTIDX $migrate_dir ||
15156                 error "fails on migrating remote dir to MDT0"
15157
15158         echo "migrate back to MDT0, checking.."
15159         for file in $(find $migrate_dir); do
15160                 mdt_index=$($LFS getstripe -m $file)
15161                 [ $mdt_index == $MDTIDX ] ||
15162                         error "$file is not on MDT${MDTIDX}"
15163         done
15164
15165         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
15166         [ "$old_dir_flag" = "$new_dir_flag" ] ||
15167                 error " expect $old_dir_flag get $new_dir_flag"
15168
15169         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
15170         [ "$old_file_flag" = "$new_file_flag" ] ||
15171                 error " expect $old_file_flag get $new_file_flag"
15172
15173         local new_dir_mode=$(stat -c%f $migrate_dir)
15174         [ "$old_dir_mode" = "$new_dir_mode" ] ||
15175                 error "expect mode $old_dir_mode get $new_dir_mode"
15176
15177         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
15178         [ "$old_file_mode" = "$new_file_mode" ] ||
15179                 error "expect mode $old_file_mode get $new_file_mode"
15180
15181         diff /etc/passwd ${migrate_dir}/$tfile ||
15182                 error "$tfile different after migration"
15183
15184         diff /etc/passwd ${other_dir}/luna ||
15185                 error "luna different after migration"
15186
15187         diff /etc/passwd ${migrate_dir}/sofia ||
15188                 error "sofia different after migration"
15189
15190         diff /etc/passwd ${other_dir}/zachary ||
15191                 error "zachary different after migration"
15192
15193         diff /etc/passwd $migrate_dir/${tfile}_ln ||
15194                 error "${tfile}_ln different after migration"
15195
15196         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
15197                 error "${tfile}_ln_other different after migration"
15198
15199         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
15200         [ $stripe_count = 2 ] ||
15201                 error "dir strpe_count $d != 2 after migration."
15202
15203         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
15204         [ $stripe_count = 2 ] ||
15205                 error "file strpe_count $d != 2 after migration."
15206
15207         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15208 }
15209 run_test 230b "migrate directory"
15210
15211 test_230c() {
15212         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15213         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15214         remote_mds_nodsh && skip "remote MDS with nodsh"
15215         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15216                 skip "Need MDS version at least 2.11.52"
15217
15218         local MDTIDX=1
15219         local total=3
15220         local mdt_index
15221         local file
15222         local migrate_dir=$DIR/$tdir/migrate_dir
15223
15224         #If migrating directory fails in the middle, all entries of
15225         #the directory is still accessiable.
15226         test_mkdir $DIR/$tdir
15227         test_mkdir -i0 -c1 $migrate_dir
15228         test_mkdir -i1 -c1 $DIR/$tdir/remote_dir
15229         stat $migrate_dir
15230         createmany -o $migrate_dir/f $total ||
15231                 error "create files under ${migrate_dir} failed"
15232
15233         # fail after migrating top dir, and this will fail only once, so the
15234         # first sub file migration will fail (currently f3), others succeed.
15235         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
15236         do_facet mds1 lctl set_param fail_loc=0x1801
15237         local t=$(ls $migrate_dir | wc -l)
15238         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
15239                 error "migrate should fail"
15240         local u=$(ls $migrate_dir | wc -l)
15241         [ "$u" == "$t" ] || error "$u != $t during migration"
15242
15243         # add new dir/file should succeed
15244         mkdir $migrate_dir/dir ||
15245                 error "mkdir failed under migrating directory"
15246         touch $migrate_dir/file ||
15247                 error "create file failed under migrating directory"
15248
15249         # add file with existing name should fail
15250         for file in $migrate_dir/f*; do
15251                 stat $file > /dev/null || error "stat $file failed"
15252                 $OPENFILE -f O_CREAT:O_EXCL $file &&
15253                         error "open(O_CREAT|O_EXCL) $file should fail"
15254                 $MULTIOP $file m && error "create $file should fail"
15255                 touch $DIR/$tdir/remote_dir/$tfile ||
15256                         error "touch $tfile failed"
15257                 ln $DIR/$tdir/remote_dir/$tfile $file &&
15258                         error "link $file should fail"
15259                 mdt_index=$($LFS getstripe -m $file)
15260                 if [ $mdt_index == 0 ]; then
15261                         # file failed to migrate is not allowed to rename to
15262                         mv $DIR/$tdir/remote_dir/$tfile $file &&
15263                                 error "rename to $file should fail"
15264                 else
15265                         mv $DIR/$tdir/remote_dir/$tfile $file ||
15266                                 error "rename to $file failed"
15267                 fi
15268                 echo hello >> $file || error "write $file failed"
15269         done
15270
15271         # resume migration with different options should fail
15272         $LFS migrate -m 0 $migrate_dir &&
15273                 error "migrate -m 0 $migrate_dir should fail"
15274
15275         $LFS migrate -m $MDTIDX -c 2 $migrate_dir &&
15276                 error "migrate -c 2 $migrate_dir should fail"
15277
15278         # resume migration should succeed
15279         $LFS migrate -m $MDTIDX $migrate_dir ||
15280                 error "migrate $migrate_dir failed"
15281
15282         echo "Finish migration, then checking.."
15283         for file in $(find $migrate_dir); do
15284                 mdt_index=$($LFS getstripe -m $file)
15285                 [ $mdt_index == $MDTIDX ] ||
15286                         error "$file is not on MDT${MDTIDX}"
15287         done
15288
15289         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15290 }
15291 run_test 230c "check directory accessiblity if migration failed"
15292
15293 test_230d() {
15294         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15295         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15296         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15297                 skip "Need MDS version at least 2.11.52"
15298         # LU-11235
15299         [ "$mds1_FSTYPE" == "zfs" ] && skip "skip ZFS backend"
15300
15301         local migrate_dir=$DIR/$tdir/migrate_dir
15302         local old_index
15303         local new_index
15304         local old_count
15305         local new_count
15306         local new_hash
15307         local mdt_index
15308         local i
15309         local j
15310
15311         old_index=$((RANDOM % MDSCOUNT))
15312         old_count=$((MDSCOUNT - old_index))
15313         new_index=$((RANDOM % MDSCOUNT))
15314         new_count=$((MDSCOUNT - new_index))
15315         new_hash="all_char"
15316
15317         [ $old_count -gt 1 ] && old_count=$((old_count - RANDOM % old_count))
15318         [ $new_count -gt 1 ] && new_count=$((new_count - RANDOM % new_count))
15319
15320         test_mkdir $DIR/$tdir
15321         test_mkdir -i $old_index -c $old_count $migrate_dir
15322
15323         for ((i=0; i<100; i++)); do
15324                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
15325                 createmany -o $migrate_dir/dir_${i}/f 100 ||
15326                         error "create files under remote dir failed $i"
15327         done
15328
15329         echo -n "Migrate from MDT$old_index "
15330         [ $old_count -gt 1 ] && echo -n "... MDT$((old_index + old_count - 1)) "
15331         echo -n "to MDT$new_index"
15332         [ $new_count -gt 1 ] && echo -n " ... MDT$((new_index + new_count - 1))"
15333         echo
15334
15335         echo "$LFS migrate -m$new_index -c$new_count -H $new_hash $migrate_dir"
15336         $LFS migrate -m $new_index -c $new_count -H $new_hash $migrate_dir ||
15337                 error "migrate remote dir error"
15338
15339         echo "Finish migration, then checking.."
15340         for file in $(find $migrate_dir); do
15341                 mdt_index=$($LFS getstripe -m $file)
15342                 if [ $mdt_index -lt $new_index ] ||
15343                    [ $mdt_index -gt $((new_index + new_count - 1)) ]; then
15344                         error "$file is on MDT$mdt_index"
15345                 fi
15346         done
15347
15348         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15349 }
15350 run_test 230d "check migrate big directory"
15351
15352 test_230e() {
15353         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15354         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15355         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15356                 skip "Need MDS version at least 2.11.52"
15357
15358         local i
15359         local j
15360         local a_fid
15361         local b_fid
15362
15363         mkdir -p $DIR/$tdir
15364         mkdir $DIR/$tdir/migrate_dir
15365         mkdir $DIR/$tdir/other_dir
15366         touch $DIR/$tdir/migrate_dir/a
15367         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
15368         ls $DIR/$tdir/other_dir
15369
15370         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15371                 error "migrate dir fails"
15372
15373         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
15374         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
15375
15376         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15377         [ $mdt_index == 0 ] || error "a is not on MDT0"
15378
15379         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
15380                 error "migrate dir fails"
15381
15382         mdt_index=$($LFS getstripe -m $DIR/$tdir/other_dir)
15383         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
15384
15385         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15386         [ $mdt_index == 1 ] || error "a is not on MDT1"
15387
15388         mdt_index=$($LFS getstripe -m $DIR/$tdir/other_dir/b)
15389         [ $mdt_index == 1 ] || error "b is not on MDT1"
15390
15391         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
15392         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
15393
15394         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
15395
15396         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15397 }
15398 run_test 230e "migrate mulitple local link files"
15399
15400 test_230f() {
15401         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15402         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15403         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15404                 skip "Need MDS version at least 2.11.52"
15405
15406         local a_fid
15407         local ln_fid
15408
15409         mkdir -p $DIR/$tdir
15410         mkdir $DIR/$tdir/migrate_dir
15411         $LFS mkdir -i1 $DIR/$tdir/other_dir
15412         touch $DIR/$tdir/migrate_dir/a
15413         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
15414         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
15415         ls $DIR/$tdir/other_dir
15416
15417         # a should be migrated to MDT1, since no other links on MDT0
15418         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15419                 error "#1 migrate dir fails"
15420         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
15421         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
15422         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15423         [ $mdt_index == 1 ] || error "a is not on MDT1"
15424
15425         # a should stay on MDT1, because it is a mulitple link file
15426         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
15427                 error "#2 migrate dir fails"
15428         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15429         [ $mdt_index == 1 ] || error "a is not on MDT1"
15430
15431         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15432                 error "#3 migrate dir fails"
15433
15434         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
15435         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
15436         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
15437
15438         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
15439         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
15440
15441         # a should be migrated to MDT0, since no other links on MDT1
15442         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
15443                 error "#4 migrate dir fails"
15444         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15445         [ $mdt_index == 0 ] || error "a is not on MDT0"
15446
15447         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15448 }
15449 run_test 230f "migrate mulitple remote link files"
15450
15451 test_230g() {
15452         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15453         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15454         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15455                 skip "Need MDS version at least 2.11.52"
15456
15457         mkdir -p $DIR/$tdir/migrate_dir
15458
15459         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
15460                 error "migrating dir to non-exist MDT succeeds"
15461         true
15462 }
15463 run_test 230g "migrate dir to non-exist MDT"
15464
15465 test_230h() {
15466         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15467         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15468         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15469                 skip "Need MDS version at least 2.11.52"
15470
15471         local mdt_index
15472
15473         mkdir -p $DIR/$tdir/migrate_dir
15474
15475         $LFS migrate -m1 $DIR &&
15476                 error "migrating mountpoint1 should fail"
15477
15478         $LFS migrate -m1 $DIR/$tdir/.. &&
15479                 error "migrating mountpoint2 should fail"
15480
15481         # same as mv
15482         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. &&
15483                 error "migrating $tdir/migrate_dir/.. should fail"
15484
15485         true
15486 }
15487 run_test 230h "migrate .. and root"
15488
15489 test_230i() {
15490         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15491         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15492         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15493                 skip "Need MDS version at least 2.11.52"
15494
15495         mkdir -p $DIR/$tdir/migrate_dir
15496
15497         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
15498                 error "migration fails with a tailing slash"
15499
15500         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
15501                 error "migration fails with two tailing slashes"
15502 }
15503 run_test 230i "lfs migrate -m tolerates trailing slashes"
15504
15505 test_230j() {
15506         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
15507         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15508                 skip "Need MDS version at least 2.11.52"
15509
15510         $LFS mkdir -m 0 -c 1 $DIR/$tdir || error "mkdir $tdir failed"
15511         $LFS setstripe -E 1M -L mdt $DIR/$tdir/$tfile ||
15512                 error "create $tfile failed"
15513         cat /etc/passwd > $DIR/$tdir/$tfile
15514
15515         $LFS migrate -m 1 $DIR/$tdir
15516
15517         cmp /etc/passwd $DIR/$tdir/$tfile ||
15518                 error "DoM file mismatch after migration"
15519 }
15520 run_test 230j "DoM file data not changed after dir migration"
15521
15522 test_230k() {
15523         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs"
15524         [ $MDS1_VERSION -lt $(version_code 2.11.56) ] &&
15525                 skip "Need MDS version at least 2.11.56"
15526
15527         local total=20
15528         local files_on_starting_mdt=0
15529
15530         $LFS mkdir -i -1 -c 2 $DIR/$tdir || error "mkdir failed"
15531         $LFS getdirstripe $DIR/$tdir
15532         for i in $(seq $total); do
15533                 echo $((i*i - i)) > $DIR/$tdir/$tfile.$i || error "write failed"
15534                 [[ $($LFS getstripe -m $DIR/$tdir/$tfile.$i) -eq 0 ]] &&
15535                         files_on_starting_mdt=$((files_on_starting_mdt + 1))
15536         done
15537
15538         echo "$files_on_starting_mdt files on MDT0"
15539
15540         $LFS migrate -m 1,3 $DIR/$tdir || error "migrate -m 1,3 failed"
15541         $LFS getdirstripe $DIR/$tdir
15542
15543         files_on_starting_mdt=0
15544         for i in $(seq $total); do
15545                 $(echo $((i*i - i)) | cmp $DIR/$tdir/$tfile.$i -) ||
15546                         error "file $tfile.$i mismatch after migration"
15547                 [[ $($LFS getstripe -m $DIR/$tdir/$tfile.$i) -eq 1 ]] &&
15548                         files_on_starting_mdt=$((files_on_starting_mdt + 1))
15549         done
15550
15551         echo "$files_on_starting_mdt files on MDT1 after migration"
15552         [[ $files_on_starting_mdt -eq $total ]] && error "all files on MDT1"
15553
15554         $LFS migrate -m 0 -c 2 $DIR/$tdir || error "migrate -m 0 -c 2 failed"
15555         $LFS getdirstripe $DIR/$tdir
15556
15557         files_on_starting_mdt=0
15558         for i in $(seq $total); do
15559                 $(echo $((i*i - i)) | cmp $DIR/$tdir/$tfile.$i -) ||
15560                         error "file $tfile.$i mismatch after 2nd migration"
15561                 [[ $($LFS getstripe -m $DIR/$tdir/$tfile.$i) -eq 0 ]] &&
15562                         files_on_starting_mdt=$((files_on_starting_mdt + 1))
15563         done
15564
15565         echo "$files_on_starting_mdt files on MDT0 after 2nd migration"
15566         [[ $files_on_starting_mdt -eq $total ]] && error "all files on MDT0"
15567
15568         true
15569 }
15570 run_test 230k "file data not changed after dir migration"
15571
15572 test_230l() {
15573         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
15574         [ $MDS1_VERSION -lt $(version_code 2.11.56) ] &&
15575                 skip "Need MDS version at least 2.11.56"
15576
15577         $LFS mkdir -i 0 -c 1 $DIR/$tdir || error "mkdir failed"
15578         createmany -o $DIR/$tdir/f___________________________________ 1000 ||
15579                 error "create files under remote dir failed $i"
15580         $LFS migrate -m 1 $DIR/$tdir || error "migrate failed"
15581 }
15582 run_test 230l "readdir between MDTs won't crash"
15583
15584 test_231a()
15585 {
15586         # For simplicity this test assumes that max_pages_per_rpc
15587         # is the same across all OSCs
15588         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
15589         local bulk_size=$((max_pages * PAGE_SIZE))
15590         local brw_size=$(do_facet ost1 $LCTL get_param -n obdfilter.*.brw_size |
15591                                        head -n 1)
15592
15593         mkdir -p $DIR/$tdir
15594         $LFS setstripe -S ${brw_size}M $DIR/$tdir ||
15595                 error "failed to set stripe with -S ${brw_size}M option"
15596
15597         # clear the OSC stats
15598         $LCTL set_param osc.*.stats=0 &>/dev/null
15599         stop_writeback
15600
15601         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
15602         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
15603                 oflag=direct &>/dev/null || error "dd failed"
15604
15605         sync; sleep 1; sync # just to be safe
15606         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
15607         if [ x$nrpcs != "x1" ]; then
15608                 $LCTL get_param osc.*.stats
15609                 error "found $nrpcs ost_write RPCs, not 1 as expected"
15610         fi
15611
15612         start_writeback
15613         # Drop the OSC cache, otherwise we will read from it
15614         cancel_lru_locks osc
15615
15616         # clear the OSC stats
15617         $LCTL set_param osc.*.stats=0 &>/dev/null
15618
15619         # Client reads $bulk_size.
15620         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
15621                 iflag=direct &>/dev/null || error "dd failed"
15622
15623         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
15624         if [ x$nrpcs != "x1" ]; then
15625                 $LCTL get_param osc.*.stats
15626                 error "found $nrpcs ost_read RPCs, not 1 as expected"
15627         fi
15628 }
15629 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
15630
15631 test_231b() {
15632         mkdir -p $DIR/$tdir
15633         local i
15634         for i in {0..1023}; do
15635                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
15636                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
15637                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
15638         done
15639         sync
15640 }
15641 run_test 231b "must not assert on fully utilized OST request buffer"
15642
15643 test_232a() {
15644         mkdir -p $DIR/$tdir
15645         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
15646
15647         #define OBD_FAIL_LDLM_OST_LVB            0x31c
15648         do_facet ost1 $LCTL set_param fail_loc=0x31c
15649
15650         # ignore dd failure
15651         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
15652
15653         do_facet ost1 $LCTL set_param fail_loc=0
15654         umount_client $MOUNT || error "umount failed"
15655         mount_client $MOUNT || error "mount failed"
15656         stop ost1 || error "cannot stop ost1"
15657         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
15658 }
15659 run_test 232a "failed lock should not block umount"
15660
15661 test_232b() {
15662         [ $MDS1_VERSION -ge $(version_code 2.10.58) ] ||
15663                 skip "Need MDS version at least 2.10.58"
15664
15665         mkdir -p $DIR/$tdir
15666         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
15667         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1
15668         sync
15669         cancel_lru_locks osc
15670
15671         #define OBD_FAIL_LDLM_OST_LVB            0x31c
15672         do_facet ost1 $LCTL set_param fail_loc=0x31c
15673
15674         # ignore failure
15675         $LFS data_version $DIR/$tdir/$tfile || true
15676
15677         do_facet ost1 $LCTL set_param fail_loc=0
15678         umount_client $MOUNT || error "umount failed"
15679         mount_client $MOUNT || error "mount failed"
15680         stop ost1 || error "cannot stop ost1"
15681         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
15682 }
15683 run_test 232b "failed data version lock should not block umount"
15684
15685 test_233a() {
15686         [ $MDS1_VERSION -ge $(version_code 2.3.64) ] ||
15687                 skip "Need MDS version at least 2.3.64"
15688         [ -n "$FILESET" ] && skip_env "SKIP due to FILESET set"
15689
15690         local fid=$($LFS path2fid $MOUNT)
15691
15692         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15693                 error "cannot access $MOUNT using its FID '$fid'"
15694 }
15695 run_test 233a "checking that OBF of the FS root succeeds"
15696
15697 test_233b() {
15698         [ $MDS1_VERSION -ge $(version_code 2.5.90) ] ||
15699                 skip "Need MDS version at least 2.5.90"
15700         [ -n "$FILESET" ] && skip_env "SKIP due to FILESET set"
15701
15702         local fid=$($LFS path2fid $MOUNT/.lustre)
15703
15704         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15705                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
15706
15707         fid=$($LFS path2fid $MOUNT/.lustre/fid)
15708         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15709                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
15710 }
15711 run_test 233b "checking that OBF of the FS .lustre succeeds"
15712
15713 test_234() {
15714         local p="$TMP/sanityN-$TESTNAME.parameters"
15715         save_lustre_params client "llite.*.xattr_cache" > $p
15716         lctl set_param llite.*.xattr_cache 1 ||
15717                 skip_env "xattr cache is not supported"
15718
15719         mkdir -p $DIR/$tdir || error "mkdir failed"
15720         touch $DIR/$tdir/$tfile || error "touch failed"
15721         # OBD_FAIL_LLITE_XATTR_ENOMEM
15722         $LCTL set_param fail_loc=0x1405
15723         getfattr -n user.attr $DIR/$tdir/$tfile &&
15724                 error "getfattr should have failed with ENOMEM"
15725         $LCTL set_param fail_loc=0x0
15726         rm -rf $DIR/$tdir
15727
15728         restore_lustre_params < $p
15729         rm -f $p
15730 }
15731 run_test 234 "xattr cache should not crash on ENOMEM"
15732
15733 test_235() {
15734         [ $MDS1_VERSION -lt $(version_code 2.4.52) ] &&
15735                 skip "Need MDS version at least 2.4.52"
15736
15737         flock_deadlock $DIR/$tfile
15738         local RC=$?
15739         case $RC in
15740                 0)
15741                 ;;
15742                 124) error "process hangs on a deadlock"
15743                 ;;
15744                 *) error "error executing flock_deadlock $DIR/$tfile"
15745                 ;;
15746         esac
15747 }
15748 run_test 235 "LU-1715: flock deadlock detection does not work properly"
15749
15750 #LU-2935
15751 test_236() {
15752         check_swap_layouts_support
15753
15754         local ref1=/etc/passwd
15755         local ref2=/etc/group
15756         local file1=$DIR/$tdir/f1
15757         local file2=$DIR/$tdir/f2
15758
15759         test_mkdir -c1 $DIR/$tdir
15760         $LFS setstripe -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
15761         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
15762         $LFS setstripe -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
15763         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
15764         local fd=$(free_fd)
15765         local cmd="exec $fd<>$file2"
15766         eval $cmd
15767         rm $file2
15768         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
15769                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
15770         cmd="exec $fd>&-"
15771         eval $cmd
15772         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
15773
15774         #cleanup
15775         rm -rf $DIR/$tdir
15776 }
15777 run_test 236 "Layout swap on open unlinked file"
15778
15779 # LU-4659 linkea consistency
15780 test_238() {
15781         [[ $MDS1_VERSION -gt $(version_code 2.5.57) ]] ||
15782                 [[ $MDS1_VERSION -gt $(version_code 2.5.1) &&
15783                    $MDS1_VERSION -lt $(version_code 2.5.50) ]] ||
15784                 skip "Need MDS version at least 2.5.58 or 2.5.2+"
15785
15786         touch $DIR/$tfile
15787         ln $DIR/$tfile $DIR/$tfile.lnk
15788         touch $DIR/$tfile.new
15789         mv $DIR/$tfile.new $DIR/$tfile
15790         local fid1=$($LFS path2fid $DIR/$tfile)
15791         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
15792         local path1=$($LFS fid2path $FSNAME "$fid1")
15793         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
15794         local path2=$($LFS fid2path $FSNAME "$fid2")
15795         [ $tfile.lnk == $path2 ] ||
15796                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
15797         rm -f $DIR/$tfile*
15798 }
15799 run_test 238 "Verify linkea consistency"
15800
15801 test_239A() { # was test_239
15802         [ $MDS1_VERSION -lt $(version_code 2.5.60) ] &&
15803                 skip "Need MDS version at least 2.5.60"
15804
15805         local list=$(comma_list $(mdts_nodes))
15806
15807         mkdir -p $DIR/$tdir
15808         createmany -o $DIR/$tdir/f- 5000
15809         unlinkmany $DIR/$tdir/f- 5000
15810         [ $MDS1_VERSION -gt $(version_code 2.10.4) ] &&
15811                 do_nodes $list "lctl set_param -n osp.*.force_sync=1"
15812         changes=$(do_nodes $list "lctl get_param -n osp.*MDT*.sync_changes \
15813                         osp.*MDT*.sync_in_flight" | calc_sum)
15814         [ "$changes" -eq 0 ] || error "$changes not synced"
15815 }
15816 run_test 239A "osp_sync test"
15817
15818 test_239a() { #LU-5297
15819         remote_mds_nodsh && skip "remote MDS with nodsh"
15820
15821         touch $DIR/$tfile
15822         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
15823         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
15824         chgrp $RUNAS_GID $DIR/$tfile
15825         wait_delete_completed
15826 }
15827 run_test 239a "process invalid osp sync record correctly"
15828
15829 test_239b() { #LU-5297
15830         remote_mds_nodsh && skip "remote MDS with nodsh"
15831
15832         touch $DIR/$tfile1
15833         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
15834         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
15835         chgrp $RUNAS_GID $DIR/$tfile1
15836         wait_delete_completed
15837         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
15838         touch $DIR/$tfile2
15839         chgrp $RUNAS_GID $DIR/$tfile2
15840         wait_delete_completed
15841 }
15842 run_test 239b "process osp sync record with ENOMEM error correctly"
15843
15844 test_240() {
15845         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15846         remote_mds_nodsh && skip "remote MDS with nodsh"
15847
15848         mkdir -p $DIR/$tdir
15849
15850         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
15851                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
15852         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
15853                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
15854
15855         umount_client $MOUNT || error "umount failed"
15856         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
15857         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
15858         mount_client $MOUNT || error "failed to mount client"
15859
15860         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
15861         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
15862 }
15863 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
15864
15865 test_241_bio() {
15866         local count=$1
15867         local bsize=$2
15868
15869         for LOOP in $(seq $count); do
15870                 dd if=$DIR/$tfile of=/dev/null bs=$bsize count=1 2>/dev/null
15871                 cancel_lru_locks $OSC || true
15872         done
15873 }
15874
15875 test_241_dio() {
15876         local count=$1
15877         local bsize=$2
15878
15879         for LOOP in $(seq $1); do
15880                 dd if=$DIR/$tfile of=/dev/null bs=$bsize count=1 iflag=direct \
15881                         2>/dev/null
15882         done
15883 }
15884
15885 test_241a() { # was test_241
15886         local bsize=$PAGE_SIZE
15887
15888         (( bsize < 40960 )) && bsize=40960
15889         dd if=/dev/zero of=$DIR/$tfile count=1 bs=$bsize
15890         ls -la $DIR/$tfile
15891         cancel_lru_locks $OSC
15892         test_241_bio 1000 $bsize &
15893         PID=$!
15894         test_241_dio 1000 $bsize
15895         wait $PID
15896 }
15897 run_test 241a "bio vs dio"
15898
15899 test_241b() {
15900         local bsize=$PAGE_SIZE
15901
15902         (( bsize < 40960 )) && bsize=40960
15903         dd if=/dev/zero of=$DIR/$tfile count=1 bs=$bsize
15904         ls -la $DIR/$tfile
15905         test_241_dio 1000 $bsize &
15906         PID=$!
15907         test_241_dio 1000 $bsize
15908         wait $PID
15909 }
15910 run_test 241b "dio vs dio"
15911
15912 test_242() {
15913         remote_mds_nodsh && skip "remote MDS with nodsh"
15914
15915         mkdir -p $DIR/$tdir
15916         touch $DIR/$tdir/$tfile
15917
15918         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
15919         do_facet mds1 lctl set_param fail_loc=0x105
15920         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
15921
15922         do_facet mds1 lctl set_param fail_loc=0
15923         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
15924 }
15925 run_test 242 "mdt_readpage failure should not cause directory unreadable"
15926
15927 test_243()
15928 {
15929         test_mkdir $DIR/$tdir
15930         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
15931 }
15932 run_test 243 "various group lock tests"
15933
15934 test_244()
15935 {
15936         test_mkdir $DIR/$tdir
15937         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
15938         sendfile_grouplock $DIR/$tdir/$tfile || \
15939                 error "sendfile+grouplock failed"
15940         rm -rf $DIR/$tdir
15941 }
15942 run_test 244 "sendfile with group lock tests"
15943
15944 test_245() {
15945         local flagname="multi_mod_rpcs"
15946         local connect_data_name="max_mod_rpcs"
15947         local out
15948
15949         # check if multiple modify RPCs flag is set
15950         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
15951                 grep "connect_flags:")
15952         echo "$out"
15953
15954         echo "$out" | grep -qw $flagname
15955         if [ $? -ne 0 ]; then
15956                 echo "connect flag $flagname is not set"
15957                 return
15958         fi
15959
15960         # check if multiple modify RPCs data is set
15961         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
15962         echo "$out"
15963
15964         echo "$out" | grep -qw $connect_data_name ||
15965                 error "import should have connect data $connect_data_name"
15966 }
15967 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
15968
15969 test_246() { # LU-7371
15970         remote_ost_nodsh && skip "remote OST with nodsh"
15971         [ $OST1_VERSION -lt $(version_code 2.7.62) ] &&
15972                 skip "Need OST version >= 2.7.62"
15973
15974         do_facet ost1 $LCTL set_param fail_val=4095
15975 #define OBD_FAIL_OST_READ_SIZE          0x234
15976         do_facet ost1 $LCTL set_param fail_loc=0x234
15977         $LFS setstripe $DIR/$tfile -i 0 -c 1
15978         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
15979         cancel_lru_locks $FSNAME-OST0000
15980         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
15981 }
15982 run_test 246 "Read file of size 4095 should return right length"
15983
15984 cleanup_247() {
15985         local submount=$1
15986
15987         trap 0
15988         umount_client $submount
15989         rmdir $submount
15990 }
15991
15992 test_247a() {
15993         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
15994                 grep -q subtree ||
15995                 skip_env "Fileset feature is not supported"
15996
15997         local submount=${MOUNT}_$tdir
15998
15999         mkdir $MOUNT/$tdir
16000         mkdir -p $submount || error "mkdir $submount failed"
16001         FILESET="$FILESET/$tdir" mount_client $submount ||
16002                 error "mount $submount failed"
16003         trap "cleanup_247 $submount" EXIT
16004         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
16005         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
16006                 error "read $MOUNT/$tdir/$tfile failed"
16007         cleanup_247 $submount
16008 }
16009 run_test 247a "mount subdir as fileset"
16010
16011 test_247b() {
16012         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
16013                 skip_env "Fileset feature is not supported"
16014
16015         local submount=${MOUNT}_$tdir
16016
16017         rm -rf $MOUNT/$tdir
16018         mkdir -p $submount || error "mkdir $submount failed"
16019         SKIP_FILESET=1
16020         FILESET="$FILESET/$tdir" mount_client $submount &&
16021                 error "mount $submount should fail"
16022         rmdir $submount
16023 }
16024 run_test 247b "mount subdir that dose not exist"
16025
16026 test_247c() {
16027         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
16028                 skip_env "Fileset feature is not supported"
16029
16030         local submount=${MOUNT}_$tdir
16031
16032         mkdir -p $MOUNT/$tdir/dir1
16033         mkdir -p $submount || error "mkdir $submount failed"
16034         trap "cleanup_247 $submount" EXIT
16035         FILESET="$FILESET/$tdir" mount_client $submount ||
16036                 error "mount $submount failed"
16037         local fid=$($LFS path2fid $MOUNT/)
16038         $LFS fid2path $submount $fid && error "fid2path should fail"
16039         cleanup_247 $submount
16040 }
16041 run_test 247c "running fid2path outside root"
16042
16043 test_247d() {
16044         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
16045                 skip "Fileset feature is not supported"
16046
16047         local submount=${MOUNT}_$tdir
16048
16049         mkdir -p $MOUNT/$tdir/dir1
16050         mkdir -p $submount || error "mkdir $submount failed"
16051         FILESET="$FILESET/$tdir" mount_client $submount ||
16052                 error "mount $submount failed"
16053         trap "cleanup_247 $submount" EXIT
16054         local fid=$($LFS path2fid $submount/dir1)
16055         $LFS fid2path $submount $fid || error "fid2path should succeed"
16056         cleanup_247 $submount
16057 }
16058 run_test 247d "running fid2path inside root"
16059
16060 # LU-8037
16061 test_247e() {
16062         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
16063                 grep -q subtree ||
16064                 skip "Fileset feature is not supported"
16065
16066         local submount=${MOUNT}_$tdir
16067
16068         mkdir $MOUNT/$tdir
16069         mkdir -p $submount || error "mkdir $submount failed"
16070         FILESET="$FILESET/.." mount_client $submount &&
16071                 error "mount $submount should fail"
16072         rmdir $submount
16073 }
16074 run_test 247e "mount .. as fileset"
16075
16076 test_248() {
16077         local fast_read_sav=$($LCTL get_param -n llite.*.fast_read 2>/dev/null)
16078         [ -z "$fast_read_sav" ] && skip "no fast read support"
16079
16080         # create a large file for fast read verification
16081         dd if=/dev/zero of=$DIR/$tfile bs=1M count=128 > /dev/null 2>&1
16082
16083         # make sure the file is created correctly
16084         $CHECKSTAT -s $((128*1024*1024)) $DIR/$tfile ||
16085                 { rm -f $DIR/$tfile; skip "file creation error"; }
16086
16087         echo "Test 1: verify that fast read is 4 times faster on cache read"
16088
16089         # small read with fast read enabled
16090         $LCTL set_param -n llite.*.fast_read=1
16091         local t_fast=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
16092                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
16093                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
16094         # small read with fast read disabled
16095         $LCTL set_param -n llite.*.fast_read=0
16096         local t_slow=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
16097                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
16098                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
16099
16100         # verify that fast read is 4 times faster for cache read
16101         [ $(bc <<< "4 * $t_fast < $t_slow") -eq 1 ] ||
16102                 error_not_in_vm "fast read was not 4 times faster: " \
16103                            "$t_fast vs $t_slow"
16104
16105         echo "Test 2: verify the performance between big and small read"
16106         $LCTL set_param -n llite.*.fast_read=1
16107
16108         # 1k non-cache read
16109         cancel_lru_locks osc
16110         local t_1k=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
16111                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
16112                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
16113
16114         # 1M non-cache read
16115         cancel_lru_locks osc
16116         local t_1m=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
16117                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
16118                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
16119
16120         # verify that big IO is not 4 times faster than small IO
16121         [ $(bc <<< "4 * $t_1k >= $t_1m") -eq 1 ] ||
16122                 error_not_in_vm "bigger IO is way too fast: $t_1k vs $t_1m"
16123
16124         $LCTL set_param -n llite.*.fast_read=$fast_read_sav
16125         rm -f $DIR/$tfile
16126 }
16127 run_test 248 "fast read verification"
16128
16129 test_249() { # LU-7890
16130         [ $MDS1_VERSION -lt $(version_code 2.8.53) ] &&
16131                 skip "Need at least version 2.8.54"
16132
16133         rm -f $DIR/$tfile
16134         $LFS setstripe -c 1 $DIR/$tfile
16135         # Offset 2T == 4k * 512M
16136         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 seek=512M ||
16137                 error "dd to 2T offset failed"
16138 }
16139 run_test 249 "Write above 2T file size"
16140
16141 test_250() {
16142         [ "$(facet_fstype ost$(($($LFS getstripe -i $DIR/$tfile) + 1)))" = "zfs" ] \
16143          && skip "no 16TB file size limit on ZFS"
16144
16145         $LFS setstripe -c 1 $DIR/$tfile
16146         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
16147         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
16148         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
16149         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
16150                 conv=notrunc,fsync && error "append succeeded"
16151         return 0
16152 }
16153 run_test 250 "Write above 16T limit"
16154
16155 test_251() {
16156         $LFS setstripe -c -1 -S 1048576 $DIR/$tfile
16157
16158         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
16159         #Skip once - writing the first stripe will succeed
16160         $LCTL set_param fail_loc=0xa0001407 fail_val=1
16161         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
16162                 error "short write happened"
16163
16164         $LCTL set_param fail_loc=0xa0001407 fail_val=1
16165         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
16166                 error "short read happened"
16167
16168         rm -f $DIR/$tfile
16169 }
16170 run_test 251 "Handling short read and write correctly"
16171
16172 test_252() {
16173         remote_mds_nodsh && skip "remote MDS with nodsh"
16174         remote_ost_nodsh && skip "remote OST with nodsh"
16175         if [ "$ost1_FSTYPE" != "ldiskfs" -o "$mds1_FSTYPE" != "ldiskfs" ]; then
16176                 skip_env "ldiskfs only test"
16177         fi
16178
16179         local tgt
16180         local dev
16181         local out
16182         local uuid
16183         local num
16184         local gen
16185
16186         # check lr_reader on OST0000
16187         tgt=ost1
16188         dev=$(facet_device $tgt)
16189         out=$(do_facet $tgt $LR_READER $dev)
16190         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
16191         echo "$out"
16192         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
16193         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
16194                 error "Invalid uuid returned by $LR_READER on target $tgt"
16195         echo -e "uuid returned by $LR_READER is '$uuid'\n"
16196
16197         # check lr_reader -c on MDT0000
16198         tgt=mds1
16199         dev=$(facet_device $tgt)
16200         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
16201                 skip "$LR_READER does not support additional options"
16202         fi
16203         out=$(do_facet $tgt $LR_READER -c $dev)
16204         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
16205         echo "$out"
16206         num=$(echo "$out" | grep -c "mdtlov")
16207         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
16208                 error "Invalid number of mdtlov clients returned by $LR_READER"
16209         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
16210
16211         # check lr_reader -cr on MDT0000
16212         out=$(do_facet $tgt $LR_READER -cr $dev)
16213         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
16214         echo "$out"
16215         echo "$out" | grep -q "^reply_data:$" ||
16216                 error "$LR_READER should have returned 'reply_data' section"
16217         num=$(echo "$out" | grep -c "client_generation")
16218         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
16219 }
16220 run_test 252 "check lr_reader tool"
16221
16222 test_253_fill_ost() {
16223         local size_mb #how many MB should we write to pass watermark
16224         local lwm=$3  #low watermark
16225         local free_10mb #10% of free space
16226
16227         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
16228         size_mb=$((free_kb / 1024 - lwm))
16229         free_10mb=$((free_kb / 10240))
16230         #If 10% of free space cross low watermark use it
16231         if (( free_10mb > size_mb )); then
16232                 size_mb=$free_10mb
16233         else
16234                 #At least we need to store 1.1 of difference between
16235                 #free space and low watermark
16236                 size_mb=$((size_mb + size_mb / 10))
16237         fi
16238         if (( lwm <= $((free_kb / 1024)) )) || [ ! -f $DIR/$tdir/1 ]; then
16239                 dd if=/dev/zero of=$DIR/$tdir/1 bs=1M count=$size_mb \
16240                          oflag=append conv=notrunc
16241         fi
16242
16243         sleep_maxage
16244
16245         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
16246         echo "OST still has $((free_kb / 1024)) mbytes free"
16247 }
16248
16249 test_253() {
16250         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16251         remote_mds_nodsh && skip "remote MDS with nodsh"
16252         remote_mgs_nodsh && skip "remote MGS with nodsh"
16253
16254         local ostidx=0
16255         local rc=0
16256
16257         local ost_name=$($LFS osts |
16258                 sed -n 's/^'$ostidx': \(.*\)_UUID .*/\1/p')
16259         # on the mdt's osc
16260         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $ost_name)
16261         do_facet $SINGLEMDS $LCTL get_param -n \
16262                 osp.$mdtosc_proc1.reserved_mb_high ||
16263                 skip  "remote MDS does not support reserved_mb_high"
16264
16265         rm -rf $DIR/$tdir
16266         wait_mds_ost_sync
16267         wait_delete_completed
16268         mkdir $DIR/$tdir
16269
16270         local last_wm_h=$(do_facet $SINGLEMDS $LCTL get_param -n \
16271                         osp.$mdtosc_proc1.reserved_mb_high)
16272         local last_wm_l=$(do_facet $SINGLEMDS $LCTL get_param -n \
16273                         osp.$mdtosc_proc1.reserved_mb_low)
16274         echo "prev high watermark $last_wm_h, prev low watermark $last_wm_l"
16275
16276         if ! combined_mgs_mds ; then
16277                 mount_mgs_client
16278         fi
16279         create_pool $FSNAME.$TESTNAME || error "Pool creation failed"
16280         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $ost_name ||
16281                 error "Adding $ost_name to pool failed"
16282
16283         # Wait for client to see a OST at pool
16284         wait_update $HOSTNAME "$LCTL get_param -n
16285                 lov.$FSNAME-*.pools.$TESTNAME | sort -u |
16286                 grep $ost_name" "$ost_name""_UUID" $((TIMEOUT/2)) ||
16287                 error "Client can not see the pool"
16288         $LFS setstripe $DIR/$tdir -i $ostidx -c 1 -p $FSNAME.$TESTNAME ||
16289                 error "Setstripe failed"
16290
16291         dd if=/dev/zero of=$DIR/$tdir/0 bs=1M count=10
16292         local blocks=$($LFS df $MOUNT | grep $ost_name | awk '{ print $4 }')
16293         echo "OST still has $((blocks/1024)) mbytes free"
16294
16295         local new_lwm=$((blocks/1024-10))
16296         do_facet $SINGLEMDS $LCTL set_param \
16297                         osp.$mdtosc_proc1.reserved_mb_high=$((new_lwm+5))
16298         do_facet $SINGLEMDS $LCTL set_param \
16299                         osp.$mdtosc_proc1.reserved_mb_low=$new_lwm
16300
16301         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
16302
16303         #First enospc could execute orphan deletion so repeat.
16304         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
16305
16306         local oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
16307                         osp.$mdtosc_proc1.prealloc_status)
16308         echo "prealloc_status $oa_status"
16309
16310         dd if=/dev/zero of=$DIR/$tdir/2 bs=1M count=1 &&
16311                 error "File creation should fail"
16312         #object allocation was stopped, but we still able to append files
16313         dd if=/dev/zero of=$DIR/$tdir/1 bs=1M seek=6 count=5 oflag=append ||
16314                 error "Append failed"
16315         rm -f $DIR/$tdir/1 $DIR/$tdir/0 $DIR/$tdir/r*
16316
16317         wait_delete_completed
16318
16319         sleep_maxage
16320
16321         for i in $(seq 10 12); do
16322                 dd if=/dev/zero of=$DIR/$tdir/$i bs=1M count=1 2>/dev/null ||
16323                         error "File creation failed after rm";
16324         done
16325
16326         oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
16327                         osp.$mdtosc_proc1.prealloc_status)
16328         echo "prealloc_status $oa_status"
16329
16330         if (( oa_status != 0 )); then
16331                 error "Object allocation still disable after rm"
16332         fi
16333         do_facet $SINGLEMDS $LCTL set_param \
16334                         osp.$mdtosc_proc1.reserved_mb_high=$last_wm_h
16335         do_facet $SINGLEMDS $LCTL set_param \
16336                         osp.$mdtosc_proc1.reserved_mb_low=$last_wm_l
16337
16338
16339         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $ost_name ||
16340                 error "Remove $ost_name from pool failed"
16341         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
16342                 error "Pool destroy fialed"
16343
16344         if ! combined_mgs_mds ; then
16345                 umount_mgs_client
16346         fi
16347 }
16348 run_test 253 "Check object allocation limit"
16349
16350 test_254() {
16351         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16352         remote_mds_nodsh && skip "remote MDS with nodsh"
16353         do_facet $SINGLEMDS $LCTL get_param -n mdd.$MDT0.changelog_size ||
16354                 skip "MDS does not support changelog_size"
16355
16356         local cl_user
16357         local MDT0=$(facet_svc $SINGLEMDS)
16358
16359         changelog_register || error "changelog_register failed"
16360
16361         changelog_clear 0 || error "changelog_clear failed"
16362
16363         local size1=$(do_facet $SINGLEMDS \
16364                       $LCTL get_param -n mdd.$MDT0.changelog_size)
16365         echo "Changelog size $size1"
16366
16367         rm -rf $DIR/$tdir
16368         $LFS mkdir -i 0 $DIR/$tdir
16369         # change something
16370         mkdir -p $DIR/$tdir/pics/2008/zachy
16371         touch $DIR/$tdir/pics/2008/zachy/timestamp
16372         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
16373         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
16374         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
16375         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
16376         rm $DIR/$tdir/pics/desktop.jpg
16377
16378         local size2=$(do_facet $SINGLEMDS \
16379                       $LCTL get_param -n mdd.$MDT0.changelog_size)
16380         echo "Changelog size after work $size2"
16381
16382         (( $size2 > $size1 )) ||
16383                 error "new Changelog size=$size2 less than old size=$size1"
16384 }
16385 run_test 254 "Check changelog size"
16386
16387 ladvise_no_type()
16388 {
16389         local type=$1
16390         local file=$2
16391
16392         lfs ladvise -a invalid $file 2>&1 | grep "Valid types" |
16393                 awk -F: '{print $2}' | grep $type > /dev/null
16394         if [ $? -ne 0 ]; then
16395                 return 0
16396         fi
16397         return 1
16398 }
16399
16400 ladvise_no_ioctl()
16401 {
16402         local file=$1
16403
16404         lfs ladvise -a willread $file > /dev/null 2>&1
16405         if [ $? -eq 0 ]; then
16406                 return 1
16407         fi
16408
16409         lfs ladvise -a willread $file 2>&1 |
16410                 grep "Inappropriate ioctl for device" > /dev/null
16411         if [ $? -eq 0 ]; then
16412                 return 0
16413         fi
16414         return 1
16415 }
16416
16417 percent() {
16418         bc <<<"scale=2; ($1 - $2) * 100 / $2"
16419 }
16420
16421 # run a random read IO workload
16422 # usage: random_read_iops <filename> <filesize> <iosize>
16423 random_read_iops() {
16424         local file=$1
16425         local fsize=$2
16426         local iosize=${3:-4096}
16427
16428         $READS -f $file -s $fsize -b $iosize -n $((fsize / iosize)) -t 60 |
16429                 sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##'
16430 }
16431
16432 drop_file_oss_cache() {
16433         local file="$1"
16434         local nodes="$2"
16435
16436         $LFS ladvise -a dontneed $file 2>/dev/null ||
16437                 do_nodes $nodes "echo 3 > /proc/sys/vm/drop_caches"
16438 }
16439
16440 ladvise_willread_performance()
16441 {
16442         local repeat=10
16443         local average_origin=0
16444         local average_cache=0
16445         local average_ladvise=0
16446
16447         for ((i = 1; i <= $repeat; i++)); do
16448                 echo "Iter $i/$repeat: reading without willread hint"
16449                 cancel_lru_locks osc
16450                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
16451                 local speed_origin=$(random_read_iops $DIR/$tfile $size)
16452                 echo "Iter $i/$repeat: uncached speed: $speed_origin"
16453                 average_origin=$(bc <<<"$average_origin + $speed_origin")
16454
16455                 cancel_lru_locks osc
16456                 local speed_cache=$(random_read_iops $DIR/$tfile $size)
16457                 echo "Iter $i/$repeat: OSS cache speed: $speed_cache"
16458                 average_cache=$(bc <<<"$average_cache + $speed_cache")
16459
16460                 cancel_lru_locks osc
16461                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
16462                 $LFS ladvise -a willread $DIR/$tfile || error "ladvise failed"
16463                 local speed_ladvise=$(random_read_iops $DIR/$tfile $size)
16464                 echo "Iter $i/$repeat: ladvise speed: $speed_ladvise"
16465                 average_ladvise=$(bc <<<"$average_ladvise + $speed_ladvise")
16466         done
16467         average_origin=$(bc <<<"scale=2; $average_origin / $repeat")
16468         average_cache=$(bc <<<"scale=2; $average_cache / $repeat")
16469         average_ladvise=$(bc <<<"scale=2; $average_ladvise / $repeat")
16470
16471         speedup_cache=$(percent $average_cache $average_origin)
16472         speedup_ladvise=$(percent $average_ladvise $average_origin)
16473
16474         echo "Average uncached read: $average_origin"
16475         echo "Average speedup with OSS cached read: " \
16476                 "$average_cache = +$speedup_cache%"
16477         echo "Average speedup with ladvise willread: " \
16478                 "$average_ladvise = +$speedup_ladvise%"
16479
16480         local lowest_speedup=20
16481         if [ ${average_cache%.*} -lt $lowest_speedup ]; then
16482                 echo "Speedup with OSS cached read less than $lowest_speedup%," \
16483                         "got $average_cache%. Skipping ladvise willread check."
16484                 return 0
16485         fi
16486
16487         # the test won't work on ZFS until it supports 'ladvise dontneed', but
16488         # it is still good to run until then to exercise 'ladvise willread'
16489         ! $LFS ladvise -a dontneed $DIR/$tfile &&
16490                 [ "$ost1_FSTYPE" = "zfs" ] &&
16491                 echo "osd-zfs does not support dontneed or drop_caches" &&
16492                 return 0
16493
16494         lowest_speedup=$(bc <<<"scale=2; $average_cache / 2")
16495         [ ${average_ladvise%.*} -gt $lowest_speedup ] ||
16496                 error_not_in_vm "Speedup with willread is less than " \
16497                         "$lowest_speedup%, got $average_ladvise%"
16498 }
16499
16500 test_255a() {
16501         [ $OST1_VERSION -lt $(version_code 2.8.54) ] &&
16502                 skip "lustre < 2.8.54 does not support ladvise "
16503         remote_ost_nodsh && skip "remote OST with nodsh"
16504
16505         lfs setstripe -c -1 -i 0 $DIR/$tfile || error "$tfile failed"
16506
16507         ladvise_no_type willread $DIR/$tfile &&
16508                 skip "willread ladvise is not supported"
16509
16510         ladvise_no_ioctl $DIR/$tfile &&
16511                 skip "ladvise ioctl is not supported"
16512
16513         local size_mb=100
16514         local size=$((size_mb * 1048576))
16515         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
16516                 error "dd to $DIR/$tfile failed"
16517
16518         lfs ladvise -a willread $DIR/$tfile ||
16519                 error "Ladvise failed with no range argument"
16520
16521         lfs ladvise -a willread -s 0 $DIR/$tfile ||
16522                 error "Ladvise failed with no -l or -e argument"
16523
16524         lfs ladvise -a willread -e 1 $DIR/$tfile ||
16525                 error "Ladvise failed with only -e argument"
16526
16527         lfs ladvise -a willread -l 1 $DIR/$tfile ||
16528                 error "Ladvise failed with only -l argument"
16529
16530         lfs ladvise -a willread -s 2 -e 1 $DIR/$tfile &&
16531                 error "End offset should not be smaller than start offset"
16532
16533         lfs ladvise -a willread -s 2 -e 2 $DIR/$tfile &&
16534                 error "End offset should not be equal to start offset"
16535
16536         lfs ladvise -a willread -s $size -l 1 $DIR/$tfile ||
16537                 error "Ladvise failed with overflowing -s argument"
16538
16539         lfs ladvise -a willread -s 1 -e $((size + 1)) $DIR/$tfile ||
16540                 error "Ladvise failed with overflowing -e argument"
16541
16542         lfs ladvise -a willread -s 1 -l $size $DIR/$tfile ||
16543                 error "Ladvise failed with overflowing -l argument"
16544
16545         lfs ladvise -a willread -l 1 -e 2 $DIR/$tfile &&
16546                 error "Ladvise succeeded with conflicting -l and -e arguments"
16547
16548         echo "Synchronous ladvise should wait"
16549         local delay=4
16550 #define OBD_FAIL_OST_LADVISE_PAUSE       0x237
16551         do_nodes $(comma_list $(osts_nodes)) \
16552                 $LCTL set_param fail_val=$delay fail_loc=0x237
16553
16554         local start_ts=$SECONDS
16555         lfs ladvise -a willread $DIR/$tfile ||
16556                 error "Ladvise failed with no range argument"
16557         local end_ts=$SECONDS
16558         local inteval_ts=$((end_ts - start_ts))
16559
16560         if [ $inteval_ts -lt $(($delay - 1)) ]; then
16561                 error "Synchronous advice didn't wait reply"
16562         fi
16563
16564         echo "Asynchronous ladvise shouldn't wait"
16565         local start_ts=$SECONDS
16566         lfs ladvise -a willread -b $DIR/$tfile ||
16567                 error "Ladvise failed with no range argument"
16568         local end_ts=$SECONDS
16569         local inteval_ts=$((end_ts - start_ts))
16570
16571         if [ $inteval_ts -gt $(($delay / 2)) ]; then
16572                 error "Asynchronous advice blocked"
16573         fi
16574
16575         do_nodes $(comma_list $(osts_nodes)) $LCTL set_param fail_loc=0
16576         ladvise_willread_performance
16577 }
16578 run_test 255a "check 'lfs ladvise -a willread'"
16579
16580 facet_meminfo() {
16581         local facet=$1
16582         local info=$2
16583
16584         do_facet $facet "cat /proc/meminfo | grep ^${info}:" | awk '{print $2}'
16585 }
16586
16587 test_255b() {
16588         [ $OST1_VERSION -lt $(version_code 2.8.54) ] &&
16589                 skip "lustre < 2.8.54 does not support ladvise "
16590         remote_ost_nodsh && skip "remote OST with nodsh"
16591
16592         lfs setstripe -c 1 -i 0 $DIR/$tfile
16593
16594         ladvise_no_type dontneed $DIR/$tfile &&
16595                 skip "dontneed ladvise is not supported"
16596
16597         ladvise_no_ioctl $DIR/$tfile &&
16598                 skip "ladvise ioctl is not supported"
16599
16600         ! $LFS ladvise -a dontneed $DIR/$tfile &&
16601                 [ "$ost1_FSTYPE" = "zfs" ] &&
16602                 skip "zfs-osd does not support 'ladvise dontneed'"
16603
16604         local size_mb=100
16605         local size=$((size_mb * 1048576))
16606         # In order to prevent disturbance of other processes, only check 3/4
16607         # of the memory usage
16608         local kibibytes=$((size_mb * 1024 * 3 / 4))
16609
16610         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
16611                 error "dd to $DIR/$tfile failed"
16612
16613         #force write to complete before dropping OST cache & checking memory
16614         sync
16615
16616         local total=$(facet_meminfo ost1 MemTotal)
16617         echo "Total memory: $total KiB"
16618
16619         do_facet ost1 "sync && echo 3 > /proc/sys/vm/drop_caches"
16620         local before_read=$(facet_meminfo ost1 Cached)
16621         echo "Cache used before read: $before_read KiB"
16622
16623         lfs ladvise -a willread $DIR/$tfile ||
16624                 error "Ladvise willread failed"
16625         local after_read=$(facet_meminfo ost1 Cached)
16626         echo "Cache used after read: $after_read KiB"
16627
16628         lfs ladvise -a dontneed $DIR/$tfile ||
16629                 error "Ladvise dontneed again failed"
16630         local no_read=$(facet_meminfo ost1 Cached)
16631         echo "Cache used after dontneed ladvise: $no_read KiB"
16632
16633         if [ $total -lt $((before_read + kibibytes)) ]; then
16634                 echo "Memory is too small, abort checking"
16635                 return 0
16636         fi
16637
16638         if [ $((before_read + kibibytes)) -gt $after_read ]; then
16639                 error "Ladvise willread should use more memory" \
16640                         "than $kibibytes KiB"
16641         fi
16642
16643         if [ $((no_read + kibibytes)) -gt $after_read ]; then
16644                 error "Ladvise dontneed should release more memory" \
16645                         "than $kibibytes KiB"
16646         fi
16647 }
16648 run_test 255b "check 'lfs ladvise -a dontneed'"
16649
16650 test_255c() {
16651         [ $OST1_VERSION -lt $(version_code 2.10.50) ] &&
16652                 skip "lustre < 2.10.53 does not support lockahead"
16653
16654         local count
16655         local new_count
16656         local difference
16657         local i
16658         local rc
16659
16660         test_mkdir -p $DIR/$tdir
16661         $LFS setstripe -i 0 $DIR/$tdir
16662
16663         #test 10 returns only success/failure
16664         i=10
16665         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16666         rc=$?
16667         if [ $rc -eq 255 ]; then
16668                 error "Ladvise test${i} failed, ${rc}"
16669         fi
16670
16671         #test 11 counts lock enqueue requests, all others count new locks
16672         i=11
16673         count=$(do_facet ost1 \
16674                 $LCTL get_param -n ost.OSS.ost.stats)
16675         count=$(echo "$count" | grep ldlm_extent_enqueue | awk '{ print $2 }')
16676
16677         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16678         rc=$?
16679         if [ $rc -eq 255 ]; then
16680                 error "Ladvise test${i} failed, ${rc}"
16681         fi
16682
16683         new_count=$(do_facet ost1 \
16684                 $LCTL get_param -n ost.OSS.ost.stats)
16685         new_count=$(echo "$new_count" | grep ldlm_extent_enqueue | \
16686                    awk '{ print $2 }')
16687
16688         difference="$((new_count - count))"
16689         if [ $difference -ne $rc ]; then
16690                 error "Ladvise test${i}, bad enqueue count, returned " \
16691                       "${rc}, actual ${difference}"
16692         fi
16693
16694         for i in $(seq 12 21); do
16695                 # If we do not do this, we run the risk of having too many
16696                 # locks and starting lock cancellation while we are checking
16697                 # lock counts.
16698                 cancel_lru_locks osc
16699
16700                 count=$($LCTL get_param -n \
16701                        ldlm.namespaces.$FSNAME-OST0000*osc-[-0-9a-f]*.lock_unused_count)
16702
16703                 lockahead_test -d $DIR/$tdir -t $i -f $tfile
16704                 rc=$?
16705                 if [ $rc -eq 255 ]; then
16706                         error "Ladvise test ${i} failed, ${rc}"
16707                 fi
16708
16709                 new_count=$($LCTL get_param -n \
16710                        ldlm.namespaces.$FSNAME-OST0000*osc-[-0-9a-f]*.lock_unused_count)
16711                 difference="$((new_count - count))"
16712
16713                 # Test 15 output is divided by 100 to map down to valid return
16714                 if [ $i -eq 15 ]; then
16715                         rc="$((rc * 100))"
16716                 fi
16717
16718                 if [ $difference -ne $rc ]; then
16719                         error "Ladvise test ${i}, bad lock count, returned " \
16720                               "${rc}, actual ${difference}"
16721                 fi
16722         done
16723
16724         #test 22 returns only success/failure
16725         i=22
16726         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16727         rc=$?
16728         if [ $rc -eq 255 ]; then
16729                 error "Ladvise test${i} failed, ${rc}"
16730         fi
16731 }
16732 run_test 255c "suite of ladvise lockahead tests"
16733
16734 test_256() {
16735         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16736         remote_mds_nodsh && skip "remote MDS with nodsh"
16737         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip "ldiskfs only test"
16738         changelog_users $SINGLEMDS | grep "^cl" &&
16739                 skip "active changelog user"
16740
16741         local cl_user
16742         local cat_sl
16743         local mdt_dev
16744
16745         mdt_dev=$(mdsdevname 1)
16746         echo $mdt_dev
16747
16748         changelog_register || error "changelog_register failed"
16749
16750         rm -rf $DIR/$tdir
16751         mkdir -p $DIR/$tdir
16752
16753         changelog_clear 0 || error "changelog_clear failed"
16754
16755         # change something
16756         touch $DIR/$tdir/{1..10}
16757
16758         # stop the MDT
16759         stop $SINGLEMDS || error "Fail to stop MDT"
16760
16761         # remount the MDT
16762
16763         start $SINGLEMDS $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT"
16764
16765         #after mount new plainllog is used
16766         touch $DIR/$tdir/{11..19}
16767         local tmpfile=$(mktemp -u $tfile.XXXXXX)
16768         cat_sl=$(do_facet $SINGLEMDS "sync; \
16769                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
16770                  llog_reader $tmpfile | grep -c type=1064553b")
16771         do_facet $SINGLEMDS llog_reader $tmpfile
16772
16773         [ $cat_sl != 2 ] && error "Changelog catalog has $cat_sl != 2 slots"
16774
16775         changelog_clear 0 || error "changelog_clear failed"
16776
16777         cat_sl=$(do_facet $SINGLEMDS "sync; \
16778                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
16779                  llog_reader $tmpfile | grep -c type=1064553b; rm -f $tmpfile")
16780
16781         if (( cat_sl == 2 )); then
16782                 error "Empty plain llog was not deleted from changelog catalog"
16783         elif (( cat_sl != 1 )); then
16784                 error "Active plain llog shouldn't be deleted from catalog"
16785         fi
16786 }
16787 run_test 256 "Check llog delete for empty and not full state"
16788
16789 test_257() {
16790         remote_mds_nodsh && skip "remote MDS with nodsh"
16791         [[ $MDS1_VERSION -lt $(version_code 2.8.55) ]] &&
16792                 skip "Need MDS version at least 2.8.55"
16793
16794         test_mkdir $DIR/$tdir
16795
16796         setfattr -n trusted.name1 -v value1 $DIR/$tdir ||
16797                 error "setfattr -n trusted.name1=value1 $DIR/$tdir failed"
16798         stat $DIR/$tdir
16799
16800 #define OBD_FAIL_MDS_XATTR_REP                  0x161
16801         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
16802         local facet=mds$((mdtidx + 1))
16803         set_nodes_failloc $(facet_active_host $facet) 0x80000161
16804         getfattr -n trusted.name1 $DIR/$tdir 2> /dev/null
16805
16806         stop $facet || error "stop MDS failed"
16807         start $facet $(mdsdevname $((mdtidx + 1))) $MDS_MOUNT_OPTS ||
16808                 error "start MDS fail"
16809         wait_recovery_complete $facet
16810 }
16811 run_test 257 "xattr locks are not lost"
16812
16813 # Verify we take the i_mutex when security requires it
16814 test_258a() {
16815 #define OBD_FAIL_IMUTEX_SEC 0x141c
16816         $LCTL set_param fail_loc=0x141c
16817         touch $DIR/$tfile
16818         chmod u+s $DIR/$tfile
16819         chmod a+rwx $DIR/$tfile
16820         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
16821         RC=$?
16822         if [ $RC -ne 0 ]; then
16823                 error "error, failed to take i_mutex, rc=$?"
16824         fi
16825         rm -f $DIR/$tfile
16826 }
16827 run_test 258a
16828
16829 # Verify we do NOT take the i_mutex in the normal case
16830 test_258b() {
16831 #define OBD_FAIL_IMUTEX_NOSEC 0x141d
16832         $LCTL set_param fail_loc=0x141d
16833         touch $DIR/$tfile
16834         chmod a+rwx $DIR
16835         chmod a+rw $DIR/$tfile
16836         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
16837         RC=$?
16838         if [ $RC -ne 0 ]; then
16839                 error "error, took i_mutex unnecessarily, rc=$?"
16840         fi
16841         rm -f $DIR/$tfile
16842
16843 }
16844 run_test 258b "verify i_mutex security behavior"
16845
16846 test_259() {
16847         local file=$DIR/$tfile
16848         local before
16849         local after
16850
16851         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip "ldiskfs only test"
16852
16853         stack_trap "rm -f $file" EXIT
16854
16855         wait_delete_completed
16856         before=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16857         echo "before: $before"
16858
16859         $LFS setstripe -i 0 -c 1 $file
16860         dd if=/dev/zero of=$file bs=1M count=10 || error "couldn't write"
16861         sync_all_data
16862         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16863         echo "after write: $after"
16864
16865 #define OBD_FAIL_OSD_FAIL_AT_TRUNCATE          0x2301
16866         do_facet ost1 $LCTL set_param fail_loc=0x2301
16867         $TRUNCATE $file 0
16868         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16869         echo "after truncate: $after"
16870
16871         stop ost1
16872         do_facet ost1 $LCTL set_param fail_loc=0
16873         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
16874         sleep 2
16875         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16876         echo "after restart: $after"
16877         [ $((after - before)) -ge $(fs_log_size ost1) ] &&
16878                 error "missing truncate?"
16879
16880         return 0
16881 }
16882 run_test 259 "crash at delayed truncate"
16883
16884 test_260() {
16885 #define OBD_FAIL_MDC_CLOSE               0x806
16886         $LCTL set_param fail_loc=0x80000806
16887         touch $DIR/$tfile
16888
16889 }
16890 run_test 260 "Check mdc_close fail"
16891
16892 ### Data-on-MDT sanity tests ###
16893 test_270a() {
16894         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
16895                 skip "Need MDS version at least 2.10.55 for DoM"
16896
16897         # create DoM file
16898         local dom=$DIR/$tdir/dom_file
16899         local tmp=$DIR/$tdir/tmp_file
16900
16901         mkdir -p $DIR/$tdir
16902
16903         # basic checks for DoM component creation
16904         $LFS setstripe -E 1024K -E 2048K -L mdt $dom 2>/dev/null &&
16905                 error "Can set MDT layout to non-first entry"
16906
16907         $LFS setstripe -E 1024K -L mdt -E 2048K -L mdt $dom 2>/dev/null &&
16908                 error "Can define multiple entries as MDT layout"
16909
16910         $LFS setstripe -E 1M -L mdt $dom || error "Can't create DoM layout"
16911
16912         [ $($LFS getstripe -L $dom) == "mdt" ] || error "bad pattern"
16913         [ $($LFS getstripe -c $dom) == 0 ] || error "bad stripe count"
16914         [ $($LFS getstripe -S $dom) == 1048576 ] || error "bad stripe size"
16915
16916         local mdtidx=$($LFS getstripe -m $dom)
16917         local mdtname=MDT$(printf %04x $mdtidx)
16918         local facet=mds$((mdtidx + 1))
16919         local space_check=1
16920
16921         # Skip free space checks with ZFS
16922         [ "$(facet_fstype $facet)" == "zfs" ] && space_check=0
16923
16924         # write
16925         sync
16926         local size_tmp=$((65536 * 3))
16927         local mdtfree1=$(do_facet $facet \
16928                          lctl get_param -n osd*.*$mdtname.kbytesfree)
16929
16930         dd if=/dev/urandom of=$tmp bs=1024 count=$((size_tmp / 1024))
16931         # check also direct IO along write
16932         # IO size must be a multiple of PAGE_SIZE on all platforms (ARM=64KB)
16933         dd if=$tmp of=$dom bs=65536 count=$((size_tmp / 65536)) oflag=direct
16934         sync
16935         cmp $tmp $dom || error "file data is different"
16936         [ $(stat -c%s $dom) == $size_tmp ] ||
16937                 error "bad size after write: $(stat -c%s $dom) != $size_tmp"
16938         if [ $space_check == 1 ]; then
16939                 local mdtfree2=$(do_facet $facet \
16940                                  lctl get_param -n osd*.*$mdtname.kbytesfree)
16941
16942                 # increase in usage from by $size_tmp
16943                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_tmp / 1024)) ] ||
16944                         error "MDT free space wrong after write: " \
16945                               "$mdtfree1 >= $mdtfree2 + $size_tmp/1024"
16946         fi
16947
16948         # truncate
16949         local size_dom=10000
16950
16951         $TRUNCATE $dom $size_dom
16952         [ $(stat -c%s $dom) == $size_dom ] ||
16953                 error "bad size after truncate: $(stat -c%s $dom) != $size_dom"
16954         if [ $space_check == 1 ]; then
16955                 mdtfree1=$(do_facet $facet \
16956                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16957                 # decrease in usage from $size_tmp to new $size_dom
16958                 [ $(($mdtfree1 - $mdtfree2)) -ge \
16959                   $(((size_tmp - size_dom) / 1024)) ] ||
16960                         error "MDT free space is wrong after truncate: " \
16961                               "$mdtfree1 >= $mdtfree2 + ($size_tmp - $size_dom) / 1024"
16962         fi
16963
16964         # append
16965         cat $tmp >> $dom
16966         sync
16967         size_dom=$((size_dom + size_tmp))
16968         [ $(stat -c%s $dom) == $size_dom ] ||
16969                 error "bad size after append: $(stat -c%s $dom) != $size_dom"
16970         if [ $space_check == 1 ]; then
16971                 mdtfree2=$(do_facet $facet \
16972                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16973                 # increase in usage by $size_tmp from previous
16974                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_tmp / 1024)) ] ||
16975                         error "MDT free space is wrong after append: " \
16976                               "$mdtfree1 >= $mdtfree2 + $size_tmp/1024"
16977         fi
16978
16979         # delete
16980         rm $dom
16981         if [ $space_check == 1 ]; then
16982                 mdtfree1=$(do_facet $facet \
16983                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16984                 # decrease in usage by $size_dom from previous
16985                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_dom / 1024)) ] ||
16986                         error "MDT free space is wrong after removal: " \
16987                               "$mdtfree1 >= $mdtfree2 + $size_dom/1024"
16988         fi
16989
16990         # combined striping
16991         $LFS setstripe -E 1024K -L mdt -E EOF $dom ||
16992                 error "Can't create DoM + OST striping"
16993
16994         size_tmp=2031616 # must be a multiple of PAGE_SIZE=65536 on ARM
16995         dd if=/dev/urandom of=$tmp bs=1024 count=$((size_tmp / 1024))
16996         # check also direct IO along write
16997         dd if=$tmp of=$dom bs=65536 count=$((size_tmp / 65536)) oflag=direct
16998         sync
16999         cmp $tmp $dom || error "file data is different"
17000         [ $(stat -c%s $dom) == $size_tmp ] ||
17001                 error "bad size after write: $(stat -c%s $dom) != $size_tmp"
17002         rm $dom $tmp
17003
17004         return 0
17005 }
17006 run_test 270a "DoM: basic functionality tests"
17007
17008 test_270b() {
17009         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17010                 skip "Need MDS version at least 2.10.55"
17011
17012         local dom=$DIR/$tdir/dom_file
17013         local max_size=1048576
17014
17015         mkdir -p $DIR/$tdir
17016         $LFS setstripe -E $max_size -L mdt $dom
17017
17018         # truncate over the limit
17019         $TRUNCATE $dom $(($max_size + 1)) &&
17020                 error "successful truncate over the maximum size"
17021         # write over the limit
17022         dd if=/dev/zero of=$dom bs=$max_size seek=1 count=1 &&
17023                 error "successful write over the maximum size"
17024         # append over the limit
17025         dd if=/dev/zero of=$dom bs=$(($max_size - 3)) count=1
17026         echo "12345" >> $dom && error "successful append over the maximum size"
17027         rm $dom
17028
17029         return 0
17030 }
17031 run_test 270b "DoM: maximum size overflow checks for DoM-only file"
17032
17033 test_270c() {
17034         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17035                 skip "Need MDS version at least 2.10.55"
17036
17037         mkdir -p $DIR/$tdir
17038         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17039
17040         # check files inherit DoM EA
17041         touch $DIR/$tdir/first
17042         [ $($LFS getstripe -L $DIR/$tdir/first) == "mdt" ] ||
17043                 error "bad pattern"
17044         [ $($LFS getstripe -c $DIR/$tdir/first) == 0 ] ||
17045                 error "bad stripe count"
17046         [ $($LFS getstripe -S $DIR/$tdir/first) == 1048576 ] ||
17047                 error "bad stripe size"
17048
17049         # check directory inherits DoM EA and uses it as default
17050         mkdir $DIR/$tdir/subdir
17051         touch $DIR/$tdir/subdir/second
17052         [ $($LFS getstripe -L $DIR/$tdir/subdir/second) == "mdt" ] ||
17053                 error "bad pattern in sub-directory"
17054         [ $($LFS getstripe -c $DIR/$tdir/subdir/second) == 0 ] ||
17055                 error "bad stripe count in sub-directory"
17056         [ $($LFS getstripe -S $DIR/$tdir/subdir/second) == 1048576 ] ||
17057                 error "bad stripe size in sub-directory"
17058         return 0
17059 }
17060 run_test 270c "DoM: DoM EA inheritance tests"
17061
17062 test_270d() {
17063         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17064                 skip "Need MDS version at least 2.10.55"
17065
17066         mkdir -p $DIR/$tdir
17067         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17068
17069         # inherit default DoM striping
17070         mkdir $DIR/$tdir/subdir
17071         touch $DIR/$tdir/subdir/f1
17072
17073         # change default directory striping
17074         $LFS setstripe -c 1 $DIR/$tdir/subdir
17075         touch $DIR/$tdir/subdir/f2
17076         [ $($LFS getstripe -c $DIR/$tdir/subdir/f2) == 1 ] ||
17077                 error "wrong default striping in file 2"
17078         [ $($LFS getstripe -L $DIR/$tdir/subdir/f2) == "raid0" ] ||
17079                 error "bad pattern in file 2"
17080         return 0
17081 }
17082 run_test 270d "DoM: change striping from DoM to RAID0"
17083
17084 test_270e() {
17085         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17086                 skip "Need MDS version at least 2.10.55"
17087
17088         mkdir -p $DIR/$tdir/dom
17089         mkdir -p $DIR/$tdir/norm
17090         DOMFILES=20
17091         NORMFILES=10
17092         $LFS setstripe -E 1M -L mdt $DIR/$tdir/dom
17093         $LFS setstripe -i 0 -S 2M $DIR/$tdir/norm
17094
17095         createmany -o $DIR/$tdir/dom/dom- $DOMFILES
17096         createmany -o $DIR/$tdir/norm/norm- $NORMFILES
17097
17098         # find DoM files by layout
17099         NUM=$($LFS find -L mdt -type f $DIR/$tdir 2>/dev/null | wc -l)
17100         [ $NUM -eq  $DOMFILES ] ||
17101                 error "lfs find -L: found $NUM, expected $DOMFILES"
17102         echo "Test 1: lfs find 20 DOM files by layout: OK"
17103
17104         # there should be 1 dir with default DOM striping
17105         NUM=$($LFS find -L mdt -type d $DIR/$tdir 2>/dev/null | wc -l)
17106         [ $NUM -eq  1 ] ||
17107                 error "lfs find -L: found $NUM, expected 1 dir"
17108         echo "Test 2: lfs find 1 DOM dir by layout: OK"
17109
17110         # find DoM files by stripe size
17111         NUM=$($LFS find -S -1200K -type f $DIR/$tdir 2>/dev/null | wc -l)
17112         [ $NUM -eq  $DOMFILES ] ||
17113                 error "lfs find -S: found $NUM, expected $DOMFILES"
17114         echo "Test 4: lfs find 20 DOM files by stripe size: OK"
17115
17116         # find files by stripe offset except DoM files
17117         NUM=$($LFS find -i 0 -type f $DIR/$tdir 2>/dev/null | wc -l)
17118         [ $NUM -eq  $NORMFILES ] ||
17119                 error "lfs find -i: found $NUM, expected $NORMFILES"
17120         echo "Test 5: lfs find no DOM files by stripe index: OK"
17121         return 0
17122 }
17123 run_test 270e "DoM: lfs find with DoM files test"
17124
17125 test_270f() {
17126         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17127                 skip "Need MDS version at least 2.10.55"
17128
17129         local mdtname=${FSNAME}-MDT0000-mdtlov
17130         local dom=$DIR/$tdir/dom_file
17131         local dom_limit_saved=$(do_facet mds1 $LCTL get_param -n \
17132                                                 lod.$mdtname.dom_stripesize)
17133         local dom_limit=131072
17134
17135         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=$dom_limit
17136         local dom_current=$(do_facet mds1 $LCTL get_param -n \
17137                                                 lod.$mdtname.dom_stripesize)
17138         [ ${dom_limit} -eq ${dom_current} ] ||
17139                 error "Cannot change per-MDT DoM stripe limit to $dom_limit"
17140
17141         $LFS mkdir -i 0 -c 1 $DIR/$tdir
17142         $LFS setstripe -d $DIR/$tdir
17143         $LFS setstripe -E $dom_limit -L mdt $DIR/$tdir ||
17144                 error "Can't set directory default striping"
17145
17146         # exceed maximum stripe size
17147         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
17148                 error "Can't create file with $((dom_limit * 2)) DoM stripe"
17149         [ $($LFS getstripe -S $dom) -eq $((dom_limit * 2)) ] &&
17150                 error "Able to create DoM component size more than LOD limit"
17151
17152         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=0
17153         dom_current=$(do_facet mds1 $LCTL get_param -n \
17154                                                 lod.$mdtname.dom_stripesize)
17155         [ 0 -eq ${dom_current} ] ||
17156                 error "Can't set zero DoM stripe limit"
17157         rm $dom
17158
17159         # attempt to create DoM file on server with disabled DoM should
17160         # remove DoM entry from layout and be succeed
17161         $LFS setstripe -E $dom_limit -L mdt -E -1 $dom ||
17162                 error "Can't create DoM file (DoM is disabled)"
17163         [ $($LFS getstripe -L $dom) == "mdt" ] &&
17164                 error "File has DoM component while DoM is disabled"
17165         rm $dom
17166
17167         # attempt to create DoM file with only DoM stripe should return error
17168         $LFS setstripe -E $dom_limit -L mdt $dom &&
17169                 error "Able to create DoM-only file while DoM is disabled"
17170
17171         # too low values to be aligned with smallest stripe size 64K
17172         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=30000
17173         dom_current=$(do_facet mds1 $LCTL get_param -n \
17174                                                 lod.$mdtname.dom_stripesize)
17175         [ 30000 -eq ${dom_current} ] &&
17176                 error "Can set too small DoM stripe limit"
17177
17178         # 64K is a minimal stripe size in Lustre, expect limit of that size
17179         [ 65536 -eq ${dom_current} ] ||
17180                 error "Limit is not set to 64K but ${dom_current}"
17181
17182         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=2147483648
17183         dom_current=$(do_facet mds1 $LCTL get_param -n \
17184                                                 lod.$mdtname.dom_stripesize)
17185         echo $dom_current
17186         [ 2147483648 -eq ${dom_current} ] &&
17187                 error "Can set too large DoM stripe limit"
17188
17189         do_facet mds1 $LCTL set_param -n \
17190                                 lod.$mdtname.dom_stripesize=$((dom_limit * 2))
17191         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
17192                 error "Can't create DoM component size after limit change"
17193         do_facet mds1 $LCTL set_param -n \
17194                                 lod.$mdtname.dom_stripesize=$((dom_limit / 2))
17195         $LFS setstripe -E $dom_limit -L mdt ${dom}_big ||
17196                 error "Can't create DoM file after limit decrease"
17197         [ $($LFS getstripe -S ${dom}_big) -eq $((dom_limit / 2)) ] ||
17198                 error "Can create big DoM component after limit decrease"
17199         touch ${dom}_def ||
17200                 error "Can't create file with old default layout"
17201
17202         do_facet mds1 $LCTL set_param -n lod.*.dom_stripesize=$dom_limit_saved
17203         return 0
17204 }
17205 run_test 270f "DoM: maximum DoM stripe size checks"
17206
17207 test_271a() {
17208         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17209                 skip "Need MDS version at least 2.10.55"
17210
17211         local dom=$DIR/$tdir/dom
17212
17213         mkdir -p $DIR/$tdir
17214
17215         $LFS setstripe -E 1024K -L mdt $dom
17216
17217         lctl set_param -n mdc.*.stats=clear
17218         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
17219         cat $dom > /dev/null
17220         local reads=$(lctl get_param -n mdc.*.stats | grep -c ost_read)
17221         [ $reads -eq 0 ] || error "Unexpected $reads READ RPCs"
17222         ls $dom
17223         rm -f $dom
17224 }
17225 run_test 271a "DoM: data is cached for read after write"
17226
17227 test_271b() {
17228         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17229                 skip "Need MDS version at least 2.10.55"
17230
17231         local dom=$DIR/$tdir/dom
17232
17233         mkdir -p $DIR/$tdir
17234
17235         $LFS setstripe -E 1024K -L mdt -E EOF $dom
17236
17237         lctl set_param -n mdc.*.stats=clear
17238         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
17239         cancel_lru_locks mdc
17240         $CHECKSTAT -t file -s 4096 $dom || error "stat #1 fails"
17241         # second stat to check size is cached on client
17242         $CHECKSTAT -t file -s 4096 $dom || error "stat #2 fails"
17243         local gls=$(lctl get_param -n mdc.*.stats | grep -c ldlm_glimpse)
17244         [ $gls -eq 0 ] || error "Unexpected $gls glimpse RPCs"
17245         rm -f $dom
17246 }
17247 run_test 271b "DoM: no glimpse RPC for stat (DoM only file)"
17248
17249 test_271ba() {
17250         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17251                 skip "Need MDS version at least 2.10.55"
17252
17253         local dom=$DIR/$tdir/dom
17254
17255         mkdir -p $DIR/$tdir
17256
17257         $LFS setstripe -E 1024K -L mdt -E EOF $dom
17258
17259         lctl set_param -n mdc.*.stats=clear
17260         lctl set_param -n osc.*.stats=clear
17261         dd if=/dev/zero of=$dom bs=2048K count=1 || return 1
17262         cancel_lru_locks mdc
17263         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
17264         # second stat to check size is cached on client
17265         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
17266         local gls=$(lctl get_param -n mdc.*.stats | grep -c ldlm_glimpse)
17267         [ $gls == 0 ] || error "Unexpected $gls glimpse RPCs"
17268         local gls=$(lctl get_param -n osc.*.stats | grep -c ldlm_glimpse)
17269         [ $gls == 0 ] || error "Unexpected $gls OSC glimpse RPCs"
17270         rm -f $dom
17271 }
17272 run_test 271ba "DoM: no glimpse RPC for stat (combined file)"
17273
17274
17275 get_mdc_stats() {
17276         local mdtidx=$1
17277         local param=$2
17278         local mdt=MDT$(printf %04x $mdtidx)
17279
17280         if [ -z $param ]; then
17281                 lctl get_param -n mdc.*$mdt*.stats
17282         else
17283                 lctl get_param -n mdc.*$mdt*.stats | awk "/$param/"'{print $2}'
17284         fi
17285 }
17286
17287 test_271c() {
17288         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17289                 skip "Need MDS version at least 2.10.55"
17290
17291         local dom=$DIR/$tdir/dom
17292
17293         mkdir -p $DIR/$tdir
17294
17295         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17296
17297         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
17298         local facet=mds$((mdtidx + 1))
17299
17300         cancel_lru_locks mdc
17301         do_facet $facet lctl set_param -n mdt.*.dom_lock=0
17302         createmany -o $dom 1000
17303         lctl set_param -n mdc.*.stats=clear
17304         smalliomany -w $dom 1000 200
17305         get_mdc_stats $mdtidx
17306         local enq=$(get_mdc_stats $mdtidx ldlm_ibits_enqueue)
17307         # Each file has 1 open, 1 IO enqueues, total 2000
17308         # but now we have also +1 getxattr for security.capability, total 3000
17309         [ $enq -ge 2000 ] || error "Too few enqueues $enq, expected > 2000"
17310         unlinkmany $dom 1000
17311
17312         cancel_lru_locks mdc
17313         do_facet $facet lctl set_param -n mdt.*.dom_lock=1
17314         createmany -o $dom 1000
17315         lctl set_param -n mdc.*.stats=clear
17316         smalliomany -w $dom 1000 200
17317         local enq_2=$(get_mdc_stats $mdtidx ldlm_ibits_enqueue)
17318         # Expect to see reduced amount of RPCs by 1000 due to single enqueue
17319         # for OPEN and IO lock.
17320         [ $((enq - enq_2)) -ge 1000 ] ||
17321                 error "Too many enqueues $enq_2, expected about $((enq - 1000))"
17322         unlinkmany $dom 1000
17323         return 0
17324 }
17325 run_test 271c "DoM: IO lock at open saves enqueue RPCs"
17326
17327 cleanup_271def_tests() {
17328         trap 0
17329         rm -f $1
17330 }
17331
17332 test_271d() {
17333         [ $MDS1_VERSION -lt $(version_code 2.10.57) ] &&
17334                 skip "Need MDS version at least 2.10.57"
17335
17336         local dom=$DIR/$tdir/dom
17337         local tmp=$TMP/$tfile
17338         trap "cleanup_271def_tests $tmp" EXIT
17339
17340         mkdir -p $DIR/$tdir
17341
17342         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17343
17344         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
17345
17346         cancel_lru_locks mdc
17347         dd if=/dev/urandom of=$tmp bs=1000 count=1
17348         dd if=$tmp of=$dom bs=1000 count=1
17349         cancel_lru_locks mdc
17350
17351         cat /etc/hosts >> $tmp
17352         lctl set_param -n mdc.*.stats=clear
17353
17354         # append data to the same file it should update local page
17355         echo "Append to the same page"
17356         cat /etc/hosts >> $dom
17357         local num=$(get_mdc_stats $mdtidx ost_read)
17358         local ra=$(get_mdc_stats $mdtidx req_active)
17359         local rw=$(get_mdc_stats $mdtidx req_waittime)
17360
17361         [ -z $num ] || error "$num READ RPC occured"
17362         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17363         echo "... DONE"
17364
17365         # compare content
17366         cmp $tmp $dom || error "file miscompare"
17367
17368         cancel_lru_locks mdc
17369         lctl set_param -n mdc.*.stats=clear
17370
17371         echo "Open and read file"
17372         cat $dom > /dev/null
17373         local num=$(get_mdc_stats $mdtidx ost_read)
17374         local ra=$(get_mdc_stats $mdtidx req_active)
17375         local rw=$(get_mdc_stats $mdtidx req_waittime)
17376
17377         [ -z $num ] || error "$num READ RPC occured"
17378         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17379         echo "... DONE"
17380
17381         # compare content
17382         cmp $tmp $dom || error "file miscompare"
17383
17384         return 0
17385 }
17386 run_test 271d "DoM: read on open (1K file in reply buffer)"
17387
17388 test_271e() {
17389         [ $MDS1_VERSION -lt $(version_code 2.10.57) ] &&
17390                 skip "Need MDS version at least 2.10.57"
17391
17392         local dom=$DIR/$tdir/dom
17393         local tmp=$TMP/${tfile}.data
17394         trap "cleanup_271def_tests $tmp" EXIT
17395
17396         mkdir -p $DIR/$tdir
17397
17398         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17399
17400         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
17401
17402         cancel_lru_locks mdc
17403         dd if=/dev/urandom of=$tmp bs=30K count=1
17404         dd if=$tmp of=$dom bs=30K count=1
17405         cancel_lru_locks mdc
17406         cat /etc/hosts >> $tmp
17407         lctl set_param -n mdc.*.stats=clear
17408
17409         echo "Append to the same page"
17410         cat /etc/hosts >> $dom
17411
17412         local num=$(get_mdc_stats $mdtidx ost_read)
17413         local ra=$(get_mdc_stats $mdtidx req_active)
17414         local rw=$(get_mdc_stats $mdtidx req_waittime)
17415
17416         [ -z $num ] || error "$num READ RPC occured"
17417         # Reply buffer can be adjusted for larger buffer by resend
17418         echo "... DONE with $((ra - rw)) resends"
17419
17420         # compare content
17421         cmp $tmp $dom || error "file miscompare"
17422
17423         cancel_lru_locks mdc
17424         lctl set_param -n mdc.*.stats=clear
17425
17426         echo "Open and read file"
17427         cat $dom > /dev/null
17428         local num=$(get_mdc_stats $mdtidx ost_read)
17429         local ra=$(get_mdc_stats $mdtidx req_active)
17430         local rw=$(get_mdc_stats $mdtidx req_waittime)
17431
17432         [ -z $num ] || error "$num READ RPC occured"
17433         # Reply buffer can be adjusted for larger buffer by resend
17434         echo "... DONE with $((ra - rw)) resends"
17435
17436         # compare content
17437         cmp $tmp $dom || error "file miscompare"
17438
17439         return 0
17440 }
17441 run_test 271e "DoM: read on open (30K file with reply buffer adjusting)"
17442
17443 test_271f() {
17444         [ $MDS1_VERSION -lt $(version_code 2.10.57) ] &&
17445                 skip "Need MDS version at least 2.10.57"
17446
17447         local dom=$DIR/$tdir/dom
17448         local tmp=$TMP/$tfile
17449         trap "cleanup_271def_tests $tmp" EXIT
17450
17451         mkdir -p $DIR/$tdir
17452
17453         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17454
17455         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
17456
17457         cancel_lru_locks mdc
17458         dd if=/dev/urandom of=$tmp bs=200000 count=1
17459         dd if=$tmp of=$dom bs=200000 count=1
17460         cancel_lru_locks mdc
17461         cat /etc/hosts >> $tmp
17462         lctl set_param -n mdc.*.stats=clear
17463
17464         echo "Append to the same page"
17465         cat /etc/hosts >> $dom
17466         local num=$(get_mdc_stats $mdtidx ost_read)
17467         local ra=$(get_mdc_stats $mdtidx req_active)
17468         local rw=$(get_mdc_stats $mdtidx req_waittime)
17469
17470         [ -z $num ] || error "$num READ RPC occured"
17471         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17472         echo "... DONE"
17473
17474         # compare content
17475         cmp $tmp $dom || error "file miscompare"
17476
17477         cancel_lru_locks mdc
17478         lctl set_param -n mdc.*.stats=clear
17479
17480         echo "Open and read file"
17481         cat $dom > /dev/null
17482         local num=$(get_mdc_stats $mdtidx ost_read)
17483         local ra=$(get_mdc_stats $mdtidx req_active)
17484         local rw=$(get_mdc_stats $mdtidx req_waittime)
17485
17486         [ $num -eq 1 ] || error "expect 1 READ RPC, $num occured"
17487         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17488         echo "... DONE"
17489
17490         # compare content
17491         cmp $tmp $dom || error "file miscompare"
17492
17493         return 0
17494 }
17495 run_test 271f "DoM: read on open (200K file and read tail)"
17496
17497 test_272a() {
17498         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
17499                 skip "Need MDS version at least 2.11.50"
17500
17501         local dom=$DIR/$tdir/dom
17502         mkdir -p $DIR/$tdir
17503
17504         $LFS setstripe -E 256K -L mdt -E -1 -c1 $dom
17505         dd if=/dev/urandom of=$dom bs=512K count=1 ||
17506                 error "failed to write data into $dom"
17507         local old_md5=$(md5sum $dom)
17508
17509         $LFS migrate -E 256K -L mdt -E -1 -c2 $dom ||
17510                 error "failed to migrate to the same DoM component"
17511
17512         local new_md5=$(md5sum $dom)
17513
17514         [ "$old_md5" == "$new_md5" ] ||
17515                 error "md5sum differ: $old_md5, $new_md5"
17516
17517         [ $($LFS getstripe -c $dom) -eq 2 ] ||
17518                 error "migrate stripe count bad: $(LFS getstripe -c $dom) != 2"
17519 }
17520 run_test 272a "DoM migration: new layout with the same DOM component"
17521
17522 test_272b() {
17523         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
17524                 skip "Need MDS version at least 2.11.50"
17525
17526         local dom=$DIR/$tdir/dom
17527         mkdir -p $DIR/$tdir
17528         $LFS setstripe -E 1M -L mdt -E -1 -c1 $dom
17529
17530         local mdtidx=$($LFS getstripe -m $dom)
17531         local mdtname=MDT$(printf %04x $mdtidx)
17532         local facet=mds$((mdtidx + 1))
17533
17534         local mdtfree1=$(do_facet $facet \
17535                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17536         dd if=/dev/urandom of=$dom bs=2M count=1 ||
17537                 error "failed to write data into $dom"
17538         local old_md5=$(md5sum $dom)
17539         cancel_lru_locks mdc
17540         local mdtfree1=$(do_facet $facet \
17541                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17542
17543         $LFS migrate -c2 $dom ||
17544                 error "failed to migrate to the new composite layout"
17545         [ $($LFS getstripe -L $dom) == 'mdt' ] &&
17546                 error "MDT stripe was not removed"
17547
17548         cancel_lru_locks mdc
17549         local new_md5=$(md5sum $dom)
17550         [ "$old_md5" != "$new_md5" ] &&
17551                 error "$old_md5 != $new_md5"
17552
17553         # Skip free space checks with ZFS
17554         if [ "$(facet_fstype $facet)" != "zfs" ]; then
17555                 local mdtfree2=$(do_facet $facet \
17556                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17557                 [ $mdtfree2 -gt $mdtfree1 ] ||
17558                         error "MDT space is not freed after migration"
17559         fi
17560         return 0
17561 }
17562 run_test 272b "DoM migration: DOM file to the OST-striped file (plain)"
17563
17564 test_272c() {
17565         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
17566                 skip "Need MDS version at least 2.11.50"
17567
17568         local dom=$DIR/$tdir/$tfile
17569         mkdir -p $DIR/$tdir
17570         $LFS setstripe -E 1M -L mdt -E -1 -c1 $dom
17571
17572         local mdtidx=$($LFS getstripe -m $dom)
17573         local mdtname=MDT$(printf %04x $mdtidx)
17574         local facet=mds$((mdtidx + 1))
17575
17576         dd if=/dev/urandom of=$dom bs=2M count=1 oflag=direct ||
17577                 error "failed to write data into $dom"
17578         local old_md5=$(md5sum $dom)
17579         cancel_lru_locks mdc
17580         local mdtfree1=$(do_facet $facet \
17581                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17582
17583         $LFS migrate -E 2M -c1 -E -1 -c2 $dom ||
17584                 error "failed to migrate to the new composite layout"
17585         [ $($LFS getstripe -L $dom) == 'mdt' ] &&
17586                 error "MDT stripe was not removed"
17587
17588         cancel_lru_locks mdc
17589         local new_md5=$(md5sum $dom)
17590         [ "$old_md5" != "$new_md5" ] &&
17591                 error "$old_md5 != $new_md5"
17592
17593         # Skip free space checks with ZFS
17594         if [ "$(facet_fstype $facet)" != "zfs" ]; then
17595                 local mdtfree2=$(do_facet $facet \
17596                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17597                 [ $mdtfree2 -gt $mdtfree1 ] ||
17598                         error "MDS space is not freed after migration"
17599         fi
17600         return 0
17601 }
17602 run_test 272c "DoM migration: DOM file to the OST-striped file (composite)"
17603
17604 test_273a() {
17605         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
17606                 skip "Need MDS version at least 2.11.50"
17607
17608         # Layout swap cannot be done if either file has DOM component,
17609         # this will never be supported, migration should be used instead
17610
17611         local dom=$DIR/$tdir/$tfile
17612         mkdir -p $DIR/$tdir
17613
17614         $LFS setstripe -c2 ${dom}_plain
17615         $LFS setstripe -E 1M -L mdt -E -1 -c2 ${dom}_dom
17616         $LFS swap_layouts ${dom}_plain ${dom}_dom &&
17617                 error "can swap layout with DoM component"
17618         $LFS swap_layouts ${dom}_dom ${dom}_plain &&
17619                 error "can swap layout with DoM component"
17620
17621         $LFS setstripe -E 1M -c1 -E -1 -c2 ${dom}_comp
17622         $LFS swap_layouts ${dom}_comp ${dom}_dom &&
17623                 error "can swap layout with DoM component"
17624         $LFS swap_layouts ${dom}_dom ${dom}_comp &&
17625                 error "can swap layout with DoM component"
17626         return 0
17627 }
17628 run_test 273a "DoM: layout swapping should fail with DOM"
17629
17630 test_275() {
17631         remote_ost_nodsh && skip "remote OST with nodsh"
17632         [ $OST1_VERSION -lt $(version_code 2.10.57) ] &&
17633                 skip "Need OST version >= 2.10.57"
17634
17635         local file=$DIR/$tfile
17636         local oss
17637
17638         oss=$(comma_list $(osts_nodes))
17639
17640         dd if=/dev/urandom of=$file bs=1M count=2 ||
17641                 error "failed to create a file"
17642         cancel_lru_locks osc
17643
17644         #lock 1
17645         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
17646                 error "failed to read a file"
17647
17648 #define OBD_FAIL_LDLM_PAUSE_CANCEL2      0x31f
17649         $LCTL set_param fail_loc=0x8000031f
17650
17651         cancel_lru_locks osc &
17652         sleep 1
17653
17654 #define OBD_FAIL_LDLM_PROLONG_PAUSE      0x32b
17655         do_nodes $oss $LCTL set_param fail_loc=0x8000032b
17656         #IO takes another lock, but matches the PENDING one
17657         #and places it to the IO RPC
17658         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
17659                 error "failed to read a file with PENDING lock"
17660 }
17661 run_test 275 "Read on a canceled duplicate lock"
17662
17663 test_276() {
17664         remote_ost_nodsh && skip "remote OST with nodsh"
17665         local pid
17666
17667         do_facet ost1 "(while true; do \
17668                 $LCTL get_param obdfilter.*.filesfree > /dev/null 2>&1; \
17669                 done) & pid=\\\$!; echo \\\$pid > $TMP/sanity_276_pid" &
17670         pid=$!
17671
17672         for LOOP in $(seq 20); do
17673                 stop ost1
17674                 start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
17675         done
17676         kill -9 $pid
17677         do_facet ost1 "pid=\\\$(cat $TMP/sanity_276_pid); kill -9 \\\$pid; \
17678                 rm $TMP/sanity_276_pid"
17679 }
17680 run_test 276 "Race between mount and obd_statfs"
17681
17682 cleanup_test_300() {
17683         trap 0
17684         umask $SAVE_UMASK
17685 }
17686 test_striped_dir() {
17687         local mdt_index=$1
17688         local stripe_count
17689         local stripe_index
17690
17691         mkdir -p $DIR/$tdir
17692
17693         SAVE_UMASK=$(umask)
17694         trap cleanup_test_300 RETURN EXIT
17695
17696         $LFS setdirstripe -i $mdt_index -c 2 -H all_char -o 755 \
17697                                                 $DIR/$tdir/striped_dir ||
17698                 error "set striped dir error"
17699
17700         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
17701         [ "$mode" = "755" ] || error "expect 755 got $mode"
17702
17703         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
17704                 error "getdirstripe failed"
17705         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
17706         if [ "$stripe_count" != "2" ]; then
17707                 error "1:stripe_count is $stripe_count, expect 2"
17708         fi
17709         stripe_count=$($LFS getdirstripe -T $DIR/$tdir/striped_dir)
17710         if [ "$stripe_count" != "2" ]; then
17711                 error "2:stripe_count is $stripe_count, expect 2"
17712         fi
17713
17714         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
17715         if [ "$stripe_index" != "$mdt_index" ]; then
17716                 error "stripe_index is $stripe_index, expect $mdt_index"
17717         fi
17718
17719         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
17720                 error "nlink error after create striped dir"
17721
17722         mkdir $DIR/$tdir/striped_dir/a
17723         mkdir $DIR/$tdir/striped_dir/b
17724
17725         stat $DIR/$tdir/striped_dir/a ||
17726                 error "create dir under striped dir failed"
17727         stat $DIR/$tdir/striped_dir/b ||
17728                 error "create dir under striped dir failed"
17729
17730         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
17731                 error "nlink error after mkdir"
17732
17733         rmdir $DIR/$tdir/striped_dir/a
17734         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
17735                 error "nlink error after rmdir"
17736
17737         rmdir $DIR/$tdir/striped_dir/b
17738         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
17739                 error "nlink error after rmdir"
17740
17741         chattr +i $DIR/$tdir/striped_dir
17742         createmany -o $DIR/$tdir/striped_dir/f 10 &&
17743                 error "immutable flags not working under striped dir!"
17744         chattr -i $DIR/$tdir/striped_dir
17745
17746         rmdir $DIR/$tdir/striped_dir ||
17747                 error "rmdir striped dir error"
17748
17749         cleanup_test_300
17750
17751         true
17752 }
17753
17754 test_300a() {
17755         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
17756                 skip "skipped for lustre < 2.7.0"
17757         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17758         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17759
17760         test_striped_dir 0 || error "failed on striped dir on MDT0"
17761         test_striped_dir 1 || error "failed on striped dir on MDT0"
17762 }
17763 run_test 300a "basic striped dir sanity test"
17764
17765 test_300b() {
17766         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
17767                 skip "skipped for lustre < 2.7.0"
17768         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17769         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17770
17771         local i
17772         local mtime1
17773         local mtime2
17774         local mtime3
17775
17776         test_mkdir $DIR/$tdir || error "mkdir fail"
17777         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17778                 error "set striped dir error"
17779         for i in {0..9}; do
17780                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
17781                 sleep 1
17782                 touch $DIR/$tdir/striped_dir/file_$i || error "touch error $i"
17783                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
17784                 [ $mtime1 -eq $mtime2 ] && error "mtime unchanged after create"
17785                 sleep 1
17786                 rm -f $DIR/$tdir/striped_dir/file_$i || error "unlink error $i"
17787                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
17788                 [ $mtime2 -eq $mtime3 ] && error "mtime unchanged after unlink"
17789         done
17790         true
17791 }
17792 run_test 300b "check ctime/mtime for striped dir"
17793
17794 test_300c() {
17795         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
17796                 skip "skipped for lustre < 2.7.0"
17797         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17798         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17799
17800         local file_count
17801
17802         mkdir -p $DIR/$tdir
17803         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
17804                 error "set striped dir error"
17805
17806         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
17807                 error "chown striped dir failed"
17808
17809         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
17810                 error "create 5k files failed"
17811
17812         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
17813
17814         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
17815
17816         rm -rf $DIR/$tdir
17817 }
17818 run_test 300c "chown && check ls under striped directory"
17819
17820 test_300d() {
17821         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
17822                 skip "skipped for lustre < 2.7.0"
17823         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17824         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17825
17826         local stripe_count
17827         local file
17828
17829         mkdir -p $DIR/$tdir
17830         $LFS setstripe -c 2 $DIR/$tdir
17831
17832         #local striped directory
17833         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17834                 error "set striped dir error"
17835         createmany -o $DIR/$tdir/striped_dir/f 10 ||
17836                 error "create 10 files failed"
17837
17838         #remote striped directory
17839         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
17840                 error "set striped dir error"
17841         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
17842                 error "create 10 files failed"
17843
17844         for file in $(find $DIR/$tdir); do
17845                 stripe_count=$($LFS getstripe -c $file)
17846                 [ $stripe_count -eq 2 ] ||
17847                         error "wrong stripe $stripe_count for $file"
17848         done
17849
17850         rm -rf $DIR/$tdir
17851 }
17852 run_test 300d "check default stripe under striped directory"
17853
17854 test_300e() {
17855         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
17856                 skip "Need MDS version at least 2.7.55"
17857         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17858         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17859
17860         local stripe_count
17861         local file
17862
17863         mkdir -p $DIR/$tdir
17864
17865         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17866                 error "set striped dir error"
17867
17868         touch $DIR/$tdir/striped_dir/a
17869         touch $DIR/$tdir/striped_dir/b
17870         touch $DIR/$tdir/striped_dir/c
17871
17872         mkdir $DIR/$tdir/striped_dir/dir_a
17873         mkdir $DIR/$tdir/striped_dir/dir_b
17874         mkdir $DIR/$tdir/striped_dir/dir_c
17875
17876         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_a ||
17877                 error "set striped adir under striped dir error"
17878
17879         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_b ||
17880                 error "set striped bdir under striped dir error"
17881
17882         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_c ||
17883                 error "set striped cdir under striped dir error"
17884
17885         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
17886                 error "rename dir under striped dir fails"
17887
17888         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
17889                 error "rename dir under different stripes fails"
17890
17891         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
17892                 error "rename file under striped dir should succeed"
17893
17894         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
17895                 error "rename dir under striped dir should succeed"
17896
17897         rm -rf $DIR/$tdir
17898 }
17899 run_test 300e "check rename under striped directory"
17900
17901 test_300f() {
17902         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17903         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17904         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
17905                 skip "Need MDS version at least 2.7.55"
17906
17907         local stripe_count
17908         local file
17909
17910         rm -rf $DIR/$tdir
17911         mkdir -p $DIR/$tdir
17912
17913         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17914                 error "set striped dir error"
17915
17916         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir1 ||
17917                 error "set striped dir error"
17918
17919         touch $DIR/$tdir/striped_dir/a
17920         mkdir $DIR/$tdir/striped_dir/dir_a
17921         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
17922                 error "create striped dir under striped dir fails"
17923
17924         touch $DIR/$tdir/striped_dir1/b
17925         mkdir $DIR/$tdir/striped_dir1/dir_b
17926         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
17927                 error "create striped dir under striped dir fails"
17928
17929         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
17930                 error "rename dir under different striped dir should fail"
17931
17932         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
17933                 error "rename striped dir under diff striped dir should fail"
17934
17935         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
17936                 error "rename file under diff striped dirs fails"
17937
17938         rm -rf $DIR/$tdir
17939 }
17940 run_test 300f "check rename cross striped directory"
17941
17942 test_300_check_default_striped_dir()
17943 {
17944         local dirname=$1
17945         local default_count=$2
17946         local default_index=$3
17947         local stripe_count
17948         local stripe_index
17949         local dir_stripe_index
17950         local dir
17951
17952         echo "checking $dirname $default_count $default_index"
17953         $LFS setdirstripe -D -c $default_count -i $default_index \
17954                                 -t all_char $DIR/$tdir/$dirname ||
17955                 error "set default stripe on striped dir error"
17956         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
17957         [ $stripe_count -eq $default_count ] ||
17958                 error "expect $default_count get $stripe_count for $dirname"
17959
17960         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
17961         [ $stripe_index -eq $default_index ] ||
17962                 error "expect $default_index get $stripe_index for $dirname"
17963
17964         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
17965                                                 error "create dirs failed"
17966
17967         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
17968         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
17969         for dir in $(find $DIR/$tdir/$dirname/*); do
17970                 stripe_count=$($LFS getdirstripe -c $dir)
17971                 [ $stripe_count -eq $default_count ] ||
17972                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
17973                 error "stripe count $default_count != $stripe_count for $dir"
17974
17975                 stripe_index=$($LFS getdirstripe -i $dir)
17976                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
17977                         error "$stripe_index != $default_index for $dir"
17978
17979                 #check default stripe
17980                 stripe_count=$($LFS getdirstripe -D -c $dir)
17981                 [ $stripe_count -eq $default_count ] ||
17982                 error "default count $default_count != $stripe_count for $dir"
17983
17984                 stripe_index=$($LFS getdirstripe -D -i $dir)
17985                 [ $stripe_index -eq $default_index ] ||
17986                 error "default index $default_index != $stripe_index for $dir"
17987         done
17988         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
17989 }
17990
17991 test_300g() {
17992         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17993         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
17994                 skip "Need MDS version at least 2.7.55"
17995
17996         local dir
17997         local stripe_count
17998         local stripe_index
17999
18000         mkdir $DIR/$tdir
18001         mkdir $DIR/$tdir/normal_dir
18002
18003         #Checking when client cache stripe index
18004         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
18005         $LFS setdirstripe -D -i1 $DIR/$tdir/striped_dir ||
18006                 error "create striped_dir failed"
18007
18008         $LFS setdirstripe -i0 $DIR/$tdir/striped_dir/dir0 ||
18009                 error "create dir0 fails"
18010         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir0)
18011         [ $stripe_index -eq 0 ] ||
18012                 error "dir0 expect index 0 got $stripe_index"
18013
18014         mkdir $DIR/$tdir/striped_dir/dir1 ||
18015                 error "create dir1 fails"
18016         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir1)
18017         [ $stripe_index -eq 1 ] ||
18018                 error "dir1 expect index 1 got $stripe_index"
18019
18020         #check default stripe count/stripe index
18021         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
18022         test_300_check_default_striped_dir normal_dir 1 0
18023         test_300_check_default_striped_dir normal_dir 2 1
18024         test_300_check_default_striped_dir normal_dir 2 -1
18025
18026         #delete default stripe information
18027         echo "delete default stripeEA"
18028         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
18029                 error "set default stripe on striped dir error"
18030
18031         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
18032         for dir in $(find $DIR/$tdir/normal_dir/*); do
18033                 stripe_count=$($LFS getdirstripe -c $dir)
18034                 [ $stripe_count -eq 0 ] ||
18035                         error "expect 1 get $stripe_count for $dir"
18036                 stripe_index=$($LFS getdirstripe -i $dir)
18037                 [ $stripe_index -eq 0 ] ||
18038                         error "expect 0 get $stripe_index for $dir"
18039         done
18040 }
18041 run_test 300g "check default striped directory for normal directory"
18042
18043 test_300h() {
18044         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18045         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18046                 skip "Need MDS version at least 2.7.55"
18047
18048         local dir
18049         local stripe_count
18050
18051         mkdir $DIR/$tdir
18052         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
18053                 error "set striped dir error"
18054
18055         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
18056         test_300_check_default_striped_dir striped_dir 1 0
18057         test_300_check_default_striped_dir striped_dir 2 1
18058         test_300_check_default_striped_dir striped_dir 2 -1
18059
18060         #delete default stripe information
18061         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
18062                 error "set default stripe on striped dir error"
18063
18064         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
18065         for dir in $(find $DIR/$tdir/striped_dir/*); do
18066                 stripe_count=$($LFS getdirstripe -c $dir)
18067                 [ $stripe_count -eq 0 ] ||
18068                         error "expect 1 get $stripe_count for $dir"
18069         done
18070 }
18071 run_test 300h "check default striped directory for striped directory"
18072
18073 test_300i() {
18074         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18075         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18076         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18077                 skip "Need MDS version at least 2.7.55"
18078
18079         local stripe_count
18080         local file
18081
18082         mkdir $DIR/$tdir
18083
18084         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
18085                 error "set striped dir error"
18086
18087         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
18088                 error "create files under striped dir failed"
18089
18090         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir ||
18091                 error "set striped hashdir error"
18092
18093         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir/d0 ||
18094                 error "create dir0 under hash dir failed"
18095         $LFS setdirstripe -i0 -c$MDSCOUNT -H fnv_1a_64 $DIR/$tdir/hashdir/d1 ||
18096                 error "create dir1 under hash dir failed"
18097
18098         # unfortunately, we need to umount to clear dir layout cache for now
18099         # once we fully implement dir layout, we can drop this
18100         umount_client $MOUNT || error "umount failed"
18101         mount_client $MOUNT || error "mount failed"
18102
18103         $LFS find -H fnv_1a_64 $DIR/$tdir/hashdir
18104         local dircnt=$($LFS find -H fnv_1a_64 $DIR/$tdir/hashdir | wc -l)
18105         [ $dircnt -eq 1 ] || error "lfs find striped dir got:$dircnt,except:1"
18106
18107         #set the stripe to be unknown hash type
18108         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
18109         $LCTL set_param fail_loc=0x1901
18110         for ((i = 0; i < 10; i++)); do
18111                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
18112                         error "stat f-$i failed"
18113                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
18114         done
18115
18116         touch $DIR/$tdir/striped_dir/f0 &&
18117                 error "create under striped dir with unknown hash should fail"
18118
18119         $LCTL set_param fail_loc=0
18120
18121         umount_client $MOUNT || error "umount failed"
18122         mount_client $MOUNT || error "mount failed"
18123
18124         return 0
18125 }
18126 run_test 300i "client handle unknown hash type striped directory"
18127
18128 test_300j() {
18129         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18130         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18131         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18132                 skip "Need MDS version at least 2.7.55"
18133
18134         local stripe_count
18135         local file
18136
18137         mkdir $DIR/$tdir
18138
18139         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
18140         $LCTL set_param fail_loc=0x1702
18141         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
18142                 error "set striped dir error"
18143
18144         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
18145                 error "create files under striped dir failed"
18146
18147         $LCTL set_param fail_loc=0
18148
18149         rm -rf $DIR/$tdir || error "unlink striped dir fails"
18150
18151         return 0
18152 }
18153 run_test 300j "test large update record"
18154
18155 test_300k() {
18156         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18157         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18158         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18159                 skip "Need MDS version at least 2.7.55"
18160
18161         # this test needs a huge transaction
18162         local kb
18163         kb=$(do_facet $SINGLEMDS lctl get_param -n osd*.lustre-MDT0000.kbytestotal)
18164         [ $kb -lt $((1024*1024)) ] && skip "too small mds: $kb"
18165
18166         local stripe_count
18167         local file
18168
18169         mkdir $DIR/$tdir
18170
18171         #define OBD_FAIL_LARGE_STRIPE   0x1703
18172         $LCTL set_param fail_loc=0x1703
18173         $LFS setdirstripe -i 0 -c192 $DIR/$tdir/striped_dir ||
18174                 error "set striped dir error"
18175         $LCTL set_param fail_loc=0
18176
18177         $LFS getdirstripe $DIR/$tdir/striped_dir ||
18178                 error "getstripeddir fails"
18179         rm -rf $DIR/$tdir/striped_dir ||
18180                 error "unlink striped dir fails"
18181
18182         return 0
18183 }
18184 run_test 300k "test large striped directory"
18185
18186 test_300l() {
18187         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18188         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18189         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18190                 skip "Need MDS version at least 2.7.55"
18191
18192         local stripe_index
18193
18194         test_mkdir -p $DIR/$tdir/striped_dir
18195         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
18196                         error "chown $RUNAS_ID failed"
18197         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
18198                 error "set default striped dir failed"
18199
18200         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
18201         $LCTL set_param fail_loc=0x80000158
18202         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
18203
18204         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
18205         [ $stripe_index -eq 1 ] ||
18206                 error "expect 1 get $stripe_index for $dir"
18207 }
18208 run_test 300l "non-root user to create dir under striped dir with stale layout"
18209
18210 test_300m() {
18211         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18212         [ $MDSCOUNT -ge 2 ] && skip_env "Only for single MDT"
18213         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18214                 skip "Need MDS version at least 2.7.55"
18215
18216         mkdir -p $DIR/$tdir/striped_dir
18217         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
18218                 error "set default stripes dir error"
18219
18220         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
18221
18222         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
18223         [ $stripe_count -eq 0 ] ||
18224                         error "expect 0 get $stripe_count for a"
18225
18226         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
18227                 error "set default stripes dir error"
18228
18229         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
18230
18231         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
18232         [ $stripe_count -eq 0 ] ||
18233                         error "expect 0 get $stripe_count for b"
18234
18235         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
18236                 error "set default stripes dir error"
18237
18238         mkdir $DIR/$tdir/striped_dir/c &&
18239                 error "default stripe_index is invalid, mkdir c should fails"
18240
18241         rm -rf $DIR/$tdir || error "rmdir fails"
18242 }
18243 run_test 300m "setstriped directory on single MDT FS"
18244
18245 cleanup_300n() {
18246         local list=$(comma_list $(mdts_nodes))
18247
18248         trap 0
18249         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
18250 }
18251
18252 test_300n() {
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         remote_mds_nodsh && skip "remote MDS with nodsh"
18258
18259         local stripe_index
18260         local list=$(comma_list $(mdts_nodes))
18261
18262         trap cleanup_300n RETURN EXIT
18263         mkdir -p $DIR/$tdir
18264         chmod 777 $DIR/$tdir
18265         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
18266                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
18267                 error "create striped dir succeeds with gid=0"
18268
18269         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
18270         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
18271                 error "create striped dir fails with gid=-1"
18272
18273         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
18274         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
18275                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
18276                 error "set default striped dir succeeds with gid=0"
18277
18278
18279         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
18280         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
18281                 error "set default striped dir fails with gid=-1"
18282
18283
18284         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
18285         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
18286                                         error "create test_dir fails"
18287         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
18288                                         error "create test_dir1 fails"
18289         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
18290                                         error "create test_dir2 fails"
18291         cleanup_300n
18292 }
18293 run_test 300n "non-root user to create dir under striped dir with default EA"
18294
18295 test_300o() {
18296         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18297         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18298         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18299                 skip "Need MDS version at least 2.7.55"
18300
18301         local numfree1
18302         local numfree2
18303
18304         mkdir -p $DIR/$tdir
18305
18306         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
18307         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
18308         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
18309                 skip "not enough free inodes $numfree1 $numfree2"
18310         fi
18311
18312         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
18313         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
18314         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
18315                 skip "not enough free space $numfree1 $numfree2"
18316         fi
18317
18318         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
18319                 error "setdirstripe fails"
18320
18321         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
18322                 error "create dirs fails"
18323
18324         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
18325         ls $DIR/$tdir/striped_dir > /dev/null ||
18326                 error "ls striped dir fails"
18327         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
18328                 error "unlink big striped dir fails"
18329 }
18330 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
18331
18332 test_300p() {
18333         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18334         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18335         remote_mds_nodsh && skip "remote MDS with nodsh"
18336
18337         mkdir -p $DIR/$tdir
18338
18339         #define OBD_FAIL_OUT_ENOSPC     0x1704
18340         do_facet mds2 lctl set_param fail_loc=0x80001704
18341         $LFS setdirstripe -i 0 -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 \
18342                  && error "create striped directory should fail"
18343
18344         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
18345
18346         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
18347         true
18348 }
18349 run_test 300p "create striped directory without space"
18350
18351 test_300q() {
18352         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18353         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18354
18355         local fd=$(free_fd)
18356         local cmd="exec $fd<$tdir"
18357         cd $DIR
18358         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
18359         eval $cmd
18360         cmd="exec $fd<&-"
18361         trap "eval $cmd" EXIT
18362         cd $tdir || error "cd $tdir fails"
18363         rmdir  ../$tdir || error "rmdir $tdir fails"
18364         mkdir local_dir && error "create dir succeeds"
18365         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
18366         eval $cmd
18367         return 0
18368 }
18369 run_test 300q "create remote directory under orphan directory"
18370
18371 test_300r() {
18372         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
18373                 skip "Need MDS version at least 2.7.55" && return
18374         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
18375
18376         mkdir $DIR/$tdir
18377
18378         $LFS setdirstripe -i 0 -c -1 $DIR/$tdir/striped_dir ||
18379                 error "set striped dir error"
18380
18381         $LFS getdirstripe $DIR/$tdir/striped_dir ||
18382                 error "getstripeddir fails"
18383
18384         local stripe_count
18385         stripe_count=$($LFS getdirstripe $DIR/$tdir/striped_dir |
18386                       awk '/lmv_stripe_count:/ { print $2 }')
18387
18388         [ $MDSCOUNT -ne $stripe_count ] &&
18389                 error "wrong stripe count $stripe_count expected $MDSCOUNT"
18390
18391         rm -rf $DIR/$tdir/striped_dir ||
18392                 error "unlink striped dir fails"
18393 }
18394 run_test 300r "test -1 striped directory"
18395
18396 prepare_remote_file() {
18397         mkdir $DIR/$tdir/src_dir ||
18398                 error "create remote source failed"
18399
18400         cp /etc/hosts $DIR/$tdir/src_dir/a ||
18401                  error "cp to remote source failed"
18402         touch $DIR/$tdir/src_dir/a
18403
18404         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
18405                 error "create remote target dir failed"
18406
18407         touch $DIR/$tdir/tgt_dir/b
18408
18409         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
18410                 error "rename dir cross MDT failed!"
18411
18412         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
18413                 error "src_child still exists after rename"
18414
18415         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
18416                 error "missing file(a) after rename"
18417
18418         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
18419                 error "diff after rename"
18420 }
18421
18422 test_310a() {
18423         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 4 MDTs"
18424         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18425
18426         local remote_file=$DIR/$tdir/tgt_dir/b
18427
18428         mkdir -p $DIR/$tdir
18429
18430         prepare_remote_file || error "prepare remote file failed"
18431
18432         #open-unlink file
18433         $OPENUNLINK $remote_file $remote_file ||
18434                 error "openunlink $remote_file failed"
18435         $CHECKSTAT -a $remote_file || error "$remote_file exists"
18436 }
18437 run_test 310a "open unlink remote file"
18438
18439 test_310b() {
18440         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 4 MDTs"
18441         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18442
18443         local remote_file=$DIR/$tdir/tgt_dir/b
18444
18445         mkdir -p $DIR/$tdir
18446
18447         prepare_remote_file || error "prepare remote file failed"
18448
18449         ln $remote_file $DIR/$tfile || error "link failed for remote file"
18450         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
18451         $CHECKSTAT -t file $remote_file || error "check file failed"
18452 }
18453 run_test 310b "unlink remote file with multiple links while open"
18454
18455 test_310c() {
18456         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18457         [[ $MDSCOUNT -lt 4 ]] && skip_env "needs >= 4 MDTs"
18458
18459         local remote_file=$DIR/$tdir/tgt_dir/b
18460
18461         mkdir -p $DIR/$tdir
18462
18463         prepare_remote_file || error "prepare remote file failed"
18464
18465         ln $remote_file $DIR/$tfile || error "link failed for remote file"
18466         multiop_bg_pause $remote_file O_uc ||
18467                         error "mulitop failed for remote file"
18468         MULTIPID=$!
18469         $MULTIOP $DIR/$tfile Ouc
18470         kill -USR1 $MULTIPID
18471         wait $MULTIPID
18472 }
18473 run_test 310c "open-unlink remote file with multiple links"
18474
18475 #LU-4825
18476 test_311() {
18477         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18478         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
18479         [ $MDS1_VERSION -lt $(version_code 2.8.54) ] &&
18480                 skip "lustre < 2.8.54 does not contain LU-4825 fix"
18481         remote_mds_nodsh && skip "remote MDS with nodsh"
18482
18483         local old_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
18484         local mdts=$(comma_list $(mdts_nodes))
18485
18486         mkdir -p $DIR/$tdir
18487         $LFS setstripe -i 0 -c 1 $DIR/$tdir
18488         createmany -o $DIR/$tdir/$tfile. 1000
18489
18490         # statfs data is not real time, let's just calculate it
18491         old_iused=$((old_iused + 1000))
18492
18493         local count=$(do_facet $SINGLEMDS "$LCTL get_param -n \
18494                         osp.*OST0000*MDT0000.create_count")
18495         local max_count=$(do_facet $SINGLEMDS "$LCTL get_param -n \
18496                                 osp.*OST0000*MDT0000.max_create_count")
18497         do_nodes $mdts "$LCTL set_param -n osp.*OST0000*.max_create_count=0"
18498
18499         $LFS setstripe -i 0 $DIR/$tdir/$tfile || error "setstripe failed"
18500         local index=$($LFS getstripe -i $DIR/$tdir/$tfile)
18501         [ $index -ne 0 ] || error "$tfile stripe index is 0"
18502
18503         unlinkmany $DIR/$tdir/$tfile. 1000
18504
18505         do_nodes $mdts "$LCTL set_param -n \
18506                         osp.*OST0000*.max_create_count=$max_count"
18507         [ $MDS1_VERSION -lt $(version_code 2.12.51) ] &&
18508                 do_nodes $mdts "$LCTL set_param -n \
18509                                 osp.*OST0000*.create_count=$count"
18510         do_nodes $mdts "$LCTL get_param osp.*OST0000*.create_count" |
18511                         grep "=0" && error "create_count is zero"
18512
18513         local new_iused
18514         for i in $(seq 120); do
18515                 new_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
18516                 # system may be too busy to destroy all objs in time, use
18517                 # a somewhat small value to not fail autotest
18518                 [ $((old_iused - new_iused)) -gt 400 ] && break
18519                 sleep 1
18520         done
18521
18522         echo "waited $i sec, old Iused $old_iused, new Iused $new_iused"
18523         [ $((old_iused - new_iused)) -gt 400 ] ||
18524                 error "objs not destroyed after unlink"
18525 }
18526 run_test 311 "disable OSP precreate, and unlink should destroy objs"
18527
18528 zfs_oid_to_objid()
18529 {
18530         local ost=$1
18531         local objid=$2
18532
18533         local vdevdir=$(dirname $(facet_vdevice $ost))
18534         local cmd="$ZDB -e -p $vdevdir -ddddd $(facet_device $ost)"
18535         local zfs_zapid=$(do_facet $ost $cmd |
18536                           grep -w "/O/0/d$((objid%32))" -C 5 |
18537                           awk '/Object/{getline; print $1}')
18538         local zfs_objid=$(do_facet $ost $cmd $zfs_zapid |
18539                           awk "/$objid = /"'{printf $3}')
18540
18541         echo $zfs_objid
18542 }
18543
18544 zfs_object_blksz() {
18545         local ost=$1
18546         local objid=$2
18547
18548         local vdevdir=$(dirname $(facet_vdevice $ost))
18549         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
18550         local blksz=$(do_facet $ost $cmd $objid |
18551                       awk '/dblk/{getline; printf $4}')
18552
18553         case "${blksz: -1}" in
18554                 k|K) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024)) ;;
18555                 m|M) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024*1024)) ;;
18556                 *) ;;
18557         esac
18558
18559         echo $blksz
18560 }
18561
18562 test_312() { # LU-4856
18563         remote_ost_nodsh && skip "remote OST with nodsh"
18564         [ "$ost1_FSTYPE" = "zfs" ] ||
18565                 skip_env "the test only applies to zfs"
18566
18567         local max_blksz=$(do_facet ost1 \
18568                           $ZFS get -p recordsize $(facet_device ost1) |
18569                           awk '!/VALUE/{print $3}')
18570
18571         # to make life a little bit easier
18572         $LFS mkdir -c 1 -i 0 $DIR/$tdir
18573         $LFS setstripe -c 1 -i 0 $DIR/$tdir
18574
18575         local tf=$DIR/$tdir/$tfile
18576         touch $tf
18577         local oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18578
18579         # Get ZFS object id
18580         local zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18581         # block size change by sequential overwrite
18582         local bs
18583
18584         for ((bs=$PAGE_SIZE; bs <= max_blksz; bs *= 4)) ; do
18585                 dd if=/dev/zero of=$tf bs=$bs count=1 oflag=sync conv=notrunc
18586
18587                 local blksz=$(zfs_object_blksz ost1 $zfs_objid)
18588                 [ $blksz -eq $bs ] || error "blksz error: $blksz, expected: $bs"
18589         done
18590         rm -f $tf
18591
18592         # block size change by sequential append write
18593         dd if=/dev/zero of=$tf bs=$PAGE_SIZE count=1 oflag=sync conv=notrunc
18594         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18595         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18596         local count
18597
18598         for ((count = 1; count < $((max_blksz / PAGE_SIZE)); count *= 2)); do
18599                 dd if=/dev/zero of=$tf bs=$PAGE_SIZE count=$count seek=$count \
18600                         oflag=sync conv=notrunc
18601
18602                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
18603                 [ $blksz -eq $((2 * count * PAGE_SIZE)) ] ||
18604                         error "blksz error, actual $blksz, " \
18605                                 "expected: 2 * $count * $PAGE_SIZE"
18606         done
18607         rm -f $tf
18608
18609         # random write
18610         touch $tf
18611         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18612         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18613
18614         dd if=/dev/zero of=$tf bs=1K count=1 oflag=sync conv=notrunc
18615         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18616         [ $blksz -eq $PAGE_SIZE ] ||
18617                 error "blksz error: $blksz, expected: $PAGE_SIZE"
18618
18619         dd if=/dev/zero of=$tf bs=64K count=1 oflag=sync conv=notrunc seek=128
18620         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18621         [ $blksz -eq 65536 ] || error "blksz error: $blksz, expected: 64k"
18622
18623         dd if=/dev/zero of=$tf bs=1M count=1 oflag=sync conv=notrunc
18624         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18625         [ $blksz -eq 65536 ] || error "rewrite error: $blksz, expected: 64k"
18626 }
18627 run_test 312 "make sure ZFS adjusts its block size by write pattern"
18628
18629 test_313() {
18630         remote_ost_nodsh && skip "remote OST with nodsh"
18631
18632         local file=$DIR/$tfile
18633
18634         rm -f $file
18635         $LFS setstripe -c 1 -i 0 $file || error "setstripe failed"
18636
18637         # define OBD_FAIL_TGT_RCVD_EIO           0x720
18638         do_facet ost1 "$LCTL set_param fail_loc=0x720"
18639         dd if=/dev/zero of=$file bs=$PAGE_SIZE oflag=direct count=1 &&
18640                 error "write should failed"
18641         do_facet ost1 "$LCTL set_param fail_loc=0"
18642         rm -f $file
18643 }
18644 run_test 313 "io should fail after last_rcvd update fail"
18645
18646 test_314() {
18647         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
18648
18649         $LFS setstripe -c 2 -i 0 $DIR/$tfile || error "setstripe failed"
18650         do_facet ost1 "$LCTL set_param fail_loc=0x720"
18651         rm -f $DIR/$tfile
18652         wait_delete_completed
18653         do_facet ost1 "$LCTL set_param fail_loc=0"
18654 }
18655 run_test 314 "OSP shouldn't fail after last_rcvd update failure"
18656
18657 test_315() { # LU-618
18658         local file=$DIR/$tfile
18659         rm -f $file
18660
18661         $MULTIOP $file oO_CREAT:O_DIRECT:O_RDWR:w4063232c ||
18662                 error "multiop file write failed"
18663         $MULTIOP $file oO_RDONLY:r4063232_c &
18664         PID=$!
18665
18666         sleep 2
18667
18668         local rbytes=$(awk '/read_bytes/ { print $2 }' /proc/$PID/io)
18669         kill -USR1 $PID
18670
18671         [ $rbytes -gt 4000000 ] || error "read is not accounted ($rbytes)"
18672         rm -f $file
18673 }
18674 run_test 315 "read should be accounted"
18675
18676 test_316() {
18677         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
18678         large_xattr_enabled || skip_env "ea_inode feature disabled"
18679
18680         rm -rf $DIR/$tdir/d
18681         mkdir -p $DIR/$tdir/d
18682         chown nobody $DIR/$tdir/d
18683         touch $DIR/$tdir/d/file
18684
18685         $LFS mv -M1 $DIR/$tdir/d || error "lfs mv failed"
18686 }
18687 run_test 316 "lfs mv"
18688
18689 test_317() {
18690         [ $MDS1_VERSION -lt $(version_code 2.11.53) ] &&
18691                 skip "Need MDS version at least 2.11.53"
18692         local trunc_sz
18693         local grant_blk_size
18694
18695         if [ "$(facet_fstype $facet)" == "zfs" ]; then
18696                 skip "LU-10370: no implementation for ZFS" && return
18697         fi
18698
18699         stack_trap "rm -f $DIR/$tfile" EXIT
18700         grant_blk_size=$($LCTL get_param osc.$FSNAME*.import |
18701                         awk '/grant_block_size:/ { print $2; exit; }')
18702         #
18703         # Create File of size 5M. Truncate it to below size's and verify
18704         # blocks count.
18705         #
18706         dd if=/dev/zero of=$DIR/$tfile bs=5M count=1 conv=fsync ||
18707                 error "Create file : $DIR/$tfile"
18708
18709         for trunc_sz in 2097152 4097 4000 509 0; do
18710                 $TRUNCATE $DIR/$tfile $trunc_sz ||
18711                         error "truncate $tfile to $trunc_sz failed"
18712                 local sz=$(stat --format=%s $DIR/$tfile)
18713                 local blk=$(stat --format=%b $DIR/$tfile)
18714                 local trunc_blk=$((((trunc_sz + (grant_blk_size - 1) ) /
18715                                      grant_blk_size) * 8))
18716
18717                 if [[ $blk -ne $trunc_blk ]]; then
18718                         $(which stat) $DIR/$tfile
18719                         error "Expected Block $trunc_blk got $blk for $tfile"
18720                 fi
18721
18722                 $CHECKSTAT -s $trunc_sz $DIR/$tfile ||
18723                         error "Expected Size $trunc_sz got $sz for $tfile"
18724         done
18725
18726         #
18727         # sparse file test
18728         # Create file with a hole and write actual two blocks. Block count
18729         # must be 16.
18730         #
18731         dd if=/dev/zero of=$DIR/$tfile bs=$grant_blk_size count=2 seek=5 \
18732                 conv=fsync || error "Create file : $DIR/$tfile"
18733
18734         # Calculate the final truncate size.
18735         trunc_sz=$(($(stat --format=%s $DIR/$tfile) - (grant_blk_size + 1)))
18736
18737         #
18738         # truncate to size $trunc_sz bytes. Strip the last block
18739         # The block count must drop to 8
18740         #
18741         $TRUNCATE $DIR/$tfile $trunc_sz ||
18742                 error "truncate $tfile to $trunc_sz failed"
18743
18744         local trunc_bsz=$((grant_blk_size / $(stat --format=%B $DIR/$tfile)))
18745         sz=$(stat --format=%s $DIR/$tfile)
18746         blk=$(stat --format=%b $DIR/$tfile)
18747
18748         if [[ $blk -ne $trunc_bsz ]]; then
18749                 $(which stat) $DIR/$tfile
18750                 error "Expected Block $trunc_bsz got $blk for $tfile"
18751         fi
18752
18753         $CHECKSTAT -s $trunc_sz $DIR/$tfile ||
18754                 error "Expected Size $trunc_sz got $sz for $tfile"
18755 }
18756 run_test 317 "Verify blocks get correctly update after truncate"
18757
18758 test_fake_rw() {
18759         local read_write=$1
18760         if [ "$read_write" = "write" ]; then
18761                 local dd_cmd="dd if=/dev/zero of=$DIR/$tfile"
18762         elif [ "$read_write" = "read" ]; then
18763                 local dd_cmd="dd of=/dev/null if=$DIR/$tfile"
18764         else
18765                 error "argument error"
18766         fi
18767
18768         # turn off debug for performance testing
18769         local saved_debug=$($LCTL get_param -n debug)
18770         $LCTL set_param debug=0
18771
18772         $LFS setstripe -c 1 -i 0 $DIR/$tfile
18773
18774         # get ost1 size - lustre-OST0000
18775         local ost1_avail_size=$($LFS df | awk /${ost1_svc}/'{ print $4 }')
18776         local blocks=$((ost1_avail_size/2/1024)) # half avail space by megabytes
18777         [ $blocks -gt 1000 ] && blocks=1000 # 1G in maximum
18778
18779         if [ "$read_write" = "read" ]; then
18780                 truncate -s $(expr 1048576 \* $blocks) $DIR/$tfile
18781         fi
18782
18783         local start_time=$(date +%s.%N)
18784         $dd_cmd bs=1M count=$blocks oflag=sync ||
18785                 error "real dd $read_write error"
18786         local duration=$(bc <<< "$(date +%s.%N) - $start_time")
18787
18788         if [ "$read_write" = "write" ]; then
18789                 rm -f $DIR/$tfile
18790         fi
18791
18792         # define OBD_FAIL_OST_FAKE_RW           0x238
18793         do_facet ost1 $LCTL set_param fail_loc=0x238
18794
18795         local start_time=$(date +%s.%N)
18796         $dd_cmd bs=1M count=$blocks oflag=sync ||
18797                 error "fake dd $read_write error"
18798         local duration_fake=$(bc <<< "$(date +%s.%N) - $start_time")
18799
18800         if [ "$read_write" = "write" ]; then
18801                 # verify file size
18802                 cancel_lru_locks osc
18803                 $CHECKSTAT -t file -s $((blocks * 1024 * 1024)) $DIR/$tfile ||
18804                         error "$tfile size not $blocks MB"
18805         fi
18806         do_facet ost1 $LCTL set_param fail_loc=0
18807
18808         echo "fake $read_write $duration_fake vs. normal $read_write" \
18809                 "$duration in seconds"
18810         [ $(bc <<< "$duration_fake < $duration") -eq 1 ] ||
18811                 error_not_in_vm "fake write is slower"
18812
18813         $LCTL set_param -n debug="$saved_debug"
18814         rm -f $DIR/$tfile
18815 }
18816 test_399a() { # LU-7655 for OST fake write
18817         remote_ost_nodsh && skip "remote OST with nodsh"
18818
18819         test_fake_rw write
18820 }
18821 run_test 399a "fake write should not be slower than normal write"
18822
18823 test_399b() { # LU-8726 for OST fake read
18824         remote_ost_nodsh && skip "remote OST with nodsh"
18825         if [ "$ost1_FSTYPE" != "ldiskfs" ]; then
18826                 skip_env "ldiskfs only test"
18827         fi
18828
18829         test_fake_rw read
18830 }
18831 run_test 399b "fake read should not be slower than normal read"
18832
18833 test_400a() { # LU-1606, was conf-sanity test_74
18834         if ! which $CC > /dev/null 2>&1; then
18835                 skip_env "$CC is not installed"
18836         fi
18837
18838         local extra_flags=''
18839         local out=$TMP/$tfile
18840         local prefix=/usr/include/lustre
18841         local prog
18842
18843         if ! [[ -d $prefix ]]; then
18844                 # Assume we're running in tree and fixup the include path.
18845                 extra_flags+=" -I$LUSTRE/../lnet/include/uapi -I$LUSTRE/include/uapi -I$LUSTRE/include"
18846                 extra_flags+=" -L$LUSTRE/utils/.lib"
18847         fi
18848
18849         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
18850                 $CC -Wall -Werror $extra_flags -o $out $prog -llustreapi ||
18851                         error "client api broken"
18852         done
18853         rm -f $out
18854 }
18855 run_test 400a "Lustre client api program can compile and link"
18856
18857 test_400b() { # LU-1606, LU-5011
18858         local header
18859         local out=$TMP/$tfile
18860         local prefix=/usr/include/linux/lustre
18861
18862         # We use a hard coded prefix so that this test will not fail
18863         # when run in tree. There are headers in lustre/include/lustre/
18864         # that are not packaged (like lustre_idl.h) and have more
18865         # complicated include dependencies (like config.h and lnet/types.h).
18866         # Since this test about correct packaging we just skip them when
18867         # they don't exist (see below) rather than try to fixup cppflags.
18868
18869         if ! which $CC > /dev/null 2>&1; then
18870                 skip_env "$CC is not installed"
18871         fi
18872
18873         for header in $prefix/*.h; do
18874                 if ! [[ -f "$header" ]]; then
18875                         continue
18876                 fi
18877
18878                 if [[ "$(basename $header)" == lustre_ioctl.h ]]; then
18879                         continue # lustre_ioctl.h is internal header
18880                 fi
18881
18882                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
18883                         error "cannot compile '$header'"
18884         done
18885         rm -f $out
18886 }
18887 run_test 400b "packaged headers can be compiled"
18888
18889 test_401a() { #LU-7437
18890         local printf_arg=$(find -printf 2>&1 | grep "unrecognized:")
18891         [ -n "$printf_arg" ] && skip_env "find does not support -printf"
18892
18893         #count the number of parameters by "list_param -R"
18894         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
18895         #count the number of parameters by listing proc files
18896         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
18897         echo "proc_dirs='$proc_dirs'"
18898         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
18899         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
18900                       sort -u | wc -l)
18901
18902         [ $params -eq $procs ] ||
18903                 error "found $params parameters vs. $procs proc files"
18904
18905         # test the list_param -D option only returns directories
18906         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
18907         #count the number of parameters by listing proc directories
18908         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
18909                 sort -u | wc -l)
18910
18911         [ $params -eq $procs ] ||
18912                 error "found $params parameters vs. $procs proc files"
18913 }
18914 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
18915
18916 test_401b() {
18917         local save=$($LCTL get_param -n jobid_var)
18918         local tmp=testing
18919
18920         $LCTL set_param foo=bar jobid_var=$tmp bar=baz &&
18921                 error "no error returned when setting bad parameters"
18922
18923         local jobid_new=$($LCTL get_param -n foe jobid_var baz)
18924         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
18925
18926         $LCTL set_param -n fog=bam jobid_var=$save bat=fog
18927         local jobid_old=$($LCTL get_param -n foe jobid_var bag)
18928         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
18929 }
18930 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
18931
18932 test_401c() {
18933         local jobid_var_old=$($LCTL get_param -n jobid_var)
18934         local jobid_var_new
18935
18936         $LCTL set_param jobid_var= &&
18937                 error "no error returned for 'set_param a='"
18938
18939         jobid_var_new=$($LCTL get_param -n jobid_var)
18940         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
18941                 error "jobid_var was changed by setting without value"
18942
18943         $LCTL set_param jobid_var &&
18944                 error "no error returned for 'set_param a'"
18945
18946         jobid_var_new=$($LCTL get_param -n jobid_var)
18947         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
18948                 error "jobid_var was changed by setting without value"
18949 }
18950 run_test 401c "Verify 'lctl set_param' without value fails in either format."
18951
18952 test_401d() {
18953         local jobid_var_old=$($LCTL get_param -n jobid_var)
18954         local jobid_var_new
18955         local new_value="foo=bar"
18956
18957         $LCTL set_param jobid_var=$new_value ||
18958                 error "'set_param a=b' did not accept a value containing '='"
18959
18960         jobid_var_new=$($LCTL get_param -n jobid_var)
18961         [[ "$jobid_var_new" == "$new_value" ]] ||
18962                 error "'set_param a=b' failed on a value containing '='"
18963
18964         # Reset the jobid_var to test the other format
18965         $LCTL set_param jobid_var=$jobid_var_old
18966         jobid_var_new=$($LCTL get_param -n jobid_var)
18967         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
18968                 error "failed to reset jobid_var"
18969
18970         $LCTL set_param jobid_var $new_value ||
18971                 error "'set_param a b' did not accept a value containing '='"
18972
18973         jobid_var_new=$($LCTL get_param -n jobid_var)
18974         [[ "$jobid_var_new" == "$new_value" ]] ||
18975                 error "'set_param a b' failed on a value containing '='"
18976
18977         $LCTL set_param jobid_var $jobid_var_old
18978         jobid_var_new=$($LCTL get_param -n jobid_var)
18979         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
18980                 error "failed to reset jobid_var"
18981 }
18982 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
18983
18984 test_402() {
18985         [[ $MDS1_VERSION -ge $(version_code 2.7.66) ]] ||
18986         [[ $MDS1_VERSION -ge $(version_code 2.7.18.4) &&
18987                 $MDS1_VERSION -lt $(version_code 2.7.50) ]] ||
18988         [[ $MDS1_VERSION -ge $(version_code 2.7.2) &&
18989                 $MDS1_VERSION -lt $(version_code 2.7.11) ]] ||
18990                 skip "Need MDS version 2.7.2+ or 2.7.18.4+ or 2.7.66+"
18991         remote_mds_nodsh && skip "remote MDS with nodsh"
18992
18993         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
18994 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
18995         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
18996         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
18997                 echo "Touch failed - OK"
18998 }
18999 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
19000
19001 test_403() {
19002         local file1=$DIR/$tfile.1
19003         local file2=$DIR/$tfile.2
19004         local tfile=$TMP/$tfile
19005
19006         rm -f $file1 $file2 $tfile
19007
19008         touch $file1
19009         ln $file1 $file2
19010
19011         # 30 sec OBD_TIMEOUT in ll_getattr()
19012         # right before populating st_nlink
19013         $LCTL set_param fail_loc=0x80001409
19014         stat -c %h $file1 > $tfile &
19015
19016         # create an alias, drop all locks and reclaim the dentry
19017         < $file2
19018         cancel_lru_locks mdc
19019         cancel_lru_locks osc
19020         sysctl -w vm.drop_caches=2
19021
19022         wait
19023
19024         [ $(cat $tfile) -gt 0 ] || error "wrong nlink count: $(cat $tfile)"
19025
19026         rm -f $tfile $file1 $file2
19027 }
19028 run_test 403 "i_nlink should not drop to zero due to aliasing"
19029
19030 test_404() { # LU-6601
19031         [[ $MDS1_VERSION -ge $(version_code 2.8.53) ]] ||
19032                 skip "Need server version newer than 2.8.52"
19033         remote_mds_nodsh && skip "remote MDS with nodsh"
19034
19035         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
19036                 awk '/osp .*-osc-MDT/ { print $4}')
19037
19038         local osp
19039         for osp in $mosps; do
19040                 echo "Deactivate: " $osp
19041                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
19042                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
19043                         awk -vp=$osp '$4 == p { print $2 }')
19044                 [ $stat = IN ] || {
19045                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
19046                         error "deactivate error"
19047                 }
19048                 echo "Activate: " $osp
19049                 do_facet $SINGLEMDS $LCTL --device %$osp activate
19050                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
19051                         awk -vp=$osp '$4 == p { print $2 }')
19052                 [ $stat = UP ] || {
19053                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
19054                         error "activate error"
19055                 }
19056         done
19057 }
19058 run_test 404 "validate manual {de}activated works properly for OSPs"
19059
19060 test_405() {
19061         [ -n "$FILESET" ] && skip "Not functional for FILESET set"
19062         [ $MDS1_VERSION -lt $(version_code 2.6.92) -o \
19063         [ $CLIENT_VERSION -lt $(version_code 2.6.99) ] &&
19064                 skip "Layout swap lock is not supported"
19065         check_swap_layouts_support
19066
19067         test_mkdir $DIR/$tdir
19068         swap_lock_test -d $DIR/$tdir ||
19069                 error "One layout swap locked test failed"
19070 }
19071 run_test 405 "Various layout swap lock tests"
19072
19073 test_406() {
19074         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19075         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
19076         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
19077         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19078         [ $MDS1_VERSION -lt $(version_code 2.8.50) ] &&
19079                 skip "Need MDS version at least 2.8.50"
19080
19081         local def_stripe_size=$($LFS getstripe -S $MOUNT)
19082         local test_pool=$TESTNAME
19083
19084         if ! combined_mgs_mds ; then
19085                 mount_mgs_client
19086         fi
19087         pool_add $test_pool || error "pool_add failed"
19088         pool_add_targets $test_pool 0 $(($OSTCOUNT - 1)) 1 ||
19089                 error "pool_add_targets failed"
19090
19091         save_layout_restore_at_exit $MOUNT
19092
19093         # parent set default stripe count only, child will stripe from both
19094         # parent and fs default
19095         $LFS setstripe -c 1 -i 1 -S $((def_stripe_size * 2)) -p $test_pool $MOUNT ||
19096                 error "setstripe $MOUNT failed"
19097         $LFS mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
19098         $LFS setstripe -c $OSTCOUNT $DIR/$tdir || error "setstripe $tdir failed"
19099         for i in $(seq 10); do
19100                 local f=$DIR/$tdir/$tfile.$i
19101                 touch $f || error "touch failed"
19102                 local count=$($LFS getstripe -c $f)
19103                 [ $count -eq $OSTCOUNT ] ||
19104                         error "$f stripe count $count != $OSTCOUNT"
19105                 local offset=$($LFS getstripe -i $f)
19106                 [ $offset -eq 1 ] || error "$f stripe offset $offset != 1"
19107                 local size=$($LFS getstripe -S $f)
19108                 [ $size -eq $((def_stripe_size * 2)) ] ||
19109                         error "$f stripe size $size != $((def_stripe_size * 2))"
19110                 local pool=$($LFS getstripe -p $f)
19111                 [ $pool == $test_pool ] || error "$f pool $pool != $test_pool"
19112         done
19113
19114         # change fs default striping, delete parent default striping, now child
19115         # will stripe from new fs default striping only
19116         $LFS setstripe -c 1 -S $def_stripe_size -i 0 $MOUNT ||
19117                 error "change $MOUNT default stripe failed"
19118         $LFS setstripe -c 0 $DIR/$tdir ||
19119                 error "delete $tdir default stripe failed"
19120         for i in $(seq 11 20); do
19121                 local f=$DIR/$tdir/$tfile.$i
19122                 touch $f || error "touch $f failed"
19123                 local count=$($LFS getstripe -c $f)
19124                 [ $count -eq 1 ] || error "$f stripe count $count != 1"
19125                 local offset=$($LFS getstripe -i $f)
19126                 [ $offset -eq 0 ] || error "$f stripe offset $offset != 0"
19127                 local size=$($LFS getstripe -S $f)
19128                 [ $size -eq $def_stripe_size ] ||
19129                         error "$f stripe size $size != $def_stripe_size"
19130                 local pool=$($LFS getstripe -p $f)
19131                 [ $pool == $test_pool ] || error "$f pool $pool isn't set"
19132         done
19133
19134         unlinkmany $DIR/$tdir/$tfile. 1 20
19135
19136         local f=$DIR/$tdir/$tfile
19137         pool_remove_all_targets $test_pool $f
19138         pool_remove $test_pool $f
19139
19140         if ! combined_mgs_mds ; then
19141                 umount_mgs_client
19142         fi
19143 }
19144 run_test 406 "DNE support fs default striping"
19145
19146 test_407() {
19147         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19148         [[ $MDS1_VERSION -lt $(version_code 2.8.55) ]] &&
19149                 skip "Need MDS version at least 2.8.55"
19150         remote_mds_nodsh && skip "remote MDS with nodsh"
19151
19152         $LFS mkdir -i 0 -c 1 $DIR/$tdir.0 ||
19153                 error "$LFS mkdir -i 0 -c 1 $tdir.0 failed"
19154         $LFS mkdir -i 1 -c 1 $DIR/$tdir.1 ||
19155                 error "$LFS mkdir -i 1 -c 1 $tdir.1 failed"
19156         touch $DIR/$tdir.0/$tfile.0 || error "touch $tdir.0/$tfile.0 failed"
19157
19158         #define OBD_FAIL_DT_TXN_STOP    0x2019
19159         for idx in $(seq $MDSCOUNT); do
19160                 do_facet mds$idx "lctl set_param fail_loc=0x2019"
19161         done
19162         $LFS mkdir -c 2 $DIR/$tdir && error "$LFS mkdir -c 2 $tdir should fail"
19163         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1/$tfile.1 &&
19164                 error "mv $tdir.0/$tfile.0 $tdir.1/$tfile.1 should fail"
19165         true
19166 }
19167 run_test 407 "transaction fail should cause operation fail"
19168
19169 test_408() {
19170         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1 oflag=direct
19171
19172         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
19173         lctl set_param fail_loc=0x8000040a
19174         # let ll_prepare_partial_page() fail
19175         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 conv=notrunc || true
19176
19177         rm -f $DIR/$tfile
19178
19179         # create at least 100 unused inodes so that
19180         # shrink_icache_memory(0) should not return 0
19181         touch $DIR/$tfile-{0..100}
19182         rm -f $DIR/$tfile-{0..100}
19183         sync
19184
19185         echo 2 > /proc/sys/vm/drop_caches
19186 }
19187 run_test 408 "drop_caches should not hang due to page leaks"
19188
19189 test_409()
19190 {
19191         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
19192
19193         mkdir -p $DIR/$tdir || error "(0) Fail to mkdir"
19194         $LFS mkdir -i 1 -c 2 $DIR/$tdir/foo || error "(1) Fail to mkdir"
19195         touch $DIR/$tdir/guard || error "(2) Fail to create"
19196
19197         local PREFIX=$(str_repeat 'A' 128)
19198         echo "Create 1K hard links start at $(date)"
19199         createmany -l $DIR/$tdir/guard $DIR/$tdir/foo/${PREFIX}_ 1000 ||
19200                 error "(3) Fail to hard link"
19201
19202         echo "Links count should be right although linkEA overflow"
19203         stat $DIR/$tdir/guard || error "(4) Fail to stat"
19204         local linkcount=$(stat --format=%h $DIR/$tdir/guard)
19205         [ $linkcount -eq 1001 ] ||
19206                 error "(5) Unexpected hard links count: $linkcount"
19207
19208         echo "List all links start at $(date)"
19209         ls -l $DIR/$tdir/foo > /dev/null ||
19210                 error "(6) Fail to list $DIR/$tdir/foo"
19211
19212         echo "Unlink hard links start at $(date)"
19213         unlinkmany $DIR/$tdir/foo/${PREFIX}_ 1000 ||
19214                 error "(7) Fail to unlink"
19215         echo "Unlink hard links finished at $(date)"
19216 }
19217 run_test 409 "Large amount of cross-MDTs hard links on the same file"
19218
19219 test_410()
19220 {
19221         [[ $CLIENT_VERSION -lt $(version_code 2.9.59) ]] &&
19222                 skip "Need client version at least 2.9.59"
19223
19224         # Create a file, and stat it from the kernel
19225         local testfile=$DIR/$tfile
19226         touch $testfile
19227
19228         local run_id=$RANDOM
19229         local my_ino=$(stat --format "%i" $testfile)
19230
19231         # Try to insert the module. This will always fail as the
19232         # module is designed to not be inserted.
19233         insmod $LUSTRE/tests/kernel/kinode.ko run_id=$run_id fname=$testfile \
19234             &> /dev/null
19235
19236         # Anything but success is a test failure
19237         dmesg | grep -q \
19238             "lustre_kinode_$run_id: inode numbers are identical: $my_ino" ||
19239             error "no inode match"
19240 }
19241 run_test 410 "Test inode number returned from kernel thread"
19242
19243 cleanup_test411_cgroup() {
19244         trap 0
19245         rmdir "$1"
19246 }
19247
19248 test_411() {
19249         local cg_basedir=/sys/fs/cgroup/memory
19250         # LU-9966
19251         test -f "$cg_basedir/memory.kmem.limit_in_bytes" ||
19252                 skip "no setup for cgroup"
19253
19254         dd if=/dev/zero of=$DIR/$tfile bs=1M count=100 conv=fsync ||
19255                 error "test file creation failed"
19256         cancel_lru_locks osc
19257
19258         # Create a very small memory cgroup to force a slab allocation error
19259         local cgdir=$cg_basedir/osc_slab_alloc
19260         mkdir $cgdir || error "cgroup mkdir '$cgdir' failed"
19261         trap "cleanup_test411_cgroup $cgdir" EXIT
19262         echo 2M > $cgdir/memory.kmem.limit_in_bytes
19263         echo 1M > $cgdir/memory.limit_in_bytes
19264
19265         # Should not LBUG, just be killed by oom-killer
19266         # dd will return 0 even allocation failure in some environment.
19267         # So don't check return value
19268         sh -c "echo \$$ > $cgdir/tasks && dd if=$DIR/$tfile of=/dev/null"
19269         cleanup_test411_cgroup $cgdir
19270
19271         return 0
19272 }
19273 run_test 411 "Slab allocation error with cgroup does not LBUG"
19274
19275 test_412() {
19276         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19277         if [ $(lustre_version_code mds1) -lt $(version_code 2.10.55) ]; then
19278                 skip "Need server version at least 2.10.55"
19279         fi
19280
19281         $LFS mkdir -i $((MDSCOUNT - 1)),$((MDSCOUNT - 2)) $DIR/$tdir ||
19282                 error "mkdir failed"
19283         $LFS getdirstripe $DIR/$tdir
19284         local stripe_index=$($LFS getdirstripe -i $DIR/$tdir)
19285         [ $stripe_index -eq $((MDSCOUNT - 1)) ] ||
19286                 error "expect $((MDSCOUT - 1)) get $stripe_index"
19287         local stripe_count=$($LFS getdirstripe -T $DIR/$tdir)
19288         [ $stripe_count -eq 2 ] ||
19289                 error "expect 2 get $stripe_count"
19290 }
19291 run_test 412 "mkdir on specific MDTs"
19292
19293 test_413() {
19294         [ $MDSCOUNT -lt 2 ] &&
19295                 skip "We need at least 2 MDTs for this test"
19296
19297         if [ $(lustre_version_code mds1) -lt $(version_code 2.10.55) ]; then
19298                 skip "Need server version at least 2.10.55"
19299         fi
19300
19301         mkdir $DIR/$tdir || error "mkdir failed"
19302
19303         # find MDT that is the most full
19304         local max=$($LFS df | grep MDT |
19305                 awk 'BEGIN { a=0 }
19306                         { sub("%", "", $5)
19307                           if (0+$5 >= a)
19308                           {
19309                                 a = $5
19310                                 b = $6
19311                           }
19312                         }
19313                      END { split(b, c, ":")
19314                            sub("]", "", c[2])
19315                            print c[2]
19316                          }')
19317
19318         for i in $(seq $((MDSCOUNT - 1))); do
19319                 $LFS mkdir -c $i $DIR/$tdir/d$i ||
19320                         error "mkdir d$i failed"
19321                 $LFS getdirstripe $DIR/$tdir/d$i
19322                 local stripe_index=$($LFS getdirstripe -i $DIR/$tdir/d$i)
19323                 [ $stripe_index -ne $max ] ||
19324                         error "don't expect $max"
19325         done
19326 }
19327 run_test 413 "mkdir on less full MDTs"
19328
19329 test_414() {
19330 #define OBD_FAIL_PTLRPC_BULK_ATTACH      0x521
19331         $LCTL set_param fail_loc=0x80000521
19332         dd if=/dev/zero of=$DIR/$tfile bs=2M count=1 oflag=sync
19333         rm -f $DIR/$tfile
19334 }
19335 run_test 414 "simulate ENOMEM in ptlrpc_register_bulk()"
19336
19337 test_415() {
19338         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19339         [ $(lustre_version_code mds1) -lt $(version_code 2.11.52) ] &&
19340                 skip "Need server version at least 2.11.52"
19341
19342         # LU-11102
19343         local total
19344         local setattr_pid
19345         local start_time
19346         local end_time
19347         local duration
19348
19349         total=500
19350         # this test may be slow on ZFS
19351         [ "$mds1_FSTYPE" == "zfs" ] && total=100
19352
19353         # though this test is designed for striped directory, let's test normal
19354         # directory too since lock is always saved as CoS lock.
19355         test_mkdir $DIR/$tdir || error "mkdir $tdir"
19356         createmany -o $DIR/$tdir/$tfile. $total || error "createmany"
19357
19358         (
19359                 while true; do
19360                         touch $DIR/$tdir
19361                 done
19362         ) &
19363         setattr_pid=$!
19364
19365         start_time=$(date +%s)
19366         for i in $(seq $total); do
19367                 mrename $DIR/$tdir/$tfile.$i $DIR/$tdir/$tfile-new.$i \
19368                         > /dev/null
19369         done
19370         end_time=$(date +%s)
19371         duration=$((end_time - start_time))
19372
19373         kill -9 $setattr_pid
19374
19375         echo "rename $total files took $duration sec"
19376         [ $duration -lt 100 ] || error "rename took $duration sec"
19377 }
19378 run_test 415 "lock revoke is not missing"
19379
19380 test_416() {
19381         [ $(lustre_version_code mds1) -lt $(version_code 2.11.55) ] &&
19382                 skip "Need server version at least 2.11.55"
19383
19384         # define OBD_FAIL_OSD_TXN_START    0x19a
19385         do_facet mds1 lctl set_param fail_loc=0x19a
19386
19387         lfs mkdir -c $MDSCOUNT $DIR/$tdir
19388
19389         true
19390 }
19391 run_test 416 "transaction start failure won't cause system hung"
19392
19393 cleanup_417() {
19394         trap 0
19395         do_nodes $(comma_list $(mdts_nodes)) \
19396                 "$LCTL set_param -n mdt.*MDT*.enable_dir_migration=1"
19397         do_nodes $(comma_list $(mdts_nodes)) \
19398                 "$LCTL set_param -n mdt.*MDT*.enable_remote_dir=1"
19399         do_nodes $(comma_list $(mdts_nodes)) \
19400                 "$LCTL set_param -n mdt.*MDT*.enable_striped_dir=1"
19401 }
19402
19403 test_417() {
19404         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
19405         [[ $MDS1_VERSION -lt $(version_code 2.11.56) ]] &&
19406                 skip "Need MDS version at least 2.11.56"
19407
19408         trap cleanup_417 RETURN EXIT
19409
19410         $LFS mkdir -i 1 $DIR/$tdir.1 || error "create remote dir $tdir.1 failed"
19411         do_nodes $(comma_list $(mdts_nodes)) \
19412                 "$LCTL set_param -n mdt.*MDT*.enable_dir_migration=0"
19413         $LFS migrate -m 0 $DIR/$tdir.1 &&
19414                 error "migrate dir $tdir.1 should fail"
19415
19416         do_nodes $(comma_list $(mdts_nodes)) \
19417                 "$LCTL set_param -n mdt.*MDT*.enable_remote_dir=0"
19418         $LFS mkdir -i 1 $DIR/$tdir.2 &&
19419                 error "create remote dir $tdir.2 should fail"
19420
19421         do_nodes $(comma_list $(mdts_nodes)) \
19422                 "$LCTL set_param -n mdt.*MDT*.enable_striped_dir=0"
19423         $LFS mkdir -c 2 $DIR/$tdir.3 &&
19424                 error "create striped dir $tdir.3 should fail"
19425         true
19426 }
19427 run_test 417 "disable remote dir, striped dir and dir migration"
19428
19429 # Checks that the outputs of df [-i] and lfs df [-i] match
19430 #
19431 # usage: check_lfs_df <blocks | inodes> <mountpoint>
19432 check_lfs_df() {
19433         local dir=$2
19434         local inodes
19435         local df_out
19436         local lfs_df_out
19437         local tries=100
19438         local count=0
19439         local passed=false
19440
19441         # blocks or inodes
19442         [ "$1" == "blocks" ] && inodes= || inodes="-i"
19443
19444         while (( count < tries )); do
19445                 cancel_lru_locks
19446                 sync; sleep 0.2
19447
19448                 # read the lines of interest
19449                 df_out=($(df $inodes $dir | tail -n +2)) ||
19450                         error "df $inodes $dir | tail -n +2 failed"
19451                 lfs_df_out=($($LFS df $inodes $dir | grep summary:)) ||
19452                         error "lfs df $inodes $dir | grep summary: failed"
19453
19454                 # skip first substrings of each output as they are different
19455                 # <NID>:/<fsname for df, filesystem_summary: for lfs df
19456                 df_out=(${df_out[@]:1})
19457                 lfs_df_out=(${lfs_df_out[@]:1})
19458
19459                 # compare the two outputs
19460                 passed=true
19461
19462                 for i in {0..4}; do
19463                         [ "${df_out[i]}" != "${lfs_df_out[i]}" ] && passed=false
19464                 done
19465                 $passed && break
19466         done
19467
19468         $passed || error "df and lfs df $1 output mismatch: "   \
19469                          "df ${inodes}: ${df_out[*]}, "         \
19470                          "lfs df ${inodes}: ${lfs_df_out[*]}"
19471 }
19472
19473 test_418() {
19474         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19475
19476         local dir=$DIR/$tdir
19477         local numfiles=$((RANDOM % 4096 + 2))
19478         local numblocks=$((RANDOM % 256 + 1))
19479
19480         wait_delete_completed
19481         test_mkdir $dir
19482
19483         # check block output
19484         check_lfs_df blocks $dir
19485         # check inode output
19486         check_lfs_df inodes $dir
19487
19488         # create a single file and retest
19489         echo "Creating a single file and testing"
19490         createmany -o $dir/$tfile- 1 &>/dev/null ||
19491                 error "creating 1 file in $dir failed"
19492         check_lfs_df blocks $dir
19493         check_lfs_df inodes $dir
19494
19495         # create a random number of files
19496         echo "Creating $((numfiles - 1)) files and testing"
19497         createmany -o $dir/$tfile- 1 $((numfiles - 1)) &>/dev/null ||
19498                 error "creating $((numfiles - 1)) files in $dir failed"
19499
19500         # write a random number of blocks to the first test file
19501         echo "Writing $numblocks 4K blocks and testing"
19502         dd if=/dev/urandom of=$dir/${tfile}-0 bs=4K conv=fsync \
19503                 count=$numblocks &>/dev/null ||
19504                 error "dd to $dir/${tfile}-0 failed"
19505
19506         # retest
19507         check_lfs_df blocks $dir
19508         check_lfs_df inodes $dir
19509
19510         unlinkmany $dir/$tfile- $numfiles &>/dev/null ||
19511                 error "unlinking $numfiles files in $dir failed"
19512 }
19513 run_test 418 "df and lfs df outputs match"
19514
19515 prep_801() {
19516         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
19517         [[ $OST1_VERSION -lt $(version_code 2.9.55) ]] &&
19518                 skip "Need server version at least 2.9.55"
19519
19520         start_full_debug_logging
19521 }
19522
19523 post_801() {
19524         stop_full_debug_logging
19525 }
19526
19527 barrier_stat() {
19528         if [ $MGS_VERSION -le $(version_code 2.10.0) ]; then
19529                 local st=$(do_facet mgs $LCTL barrier_stat $FSNAME |
19530                            awk '/The barrier for/ { print $7 }')
19531                 echo $st
19532         else
19533                 local st=$(do_facet mgs $LCTL barrier_stat -s $FSNAME)
19534                 echo \'$st\'
19535         fi
19536 }
19537
19538 barrier_expired() {
19539         local expired
19540
19541         if [ $MGS_VERSION -le $(version_code 2.10.0) ]; then
19542                 expired=$(do_facet mgs $LCTL barrier_stat $FSNAME |
19543                           awk '/will be expired/ { print $7 }')
19544         else
19545                 expired=$(do_facet mgs $LCTL barrier_stat -t $FSNAME)
19546         fi
19547
19548         echo $expired
19549 }
19550
19551 test_801a() {
19552         prep_801
19553
19554         echo "Start barrier_freeze at: $(date)"
19555         #define OBD_FAIL_BARRIER_DELAY          0x2202
19556         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
19557         do_facet mgs $LCTL barrier_freeze $FSNAME 10 &
19558
19559         sleep 2
19560         local b_status=$(barrier_stat)
19561         echo "Got barrier status at: $(date)"
19562         [ "$b_status" = "'freezing_p1'" ] ||
19563                 error "(1) unexpected barrier status $b_status"
19564
19565         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
19566         wait
19567         b_status=$(barrier_stat)
19568         [ "$b_status" = "'frozen'" ] ||
19569                 error "(2) unexpected barrier status $b_status"
19570
19571         local expired=$(barrier_expired)
19572         echo "sleep $((expired + 3)) seconds, then the barrier will be expired"
19573         sleep $((expired + 3))
19574
19575         b_status=$(barrier_stat)
19576         [ "$b_status" = "'expired'" ] ||
19577                 error "(3) unexpected barrier status $b_status"
19578
19579         do_facet mgs $LCTL barrier_freeze $FSNAME 10 ||
19580                 error "(4) fail to freeze barrier"
19581
19582         b_status=$(barrier_stat)
19583         [ "$b_status" = "'frozen'" ] ||
19584                 error "(5) unexpected barrier status $b_status"
19585
19586         echo "Start barrier_thaw at: $(date)"
19587         #define OBD_FAIL_BARRIER_DELAY          0x2202
19588         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
19589         do_facet mgs $LCTL barrier_thaw $FSNAME &
19590
19591         sleep 2
19592         b_status=$(barrier_stat)
19593         echo "Got barrier status at: $(date)"
19594         [ "$b_status" = "'thawing'" ] ||
19595                 error "(6) unexpected barrier status $b_status"
19596
19597         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
19598         wait
19599         b_status=$(barrier_stat)
19600         [ "$b_status" = "'thawed'" ] ||
19601                 error "(7) unexpected barrier status $b_status"
19602
19603         #define OBD_FAIL_BARRIER_FAILURE        0x2203
19604         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2203
19605         do_facet mgs $LCTL barrier_freeze $FSNAME
19606
19607         b_status=$(barrier_stat)
19608         [ "$b_status" = "'failed'" ] ||
19609                 error "(8) unexpected barrier status $b_status"
19610
19611         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
19612         do_facet mgs $LCTL barrier_thaw $FSNAME
19613
19614         post_801
19615 }
19616 run_test 801a "write barrier user interfaces and stat machine"
19617
19618 test_801b() {
19619         prep_801
19620
19621         mkdir $DIR/$tdir || error "(1) fail to mkdir"
19622         createmany -d $DIR/$tdir/d 6 || "(2) fail to mkdir"
19623         touch $DIR/$tdir/d2/f10 || error "(3) fail to touch"
19624         touch $DIR/$tdir/d3/f11 || error "(4) fail to touch"
19625         touch $DIR/$tdir/d4/f12 || error "(5) fail to touch"
19626
19627         cancel_lru_locks mdc
19628
19629         # 180 seconds should be long enough
19630         do_facet mgs $LCTL barrier_freeze $FSNAME 180
19631
19632         local b_status=$(barrier_stat)
19633         [ "$b_status" = "'frozen'" ] ||
19634                 error "(6) unexpected barrier status $b_status"
19635
19636         mkdir $DIR/$tdir/d0/d10 &
19637         mkdir_pid=$!
19638
19639         touch $DIR/$tdir/d1/f13 &
19640         touch_pid=$!
19641
19642         ln $DIR/$tdir/d2/f10 $DIR/$tdir/d2/f14 &
19643         ln_pid=$!
19644
19645         mv $DIR/$tdir/d3/f11 $DIR/$tdir/d3/f15 &
19646         mv_pid=$!
19647
19648         rm -f $DIR/$tdir/d4/f12 &
19649         rm_pid=$!
19650
19651         stat $DIR/$tdir/d5 || error "(7) stat should succeed"
19652
19653         # To guarantee taht the 'stat' is not blocked
19654         b_status=$(barrier_stat)
19655         [ "$b_status" = "'frozen'" ] ||
19656                 error "(8) unexpected barrier status $b_status"
19657
19658         # let above commands to run at background
19659         sleep 5
19660
19661         ps -p $mkdir_pid || error "(9) mkdir should be blocked"
19662         ps -p $touch_pid || error "(10) touch should be blocked"
19663         ps -p $ln_pid || error "(11) link should be blocked"
19664         ps -p $mv_pid || error "(12) rename should be blocked"
19665         ps -p $rm_pid || error "(13) unlink should be blocked"
19666
19667         b_status=$(barrier_stat)
19668         [ "$b_status" = "'frozen'" ] ||
19669                 error "(14) unexpected barrier status $b_status"
19670
19671         do_facet mgs $LCTL barrier_thaw $FSNAME
19672         b_status=$(barrier_stat)
19673         [ "$b_status" = "'thawed'" ] ||
19674                 error "(15) unexpected barrier status $b_status"
19675
19676         wait $mkdir_pid || error "(16) mkdir should succeed"
19677         wait $touch_pid || error "(17) touch should succeed"
19678         wait $ln_pid || error "(18) link should succeed"
19679         wait $mv_pid || error "(19) rename should succeed"
19680         wait $rm_pid || error "(20) unlink should succeed"
19681
19682         post_801
19683 }
19684 run_test 801b "modification will be blocked by write barrier"
19685
19686 test_801c() {
19687         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19688
19689         prep_801
19690
19691         stop mds2 || error "(1) Fail to stop mds2"
19692
19693         do_facet mgs $LCTL barrier_freeze $FSNAME 30
19694
19695         local b_status=$(barrier_stat)
19696         [ "$b_status" = "'expired'" -o "$b_status" = "'failed'" ] || {
19697                 do_facet mgs $LCTL barrier_thaw $FSNAME
19698                 error "(2) unexpected barrier status $b_status"
19699         }
19700
19701         do_facet mgs $LCTL barrier_rescan $FSNAME ||
19702                 error "(3) Fail to rescan barrier bitmap"
19703
19704         do_facet mgs $LCTL barrier_freeze $FSNAME 10
19705
19706         b_status=$(barrier_stat)
19707         [ "$b_status" = "'frozen'" ] ||
19708                 error "(4) unexpected barrier status $b_status"
19709
19710         do_facet mgs $LCTL barrier_thaw $FSNAME
19711         b_status=$(barrier_stat)
19712         [ "$b_status" = "'thawed'" ] ||
19713                 error "(5) unexpected barrier status $b_status"
19714
19715         local devname=$(mdsdevname 2)
19716
19717         start mds2 $devname $MDS_MOUNT_OPTS || error "(6) Fail to start mds2"
19718
19719         do_facet mgs $LCTL barrier_rescan $FSNAME ||
19720                 error "(7) Fail to rescan barrier bitmap"
19721
19722         post_801
19723 }
19724 run_test 801c "rescan barrier bitmap"
19725
19726 saved_MGS_MOUNT_OPTS=$MGS_MOUNT_OPTS
19727 saved_MDS_MOUNT_OPTS=$MDS_MOUNT_OPTS
19728 saved_OST_MOUNT_OPTS=$OST_MOUNT_OPTS
19729
19730 cleanup_802a() {
19731         trap 0
19732
19733         stopall
19734         MGS_MOUNT_OPTS=$saved_MGS_MOUNT_OPTS
19735         MDS_MOUNT_OPTS=$saved_MDS_MOUNT_OPTS
19736         OST_MOUNT_OPTS=$saved_OST_MOUNT_OPTS
19737         setupall
19738 }
19739
19740 test_802a() {
19741
19742         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
19743         [[ $OST1_VERSION -lt $(version_code 2.9.55) ]] &&
19744                 skip "Need server version at least 2.9.55"
19745
19746         [[ $ENABLE_QUOTA ]] && skip "Quota enabled for read-only test"
19747
19748         mkdir $DIR/$tdir || error "(1) fail to mkdir"
19749
19750         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
19751                 error "(2) Fail to copy"
19752
19753         trap cleanup_802a EXIT
19754
19755         # sync by force before remount as readonly
19756         sync; sync_all_data; sleep 3; sync_all_data
19757
19758         stopall
19759
19760         MGS_MOUNT_OPTS=$(csa_add "$MGS_MOUNT_OPTS" -o rdonly_dev)
19761         MDS_MOUNT_OPTS=$(csa_add "$MDS_MOUNT_OPTS" -o rdonly_dev)
19762         OST_MOUNT_OPTS=$(csa_add "$OST_MOUNT_OPTS" -o rdonly_dev)
19763
19764         echo "Mount the server as read only"
19765         setupall server_only || error "(3) Fail to start servers"
19766
19767         echo "Mount client without ro should fail"
19768         mount_client $MOUNT &&
19769                 error "(4) Mount client without 'ro' should fail"
19770
19771         echo "Mount client with ro should succeed"
19772         mount_client $MOUNT ro ||
19773                 error "(5) Mount client with 'ro' should succeed"
19774
19775         echo "Modify should be refused"
19776         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
19777
19778         echo "Read should be allowed"
19779         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
19780                 error "(7) Read should succeed under ro mode"
19781
19782         cleanup_802a
19783 }
19784 run_test 802a "simulate readonly device"
19785
19786 test_802b() {
19787         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19788         remote_mds_nodsh && skip "remote MDS with nodsh"
19789
19790         do_facet $SINGLEMDS $LCTL get_param mdt.*.readonly ||
19791                 skip "readonly option not available"
19792
19793         $LFS mkdir -i 0 -c 1 $DIR/$tdir || error "(1) fail to mkdir"
19794
19795         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
19796                 error "(2) Fail to copy"
19797
19798         # write back all cached data before setting MDT to readonly
19799         cancel_lru_locks
19800         sync_all_data
19801
19802         do_facet $SINGLEMDS $LCTL set_param mdt.*.readonly=1
19803         stack_trap "do_facet $SINGLEMDS $LCTL set_param mdt.*.readonly=0" EXIT
19804
19805         echo "Modify should be refused"
19806         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
19807
19808         echo "Read should be allowed"
19809         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
19810                 error "(7) Read should succeed under ro mode"
19811
19812         # disable readonly
19813         do_facet $SINGLEMDS $LCTL set_param mdt.*.readonly=0
19814 }
19815 run_test 802b "be able to set MDTs to readonly"
19816
19817 test_803() {
19818         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19819         [ $MDS1_VERSION -lt $(version_code 2.10.54) ] &&
19820                 skip "MDS needs to be newer than 2.10.54"
19821
19822         mkdir -p $DIR/$tdir
19823         # Create some objects on all MDTs to trigger related logs objects
19824         for idx in $(seq $MDSCOUNT); do
19825                 $LFS mkdir -c $MDSCOUNT -i $((idx % $MDSCOUNT)) \
19826                         $DIR/$tdir/dir${idx} ||
19827                         error "Fail to create $DIR/$tdir/dir${idx}"
19828         done
19829
19830         sync; sleep 3
19831         wait_delete_completed # ensure old test cleanups are finished
19832         echo "before create:"
19833         $LFS df -i $MOUNT
19834         local before_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19835
19836         for i in {1..10}; do
19837                 $LFS mkdir -c 1 -i 1 $DIR/$tdir/foo$i ||
19838                         error "Fail to create $DIR/$tdir/foo$i"
19839         done
19840
19841         sync; sleep 3
19842         echo "after create:"
19843         $LFS df -i $MOUNT
19844         local after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19845
19846         # allow for an llog to be cleaned up during the test
19847         [ $after_used -ge $((before_used + 10 - 1)) ] ||
19848                 error "before ($before_used) + 10 > after ($after_used)"
19849
19850         for i in {1..10}; do
19851                 rm -rf $DIR/$tdir/foo$i ||
19852                         error "Fail to remove $DIR/$tdir/foo$i"
19853         done
19854
19855         sleep 3 # avoid MDT return cached statfs
19856         wait_delete_completed
19857         echo "after unlink:"
19858         $LFS df -i $MOUNT
19859         after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19860
19861         # allow for an llog to be created during the test
19862         [ $after_used -le $((before_used + 1)) ] ||
19863                 error "after ($after_used) > before ($before_used) + 1"
19864 }
19865 run_test 803 "verify agent object for remote object"
19866
19867 test_804() {
19868         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19869         [ $MDS1_VERSION -lt $(version_code 2.10.54) ] &&
19870                 skip "MDS needs to be newer than 2.10.54"
19871         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
19872
19873         mkdir -p $DIR/$tdir
19874         $LFS mkdir -c 1 -i 1 $DIR/$tdir/dir0 ||
19875                 error "Fail to create $DIR/$tdir/dir0"
19876
19877         local fid=$($LFS path2fid $DIR/$tdir/dir0)
19878         local dev=$(mdsdevname 2)
19879
19880         do_facet mds2 "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19881                 grep ${fid} || error "NOT found agent entry for dir0"
19882
19883         $LFS mkdir -c $MDSCOUNT -i 0 $DIR/$tdir/dir1 ||
19884                 error "Fail to create $DIR/$tdir/dir1"
19885
19886         touch $DIR/$tdir/dir1/foo0 ||
19887                 error "Fail to create $DIR/$tdir/dir1/foo0"
19888         fid=$($LFS path2fid $DIR/$tdir/dir1/foo0)
19889         local rc=0
19890
19891         for idx in $(seq $MDSCOUNT); do
19892                 dev=$(mdsdevname $idx)
19893                 do_facet mds${idx} \
19894                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19895                         grep ${fid} && rc=$idx
19896         done
19897
19898         mv $DIR/$tdir/dir1/foo0 $DIR/$tdir/dir1/foo1 ||
19899                 error "Fail to rename foo0 to foo1"
19900         if [ $rc -eq 0 ]; then
19901                 for idx in $(seq $MDSCOUNT); do
19902                         dev=$(mdsdevname $idx)
19903                         do_facet mds${idx} \
19904                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19905                         grep ${fid} && rc=$idx
19906                 done
19907         fi
19908
19909         mv $DIR/$tdir/dir1/foo1 $DIR/$tdir/dir1/foo2 ||
19910                 error "Fail to rename foo1 to foo2"
19911         if [ $rc -eq 0 ]; then
19912                 for idx in $(seq $MDSCOUNT); do
19913                         dev=$(mdsdevname $idx)
19914                         do_facet mds${idx} \
19915                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19916                         grep ${fid} && rc=$idx
19917                 done
19918         fi
19919
19920         [ $rc -ne 0 ] || error "NOT found agent entry for foo"
19921
19922         ln $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir0/guard ||
19923                 error "Fail to link to $DIR/$tdir/dir1/foo2"
19924         mv $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir1/foo0 ||
19925                 error "Fail to rename foo2 to foo0"
19926         unlink $DIR/$tdir/dir1/foo0 ||
19927                 error "Fail to unlink $DIR/$tdir/dir1/foo0"
19928         rm -rf $DIR/$tdir/dir0 ||
19929                 error "Fail to rm $DIR/$tdir/dir0"
19930
19931         for idx in $(seq $MDSCOUNT); do
19932                 dev=$(mdsdevname $idx)
19933                 rc=0
19934
19935                 stop mds${idx}
19936                 run_e2fsck $(facet_active_host mds$idx) $dev -n ||
19937                         rc=$?
19938                 start mds${idx} $dev $MDS_MOUNT_OPTS ||
19939                         error "mount mds$idx failed"
19940                 df $MOUNT > /dev/null 2>&1
19941
19942                 # e2fsck should not return error
19943                 [ $rc -eq 0 ] ||
19944                         error "e2fsck detected error on MDT${idx}: rc=$rc"
19945         done
19946 }
19947 run_test 804 "verify agent entry for remote entry"
19948
19949 cleanup_805() {
19950         do_facet $SINGLEMDS zfs set quota=$old $fsset
19951         unlinkmany $DIR/$tdir/f- 1000000
19952         trap 0
19953 }
19954
19955 test_805() {
19956         local zfs_version=$(do_node $SINGLEMDS cat /sys/module/zfs/version)
19957         [ "$mds1_FSTYPE" != "zfs" ] && skip "ZFS specific test"
19958         [ $(version_code $zfs_version) -lt $(version_code 0.7.2) ] &&
19959                 skip "netfree not implemented before 0.7"
19960         [[ $MDS1_VERSION -ge $(version_code 2.10.57) ]] ||
19961                 skip "Need MDS version at least 2.10.57"
19962
19963         local fsset
19964         local freekb
19965         local usedkb
19966         local old
19967         local quota
19968         local pref="osd-zfs.lustre-MDT0000."
19969
19970         # limit available space on MDS dataset to meet nospace issue
19971         # quickly. then ZFS 0.7.2 can use reserved space if asked
19972         # properly (using netfree flag in osd_declare_destroy()
19973         fsset=$(do_facet $SINGLEMDS lctl get_param -n $pref.mntdev)
19974         old=$(do_facet $SINGLEMDS zfs get -H quota $fsset | \
19975                 gawk '{print $3}')
19976         freekb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytesfree)
19977         usedkb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytestotal)
19978         let "usedkb=usedkb-freekb"
19979         let "freekb=freekb/2"
19980         if let "freekb > 5000"; then
19981                 let "freekb=5000"
19982         fi
19983         do_facet $SINGLEMDS zfs set quota=$(((usedkb+freekb)*1024)) $fsset
19984         trap cleanup_805 EXIT
19985         mkdir $DIR/$tdir
19986         $LFS setstripe -E 1M -L mdt $DIR/$tdir || error "DoM not working"
19987         createmany -m $DIR/$tdir/f- 1000000 && error "ENOSPC wasn't met"
19988         rm -rf $DIR/$tdir || error "not able to remove"
19989         do_facet $SINGLEMDS zfs set quota=$old $fsset
19990         trap 0
19991 }
19992 run_test 805 "ZFS can remove from full fs"
19993
19994 # Size-on-MDS test
19995 check_lsom_data()
19996 {
19997         local file=$1
19998         local size=$($LFS getsom -s $file)
19999         local expect=$(stat -c %s $file)
20000
20001         [[ $size == $expect ]] ||
20002                 error "$file expected size: $expect, got: $size"
20003
20004         local blocks=$($LFS getsom -b $file)
20005         expect=$(stat -c %b $file)
20006         [[ $blocks == $expect ]] ||
20007                 error "$file expected blocks: $expect, got: $blocks"
20008 }
20009
20010 check_lsom_size()
20011 {
20012         local size=$($LFS getsom -s $1)
20013         local expect=$2
20014
20015         [[ $size == $expect ]] ||
20016                 error "$file expected size: $expect, got: $size"
20017 }
20018
20019 test_806() {
20020         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
20021                 skip "Need MDS version at least 2.11.52"
20022
20023         local bs=1048576
20024
20025         touch $DIR/$tfile || error "touch $tfile failed"
20026
20027         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
20028         save_lustre_params client "llite.*.xattr_cache" > $save
20029         lctl set_param llite.*.xattr_cache=0
20030         stack_trap "restore_lustre_params < $save; rm -f $save" EXIT
20031
20032         # single-threaded write
20033         echo "Test SOM for single-threaded write"
20034         dd if=/dev/zero of=$DIR/$tfile bs=$bs count=1 ||
20035                 error "write $tfile failed"
20036         check_lsom_size $DIR/$tfile $bs
20037
20038         local num=32
20039         local size=$(($num * $bs))
20040         local offset=0
20041         local i
20042
20043         echo "Test SOM for single client multi-threaded($num) write"
20044         $TRUNCATE $DIR/$tfile 0
20045         for ((i = 0; i < $num; i++)); do
20046                 $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
20047                 local pids[$i]=$!
20048                 offset=$((offset + $bs))
20049         done
20050         for (( i=0; i < $num; i++ )); do
20051                 wait ${pids[$i]}
20052         done
20053         check_lsom_size $DIR/$tfile $size
20054
20055         $TRUNCATE $DIR/$tfile 0
20056         for ((i = 0; i < $num; i++)); do
20057                 offset=$((offset - $bs))
20058                 $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
20059                 local pids[$i]=$!
20060         done
20061         for (( i=0; i < $num; i++ )); do
20062                 wait ${pids[$i]}
20063         done
20064         check_lsom_size $DIR/$tfile $size
20065
20066         # multi-client wirtes
20067         num=$(get_node_count ${CLIENTS//,/ })
20068         size=$(($num * $bs))
20069         offset=0
20070         i=0
20071
20072         echo "Test SOM for multi-client ($num) writes"
20073         $TRUNCATE $DIR/$tfile 0
20074         for client in ${CLIENTS//,/ }; do
20075                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
20076                 local pids[$i]=$!
20077                 i=$((i + 1))
20078                 offset=$((offset + $bs))
20079         done
20080         for (( i=0; i < $num; i++ )); do
20081                 wait ${pids[$i]}
20082         done
20083         check_lsom_size $DIR/$tfile $offset
20084
20085         i=0
20086         $TRUNCATE $DIR/$tfile 0
20087         for client in ${CLIENTS//,/ }; do
20088                 offset=$((offset - $bs))
20089                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
20090                 local pids[$i]=$!
20091                 i=$((i + 1))
20092         done
20093         for (( i=0; i < $num; i++ )); do
20094                 wait ${pids[$i]}
20095         done
20096         check_lsom_size $DIR/$tfile $size
20097
20098         # verify truncate
20099         echo "Test SOM for truncate"
20100         $TRUNCATE $DIR/$tfile 1048576
20101         check_lsom_size $DIR/$tfile 1048576
20102         $TRUNCATE $DIR/$tfile 1234
20103         check_lsom_size $DIR/$tfile 1234
20104
20105         # verify SOM blocks count
20106         echo "Verify SOM block count"
20107         $TRUNCATE $DIR/$tfile 0
20108         $MULTIOP $DIR/$tfile oO_TRUNC:O_RDWR:w1048576YSc ||
20109                 error "failed to write file $tfile"
20110         check_lsom_data $DIR/$tfile
20111 }
20112 run_test 806 "Verify Lazy Size on MDS"
20113
20114 test_807() {
20115         [ -n "$FILESET" ] && skip "Not functional for FILESET set"
20116         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
20117                 skip "Need MDS version at least 2.11.52"
20118
20119         # Registration step
20120         changelog_register || error "changelog_register failed"
20121         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
20122         changelog_users $SINGLEMDS | grep -q $cl_user ||
20123                 error "User $cl_user not found in changelog_users"
20124
20125         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
20126         save_lustre_params client "llite.*.xattr_cache" > $save
20127         lctl set_param llite.*.xattr_cache=0
20128         stack_trap "restore_lustre_params < $save; rm -f $save" EXIT
20129
20130         rm -rf $DIR/$tdir || error "rm $tdir failed"
20131         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
20132         touch $DIR/$tdir/trunc || error "touch $tdir/trunc failed"
20133         $TRUNCATE $DIR/$tdir/trunc 1024 || error "truncate $tdir/trunc failed"
20134         $TRUNCATE $DIR/$tdir/trunc 1048576 ||
20135                 error "truncate $tdir/trunc failed"
20136
20137         local bs=1048576
20138         dd if=/dev/zero of=$DIR/$tdir/single_dd bs=$bs count=1 ||
20139                 error "write $tfile failed"
20140
20141         # multi-client wirtes
20142         local num=$(get_node_count ${CLIENTS//,/ })
20143         local offset=0
20144         local i=0
20145
20146         echo "Test SOM for multi-client ($num) writes"
20147         touch $DIR/$tfile || error "touch $tfile failed"
20148         $TRUNCATE $DIR/$tfile 0
20149         for client in ${CLIENTS//,/ }; do
20150                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
20151                 local pids[$i]=$!
20152                 i=$((i + 1))
20153                 offset=$((offset + $bs))
20154         done
20155         for (( i=0; i < $num; i++ )); do
20156                 wait ${pids[$i]}
20157         done
20158
20159         sleep 5
20160         $LSOM_SYNC -u $cl_user -m $FSNAME-MDT0000 $MOUNT
20161         check_lsom_data $DIR/$tdir/trunc
20162         check_lsom_data $DIR/$tdir/single_dd
20163         check_lsom_data $DIR/$tfile
20164
20165         rm -rf $DIR/$tdir
20166         # Deregistration step
20167         changelog_deregister || error "changelog_deregister failed"
20168 }
20169 run_test 807 "verify LSOM syncing tool"
20170
20171 check_som_nologged()
20172 {
20173         local lines=$($LFS changelog $FSNAME-MDT0000 |
20174                 grep 'x=trusted.som' | wc -l)
20175         [ $lines -ne 0 ] && error "trusted.som xattr is logged in Changelogs"
20176 }
20177
20178 test_808() {
20179         [ $MDS1_VERSION -lt $(version_code 2.11.55) ] &&
20180                 skip "Need MDS version at least 2.11.55"
20181
20182         # Registration step
20183         changelog_register || error "changelog_register failed"
20184
20185         touch $DIR/$tfile || error "touch $tfile failed"
20186         check_som_nologged
20187
20188         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=1 ||
20189                 error "write $tfile failed"
20190         check_som_nologged
20191
20192         $TRUNCATE $DIR/$tfile 1234
20193         check_som_nologged
20194
20195         $TRUNCATE $DIR/$tfile 1048576
20196         check_som_nologged
20197
20198         # Deregistration step
20199         changelog_deregister || error "changelog_deregister failed"
20200 }
20201 run_test 808 "Check trusted.som xattr not logged in Changelogs"
20202
20203 check_som_nodata()
20204 {
20205         $LFS getsom $1
20206         [[ $? -eq 61 ]] || error "DoM-only file $1 has SOM xattr"
20207 }
20208
20209 test_809() {
20210         [ $MDS1_VERSION -lt $(version_code 2.11.56) ] &&
20211                 skip "Need MDS version at least 2.11.56"
20212
20213         $LFS setstripe -E 1M -L mdt $DIR/$tfile ||
20214                 error "failed to create DoM-only file $DIR/$tfile"
20215         touch $DIR/$tfile || error "touch $tfile failed"
20216         check_som_nodata $DIR/$tfile
20217
20218         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 ||
20219                 error "write $tfile failed"
20220         check_som_nodata $DIR/$tfile
20221
20222         $TRUNCATE $DIR/$tfile 1234
20223         check_som_nodata $DIR/$tfile
20224
20225         $TRUNCATE $DIR/$tfile 4097
20226         check_som_nodata $DIR/$file
20227 }
20228 run_test 809 "Verify no SOM xattr store for DoM-only files"
20229
20230 test_810() {
20231         local ORIG
20232         local CSUM
20233
20234         # t10 seem to dislike partial pages
20235         lctl set_param osc.*.checksum_type=adler
20236         lctl set_param fail_loc=0x411
20237         dd if=/dev/urandom of=$DIR/$tfile bs=10240 count=2
20238         ORIG=$(md5sum $DIR/$tfile)
20239         lctl set_param ldlm.namespaces.*osc*.lru_size=clear
20240         CSUM=$(md5sum $DIR/$tfile)
20241         set_checksum_type adler
20242         if [ "$ORIG" != "$CSUM" ]; then
20243                 error "$ORIG != $CSUM"
20244         fi
20245 }
20246 run_test 810 "partial page writes on ZFS (LU-11663)"
20247
20248 test_811() {
20249         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.56) ] &&
20250                 skip "Need MDS version at least 2.11.56"
20251
20252         #define OBD_FAIL_MDS_ORPHAN_DELETE      0x165
20253         do_facet mds1 $LCTL set_param fail_loc=0x165
20254         $MULTIOP $DIR/$tfile Ouc || error "multiop failed"
20255
20256         stop mds1
20257         start mds1 $(mdsdevname 1) $MDS_MOUNT_OPTS
20258
20259         sleep 5
20260         [[ $(do_facet mds1 pgrep orph_.*-MDD | wc -l) -eq 0 ]] ||
20261                 error "MDD orphan cleanup thread not quit"
20262 }
20263 run_test 811 "orphan name stub can be cleaned up in startup"
20264
20265 #
20266 # tests that do cleanup/setup should be run at the end
20267 #
20268
20269 test_900() {
20270         [ $PARALLEL == "yes" ] && skip "skip parallel run"
20271         local ls
20272
20273         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
20274         $LCTL set_param fail_loc=0x903
20275
20276         cancel_lru_locks MGC
20277
20278         FAIL_ON_ERROR=true cleanup
20279         FAIL_ON_ERROR=true setup
20280 }
20281 run_test 900 "umount should not race with any mgc requeue thread"
20282
20283 complete $SECONDS
20284 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
20285 check_and_cleanup_lustre
20286 if [ "$I_MOUNTED" != "yes" ]; then
20287         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
20288 fi
20289 exit_status