Whamcloud - gitweb
1aecaf06255872956bb61d1908ac4c2cbf00c6d7
[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         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
2274         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2275         local POOL=${POOL:-testpool}
2276         local ostrange="0 0 1"
2277
2278         test_mkdir $DIR/$tdir
2279         pool_add $POOL || error "pool_add failed"
2280         pool_add_targets $POOL $ostrange || error "pool_add_targets failed"
2281         $LFS setstripe -p $POOL $DIR/$tdir
2282
2283         local pool=$($LFS getstripe -p $DIR/$tdir)
2284
2285         [ "$pool" = "$POOL" ] || error "Striping failed got '$pool' not '$POOL'"
2286
2287         $LFS setstripe -d $DIR/$tdir
2288
2289         pool=$($LFS getstripe -p $DIR/$tdir)
2290
2291         rmdir $DIR/$tdir
2292
2293         [ -z "$pool" ] || error "'$pool' is not empty"
2294 }
2295 run_test 27G "Clear OST pool from stripe"
2296
2297 test_27H() {
2298         [[ $MDS1_VERSION -le $(version_code 2.11.54) ]] &&
2299                 skip "Need MDS version newer than 2.11.54"
2300         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
2301         test_mkdir $DIR/$tdir
2302         $LFS setstripe -o 0 -o 2 $DIR/$tdir || error "setstripe failed"
2303         touch $DIR/$tdir/$tfile
2304         $LFS getstripe -c $DIR/$tdir/$tfile
2305         [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
2306                 error "two-stripe file doesn't have two stripes"
2307
2308         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
2309         $LFS getstripe -y $DIR/$tdir/$tfile
2310         (( $($LFS getstripe -y $DIR/$tdir/$tfile |
2311              egrep -c "l_ost_idx: [02]$") == "2" )) ||
2312                 error "expected l_ost_idx: [02]$ not matched"
2313
2314         # make sure ost list has been cleared
2315         local stripesize=$($LFS getstripe -S $DIR/$tdir)
2316         $LFS setstripe -S $((stripesize * 4)) -i 1 \
2317                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
2318         touch $DIR/$tdir/f3
2319         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
2320 }
2321 run_test 27H "Set specific OSTs stripe"
2322
2323 # createtest also checks that device nodes are created and
2324 # then visible correctly (#2091)
2325 test_28() { # bug 2091
2326         test_mkdir $DIR/d28
2327         $CREATETEST $DIR/d28/ct || error "createtest failed"
2328 }
2329 run_test 28 "create/mknod/mkdir with bad file types ============"
2330
2331 test_29() {
2332         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2333
2334         sync; sleep 1; sync # flush out any dirty pages from previous tests
2335         cancel_lru_locks
2336         test_mkdir $DIR/d29
2337         touch $DIR/d29/foo
2338         log 'first d29'
2339         ls -l $DIR/d29
2340
2341         declare -i LOCKCOUNTORIG=0
2342         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2343                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2344         done
2345         [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
2346
2347         declare -i LOCKUNUSEDCOUNTORIG=0
2348         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2349                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2350         done
2351
2352         log 'second d29'
2353         ls -l $DIR/d29
2354         log 'done'
2355
2356         declare -i LOCKCOUNTCURRENT=0
2357         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2358                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2359         done
2360
2361         declare -i LOCKUNUSEDCOUNTCURRENT=0
2362         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2363                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2364         done
2365
2366         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2367                 $LCTL set_param -n ldlm.dump_namespaces ""
2368                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2369                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2370                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2371                 return 2
2372         fi
2373         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2374                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2375                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2376                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2377                 return 3
2378         fi
2379 }
2380 run_test 29 "IT_GETATTR regression  ============================"
2381
2382 test_30a() { # was test_30
2383         cp $(which ls) $DIR || cp /bin/ls $DIR
2384         $DIR/ls / || error "Can't execute binary from lustre"
2385         rm $DIR/ls
2386 }
2387 run_test 30a "execute binary from Lustre (execve) =============="
2388
2389 test_30b() {
2390         cp `which ls` $DIR || cp /bin/ls $DIR
2391         chmod go+rx $DIR/ls
2392         $RUNAS $DIR/ls / || error "Can't execute binary from lustre as non-root"
2393         rm $DIR/ls
2394 }
2395 run_test 30b "execute binary from Lustre as non-root ==========="
2396
2397 test_30c() { # b=22376
2398         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2399
2400         cp `which ls` $DIR || cp /bin/ls $DIR
2401         chmod a-rw $DIR/ls
2402         cancel_lru_locks mdc
2403         cancel_lru_locks osc
2404         $RUNAS $DIR/ls / || error "Can't execute binary from lustre"
2405         rm -f $DIR/ls
2406 }
2407 run_test 30c "execute binary from Lustre without read perms ===="
2408
2409 test_31a() {
2410         $OPENUNLINK $DIR/f31 $DIR/f31 || error "openunlink failed"
2411         $CHECKSTAT -a $DIR/f31 || error "$DIR/f31 exists"
2412 }
2413 run_test 31a "open-unlink file =================================="
2414
2415 test_31b() {
2416         touch $DIR/f31 || error "touch $DIR/f31 failed"
2417         ln $DIR/f31 $DIR/f31b || error "ln failed"
2418         $MULTIOP $DIR/f31b Ouc || error "multiop failed"
2419         $CHECKSTAT -t file $DIR/f31 || error "$DIR/f31 not file type"
2420 }
2421 run_test 31b "unlink file with multiple links while open ======="
2422
2423 test_31c() {
2424         touch $DIR/f31 || error "touch $DIR/f31 failed"
2425         ln $DIR/f31 $DIR/f31c || error "ln failed"
2426         multiop_bg_pause $DIR/f31 O_uc ||
2427                 error "multiop_bg_pause for $DIR/f31 failed"
2428         MULTIPID=$!
2429         $MULTIOP $DIR/f31c Ouc
2430         kill -USR1 $MULTIPID
2431         wait $MULTIPID
2432 }
2433 run_test 31c "open-unlink file with multiple links ============="
2434
2435 test_31d() {
2436         opendirunlink $DIR/d31d $DIR/d31d || error "opendirunlink failed"
2437         $CHECKSTAT -a $DIR/d31d || error "$DIR/d31d exists"
2438 }
2439 run_test 31d "remove of open directory ========================="
2440
2441 test_31e() { # bug 2904
2442         openfilleddirunlink $DIR/d31e || error "openfilleddirunlink failed"
2443 }
2444 run_test 31e "remove of open non-empty directory ==============="
2445
2446 test_31f() { # bug 4554
2447         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2448
2449         set -vx
2450         test_mkdir $DIR/d31f
2451         $LFS setstripe -S 1048576 -c 1 $DIR/d31f
2452         cp /etc/hosts $DIR/d31f
2453         ls -l $DIR/d31f
2454         $LFS getstripe $DIR/d31f/hosts
2455         multiop_bg_pause $DIR/d31f D_c || return 1
2456         MULTIPID=$!
2457
2458         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2459         test_mkdir $DIR/d31f
2460         $LFS setstripe -S 1048576 -c 1 $DIR/d31f
2461         cp /etc/hosts $DIR/d31f
2462         ls -l $DIR/d31f
2463         $LFS getstripe $DIR/d31f/hosts
2464         multiop_bg_pause $DIR/d31f D_c || return 1
2465         MULTIPID2=$!
2466
2467         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2468         wait $MULTIPID || error "first opendir $MULTIPID failed"
2469
2470         sleep 6
2471
2472         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2473         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2474         set +vx
2475 }
2476 run_test 31f "remove of open directory with open-unlink file ==="
2477
2478 test_31g() {
2479         echo "-- cross directory link --"
2480         test_mkdir -c1 $DIR/${tdir}ga
2481         test_mkdir -c1 $DIR/${tdir}gb
2482         touch $DIR/${tdir}ga/f
2483         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2484         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2485         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2486         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2487         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2488 }
2489 run_test 31g "cross directory link==============="
2490
2491 test_31h() {
2492         echo "-- cross directory link --"
2493         test_mkdir -c1 $DIR/${tdir}
2494         test_mkdir -c1 $DIR/${tdir}/dir
2495         touch $DIR/${tdir}/f
2496         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2497         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2498         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2499         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2500         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2501 }
2502 run_test 31h "cross directory link under child==============="
2503
2504 test_31i() {
2505         echo "-- cross directory link --"
2506         test_mkdir -c1 $DIR/$tdir
2507         test_mkdir -c1 $DIR/$tdir/dir
2508         touch $DIR/$tdir/dir/f
2509         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2510         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2511         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2512         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2513         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2514 }
2515 run_test 31i "cross directory link under parent==============="
2516
2517 test_31j() {
2518         test_mkdir -c1 -p $DIR/$tdir
2519         test_mkdir -c1 -p $DIR/$tdir/dir1
2520         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2521         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2522         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2523         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2524         return 0
2525 }
2526 run_test 31j "link for directory==============="
2527
2528 test_31k() {
2529         test_mkdir -c1 -p $DIR/$tdir
2530         touch $DIR/$tdir/s
2531         touch $DIR/$tdir/exist
2532         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2533         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2534         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2535         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2536         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2537         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2538         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2539         return 0
2540 }
2541 run_test 31k "link to file: the same, non-existing, dir==============="
2542
2543 test_31m() {
2544         mkdir $DIR/d31m
2545         touch $DIR/d31m/s
2546         mkdir $DIR/d31m2
2547         touch $DIR/d31m2/exist
2548         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2549         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2550         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2551         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2552         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2553         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2554         return 0
2555 }
2556 run_test 31m "link to file: the same, non-existing, dir==============="
2557
2558 test_31n() {
2559         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2560         nlink=$(stat --format=%h $DIR/$tfile)
2561         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2562         local fd=$(free_fd)
2563         local cmd="exec $fd<$DIR/$tfile"
2564         eval $cmd
2565         cmd="exec $fd<&-"
2566         trap "eval $cmd" EXIT
2567         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2568         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2569         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2570         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2571         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2572         eval $cmd
2573 }
2574 run_test 31n "check link count of unlinked file"
2575
2576 link_one() {
2577         local TEMPNAME=$(mktemp $1_XXXXXX)
2578         mlink $TEMPNAME $1 2> /dev/null &&
2579                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2580         munlink $TEMPNAME
2581 }
2582
2583 test_31o() { # LU-2901
2584         test_mkdir $DIR/$tdir
2585         for LOOP in $(seq 100); do
2586                 rm -f $DIR/$tdir/$tfile*
2587                 for THREAD in $(seq 8); do
2588                         link_one $DIR/$tdir/$tfile.$LOOP &
2589                 done
2590                 wait
2591                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2592                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2593                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2594                         break || true
2595         done
2596 }
2597 run_test 31o "duplicate hard links with same filename"
2598
2599 test_31p() {
2600         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
2601
2602         test_mkdir $DIR/$tdir
2603         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2604         $LFS setdirstripe -D -c2 -H all_char $DIR/$tdir/striped_dir
2605
2606         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2607                 error "open unlink test1 failed"
2608         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2609                 error "open unlink test2 failed"
2610
2611         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2612                 error "test1 still exists"
2613         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2614                 error "test2 still exists"
2615 }
2616 run_test 31p "remove of open striped directory"
2617
2618 cleanup_test32_mount() {
2619         local rc=0
2620         trap 0
2621         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$//p')
2622         $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
2623         losetup -d $loopdev || true
2624         rm -rf $DIR/$tdir
2625         return $rc
2626 }
2627
2628 test_32a() {
2629         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2630
2631         echo "== more mountpoints and symlinks ================="
2632         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2633         trap cleanup_test32_mount EXIT
2634         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2635         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2636                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2637         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. ||
2638                 error "$DIR/$tdir/ext2-mountpoint/.. not dir type"
2639         cleanup_test32_mount
2640 }
2641 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2642
2643 test_32b() {
2644         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2645
2646         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2647         trap cleanup_test32_mount EXIT
2648         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2649         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2650                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2651         ls -al $DIR/$tdir/ext2-mountpoint/.. ||
2652                 error "Can't list $DIR/$tdir/ext2-mountpoint/.."
2653         cleanup_test32_mount
2654 }
2655 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2656
2657 test_32c() {
2658         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2659
2660         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2661         trap cleanup_test32_mount EXIT
2662         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2663         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2664                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2665         test_mkdir -p $DIR/$tdir/d2/test_dir
2666         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
2667                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_dir not dir type"
2668         cleanup_test32_mount
2669 }
2670 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2671
2672 test_32d() {
2673         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2674
2675         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2676         trap cleanup_test32_mount EXIT
2677         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2678         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2679                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2680         test_mkdir -p $DIR/$tdir/d2/test_dir
2681         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
2682                 error "Can't list $DIR/$tdir/ext2-mountpoint/../d2/test_dir"
2683         cleanup_test32_mount
2684 }
2685 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir"
2686
2687 test_32e() {
2688         rm -fr $DIR/$tdir
2689         test_mkdir -p $DIR/$tdir/tmp
2690         local tmp_dir=$DIR/$tdir/tmp
2691         ln -s $DIR/$tdir $tmp_dir/symlink11
2692         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2693         $CHECKSTAT -t link $DIR/$tdir/tmp/symlink11 || error "symlink11 bad"
2694         $CHECKSTAT -t link $DIR/$tdir/symlink01 || error "symlink01 bad"
2695 }
2696 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir"
2697
2698 test_32f() {
2699         rm -fr $DIR/$tdir
2700         test_mkdir -p $DIR/$tdir/tmp
2701         local tmp_dir=$DIR/$tdir/tmp
2702         ln -s $DIR/$tdir $tmp_dir/symlink11
2703         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2704         ls $DIR/$tdir/tmp/symlink11  || error "symlink11 bad"
2705         ls $DIR/$tdir/symlink01 || error "symlink01 bad"
2706 }
2707 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir"
2708
2709 test_32g() {
2710         local tmp_dir=$DIR/$tdir/tmp
2711         test_mkdir -p $tmp_dir
2712         test_mkdir $DIR/${tdir}2
2713         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2714         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2715         $CHECKSTAT -t link $tmp_dir/symlink12 || error "symlink12 not a link"
2716         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error "symlink02 not a link"
2717         $CHECKSTAT -t dir -f $tmp_dir/symlink12 || error "symlink12 not a dir"
2718         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error "symlink12 not a dir"
2719 }
2720 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2721
2722 test_32h() {
2723         rm -fr $DIR/$tdir $DIR/${tdir}2
2724         tmp_dir=$DIR/$tdir/tmp
2725         test_mkdir -p $tmp_dir
2726         test_mkdir $DIR/${tdir}2
2727         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2728         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2729         ls $tmp_dir/symlink12 || error "listing symlink12"
2730         ls $DIR/$tdir/symlink02  || error "listing symlink02"
2731 }
2732 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2733
2734 test_32i() {
2735         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2736
2737         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2738         trap cleanup_test32_mount EXIT
2739         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2740         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2741                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2742         touch $DIR/$tdir/test_file
2743         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file ||
2744                 error "$DIR/$tdir/ext2-mountpoint/../test_file not file type"
2745         cleanup_test32_mount
2746 }
2747 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2748
2749 test_32j() {
2750         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2751
2752         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2753         trap cleanup_test32_mount EXIT
2754         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2755         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2756                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2757         touch $DIR/$tdir/test_file
2758         cat $DIR/$tdir/ext2-mountpoint/../test_file ||
2759                 error "Can't open $DIR/$tdir/ext2-mountpoint/../test_file"
2760         cleanup_test32_mount
2761 }
2762 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2763
2764 test_32k() {
2765         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2766
2767         rm -fr $DIR/$tdir
2768         trap cleanup_test32_mount EXIT
2769         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2770         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2771                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2772         test_mkdir -p $DIR/$tdir/d2
2773         touch $DIR/$tdir/d2/test_file || error "touch failed"
2774         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
2775                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_file not file type"
2776         cleanup_test32_mount
2777 }
2778 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2779
2780 test_32l() {
2781         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2782
2783         rm -fr $DIR/$tdir
2784         trap cleanup_test32_mount EXIT
2785         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2786         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2787                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2788         test_mkdir -p $DIR/$tdir/d2
2789         touch $DIR/$tdir/d2/test_file || error "touch failed"
2790         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
2791                 error "Can't open $DIR/$tdir/ext2-mountpoint/../d2/test_file"
2792         cleanup_test32_mount
2793 }
2794 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2795
2796 test_32m() {
2797         rm -fr $DIR/d32m
2798         test_mkdir -p $DIR/d32m/tmp
2799         TMP_DIR=$DIR/d32m/tmp
2800         ln -s $DIR $TMP_DIR/symlink11
2801         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2802         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 ||
2803                 error "symlink11 not a link"
2804         $CHECKSTAT -t link $DIR/d32m/symlink01 ||
2805                 error "symlink01 not a link"
2806 }
2807 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2808
2809 test_32n() {
2810         rm -fr $DIR/d32n
2811         test_mkdir -p $DIR/d32n/tmp
2812         TMP_DIR=$DIR/d32n/tmp
2813         ln -s $DIR $TMP_DIR/symlink11
2814         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2815         ls -l $DIR/d32n/tmp/symlink11  || error "listing symlink11"
2816         ls -l $DIR/d32n/symlink01 || error "listing symlink01"
2817 }
2818 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2819
2820 test_32o() {
2821         touch $DIR/$tfile
2822         test_mkdir -p $DIR/d32o/tmp
2823         TMP_DIR=$DIR/d32o/tmp
2824         ln -s $DIR/$tfile $TMP_DIR/symlink12
2825         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2826         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 ||
2827                 error "symlink12 not a link"
2828         $CHECKSTAT -t link $DIR/d32o/symlink02 || error "symlink02 not a link"
2829         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 ||
2830                 error "$DIR/d32o/tmp/symlink12 not file type"
2831         $CHECKSTAT -t file -f $DIR/d32o/symlink02 ||
2832                 error "$DIR/d32o/symlink02 not file type"
2833 }
2834 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2835
2836 test_32p() {
2837         log 32p_1
2838         rm -fr $DIR/d32p
2839         log 32p_2
2840         rm -f $DIR/$tfile
2841         log 32p_3
2842         touch $DIR/$tfile
2843         log 32p_4
2844         test_mkdir -p $DIR/d32p/tmp
2845         log 32p_5
2846         TMP_DIR=$DIR/d32p/tmp
2847         log 32p_6
2848         ln -s $DIR/$tfile $TMP_DIR/symlink12
2849         log 32p_7
2850         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2851         log 32p_8
2852         cat $DIR/d32p/tmp/symlink12 ||
2853                 error "Can't open $DIR/d32p/tmp/symlink12"
2854         log 32p_9
2855         cat $DIR/d32p/symlink02 || error "Can't open $DIR/d32p/symlink02"
2856         log 32p_10
2857 }
2858 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2859
2860 test_32q() {
2861         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2862
2863         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2864         trap cleanup_test32_mount EXIT
2865         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2866         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
2867         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2868                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2869         ls $DIR/$tdir/ext2-mountpoint | grep "\<under_the_mount\>" && error
2870         cleanup_test32_mount
2871 }
2872 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2873
2874 test_32r() {
2875         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2876
2877         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2878         trap cleanup_test32_mount EXIT
2879         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2880         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
2881         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2882                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2883         ls $DIR/$tdir/ext2-mountpoint | grep -q under_the_mount && error || true
2884         cleanup_test32_mount
2885 }
2886 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2887
2888 test_33aa() {
2889         rm -f $DIR/$tfile
2890         touch $DIR/$tfile
2891         chmod 444 $DIR/$tfile
2892         chown $RUNAS_ID $DIR/$tfile
2893         log 33_1
2894         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2895         log 33_2
2896 }
2897 run_test 33aa "write file with mode 444 (should return error)"
2898
2899 test_33a() {
2900         rm -fr $DIR/$tdir
2901         test_mkdir $DIR/$tdir
2902         chown $RUNAS_ID $DIR/$tdir
2903         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile ||
2904                 error "$RUNAS create $tdir/$tfile failed"
2905         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile &&
2906                 error "open RDWR" || true
2907 }
2908 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2909
2910 test_33b() {
2911         rm -fr $DIR/$tdir
2912         test_mkdir $DIR/$tdir
2913         chown $RUNAS_ID $DIR/$tdir
2914         $RUNAS $OPENFILE -f 1286739555 $DIR/$tdir/$tfile || true
2915 }
2916 run_test 33b "test open file with malformed flags (No panic)"
2917
2918 test_33c() {
2919         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2920         remote_ost_nodsh && skip "remote OST with nodsh"
2921
2922         local ostnum
2923         local ostname
2924         local write_bytes
2925         local all_zeros
2926
2927         all_zeros=:
2928         rm -fr $DIR/$tdir
2929         test_mkdir $DIR/$tdir
2930         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2931
2932         sync
2933         for ostnum in $(seq $OSTCOUNT); do
2934                 # test-framework's OST numbering is one-based, while Lustre's
2935                 # is zero-based
2936                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2937                 # Parsing llobdstat's output sucks; we could grep the /proc
2938                 # path, but that's likely to not be as portable as using the
2939                 # llobdstat utility.  So we parse lctl output instead.
2940                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2941                         obdfilter/$ostname/stats |
2942                         awk '/^write_bytes/ {print $7}' )
2943                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2944                 if (( ${write_bytes:-0} > 0 ))
2945                 then
2946                         all_zeros=false
2947                         break;
2948                 fi
2949         done
2950
2951         $all_zeros || return 0
2952
2953         # Write four bytes
2954         echo foo > $DIR/$tdir/bar
2955         # Really write them
2956         sync
2957
2958         # Total up write_bytes after writing.  We'd better find non-zeros.
2959         for ostnum in $(seq $OSTCOUNT); do
2960                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2961                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2962                         obdfilter/$ostname/stats |
2963                         awk '/^write_bytes/ {print $7}' )
2964                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2965                 if (( ${write_bytes:-0} > 0 ))
2966                 then
2967                         all_zeros=false
2968                         break;
2969                 fi
2970         done
2971
2972         if $all_zeros
2973         then
2974                 for ostnum in $(seq $OSTCOUNT); do
2975                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2976                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2977                         do_facet ost$ostnum lctl get_param -n \
2978                                 obdfilter/$ostname/stats
2979                 done
2980                 error "OST not keeping write_bytes stats (b22312)"
2981         fi
2982 }
2983 run_test 33c "test llobdstat and write_bytes"
2984
2985 test_33d() {
2986         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
2987         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2988
2989         local MDTIDX=1
2990         local remote_dir=$DIR/$tdir/remote_dir
2991
2992         test_mkdir $DIR/$tdir
2993         $LFS mkdir -i $MDTIDX $remote_dir ||
2994                 error "create remote directory failed"
2995
2996         touch $remote_dir/$tfile
2997         chmod 444 $remote_dir/$tfile
2998         chown $RUNAS_ID $remote_dir/$tfile
2999
3000         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
3001
3002         chown $RUNAS_ID $remote_dir
3003         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
3004                                         error "create" || true
3005         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
3006                                     error "open RDWR" || true
3007         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
3008 }
3009 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
3010
3011 test_33e() {
3012         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3013
3014         mkdir $DIR/$tdir
3015
3016         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3017         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3018         mkdir $DIR/$tdir/local_dir
3019
3020         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3021         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3022         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3023
3024         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3025                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
3026
3027         rmdir $DIR/$tdir/* || error "rmdir failed"
3028
3029         umask 777
3030         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3031         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3032         mkdir $DIR/$tdir/local_dir
3033
3034         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3035         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3036         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3037
3038         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3039                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
3040
3041         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
3042
3043         umask 000
3044         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3045         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3046         mkdir $DIR/$tdir/local_dir
3047
3048         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3049         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3050         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3051
3052         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3053                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
3054 }
3055 run_test 33e "mkdir and striped directory should have same mode"
3056
3057 cleanup_33f() {
3058         trap 0
3059         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
3060 }
3061
3062 test_33f() {
3063         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3064         remote_mds_nodsh && skip "remote MDS with nodsh"
3065
3066         mkdir $DIR/$tdir
3067         chmod go+rwx $DIR/$tdir
3068         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
3069         trap cleanup_33f EXIT
3070
3071         $RUNAS lfs mkdir -i 0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
3072                 error "cannot create striped directory"
3073
3074         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
3075                 error "cannot create files in striped directory"
3076
3077         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
3078                 error "cannot remove files in striped directory"
3079
3080         $RUNAS rmdir $DIR/$tdir/striped_dir ||
3081                 error "cannot remove striped directory"
3082
3083         cleanup_33f
3084 }
3085 run_test 33f "nonroot user can create, access, and remove a striped directory"
3086
3087 test_33g() {
3088         mkdir -p $DIR/$tdir/dir2
3089
3090         local err=$($RUNAS mkdir $DIR/$tdir/dir2 2>&1)
3091         echo $err
3092         [[ $err =~ "exists" ]] || error "Not exists error"
3093 }
3094 run_test 33g "nonroot user create already existing root created file"
3095
3096 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
3097 test_34a() {
3098         rm -f $DIR/f34
3099         $MCREATE $DIR/f34 || error "mcreate failed"
3100         $LFS getstripe $DIR/f34 2>&1 | grep -q "no stripe info" ||
3101                 error "getstripe failed"
3102         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error "truncate failed"
3103         $LFS getstripe $DIR/f34 2>&1 | grep -q "no stripe info" ||
3104                 error "getstripe failed"
3105         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3106                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3107 }
3108 run_test 34a "truncate file that has not been opened ==========="
3109
3110 test_34b() {
3111         [ ! -f $DIR/f34 ] && test_34a
3112         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3113                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3114         $OPENFILE -f O_RDONLY $DIR/f34
3115         $LFS getstripe $DIR/f34 2>&1 | grep -q "no stripe info" ||
3116                 error "getstripe failed"
3117         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3118                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3119 }
3120 run_test 34b "O_RDONLY opening file doesn't create objects ====="
3121
3122 test_34c() {
3123         [ ! -f $DIR/f34 ] && test_34a
3124         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3125                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3126         $OPENFILE -f O_RDWR $DIR/f34
3127         $LFS getstripe $DIR/f34 2>&1 | grep -q "no stripe info" &&
3128                 error "$LFS getstripe failed"
3129         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3130                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3131 }
3132 run_test 34c "O_RDWR opening file-with-size works =============="
3133
3134 test_34d() {
3135         [ ! -f $DIR/f34 ] && test_34a
3136         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 ||
3137                 error "dd failed"
3138         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3139                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3140         rm $DIR/f34
3141 }
3142 run_test 34d "write to sparse file ============================="
3143
3144 test_34e() {
3145         rm -f $DIR/f34e
3146         $MCREATE $DIR/f34e || error "mcreate failed"
3147         $TRUNCATE $DIR/f34e 1000 || error "truncate failed"
3148         $CHECKSTAT -s 1000 $DIR/f34e ||
3149                 error "Size of $DIR/f34e not equal to 1000 bytes"
3150         $OPENFILE -f O_RDWR $DIR/f34e
3151         $CHECKSTAT -s 1000 $DIR/f34e ||
3152                 error "Size of $DIR/f34e not equal to 1000 bytes"
3153 }
3154 run_test 34e "create objects, some with size and some without =="
3155
3156 test_34f() { # bug 6242, 6243
3157         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3158
3159         SIZE34F=48000
3160         rm -f $DIR/f34f
3161         $MCREATE $DIR/f34f || error "mcreate failed"
3162         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
3163         dd if=$DIR/f34f of=$TMP/f34f
3164         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
3165         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
3166         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
3167         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
3168         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
3169 }
3170 run_test 34f "read from a file with no objects until EOF ======="
3171
3172 test_34g() {
3173         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3174
3175         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE ||
3176                 error "dd failed"
3177         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error "truncate failed"
3178         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
3179                 error "Size of $DIR/$tfile not equal to $((TEST_34_SIZE / 2))"
3180         cancel_lru_locks osc
3181         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
3182                 error "wrong size after lock cancel"
3183
3184         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error "truncate failed"
3185         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
3186                 error "expanding truncate failed"
3187         cancel_lru_locks osc
3188         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
3189                 error "wrong expanded size after lock cancel"
3190 }
3191 run_test 34g "truncate long file ==============================="
3192
3193 test_34h() {
3194         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3195
3196         local gid=10
3197         local sz=1000
3198
3199         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error "dd failed"
3200         sync # Flush the cache so that multiop below does not block on cache
3201              # flush when getting the group lock
3202         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
3203         MULTIPID=$!
3204
3205         # Since just timed wait is not good enough, let's do a sync write
3206         # that way we are sure enough time for a roundtrip + processing
3207         # passed + 2 seconds of extra margin.
3208         dd if=/dev/zero of=$DIR/${tfile}-1 bs=$PAGE_SIZE oflag=direct count=1
3209         rm $DIR/${tfile}-1
3210         sleep 2
3211
3212         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
3213                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
3214                 kill -9 $MULTIPID
3215         fi
3216         wait $MULTIPID
3217         local nsz=`stat -c %s $DIR/$tfile`
3218         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
3219 }
3220 run_test 34h "ftruncate file under grouplock should not block"
3221
3222 test_35a() {
3223         cp /bin/sh $DIR/f35a
3224         chmod 444 $DIR/f35a
3225         chown $RUNAS_ID $DIR/f35a
3226         $RUNAS $DIR/f35a && error || true
3227         rm $DIR/f35a
3228 }
3229 run_test 35a "exec file with mode 444 (should return and not leak)"
3230
3231 test_36a() {
3232         rm -f $DIR/f36
3233         utime $DIR/f36 || error "utime failed for MDS"
3234 }
3235 run_test 36a "MDS utime check (mknod, utime)"
3236
3237 test_36b() {
3238         echo "" > $DIR/f36
3239         utime $DIR/f36 || error "utime failed for OST"
3240 }
3241 run_test 36b "OST utime check (open, utime)"
3242
3243 test_36c() {
3244         rm -f $DIR/d36/f36
3245         test_mkdir $DIR/d36
3246         chown $RUNAS_ID $DIR/d36
3247         $RUNAS utime $DIR/d36/f36 || error "utime failed for MDS as non-root"
3248 }
3249 run_test 36c "non-root MDS utime check (mknod, utime)"
3250
3251 test_36d() {
3252         [ ! -d $DIR/d36 ] && test_36c
3253         echo "" > $DIR/d36/f36
3254         $RUNAS utime $DIR/d36/f36 || error "utime failed for OST as non-root"
3255 }
3256 run_test 36d "non-root OST utime check (open, utime)"
3257
3258 test_36e() {
3259         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping"
3260
3261         test_mkdir $DIR/$tdir
3262         touch $DIR/$tdir/$tfile
3263         $RUNAS utime $DIR/$tdir/$tfile &&
3264                 error "utime worked, expected failure" || true
3265 }
3266 run_test 36e "utime on non-owned file (should return error)"
3267
3268 subr_36fh() {
3269         local fl="$1"
3270         local LANG_SAVE=$LANG
3271         local LC_LANG_SAVE=$LC_LANG
3272         export LANG=C LC_LANG=C # for date language
3273
3274         DATESTR="Dec 20  2000"
3275         test_mkdir $DIR/$tdir
3276         lctl set_param fail_loc=$fl
3277         date; date +%s
3278         cp /etc/hosts $DIR/$tdir/$tfile
3279         sync & # write RPC generated with "current" inode timestamp, but delayed
3280         sleep 1
3281         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
3282         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
3283         cancel_lru_locks osc
3284         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
3285         date; date +%s
3286         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
3287                 echo "BEFORE: $LS_BEFORE" && \
3288                 echo "AFTER : $LS_AFTER" && \
3289                 echo "WANT  : $DATESTR" && \
3290                 error "$DIR/$tdir/$tfile timestamps changed" || true
3291
3292         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
3293 }
3294
3295 test_36f() {
3296         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3297
3298         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
3299         subr_36fh "0x80000214"
3300 }
3301 run_test 36f "utime on file racing with OST BRW write =========="
3302
3303 test_36g() {
3304         remote_ost_nodsh && skip "remote OST with nodsh"
3305         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3306
3307         local fmd_max_age
3308         local fmd_before
3309         local fmd_after
3310
3311         test_mkdir $DIR/$tdir
3312         fmd_max_age=$(do_facet ost1 \
3313                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
3314                 head -n 1")
3315
3316         fmd_before=$(do_facet ost1 \
3317                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3318         touch $DIR/$tdir/$tfile
3319         sleep $((fmd_max_age + 12))
3320         fmd_after=$(do_facet ost1 \
3321                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3322
3323         echo "fmd_before: $fmd_before"
3324         echo "fmd_after: $fmd_after"
3325         [[ $fmd_after -gt $fmd_before ]] &&
3326                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" &&
3327                 error "fmd didn't expire after ping" || true
3328 }
3329 run_test 36g "filter mod data cache expiry ====================="
3330
3331 test_36h() {
3332         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3333
3334         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
3335         subr_36fh "0x80000227"
3336 }
3337 run_test 36h "utime on file racing with OST BRW write =========="
3338
3339 test_36i() {
3340         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3341
3342         test_mkdir $DIR/$tdir
3343         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3344
3345         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3346         local new_mtime=$((mtime + 200))
3347
3348         #change Modify time of striped dir
3349         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3350                         error "change mtime failed"
3351
3352         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3353
3354         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3355 }
3356 run_test 36i "change mtime on striped directory"
3357
3358 # test_37 - duplicate with tests 32q 32r
3359
3360 test_38() {
3361         local file=$DIR/$tfile
3362         touch $file
3363         openfile -f O_DIRECTORY $file
3364         local RC=$?
3365         local ENOTDIR=20
3366         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3367         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3368 }
3369 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3370
3371 test_39a() { # was test_39
3372         touch $DIR/$tfile
3373         touch $DIR/${tfile}2
3374 #       ls -l  $DIR/$tfile $DIR/${tfile}2
3375 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
3376 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
3377         sleep 2
3378         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3379         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3380                 echo "mtime"
3381                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3382                 echo "atime"
3383                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3384                 echo "ctime"
3385                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3386                 error "O_TRUNC didn't change timestamps"
3387         fi
3388 }
3389 run_test 39a "mtime changed on create"
3390
3391 test_39b() {
3392         test_mkdir -c1 $DIR/$tdir
3393         cp -p /etc/passwd $DIR/$tdir/fopen
3394         cp -p /etc/passwd $DIR/$tdir/flink
3395         cp -p /etc/passwd $DIR/$tdir/funlink
3396         cp -p /etc/passwd $DIR/$tdir/frename
3397         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3398
3399         sleep 1
3400         echo "aaaaaa" >> $DIR/$tdir/fopen
3401         echo "aaaaaa" >> $DIR/$tdir/flink
3402         echo "aaaaaa" >> $DIR/$tdir/funlink
3403         echo "aaaaaa" >> $DIR/$tdir/frename
3404
3405         local open_new=`stat -c %Y $DIR/$tdir/fopen`
3406         local link_new=`stat -c %Y $DIR/$tdir/flink`
3407         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3408         local rename_new=`stat -c %Y $DIR/$tdir/frename`
3409
3410         cat $DIR/$tdir/fopen > /dev/null
3411         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3412         rm -f $DIR/$tdir/funlink2
3413         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3414
3415         for (( i=0; i < 2; i++ )) ; do
3416                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3417                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3418                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3419                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3420
3421                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3422                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3423                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3424                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3425
3426                 cancel_lru_locks osc
3427                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3428         done
3429 }
3430 run_test 39b "mtime change on open, link, unlink, rename  ======"
3431
3432 # this should be set to past
3433 TEST_39_MTIME=`date -d "1 year ago" +%s`
3434
3435 # bug 11063
3436 test_39c() {
3437         touch $DIR1/$tfile
3438         sleep 2
3439         local mtime0=`stat -c %Y $DIR1/$tfile`
3440
3441         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3442         local mtime1=`stat -c %Y $DIR1/$tfile`
3443         [ "$mtime1" = $TEST_39_MTIME ] || \
3444                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3445
3446         local d1=`date +%s`
3447         echo hello >> $DIR1/$tfile
3448         local d2=`date +%s`
3449         local mtime2=`stat -c %Y $DIR1/$tfile`
3450         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3451                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3452
3453         mv $DIR1/$tfile $DIR1/$tfile-1
3454
3455         for (( i=0; i < 2; i++ )) ; do
3456                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3457                 [ "$mtime2" = "$mtime3" ] || \
3458                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3459
3460                 cancel_lru_locks osc
3461                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3462         done
3463 }
3464 run_test 39c "mtime change on rename ==========================="
3465
3466 # bug 21114
3467 test_39d() {
3468         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3469
3470         touch $DIR1/$tfile
3471         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3472
3473         for (( i=0; i < 2; i++ )) ; do
3474                 local mtime=`stat -c %Y $DIR1/$tfile`
3475                 [ $mtime = $TEST_39_MTIME ] || \
3476                         error "mtime($mtime) is not set to $TEST_39_MTIME"
3477
3478                 cancel_lru_locks osc
3479                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3480         done
3481 }
3482 run_test 39d "create, utime, stat =============================="
3483
3484 # bug 21114
3485 test_39e() {
3486         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3487
3488         touch $DIR1/$tfile
3489         local mtime1=`stat -c %Y $DIR1/$tfile`
3490
3491         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3492
3493         for (( i=0; i < 2; i++ )) ; do
3494                 local mtime2=`stat -c %Y $DIR1/$tfile`
3495                 [ $mtime2 = $TEST_39_MTIME ] || \
3496                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3497
3498                 cancel_lru_locks osc
3499                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3500         done
3501 }
3502 run_test 39e "create, stat, utime, stat ========================"
3503
3504 # bug 21114
3505 test_39f() {
3506         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3507
3508         touch $DIR1/$tfile
3509         mtime1=`stat -c %Y $DIR1/$tfile`
3510
3511         sleep 2
3512         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3513
3514         for (( i=0; i < 2; i++ )) ; do
3515                 local mtime2=`stat -c %Y $DIR1/$tfile`
3516                 [ $mtime2 = $TEST_39_MTIME ] || \
3517                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3518
3519                 cancel_lru_locks osc
3520                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3521         done
3522 }
3523 run_test 39f "create, stat, sleep, utime, stat ================="
3524
3525 # bug 11063
3526 test_39g() {
3527         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3528
3529         echo hello >> $DIR1/$tfile
3530         local mtime1=`stat -c %Y $DIR1/$tfile`
3531
3532         sleep 2
3533         chmod o+r $DIR1/$tfile
3534
3535         for (( i=0; i < 2; i++ )) ; do
3536                 local mtime2=`stat -c %Y $DIR1/$tfile`
3537                 [ "$mtime1" = "$mtime2" ] || \
3538                         error "lost mtime: $mtime2, should be $mtime1"
3539
3540                 cancel_lru_locks osc
3541                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3542         done
3543 }
3544 run_test 39g "write, chmod, stat ==============================="
3545
3546 # bug 11063
3547 test_39h() {
3548         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3549
3550         touch $DIR1/$tfile
3551         sleep 1
3552
3553         local d1=`date`
3554         echo hello >> $DIR1/$tfile
3555         local mtime1=`stat -c %Y $DIR1/$tfile`
3556
3557         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3558         local d2=`date`
3559         if [ "$d1" != "$d2" ]; then
3560                 echo "write and touch not within one second"
3561         else
3562                 for (( i=0; i < 2; i++ )) ; do
3563                         local mtime2=`stat -c %Y $DIR1/$tfile`
3564                         [ "$mtime2" = $TEST_39_MTIME ] || \
3565                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3566
3567                         cancel_lru_locks osc
3568                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3569                 done
3570         fi
3571 }
3572 run_test 39h "write, utime within one second, stat ============="
3573
3574 test_39i() {
3575         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3576
3577         touch $DIR1/$tfile
3578         sleep 1
3579
3580         echo hello >> $DIR1/$tfile
3581         local mtime1=`stat -c %Y $DIR1/$tfile`
3582
3583         mv $DIR1/$tfile $DIR1/$tfile-1
3584
3585         for (( i=0; i < 2; i++ )) ; do
3586                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3587
3588                 [ "$mtime1" = "$mtime2" ] || \
3589                         error "lost mtime: $mtime2, should be $mtime1"
3590
3591                 cancel_lru_locks osc
3592                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3593         done
3594 }
3595 run_test 39i "write, rename, stat =============================="
3596
3597 test_39j() {
3598         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3599
3600         start_full_debug_logging
3601         touch $DIR1/$tfile
3602         sleep 1
3603
3604         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3605         lctl set_param fail_loc=0x80000412
3606         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3607                 error "multiop failed"
3608         local multipid=$!
3609         local mtime1=`stat -c %Y $DIR1/$tfile`
3610
3611         mv $DIR1/$tfile $DIR1/$tfile-1
3612
3613         kill -USR1 $multipid
3614         wait $multipid || error "multiop close failed"
3615
3616         for (( i=0; i < 2; i++ )) ; do
3617                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3618                 [ "$mtime1" = "$mtime2" ] ||
3619                         error "mtime is lost on close: $mtime2, " \
3620                               "should be $mtime1"
3621
3622                 cancel_lru_locks osc
3623                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3624         done
3625         lctl set_param fail_loc=0
3626         stop_full_debug_logging
3627 }
3628 run_test 39j "write, rename, close, stat ======================="
3629
3630 test_39k() {
3631         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3632
3633         touch $DIR1/$tfile
3634         sleep 1
3635
3636         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3637         local multipid=$!
3638         local mtime1=`stat -c %Y $DIR1/$tfile`
3639
3640         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3641
3642         kill -USR1 $multipid
3643         wait $multipid || error "multiop close failed"
3644
3645         for (( i=0; i < 2; i++ )) ; do
3646                 local mtime2=`stat -c %Y $DIR1/$tfile`
3647
3648                 [ "$mtime2" = $TEST_39_MTIME ] || \
3649                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3650
3651                 cancel_lru_locks osc
3652                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3653         done
3654 }
3655 run_test 39k "write, utime, close, stat ========================"
3656
3657 # this should be set to future
3658 TEST_39_ATIME=`date -d "1 year" +%s`
3659
3660 test_39l() {
3661         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3662         remote_mds_nodsh && skip "remote MDS with nodsh"
3663
3664         local atime_diff=$(do_facet $SINGLEMDS \
3665                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3666         rm -rf $DIR/$tdir
3667         mkdir -p $DIR/$tdir
3668
3669         # test setting directory atime to future
3670         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3671         local atime=$(stat -c %X $DIR/$tdir)
3672         [ "$atime" = $TEST_39_ATIME ] ||
3673                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3674
3675         # test setting directory atime from future to now
3676         local now=$(date +%s)
3677         touch -a -d @$now $DIR/$tdir
3678
3679         atime=$(stat -c %X $DIR/$tdir)
3680         [ "$atime" -eq "$now"  ] ||
3681                 error "atime is not updated from future: $atime, $now"
3682
3683         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3684         sleep 3
3685
3686         # test setting directory atime when now > dir atime + atime_diff
3687         local d1=$(date +%s)
3688         ls $DIR/$tdir
3689         local d2=$(date +%s)
3690         cancel_lru_locks mdc
3691         atime=$(stat -c %X $DIR/$tdir)
3692         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3693                 error "atime is not updated  : $atime, should be $d2"
3694
3695         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3696         sleep 3
3697
3698         # test not setting directory atime when now < dir atime + atime_diff
3699         ls $DIR/$tdir
3700         cancel_lru_locks mdc
3701         atime=$(stat -c %X $DIR/$tdir)
3702         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3703                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3704
3705         do_facet $SINGLEMDS \
3706                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3707 }
3708 run_test 39l "directory atime update ==========================="
3709
3710 test_39m() {
3711         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3712
3713         touch $DIR1/$tfile
3714         sleep 2
3715         local far_past_mtime=$(date -d "May 29 1953" +%s)
3716         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3717
3718         touch -m -d @$far_past_mtime $DIR1/$tfile
3719         touch -a -d @$far_past_atime $DIR1/$tfile
3720
3721         for (( i=0; i < 2; i++ )) ; do
3722                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3723                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3724                         error "atime or mtime set incorrectly"
3725
3726                 cancel_lru_locks osc
3727                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3728         done
3729 }
3730 run_test 39m "test atime and mtime before 1970"
3731
3732 test_39n() { # LU-3832
3733         remote_mds_nodsh && skip "remote MDS with nodsh"
3734
3735         local atime_diff=$(do_facet $SINGLEMDS \
3736                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3737         local atime0
3738         local atime1
3739         local atime2
3740
3741         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3742
3743         rm -rf $DIR/$tfile
3744         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3745         atime0=$(stat -c %X $DIR/$tfile)
3746
3747         sleep 5
3748         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3749         atime1=$(stat -c %X $DIR/$tfile)
3750
3751         sleep 5
3752         cancel_lru_locks mdc
3753         cancel_lru_locks osc
3754         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3755         atime2=$(stat -c %X $DIR/$tfile)
3756
3757         do_facet $SINGLEMDS \
3758                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3759
3760         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3761         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3762 }
3763 run_test 39n "check that O_NOATIME is honored"
3764
3765 test_39o() {
3766         TESTDIR=$DIR/$tdir/$tfile
3767         [ -e $TESTDIR ] && rm -rf $TESTDIR
3768         mkdir -p $TESTDIR
3769         cd $TESTDIR
3770         links1=2
3771         ls
3772         mkdir a b
3773         ls
3774         links2=$(stat -c %h .)
3775         [ $(($links1 + 2)) != $links2 ] &&
3776                 error "wrong links count $(($links1 + 2)) != $links2"
3777         rmdir b
3778         links3=$(stat -c %h .)
3779         [ $(($links1 + 1)) != $links3 ] &&
3780                 error "wrong links count $links1 != $links3"
3781         return 0
3782 }
3783 run_test 39o "directory cached attributes updated after create"
3784
3785 test_39p() {
3786         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
3787
3788         local MDTIDX=1
3789         TESTDIR=$DIR/$tdir/$tdir
3790         [ -e $TESTDIR ] && rm -rf $TESTDIR
3791         test_mkdir -p $TESTDIR
3792         cd $TESTDIR
3793         links1=2
3794         ls
3795         test_mkdir -i $MDTIDX $TESTDIR/remote_dir1
3796         test_mkdir -i $MDTIDX $TESTDIR/remote_dir2
3797         ls
3798         links2=$(stat -c %h .)
3799         [ $(($links1 + 2)) != $links2 ] &&
3800                 error "wrong links count $(($links1 + 2)) != $links2"
3801         rmdir remote_dir2
3802         links3=$(stat -c %h .)
3803         [ $(($links1 + 1)) != $links3 ] &&
3804                 error "wrong links count $links1 != $links3"
3805         return 0
3806 }
3807 run_test 39p "remote directory cached attributes updated after create ========"
3808
3809
3810 test_39q() { # LU-8041
3811         local testdir=$DIR/$tdir
3812         mkdir -p $testdir
3813         multiop_bg_pause $testdir D_c || error "multiop failed"
3814         local multipid=$!
3815         cancel_lru_locks mdc
3816         kill -USR1 $multipid
3817         local atime=$(stat -c %X $testdir)
3818         [ "$atime" -ne 0 ] || error "atime is zero"
3819 }
3820 run_test 39q "close won't zero out atime"
3821
3822 test_40() {
3823         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3824         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3825                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3826         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3827                 error "$tfile is not 4096 bytes in size"
3828 }
3829 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3830
3831 test_41() {
3832         # bug 1553
3833         small_write $DIR/f41 18
3834 }
3835 run_test 41 "test small file write + fstat ====================="
3836
3837 count_ost_writes() {
3838         lctl get_param -n ${OSC}.*.stats |
3839                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
3840                         END { printf("%0.0f", writes) }'
3841 }
3842
3843 # decent default
3844 WRITEBACK_SAVE=500
3845 DIRTY_RATIO_SAVE=40
3846 MAX_DIRTY_RATIO=50
3847 BG_DIRTY_RATIO_SAVE=10
3848 MAX_BG_DIRTY_RATIO=25
3849
3850 start_writeback() {
3851         trap 0
3852         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3853         # dirty_ratio, dirty_background_ratio
3854         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3855                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3856                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3857                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3858         else
3859                 # if file not here, we are a 2.4 kernel
3860                 kill -CONT `pidof kupdated`
3861         fi
3862 }
3863
3864 stop_writeback() {
3865         # setup the trap first, so someone cannot exit the test at the
3866         # exact wrong time and mess up a machine
3867         trap start_writeback EXIT
3868         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3869         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3870                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3871                 sysctl -w vm.dirty_writeback_centisecs=0
3872                 sysctl -w vm.dirty_writeback_centisecs=0
3873                 # save and increase /proc/sys/vm/dirty_ratio
3874                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3875                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3876                 # save and increase /proc/sys/vm/dirty_background_ratio
3877                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3878                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3879         else
3880                 # if file not here, we are a 2.4 kernel
3881                 kill -STOP `pidof kupdated`
3882         fi
3883 }
3884
3885 # ensure that all stripes have some grant before we test client-side cache
3886 setup_test42() {
3887         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3888                 dd if=/dev/zero of=$i bs=4k count=1
3889                 rm $i
3890         done
3891 }
3892
3893 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3894 # file truncation, and file removal.
3895 test_42a() {
3896         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3897
3898         setup_test42
3899         cancel_lru_locks $OSC
3900         stop_writeback
3901         sync; sleep 1; sync # just to be safe
3902         BEFOREWRITES=`count_ost_writes`
3903         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3904         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3905         AFTERWRITES=`count_ost_writes`
3906         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3907                 error "$BEFOREWRITES < $AFTERWRITES"
3908         start_writeback
3909 }
3910 run_test 42a "ensure that we don't flush on close"
3911
3912 test_42b() {
3913         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3914
3915         setup_test42
3916         cancel_lru_locks $OSC
3917         stop_writeback
3918         sync
3919         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3920         BEFOREWRITES=$(count_ost_writes)
3921         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3922         AFTERWRITES=$(count_ost_writes)
3923         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3924                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3925         fi
3926         BEFOREWRITES=$(count_ost_writes)
3927         sync || error "sync: $?"
3928         AFTERWRITES=$(count_ost_writes)
3929         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3930                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3931         fi
3932         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3933         start_writeback
3934         return 0
3935 }
3936 run_test 42b "test destroy of file with cached dirty data ======"
3937
3938 # if these tests just want to test the effect of truncation,
3939 # they have to be very careful.  consider:
3940 # - the first open gets a {0,EOF}PR lock
3941 # - the first write conflicts and gets a {0, count-1}PW
3942 # - the rest of the writes are under {count,EOF}PW
3943 # - the open for truncate tries to match a {0,EOF}PR
3944 #   for the filesize and cancels the PWs.
3945 # any number of fixes (don't get {0,EOF} on open, match
3946 # composite locks, do smarter file size management) fix
3947 # this, but for now we want these tests to verify that
3948 # the cancellation with truncate intent works, so we
3949 # start the file with a full-file pw lock to match against
3950 # until the truncate.
3951 trunc_test() {
3952         test=$1
3953         file=$DIR/$test
3954         offset=$2
3955         cancel_lru_locks $OSC
3956         stop_writeback
3957         # prime the file with 0,EOF PW to match
3958         touch $file
3959         $TRUNCATE $file 0
3960         sync; sync
3961         # now the real test..
3962         dd if=/dev/zero of=$file bs=1024 count=100
3963         BEFOREWRITES=`count_ost_writes`
3964         $TRUNCATE $file $offset
3965         cancel_lru_locks $OSC
3966         AFTERWRITES=`count_ost_writes`
3967         start_writeback
3968 }
3969
3970 test_42c() {
3971         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3972
3973         trunc_test 42c 1024
3974         [ $BEFOREWRITES -eq $AFTERWRITES ] &&
3975                 error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3976         rm $file
3977 }
3978 run_test 42c "test partial truncate of file with cached dirty data"
3979
3980 test_42d() {
3981         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3982
3983         trunc_test 42d 0
3984         [ $BEFOREWRITES -eq $AFTERWRITES ] ||
3985                 error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3986         rm $file
3987 }
3988 run_test 42d "test complete truncate of file with cached dirty data"
3989
3990 test_42e() { # bug22074
3991         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3992
3993         local TDIR=$DIR/${tdir}e
3994         local pages=16 # hardcoded 16 pages, don't change it.
3995         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3996         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3997         local max_dirty_mb
3998         local warmup_files
3999
4000         test_mkdir $DIR/${tdir}e
4001         $LFS setstripe -c 1 $TDIR
4002         createmany -o $TDIR/f $files
4003
4004         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
4005
4006         # we assume that with $OSTCOUNT files, at least one of them will
4007         # be allocated on OST0.
4008         warmup_files=$((OSTCOUNT * max_dirty_mb))
4009         createmany -o $TDIR/w $warmup_files
4010
4011         # write a large amount of data into one file and sync, to get good
4012         # avail_grant number from OST.
4013         for ((i=0; i<$warmup_files; i++)); do
4014                 idx=$($LFS getstripe -i $TDIR/w$i)
4015                 [ $idx -ne 0 ] && continue
4016                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
4017                 break
4018         done
4019         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
4020         sync
4021         $LCTL get_param $proc_osc0/cur_dirty_bytes
4022         $LCTL get_param $proc_osc0/cur_grant_bytes
4023
4024         # create as much dirty pages as we can while not to trigger the actual
4025         # RPCs directly. but depends on the env, VFS may trigger flush during this
4026         # period, hopefully we are good.
4027         for ((i=0; i<$warmup_files; i++)); do
4028                 idx=$($LFS getstripe -i $TDIR/w$i)
4029                 [ $idx -ne 0 ] && continue
4030                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
4031         done
4032         $LCTL get_param $proc_osc0/cur_dirty_bytes
4033         $LCTL get_param $proc_osc0/cur_grant_bytes
4034
4035         # perform the real test
4036         $LCTL set_param $proc_osc0/rpc_stats 0
4037         for ((;i<$files; i++)); do
4038                 [ $($LFS getstripe -i $TDIR/f$i) -eq 0 ] || continue
4039                 dd if=/dev/zero of=$TDIR/f$i bs=$PAGE_SIZE count=$pages 2>/dev/null
4040         done
4041         sync
4042         $LCTL get_param $proc_osc0/rpc_stats
4043
4044         local percent=0
4045         local have_ppr=false
4046         $LCTL get_param $proc_osc0/rpc_stats |
4047                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
4048                         # skip lines until we are at the RPC histogram data
4049                         [ "$PPR" == "pages" ] && have_ppr=true && continue
4050                         $have_ppr || continue
4051
4052                         # we only want the percent stat for < 16 pages
4053                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
4054
4055                         percent=$((percent + WPCT))
4056                         if [[ $percent -gt 15 ]]; then
4057                                 error "less than 16-pages write RPCs" \
4058                                       "$percent% > 15%"
4059                                 break
4060                         fi
4061                 done
4062         rm -rf $TDIR
4063 }
4064 run_test 42e "verify sub-RPC writes are not done synchronously"
4065
4066 test_43A() { # was test_43
4067         test_mkdir $DIR/$tdir
4068         cp -p /bin/ls $DIR/$tdir/$tfile
4069         $MULTIOP $DIR/$tdir/$tfile Ow_c &
4070         pid=$!
4071         # give multiop a chance to open
4072         sleep 1
4073
4074         $DIR/$tdir/$tfile && error "execute $DIR/$tdir/$tfile succeeded" || true
4075         kill -USR1 $pid
4076 }
4077 run_test 43A "execution of file opened for write should return -ETXTBSY"
4078
4079 test_43a() {
4080         test_mkdir $DIR/$tdir
4081         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
4082                 cp -p multiop $DIR/$tdir/multiop
4083         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
4084                 error "multiop open $TMP/$tfile.junk failed"
4085         rm $TMP/$tfile.junk     # delete junk file on close (not part of test)
4086         MULTIOP_PID=$!
4087         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
4088         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
4089         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
4090 }
4091 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
4092
4093 test_43b() {
4094         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4095
4096         test_mkdir $DIR/$tdir
4097         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
4098                 cp -p multiop $DIR/$tdir/multiop
4099         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
4100                 error "multiop open $TMP/$tfile.junk failed"
4101         rm $TMP/$tfile.junk     # delete junk file on close (not part of test)
4102         MULTIOP_PID=$!
4103         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
4104         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
4105         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
4106 }
4107 run_test 43b "truncate of file being executed should return -ETXTBSY"
4108
4109 test_43c() {
4110         local testdir="$DIR/$tdir"
4111         test_mkdir $testdir
4112         cp $SHELL $testdir/
4113         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) |
4114                 ( cd $testdir && md5sum -c )
4115 }
4116 run_test 43c "md5sum of copy into lustre"
4117
4118 test_44A() { # was test_44
4119         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
4120
4121         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
4122         dd if=$DIR/f1 bs=4k count=1 > /dev/null
4123 }
4124 run_test 44A "zero length read from a sparse stripe"
4125
4126 test_44a() {
4127         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
4128                 awk '{ print $2 }')
4129         [ -z "$nstripe" ] && skip "can't get stripe info"
4130         [[ $nstripe -gt $OSTCOUNT ]] &&
4131                 skip "Wrong default_stripe_count: $nstripe OSTCOUNT: $OSTCOUNT"
4132
4133         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
4134                 awk '{ print $2 }')
4135         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
4136                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
4137                         awk '{ print $2 }')
4138         fi
4139
4140         OFFSETS="0 $((stride/2)) $((stride-1))"
4141         for offset in $OFFSETS; do
4142                 for i in $(seq 0 $((nstripe-1))); do
4143                         local GLOBALOFFSETS=""
4144                         # size in Bytes
4145                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
4146                         local myfn=$DIR/d44a-$size
4147                         echo "--------writing $myfn at $size"
4148                         ll_sparseness_write $myfn $size ||
4149                                 error "ll_sparseness_write"
4150                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
4151                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
4152                                 error "ll_sparseness_verify $GLOBALOFFSETS"
4153
4154                         for j in $(seq 0 $((nstripe-1))); do
4155                                 # size in Bytes
4156                                 size=$((((j + $nstripe )*$stride + $offset)))
4157                                 ll_sparseness_write $myfn $size ||
4158                                         error "ll_sparseness_write"
4159                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
4160                         done
4161                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
4162                                 error "ll_sparseness_verify $GLOBALOFFSETS"
4163                         rm -f $myfn
4164                 done
4165         done
4166 }
4167 run_test 44a "test sparse pwrite ==============================="
4168
4169 dirty_osc_total() {
4170         tot=0
4171         for d in `lctl get_param -n ${OSC}.*.cur_dirty_bytes`; do
4172                 tot=$(($tot + $d))
4173         done
4174         echo $tot
4175 }
4176 do_dirty_record() {
4177         before=`dirty_osc_total`
4178         echo executing "\"$*\""
4179         eval $*
4180         after=`dirty_osc_total`
4181         echo before $before, after $after
4182 }
4183 test_45() {
4184         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4185
4186         f="$DIR/f45"
4187         # Obtain grants from OST if it supports it
4188         echo blah > ${f}_grant
4189         stop_writeback
4190         sync
4191         do_dirty_record "echo blah > $f"
4192         [[ $before -eq $after ]] && error "write wasn't cached"
4193         do_dirty_record "> $f"
4194         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
4195         do_dirty_record "echo blah > $f"
4196         [[ $before -eq $after ]] && error "write wasn't cached"
4197         do_dirty_record "sync"
4198         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
4199         do_dirty_record "echo blah > $f"
4200         [[ $before -eq $after ]] && error "write wasn't cached"
4201         do_dirty_record "cancel_lru_locks osc"
4202         [[ $before -gt $after ]] ||
4203                 error "lock cancellation didn't lower dirty count"
4204         start_writeback
4205 }
4206 run_test 45 "osc io page accounting ============================"
4207
4208 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
4209 # test tickles a bug where re-dirtying a page was failing to be mapped to the
4210 # objects offset and an assert hit when an rpc was built with 1023's mapped
4211 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
4212 test_46() {
4213         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4214
4215         f="$DIR/f46"
4216         stop_writeback
4217         sync
4218         dd if=/dev/zero of=$f bs=$PAGE_SIZE seek=511 count=1
4219         sync
4220         dd conv=notrunc if=/dev/zero of=$f bs=$PAGE_SIZE seek=1023 count=1
4221         dd conv=notrunc if=/dev/zero of=$f bs=$PAGE_SIZE seek=511 count=1
4222         sync
4223         start_writeback
4224 }
4225 run_test 46 "dirtying a previously written page ================"
4226
4227 # test_47 is removed "Device nodes check" is moved to test_28
4228
4229 test_48a() { # bug 2399
4230         [ "$mds1_FSTYPE" = "zfs" ] &&
4231         [ $MDS1_VERSION -lt $(version_code 2.3.63) ] &&
4232                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly"
4233
4234         test_mkdir $DIR/$tdir
4235         cd $DIR/$tdir
4236         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
4237         test_mkdir $DIR/$tdir
4238         touch foo || error "'touch foo' failed after recreating cwd"
4239         test_mkdir bar
4240         touch .foo || error "'touch .foo' failed after recreating cwd"
4241         test_mkdir .bar
4242         ls . > /dev/null || error "'ls .' failed after recreating cwd"
4243         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4244         cd . || error "'cd .' failed after recreating cwd"
4245         mkdir . && error "'mkdir .' worked after recreating cwd"
4246         rmdir . && error "'rmdir .' worked after recreating cwd"
4247         ln -s . baz || error "'ln -s .' failed after recreating cwd"
4248         cd .. || error "'cd ..' failed after recreating cwd"
4249 }
4250 run_test 48a "Access renamed working dir (should return errors)="
4251
4252 test_48b() { # bug 2399
4253         rm -rf $DIR/$tdir
4254         test_mkdir $DIR/$tdir
4255         cd $DIR/$tdir
4256         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
4257         touch foo && error "'touch foo' worked after removing cwd"
4258         mkdir foo && error "'mkdir foo' worked after removing cwd"
4259         touch .foo && error "'touch .foo' worked after removing cwd"
4260         mkdir .foo && error "'mkdir .foo' worked after removing cwd"
4261         ls . > /dev/null && error "'ls .' worked after removing cwd"
4262         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4263         mkdir . && error "'mkdir .' worked after removing cwd"
4264         rmdir . && error "'rmdir .' worked after removing cwd"
4265         ln -s . foo && error "'ln -s .' worked after removing cwd"
4266         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
4267 }
4268 run_test 48b "Access removed working dir (should return errors)="
4269
4270 test_48c() { # bug 2350
4271         #lctl set_param debug=-1
4272         #set -vx
4273         rm -rf $DIR/$tdir
4274         test_mkdir -p $DIR/$tdir/dir
4275         cd $DIR/$tdir/dir
4276         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4277         $TRACE touch foo && error "touch foo worked after removing cwd"
4278         $TRACE mkdir foo && error "'mkdir foo' worked after removing cwd"
4279         touch .foo && error "touch .foo worked after removing cwd"
4280         mkdir .foo && error "mkdir .foo worked after removing cwd"
4281         $TRACE ls . && error "'ls .' worked after removing cwd"
4282         $TRACE ls .. || error "'ls ..' failed after removing cwd"
4283         $TRACE mkdir . && error "'mkdir .' worked after removing cwd"
4284         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
4285         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
4286         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
4287 }
4288 run_test 48c "Access removed working subdir (should return errors)"
4289
4290 test_48d() { # bug 2350
4291         #lctl set_param debug=-1
4292         #set -vx
4293         rm -rf $DIR/$tdir
4294         test_mkdir -p $DIR/$tdir/dir
4295         cd $DIR/$tdir/dir
4296         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4297         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4298         $TRACE touch foo && error "'touch foo' worked after removing parent"
4299         $TRACE mkdir foo && error "mkdir foo worked after removing parent"
4300         touch .foo && error "'touch .foo' worked after removing parent"
4301         mkdir .foo && error "mkdir .foo worked after removing parent"
4302         $TRACE ls . && error "'ls .' worked after removing parent"
4303         $TRACE ls .. && error "'ls ..' worked after removing parent"
4304         $TRACE mkdir . && error "'mkdir .' worked after removing parent"
4305         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
4306         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
4307         true
4308 }
4309 run_test 48d "Access removed parent subdir (should return errors)"
4310
4311 test_48e() { # bug 4134
4312         #lctl set_param debug=-1
4313         #set -vx
4314         rm -rf $DIR/$tdir
4315         test_mkdir -p $DIR/$tdir/dir
4316         cd $DIR/$tdir/dir
4317         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4318         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4319         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
4320         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
4321         # On a buggy kernel addition of "touch foo" after cd .. will
4322         # produce kernel oops in lookup_hash_it
4323         touch ../foo && error "'cd ..' worked after recreate parent"
4324         cd $DIR
4325         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
4326 }
4327 run_test 48e "Access to recreated parent subdir (should return errors)"
4328
4329 test_49() { # LU-1030
4330         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4331         remote_ost_nodsh && skip "remote OST with nodsh"
4332
4333         # get ost1 size - lustre-OST0000
4334         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
4335                 awk '{ print $4 }')
4336         # write 800M at maximum
4337         [[ $ost1_size -lt 2 ]] && ost1_size=2
4338         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
4339
4340         $LFS setstripe -c 1 -i 0 $DIR/$tfile
4341         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
4342         local dd_pid=$!
4343
4344         # change max_pages_per_rpc while writing the file
4345         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
4346         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
4347         # loop until dd process exits
4348         while ps ax -opid | grep -wq $dd_pid; do
4349                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
4350                 sleep $((RANDOM % 5 + 1))
4351         done
4352         # restore original max_pages_per_rpc
4353         $LCTL set_param $osc1_mppc=$orig_mppc
4354         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
4355 }
4356 run_test 49 "Change max_pages_per_rpc won't break osc extent"
4357
4358 test_50() {
4359         # bug 1485
4360         test_mkdir $DIR/$tdir
4361         cd $DIR/$tdir
4362         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
4363 }
4364 run_test 50 "special situations: /proc symlinks  ==============="
4365
4366 test_51a() {    # was test_51
4367         # bug 1516 - create an empty entry right after ".." then split dir
4368         test_mkdir -c1 $DIR/$tdir
4369         touch $DIR/$tdir/foo
4370         $MCREATE $DIR/$tdir/bar
4371         rm $DIR/$tdir/foo
4372         createmany -m $DIR/$tdir/longfile 201
4373         FNUM=202
4374         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
4375                 $MCREATE $DIR/$tdir/longfile$FNUM
4376                 FNUM=$(($FNUM + 1))
4377                 echo -n "+"
4378         done
4379         echo
4380         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
4381 }
4382 run_test 51a "special situations: split htree with empty entry =="
4383
4384 cleanup_print_lfs_df () {
4385         trap 0
4386         $LFS df
4387         $LFS df -i
4388 }
4389
4390 test_51b() {
4391         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4392
4393         local dir=$DIR/$tdir
4394         local nrdirs=$((65536 + 100))
4395
4396         # cleanup the directory
4397         rm -fr $dir
4398
4399         test_mkdir -c1 $dir
4400
4401         $LFS df
4402         $LFS df -i
4403         local mdtidx=$(printf "%04x" $($LFS getstripe -m $dir))
4404         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
4405         [[ $numfree -lt $nrdirs ]] &&
4406                 skip "not enough free inodes ($numfree) on MDT$mdtidx"
4407
4408         # need to check free space for the directories as well
4409         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
4410         numfree=$(( blkfree / $(fs_inode_ksize) ))
4411         [[ $numfree -lt $nrdirs ]] && skip "not enough blocks ($numfree)"
4412
4413         trap cleanup_print_lfs_df EXIT
4414
4415         # create files
4416         createmany -d $dir/d $nrdirs || {
4417                 unlinkmany $dir/d $nrdirs
4418                 error "failed to create $nrdirs subdirs in MDT$mdtidx:$dir"
4419         }
4420
4421         # really created :
4422         nrdirs=$(ls -U $dir | wc -l)
4423
4424         # unlink all but 100 subdirectories, then check it still works
4425         local left=100
4426         local delete=$((nrdirs - left))
4427
4428         $LFS df
4429         $LFS df -i
4430
4431         # for ldiskfs the nlink count should be 1, but this is OSD specific
4432         # and so this is listed for informational purposes only
4433         echo "nlink before: $(stat -c %h $dir), created before: $nrdirs"
4434         unlinkmany -d $dir/d $delete ||
4435                 error "unlink of first $delete subdirs failed"
4436
4437         echo "nlink between: $(stat -c %h $dir)"
4438         local found=$(ls -U $dir | wc -l)
4439         [ $found -ne $left ] &&
4440                 error "can't find subdirs: found only $found, expected $left"
4441
4442         unlinkmany -d $dir/d $delete $left ||
4443                 error "unlink of second $left subdirs failed"
4444         # regardless of whether the backing filesystem tracks nlink accurately
4445         # or not, the nlink count shouldn't be more than "." and ".." here
4446         local after=$(stat -c %h $dir)
4447         [[ $after -gt 2 ]] && error "nlink after: $after > 2" ||
4448                 echo "nlink after: $after"
4449
4450         cleanup_print_lfs_df
4451 }
4452 run_test 51b "exceed 64k subdirectory nlink limit on create, verify unlink"
4453
4454 test_51d() {
4455         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4456         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
4457
4458         test_mkdir $DIR/$tdir
4459         createmany -o $DIR/$tdir/t- 1000
4460         $LFS getstripe $DIR/$tdir > $TMP/$tfile
4461         for N in $(seq 0 $((OSTCOUNT - 1))); do
4462                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4463                         END { printf("%0.0f", objs) }' $TMP/$tfile)
4464                 OBJS0[$N]=$(grep -A 1 idx $TMP/$tfile | awk -vobjs=0 \
4465                         '($1 == '$N') { objs += 1 } \
4466                         END { printf("%0.0f", objs) }')
4467                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4468         done
4469         unlinkmany $DIR/$tdir/t- 1000
4470
4471         NLAST=0
4472         for N in $(seq 1 $((OSTCOUNT - 1))); do
4473                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4474                         error "OST $N has less objects vs OST $NLAST" \
4475                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4476                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4477                         error "OST $N has less objects vs OST $NLAST" \
4478                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4479
4480                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4481                         error "OST $N has less #0 objects vs OST $NLAST" \
4482                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4483                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4484                         error "OST $N has less #0 objects vs OST $NLAST" \
4485                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4486                 NLAST=$N
4487         done
4488         rm -f $TMP/$tfile
4489 }
4490 run_test 51d "check object distribution"
4491
4492 test_51e() {
4493         if [ "$mds1_FSTYPE" != ldiskfs ]; then
4494                 skip_env "ldiskfs only test"
4495         fi
4496
4497         test_mkdir -c1 $DIR/$tdir
4498         test_mkdir -c1 $DIR/$tdir/d0
4499
4500         touch $DIR/$tdir/d0/foo
4501         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4502                 error "file exceed 65000 nlink limit!"
4503         unlinkmany $DIR/$tdir/d0/f- 65001
4504         return 0
4505 }
4506 run_test 51e "check file nlink limit"
4507
4508 test_51f() {
4509         test_mkdir $DIR/$tdir
4510
4511         local max=100000
4512         local ulimit_old=$(ulimit -n)
4513         local spare=20 # number of spare fd's for scripts/libraries, etc.
4514         local mdt=$($LFS getstripe -m $DIR/$tdir)
4515         local numfree=$($LFS df -i $DIR/$tdir | awk '/MDT:'$mdt'/ { print $4 }')
4516
4517         echo "MDT$mdt numfree=$numfree, max=$max"
4518         [[ $numfree -gt $max ]] && numfree=$max || numfree=$((numfree * 7 / 8))
4519         if [ $((numfree + spare)) -gt $ulimit_old ]; then
4520                 while ! ulimit -n $((numfree + spare)); do
4521                         numfree=$((numfree * 3 / 4))
4522                 done
4523                 echo "changed ulimit from $ulimit_old to $((numfree + spare))"
4524         else
4525                 echo "left ulimit at $ulimit_old"
4526         fi
4527
4528         createmany -o -k -t 120 $DIR/$tdir/f $numfree || {
4529                 unlinkmany $DIR/$tdir/f $numfree
4530                 error "create+open $numfree files in $DIR/$tdir failed"
4531         }
4532         ulimit -n $ulimit_old
4533
4534         # if createmany exits at 120s there will be fewer than $numfree files
4535         unlinkmany $DIR/$tdir/f $numfree || true
4536 }
4537 run_test 51f "check many open files limit"
4538
4539 test_52a() {
4540         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4541         test_mkdir $DIR/$tdir
4542         touch $DIR/$tdir/foo
4543         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4544         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4545         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4546         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4547         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4548                                         error "link worked"
4549         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4550         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4551         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4552                                                      error "lsattr"
4553         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4554         cp -r $DIR/$tdir $TMP/
4555         rm -fr $DIR/$tdir $TMP/$tdir || error "cleanup rm failed"
4556 }
4557 run_test 52a "append-only flag test (should return errors)"
4558
4559 test_52b() {
4560         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4561         test_mkdir $DIR/$tdir
4562         touch $DIR/$tdir/foo
4563         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4564         cat test > $DIR/$tdir/foo && error "cat test worked"
4565         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4566         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4567         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4568                                         error "link worked"
4569         echo foo >> $DIR/$tdir/foo && error "echo worked"
4570         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4571         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4572         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4573         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4574                                                         error "lsattr"
4575         chattr -i $DIR/$tdir/foo || error "chattr failed"
4576
4577         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4578 }
4579 run_test 52b "immutable flag test (should return errors) ======="
4580
4581 test_53() {
4582         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4583         remote_mds_nodsh && skip "remote MDS with nodsh"
4584         remote_ost_nodsh && skip "remote OST with nodsh"
4585
4586         local param
4587         local param_seq
4588         local ostname
4589         local mds_last
4590         local mds_last_seq
4591         local ost_last
4592         local ost_last_seq
4593         local ost_last_id
4594         local ostnum
4595         local node
4596         local found=false
4597         local support_last_seq=true
4598
4599         [[ $MDS1_VERSION -ge $(version_code 2.3.60) ]] ||
4600                 support_last_seq=false
4601
4602         # only test MDT0000
4603         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4604         local value
4605         for value in $(do_facet $SINGLEMDS \
4606                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4607                 param=$(echo ${value[0]} | cut -d "=" -f1)
4608                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4609
4610                 if $support_last_seq; then
4611                         param_seq=$(echo $param |
4612                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4613                         mds_last_seq=$(do_facet $SINGLEMDS \
4614                                        $LCTL get_param -n $param_seq)
4615                 fi
4616                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4617
4618                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4619                 node=$(facet_active_host ost$((ostnum+1)))
4620                 param="obdfilter.$ostname.last_id"
4621                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4622                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4623                         ost_last_id=$ost_last
4624
4625                         if $support_last_seq; then
4626                                 ost_last_id=$(echo $ost_last |
4627                                               awk -F':' '{print $2}' |
4628                                               sed -e "s/^0x//g")
4629                                 ost_last_seq=$(echo $ost_last |
4630                                                awk -F':' '{print $1}')
4631                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4632                         fi
4633
4634                         if [[ $ost_last_id != $mds_last ]]; then
4635                                 error "$ost_last_id != $mds_last"
4636                         else
4637                                 found=true
4638                                 break
4639                         fi
4640                 done
4641         done
4642         $found || error "can not match last_seq/last_id for $mdtosc"
4643         return 0
4644 }
4645 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4646
4647 test_54a() {
4648         perl -MSocket -e ';' || skip "no Socket perl module installed"
4649
4650         $SOCKETSERVER $DIR/socket ||
4651                 error "$SOCKETSERVER $DIR/socket failed: $?"
4652         $SOCKETCLIENT $DIR/socket ||
4653                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4654         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4655 }
4656 run_test 54a "unix domain socket test =========================="
4657
4658 test_54b() {
4659         f="$DIR/f54b"
4660         mknod $f c 1 3
4661         chmod 0666 $f
4662         dd if=/dev/zero of=$f bs=$PAGE_SIZE count=1
4663 }
4664 run_test 54b "char device works in lustre ======================"
4665
4666 find_loop_dev() {
4667         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4668         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4669         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4670
4671         for i in $(seq 3 7); do
4672                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4673                 LOOPDEV=$LOOPBASE$i
4674                 LOOPNUM=$i
4675                 break
4676         done
4677 }
4678
4679 cleanup_54c() {
4680         local rc=0
4681         loopdev="$DIR/loop54c"
4682
4683         trap 0
4684         $UMOUNT $DIR/$tdir || rc=$?
4685         losetup -d $loopdev || true
4686         losetup -d $LOOPDEV || true
4687         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4688         return $rc
4689 }
4690
4691 test_54c() {
4692         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4693
4694         loopdev="$DIR/loop54c"
4695
4696         find_loop_dev
4697         [ -z "$LOOPNUM" ] && skip_env "couldn't find empty loop device"
4698         trap cleanup_54c EXIT
4699         mknod $loopdev b 7 $LOOPNUM
4700         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4701         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE seek=1024 count=1 > /dev/null
4702         losetup $loopdev $DIR/$tfile ||
4703                 error "can't set up $loopdev for $DIR/$tfile"
4704         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4705         test_mkdir $DIR/$tdir
4706         mount -t ext2 $loopdev $DIR/$tdir ||
4707                 error "error mounting $loopdev on $DIR/$tdir"
4708         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$PAGE_SIZE count=30 ||
4709                 error "dd write"
4710         df $DIR/$tdir
4711         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$PAGE_SIZE count=30 ||
4712                 error "dd read"
4713         cleanup_54c
4714 }
4715 run_test 54c "block device works in lustre ====================="
4716
4717 test_54d() {
4718         f="$DIR/f54d"
4719         string="aaaaaa"
4720         mknod $f p
4721         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4722 }
4723 run_test 54d "fifo device works in lustre ======================"
4724
4725 test_54e() {
4726         f="$DIR/f54e"
4727         string="aaaaaa"
4728         cp -aL /dev/console $f
4729         echo $string > $f || error "echo $string to $f failed"
4730 }
4731 run_test 54e "console/tty device works in lustre ======================"
4732
4733 test_56a() {
4734         local numfiles=3
4735         local dir=$DIR/$tdir
4736
4737         rm -rf $dir
4738         test_mkdir -p $dir/dir
4739         for i in $(seq $numfiles); do
4740                 touch $dir/file$i
4741                 touch $dir/dir/file$i
4742         done
4743
4744         local numcomp=$($LFS getstripe --component-count $dir)
4745
4746         [[ $numcomp == 0 ]] && numcomp=1
4747
4748         # test lfs getstripe with --recursive
4749         local filenum=$($LFS getstripe -r $dir | egrep -c "obdidx|l_ost_idx")
4750
4751         [[ $filenum -eq $((numfiles * 2)) ]] ||
4752                 error "$LFS getstripe -r: found $filenum != $((numfiles * 2))"
4753         filenum=$($LFS getstripe $dir | egrep -c "obdidx|l_ost_idx")
4754         [[ $filenum -eq $numfiles ]] ||
4755                 error "$LFS getstripe $dir: found $filenum, not $numfiles"
4756         echo "$LFS getstripe showed obdidx or l_ost_idx"
4757
4758         # test lfs getstripe with file instead of dir
4759         filenum=$($LFS getstripe $dir/file1 | egrep -c "obdidx|l_ost_idx")
4760         [[ $filenum -eq 1 ]] ||
4761                 error "$LFS getstripe $dir/file1: found $filenum, not 1"
4762         echo "$LFS getstripe file1 passed"
4763
4764         #test lfs getstripe with --verbose
4765         filenum=$($LFS getstripe --verbose $dir | grep -c lmm_magic)
4766         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
4767                 error "$LFS getstripe --verbose $dir: "\
4768                       "got $filenum want $((numfiles * numcomp)) lmm_magic"
4769         [[ $($LFS getstripe $dir | grep -c lmm_magic) -eq 0 ]] ||
4770                 error "$LFS getstripe $dir: showed lmm_magic"
4771
4772         #test lfs getstripe with -v prints lmm_fid
4773         filenum=$($LFS getstripe -v $dir | grep -c lmm_fid)
4774         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
4775                 error "$LFS getstripe -v $dir: "\
4776                       "got $filenum want $((numfiles * numcomp)) lmm_fid"
4777         [[ $($LFS getstripe $dir | grep -c lmm_fid) -eq 0 ]] ||
4778                 error "$LFS getstripe $dir: showed lmm_fid by default"
4779         echo "$LFS getstripe --verbose passed"
4780
4781         #check for FID information
4782         local fid1=$($LFS getstripe --fid $dir/file1)
4783         local fid2=$($LFS getstripe --verbose $dir/file1 |
4784                      awk '/lmm_fid: / { print $2; exit; }')
4785         local fid3=$($LFS path2fid $dir/file1)
4786
4787         [ "$fid1" != "$fid2" ] &&
4788                 error "getstripe --fid '$fid1' != getstripe --verbose '$fid2'"
4789         [ "$fid1" != "$fid3" ] &&
4790                 error "getstripe --fid '$fid1' != lfs path2fid '$fid3'"
4791         echo "$LFS getstripe --fid passed"
4792
4793         #test lfs getstripe with --obd
4794         $LFS getstripe --obd wrong_uuid $dir 2>&1 | grep -q "unknown obduuid" ||
4795                 error "$LFS getstripe --obd wrong_uuid: should return error"
4796
4797         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
4798
4799         local ostidx=1
4800         local obduuid=$(ostuuid_from_index $ostidx)
4801         local found=$($LFS getstripe -r --obd $obduuid $dir |
4802                 grep 'lmm_stripe_offset:' | grep -c " $ostidx\$")
4803
4804         filenum=$($LFS getstripe -ir $dir | grep -c "^$ostidx\$")
4805         [[ $($LFS getstripe -id $dir) -ne $ostidx ]] ||
4806                 ((filenum--))
4807         [[ $($LFS getstripe -id $dir/dir) -ne $ostidx ]] ||
4808                 ((filenum--))
4809
4810         [[ $found -eq $filenum ]] ||
4811                 error "$LFS getstripe --obd: found $found expect $filenum"
4812         [[ $($LFS getstripe -r -v --obd $obduuid $dir |
4813                 sed '/^[         ]*'${ostidx}'[  ]/d' |
4814                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4815                 error "$LFS getstripe --obd: should not show file on other obd"
4816         echo "$LFS getstripe --obd passed"
4817 }
4818 run_test 56a "check $LFS getstripe"
4819
4820 test_56b() {
4821         local dir=$DIR/$tdir
4822         local numdirs=3
4823
4824         test_mkdir $dir
4825         for i in $(seq $numdirs); do
4826                 test_mkdir $dir/dir$i
4827         done
4828
4829         # test lfs getdirstripe default mode is non-recursion, which is
4830         # different from lfs getstripe
4831         local dircnt=$($LFS getdirstripe $dir | grep -c lmv_stripe_count)
4832
4833         [[ $dircnt -eq 1 ]] ||
4834                 error "$LFS getdirstripe: found $dircnt, not 1"
4835         dircnt=$($LFS getdirstripe --recursive $dir |
4836                 grep -c lmv_stripe_count)
4837         [[ $dircnt -eq $((numdirs + 1)) ]] ||
4838                 error "$LFS getdirstripe -r: $dircnt, != $((numdirs + 1))"
4839 }
4840 run_test 56b "check $LFS getdirstripe"
4841
4842 test_56c() {
4843         remote_ost_nodsh && skip "remote OST with nodsh"
4844
4845         local ost_idx=0
4846         local ost_name=$(ostname_from_index $ost_idx)
4847         local old_status=$(ost_dev_status $ost_idx)
4848
4849         [[ -z "$old_status" ]] ||
4850                 skip_env "OST $ost_name is in $old_status status"
4851
4852         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=1
4853         sleep_maxage
4854
4855         local new_status=$(ost_dev_status $ost_idx)
4856
4857         [[ "$new_status" = "D" ]] ||
4858                 error "OST $ost_name is in status of '$new_status', not 'D'"
4859
4860         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=0
4861         sleep_maxage
4862
4863         new_status=$(ost_dev_status $ost_idx)
4864         [[ -z "$new_status" ]] ||
4865                 error "OST $ost_name is in status of '$new_status', not ''"
4866 }
4867 run_test 56c "check 'lfs df' showing device status"
4868
4869 NUMFILES=3
4870 NUMDIRS=3
4871 setup_56() {
4872         local local_tdir="$1"
4873         local local_numfiles="$2"
4874         local local_numdirs="$3"
4875         local dir_params="$4"
4876         local dir_stripe_params="$5"
4877
4878         if [ ! -d "$local_tdir" ] ; then
4879                 test_mkdir -p $dir_stripe_params $local_tdir
4880                 [ "$dir_params" ] && $LFS setstripe $dir_params $local_tdir
4881                 for i in $(seq $local_numfiles) ; do
4882                         touch $local_tdir/file$i
4883                 done
4884                 for i in $(seq $local_numdirs) ; do
4885                         test_mkdir $dir_stripe_params $local_tdir/dir$i
4886                         for j in $(seq $local_numfiles) ; do
4887                                 touch $local_tdir/dir$i/file$j
4888                         done
4889                 done
4890         fi
4891 }
4892
4893 setup_56_special() {
4894         local local_tdir=$1
4895         local local_numfiles=$2
4896         local local_numdirs=$3
4897
4898         setup_56 $local_tdir $local_numfiles $local_numdirs
4899
4900         if [ ! -e "$local_tdir/loop${local_numfiles}b" ] ; then
4901                 for i in $(seq $local_numfiles) ; do
4902                         mknod $local_tdir/loop${i}b b 7 $i
4903                         mknod $local_tdir/null${i}c c 1 3
4904                         ln -s $local_tdir/file1 $local_tdir/link${i}
4905                 done
4906                 for i in $(seq $local_numdirs) ; do
4907                         mknod $local_tdir/dir$i/loop${i}b b 7 $i
4908                         mknod $local_tdir/dir$i/null${i}c c 1 3
4909                         ln -s $local_tdir/dir$i/file1 $local_tdir/dir$i/link${i}
4910                 done
4911         fi
4912 }
4913
4914 test_56g() {
4915         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4916         local expected=$(($NUMDIRS + 2))
4917
4918         setup_56 $dir $NUMFILES $NUMDIRS
4919
4920         # test lfs find with -name
4921         for i in $(seq $NUMFILES) ; do
4922                 local nums=$($LFS find -name "*$i" $dir | wc -l)
4923
4924                 [ $nums -eq $expected ] ||
4925                         error "lfs find -name '*$i' $dir wrong: "\
4926                               "found $nums, expected $expected"
4927         done
4928 }
4929 run_test 56g "check lfs find -name"
4930
4931 test_56h() {
4932         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4933         local expected=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4934
4935         setup_56 $dir $NUMFILES $NUMDIRS
4936
4937         # test lfs find with ! -name
4938         for i in $(seq $NUMFILES) ; do
4939                 local nums=$($LFS find ! -name "*$i" $dir | wc -l)
4940
4941                 [ $nums -eq $expected ] ||
4942                         error "lfs find ! -name '*$i' $dir wrong: "\
4943                               "found $nums, expected $expected"
4944         done
4945 }
4946 run_test 56h "check lfs find ! -name"
4947
4948 test_56i() {
4949         local dir=$DIR/$tdir
4950
4951         test_mkdir $dir
4952
4953         local cmd="$LFS find -ost $(ostuuid_from_index 0 $dir) $dir"
4954         local out=$($cmd)
4955
4956         [ -z "$out" ] || error "'$cmd' returned directory '$out'"
4957 }
4958 run_test 56i "check 'lfs find -ost UUID' skips directories"
4959
4960 test_56j() {
4961         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4962
4963         setup_56_special $dir $NUMFILES $NUMDIRS
4964
4965         local expected=$((NUMDIRS + 1))
4966         local cmd="$LFS find -type d $dir"
4967         local nums=$($cmd | wc -l)
4968
4969         [ $nums -eq $expected ] ||
4970                 error "'$cmd' wrong: found $nums, expected $expected"
4971 }
4972 run_test 56j "check lfs find -type d"
4973
4974 test_56k() {
4975         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4976
4977         setup_56_special $dir $NUMFILES $NUMDIRS
4978
4979         local expected=$(((NUMDIRS + 1) * NUMFILES))
4980         local cmd="$LFS find -type f $dir"
4981         local nums=$($cmd | wc -l)
4982
4983         [ $nums -eq $expected ] ||
4984                 error "'$cmd' wrong: found $nums, expected $expected"
4985 }
4986 run_test 56k "check lfs find -type f"
4987
4988 test_56l() {
4989         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4990
4991         setup_56_special $dir $NUMFILES $NUMDIRS
4992
4993         local expected=$((NUMDIRS + NUMFILES))
4994         local cmd="$LFS find -type b $dir"
4995         local nums=$($cmd | wc -l)
4996
4997         [ $nums -eq $expected ] ||
4998                 error "'$cmd' wrong: found $nums, expected $expected"
4999 }
5000 run_test 56l "check lfs find -type b"
5001
5002 test_56m() {
5003         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5004
5005         setup_56_special $dir $NUMFILES $NUMDIRS
5006
5007         local expected=$((NUMDIRS + NUMFILES))
5008         local cmd="$LFS find -type c $dir"
5009         local nums=$($cmd | wc -l)
5010         [ $nums -eq $expected ] ||
5011                 error "'$cmd' wrong: found $nums, expected $expected"
5012 }
5013 run_test 56m "check lfs find -type c"
5014
5015 test_56n() {
5016         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5017         setup_56_special $dir $NUMFILES $NUMDIRS
5018
5019         local expected=$((NUMDIRS + NUMFILES))
5020         local cmd="$LFS find -type l $dir"
5021         local nums=$($cmd | wc -l)
5022
5023         [ $nums -eq $expected ] ||
5024                 error "'$cmd' wrong: found $nums, expected $expected"
5025 }
5026 run_test 56n "check lfs find -type l"
5027
5028 test_56o() {
5029         local dir=$DIR/$tdir
5030
5031         setup_56 $dir $NUMFILES $NUMDIRS
5032         utime $dir/file1 > /dev/null || error "utime (1)"
5033         utime $dir/file2 > /dev/null || error "utime (2)"
5034         utime $dir/dir1 > /dev/null || error "utime (3)"
5035         utime $dir/dir2 > /dev/null || error "utime (4)"
5036         utime $dir/dir1/file1 > /dev/null || error "utime (5)"
5037         dd if=/dev/zero count=1 >> $dir/dir1/file1 && sync
5038
5039         local expected=4
5040         local nums=$($LFS find -mtime +0 $dir | wc -l)
5041
5042         [ $nums -eq $expected ] ||
5043                 error "lfs find -mtime +0 $dir: found $nums expect $expected"
5044
5045         expected=12
5046         cmd="$LFS find -mtime 0 $dir"
5047         nums=$($cmd | wc -l)
5048         [ $nums -eq $expected ] ||
5049                 error "'$cmd' wrong: found $nums, expected $expected"
5050 }
5051 run_test 56o "check lfs find -mtime for old files"
5052
5053 test_56p() {
5054         [ $RUNAS_ID -eq $UID ] &&
5055                 skip_env "RUNAS_ID = UID = $UID -- skipping"
5056
5057         local dir=$DIR/$tdir
5058
5059         setup_56 $dir $NUMFILES $NUMDIRS
5060         chown $RUNAS_ID $dir/file* || error "chown $DIR/${tdir}g/file$i failed"
5061
5062         local expected=$NUMFILES
5063         local cmd="$LFS find -uid $RUNAS_ID $dir"
5064         local nums=$($cmd | wc -l)
5065
5066         [ $nums -eq $expected ] ||
5067                 error "'$cmd' wrong: found $nums, expected $expected"
5068
5069         expected=$(((NUMFILES + 1) * NUMDIRS + 1))
5070         cmd="$LFS find ! -uid $RUNAS_ID $dir"
5071         nums=$($cmd | wc -l)
5072         [ $nums -eq $expected ] ||
5073                 error "'$cmd' wrong: found $nums, expected $expected"
5074 }
5075 run_test 56p "check lfs find -uid and ! -uid"
5076
5077 test_56q() {
5078         [ $RUNAS_ID -eq $UID ] &&
5079                 skip_env "RUNAS_ID = UID = $UID -- skipping"
5080
5081         local dir=$DIR/$tdir
5082
5083         setup_56 $dir $NUMFILES $NUMDIRS
5084         chgrp $RUNAS_GID $dir/file* || error "chown $dir/file$i failed"
5085
5086         local expected=$NUMFILES
5087         local cmd="$LFS find -gid $RUNAS_GID $dir"
5088         local nums=$($cmd | wc -l)
5089
5090         [ $nums -eq $expected ] ||
5091                 error "'$cmd' wrong: found $nums, expected $expected"
5092
5093         expected=$(( ($NUMFILES+1) * $NUMDIRS + 1))
5094         cmd="$LFS find ! -gid $RUNAS_GID $dir"
5095         nums=$($cmd | wc -l)
5096         [ $nums -eq $expected ] ||
5097                 error "'$cmd' wrong: found $nums, expected $expected"
5098 }
5099 run_test 56q "check lfs find -gid and ! -gid"
5100
5101 test_56r() {
5102         local dir=$DIR/$tdir
5103
5104         setup_56 $dir $NUMFILES $NUMDIRS
5105
5106         local expected=12
5107         local cmd="$LFS find -size 0 -type f $dir"
5108         local nums=$($cmd | wc -l)
5109
5110         [ $nums -eq $expected ] ||
5111                 error "'$cmd' wrong: found $nums, expected $expected"
5112         expected=0
5113         cmd="$LFS find ! -size 0 -type f $dir"
5114         nums=$($cmd | wc -l)
5115         [ $nums -eq $expected ] ||
5116                 error "'$cmd' wrong: found $nums, expected $expected"
5117         echo "test" > $dir/$tfile
5118         echo "test2" > $dir/$tfile.2 && sync
5119         expected=1
5120         cmd="$LFS find -size 5 -type f $dir"
5121         nums=$($cmd | wc -l)
5122         [ $nums -eq $expected ] ||
5123                 error "'$cmd' wrong: found $nums, expected $expected"
5124         expected=1
5125         cmd="$LFS find -size +5 -type f $dir"
5126         nums=$($cmd | wc -l)
5127         [ $nums -eq $expected ] ||
5128                 error "'$cmd' wrong: found $nums, expected $expected"
5129         expected=2
5130         cmd="$LFS find -size +0 -type f $dir"
5131         nums=$($cmd | wc -l)
5132         [ $nums -eq $expected ] ||
5133                 error "'$cmd' wrong: found $nums, expected $expected"
5134         expected=2
5135         cmd="$LFS find ! -size -5 -type f $dir"
5136         nums=$($cmd | wc -l)
5137         [ $nums -eq $expected ] ||
5138                 error "'$cmd' wrong: found $nums, expected $expected"
5139         expected=12
5140         cmd="$LFS find -size -5 -type f $dir"
5141         nums=$($cmd | wc -l)
5142         [ $nums -eq $expected ] ||
5143                 error "'$cmd' wrong: found $nums, expected $expected"
5144 }
5145 run_test 56r "check lfs find -size works"
5146
5147 test_56s() { # LU-611 #LU-9369
5148         [[ $OSTCOUNT -lt 2 ]] && skip_env "need at least 2 OSTs"
5149
5150         local dir=$DIR/$tdir
5151         local onestripe=$(((NUMDIRS + 1) * NUMFILES))
5152
5153         setup_56 $dir $NUMFILES $NUMDIRS "-c 1"
5154         for i in $(seq $NUMDIRS); do
5155                 $LFS setstripe -c $((OSTCOUNT + 1)) $dir/dir$i/$tfile
5156         done
5157
5158         local expected=$NUMDIRS
5159         local cmd="$LFS find -c $OSTCOUNT $dir"
5160         local nums=$($cmd | wc -l)
5161
5162         [ $nums -eq $expected ] || {
5163                 $LFS getstripe -R $dir
5164                 error "'$cmd' wrong: found $nums, expected $expected"
5165         }
5166
5167         expected=$((NUMDIRS + onestripe))
5168         cmd="$LFS find -stripe-count +0 -type f $dir"
5169         nums=$($cmd | wc -l)
5170         [ $nums -eq $expected ] || {
5171                 $LFS getstripe -R $dir
5172                 error "'$cmd' wrong: found $nums, expected $expected"
5173         }
5174
5175         expected=$onestripe
5176         cmd="$LFS find -stripe-count 1 -type f $dir"
5177         nums=$($cmd | wc -l)
5178         [ $nums -eq $expected ] || {
5179                 $LFS getstripe -R $dir
5180                 error "'$cmd' wrong: found $nums, expected $expected"
5181         }
5182
5183         cmd="$LFS find -stripe-count -2 -type f $dir"
5184         nums=$($cmd | wc -l)
5185         [ $nums -eq $expected ] || {
5186                 $LFS getstripe -R $dir
5187                 error "'$cmd' wrong: found $nums, expected $expected"
5188         }
5189
5190         expected=0
5191         cmd="$LFS find -stripe-count $((OSTCOUNT + 1)) -type f $dir"
5192         nums=$($cmd | wc -l)
5193         [ $nums -eq $expected ] || {
5194                 $LFS getstripe -R $dir
5195                 error "'$cmd' wrong: found $nums, expected $expected"
5196         }
5197 }
5198 run_test 56s "check lfs find -stripe-count works"
5199
5200 test_56t() { # LU-611 #LU-9369
5201         local dir=$DIR/$tdir
5202
5203         setup_56 $dir 0 $NUMDIRS
5204         for i in $(seq $NUMDIRS); do
5205                 $LFS setstripe -S 8M $dir/dir$i/$tfile
5206         done
5207
5208         local expected=$NUMDIRS
5209         local cmd="$LFS find -S 8M $dir"
5210         local nums=$($cmd | wc -l)
5211
5212         [ $nums -eq $expected ] || {
5213                 $LFS getstripe -R $dir
5214                 error "'$cmd' wrong: found $nums, expected $expected"
5215         }
5216         rm -rf $dir
5217
5218         setup_56 $dir $NUMFILES $NUMDIRS "--stripe-size 512k"
5219
5220         $LFS setstripe -S 256k $dir/$tfile.{0,1,2,3}
5221
5222         expected=$(((NUMDIRS + 1) * NUMFILES))
5223         cmd="$LFS find -stripe-size 512k -type f $dir"
5224         nums=$($cmd | wc -l)
5225         [ $nums -eq $expected ] ||
5226                 error "'$cmd' wrong: found $nums, expected $expected"
5227
5228         cmd="$LFS find -stripe-size +320k -type f $dir"
5229         nums=$($cmd | wc -l)
5230         [ $nums -eq $expected ] ||
5231                 error "'$cmd' wrong: found $nums, expected $expected"
5232
5233         expected=$(((NUMDIRS + 1) * NUMFILES + 4))
5234         cmd="$LFS find -stripe-size +200k -type f $dir"
5235         nums=$($cmd | wc -l)
5236         [ $nums -eq $expected ] ||
5237                 error "'$cmd' wrong: found $nums, expected $expected"
5238
5239         cmd="$LFS find -stripe-size -640k -type f $dir"
5240         nums=$($cmd | wc -l)
5241         [ $nums -eq $expected ] ||
5242                 error "'$cmd' wrong: found $nums, expected $expected"
5243
5244         expected=4
5245         cmd="$LFS find -stripe-size 256k -type f $dir"
5246         nums=$($cmd | wc -l)
5247         [ $nums -eq $expected ] ||
5248                 error "'$cmd' wrong: found $nums, expected $expected"
5249
5250         cmd="$LFS find -stripe-size -320k -type f $dir"
5251         nums=$($cmd | wc -l)
5252         [ $nums -eq $expected ] ||
5253                 error "'$cmd' wrong: found $nums, expected $expected"
5254
5255         expected=0
5256         cmd="$LFS find -stripe-size 1024k -type f $dir"
5257         nums=$($cmd | wc -l)
5258         [ $nums -eq $expected ] ||
5259                 error "'$cmd' wrong: found $nums, expected $expected"
5260 }
5261 run_test 56t "check lfs find -stripe-size works"
5262
5263 test_56u() { # LU-611
5264         local dir=$DIR/$tdir
5265
5266         setup_56 $dir $NUMFILES $NUMDIRS "-i 0 -c 1"
5267
5268         if [[ $OSTCOUNT -gt 1 ]]; then
5269                 $LFS setstripe -i 1 -c 1 $dir/$tfile.{0,1,2,3}
5270                 onestripe=4
5271         else
5272                 onestripe=0
5273         fi
5274
5275         local expected=$(((NUMDIRS + 1) * NUMFILES))
5276         local cmd="$LFS find -stripe-index 0 -type f $dir"
5277         local nums=$($cmd | wc -l)
5278
5279         [ $nums -eq $expected ] ||
5280                 error "'$cmd' wrong: found $nums, expected $expected"
5281
5282         expected=$onestripe
5283         cmd="$LFS find -stripe-index 1 -type f $dir"
5284         nums=$($cmd | wc -l)
5285         [ $nums -eq $expected ] ||
5286                 error "'$cmd' wrong: found $nums, expected $expected"
5287
5288         cmd="$LFS find ! -stripe-index 0 -type f $dir"
5289         nums=$($cmd | wc -l)
5290         [ $nums -eq $expected ] ||
5291                 error "'$cmd' wrong: found $nums, expected $expected"
5292
5293         expected=0
5294         # This should produce an error and not return any files
5295         cmd="$LFS find -stripe-index $OSTCOUNT -type f $dir"
5296         nums=$($cmd 2>/dev/null | wc -l)
5297         [ $nums -eq $expected ] ||
5298                 error "'$cmd' wrong: found $nums, expected $expected"
5299
5300         if [[ $OSTCOUNT -gt 1 ]]; then
5301                 expected=$(((NUMDIRS + 1) * NUMFILES + onestripe))
5302                 cmd="$LFS find -stripe-index 0,1 -type f $dir"
5303                 nums=$($cmd | wc -l)
5304                 [ $nums -eq $expected ] ||
5305                         error "'$cmd' wrong: found $nums, expected $expected"
5306         fi
5307 }
5308 run_test 56u "check lfs find -stripe-index works"
5309
5310 test_56v() {
5311         local mdt_idx=0
5312         local dir=$DIR/$tdir
5313
5314         setup_56 $dir $NUMFILES $NUMDIRS
5315
5316         UUID=$(mdtuuid_from_index $mdt_idx $dir)
5317         [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT $mdt_idx"
5318
5319         for file in $($LFS find -m $UUID $dir); do
5320                 file_midx=$($LFS getstripe -m $file)
5321                 [ $file_midx -eq $mdt_idx ] ||
5322                         error "lfs find -m $UUID != getstripe -m $file_midx"
5323         done
5324 }
5325 run_test 56v "check 'lfs find -m match with lfs getstripe -m'"
5326
5327 test_56w() {
5328         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5329         [ $PARALLEL == "yes" ] && skip "skip parallel run"
5330
5331         local dir=$DIR/$tdir
5332
5333         setup_56 $dir $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
5334
5335         local stripe_size=$($LFS getstripe -S -d $dir) ||
5336                 error "$LFS getstripe -S -d $dir failed"
5337         stripe_size=${stripe_size%% *}
5338
5339         local file_size=$((stripe_size * OSTCOUNT))
5340         local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
5341         local required_space=$((file_num * file_size))
5342         local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
5343                            head -n1)
5344         [[ $free_space -le $((required_space / 1024)) ]] &&
5345                 skip_env "need $required_space, have $free_space kbytes"
5346
5347         local dd_bs=65536
5348         local dd_count=$((file_size / dd_bs))
5349
5350         # write data into the files
5351         local i
5352         local j
5353         local file
5354
5355         for i in $(seq $NUMFILES); do
5356                 file=$dir/file$i
5357                 yes | dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5358                         error "write data into $file failed"
5359         done
5360         for i in $(seq $NUMDIRS); do
5361                 for j in $(seq $NUMFILES); do
5362                         file=$dir/dir$i/file$j
5363                         yes|dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5364                                 error "write data into $file failed"
5365                 done
5366         done
5367
5368         # $LFS_MIGRATE will fail if hard link migration is unsupported
5369         if [[ $(lustre_version_code mds1) -gt $(version_code 2.5.55) ]]; then
5370                 createmany -l$dir/dir1/file1 $dir/dir1/link 200 ||
5371                         error "creating links to $dir/dir1/file1 failed"
5372         fi
5373
5374         local expected=-1
5375
5376         [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
5377
5378         # lfs_migrate file
5379         local cmd="$LFS_MIGRATE -y -c $expected $dir/file1"
5380
5381         echo "$cmd"
5382         eval $cmd || error "$cmd failed"
5383
5384         check_stripe_count $dir/file1 $expected
5385
5386         if [ $MDS1_VERSION -ge $(version_code 2.6.90) ];
5387         then
5388                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
5389                 # OST 1 if it is on OST 0. This file is small enough to
5390                 # be on only one stripe.
5391                 file=$dir/migr_1_ost
5392                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
5393                         error "write data into $file failed"
5394                 local obdidx=$($LFS getstripe -i $file)
5395                 local oldmd5=$(md5sum $file)
5396                 local newobdidx=0
5397
5398                 [[ $obdidx -eq 0 ]] && newobdidx=1
5399                 cmd="$LFS migrate -i $newobdidx $file"
5400                 echo $cmd
5401                 eval $cmd || error "$cmd failed"
5402
5403                 local realobdix=$($LFS getstripe -i $file)
5404                 local newmd5=$(md5sum $file)
5405
5406                 [[ $newobdidx -ne $realobdix ]] &&
5407                         error "new OST is different (was=$obdidx, "\
5408                               "wanted=$newobdidx, got=$realobdix)"
5409                 [[ "$oldmd5" != "$newmd5" ]] &&
5410                         error "md5sum differ: $oldmd5, $newmd5"
5411         fi
5412
5413         # lfs_migrate dir
5414         cmd="$LFS_MIGRATE -y -c $expected $dir/dir1"
5415         echo "$cmd"
5416         eval $cmd || error "$cmd failed"
5417
5418         for j in $(seq $NUMFILES); do
5419                 check_stripe_count $dir/dir1/file$j $expected
5420         done
5421
5422         # lfs_migrate works with lfs find
5423         cmd="$LFS find -stripe_count $OSTCOUNT -type f $dir |
5424              $LFS_MIGRATE -y -c $expected"
5425         echo "$cmd"
5426         eval $cmd || error "$cmd failed"
5427
5428         for i in $(seq 2 $NUMFILES); do
5429                 check_stripe_count $dir/file$i $expected
5430         done
5431         for i in $(seq 2 $NUMDIRS); do
5432                 for j in $(seq $NUMFILES); do
5433                 check_stripe_count $dir/dir$i/file$j $expected
5434                 done
5435         done
5436 }
5437 run_test 56w "check lfs_migrate -c stripe_count works"
5438
5439 test_56wb() {
5440         local file1=$DIR/$tdir/file1
5441         local create_pool=false
5442         local initial_pool=$($LFS getstripe -p $DIR)
5443         local pool_list=()
5444         local pool=""
5445
5446         echo -n "Creating test dir..."
5447         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
5448         echo "done."
5449
5450         echo -n "Creating test file..."
5451         touch $file1 || error "cannot create file"
5452         echo "done."
5453
5454         echo -n "Detecting existing pools..."
5455         pool_list=($($LFS pool_list $FSNAME | grep "$FSNAME\." | cut -d. -f2))
5456
5457         if [ ${#pool_list[@]} -gt 0 ]; then
5458                 echo "${pool_list[@]}"
5459                 for thispool in "${pool_list[@]}"; do
5460                         if [[ -z "$initial_pool" ||
5461                               "$initial_pool" != "$thispool" ]]; then
5462                                 pool="$thispool"
5463                                 echo "Using existing pool '$pool'"
5464                                 break
5465                         fi
5466                 done
5467         else
5468                 echo "none detected."
5469         fi
5470         if [ -z "$pool" ]; then
5471                 pool=${POOL:-testpool}
5472                 [ "$initial_pool" = "$pool" ] && pool="testpool2"
5473                 echo -n "Creating pool '$pool'..."
5474                 create_pool=true
5475                 pool_add $pool &> /dev/null ||
5476                         error "pool_add failed"
5477                 echo "done."
5478
5479                 echo -n "Adding target to pool..."
5480                 pool_add_targets $pool 0 0 1 &> /dev/null ||
5481                         error "pool_add_targets failed"
5482                 echo "done."
5483         fi
5484
5485         echo -n "Setting pool using -p option..."
5486         $LFS_MIGRATE -y -q --no-rsync -p $pool $file1 &> /dev/null ||
5487                 error "migrate failed rc = $?"
5488         echo "done."
5489
5490         echo -n "Verifying test file is in pool after migrating..."
5491         [ "$($LFS getstripe -p $file1)" = $pool ] ||
5492                 error "file was not migrated to pool $pool"
5493         echo "done."
5494
5495         echo -n "Removing test file from pool '$pool'..."
5496         $LFS migrate $file1 &> /dev/null ||
5497                 error "cannot remove from pool"
5498         [ "$($LFS getstripe -p $file1)" ] &&
5499                 error "pool still set"
5500         echo "done."
5501
5502         echo -n "Setting pool using --pool option..."
5503         $LFS_MIGRATE -y -q --no-rsync --pool $pool $file1 &> /dev/null ||
5504                 error "migrate failed rc = $?"
5505         echo "done."
5506
5507         # Clean up
5508         rm -f $file1
5509         if $create_pool; then
5510                 destroy_test_pools 2> /dev/null ||
5511                         error "destroy test pools failed"
5512         fi
5513 }
5514 run_test 56wb "check lfs_migrate pool support"
5515
5516 test_56wc() {
5517         local file1="$DIR/$tdir/file1"
5518
5519         echo -n "Creating test dir..."
5520         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
5521         local def_stripe_size=$($LFS getstripe -S $DIR/$tdir 2>/dev/null)
5522         $LFS setstripe -S 1M -c 1 "$DIR/$tdir" &> /dev/null ||
5523                 error "cannot set stripe"
5524         echo "done"
5525
5526         echo -n "Setting initial stripe for test file..."
5527         $LFS setstripe -S 512K -c 1 "$file1" &> /dev/null ||
5528                 error "cannot set stripe"
5529         [ $($LFS getstripe -S "$file1") -eq 524288 ] ||
5530                 error "stripe size not set"
5531         echo "done."
5532
5533         # File currently set to -S 512K -c 1
5534
5535         # Ensure -c and -S options are rejected when -R is set
5536         echo -n "Verifying incompatible options are detected..."
5537         $LFS_MIGRATE -y -R -c 1 "$file1" &> /dev/null &&
5538                 error "incompatible -c and -R options not detected"
5539         $LFS_MIGRATE -y -R -S 1M "$file1" &> /dev/null &&
5540                 error "incompatible -S and -R options not detected"
5541         echo "done."
5542
5543         # Ensure unrecognized options are passed through to 'lfs migrate'
5544         echo -n "Verifying -S option is passed through to lfs migrate..."
5545         $LFS_MIGRATE -y -S 1M "$file1" &> /dev/null ||
5546                 error "migration failed"
5547         [ $($LFS getstripe -S "$file1") -eq 1048576 ] ||
5548                 error "file was not restriped"
5549         echo "done."
5550
5551         # File currently set to -S 1M -c 1
5552
5553         # Ensure long options are supported
5554         echo -n "Verifying long options supported..."
5555         $LFS_MIGRATE -y --non-block "$file1" &> /dev/null ||
5556                 error "long option without argument not supported"
5557         $LFS_MIGRATE -y --stripe-size 512K "$file1" &> /dev/null ||
5558                 error "long option with argument not supported"
5559         [ $($LFS getstripe -S "$file1") -eq 524288 ] ||
5560                 error "file not restriped with --stripe-size option"
5561         echo "done."
5562
5563         # File currently set to -S 512K -c 1
5564
5565         if [ "$OSTCOUNT" -gt 1 ]; then
5566                 echo -n "Verifying explicit stripe count can be set..."
5567                 $LFS_MIGRATE -y -c 2 "$file1" &> /dev/null ||
5568                         error "migrate failed"
5569                 [ $($LFS getstripe -c "$file1") -eq 2 ] ||
5570                         error "file not restriped to explicit count"
5571                 echo "done."
5572         fi
5573
5574         # File currently set to -S 512K -c 1 or -S 512K -c 2
5575
5576         # Ensure parent striping is used if -R is set, and no stripe
5577         # count or size is specified
5578         echo -n "Setting stripe for parent directory..."
5579         $LFS setstripe -S 1M -c 1 "$DIR/$tdir" &> /dev/null ||
5580                 error "cannot set stripe"
5581         echo "done."
5582
5583         echo -n "Verifying restripe option uses parent stripe settings..."
5584         $LFS_MIGRATE -y -R "$file1" &> /dev/null ||
5585                 error "migrate failed"
5586         [ $($LFS getstripe -S "$file1") -eq $def_stripe_size ] ||
5587                 error "file not restriped to parent settings"
5588         [ $($LFS getstripe -c "$file1") -eq 1 ] ||
5589                 error "file not restriped to parent settings"
5590         echo "done."
5591
5592         # File currently set to -S 1M -c 1
5593
5594         # Ensure striping is preserved if -R is not set, and no stripe
5595         # count or size is specified
5596         echo -n "Verifying striping size preserved when not specified..."
5597         local orig_stripe_size=$($LFS getstripe -S "$file1" 2>/dev/null)
5598         $LFS setstripe -S 2M -c 1 "$DIR/$tdir" &> /dev/null ||
5599                 error "cannot set stripe on parent directory"
5600         $LFS_MIGRATE -y "$file1" &> /dev/null ||
5601                 error "migrate failed"
5602         [ $($LFS getstripe -S "$file1") -eq $orig_stripe_size ] ||
5603                 error "file was restriped"
5604         echo "done."
5605
5606         # Ensure file name properly detected when final option has no argument
5607         echo -n "Verifying file name properly detected..."
5608         $LFS_MIGRATE -y "$file1" &> /dev/null ||
5609                 error "file name interpreted as option argument"
5610         echo "done."
5611
5612         # Clean up
5613         rm -f "$file1"
5614 }
5615 run_test 56wc "check unrecognized options for lfs_migrate are passed through"
5616
5617 test_56wd() {
5618         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5619
5620         local file1=$DIR/$tdir/file1
5621
5622         echo -n "Creating test dir..."
5623         test_mkdir $DIR/$tdir || error "cannot create dir"
5624         echo "done."
5625
5626         echo -n "Creating test file..."
5627         touch $file1
5628         echo "done."
5629
5630         # Ensure 'lfs migrate' will fail by using a non-existent option,
5631         # and make sure rsync is not called to recover
5632         echo -n "Make sure --no-rsync option works..."
5633         $LFS_MIGRATE -y --no-rsync --invalid-opt $file1 2>&1 |
5634                 grep -q 'refusing to fall back to rsync' ||
5635                 error "rsync was called with --no-rsync set"
5636         echo "done."
5637
5638         # Ensure rsync is called without trying 'lfs migrate' first
5639         echo -n "Make sure --rsync option works..."
5640         $LFS_MIGRATE -y --rsync --invalid-opt $file1 2>&1 |
5641                 grep -q 'falling back to rsync' &&
5642                 error "lfs migrate was called with --rsync set"
5643         echo "done."
5644
5645         echo -n "Make sure --rsync and --no-rsync options are exclusive..."
5646         $LFS_MIGRATE -y --rsync --no-rsync $file1 2>&1 |
5647                 grep -q 'at the same time' ||
5648                 error "--rsync and --no-rsync accepted concurrently"
5649         echo "done."
5650
5651         # Clean up
5652         rm -f $file1
5653 }
5654 run_test 56wd "check lfs_migrate --rsync and --no-rsync work"
5655
5656 test_56x() {
5657         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5658         check_swap_layouts_support
5659
5660         local dir=$DIR/$tdir
5661         local ref1=/etc/passwd
5662         local file1=$dir/file1
5663
5664         test_mkdir $dir || error "creating dir $dir"
5665         $LFS setstripe -c 2 $file1
5666         cp $ref1 $file1
5667         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
5668         stripe=$($LFS getstripe -c $file1)
5669         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5670         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5671
5672         # clean up
5673         rm -f $file1
5674 }
5675 run_test 56x "lfs migration support"
5676
5677 test_56xa() {
5678         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5679         check_swap_layouts_support
5680
5681         local dir=$DIR/$tdir/$testnum
5682
5683         test_mkdir -p $dir
5684
5685         local ref1=/etc/passwd
5686         local file1=$dir/file1
5687
5688         $LFS setstripe -c 2 $file1
5689         cp $ref1 $file1
5690         $LFS migrate --block -c 1 $file1 || error "migrate failed rc = $?"
5691
5692         local stripe=$($LFS getstripe -c $file1)
5693
5694         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5695         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5696
5697         # clean up
5698         rm -f $file1
5699 }
5700 run_test 56xa "lfs migration --block support"
5701
5702 check_migrate_links() {
5703         local dir="$1"
5704         local file1="$dir/file1"
5705         local begin="$2"
5706         local count="$3"
5707         local total_count=$(($begin + $count - 1))
5708         local symlink_count=10
5709         local uniq_count=10
5710
5711         if [ ! -f "$file1" ]; then
5712                 echo -n "creating initial file..."
5713                 $LFS setstripe -c 1 -S "512k" "$file1" ||
5714                         error "cannot setstripe initial file"
5715                 echo "done"
5716
5717                 echo -n "creating symlinks..."
5718                 for s in $(seq 1 $symlink_count); do
5719                         ln -s "$file1" "$dir/slink$s" ||
5720                                 error "cannot create symlinks"
5721                 done
5722                 echo "done"
5723
5724                 echo -n "creating nonlinked files..."
5725                 createmany -o "$dir/uniq" 1 10 &> /dev/null ||
5726                         error "cannot create nonlinked files"
5727                 echo "done"
5728         fi
5729
5730         # create hard links
5731         if [ ! -f "$dir/file$total_count" ]; then
5732                 echo -n "creating hard links $begin:$total_count..."
5733                 createmany -l"$file1" "$dir/file" "$begin" "$count" &>  \
5734                         /dev/null || error "cannot create hard links"
5735                 echo "done"
5736         fi
5737
5738         echo -n "checking number of hard links listed in xattrs..."
5739         local fid=$($LFS getstripe -F "$file1")
5740         local paths=($($LFS fid2path "$MOUNT" "$fid" 2> /dev/null))
5741
5742         echo "${#paths[*]}"
5743         if [ ${#paths[*]} -lt $total_count -a "$begin" -eq 2  ]; then
5744                         skip "hard link list has unexpected size, skipping test"
5745         fi
5746         if [ ${#paths[*]} -ge $total_count -a "$begin" -ne 2  ]; then
5747                         error "link names should exceed xattrs size"
5748         fi
5749
5750         echo -n "migrating files..."
5751         local migrate_out=$($LFS_MIGRATE -y -S '1m' $dir)
5752         local rc=$?
5753         [ $rc -eq 0 ] || error "migrate failed rc = $rc"
5754         echo "done"
5755
5756         # make sure all links have been properly migrated
5757         echo -n "verifying files..."
5758         fid=$($LFS getstripe -F "$file1") ||
5759                 error "cannot get fid for file $file1"
5760         for i in $(seq 2 $total_count); do
5761                 local fid2=$($LFS getstripe -F $dir/file$i)
5762
5763                 [ "$fid2" == "$fid" ] ||
5764                         error "migrated hard link has mismatched FID"
5765         done
5766
5767         # make sure hard links were properly detected, and migration was
5768         # performed only once for the entire link set; nonlinked files should
5769         # also be migrated
5770         local actual=$(grep -c 'done migrate' <<< "$migrate_out")
5771         local expected=$(($uniq_count + 1))
5772
5773         [ "$actual" -eq  "$expected" ] ||
5774                 error "hard links individually migrated ($actual != $expected)"
5775
5776         # make sure the correct number of hard links are present
5777         local hardlinks=$(stat -c '%h' "$file1")
5778
5779         [ $hardlinks -eq $total_count ] ||
5780                 error "num hard links $hardlinks != $total_count"
5781         echo "done"
5782
5783         return 0
5784 }
5785
5786 test_56xb() {
5787         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
5788                 skip "Need MDS version at least 2.10.55"
5789
5790         local dir="$DIR/$tdir"
5791
5792         test_mkdir "$dir" || error "cannot create dir $dir"
5793
5794         echo "testing lfs migrate mode when all links fit within xattrs"
5795         LFS_MIGRATE_RSYNC=false check_migrate_links "$dir" 2 99
5796
5797         echo "testing rsync mode when all links fit within xattrs"
5798         LFS_MIGRATE_RSYNC=true check_migrate_links "$dir" 2 99
5799
5800         echo "testing lfs migrate mode when all links do not fit within xattrs"
5801         LFS_MIGRATE_RSYNC=false check_migrate_links "$dir" 101 100
5802
5803         echo "testing rsync mode when all links do not fit within xattrs"
5804         LFS_MIGRATE_RSYNC=true check_migrate_links "$dir" 101 100
5805
5806         # clean up
5807         rm -rf $dir
5808 }
5809 run_test 56xb "lfs migration hard link support"
5810
5811 test_56y() {
5812         [ $MDS1_VERSION -lt $(version_code 2.4.53) ] &&
5813                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53"
5814
5815         local res=""
5816         local dir=$DIR/$tdir
5817         local f1=$dir/file1
5818         local f2=$dir/file2
5819
5820         test_mkdir -p $dir || error "creating dir $dir"
5821         touch $f1 || error "creating std file $f1"
5822         $MULTIOP $f2 H2c || error "creating released file $f2"
5823
5824         # a directory can be raid0, so ask only for files
5825         res=$($LFS find $dir -L raid0 -type f | wc -l)
5826         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
5827
5828         res=$($LFS find $dir \! -L raid0 -type f | wc -l)
5829         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
5830
5831         # only files can be released, so no need to force file search
5832         res=$($LFS find $dir -L released)
5833         [[ $res == $f2 ]] || error "search released: found $res != $f2"
5834
5835         res=$($LFS find $dir -type f \! -L released)
5836         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
5837 }
5838 run_test 56y "lfs find -L raid0|released"
5839
5840 test_56z() { # LU-4824
5841         # This checks to make sure 'lfs find' continues after errors
5842         # There are two classes of errors that should be caught:
5843         # - If multiple paths are provided, all should be searched even if one
5844         #   errors out
5845         # - If errors are encountered during the search, it should not terminate
5846         #   early
5847         local dir=$DIR/$tdir
5848         local i
5849
5850         test_mkdir $dir
5851         for i in d{0..9}; do
5852                 test_mkdir $dir/$i
5853         done
5854         touch $dir/d{0..9}/$tfile
5855         $LFS find $DIR/non_existent_dir $dir &&
5856                 error "$LFS find did not return an error"
5857         # Make a directory unsearchable. This should NOT be the last entry in
5858         # directory order.  Arbitrarily pick the 6th entry
5859         chmod 700 $($LFS find $dir -type d | sed '6!d')
5860
5861         local count=$($RUNAS $LFS find $DIR/non_existent $dir | wc -l)
5862
5863         # The user should be able to see 10 directories and 9 files
5864         [ $count == 19 ] || error "$LFS find did not continue after error"
5865 }
5866 run_test 56z "lfs find should continue after an error"
5867
5868 test_56aa() { # LU-5937
5869         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
5870
5871         local dir=$DIR/$tdir
5872
5873         mkdir $dir
5874         $LFS setdirstripe -c$MDSCOUNT $dir/striped_dir
5875
5876         createmany -o $dir/striped_dir/${tfile}- 1024
5877         local dirs=$($LFS find --size +8k $dir/)
5878
5879         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
5880 }
5881 run_test 56aa "lfs find --size under striped dir"
5882
5883 test_56ab() { # LU-10705
5884         test_mkdir $DIR/$tdir
5885         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=8k count=1 seek=2k
5886         dd if=/dev/zero of=$DIR/$tdir/$tfile.2 bs=4k count=1 seek=4k
5887         dd if=/dev/zero of=$DIR/$tdir/$tfile.3 bs=1M count=2 seek=16
5888         # Flush writes to ensure valid blocks.  Need to be more thorough for
5889         # ZFS, since blocks are not allocated/returned to client immediately.
5890         sync_all_data
5891         wait_zfs_commit ost1 2
5892         cancel_lru_locks osc
5893         ls -ls $DIR/$tdir
5894
5895         local files=$($LFS find --size +16M $DIR/$tdir | wc -l)
5896
5897         [[ $files == 3 ]] || error ">16M size files $files isn't 3 as expected"
5898
5899         files=$($LFS find --blocks +1M $DIR/$tdir | wc -l)
5900         [[ $files == 1 ]] || error ">1M blocks files $files isn't 1 as expected"
5901
5902         rm -f $DIR/$tdir/$tfile.[123]
5903 }
5904 run_test 56ab "lfs find --blocks"
5905
5906 test_56ba() {
5907         [ $MDS1_VERSION -lt $(version_code 2.10.50) ] &&
5908                 skip "Need MDS version at least 2.10.50"
5909
5910         # Create composite files with one component
5911         local dir=$DIR/$tdir
5912
5913         setup_56 $dir/1Mfiles 5 1 "-S 1M --component-end 1M"
5914         # Create composite files with three components
5915         setup_56 $dir/2Mfiles 5 2 "-E 2M -S 1M -E 4M -E 6M"
5916         # Create non-composite files
5917         createmany -o $dir/${tfile}- 10
5918
5919         local nfiles=$($LFS find --component-end 1M --type f $dir | wc -l)
5920
5921         [[ $nfiles == 10 ]] ||
5922                 error "lfs find -E 1M found $nfiles != 10 files"
5923
5924         nfiles=$($LFS find ! -E 1M --type f $dir | wc -l)
5925         [[ $nfiles == 25 ]] ||
5926                 error "lfs find ! -E 1M found $nfiles != 25 files"
5927
5928         # All files have a component that starts at 0
5929         nfiles=$($LFS find --component-start 0 --type f $dir | wc -l)
5930         [[ $nfiles == 35 ]] ||
5931                 error "lfs find --component-start 0 - $nfiles != 35 files"
5932
5933         nfiles=$($LFS find --component-start 2M --type f $dir | wc -l)
5934         [[ $nfiles == 15 ]] ||
5935                 error "lfs find --component-start 2M - $nfiles != 15 files"
5936
5937         # All files created here have a componenet that does not starts at 2M
5938         nfiles=$($LFS find ! --component-start 2M --type f $dir | wc -l)
5939         [[ $nfiles == 35 ]] ||
5940                 error "lfs find ! --component-start 2M - $nfiles != 35 files"
5941
5942         # Find files with a specified number of components
5943         local nfiles=$($LFS find --component-count 3 --type f $dir | wc -l)
5944         [[ $nfiles == 15 ]] ||
5945                 error "lfs find --component-count 3 - $nfiles != 15 files"
5946
5947         # Remember non-composite files have a component count of zero
5948         local nfiles=$($LFS find --component-count 0 --type f $dir | wc -l)
5949         [[ $nfiles == 10 ]] ||
5950                 error "lfs find --component-count 0 - $nfiles != 10 files"
5951
5952         nfiles=$($LFS find ! --component-count 3 --type f $dir | wc -l)
5953         [[ $nfiles == 20 ]] ||
5954                 error "lfs find ! --component-count 3 - $nfiles != 20 files"
5955
5956         # All files have a flag called "init"
5957         local nfiles=$($LFS find --component-flags init --type f $dir | wc -l)
5958         [[ $nfiles == 35 ]] ||
5959                 error "lfs find --component-flags init - $nfiles != 35 files"
5960
5961         # Multi-component files will have a component not initialized
5962         local nfiles=$($LFS find ! --component-flags init --type f $dir | wc -l)
5963         [[ $nfiles == 15 ]] ||
5964                 error "lfs find !--component-flags init - $nfiles != 15 files"
5965
5966         rm -rf $dir
5967
5968 }
5969 run_test 56ba "test lfs find --component-end, -start, -count, and -flags"
5970
5971 test_56ca() {
5972         [[ $MDS1_VERSION -ge $(version_code 2.10.57) ]] ||
5973                 skip "Need MDS version at least 2.10.57"
5974
5975         local td=$DIR/$tdir
5976         local tf=$td/$tfile
5977         local dir
5978         local nfiles
5979         local cmd
5980         local i
5981         local j
5982
5983         # create mirrored directories and mirrored files
5984         mkdir $td || error "mkdir $td failed"
5985         $LFS mirror create -N3 $td || error "create mirrored dir $td failed"
5986         createmany -o $tf- 10 || error "create $tf- failed"
5987
5988         for i in $(seq 2); do
5989                 dir=$td/dir$i
5990                 mkdir $dir || error "mkdir $dir failed"
5991                 $LFS mirror create -N$((3 + i)) $dir ||
5992                         error "create mirrored dir $dir failed"
5993                 createmany -o $dir/$tfile- 10 ||
5994                         error "create $dir/$tfile- failed"
5995         done
5996
5997         # change the states of some mirrored files
5998         echo foo > $tf-6
5999         for i in $(seq 2); do
6000                 dir=$td/dir$i
6001                 for j in $(seq 4 9); do
6002                         echo foo > $dir/$tfile-$j
6003                 done
6004         done
6005
6006         # find mirrored files with specific mirror count
6007         cmd="$LFS find --mirror-count 3 --type f $td"
6008         nfiles=$($cmd | wc -l)
6009         [[ $nfiles = 10 ]] || error "$cmd: $nfiles != 10 files"
6010
6011         cmd="$LFS find ! --mirror-count 3 --type f $td"
6012         nfiles=$($cmd | wc -l)
6013         [[ $nfiles = 20 ]] || error "$cmd: $nfiles != 20 files"
6014
6015         cmd="$LFS find --mirror-count +2 --type f $td"
6016         nfiles=$($cmd | wc -l)
6017         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
6018
6019         cmd="$LFS find --mirror-count -6 --type f $td"
6020         nfiles=$($cmd | wc -l)
6021         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
6022
6023         # find mirrored files with specific file state
6024         cmd="$LFS find --maxdepth 1 --mirror-state=^ro --type f $td"
6025         [[ $($cmd) = $tf-6 ]] || error "$cmd: didn't return $tf-6"
6026
6027         cmd="$LFS find --mirror-state=ro --type f $td"
6028         nfiles=$($cmd | wc -l)
6029         [[ $nfiles = 17 ]] || error "$cmd: $nfiles != 17 files"
6030
6031         cmd="$LFS find ! --mirror-state=ro --type f $td"
6032         nfiles=$($cmd | wc -l)
6033         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
6034
6035         cmd="$LFS find --mirror-state=wp --type f $td"
6036         nfiles=$($cmd | wc -l)
6037         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
6038
6039         cmd="$LFS find ! --mirror-state=sp --type f $td"
6040         nfiles=$($cmd | wc -l)
6041         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
6042 }
6043 run_test 56ca "check lfs find --mirror-count|-N and --mirror-state"
6044
6045 test_57a() {
6046         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6047         # note test will not do anything if MDS is not local
6048         if [ "$mds1_FSTYPE" != ldiskfs ]; then
6049                 skip_env "ldiskfs only test"
6050         fi
6051         remote_mds_nodsh && skip "remote MDS with nodsh"
6052
6053         local MNTDEV="osd*.*MDT*.mntdev"
6054         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
6055         [ -z "$DEV" ] && error "can't access $MNTDEV"
6056         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
6057                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
6058                         error "can't access $DEV"
6059                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
6060                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
6061                 rm $TMP/t57a.dump
6062         done
6063 }
6064 run_test 57a "verify MDS filesystem created with large inodes =="
6065
6066 test_57b() {
6067         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6068         if [ "$mds1_FSTYPE" != ldiskfs ]; then
6069                 skip_env "ldiskfs only test"
6070         fi
6071         remote_mds_nodsh && skip "remote MDS with nodsh"
6072
6073         local dir=$DIR/$tdir
6074         local filecount=100
6075         local file1=$dir/f1
6076         local fileN=$dir/f$filecount
6077
6078         rm -rf $dir || error "removing $dir"
6079         test_mkdir -c1 $dir
6080         local mdtidx=$($LFS getstripe -m $dir)
6081         local mdtname=MDT$(printf %04x $mdtidx)
6082         local facet=mds$((mdtidx + 1))
6083
6084         echo "mcreating $filecount files"
6085         createmany -m $dir/f 1 $filecount || error "creating files in $dir"
6086
6087         # verify that files do not have EAs yet
6088         $LFS getstripe $file1 2>&1 | grep -q "no stripe" ||
6089                 error "$file1 has an EA"
6090         $LFS getstripe $fileN 2>&1 | grep -q "no stripe" ||
6091                 error "$fileN has an EA"
6092
6093         sync
6094         sleep 1
6095         df $dir  #make sure we get new statfs data
6096         local mdsfree=$(do_facet $facet \
6097                         lctl get_param -n osd*.*$mdtname.kbytesfree)
6098         local mdcfree=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
6099         local file
6100
6101         echo "opening files to create objects/EAs"
6102         for file in $(seq -f $dir/f%g 1 $filecount); do
6103                 $OPENFILE -f O_RDWR $file > /dev/null 2>&1 ||
6104                         error "opening $file"
6105         done
6106
6107         # verify that files have EAs now
6108         $LFS getstripe $file1 | grep -q "obdidx" || error "$file1 missing EA"
6109         $LFS getstripe $fileN | grep -q "obdidx" || error "$fileN missing EA"
6110
6111         sleep 1  #make sure we get new statfs data
6112         df $dir
6113         local mdsfree2=$(do_facet $facet \
6114                          lctl get_param -n osd*.*$mdtname.kbytesfree)
6115         local mdcfree2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
6116
6117         if [[ $mdcfree2 -lt $((mdcfree - 16)) ]]; then
6118                 if [ "$mdsfree" != "$mdsfree2" ]; then
6119                         error "MDC before $mdcfree != after $mdcfree2"
6120                 else
6121                         echo "MDC before $mdcfree != after $mdcfree2"
6122                         echo "unable to confirm if MDS has large inodes"
6123                 fi
6124         fi
6125         rm -rf $dir
6126 }
6127 run_test 57b "default LOV EAs are stored inside large inodes ==="
6128
6129 test_58() {
6130         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6131         [ -z "$(which wiretest 2>/dev/null)" ] &&
6132                         skip_env "could not find wiretest"
6133
6134         wiretest
6135 }
6136 run_test 58 "verify cross-platform wire constants =============="
6137
6138 test_59() {
6139         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6140
6141         echo "touch 130 files"
6142         createmany -o $DIR/f59- 130
6143         echo "rm 130 files"
6144         unlinkmany $DIR/f59- 130
6145         sync
6146         # wait for commitment of removal
6147         wait_delete_completed
6148 }
6149 run_test 59 "verify cancellation of llog records async ========="
6150
6151 TEST60_HEAD="test_60 run $RANDOM"
6152 test_60a() {
6153         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6154         remote_mgs_nodsh && skip "remote MGS with nodsh"
6155         do_facet mgs "! which run-llog.sh &> /dev/null" &&
6156                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
6157                         skip_env "missing subtest run-llog.sh"
6158
6159         log "$TEST60_HEAD - from kernel mode"
6160         do_facet mgs "$LCTL dk > /dev/null"
6161         do_facet mgs "bash run-llog.sh" || error "run-llog.sh failed"
6162         do_facet mgs $LCTL dk > $TMP/$tfile
6163
6164         # LU-6388: test llog_reader
6165         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
6166         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
6167         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
6168                         skip_env "missing llog_reader"
6169         local fstype=$(facet_fstype mgs)
6170         [ $fstype != ldiskfs -a $fstype != zfs ] &&
6171                 skip_env "Only for ldiskfs or zfs type mgs"
6172
6173         local mntpt=$(facet_mntpt mgs)
6174         local mgsdev=$(mgsdevname 1)
6175         local fid_list
6176         local fid
6177         local rec_list
6178         local rec
6179         local rec_type
6180         local obj_file
6181         local path
6182         local seq
6183         local oid
6184         local pass=true
6185
6186         #get fid and record list
6187         fid_list=($(awk '/9_sub.*record/ { print $NF }' /$TMP/$tfile |
6188                 tail -n 4))
6189         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' /$TMP/$tfile |
6190                 tail -n 4))
6191         #remount mgs as ldiskfs or zfs type
6192         stop mgs || error "stop mgs failed"
6193         mount_fstype mgs || error "remount mgs failed"
6194         for ((i = 0; i < ${#fid_list[@]}; i++)); do
6195                 fid=${fid_list[i]}
6196                 rec=${rec_list[i]}
6197                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
6198                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
6199                 oid=$((16#$oid))
6200
6201                 case $fstype in
6202                         ldiskfs )
6203                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
6204                         zfs )
6205                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
6206                 esac
6207                 echo "obj_file is $obj_file"
6208                 do_facet mgs $llog_reader $obj_file
6209
6210                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
6211                         awk '{ print $3 }' | sed -e "s/^type=//g")
6212                 if [ $rec_type != $rec ]; then
6213                         echo "FAILED test_60a wrong record type $rec_type," \
6214                               "should be $rec"
6215                         pass=false
6216                         break
6217                 fi
6218
6219                 #check obj path if record type is LLOG_LOGID_MAGIC
6220                 if [ "$rec" == "1064553b" ]; then
6221                         path=$(do_facet mgs $llog_reader $obj_file |
6222                                 grep "path=" | awk '{ print $NF }' |
6223                                 sed -e "s/^path=//g")
6224                         if [ $obj_file != $mntpt/$path ]; then
6225                                 echo "FAILED test_60a wrong obj path" \
6226                                       "$montpt/$path, should be $obj_file"
6227                                 pass=false
6228                                 break
6229                         fi
6230                 fi
6231         done
6232         rm -f $TMP/$tfile
6233         #restart mgs before "error", otherwise it will block the next test
6234         stop mgs || error "stop mgs failed"
6235         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
6236         $pass || error "test failed, see FAILED test_60a messages for specifics"
6237 }
6238 run_test 60a "llog_test run from kernel module and test llog_reader"
6239
6240 test_60b() { # bug 6411
6241         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6242
6243         dmesg > $DIR/$tfile
6244         LLOG_COUNT=$(do_facet mgs dmesg |
6245                      awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
6246                           /llog_[a-z]*.c:[0-9]/ {
6247                                 if (marker)
6248                                         from_marker++
6249                                 from_begin++
6250                           }
6251                           END {
6252                                 if (marker)
6253                                         print from_marker
6254                                 else
6255                                         print from_begin
6256                           }")
6257
6258         [[ $LLOG_COUNT -gt 120 ]] &&
6259                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
6260 }
6261 run_test 60b "limit repeated messages from CERROR/CWARN"
6262
6263 test_60c() {
6264         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6265
6266         echo "create 5000 files"
6267         createmany -o $DIR/f60c- 5000
6268 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
6269         lctl set_param fail_loc=0x80000137
6270         unlinkmany $DIR/f60c- 5000
6271         lctl set_param fail_loc=0
6272 }
6273 run_test 60c "unlink file when mds full"
6274
6275 test_60d() {
6276         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6277
6278         SAVEPRINTK=$(lctl get_param -n printk)
6279         # verify "lctl mark" is even working"
6280         MESSAGE="test message ID $RANDOM $$"
6281         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
6282         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
6283
6284         lctl set_param printk=0 || error "set lnet.printk failed"
6285         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
6286         MESSAGE="new test message ID $RANDOM $$"
6287         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
6288         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
6289         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
6290
6291         lctl set_param -n printk="$SAVEPRINTK"
6292 }
6293 run_test 60d "test printk console message masking"
6294
6295 test_60e() {
6296         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6297         remote_mds_nodsh && skip "remote MDS with nodsh"
6298
6299         touch $DIR/$tfile
6300 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
6301         do_facet mds1 lctl set_param fail_loc=0x15b
6302         rm $DIR/$tfile
6303 }
6304 run_test 60e "no space while new llog is being created"
6305
6306 test_60g() {
6307         local pid
6308
6309         test_mkdir -c $MDSCOUNT $DIR/$tdir
6310         $LFS setdirstripe -D -i -1 -c $MDSCOUNT $DIR/$tdir
6311
6312         (
6313                 local index=0
6314                 while true; do
6315                         mkdir $DIR/$tdir/subdir$index 2>/dev/null
6316                         rmdir $DIR/$tdir/subdir$index 2>/dev/null
6317                         index=$((index + 1))
6318                 done
6319         ) &
6320
6321         pid=$!
6322
6323         for i in $(seq 100); do 
6324                 # define OBD_FAIL_OSD_TXN_START    0x19a
6325                 do_facet mds1 lctl set_param fail_loc=0x8000019a
6326                 usleep 100
6327         done
6328
6329         kill -9 $pid
6330
6331         mkdir $DIR/$tdir/new || error "mkdir failed"
6332         rmdir $DIR/$tdir/new || error "rmdir failed"
6333 }
6334 run_test 60g "transaction abort won't cause MDT hung"
6335
6336 test_61() {
6337         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6338
6339         f="$DIR/f61"
6340         dd if=/dev/zero of=$f bs=$PAGE_SIZE count=1 || error "dd $f failed"
6341         cancel_lru_locks osc
6342         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
6343         sync
6344 }
6345 run_test 61 "mmap() writes don't make sync hang ================"
6346
6347 # bug 2330 - insufficient obd_match error checking causes LBUG
6348 test_62() {
6349         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6350
6351         f="$DIR/f62"
6352         echo foo > $f
6353         cancel_lru_locks osc
6354         lctl set_param fail_loc=0x405
6355         cat $f && error "cat succeeded, expect -EIO"
6356         lctl set_param fail_loc=0
6357 }
6358 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
6359 # match every page all of the time.
6360 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
6361
6362 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
6363 # Though this test is irrelevant anymore, it helped to reveal some
6364 # other grant bugs (LU-4482), let's keep it.
6365 test_63a() {   # was test_63
6366         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6367
6368         MAX_DIRTY_MB=$(lctl get_param -n osc.*.max_dirty_mb | head -n 1)
6369
6370         for i in `seq 10` ; do
6371                 dd if=/dev/zero of=$DIR/f63 bs=8k &
6372                 sleep 5
6373                 kill $!
6374                 sleep 1
6375         done
6376
6377         rm -f $DIR/f63 || true
6378 }
6379 run_test 63a "Verify oig_wait interruption does not crash ======="
6380
6381 # bug 2248 - async write errors didn't return to application on sync
6382 # bug 3677 - async write errors left page locked
6383 test_63b() {
6384         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6385
6386         debugsave
6387         lctl set_param debug=-1
6388
6389         # ensure we have a grant to do async writes
6390         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
6391         rm $DIR/$tfile
6392
6393         sync    # sync lest earlier test intercept the fail_loc
6394
6395         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
6396         lctl set_param fail_loc=0x80000406
6397         $MULTIOP $DIR/$tfile Owy && \
6398                 error "sync didn't return ENOMEM"
6399         sync; sleep 2; sync     # do a real sync this time to flush page
6400         lctl get_param -n llite.*.dump_page_cache | grep locked && \
6401                 error "locked page left in cache after async error" || true
6402         debugrestore
6403 }
6404 run_test 63b "async write errors should be returned to fsync ==="
6405
6406 test_64a () {
6407         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6408
6409         df $DIR
6410         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
6411 }
6412 run_test 64a "verify filter grant calculations (in kernel) ====="
6413
6414 test_64b () {
6415         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6416
6417         sh oos.sh $MOUNT || error "oos.sh failed: $?"
6418 }
6419 run_test 64b "check out-of-space detection on client"
6420
6421 test_64c() {
6422         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
6423 }
6424 run_test 64c "verify grant shrink"
6425
6426 # this does exactly what osc_request.c:osc_announce_cached() does in
6427 # order to calculate max amount of grants to ask from server
6428 want_grant() {
6429         local tgt=$1
6430
6431         local nrpages=$($LCTL get_param -n osc.${tgt}.max_pages_per_rpc)
6432         local rpc_in_flight=$($LCTL get_param -n osc.${tgt}.max_rpcs_in_flight)
6433
6434         ((rpc_in_flight ++));
6435         nrpages=$((nrpages * rpc_in_flight))
6436
6437         local dirty_max_pages=$($LCTL get_param -n osc.${tgt}.max_dirty_mb)
6438
6439         dirty_max_pages=$((dirty_max_pages * 1024 * 1024 / PAGE_SIZE))
6440
6441         [[ $dirty_max_pages -gt $nrpages ]] && nrpages=$dirty_max_pages
6442         local undirty=$((nrpages * PAGE_SIZE))
6443
6444         local max_extent_pages
6445         max_extent_pages=$($LCTL get_param osc.${tgt}.import |
6446             grep grant_max_extent_size | awk '{print $2}')
6447         max_extent_pages=$((max_extent_pages / PAGE_SIZE))
6448         local nrextents=$(((nrpages + max_extent_pages - 1) / max_extent_pages))
6449         local grant_extent_tax
6450         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6451             grep grant_extent_tax | awk '{print $2}')
6452
6453         undirty=$((undirty + nrextents * grant_extent_tax))
6454
6455         echo $undirty
6456 }
6457
6458 # this is size of unit for grant allocation. It should be equal to
6459 # what tgt_grant.c:tgt_grant_chunk() calculates
6460 grant_chunk() {
6461         local tgt=$1
6462         local max_brw_size
6463         local grant_extent_tax
6464
6465         max_brw_size=$($LCTL get_param osc.${tgt}.import |
6466             grep max_brw_size | awk '{print $2}')
6467
6468         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6469             grep grant_extent_tax | awk '{print $2}')
6470
6471         echo $(((max_brw_size + grant_extent_tax) * 2))
6472 }
6473
6474 test_64d() {
6475         [ $OST1_VERSION -lt $(version_code 2.10.56) ] &&
6476                 skip "OST < 2.10.55 doesn't limit grants enough"
6477
6478         local tgt=$($LCTL dl | grep "0000-osc-[^mM]" | awk '{print $4}')
6479         local file=$DIR/$tfile
6480
6481         [[ $($LCTL get_param osc.${tgt}.import |
6482              grep "connect_flags:.*grant_param") ]] ||
6483                 skip "no grant_param connect flag"
6484
6485         local olddebug=$($LCTL get_param -n debug 2> /dev/null)
6486
6487         $LCTL set_param debug="$OLDDEBUG" 2> /dev/null || true
6488
6489         local max_cur_granted=$(($(want_grant $tgt) + $(grant_chunk $tgt)))
6490         stack_trap "rm -f $file" EXIT
6491
6492         $LFS setstripe $file -i 0 -c 1
6493         dd if=/dev/zero of=$file bs=1M count=1000 &
6494         ddpid=$!
6495
6496         while true
6497         do
6498                 local cur_grant=$($LCTL get_param -n osc.${tgt}.cur_grant_bytes)
6499                 if [[ $cur_grant -gt $max_cur_granted ]]
6500                 then
6501                         kill $ddpid
6502                         error "cur_grant $cur_grant > $max_cur_granted"
6503                 fi
6504                 kill -0 $ddpid
6505                 [[ $? -ne 0 ]] && break;
6506                 sleep 2
6507         done
6508
6509         rm -f $DIR/$tfile
6510         wait_delete_completed
6511         $LCTL set_param debug="$olddebug" 2> /dev/null || true
6512 }
6513 run_test 64d "check grant limit exceed"
6514
6515 # bug 1414 - set/get directories' stripe info
6516 test_65a() {
6517         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6518
6519         test_mkdir $DIR/$tdir
6520         touch $DIR/$tdir/f1
6521         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
6522 }
6523 run_test 65a "directory with no stripe info"
6524
6525 test_65b() {
6526         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6527
6528         test_mkdir $DIR/$tdir
6529         local STRIPESIZE=$($LFS getstripe -S $DIR/$tdir)
6530
6531         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6532                                                 error "setstripe"
6533         touch $DIR/$tdir/f2
6534         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
6535 }
6536 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
6537
6538 test_65c() {
6539         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6540         [ $OSTCOUNT -lt 2 ] && skip_env "need at least 2 OSTs"
6541
6542         test_mkdir $DIR/$tdir
6543         local stripesize=$($LFS getstripe -S $DIR/$tdir)
6544
6545         $LFS setstripe -S $((stripesize * 4)) -i 1 \
6546                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
6547         touch $DIR/$tdir/f3
6548         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
6549 }
6550 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
6551
6552 test_65d() {
6553         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6554
6555         test_mkdir $DIR/$tdir
6556         local STRIPECOUNT=$($LFS getstripe -c $DIR/$tdir)
6557         local STRIPESIZE=$($LFS getstripe -S $DIR/$tdir)
6558
6559         if [[ $STRIPECOUNT -le 0 ]]; then
6560                 sc=1
6561         elif [[ $STRIPECOUNT -gt 2000 ]]; then
6562 #LOV_MAX_STRIPE_COUNT is 2000
6563                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
6564         else
6565                 sc=$(($STRIPECOUNT - 1))
6566         fi
6567         $LFS setstripe -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
6568         touch $DIR/$tdir/f4 $DIR/$tdir/f5
6569         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
6570                 error "lverify failed"
6571 }
6572 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
6573
6574 test_65e() {
6575         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6576
6577         test_mkdir $DIR/$tdir
6578
6579         $LFS setstripe $DIR/$tdir || error "setstripe"
6580         $LFS getstripe -v $DIR/$tdir | grep "Default" ||
6581                                         error "no stripe info failed"
6582         touch $DIR/$tdir/f6
6583         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
6584 }
6585 run_test 65e "directory setstripe defaults"
6586
6587 test_65f() {
6588         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6589
6590         test_mkdir $DIR/${tdir}f
6591         $RUNAS $LFS setstripe $DIR/${tdir}f &&
6592                 error "setstripe succeeded" || true
6593 }
6594 run_test 65f "dir setstripe permission (should return error) ==="
6595
6596 test_65g() {
6597         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6598
6599         test_mkdir $DIR/$tdir
6600         local STRIPESIZE=$($LFS getstripe -S $DIR/$tdir)
6601
6602         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6603                 error "setstripe -S failed"
6604         $LFS setstripe -d $DIR/$tdir || error "setstripe -d failed"
6605         $LFS getstripe -v $DIR/$tdir | grep "Default" ||
6606                 error "delete default stripe failed"
6607 }
6608 run_test 65g "directory setstripe -d"
6609
6610 test_65h() {
6611         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6612
6613         test_mkdir $DIR/$tdir
6614         local STRIPESIZE=$($LFS getstripe -S $DIR/$tdir)
6615
6616         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6617                 error "setstripe -S failed"
6618         test_mkdir $DIR/$tdir/dd1
6619         [ $($LFS getstripe -c $DIR/$tdir) = $($LFS getstripe -c $DIR/$tdir/dd1) ] ||
6620                 error "stripe info inherit failed"
6621 }
6622 run_test 65h "directory stripe info inherit ===================="
6623
6624 test_65i() {
6625         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6626
6627         save_layout_restore_at_exit $MOUNT
6628
6629         # bug6367: set non-default striping on root directory
6630         $LFS setstripe -S 65536 -c -1 $MOUNT || error "error setting stripe"
6631
6632         # bug12836: getstripe on -1 default directory striping
6633         $LFS getstripe $MOUNT || error "getstripe $MOUNT failed"
6634
6635         # bug12836: getstripe -v on -1 default directory striping
6636         $LFS getstripe -v $MOUNT || error "getstripe -v $MOUNT failed"
6637
6638         # bug12836: new find on -1 default directory striping
6639         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
6640 }
6641 run_test 65i "various tests to set root directory striping"
6642
6643 test_65j() { # bug6367
6644         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6645
6646         sync; sleep 1
6647
6648         # if we aren't already remounting for each test, do so for this test
6649         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
6650                 cleanup || error "failed to unmount"
6651                 setup
6652         fi
6653
6654         save_layout_restore_at_exit $MOUNT
6655
6656         $LFS setstripe -d $MOUNT || error "setstripe failed"
6657 }
6658 run_test 65j "set default striping on root directory (bug 6367)="
6659
6660 cleanup_65k() {
6661         rm -rf $DIR/$tdir
6662         wait_delete_completed
6663         do_facet $SINGLEMDS "lctl set_param -n \
6664                 osp.$ost*MDT0000.max_create_count=$max_count"
6665         do_facet $SINGLEMDS "lctl set_param -n \
6666                 osp.$ost*MDT0000.create_count=$count"
6667         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
6668         echo $INACTIVE_OSC "is Activate"
6669
6670         wait_osc_import_state mds ost$ostnum FULL
6671 }
6672
6673 test_65k() { # bug11679
6674         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6675         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
6676         remote_mds_nodsh && skip "remote MDS with nodsh"
6677
6678         local disable_precreate=true
6679         [ $MDS1_VERSION -le $(version_code 2.8.54) ] &&
6680                 disable_precreate=false
6681
6682         echo "Check OST status: "
6683         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
6684                 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
6685
6686         for OSC in $MDS_OSCS; do
6687                 echo $OSC "is active"
6688                 do_facet $SINGLEMDS lctl --device %$OSC activate
6689         done
6690
6691         for INACTIVE_OSC in $MDS_OSCS; do
6692                 local ost=$(osc_to_ost $INACTIVE_OSC)
6693                 local ostnum=$(do_facet $SINGLEMDS lctl get_param -n \
6694                                lov.*md*.target_obd |
6695                                awk -F: /$ost/'{ print $1 }' | head -n 1)
6696
6697                 mkdir -p $DIR/$tdir
6698                 $LFS setstripe -i $ostnum -c 1 $DIR/$tdir
6699                 createmany -o $DIR/$tdir/$tfile.$ostnum. 1000
6700
6701                 echo "Deactivate: " $INACTIVE_OSC
6702                 do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
6703
6704                 local count=$(do_facet $SINGLEMDS "lctl get_param -n \
6705                               osp.$ost*MDT0000.create_count")
6706                 local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
6707                                   osp.$ost*MDT0000.max_create_count")
6708                 $disable_precreate &&
6709                         do_facet $SINGLEMDS "lctl set_param -n \
6710                                 osp.$ost*MDT0000.max_create_count=0"
6711
6712                 for idx in $(seq 0 $((OSTCOUNT - 1))); do
6713                         [ -f $DIR/$tdir/$idx ] && continue
6714                         echo "$LFS setstripe -i $idx -c 1 $DIR/$tdir/$idx"
6715                         $LFS setstripe -i $idx -c 1 $DIR/$tdir/$idx ||
6716                                 { cleanup_65k;
6717                                   error "setstripe $idx should succeed"; }
6718                         rm -f $DIR/$tdir/$idx || error "rm $idx failed"
6719                 done
6720                 unlinkmany $DIR/$tdir/$tfile.$ostnum. 1000
6721                 rmdir $DIR/$tdir
6722
6723                 do_facet $SINGLEMDS "lctl set_param -n \
6724                         osp.$ost*MDT0000.max_create_count=$max_count"
6725                 do_facet $SINGLEMDS "lctl set_param -n \
6726                         osp.$ost*MDT0000.create_count=$count"
6727                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
6728                 echo $INACTIVE_OSC "is Activate"
6729
6730                 wait_osc_import_state mds ost$ostnum FULL
6731         done
6732 }
6733 run_test 65k "validate manual striping works properly with deactivated OSCs"
6734
6735 test_65l() { # bug 12836
6736         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6737
6738         test_mkdir -p $DIR/$tdir/test_dir
6739         $LFS setstripe -c -1 $DIR/$tdir/test_dir
6740         $LFS find -mtime -1 $DIR/$tdir >/dev/null
6741 }
6742 run_test 65l "lfs find on -1 stripe dir ========================"
6743
6744 test_65m() {
6745         local layout=$(save_layout $MOUNT)
6746         $RUNAS $LFS setstripe -c 2 $MOUNT && {
6747                 restore_layout $MOUNT $layout
6748                 error "setstripe should fail by non-root users"
6749         }
6750         true
6751 }
6752 run_test 65m "normal user can't set filesystem default stripe"
6753
6754 test_65n() {
6755         [ -n "$FILESET" ] && skip "Not functional for FILESET set"
6756         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.12.50) ]] ||
6757                 skip "Need MDS version at least 2.12.50"
6758         [[ $PARALLEL != "yes" ]] || skip "skip parallel run"
6759
6760         [[ $OSTCOUNT -ge 2 ]] || skip_env "needs >= 2 OSTs"
6761         which getfattr > /dev/null 2>&1 || skip_env "no getfattr command"
6762         which setfattr > /dev/null 2>&1 || skip_env "no setfattr command"
6763
6764         local root_layout=$(save_layout $MOUNT)
6765         stack_trap "restore_layout $MOUNT $root_layout" EXIT
6766
6767         # new subdirectory under root directory should not inherit
6768         # the default layout from root
6769         local dir1=$MOUNT/$tdir-1
6770         mkdir $dir1 || error "mkdir $dir1 failed"
6771         ! getfattr -n trusted.lov $dir1 &> /dev/null ||
6772                 error "$dir1 shouldn't have LOV EA"
6773
6774         # delete the default layout on root directory
6775         $LFS setstripe -d $MOUNT || error "delete root default layout failed"
6776
6777         local dir2=$MOUNT/$tdir-2
6778         mkdir $dir2 || error "mkdir $dir2 failed"
6779         ! getfattr -n trusted.lov $dir2 &> /dev/null ||
6780                 error "$dir2 shouldn't have LOV EA"
6781
6782         # set a new striping pattern on root directory
6783         local def_stripe_size=$($LFS getstripe -S $MOUNT)
6784         local new_def_stripe_size=$((def_stripe_size * 2))
6785         $LFS setstripe -S $new_def_stripe_size $MOUNT ||
6786                 error "set stripe size on $MOUNT failed"
6787
6788         # new file created in $dir2 should inherit the new stripe size from
6789         # the filesystem default
6790         local file2=$dir2/$tfile-2
6791         touch $file2 || error "touch $file2 failed"
6792
6793         local file2_stripe_size=$($LFS getstripe -S $file2)
6794         [[ $file2_stripe_size -eq $new_def_stripe_size ]] ||
6795                 error "$file2 didn't inherit stripe size $new_def_stripe_size"
6796
6797         local dir3=$MOUNT/$tdir-3
6798         mkdir $dir3 || error "mkdir $dir3 failed"
6799         ! getfattr -n trusted.lov $dir3 &> /dev/null ||
6800                 error "$dir3 shouldn't have LOV EA"
6801
6802         # set OST pool on root directory
6803         local pool=$TESTNAME
6804         pool_add $pool || error "add $pool failed"
6805         pool_add_targets $pool 0 $((OSTCOUNT - 1)) 1 ||
6806                 error "add targets to $pool failed"
6807
6808         $LFS setstripe -p $pool $MOUNT ||
6809                 error "set OST pool on $MOUNT failed"
6810
6811         # new file created in $dir3 should inherit the pool from
6812         # the filesystem default
6813         local file3=$dir3/$tfile-3
6814         touch $file3 || error "touch $file3 failed"
6815
6816         local file3_pool=$($LFS getstripe -p $file3)
6817         [[ "$file3_pool" = "$pool" ]] ||
6818                 error "$file3 didn't inherit OST pool $pool"
6819
6820         local dir4=$MOUNT/$tdir-4
6821         mkdir $dir4 || error "mkdir $dir4 failed"
6822         ! getfattr -n trusted.lov $dir4 &> /dev/null ||
6823                 error "$dir4 shouldn't have LOV EA"
6824
6825         # new file created in $dir4 should inherit the pool from
6826         # the filesystem default
6827         local file4=$dir4/$tfile-4
6828         touch $file4 || error "touch $file4 failed"
6829
6830         local file4_pool=$($LFS getstripe -p $file4)
6831         [[ "$file4_pool" = "$pool" ]] ||
6832                 error "$file4 didn't inherit OST pool $pool"
6833
6834         # new subdirectory under non-root directory should inherit
6835         # the default layout from its parent directory
6836         $LFS setstripe -S $new_def_stripe_size -p $pool $dir4 ||
6837                 error "set directory layout on $dir4 failed"
6838
6839         local dir5=$dir4/$tdir-5
6840         mkdir $dir5 || error "mkdir $dir5 failed"
6841
6842         local dir4_layout=$(get_layout_param $dir4)
6843         local dir5_layout=$(get_layout_param $dir5)
6844         [[ "$dir4_layout" = "$dir5_layout" ]] ||
6845                 error "$dir5 should inherit the default layout from $dir4"
6846 }
6847 run_test 65n "don't inherit default layout from root for new subdirectories"
6848
6849 # bug 2543 - update blocks count on client
6850 test_66() {
6851         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6852
6853         COUNT=${COUNT:-8}
6854         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
6855         sync; sync_all_data; sync; sync_all_data
6856         cancel_lru_locks osc
6857         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
6858         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
6859 }
6860 run_test 66 "update inode blocks count on client ==============="
6861
6862 meminfo() {
6863         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
6864 }
6865
6866 swap_used() {
6867         swapon -s | awk '($1 == "'$1'") { print $4 }'
6868 }
6869
6870 # bug5265, obdfilter oa2dentry return -ENOENT
6871 # #define OBD_FAIL_SRV_ENOENT 0x217
6872 test_69() {
6873         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6874         remote_ost_nodsh && skip "remote OST with nodsh"
6875
6876         f="$DIR/$tfile"
6877         $LFS setstripe -c 1 -i 0 $f
6878
6879         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
6880
6881         do_facet ost1 lctl set_param fail_loc=0x217
6882         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
6883         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
6884
6885         do_facet ost1 lctl set_param fail_loc=0
6886         $DIRECTIO write $f 0 2 || error "write error"
6887
6888         cancel_lru_locks osc
6889         $DIRECTIO read $f 0 1 || error "read error"
6890
6891         do_facet ost1 lctl set_param fail_loc=0x217
6892         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
6893
6894         do_facet ost1 lctl set_param fail_loc=0
6895         rm -f $f
6896 }
6897 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
6898
6899 test_71() {
6900         test_mkdir $DIR/$tdir
6901         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
6902         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
6903 }
6904 run_test 71 "Running dbench on lustre (don't segment fault) ===="
6905
6906 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
6907         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6908         [ "$RUNAS_ID" = "$UID" ] &&
6909                 skip_env "RUNAS_ID = UID = $UID -- skipping"
6910         # Check that testing environment is properly set up. Skip if not
6911         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS ||
6912                 skip_env "User $RUNAS_ID does not exist - skipping"
6913
6914         touch $DIR/$tfile
6915         chmod 777 $DIR/$tfile
6916         chmod ug+s $DIR/$tfile
6917         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
6918                 error "$RUNAS dd $DIR/$tfile failed"
6919         # See if we are still setuid/sgid
6920         test -u $DIR/$tfile -o -g $DIR/$tfile &&
6921                 error "S/gid is not dropped on write"
6922         # Now test that MDS is updated too
6923         cancel_lru_locks mdc
6924         test -u $DIR/$tfile -o -g $DIR/$tfile &&
6925                 error "S/gid is not dropped on MDS"
6926         rm -f $DIR/$tfile
6927 }
6928 run_test 72a "Test that remove suid works properly (bug5695) ===="
6929
6930 test_72b() { # bug 24226 -- keep mode setting when size is not changing
6931         local perm
6932
6933         [ "$RUNAS_ID" = "$UID" ] &&
6934                 skip_env "RUNAS_ID = UID = $UID -- skipping"
6935         [ "$RUNAS_ID" -eq 0 ] &&
6936                 skip_env "RUNAS_ID = 0 -- skipping"
6937         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6938         # Check that testing environment is properly set up. Skip if not
6939         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS ||
6940                 skip_env "User $RUNAS_ID does not exist - skipping"
6941
6942         touch $DIR/${tfile}-f{g,u}
6943         test_mkdir $DIR/${tfile}-dg
6944         test_mkdir $DIR/${tfile}-du
6945         chmod 770 $DIR/${tfile}-{f,d}{g,u}
6946         chmod g+s $DIR/${tfile}-{f,d}g
6947         chmod u+s $DIR/${tfile}-{f,d}u
6948         for perm in 777 2777 4777; do
6949                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
6950                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
6951                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
6952                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
6953         done
6954         true
6955 }
6956 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
6957
6958 # bug 3462 - multiple simultaneous MDC requests
6959 test_73() {
6960         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6961
6962         test_mkdir $DIR/d73-1
6963         test_mkdir $DIR/d73-2
6964         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
6965         pid1=$!
6966
6967         lctl set_param fail_loc=0x80000129
6968         $MULTIOP $DIR/d73-1/f73-2 Oc &
6969         sleep 1
6970         lctl set_param fail_loc=0
6971
6972         $MULTIOP $DIR/d73-2/f73-3 Oc &
6973         pid3=$!
6974
6975         kill -USR1 $pid1
6976         wait $pid1 || return 1
6977
6978         sleep 25
6979
6980         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
6981         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
6982         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
6983
6984         rm -rf $DIR/d73-*
6985 }
6986 run_test 73 "multiple MDC requests (should not deadlock)"
6987
6988 test_74a() { # bug 6149, 6184
6989         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6990
6991         touch $DIR/f74a
6992         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
6993         #
6994         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
6995         # will spin in a tight reconnection loop
6996         $LCTL set_param fail_loc=0x8000030e
6997         # get any lock that won't be difficult - lookup works.
6998         ls $DIR/f74a
6999         $LCTL set_param fail_loc=0
7000         rm -f $DIR/f74a
7001         true
7002 }
7003 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
7004
7005 test_74b() { # bug 13310
7006         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7007
7008         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
7009         #
7010         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
7011         # will spin in a tight reconnection loop
7012         $LCTL set_param fail_loc=0x8000030e
7013         # get a "difficult" lock
7014         touch $DIR/f74b
7015         $LCTL set_param fail_loc=0
7016         rm -f $DIR/f74b
7017         true
7018 }
7019 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
7020
7021 test_74c() {
7022         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7023
7024         #define OBD_FAIL_LDLM_NEW_LOCK
7025         $LCTL set_param fail_loc=0x319
7026         touch $DIR/$tfile && error "touch successful"
7027         $LCTL set_param fail_loc=0
7028         true
7029 }
7030 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
7031
7032 num_inodes() {
7033         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
7034 }
7035
7036 test_76() { # Now for bug 20433, added originally in bug 1443
7037         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7038
7039         local CPUS=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
7040
7041         cancel_lru_locks osc
7042         BEFORE_INODES=$(num_inodes)
7043         echo "before inodes: $BEFORE_INODES"
7044         local COUNT=1000
7045         [ "$SLOW" = "no" ] && COUNT=100
7046         for i in $(seq $COUNT); do
7047                 touch $DIR/$tfile
7048                 rm -f $DIR/$tfile
7049         done
7050         cancel_lru_locks osc
7051         AFTER_INODES=$(num_inodes)
7052         echo "after inodes: $AFTER_INODES"
7053         local wait=0
7054         while [[ $((AFTER_INODES-1*${CPUS:-1})) -gt $BEFORE_INODES ]]; do
7055                 sleep 2
7056                 AFTER_INODES=$(num_inodes)
7057                 wait=$((wait+2))
7058                 echo "wait $wait seconds inodes: $AFTER_INODES"
7059                 if [ $wait -gt 30 ]; then
7060                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
7061                 fi
7062         done
7063 }
7064 run_test 76 "confirm clients recycle inodes properly ===="
7065
7066
7067 export ORIG_CSUM=""
7068 set_checksums()
7069 {
7070         # Note: in sptlrpc modes which enable its own bulk checksum, the
7071         # original crc32_le bulk checksum will be automatically disabled,
7072         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
7073         # will be checked by sptlrpc code against sptlrpc bulk checksum.
7074         # In this case set_checksums() will not be no-op, because sptlrpc
7075         # bulk checksum will be enabled all through the test.
7076
7077         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
7078         lctl set_param -n osc.*.checksums $1
7079         return 0
7080 }
7081
7082 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
7083                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
7084 CKSUM_TYPES=${CKSUM_TYPES:-$(lctl get_param -n osc.*osc-[^mM]*.checksum_type |
7085                              tr -d [] | head -n1)}
7086 set_checksum_type()
7087 {
7088         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
7089         log "set checksum type to $1"
7090         return 0
7091 }
7092 F77_TMP=$TMP/f77-temp
7093 F77SZ=8
7094 setup_f77() {
7095         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
7096                 error "error writing to $F77_TMP"
7097 }
7098
7099 test_77a() { # bug 10889
7100         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7101         $GSS && skip_env "could not run with gss"
7102
7103         [ ! -f $F77_TMP ] && setup_f77
7104         set_checksums 1
7105         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
7106         set_checksums 0
7107         rm -f $DIR/$tfile
7108 }
7109 run_test 77a "normal checksum read/write operation"
7110
7111 test_77b() { # bug 10889
7112         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7113         $GSS && skip_env "could not run with gss"
7114
7115         [ ! -f $F77_TMP ] && setup_f77
7116         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7117         $LCTL set_param fail_loc=0x80000409
7118         set_checksums 1
7119
7120         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
7121                 error "dd error: $?"
7122         $LCTL set_param fail_loc=0
7123
7124         for algo in $CKSUM_TYPES; do
7125                 cancel_lru_locks osc
7126                 set_checksum_type $algo
7127                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
7128                 $LCTL set_param fail_loc=0x80000408
7129                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
7130                 $LCTL set_param fail_loc=0
7131         done
7132         set_checksums 0
7133         set_checksum_type $ORIG_CSUM_TYPE
7134         rm -f $DIR/$tfile
7135 }
7136 run_test 77b "checksum error on client write, read"
7137
7138 cleanup_77c() {
7139         trap 0
7140         set_checksums 0
7141         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=0
7142         $check_ost &&
7143                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=0
7144         [ -n "$osc_file_prefix" ] && rm -f ${osc_file_prefix}*
7145         $check_ost && [ -n "$ost_file_prefix" ] &&
7146                 do_facet ost1 rm -f ${ost_file_prefix}\*
7147 }
7148
7149 test_77c() {
7150         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7151         $GSS && skip_env "could not run with gss"
7152         remote_ost_nodsh && skip "remote OST with nodsh"
7153
7154         local bad1
7155         local osc_file_prefix
7156         local osc_file
7157         local check_ost=false
7158         local ost_file_prefix
7159         local ost_file
7160         local orig_cksum
7161         local dump_cksum
7162         local fid
7163
7164         # ensure corruption will occur on first OSS/OST
7165         $LFS setstripe -i 0 $DIR/$tfile
7166
7167         [ ! -f $F77_TMP ] && setup_f77
7168         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
7169                 error "dd write error: $?"
7170         fid=$($LFS path2fid $DIR/$tfile)
7171
7172         if [ $OST1_VERSION -ge $(version_code 2.9.57) ]
7173         then
7174                 check_ost=true
7175                 ost_file_prefix=$(do_facet ost1 $LCTL get_param -n debug_path)
7176                 ost_file_prefix=${ost_file_prefix}-checksum_dump-ost-\\${fid}
7177         else
7178                 echo "OSS do not support bulk pages dump upon error"
7179         fi
7180
7181         osc_file_prefix=$($LCTL get_param -n debug_path)
7182         osc_file_prefix=${osc_file_prefix}-checksum_dump-osc-\\${fid}
7183
7184         trap cleanup_77c EXIT
7185
7186         set_checksums 1
7187         # enable bulk pages dump upon error on Client
7188         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=1
7189         # enable bulk pages dump upon error on OSS
7190         $check_ost &&
7191                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=1
7192
7193         # flush Client cache to allow next read to reach OSS
7194         cancel_lru_locks osc
7195
7196         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE       0x408
7197         $LCTL set_param fail_loc=0x80000408
7198         dd if=$DIR/$tfile of=/dev/null bs=1M || error "dd read error: $?"
7199         $LCTL set_param fail_loc=0
7200
7201         rm -f $DIR/$tfile
7202
7203         # check cksum dump on Client
7204         osc_file=$(ls ${osc_file_prefix}*)
7205         [ -n "$osc_file" ] || error "no checksum dump file on Client"
7206         # OBD_FAIL_OSC_CHECKSUM_RECEIVE corrupts with "bad1" at start of file
7207         bad1=$(dd if=$osc_file bs=1 count=4 2>/dev/null) || error "dd error: $?"
7208         [ $bad1 == "bad1" ] || error "unexpected corrupt pattern"
7209         orig_cksum=$(dd if=$F77_TMP bs=1 skip=4 count=1048572 2>/dev/null |
7210                      cksum)
7211         dump_cksum=$(dd if=$osc_file bs=1 skip=4 2>/dev/null | cksum)
7212         [[ "$orig_cksum" == "$dump_cksum" ]] ||
7213                 error "dump content does not match on Client"
7214
7215         $check_ost || skip "No need to check cksum dump on OSS"
7216
7217         # check cksum dump on OSS
7218         ost_file=$(do_facet ost1 ls ${ost_file_prefix}\*)
7219         [ -n "$ost_file" ] || error "no checksum dump file on OSS"
7220         orig_cksum=$(dd if=$F77_TMP bs=1048576 count=1 2>/dev/null | cksum)
7221         dump_cksum=$(do_facet ost1 dd if=$ost_file 2>/dev/null \| cksum)
7222         [[ "$orig_cksum" == "$dump_cksum" ]] ||
7223                 error "dump content does not match on OSS"
7224
7225         cleanup_77c
7226 }
7227 run_test 77c "checksum error on client read with debug"
7228
7229 test_77d() { # bug 10889
7230         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7231         $GSS && skip_env "could not run with gss"
7232
7233         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7234         $LCTL set_param fail_loc=0x80000409
7235         set_checksums 1
7236         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
7237                 error "direct write: rc=$?"
7238         $LCTL set_param fail_loc=0
7239         set_checksums 0
7240
7241         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
7242         $LCTL set_param fail_loc=0x80000408
7243         set_checksums 1
7244         cancel_lru_locks osc
7245         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
7246                 error "direct read: rc=$?"
7247         $LCTL set_param fail_loc=0
7248         set_checksums 0
7249 }
7250 run_test 77d "checksum error on OST direct write, read"
7251
7252 test_77f() { # bug 10889
7253         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7254         $GSS && skip_env "could not run with gss"
7255
7256         set_checksums 1
7257         for algo in $CKSUM_TYPES; do
7258                 cancel_lru_locks osc
7259                 set_checksum_type $algo
7260                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7261                 $LCTL set_param fail_loc=0x409
7262                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
7263                         error "direct write succeeded"
7264                 $LCTL set_param fail_loc=0
7265         done
7266         set_checksum_type $ORIG_CSUM_TYPE
7267         set_checksums 0
7268 }
7269 run_test 77f "repeat checksum error on write (expect error)"
7270
7271 test_77g() { # bug 10889
7272         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7273         $GSS && skip_env "could not run with gss"
7274         remote_ost_nodsh && skip "remote OST with nodsh"
7275
7276         [ ! -f $F77_TMP ] && setup_f77
7277
7278         local file=$DIR/$tfile
7279         stack_trap "rm -f $file" EXIT
7280
7281         $LFS setstripe -c 1 -i 0 $file
7282         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
7283         do_facet ost1 lctl set_param fail_loc=0x8000021a
7284         set_checksums 1
7285         dd if=$F77_TMP of=$file bs=1M count=$F77SZ ||
7286                 error "write error: rc=$?"
7287         do_facet ost1 lctl set_param fail_loc=0
7288         set_checksums 0
7289
7290         cancel_lru_locks osc
7291         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
7292         do_facet ost1 lctl set_param fail_loc=0x8000021b
7293         set_checksums 1
7294         cmp $F77_TMP $file || error "file compare failed"
7295         do_facet ost1 lctl set_param fail_loc=0
7296         set_checksums 0
7297 }
7298 run_test 77g "checksum error on OST write, read"
7299
7300 test_77k() { # LU-10906
7301         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7302         $GSS && skip_env "could not run with gss"
7303
7304         local cksum_param="osc.$FSNAME*.checksums"
7305         local get_checksum="$LCTL get_param -n $cksum_param | head -n1"
7306         local checksum
7307         local i
7308
7309         [ "$ORIG_CSUM" ] || ORIG_CSUM=$(eval $get_checksum)
7310         stack_trap "wait_update $HOSTNAME '$get_checksum' $ORIG_CSUM" EXIT
7311         stack_trap "do_facet mgs $LCTL set_param -P $cksum_param=$ORIG_CSUM" \
7312                 EXIT
7313
7314         for i in 0 1; do
7315                 do_facet mgs $LCTL set_param -P $cksum_param=$i ||
7316                         error "failed to set checksum=$i on MGS"
7317                 wait_update $HOSTNAME "$get_checksum" $i
7318                 #remount
7319                 echo "remount client, checksum should be $i"
7320                 remount_client $MOUNT || "failed to remount client"
7321                 checksum=$(eval $get_checksum)
7322                 [ $checksum -eq $i ] || error "checksum($checksum) != $i"
7323         done
7324         # remove persistent param to avoid races with checksum mountopt below
7325         do_facet mgs $LCTL set_param -P -d $cksum_param ||
7326                 error "failed to delete checksum on MGS"
7327
7328         for opt in "checksum" "nochecksum"; do
7329                 #remount with mount option
7330                 echo "remount client with option $opt, checksum should be $i"
7331                 umount_client $MOUNT || "failed to umount client"
7332                 mount_client $MOUNT "$MOUNT_OPTS,$opt" ||
7333                         "failed to mount client with option '$opt'"
7334                 checksum=$(eval $get_checksum)
7335                 [ $checksum -eq $i ] || error "checksum($checksum) != $i"
7336                 i=$((i - 1))
7337         done
7338
7339         remount_client $MOUNT || "failed to remount client"
7340 }
7341 run_test 77k "enable/disable checksum correctly"
7342
7343 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
7344 rm -f $F77_TMP
7345 unset F77_TMP
7346
7347 cleanup_test_78() {
7348         trap 0
7349         rm -f $DIR/$tfile
7350 }
7351
7352 test_78() { # bug 10901
7353         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7354         remote_ost || skip_env "local OST"
7355
7356         NSEQ=5
7357         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
7358         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
7359         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
7360         echo "MemTotal: $MEMTOTAL"
7361
7362         # reserve 256MB of memory for the kernel and other running processes,
7363         # and then take 1/2 of the remaining memory for the read/write buffers.
7364         if [ $MEMTOTAL -gt 512 ] ;then
7365                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
7366         else
7367                 # for those poor memory-starved high-end clusters...
7368                 MEMTOTAL=$((MEMTOTAL / 2))
7369         fi
7370         echo "Mem to use for directio: $MEMTOTAL"
7371
7372         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
7373         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
7374         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
7375         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
7376                 head -n1)
7377         echo "Smallest OST: $SMALLESTOST"
7378         [[ $SMALLESTOST -lt 10240 ]] &&
7379                 skip "too small OSTSIZE, useless to run large O_DIRECT test"
7380
7381         trap cleanup_test_78 EXIT
7382
7383         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
7384                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
7385
7386         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
7387         echo "File size: $F78SIZE"
7388         $LFS setstripe -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
7389         for i in $(seq 1 $NSEQ); do
7390                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
7391                 echo directIO rdwr round $i of $NSEQ
7392                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
7393         done
7394
7395         cleanup_test_78
7396 }
7397 run_test 78 "handle large O_DIRECT writes correctly ============"
7398
7399 test_79() { # bug 12743
7400         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7401
7402         wait_delete_completed
7403
7404         BKTOTAL=$(calc_osc_kbytes kbytestotal)
7405         BKFREE=$(calc_osc_kbytes kbytesfree)
7406         BKAVAIL=$(calc_osc_kbytes kbytesavail)
7407
7408         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
7409         DFTOTAL=`echo $STRING | cut -d, -f1`
7410         DFUSED=`echo $STRING  | cut -d, -f2`
7411         DFAVAIL=`echo $STRING | cut -d, -f3`
7412         DFFREE=$(($DFTOTAL - $DFUSED))
7413
7414         ALLOWANCE=$((64 * $OSTCOUNT))
7415
7416         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
7417            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
7418                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
7419         fi
7420         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
7421            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
7422                 error "df free($DFFREE) mismatch OST free($BKFREE)"
7423         fi
7424         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
7425            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
7426                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
7427         fi
7428 }
7429 run_test 79 "df report consistency check ======================="
7430
7431 test_80() { # bug 10718
7432         remote_ost_nodsh && skip "remote OST with nodsh"
7433         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7434
7435         # relax strong synchronous semantics for slow backends like ZFS
7436         local soc="obdfilter.*.sync_on_lock_cancel"
7437         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
7438         local hosts=
7439         if [ "$soc_old" != "never" ] &&
7440                 [ "$ost1_FSTYPE" != "ldiskfs" ]; then
7441                         hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
7442                                 facet_active_host $host; done | sort -u)
7443                         do_nodes $hosts lctl set_param $soc=never
7444         fi
7445
7446         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
7447         sync; sleep 1; sync
7448         local BEFORE=`date +%s`
7449         cancel_lru_locks osc
7450         local AFTER=`date +%s`
7451         local DIFF=$((AFTER-BEFORE))
7452         if [ $DIFF -gt 1 ] ; then
7453                 error "elapsed for 1M@1T = $DIFF"
7454         fi
7455
7456         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
7457
7458         rm -f $DIR/$tfile
7459 }
7460 run_test 80 "Page eviction is equally fast at high offsets too  ===="
7461
7462 test_81a() { # LU-456
7463         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7464         remote_ost_nodsh && skip "remote OST with nodsh"
7465
7466         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
7467         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
7468         do_facet ost1 lctl set_param fail_loc=0x80000228
7469
7470         # write should trigger a retry and success
7471         $LFS setstripe -i 0 -c 1 $DIR/$tfile
7472         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7473         RC=$?
7474         if [ $RC -ne 0 ] ; then
7475                 error "write should success, but failed for $RC"
7476         fi
7477 }
7478 run_test 81a "OST should retry write when get -ENOSPC ==============="
7479
7480 test_81b() { # LU-456
7481         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7482         remote_ost_nodsh && skip "remote OST with nodsh"
7483
7484         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
7485         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
7486         do_facet ost1 lctl set_param fail_loc=0x228
7487
7488         # write should retry several times and return -ENOSPC finally
7489         $LFS setstripe -i 0 -c 1 $DIR/$tfile
7490         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7491         RC=$?
7492         ENOSPC=28
7493         if [ $RC -ne $ENOSPC ] ; then
7494                 error "dd should fail for -ENOSPC, but succeed."
7495         fi
7496 }
7497 run_test 81b "OST should return -ENOSPC when retry still fails ======="
7498
7499 test_82() { # LU-1031
7500         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
7501         local gid1=14091995
7502         local gid2=16022000
7503
7504         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
7505         local MULTIPID1=$!
7506         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
7507         local MULTIPID2=$!
7508         kill -USR1 $MULTIPID2
7509         sleep 2
7510         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
7511                 error "First grouplock does not block second one"
7512         else
7513                 echo "Second grouplock blocks first one"
7514         fi
7515         kill -USR1 $MULTIPID1
7516         wait $MULTIPID1
7517         wait $MULTIPID2
7518 }
7519 run_test 82 "Basic grouplock test"
7520
7521 test_99() {
7522         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs"
7523
7524         test_mkdir $DIR/$tdir.cvsroot
7525         chown $RUNAS_ID $DIR/$tdir.cvsroot
7526
7527         cd $TMP
7528         $RUNAS cvs -d $DIR/$tdir.cvsroot init || error "cvs init failed"
7529
7530         cd /etc/init.d
7531         # some versions of cvs import exit(1) when asked to import links or
7532         # files they can't read.  ignore those files.
7533         local toignore=$(find . -type l -printf '-I %f\n' -o \
7534                          ! -perm /4 -printf '-I %f\n')
7535         $RUNAS cvs -d $DIR/$tdir.cvsroot import -m "nomesg" $toignore \
7536                 $tdir.reposname vtag rtag
7537
7538         cd $DIR
7539         test_mkdir $DIR/$tdir.reposname
7540         chown $RUNAS_ID $DIR/$tdir.reposname
7541         $RUNAS cvs -d $DIR/$tdir.cvsroot co $tdir.reposname
7542
7543         cd $DIR/$tdir.reposname
7544         $RUNAS touch foo99
7545         $RUNAS cvs add -m 'addmsg' foo99
7546         $RUNAS cvs update
7547         $RUNAS cvs commit -m 'nomsg' foo99
7548         rm -fr $DIR/$tdir.cvsroot
7549 }
7550 run_test 99 "cvs strange file/directory operations"
7551
7552 test_100() {
7553         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7554         [[ "$NETTYPE" =~ tcp ]] ||
7555                 skip_env "TCP secure port test, not useful for NETTYPE=$NETTYPE"
7556         remote_ost_nodsh && skip "remote OST with nodsh"
7557         remote_mds_nodsh && skip "remote MDS with nodsh"
7558         remote_servers ||
7559                 skip "useless for local single node setup"
7560
7561         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
7562                 [ "$PROT" != "tcp" ] && continue
7563                 RPORT=$(echo $REMOTE | cut -d: -f2)
7564                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
7565
7566                 rc=0
7567                 LPORT=`echo $LOCAL | cut -d: -f2`
7568                 if [ $LPORT -ge 1024 ]; then
7569                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
7570                         netstat -tna
7571                         error_exit "local: $LPORT > 1024, remote: $RPORT"
7572                 fi
7573         done
7574         [ "$rc" = 0 ] || error_exit "privileged port not found" )
7575 }
7576 run_test 100 "check local port using privileged port ==========="
7577
7578 function get_named_value()
7579 {
7580     local tag
7581
7582     tag=$1
7583     while read ;do
7584         line=$REPLY
7585         case $line in
7586         $tag*)
7587             echo $line | sed "s/^$tag[ ]*//"
7588             break
7589             ;;
7590         esac
7591     done
7592 }
7593
7594 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
7595                    awk '/^max_cached_mb/ { print $2 }')
7596
7597 cleanup_101a() {
7598         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
7599         trap 0
7600 }
7601
7602 test_101a() {
7603         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7604         [ $MDSCOUNT -ge 2 ] && skip_env "needs < 2 MDTs" #LU-4322
7605
7606         local s
7607         local discard
7608         local nreads=10000
7609         local cache_limit=32
7610
7611         $LCTL set_param -n osc.*-osc*.rpc_stats 0
7612         trap cleanup_101a EXIT
7613         $LCTL set_param -n llite.*.read_ahead_stats 0
7614         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
7615
7616         #
7617         # randomly read 10000 of 64K chunks from file 3x 32MB in size
7618         #
7619         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
7620         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
7621
7622         discard=0
7623         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
7624                 get_named_value 'read but discarded' | cut -d" " -f1); do
7625                         discard=$(($discard + $s))
7626         done
7627         cleanup_101a
7628
7629         if [[ $(($discard * 10)) -gt $nreads ]]; then
7630                 $LCTL get_param osc.*-osc*.rpc_stats
7631                 $LCTL get_param llite.*.read_ahead_stats
7632                 error "too many ($discard) discarded pages"
7633         fi
7634         rm -f $DIR/$tfile || true
7635 }
7636 run_test 101a "check read-ahead for random reads"
7637
7638 setup_test101bc() {
7639         test_mkdir $DIR/$tdir
7640         local ssize=$1
7641         local FILE_LENGTH=$2
7642         STRIPE_OFFSET=0
7643
7644         local FILE_SIZE_MB=$((FILE_LENGTH / ssize))
7645
7646         local list=$(comma_list $(osts_nodes))
7647         set_osd_param $list '' read_cache_enable 0
7648         set_osd_param $list '' writethrough_cache_enable 0
7649
7650         trap cleanup_test101bc EXIT
7651         # prepare the read-ahead file
7652         $LFS setstripe -S $ssize -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
7653
7654         dd if=/dev/zero of=$DIR/$tfile bs=$ssize \
7655                                 count=$FILE_SIZE_MB 2> /dev/null
7656
7657 }
7658
7659 cleanup_test101bc() {
7660         trap 0
7661         rm -rf $DIR/$tdir
7662         rm -f $DIR/$tfile
7663
7664         local list=$(comma_list $(osts_nodes))
7665         set_osd_param $list '' read_cache_enable 1
7666         set_osd_param $list '' writethrough_cache_enable 1
7667 }
7668
7669 calc_total() {
7670         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
7671 }
7672
7673 ra_check_101() {
7674         local READ_SIZE=$1
7675         local STRIPE_SIZE=$2
7676         local FILE_LENGTH=$3
7677         local RA_INC=1048576
7678         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
7679         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
7680                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
7681         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
7682                         get_named_value 'read but discarded' |
7683                         cut -d" " -f1 | calc_total)
7684         if [[ $DISCARD -gt $discard_limit ]]; then
7685                 $LCTL get_param llite.*.read_ahead_stats
7686                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
7687         else
7688                 echo "Read-ahead success for size ${READ_SIZE}"
7689         fi
7690 }
7691
7692 test_101b() {
7693         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7694         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
7695
7696         local STRIPE_SIZE=1048576
7697         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
7698
7699         if [ $SLOW == "yes" ]; then
7700                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
7701         else
7702                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
7703         fi
7704
7705         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
7706
7707         # prepare the read-ahead file
7708         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
7709         cancel_lru_locks osc
7710         for BIDX in 2 4 8 16 32 64 128 256
7711         do
7712                 local BSIZE=$((BIDX*4096))
7713                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
7714                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
7715                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
7716                 $LCTL set_param -n llite.*.read_ahead_stats 0
7717                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
7718                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
7719                 cancel_lru_locks osc
7720                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
7721         done
7722         cleanup_test101bc
7723         true
7724 }
7725 run_test 101b "check stride-io mode read-ahead ================="
7726
7727 test_101c() {
7728         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7729
7730         local STRIPE_SIZE=1048576
7731         local FILE_LENGTH=$((STRIPE_SIZE*100))
7732         local nreads=10000
7733         local rsize=65536
7734         local osc_rpc_stats
7735
7736         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
7737
7738         cancel_lru_locks osc
7739         $LCTL set_param osc.*.rpc_stats 0
7740         $READS -f $DIR/$tfile -s$FILE_LENGTH -b$rsize -n$nreads -t 180
7741         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
7742                 local stats=$($LCTL get_param -n $osc_rpc_stats)
7743                 local lines=$(echo "$stats" | awk 'END {print NR;}')
7744                 local size
7745
7746                 if [ $lines -le 20 ]; then
7747                         continue
7748                 fi
7749                 for size in 1 2 4 8; do
7750                         local rpc=$(echo "$stats" |
7751                                     awk '($1 == "'$size':") {print $2; exit; }')
7752                         [ $rpc != 0 ] && ((size * PAGE_SIZE < rsize)) &&
7753                                 error "Small $((size*PAGE_SIZE)) read IO $rpc!"
7754                 done
7755                 echo "$osc_rpc_stats check passed!"
7756         done
7757         cleanup_test101bc
7758         true
7759 }
7760 run_test 101c "check stripe_size aligned read-ahead ================="
7761
7762 set_read_ahead() {
7763         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
7764         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
7765 }
7766
7767 test_101d() {
7768         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7769
7770         local file=$DIR/$tfile
7771         local sz_MB=${FILESIZE_101d:-500}
7772         local ra_MB=${READAHEAD_MB:-40}
7773
7774         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
7775         [ $free_MB -lt $sz_MB ] &&
7776                 skip "Need free space ${sz_MB}M, have ${free_MB}M"
7777
7778         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
7779         $LFS setstripe -c -1 $file || error "setstripe failed"
7780
7781         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
7782         echo Cancel LRU locks on lustre client to flush the client cache
7783         cancel_lru_locks osc
7784
7785         echo Disable read-ahead
7786         local old_READAHEAD=$(set_read_ahead 0)
7787
7788         echo Reading the test file $file with read-ahead disabled
7789         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
7790
7791         echo Cancel LRU locks on lustre client to flush the client cache
7792         cancel_lru_locks osc
7793         echo Enable read-ahead with ${ra_MB}MB
7794         set_read_ahead $ra_MB
7795
7796         echo Reading the test file $file with read-ahead enabled
7797         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
7798
7799         echo "read-ahead disabled time read $raOFF"
7800         echo "read-ahead enabled  time read $raON"
7801
7802         set_read_ahead $old_READAHEAD
7803         rm -f $file
7804         wait_delete_completed
7805
7806         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
7807                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
7808 }
7809 run_test 101d "file read with and without read-ahead enabled"
7810
7811 test_101e() {
7812         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7813
7814         local file=$DIR/$tfile
7815         local size_KB=500  #KB
7816         local count=100
7817         local bsize=1024
7818
7819         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
7820         local need_KB=$((count * size_KB))
7821         [[ $free_KB -le $need_KB ]] &&
7822                 skip_env "Need free space $need_KB, have $free_KB"
7823
7824         echo "Creating $count ${size_KB}K test files"
7825         for ((i = 0; i < $count; i++)); do
7826                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
7827         done
7828
7829         echo "Cancel LRU locks on lustre client to flush the client cache"
7830         cancel_lru_locks $OSC
7831
7832         echo "Reset readahead stats"
7833         $LCTL set_param -n llite.*.read_ahead_stats 0
7834
7835         for ((i = 0; i < $count; i++)); do
7836                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
7837         done
7838
7839         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
7840                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
7841
7842         for ((i = 0; i < $count; i++)); do
7843                 rm -rf $file.$i 2>/dev/null
7844         done
7845
7846         #10000 means 20% reads are missing in readahead
7847         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
7848 }
7849 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
7850
7851 test_101f() {
7852         which iozone || skip_env "no iozone installed"
7853
7854         local old_debug=$($LCTL get_param debug)
7855         old_debug=${old_debug#*=}
7856         $LCTL set_param debug="reada mmap"
7857
7858         # create a test file
7859         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
7860
7861         echo Cancel LRU locks on lustre client to flush the client cache
7862         cancel_lru_locks osc
7863
7864         echo Reset readahead stats
7865         $LCTL set_param -n llite.*.read_ahead_stats 0
7866
7867         echo mmap read the file with small block size
7868         iozone -i 1 -u 1 -l 1 -+n -r 32k -s 128m -B -f $DIR/$tfile \
7869                 > /dev/null 2>&1
7870
7871         echo checking missing pages
7872         $LCTL get_param llite.*.read_ahead_stats
7873         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
7874                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
7875
7876         $LCTL set_param debug="$old_debug"
7877         [ $miss -lt 3 ] || error "misses too much pages ('$miss')!"
7878         rm -f $DIR/$tfile
7879 }
7880 run_test 101f "check mmap read performance"
7881
7882 test_101g_brw_size_test() {
7883         local mb=$1
7884         local pages=$((mb * 1048576 / PAGE_SIZE))
7885         local file=$DIR/$tfile
7886
7887         $LCTL set_param osc.*.max_pages_per_rpc=${mb}M ||
7888                 { error "unable to set max_pages_per_rpc=${mb}M"; return 1; }
7889         for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
7890                 [ $mp -ne $pages ] && error "max_pages_per_rpc $mp != $pages" &&
7891                         return 2
7892         done
7893
7894         stack_trap "rm -f $file" EXIT
7895         $LCTL set_param -n osc.*.rpc_stats=0
7896
7897         # 10 RPCs should be enough for the test
7898         local count=10
7899         dd if=/dev/zero of=$file bs=${mb}M count=$count ||
7900                 { error "dd write ${mb} MB blocks failed"; return 3; }
7901         cancel_lru_locks osc
7902         dd of=/dev/null if=$file bs=${mb}M count=$count ||
7903                 { error "dd write ${mb} MB blocks failed"; return 4; }
7904
7905         # calculate number of full-sized read and write RPCs
7906         rpcs=($($LCTL get_param -n 'osc.*.rpc_stats' |
7907                 sed -n '/pages per rpc/,/^$/p' |
7908                 awk '/'$pages':/ { reads += $2; writes += $6 }; \
7909                 END { print reads,writes }'))
7910         [ ${rpcs[0]} -ne $count ] && error "${rpcs[0]} != $count read RPCs" &&
7911                 return 5
7912         [ ${rpcs[1]} -ne $count ] && error "${rpcs[1]} != $count write RPCs" &&
7913                 return 6
7914
7915         return 0
7916 }
7917
7918 test_101g() {
7919         remote_ost_nodsh && skip "remote OST with nodsh"
7920
7921         local rpcs
7922         local osts=$(get_facets OST)
7923         local list=$(comma_list $(osts_nodes))
7924         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
7925         local brw_size="obdfilter.*.brw_size"
7926
7927         $LFS setstripe -i 0 -c 1 $DIR/$tfile
7928
7929         local orig_mb=$(do_facet ost1 $LCTL get_param -n $brw_size | head -n 1)
7930         if [ $OST1_VERSION -ge $(version_code 2.8.52) -o \
7931              \( $OST1_VERSION -ge $(version_code 2.7.17) -a \
7932                 $OST1_VERSION -lt $(version_code 2.7.50) \) ] &&
7933            [ $CLIENT_VERSION -ge $(version_code 2.8.52) -o \
7934              \( $CLIENT_VERSION -ge $(version_code 2.7.17) -a \
7935                 $CLIENT_VERSION -lt $(version_code 2.7.50) \) ]; then
7936                 [ $OST1_VERSION -ge $(version_code 2.9.52) ] && suffix="M"
7937                 if [[ $orig_mb -lt 16 ]]; then
7938                         save_lustre_params $osts "$brw_size" > $p
7939                         do_nodes $list $LCTL set_param -n $brw_size=16$suffix ||
7940                                 error "set 16MB RPC size failed"
7941
7942                         echo "remount client to enable new RPC size"
7943                         remount_client $MOUNT || error "remount_client failed"
7944                 fi
7945
7946                 test_101g_brw_size_test 16 || error "16MB RPC test failed"
7947                 # should be able to set brw_size=12, but no rpc_stats for that
7948                 test_101g_brw_size_test 8 || error "8MB RPC test failed"
7949         fi
7950
7951         test_101g_brw_size_test 4 || error "4MB RPC test failed"
7952
7953         if [[ $orig_mb -lt 16 ]]; then
7954                 restore_lustre_params < $p
7955                 remount_client $MOUNT || error "remount_client restore failed"
7956         fi
7957
7958         rm -f $p $DIR/$tfile
7959 }
7960 run_test 101g "Big bulk(4/16 MiB) readahead"
7961
7962 setup_test102() {
7963         test_mkdir $DIR/$tdir
7964         chown $RUNAS_ID $DIR/$tdir
7965         STRIPE_SIZE=65536
7966         STRIPE_OFFSET=1
7967         STRIPE_COUNT=$OSTCOUNT
7968         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
7969
7970         trap cleanup_test102 EXIT
7971         cd $DIR
7972         $1 $LFS setstripe -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
7973         cd $DIR/$tdir
7974         for num in 1 2 3 4; do
7975                 for count in $(seq 1 $STRIPE_COUNT); do
7976                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
7977                                 local size=`expr $STRIPE_SIZE \* $num`
7978                                 local file=file"$num-$idx-$count"
7979                                 $1 $LFS setstripe -S $size -i $idx -c $count $file
7980                         done
7981                 done
7982         done
7983
7984         cd $DIR
7985         $1 tar cf $TMP/f102.tar $tdir --xattrs
7986 }
7987
7988 cleanup_test102() {
7989         trap 0
7990         rm -f $TMP/f102.tar
7991         rm -rf $DIR/d0.sanity/d102
7992 }
7993
7994 test_102a() {
7995         [ "$UID" != 0 ] && skip "must run as root"
7996         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
7997                 skip_env "must have user_xattr"
7998
7999         [ -z "$(which setfattr 2>/dev/null)" ] &&
8000                 skip_env "could not find setfattr"
8001
8002         local testfile=$DIR/$tfile
8003
8004         touch $testfile
8005         echo "set/get xattr..."
8006         setfattr -n trusted.name1 -v value1 $testfile ||
8007                 error "setfattr -n trusted.name1=value1 $testfile failed"
8008         getfattr -n trusted.name1 $testfile 2> /dev/null |
8009           grep "trusted.name1=.value1" ||
8010                 error "$testfile missing trusted.name1=value1"
8011
8012         setfattr -n user.author1 -v author1 $testfile ||
8013                 error "setfattr -n user.author1=author1 $testfile failed"
8014         getfattr -n user.author1 $testfile 2> /dev/null |
8015           grep "user.author1=.author1" ||
8016                 error "$testfile missing trusted.author1=author1"
8017
8018         echo "listxattr..."
8019         setfattr -n trusted.name2 -v value2 $testfile ||
8020                 error "$testfile unable to set trusted.name2"
8021         setfattr -n trusted.name3 -v value3 $testfile ||
8022                 error "$testfile unable to set trusted.name3"
8023         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
8024             grep "trusted.name" | wc -l) -eq 3 ] ||
8025                 error "$testfile missing 3 trusted.name xattrs"
8026
8027         setfattr -n user.author2 -v author2 $testfile ||
8028                 error "$testfile unable to set user.author2"
8029         setfattr -n user.author3 -v author3 $testfile ||
8030                 error "$testfile unable to set user.author3"
8031         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
8032             grep "user.author" | wc -l) -eq 3 ] ||
8033                 error "$testfile missing 3 user.author xattrs"
8034
8035         echo "remove xattr..."
8036         setfattr -x trusted.name1 $testfile ||
8037                 error "$testfile error deleting trusted.name1"
8038         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
8039                 error "$testfile did not delete trusted.name1 xattr"
8040
8041         setfattr -x user.author1 $testfile ||
8042                 error "$testfile error deleting user.author1"
8043         echo "set lustre special xattr ..."
8044         $LFS setstripe -c1 $testfile
8045         local lovea=$(getfattr -n "trusted.lov" -e hex $testfile |
8046                 awk -F "=" '/trusted.lov/ { print $2 }' )
8047         setfattr -n "trusted.lov" -v $lovea $testfile ||
8048                 error "$testfile doesn't ignore setting trusted.lov again"
8049         setfattr -n "trusted.lov" -v "invalid_value" $testfile &&
8050                 error "$testfile allow setting invalid trusted.lov"
8051         rm -f $testfile
8052 }
8053 run_test 102a "user xattr test =================================="
8054
8055 test_102b() {
8056         [ -z "$(which setfattr 2>/dev/null)" ] &&
8057                 skip_env "could not find setfattr"
8058         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8059
8060         # b10930: get/set/list trusted.lov xattr
8061         echo "get/set/list trusted.lov xattr ..."
8062         local testfile=$DIR/$tfile
8063         $LFS setstripe -S 65536 -i 1 -c $OSTCOUNT $testfile ||
8064                 error "setstripe failed"
8065         local STRIPECOUNT=$($LFS getstripe -c $testfile) ||
8066                 error "getstripe failed"
8067         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
8068                 error "can't get trusted.lov from $testfile"
8069
8070         local testfile2=${testfile}2
8071         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
8072                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
8073
8074         $MCREATE $testfile2
8075         setfattr -n trusted.lov -v $value $testfile2
8076         local stripe_size=$($LFS getstripe -S $testfile2)
8077         local stripe_count=$($LFS getstripe -c $testfile2)
8078         [[ $stripe_size -eq 65536 ]] ||
8079                 error "stripe size $stripe_size != 65536"
8080         [[ $stripe_count -eq $STRIPECOUNT ]] ||
8081                 error "stripe count $stripe_count != $STRIPECOUNT"
8082         rm -f $DIR/$tfile
8083 }
8084 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
8085
8086 test_102c() {
8087         [ -z "$(which setfattr 2>/dev/null)" ] &&
8088                 skip_env "could not find setfattr"
8089         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8090
8091         # b10930: get/set/list lustre.lov xattr
8092         echo "get/set/list lustre.lov xattr ..."
8093         test_mkdir $DIR/$tdir
8094         chown $RUNAS_ID $DIR/$tdir
8095         local testfile=$DIR/$tdir/$tfile
8096         $RUNAS $LFS setstripe -S 65536 -i 1 -c $OSTCOUNT $testfile ||
8097                 error "setstripe failed"
8098         local STRIPECOUNT=$($RUNAS $LFS getstripe -c $testfile) ||
8099                 error "getstripe failed"
8100         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
8101         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
8102
8103         local testfile2=${testfile}2
8104         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
8105                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
8106
8107         $RUNAS $MCREATE $testfile2
8108         $RUNAS setfattr -n lustre.lov -v $value $testfile2
8109         local stripe_size=$($RUNAS $LFS getstripe -S $testfile2)
8110         local stripe_count=$($RUNAS $LFS getstripe -c $testfile2)
8111         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
8112         [ $stripe_count -eq $STRIPECOUNT ] ||
8113                 error "stripe count $stripe_count != $STRIPECOUNT"
8114 }
8115 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
8116
8117 compare_stripe_info1() {
8118         local stripe_index_all_zero=true
8119
8120         for num in 1 2 3 4; do
8121                 for count in $(seq 1 $STRIPE_COUNT); do
8122                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
8123                                 local size=$((STRIPE_SIZE * num))
8124                                 local file=file"$num-$offset-$count"
8125                                 stripe_size=$($LFS getstripe -S $PWD/$file)
8126                                 [[ $stripe_size -ne $size ]] &&
8127                                     error "$file: size $stripe_size != $size"
8128                                 stripe_count=$($LFS getstripe -c $PWD/$file)
8129                                 # allow fewer stripes to be created, ORI-601
8130                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
8131                                     error "$file: count $stripe_count != $count"
8132                                 stripe_index=$($LFS getstripe -i $PWD/$file)
8133                                 [[ $stripe_index -ne 0 ]] &&
8134                                         stripe_index_all_zero=false
8135                         done
8136                 done
8137         done
8138         $stripe_index_all_zero &&
8139                 error "all files are being extracted starting from OST index 0"
8140         return 0
8141 }
8142
8143 have_xattrs_include() {
8144         tar --help | grep -q xattrs-include &&
8145                 echo --xattrs-include="lustre.*"
8146 }
8147
8148 test_102d() {
8149         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8150         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8151
8152         XINC=$(have_xattrs_include)
8153         setup_test102
8154         tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
8155         cd $DIR/$tdir/$tdir
8156         compare_stripe_info1
8157 }
8158 run_test 102d "tar restore stripe info from tarfile,not keep osts"
8159
8160 test_102f() {
8161         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8162         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8163
8164         XINC=$(have_xattrs_include)
8165         setup_test102
8166         test_mkdir $DIR/$tdir.restore
8167         cd $DIR
8168         tar cf - --xattrs $tdir | tar xf - \
8169                 -C $DIR/$tdir.restore --xattrs $XINC
8170         cd $DIR/$tdir.restore/$tdir
8171         compare_stripe_info1
8172 }
8173 run_test 102f "tar copy files, not keep osts"
8174
8175 grow_xattr() {
8176         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
8177                 skip "must have user_xattr"
8178         [ -z "$(which setfattr 2>/dev/null)" ] &&
8179                 skip_env "could not find setfattr"
8180         [ -z "$(which getfattr 2>/dev/null)" ] &&
8181                 skip_env "could not find getfattr"
8182
8183         local xsize=${1:-1024}  # in bytes
8184         local file=$DIR/$tfile
8185         local value="$(generate_string $xsize)"
8186         local xbig=trusted.big
8187
8188         touch $file
8189         log "save $xbig on $file"
8190         setfattr -n $xbig -v $value $file ||
8191                 error "saving $xbig on $file failed"
8192
8193         local orig=$(get_xattr_value $xbig $file)
8194         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
8195
8196         local xsml=trusted.sml
8197         log "save $xsml on $file"
8198         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
8199
8200         local new=$(get_xattr_value $xbig $file)
8201         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
8202
8203         log "grow $xsml on $file"
8204         setfattr -n $xsml -v "$value" $file ||
8205                 error "growing $xsml on $file failed"
8206
8207         new=$(get_xattr_value $xbig $file)
8208         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
8209         log "$xbig still valid after growing $xsml"
8210
8211         rm -f $file
8212 }
8213
8214 test_102h() { # bug 15777
8215         grow_xattr 1024
8216 }
8217 run_test 102h "grow xattr from inside inode to external block"
8218
8219 test_102ha() {
8220         large_xattr_enabled || skip_env "ea_inode feature disabled"
8221
8222         grow_xattr $(max_xattr_size)
8223 }
8224 run_test 102ha "grow xattr from inside inode to external inode"
8225
8226 test_102i() { # bug 17038
8227         [ -z "$(which getfattr 2>/dev/null)" ] &&
8228                 skip "could not find getfattr"
8229
8230         touch $DIR/$tfile
8231         ln -s $DIR/$tfile $DIR/${tfile}link
8232         getfattr -n trusted.lov $DIR/$tfile ||
8233                 error "lgetxattr on $DIR/$tfile failed"
8234         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
8235                 grep -i "no such attr" ||
8236                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
8237         rm -f $DIR/$tfile $DIR/${tfile}link
8238 }
8239 run_test 102i "lgetxattr test on symbolic link ============"
8240
8241 test_102j() {
8242         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8243         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8244
8245         XINC=$(have_xattrs_include)
8246         setup_test102 "$RUNAS"
8247         chown $RUNAS_ID $DIR/$tdir
8248         $RUNAS tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
8249         cd $DIR/$tdir/$tdir
8250         compare_stripe_info1 "$RUNAS"
8251 }
8252 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
8253
8254 test_102k() {
8255         [ -z "$(which setfattr 2>/dev/null)" ] &&
8256                 skip "could not find setfattr"
8257
8258         touch $DIR/$tfile
8259         # b22187 just check that does not crash for regular file.
8260         setfattr -n trusted.lov $DIR/$tfile
8261         # b22187 'setfattr -n trusted.lov' should remove LOV EA for directories
8262         local test_kdir=$DIR/$tdir
8263         test_mkdir $test_kdir
8264         local default_size=$($LFS getstripe -S $test_kdir)
8265         local default_count=$($LFS getstripe -c $test_kdir)
8266         local default_offset=$($LFS getstripe -i $test_kdir)
8267         $LFS setstripe -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
8268                 error 'dir setstripe failed'
8269         setfattr -n trusted.lov $test_kdir
8270         local stripe_size=$($LFS getstripe -S $test_kdir)
8271         local stripe_count=$($LFS getstripe -c $test_kdir)
8272         local stripe_offset=$($LFS getstripe -i $test_kdir)
8273         [ $stripe_size -eq $default_size ] ||
8274                 error "stripe size $stripe_size != $default_size"
8275         [ $stripe_count -eq $default_count ] ||
8276                 error "stripe count $stripe_count != $default_count"
8277         [ $stripe_offset -eq $default_offset ] ||
8278                 error "stripe offset $stripe_offset != $default_offset"
8279         rm -rf $DIR/$tfile $test_kdir
8280 }
8281 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
8282
8283 test_102l() {
8284         [ -z "$(which getfattr 2>/dev/null)" ] &&
8285                 skip "could not find getfattr"
8286
8287         # LU-532 trusted. xattr is invisible to non-root
8288         local testfile=$DIR/$tfile
8289
8290         touch $testfile
8291
8292         echo "listxattr as user..."
8293         chown $RUNAS_ID $testfile
8294         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
8295             grep -q "trusted" &&
8296                 error "$testfile trusted xattrs are user visible"
8297
8298         return 0;
8299 }
8300 run_test 102l "listxattr size test =================================="
8301
8302 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
8303         local path=$DIR/$tfile
8304         touch $path
8305
8306         listxattr_size_check $path || error "listattr_size_check $path failed"
8307 }
8308 run_test 102m "Ensure listxattr fails on small bufffer ========"
8309
8310 cleanup_test102
8311
8312 getxattr() { # getxattr path name
8313         # Return the base64 encoding of the value of xattr name on path.
8314         local path=$1
8315         local name=$2
8316
8317         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
8318         # file: $path
8319         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
8320         #
8321         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
8322
8323         getfattr --absolute-names --encoding=base64 --name=$name $path |
8324                 awk -F= -v name=$name '$1 == name {
8325                         print substr($0, index($0, "=") + 1);
8326         }'
8327 }
8328
8329 test_102n() { # LU-4101 mdt: protect internal xattrs
8330         [ -z "$(which setfattr 2>/dev/null)" ] &&
8331                 skip "could not find setfattr"
8332         if [ $MDS1_VERSION -lt $(version_code 2.5.50) ]
8333         then
8334                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
8335         fi
8336
8337         local file0=$DIR/$tfile.0
8338         local file1=$DIR/$tfile.1
8339         local xattr0=$TMP/$tfile.0
8340         local xattr1=$TMP/$tfile.1
8341         local namelist="lov lma lmv link fid version som hsm"
8342         local name
8343         local value
8344
8345         rm -rf $file0 $file1 $xattr0 $xattr1
8346         touch $file0 $file1
8347
8348         # Get 'before' xattrs of $file1.
8349         getfattr --absolute-names --dump --match=- $file1 > $xattr0
8350
8351         [ $MDS1_VERSION -lt $(version_code 2.8.53) ] &&
8352                 namelist+=" lfsck_namespace"
8353         for name in $namelist; do
8354                 # Try to copy xattr from $file0 to $file1.
8355                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
8356
8357                 setfattr --name=trusted.$name --value="$value" $file1 ||
8358                         error "setxattr 'trusted.$name' failed"
8359
8360                 # Try to set a garbage xattr.
8361                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
8362
8363                 if [[ x$name == "xlov" ]]; then
8364                         setfattr --name=trusted.lov --value="$value" $file1 &&
8365                         error "setxattr invalid 'trusted.lov' success"
8366                 else
8367                         setfattr --name=trusted.$name --value="$value" $file1 ||
8368                                 error "setxattr invalid 'trusted.$name' failed"
8369                 fi
8370
8371                 # Try to remove the xattr from $file1. We don't care if this
8372                 # appears to succeed or fail, we just don't want there to be
8373                 # any changes or crashes.
8374                 setfattr --remove=$trusted.$name $file1 2> /dev/null
8375         done
8376
8377         if [ $MDS1_VERSION -gt $(version_code 2.6.50) ]
8378         then
8379                 name="lfsck_ns"
8380                 # Try to copy xattr from $file0 to $file1.
8381                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
8382
8383                 setfattr --name=trusted.$name --value="$value" $file1 ||
8384                         error "setxattr 'trusted.$name' failed"
8385
8386                 # Try to set a garbage xattr.
8387                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
8388
8389                 setfattr --name=trusted.$name --value="$value" $file1 ||
8390                         error "setxattr 'trusted.$name' failed"
8391
8392                 # Try to remove the xattr from $file1. We don't care if this
8393                 # appears to succeed or fail, we just don't want there to be
8394                 # any changes or crashes.
8395                 setfattr --remove=$trusted.$name $file1 2> /dev/null
8396         fi
8397
8398         # Get 'after' xattrs of file1.
8399         getfattr --absolute-names --dump --match=- $file1 > $xattr1
8400
8401         if ! diff $xattr0 $xattr1; then
8402                 error "before and after xattrs of '$file1' differ"
8403         fi
8404
8405         rm -rf $file0 $file1 $xattr0 $xattr1
8406
8407         return 0
8408 }
8409 run_test 102n "silently ignore setxattr on internal trusted xattrs"
8410
8411 test_102p() { # LU-4703 setxattr did not check ownership
8412         [ $MDS1_VERSION -lt $(version_code 2.5.56) ] &&
8413                 skip "MDS needs to be at least 2.5.56"
8414
8415         local testfile=$DIR/$tfile
8416
8417         touch $testfile
8418
8419         echo "setfacl as user..."
8420         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
8421         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
8422
8423         echo "setfattr as user..."
8424         setfacl -m "u:$RUNAS_ID:---" $testfile
8425         $RUNAS setfattr -x system.posix_acl_access $testfile
8426         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
8427 }
8428 run_test 102p "check setxattr(2) correctly fails without permission"
8429
8430 test_102q() {
8431         [ $MDS1_VERSION -lt $(version_code 2.6.92) ] &&
8432                 skip "MDS needs to be at least 2.6.92"
8433
8434         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
8435 }
8436 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
8437
8438 test_102r() {
8439         [ $MDS1_VERSION -lt $(version_code 2.6.93) ] &&
8440                 skip "MDS needs to be at least 2.6.93"
8441
8442         touch $DIR/$tfile || error "touch"
8443         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
8444         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
8445         rm $DIR/$tfile || error "rm"
8446
8447         #normal directory
8448         mkdir -p $DIR/$tdir || error "mkdir"
8449         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
8450         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
8451         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
8452                 error "$testfile error deleting user.author1"
8453         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
8454                 grep "user.$(basename $tdir)" &&
8455                 error "$tdir did not delete user.$(basename $tdir)"
8456         rmdir $DIR/$tdir || error "rmdir"
8457
8458         #striped directory
8459         test_mkdir $DIR/$tdir
8460         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
8461         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
8462         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
8463                 error "$testfile error deleting user.author1"
8464         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
8465                 grep "user.$(basename $tdir)" &&
8466                 error "$tdir did not delete user.$(basename $tdir)"
8467         rmdir $DIR/$tdir || error "rm striped dir"
8468 }
8469 run_test 102r "set EAs with empty values"
8470
8471 test_102s() {
8472         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
8473                 skip "MDS needs to be at least 2.11.52"
8474
8475         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
8476
8477         save_lustre_params client "llite.*.xattr_cache" > $save
8478
8479         for cache in 0 1; do
8480                 lctl set_param llite.*.xattr_cache=$cache
8481
8482                 rm -f $DIR/$tfile
8483                 touch $DIR/$tfile || error "touch"
8484                 for prefix in lustre security system trusted user; do
8485                         # Note getxattr() may fail with 'Operation not
8486                         # supported' or 'No such attribute' depending
8487                         # on prefix and cache.
8488                         getfattr -n $prefix.n102s $DIR/$tfile &&
8489                                 error "getxattr '$prefix.n102s' should fail (cache = $cache)"
8490                 done
8491         done
8492
8493         restore_lustre_params < $save
8494 }
8495 run_test 102s "getting nonexistent xattrs should fail"
8496
8497 test_102t() {
8498         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
8499                 skip "MDS needs to be at least 2.11.52"
8500
8501         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
8502
8503         save_lustre_params client "llite.*.xattr_cache" > $save
8504
8505         for cache in 0 1; do
8506                 lctl set_param llite.*.xattr_cache=$cache
8507
8508                 for buf_size in 0 256; do
8509                         rm -f $DIR/$tfile
8510                         touch $DIR/$tfile || error "touch"
8511                         setfattr -n user.multiop $DIR/$tfile
8512                         $MULTIOP $DIR/$tfile oa$buf_size ||
8513                                 error "cannot get zero length xattr value (buf_size = $buf_size)"
8514                 done
8515         done
8516
8517         restore_lustre_params < $save
8518 }
8519 run_test 102t "zero length xattr values handled correctly"
8520
8521 run_acl_subtest()
8522 {
8523     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
8524     return $?
8525 }
8526
8527 test_103a() {
8528         [ "$UID" != 0 ] && skip "must run as root"
8529         $GSS && skip_env "could not run under gss"
8530         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
8531                 skip_env "must have acl enabled"
8532         [ -z "$(which setfacl 2>/dev/null)" ] &&
8533                 skip_env "could not find setfacl"
8534         remote_mds_nodsh && skip "remote MDS with nodsh"
8535
8536         gpasswd -a daemon bin                           # LU-5641
8537         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
8538
8539         declare -a identity_old
8540
8541         for num in $(seq $MDSCOUNT); do
8542                 switch_identity $num true || identity_old[$num]=$?
8543         done
8544
8545         SAVE_UMASK=$(umask)
8546         umask 0022
8547         mkdir -p $DIR/$tdir
8548         cd $DIR/$tdir
8549
8550         echo "performing cp ..."
8551         run_acl_subtest cp || error "run_acl_subtest cp failed"
8552         echo "performing getfacl-noacl..."
8553         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
8554         echo "performing misc..."
8555         run_acl_subtest misc || error  "misc test failed"
8556         echo "performing permissions..."
8557         run_acl_subtest permissions || error "permissions failed"
8558         # LU-1482 mdd: Setting xattr are properly checked with and without ACLs
8559         if [ $MDS1_VERSION -gt $(version_code 2.8.55) -o \
8560              \( $MDS1_VERSION -lt $(version_code 2.6) -a \
8561              $MDS1_VERSION -ge $(version_code 2.5.29) \) ]
8562         then
8563                 echo "performing permissions xattr..."
8564                 run_acl_subtest permissions_xattr ||
8565                         error "permissions_xattr failed"
8566         fi
8567         echo "performing setfacl..."
8568         run_acl_subtest setfacl || error  "setfacl test failed"
8569
8570         # inheritance test got from HP
8571         echo "performing inheritance..."
8572         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
8573         chmod +x make-tree || error "chmod +x failed"
8574         run_acl_subtest inheritance || error "inheritance test failed"
8575         rm -f make-tree
8576
8577         echo "LU-974 ignore umask when acl is enabled..."
8578         run_acl_subtest 974 || error "LU-974 umask test failed"
8579         if [ $MDSCOUNT -ge 2 ]; then
8580                 run_acl_subtest 974_remote ||
8581                         error "LU-974 umask test failed under remote dir"
8582         fi
8583
8584         echo "LU-2561 newly created file is same size as directory..."
8585         if [ "$mds1_FSTYPE" != "zfs" ]; then
8586                 run_acl_subtest 2561 || error "LU-2561 test failed"
8587         else
8588                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
8589         fi
8590
8591         run_acl_subtest 4924 || error "LU-4924 test failed"
8592
8593         cd $SAVE_PWD
8594         umask $SAVE_UMASK
8595
8596         for num in $(seq $MDSCOUNT); do
8597                 if [ "${identity_old[$num]}" = 1 ]; then
8598                         switch_identity $num false || identity_old[$num]=$?
8599                 fi
8600         done
8601 }
8602 run_test 103a "acl test"
8603
8604 test_103b() {
8605         declare -a pids
8606         local U
8607
8608         for U in {0..511}; do
8609                 {
8610                 local O=$(printf "%04o" $U)
8611
8612                 umask $(printf "%04o" $((511 ^ $O)))
8613                 $LFS setstripe -c 1 $DIR/$tfile.s$O
8614                 local S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.s$O))
8615
8616                 (( $S == ($O & 0666) )) ||
8617                         error "lfs setstripe $DIR/$tfile.s$O '$S' != '$O'"
8618
8619                 $LFS setstripe -E16M -c 1 -E1G -S4M $DIR/$tfile.p$O
8620                 S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.p$O))
8621                 (( $S == ($O & 0666) )) ||
8622                         error "lfs setstripe -E $DIR/$tfile.p$O '$S' != '$O'"
8623
8624                 $LFS setstripe -N2 -c 1 $DIR/$tfile.m$O
8625                 S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.m$O))
8626                 (( $S == ($O & 0666) )) ||
8627                         error "lfs setstripe -N2 $DIR/$tfile.m$O '$S' != '$O'"
8628                 rm -f $DIR/$tfile.[smp]$0
8629                 } &
8630                 local pid=$!
8631
8632                 # limit the concurrently running threads to 64. LU-11878
8633                 local idx=$((U % 64))
8634                 [ -z "${pids[idx]}" ] || wait ${pids[idx]}
8635                 pids[idx]=$pid
8636         done
8637         wait
8638 }
8639 run_test 103b "umask lfs setstripe"
8640
8641 test_103c() {
8642         mkdir -p $DIR/$tdir
8643         cp -rp $DIR/$tdir $DIR/$tdir.bak
8644
8645         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
8646                 error "$DIR/$tdir shouldn't contain default ACL"
8647         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
8648                 error "$DIR/$tdir.bak shouldn't contain default ACL"
8649         true
8650 }
8651 run_test 103c "'cp -rp' won't set empty acl"
8652
8653 test_104a() {
8654         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8655
8656         touch $DIR/$tfile
8657         lfs df || error "lfs df failed"
8658         lfs df -ih || error "lfs df -ih failed"
8659         lfs df -h $DIR || error "lfs df -h $DIR failed"
8660         lfs df -i $DIR || error "lfs df -i $DIR failed"
8661         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
8662         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
8663
8664         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
8665         lctl --device %$OSC deactivate
8666         lfs df || error "lfs df with deactivated OSC failed"
8667         lctl --device %$OSC activate
8668         # wait the osc back to normal
8669         wait_osc_import_state client ost FULL
8670
8671         lfs df || error "lfs df with reactivated OSC failed"
8672         rm -f $DIR/$tfile
8673 }
8674 run_test 104a "lfs df [-ih] [path] test ========================="
8675
8676 test_104b() {
8677         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8678         [ $RUNAS_ID -eq $UID ] &&
8679                 skip_env "RUNAS_ID = UID = $UID -- skipping"
8680
8681         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
8682                         grep "Permission denied" | wc -l)))
8683         if [ $denied_cnt -ne 0 ]; then
8684                 error "lfs check servers test failed"
8685         fi
8686 }
8687 run_test 104b "$RUNAS lfs check servers test ===================="
8688
8689 test_105a() {
8690         # doesn't work on 2.4 kernels
8691         touch $DIR/$tfile
8692         if $(flock_is_enabled); then
8693                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
8694         else
8695                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
8696         fi
8697         rm -f $DIR/$tfile
8698 }
8699 run_test 105a "flock when mounted without -o flock test ========"
8700
8701 test_105b() {
8702         touch $DIR/$tfile
8703         if $(flock_is_enabled); then
8704                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
8705         else
8706                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
8707         fi
8708         rm -f $DIR/$tfile
8709 }
8710 run_test 105b "fcntl when mounted without -o flock test ========"
8711
8712 test_105c() {
8713         touch $DIR/$tfile
8714         if $(flock_is_enabled); then
8715                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
8716         else
8717                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
8718         fi
8719         rm -f $DIR/$tfile
8720 }
8721 run_test 105c "lockf when mounted without -o flock test"
8722
8723 test_105d() { # bug 15924
8724         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8725
8726         test_mkdir $DIR/$tdir
8727         flock_is_enabled || skip_env "mount w/o flock enabled"
8728         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
8729         $LCTL set_param fail_loc=0x80000315
8730         flocks_test 2 $DIR/$tdir
8731 }
8732 run_test 105d "flock race (should not freeze) ========"
8733
8734 test_105e() { # bug 22660 && 22040
8735         flock_is_enabled || skip_env "mount w/o flock enabled"
8736
8737         touch $DIR/$tfile
8738         flocks_test 3 $DIR/$tfile
8739 }
8740 run_test 105e "Two conflicting flocks from same process"
8741
8742 test_106() { #bug 10921
8743         test_mkdir $DIR/$tdir
8744         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
8745         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
8746 }
8747 run_test 106 "attempt exec of dir followed by chown of that dir"
8748
8749 test_107() {
8750         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8751
8752         CDIR=`pwd`
8753         local file=core
8754
8755         cd $DIR
8756         rm -f $file
8757
8758         local save_pattern=$(sysctl -n kernel.core_pattern)
8759         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
8760         sysctl -w kernel.core_pattern=$file
8761         sysctl -w kernel.core_uses_pid=0
8762
8763         ulimit -c unlimited
8764         sleep 60 &
8765         SLEEPPID=$!
8766
8767         sleep 1
8768
8769         kill -s 11 $SLEEPPID
8770         wait $SLEEPPID
8771         if [ -e $file ]; then
8772                 size=`stat -c%s $file`
8773                 [ $size -eq 0 ] && error "Fail to create core file $file"
8774         else
8775                 error "Fail to create core file $file"
8776         fi
8777         rm -f $file
8778         sysctl -w kernel.core_pattern=$save_pattern
8779         sysctl -w kernel.core_uses_pid=$save_uses_pid
8780         cd $CDIR
8781 }
8782 run_test 107 "Coredump on SIG"
8783
8784 test_110() {
8785         test_mkdir $DIR/$tdir
8786         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255)
8787         $LFS mkdir -c $MDSCOUNT $DIR/$tdir/$(str_repeat 'b' 256) &&
8788                 error "mkdir with 256 char should fail, but did not"
8789         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
8790                 error "create with 255 char failed"
8791         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
8792                 error "create with 256 char should fail, but did not"
8793
8794         ls -l $DIR/$tdir
8795         rm -rf $DIR/$tdir
8796 }
8797 run_test 110 "filename length checking"
8798
8799 #
8800 # Purpose: To verify dynamic thread (OSS) creation.
8801 #
8802 test_115() {
8803         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8804         remote_ost_nodsh && skip "remote OST with nodsh"
8805
8806         # Lustre does not stop service threads once they are started.
8807         # Reset number of running threads to default.
8808         stopall
8809         setupall
8810
8811         local OSTIO_pre
8812         local save_params="$TMP/sanity-$TESTNAME.parameters"
8813
8814         # Get ll_ost_io count before I/O
8815         OSTIO_pre=$(do_facet ost1 \
8816                 "$LCTL get_param ost.OSS.ost_io.threads_started | cut -d= -f2")
8817         # Exit if lustre is not running (ll_ost_io not running).
8818         [ -z "$OSTIO_pre" ] && error "no OSS threads"
8819
8820         echo "Starting with $OSTIO_pre threads"
8821         local thread_max=$((OSTIO_pre * 2))
8822         local rpc_in_flight=$((thread_max * 2))
8823         # Number of I/O Process proposed to be started.
8824         local nfiles
8825         local facets=$(get_facets OST)
8826
8827         save_lustre_params client "osc.*OST*.max_rpcs_in_flight" > $save_params
8828         save_lustre_params $facets "ost.OSS.ost_io.threads_max" >> $save_params
8829
8830         # Set in_flight to $rpc_in_flight
8831         $LCTL set_param osc.*OST*.max_rpcs_in_flight=$rpc_in_flight ||
8832                 error "Failed to set max_rpcs_in_flight to $rpc_in_flight"
8833         nfiles=${rpc_in_flight}
8834         # Set ost thread_max to $thread_max
8835         do_facet ost1 "$LCTL set_param ost.OSS.ost_io.threads_max=$thread_max"
8836
8837         # 5 Minutes should be sufficient for max number of OSS
8838         # threads(thread_max) to be created.
8839         local timeout=300
8840
8841         # Start I/O.
8842         local WTL=${WTL:-"$LUSTRE/tests/write_time_limit"}
8843         test_mkdir $DIR/$tdir
8844         for i in $(seq $nfiles); do
8845                 local file=$DIR/$tdir/${tfile}-$i
8846                 $LFS setstripe -c -1 -i 0 $file
8847                 ($WTL $file $timeout)&
8848         done
8849
8850         # I/O Started - Wait for thread_started to reach thread_max or report
8851         # error if thread_started is more than thread_max.
8852         echo "Waiting for thread_started to reach thread_max"
8853         local thread_started=0
8854         local end_time=$((SECONDS + timeout))
8855
8856         while [ $SECONDS -le $end_time ] ; do
8857                 echo -n "."
8858                 # Get ost i/o thread_started count.
8859                 thread_started=$(do_facet ost1 \
8860                         "$LCTL get_param \
8861                         ost.OSS.ost_io.threads_started | cut -d= -f2")
8862                 # Break out if thread_started is equal/greater than thread_max
8863                 if [[ $thread_started -ge $thread_max ]]; then
8864                         echo ll_ost_io thread_started $thread_started, \
8865                                 equal/greater than thread_max $thread_max
8866                         break
8867                 fi
8868                 sleep 1
8869         done
8870
8871         # Cleanup - We have the numbers, Kill i/o jobs if running.
8872         jobcount=($(jobs -p))
8873         for i in $(seq 0 $((${#jobcount[@]}-1)))
8874         do
8875                 kill -9 ${jobcount[$i]}
8876                 if [ $? -ne 0 ] ; then
8877                         echo Warning: \
8878                         Failed to Kill \'WTL\(I/O\)\' with pid ${jobcount[$i]}
8879                 fi
8880         done
8881
8882         # Cleanup files left by WTL binary.
8883         for i in $(seq $nfiles); do
8884                 local file=$DIR/$tdir/${tfile}-$i
8885                 rm -rf $file
8886                 if [ $? -ne 0 ] ; then
8887                         echo "Warning: Failed to delete file $file"
8888                 fi
8889         done
8890
8891         restore_lustre_params <$save_params
8892         rm -f $save_params || echo "Warning: delete file '$save_params' failed"
8893
8894         # Error out if no new thread has started or Thread started is greater
8895         # than thread max.
8896         if [[ $thread_started -le $OSTIO_pre ||
8897                         $thread_started -gt $thread_max ]]; then
8898                 error "ll_ost_io: thread_started $thread_started" \
8899                       "OSTIO_pre $OSTIO_pre, thread_max $thread_max." \
8900                       "No new thread started or thread started greater " \
8901                       "than thread_max."
8902         fi
8903 }
8904 run_test 115 "verify dynamic thread creation===================="
8905
8906 free_min_max () {
8907         wait_delete_completed
8908         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
8909         echo "OST kbytes available: ${AVAIL[@]}"
8910         MAXV=${AVAIL[0]}
8911         MAXI=0
8912         MINV=${AVAIL[0]}
8913         MINI=0
8914         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
8915                 #echo OST $i: ${AVAIL[i]}kb
8916                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
8917                         MAXV=${AVAIL[i]}
8918                         MAXI=$i
8919                 fi
8920                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
8921                         MINV=${AVAIL[i]}
8922                         MINI=$i
8923                 fi
8924         done
8925         echo "Min free space: OST $MINI: $MINV"
8926         echo "Max free space: OST $MAXI: $MAXV"
8927 }
8928
8929 test_116a() { # was previously test_116()
8930         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8931         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8932         remote_mds_nodsh && skip "remote MDS with nodsh"
8933
8934         echo -n "Free space priority "
8935         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
8936                 head -n1
8937         declare -a AVAIL
8938         free_min_max
8939
8940         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip"
8941         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip"
8942         trap simple_cleanup_common EXIT
8943
8944         # Check if we need to generate uneven OSTs
8945         test_mkdir -p $DIR/$tdir/OST${MINI}
8946         local FILL=$((MINV / 4))
8947         local DIFF=$((MAXV - MINV))
8948         local DIFF2=$((DIFF * 100 / MINV))
8949
8950         local threshold=$(do_facet $SINGLEMDS \
8951                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
8952         threshold=${threshold%%%}
8953         echo -n "Check for uneven OSTs: "
8954         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
8955
8956         if [[ $DIFF2 -gt $threshold ]]; then
8957                 echo "ok"
8958                 echo "Don't need to fill OST$MINI"
8959         else
8960                 # generate uneven OSTs. Write 2% over the QOS threshold value
8961                 echo "no"
8962                 DIFF=$((threshold - DIFF2 + 2))
8963                 DIFF2=$((MINV * DIFF / 100))
8964                 echo "Fill $DIFF% remaining space in OST$MINI with ${DIFF2}KB"
8965                 $LFS setstripe -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
8966                         error "setstripe failed"
8967                 DIFF=$((DIFF2 / 2048))
8968                 i=0
8969                 while [ $i -lt $DIFF ]; do
8970                         i=$((i + 1))
8971                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
8972                                 bs=2M count=1 2>/dev/null
8973                         echo -n .
8974                 done
8975                 echo .
8976                 sync
8977                 sleep_maxage
8978                 free_min_max
8979         fi
8980
8981         DIFF=$((MAXV - MINV))
8982         DIFF2=$((DIFF * 100 / MINV))
8983         echo -n "diff=$DIFF=$DIFF2% must be > $threshold% for QOS mode..."
8984         if [ $DIFF2 -gt $threshold ]; then
8985                 echo "ok"
8986         else
8987                 echo "failed - QOS mode won't be used"
8988                 simple_cleanup_common
8989                 skip "QOS imbalance criteria not met"
8990         fi
8991
8992         MINI1=$MINI
8993         MINV1=$MINV
8994         MAXI1=$MAXI
8995         MAXV1=$MAXV
8996
8997         # now fill using QOS
8998         $LFS setstripe -c 1 $DIR/$tdir
8999         FILL=$((FILL / 200))
9000         if [ $FILL -gt 600 ]; then
9001                 FILL=600
9002         fi
9003         echo "writing $FILL files to QOS-assigned OSTs"
9004         i=0
9005         while [ $i -lt $FILL ]; do
9006                 i=$((i + 1))
9007                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
9008                         count=1 2>/dev/null
9009                 echo -n .
9010         done
9011         echo "wrote $i 200k files"
9012         sync
9013         sleep_maxage
9014
9015         echo "Note: free space may not be updated, so measurements might be off"
9016         free_min_max
9017         DIFF2=$((MAXV - MINV))
9018         echo "free space delta: orig $DIFF final $DIFF2"
9019         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
9020         DIFF=$((MINV1 - ${AVAIL[$MINI1]}))
9021         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
9022         DIFF2=$((MAXV1 - ${AVAIL[$MAXI1]}))
9023         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
9024         if [[ $DIFF -gt 0 ]]; then
9025                 FILL=$((DIFF2 * 100 / DIFF - 100))
9026                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
9027         fi
9028
9029         # Figure out which files were written where
9030         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
9031                awk '/'$MINI1': / {print $2; exit}')
9032         echo $UUID
9033         MINC=$($LFS getstripe --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
9034         echo "$MINC files created on smaller OST $MINI1"
9035         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
9036                awk '/'$MAXI1': / {print $2; exit}')
9037         echo $UUID
9038         MAXC=$($LFS getstripe --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
9039         echo "$MAXC files created on larger OST $MAXI1"
9040         if [[ $MINC -gt 0 ]]; then
9041                 FILL=$((MAXC * 100 / MINC - 100))
9042                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
9043         fi
9044         [[ $MAXC -gt $MINC ]] ||
9045                 error_ignore LU-9 "stripe QOS didn't balance free space"
9046         simple_cleanup_common
9047 }
9048 run_test 116a "stripe QOS: free space balance ==================="
9049
9050 test_116b() { # LU-2093
9051         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9052         remote_mds_nodsh && skip "remote MDS with nodsh"
9053
9054 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
9055         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
9056                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
9057         [ -z "$old_rr" ] && skip "no QOS"
9058         do_facet $SINGLEMDS lctl set_param \
9059                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
9060         mkdir -p $DIR/$tdir
9061         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
9062         createmany -o $DIR/$tdir/f- 20 || error "can't create"
9063         do_facet $SINGLEMDS lctl set_param fail_loc=0
9064         rm -rf $DIR/$tdir
9065         do_facet $SINGLEMDS lctl set_param \
9066                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
9067 }
9068 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
9069
9070 test_117() # bug 10891
9071 {
9072         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9073
9074         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
9075         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
9076         lctl set_param fail_loc=0x21e
9077         > $DIR/$tfile || error "truncate failed"
9078         lctl set_param fail_loc=0
9079         echo "Truncate succeeded."
9080         rm -f $DIR/$tfile
9081 }
9082 run_test 117 "verify osd extend =========="
9083
9084 NO_SLOW_RESENDCOUNT=4
9085 export OLD_RESENDCOUNT=""
9086 set_resend_count () {
9087         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
9088         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
9089         lctl set_param -n $PROC_RESENDCOUNT $1
9090         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
9091 }
9092
9093 # for reduce test_118* time (b=14842)
9094 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
9095
9096 # Reset async IO behavior after error case
9097 reset_async() {
9098         FILE=$DIR/reset_async
9099
9100         # Ensure all OSCs are cleared
9101         $LFS setstripe -c -1 $FILE
9102         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
9103         sync
9104         rm $FILE
9105 }
9106
9107 test_118a() #bug 11710
9108 {
9109         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9110
9111         reset_async
9112
9113         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9114         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9115         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9116
9117         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9118                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9119                 return 1;
9120         fi
9121         rm -f $DIR/$tfile
9122 }
9123 run_test 118a "verify O_SYNC works =========="
9124
9125 test_118b()
9126 {
9127         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9128         remote_ost_nodsh && skip "remote OST with nodsh"
9129
9130         reset_async
9131
9132         #define OBD_FAIL_SRV_ENOENT 0x217
9133         set_nodes_failloc "$(osts_nodes)" 0x217
9134         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9135         RC=$?
9136         set_nodes_failloc "$(osts_nodes)" 0
9137         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9138         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9139                     grep -c writeback)
9140
9141         if [[ $RC -eq 0 ]]; then
9142                 error "Must return error due to dropped pages, rc=$RC"
9143                 return 1;
9144         fi
9145
9146         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9147                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9148                 return 1;
9149         fi
9150
9151         echo "Dirty pages not leaked on ENOENT"
9152
9153         # Due to the above error the OSC will issue all RPCs syncronously
9154         # until a subsequent RPC completes successfully without error.
9155         $MULTIOP $DIR/$tfile Ow4096yc
9156         rm -f $DIR/$tfile
9157
9158         return 0
9159 }
9160 run_test 118b "Reclaim dirty pages on fatal error =========="
9161
9162 test_118c()
9163 {
9164         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9165
9166         # for 118c, restore the original resend count, LU-1940
9167         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
9168                                 set_resend_count $OLD_RESENDCOUNT
9169         remote_ost_nodsh && skip "remote OST with nodsh"
9170
9171         reset_async
9172
9173         #define OBD_FAIL_OST_EROFS               0x216
9174         set_nodes_failloc "$(osts_nodes)" 0x216
9175
9176         # multiop should block due to fsync until pages are written
9177         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9178         MULTIPID=$!
9179         sleep 1
9180
9181         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
9182                 error "Multiop failed to block on fsync, pid=$MULTIPID"
9183         fi
9184
9185         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9186                     grep -c writeback)
9187         if [[ $WRITEBACK -eq 0 ]]; then
9188                 error "No page in writeback, writeback=$WRITEBACK"
9189         fi
9190
9191         set_nodes_failloc "$(osts_nodes)" 0
9192         wait $MULTIPID
9193         RC=$?
9194         if [[ $RC -ne 0 ]]; then
9195                 error "Multiop fsync failed, rc=$RC"
9196         fi
9197
9198         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9199         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9200                     grep -c writeback)
9201         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9202                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9203         fi
9204
9205         rm -f $DIR/$tfile
9206         echo "Dirty pages flushed via fsync on EROFS"
9207         return 0
9208 }
9209 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
9210
9211 # continue to use small resend count to reduce test_118* time (b=14842)
9212 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
9213
9214 test_118d()
9215 {
9216         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9217         remote_ost_nodsh && skip "remote OST with nodsh"
9218
9219         reset_async
9220
9221         #define OBD_FAIL_OST_BRW_PAUSE_BULK
9222         set_nodes_failloc "$(osts_nodes)" 0x214
9223         # multiop should block due to fsync until pages are written
9224         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9225         MULTIPID=$!
9226         sleep 1
9227
9228         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
9229                 error "Multiop failed to block on fsync, pid=$MULTIPID"
9230         fi
9231
9232         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9233                     grep -c writeback)
9234         if [[ $WRITEBACK -eq 0 ]]; then
9235                 error "No page in writeback, writeback=$WRITEBACK"
9236         fi
9237
9238         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
9239         set_nodes_failloc "$(osts_nodes)" 0
9240
9241         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9242         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9243                     grep -c writeback)
9244         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9245                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9246         fi
9247
9248         rm -f $DIR/$tfile
9249         echo "Dirty pages gaurenteed flushed via fsync"
9250         return 0
9251 }
9252 run_test 118d "Fsync validation inject a delay of the bulk =========="
9253
9254 test_118f() {
9255         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9256
9257         reset_async
9258
9259         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
9260         lctl set_param fail_loc=0x8000040a
9261
9262         # Should simulate EINVAL error which is fatal
9263         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9264         RC=$?
9265         if [[ $RC -eq 0 ]]; then
9266                 error "Must return error due to dropped pages, rc=$RC"
9267         fi
9268
9269         lctl set_param fail_loc=0x0
9270
9271         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9272         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9273         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9274                     grep -c writeback)
9275         if [[ $LOCKED -ne 0 ]]; then
9276                 error "Locked pages remain in cache, locked=$LOCKED"
9277         fi
9278
9279         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9280                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9281         fi
9282
9283         rm -f $DIR/$tfile
9284         echo "No pages locked after fsync"
9285
9286         reset_async
9287         return 0
9288 }
9289 run_test 118f "Simulate unrecoverable OSC side error =========="
9290
9291 test_118g() {
9292         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9293
9294         reset_async
9295
9296         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
9297         lctl set_param fail_loc=0x406
9298
9299         # simulate local -ENOMEM
9300         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9301         RC=$?
9302
9303         lctl set_param fail_loc=0
9304         if [[ $RC -eq 0 ]]; then
9305                 error "Must return error due to dropped pages, rc=$RC"
9306         fi
9307
9308         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9309         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9310         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9311                         grep -c writeback)
9312         if [[ $LOCKED -ne 0 ]]; then
9313                 error "Locked pages remain in cache, locked=$LOCKED"
9314         fi
9315
9316         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9317                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9318         fi
9319
9320         rm -f $DIR/$tfile
9321         echo "No pages locked after fsync"
9322
9323         reset_async
9324         return 0
9325 }
9326 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
9327
9328 test_118h() {
9329         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9330         remote_ost_nodsh && skip "remote OST with nodsh"
9331
9332         reset_async
9333
9334         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9335         set_nodes_failloc "$(osts_nodes)" 0x20e
9336         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
9337         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9338         RC=$?
9339
9340         set_nodes_failloc "$(osts_nodes)" 0
9341         if [[ $RC -eq 0 ]]; then
9342                 error "Must return error due to dropped pages, rc=$RC"
9343         fi
9344
9345         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9346         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9347         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9348                     grep -c writeback)
9349         if [[ $LOCKED -ne 0 ]]; then
9350                 error "Locked pages remain in cache, locked=$LOCKED"
9351         fi
9352
9353         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9354                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9355         fi
9356
9357         rm -f $DIR/$tfile
9358         echo "No pages locked after fsync"
9359
9360         return 0
9361 }
9362 run_test 118h "Verify timeout in handling recoverables errors  =========="
9363
9364 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
9365
9366 test_118i() {
9367         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9368         remote_ost_nodsh && skip "remote OST with nodsh"
9369
9370         reset_async
9371
9372         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9373         set_nodes_failloc "$(osts_nodes)" 0x20e
9374
9375         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
9376         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9377         PID=$!
9378         sleep 5
9379         set_nodes_failloc "$(osts_nodes)" 0
9380
9381         wait $PID
9382         RC=$?
9383         if [[ $RC -ne 0 ]]; then
9384                 error "got error, but should be not, rc=$RC"
9385         fi
9386
9387         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9388         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9389         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9390         if [[ $LOCKED -ne 0 ]]; then
9391                 error "Locked pages remain in cache, locked=$LOCKED"
9392         fi
9393
9394         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9395                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9396         fi
9397
9398         rm -f $DIR/$tfile
9399         echo "No pages locked after fsync"
9400
9401         return 0
9402 }
9403 run_test 118i "Fix error before timeout in recoverable error  =========="
9404
9405 [ "$SLOW" = "no" ] && set_resend_count 4
9406
9407 test_118j() {
9408         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9409         remote_ost_nodsh && skip "remote OST with nodsh"
9410
9411         reset_async
9412
9413         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
9414         set_nodes_failloc "$(osts_nodes)" 0x220
9415
9416         # return -EIO from OST
9417         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9418         RC=$?
9419         set_nodes_failloc "$(osts_nodes)" 0x0
9420         if [[ $RC -eq 0 ]]; then
9421                 error "Must return error due to dropped pages, rc=$RC"
9422         fi
9423
9424         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9425         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9426         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9427         if [[ $LOCKED -ne 0 ]]; then
9428                 error "Locked pages remain in cache, locked=$LOCKED"
9429         fi
9430
9431         # in recoverable error on OST we want resend and stay until it finished
9432         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9433                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9434         fi
9435
9436         rm -f $DIR/$tfile
9437         echo "No pages locked after fsync"
9438
9439         return 0
9440 }
9441 run_test 118j "Simulate unrecoverable OST side error =========="
9442
9443 test_118k()
9444 {
9445         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9446         remote_ost_nodsh && skip "remote OSTs with nodsh"
9447
9448         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9449         set_nodes_failloc "$(osts_nodes)" 0x20e
9450         test_mkdir $DIR/$tdir
9451
9452         for ((i=0;i<10;i++)); do
9453                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
9454                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
9455                 SLEEPPID=$!
9456                 sleep 0.500s
9457                 kill $SLEEPPID
9458                 wait $SLEEPPID
9459         done
9460
9461         set_nodes_failloc "$(osts_nodes)" 0
9462         rm -rf $DIR/$tdir
9463 }
9464 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
9465
9466 test_118l() # LU-646
9467 {
9468         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9469
9470         test_mkdir $DIR/$tdir
9471         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
9472         rm -rf $DIR/$tdir
9473 }
9474 run_test 118l "fsync dir"
9475
9476 test_118m() # LU-3066
9477 {
9478         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9479
9480         test_mkdir $DIR/$tdir
9481         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
9482         rm -rf $DIR/$tdir
9483 }
9484 run_test 118m "fdatasync dir ========="
9485
9486 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
9487
9488 test_118n()
9489 {
9490         local begin
9491         local end
9492
9493         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9494         remote_ost_nodsh && skip "remote OSTs with nodsh"
9495
9496         # Sleep to avoid a cached response.
9497         #define OBD_STATFS_CACHE_SECONDS 1
9498         sleep 2
9499
9500         # Inject a 10 second delay in the OST_STATFS handler.
9501         #define OBD_FAIL_OST_STATFS_DELAY 0x242
9502         set_nodes_failloc "$(osts_nodes)" 0x242
9503
9504         begin=$SECONDS
9505         stat --file-system $MOUNT > /dev/null
9506         end=$SECONDS
9507
9508         set_nodes_failloc "$(osts_nodes)" 0
9509
9510         if ((end - begin > 20)); then
9511             error "statfs took $((end - begin)) seconds, expected 10"
9512         fi
9513 }
9514 run_test 118n "statfs() sends OST_STATFS requests in parallel"
9515
9516 test_119a() # bug 11737
9517 {
9518         BSIZE=$((512 * 1024))
9519         directio write $DIR/$tfile 0 1 $BSIZE
9520         # We ask to read two blocks, which is more than a file size.
9521         # directio will indicate an error when requested and actual
9522         # sizes aren't equeal (a normal situation in this case) and
9523         # print actual read amount.
9524         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
9525         if [ "$NOB" != "$BSIZE" ]; then
9526                 error "read $NOB bytes instead of $BSIZE"
9527         fi
9528         rm -f $DIR/$tfile
9529 }
9530 run_test 119a "Short directIO read must return actual read amount"
9531
9532 test_119b() # bug 11737
9533 {
9534         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
9535
9536         $LFS setstripe -c 2 $DIR/$tfile || error "setstripe failed"
9537         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
9538         sync
9539         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) ||
9540                 error "direct read failed"
9541         rm -f $DIR/$tfile
9542 }
9543 run_test 119b "Sparse directIO read must return actual read amount"
9544
9545 test_119c() # bug 13099
9546 {
9547         BSIZE=1048576
9548         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
9549         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
9550         rm -f $DIR/$tfile
9551 }
9552 run_test 119c "Testing for direct read hitting hole"
9553
9554 test_119d() # bug 15950
9555 {
9556         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9557
9558         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
9559         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
9560         BSIZE=1048576
9561         $LFS setstripe $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
9562         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
9563         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
9564         lctl set_param fail_loc=0x40d
9565         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
9566         pid_dio=$!
9567         sleep 1
9568         cat $DIR/$tfile > /dev/null &
9569         lctl set_param fail_loc=0
9570         pid_reads=$!
9571         wait $pid_dio
9572         log "the DIO writes have completed, now wait for the reads (should not block very long)"
9573         sleep 2
9574         [ -n "`ps h -p $pid_reads -o comm`" ] && \
9575         error "the read rpcs have not completed in 2s"
9576         rm -f $DIR/$tfile
9577         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
9578 }
9579 run_test 119d "The DIO path should try to send a new rpc once one is completed"
9580
9581 test_120a() {
9582         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9583         remote_mds_nodsh && skip "remote MDS with nodsh"
9584         test_mkdir $DIR/$tdir
9585         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9586                 skip_env "no early lock cancel on server"
9587
9588         lru_resize_disable mdc
9589         lru_resize_disable osc
9590         cancel_lru_locks mdc
9591         # asynchronous object destroy at MDT could cause bl ast to client
9592         cancel_lru_locks osc
9593
9594         stat $DIR/$tdir > /dev/null
9595         can1=$(do_facet $SINGLEMDS \
9596                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9597                awk '/ldlm_cancel/ {print $2}')
9598         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9599                awk '/ldlm_bl_callback/ {print $2}')
9600         test_mkdir -c1 $DIR/$tdir/d1
9601         can2=$(do_facet $SINGLEMDS \
9602                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9603                awk '/ldlm_cancel/ {print $2}')
9604         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9605                awk '/ldlm_bl_callback/ {print $2}')
9606         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9607         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9608         lru_resize_enable mdc
9609         lru_resize_enable osc
9610 }
9611 run_test 120a "Early Lock Cancel: mkdir test"
9612
9613 test_120b() {
9614         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9615         remote_mds_nodsh && skip "remote MDS with nodsh"
9616         test_mkdir $DIR/$tdir
9617         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9618                 skip_env "no early lock cancel on server"
9619
9620         lru_resize_disable mdc
9621         lru_resize_disable osc
9622         cancel_lru_locks mdc
9623         stat $DIR/$tdir > /dev/null
9624         can1=$(do_facet $SINGLEMDS \
9625                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9626                awk '/ldlm_cancel/ {print $2}')
9627         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9628                awk '/ldlm_bl_callback/ {print $2}')
9629         touch $DIR/$tdir/f1
9630         can2=$(do_facet $SINGLEMDS \
9631                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9632                awk '/ldlm_cancel/ {print $2}')
9633         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9634                awk '/ldlm_bl_callback/ {print $2}')
9635         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9636         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9637         lru_resize_enable mdc
9638         lru_resize_enable osc
9639 }
9640 run_test 120b "Early Lock Cancel: create test"
9641
9642 test_120c() {
9643         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9644         remote_mds_nodsh && skip "remote MDS with nodsh"
9645         test_mkdir -c1 $DIR/$tdir
9646         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9647                 skip "no early lock cancel on server"
9648
9649         lru_resize_disable mdc
9650         lru_resize_disable osc
9651         test_mkdir -c1 $DIR/$tdir/d1
9652         test_mkdir -c1 $DIR/$tdir/d2
9653         touch $DIR/$tdir/d1/f1
9654         cancel_lru_locks mdc
9655         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
9656         can1=$(do_facet $SINGLEMDS \
9657                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9658                awk '/ldlm_cancel/ {print $2}')
9659         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9660                awk '/ldlm_bl_callback/ {print $2}')
9661         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
9662         can2=$(do_facet $SINGLEMDS \
9663                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9664                awk '/ldlm_cancel/ {print $2}')
9665         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9666                awk '/ldlm_bl_callback/ {print $2}')
9667         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9668         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9669         lru_resize_enable mdc
9670         lru_resize_enable osc
9671 }
9672 run_test 120c "Early Lock Cancel: link test"
9673
9674 test_120d() {
9675         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9676         remote_mds_nodsh && skip "remote MDS with nodsh"
9677         test_mkdir -c1 $DIR/$tdir
9678         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9679                 skip_env "no early lock cancel on server"
9680
9681         lru_resize_disable mdc
9682         lru_resize_disable osc
9683         touch $DIR/$tdir
9684         cancel_lru_locks mdc
9685         stat $DIR/$tdir > /dev/null
9686         can1=$(do_facet $SINGLEMDS \
9687                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9688                awk '/ldlm_cancel/ {print $2}')
9689         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9690                awk '/ldlm_bl_callback/ {print $2}')
9691         chmod a+x $DIR/$tdir
9692         can2=$(do_facet $SINGLEMDS \
9693                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9694                awk '/ldlm_cancel/ {print $2}')
9695         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9696                awk '/ldlm_bl_callback/ {print $2}')
9697         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9698         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9699         lru_resize_enable mdc
9700         lru_resize_enable osc
9701 }
9702 run_test 120d "Early Lock Cancel: setattr test"
9703
9704 test_120e() {
9705         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9706         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9707                 skip_env "no early lock cancel on server"
9708         remote_mds_nodsh && skip "remote MDS with nodsh"
9709
9710         local dlmtrace_set=false
9711
9712         test_mkdir -c1 $DIR/$tdir
9713         lru_resize_disable mdc
9714         lru_resize_disable osc
9715         ! $LCTL get_param debug | grep -q dlmtrace &&
9716                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
9717         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
9718         cancel_lru_locks mdc
9719         cancel_lru_locks osc
9720         dd if=$DIR/$tdir/f1 of=/dev/null
9721         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
9722         # XXX client can not do early lock cancel of OST lock
9723         # during unlink (LU-4206), so cancel osc lock now.
9724         sleep 2
9725         cancel_lru_locks osc
9726         can1=$(do_facet $SINGLEMDS \
9727                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9728                awk '/ldlm_cancel/ {print $2}')
9729         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9730                awk '/ldlm_bl_callback/ {print $2}')
9731         unlink $DIR/$tdir/f1
9732         sleep 5
9733         can2=$(do_facet $SINGLEMDS \
9734                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9735                awk '/ldlm_cancel/ {print $2}')
9736         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9737                awk '/ldlm_bl_callback/ {print $2}')
9738         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
9739                 $LCTL dk $TMP/cancel.debug.txt
9740         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
9741                 $LCTL dk $TMP/blocking.debug.txt
9742         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
9743         lru_resize_enable mdc
9744         lru_resize_enable osc
9745 }
9746 run_test 120e "Early Lock Cancel: unlink test"
9747
9748 test_120f() {
9749         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9750         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9751                 skip_env "no early lock cancel on server"
9752         remote_mds_nodsh && skip "remote MDS with nodsh"
9753
9754         test_mkdir -c1 $DIR/$tdir
9755         lru_resize_disable mdc
9756         lru_resize_disable osc
9757         test_mkdir -c1 $DIR/$tdir/d1
9758         test_mkdir -c1 $DIR/$tdir/d2
9759         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
9760         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
9761         cancel_lru_locks mdc
9762         cancel_lru_locks osc
9763         dd if=$DIR/$tdir/d1/f1 of=/dev/null
9764         dd if=$DIR/$tdir/d2/f2 of=/dev/null
9765         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
9766         # XXX client can not do early lock cancel of OST lock
9767         # during rename (LU-4206), so cancel osc lock now.
9768         sleep 2
9769         cancel_lru_locks osc
9770         can1=$(do_facet $SINGLEMDS \
9771                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9772                awk '/ldlm_cancel/ {print $2}')
9773         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9774                awk '/ldlm_bl_callback/ {print $2}')
9775         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
9776         sleep 5
9777         can2=$(do_facet $SINGLEMDS \
9778                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9779                awk '/ldlm_cancel/ {print $2}')
9780         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9781                awk '/ldlm_bl_callback/ {print $2}')
9782         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9783         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9784         lru_resize_enable mdc
9785         lru_resize_enable osc
9786 }
9787 run_test 120f "Early Lock Cancel: rename test"
9788
9789 test_120g() {
9790         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9791         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9792                 skip_env "no early lock cancel on server"
9793         remote_mds_nodsh && skip "remote MDS with nodsh"
9794
9795         lru_resize_disable mdc
9796         lru_resize_disable osc
9797         count=10000
9798         echo create $count files
9799         test_mkdir $DIR/$tdir
9800         cancel_lru_locks mdc
9801         cancel_lru_locks osc
9802         t0=$(date +%s)
9803
9804         can0=$(do_facet $SINGLEMDS \
9805                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9806                awk '/ldlm_cancel/ {print $2}')
9807         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9808                awk '/ldlm_bl_callback/ {print $2}')
9809         createmany -o $DIR/$tdir/f $count
9810         sync
9811         can1=$(do_facet $SINGLEMDS \
9812                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9813                awk '/ldlm_cancel/ {print $2}')
9814         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9815                awk '/ldlm_bl_callback/ {print $2}')
9816         t1=$(date +%s)
9817         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
9818         echo rm $count files
9819         rm -r $DIR/$tdir
9820         sync
9821         can2=$(do_facet $SINGLEMDS \
9822                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9823                awk '/ldlm_cancel/ {print $2}')
9824         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9825                awk '/ldlm_bl_callback/ {print $2}')
9826         t2=$(date +%s)
9827         echo total: $count removes in $((t2-t1))
9828         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
9829         sleep 2
9830         # wait for commitment of removal
9831         lru_resize_enable mdc
9832         lru_resize_enable osc
9833 }
9834 run_test 120g "Early Lock Cancel: performance test"
9835
9836 test_121() { #bug #10589
9837         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9838
9839         rm -rf $DIR/$tfile
9840         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
9841 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
9842         lctl set_param fail_loc=0x310
9843         cancel_lru_locks osc > /dev/null
9844         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
9845         lctl set_param fail_loc=0
9846         [[ $reads -eq $writes ]] ||
9847                 error "read $reads blocks, must be $writes blocks"
9848 }
9849 run_test 121 "read cancel race ========="
9850
9851 test_123a() { # was test 123, statahead(bug 11401)
9852         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9853
9854         SLOWOK=0
9855         if ! grep -q "processor.*: 1" /proc/cpuinfo; then
9856                 log "testing UP system. Performance may be lower than expected."
9857                 SLOWOK=1
9858         fi
9859
9860         rm -rf $DIR/$tdir
9861         test_mkdir $DIR/$tdir
9862         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
9863         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
9864         MULT=10
9865         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
9866                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
9867
9868                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
9869                 lctl set_param -n llite.*.statahead_max 0
9870                 lctl get_param llite.*.statahead_max
9871                 cancel_lru_locks mdc
9872                 cancel_lru_locks osc
9873                 stime=`date +%s`
9874                 time ls -l $DIR/$tdir | wc -l
9875                 etime=`date +%s`
9876                 delta=$((etime - stime))
9877                 log "ls $i files without statahead: $delta sec"
9878                 lctl set_param llite.*.statahead_max=$max
9879
9880                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
9881                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
9882                 cancel_lru_locks mdc
9883                 cancel_lru_locks osc
9884                 stime=`date +%s`
9885                 time ls -l $DIR/$tdir | wc -l
9886                 etime=`date +%s`
9887                 delta_sa=$((etime - stime))
9888                 log "ls $i files with statahead: $delta_sa sec"
9889                 lctl get_param -n llite.*.statahead_stats
9890                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
9891
9892                 [[ $swrong -lt $ewrong ]] &&
9893                         log "statahead was stopped, maybe too many locks held!"
9894                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
9895
9896                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
9897                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
9898                     lctl set_param -n llite.*.statahead_max 0
9899                     lctl get_param llite.*.statahead_max
9900                     cancel_lru_locks mdc
9901                     cancel_lru_locks osc
9902                     stime=`date +%s`
9903                     time ls -l $DIR/$tdir | wc -l
9904                     etime=`date +%s`
9905                     delta=$((etime - stime))
9906                     log "ls $i files again without statahead: $delta sec"
9907                     lctl set_param llite.*.statahead_max=$max
9908                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
9909                         if [  $SLOWOK -eq 0 ]; then
9910                                 error "ls $i files is slower with statahead!"
9911                         else
9912                                 log "ls $i files is slower with statahead!"
9913                         fi
9914                         break
9915                     fi
9916                 fi
9917
9918                 [ $delta -gt 20 ] && break
9919                 [ $delta -gt 8 ] && MULT=$((50 / delta))
9920                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
9921         done
9922         log "ls done"
9923
9924         stime=`date +%s`
9925         rm -r $DIR/$tdir
9926         sync
9927         etime=`date +%s`
9928         delta=$((etime - stime))
9929         log "rm -r $DIR/$tdir/: $delta seconds"
9930         log "rm done"
9931         lctl get_param -n llite.*.statahead_stats
9932 }
9933 run_test 123a "verify statahead work"
9934
9935 test_123b () { # statahead(bug 15027)
9936         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9937
9938         test_mkdir $DIR/$tdir
9939         createmany -o $DIR/$tdir/$tfile-%d 1000
9940
9941         cancel_lru_locks mdc
9942         cancel_lru_locks osc
9943
9944 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
9945         lctl set_param fail_loc=0x80000803
9946         ls -lR $DIR/$tdir > /dev/null
9947         log "ls done"
9948         lctl set_param fail_loc=0x0
9949         lctl get_param -n llite.*.statahead_stats
9950         rm -r $DIR/$tdir
9951         sync
9952
9953 }
9954 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
9955
9956 test_124a() {
9957         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9958         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
9959                 skip_env "no lru resize on server"
9960
9961         local NR=2000
9962
9963         test_mkdir $DIR/$tdir
9964
9965         log "create $NR files at $DIR/$tdir"
9966         createmany -o $DIR/$tdir/f $NR ||
9967                 error "failed to create $NR files in $DIR/$tdir"
9968
9969         cancel_lru_locks mdc
9970         ls -l $DIR/$tdir > /dev/null
9971
9972         local NSDIR=""
9973         local LRU_SIZE=0
9974         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
9975                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
9976                 LRU_SIZE=$($LCTL get_param -n $PARAM)
9977                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
9978                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
9979                         log "NSDIR=$NSDIR"
9980                         log "NS=$(basename $NSDIR)"
9981                         break
9982                 fi
9983         done
9984
9985         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
9986                 skip "Not enough cached locks created!"
9987         fi
9988         log "LRU=$LRU_SIZE"
9989
9990         local SLEEP=30
9991
9992         # We know that lru resize allows one client to hold $LIMIT locks
9993         # for 10h. After that locks begin to be killed by client.
9994         local MAX_HRS=10
9995         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
9996         log "LIMIT=$LIMIT"
9997         if [ $LIMIT -lt $LRU_SIZE ]; then
9998                 skip "Limit is too small $LIMIT"
9999         fi
10000
10001         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
10002         # killing locks. Some time was spent for creating locks. This means
10003         # that up to the moment of sleep finish we must have killed some of
10004         # them (10-100 locks). This depends on how fast ther were created.
10005         # Many of them were touched in almost the same moment and thus will
10006         # be killed in groups.
10007         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
10008
10009         # Use $LRU_SIZE_B here to take into account real number of locks
10010         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
10011         local LRU_SIZE_B=$LRU_SIZE
10012         log "LVF=$LVF"
10013         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
10014         log "OLD_LVF=$OLD_LVF"
10015         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
10016
10017         # Let's make sure that we really have some margin. Client checks
10018         # cached locks every 10 sec.
10019         SLEEP=$((SLEEP+20))
10020         log "Sleep ${SLEEP} sec"
10021         local SEC=0
10022         while ((SEC<$SLEEP)); do
10023                 echo -n "..."
10024                 sleep 5
10025                 SEC=$((SEC+5))
10026                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
10027                 echo -n "$LRU_SIZE"
10028         done
10029         echo ""
10030         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
10031         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
10032
10033         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
10034                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
10035                 unlinkmany $DIR/$tdir/f $NR
10036                 return
10037         }
10038
10039         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
10040         log "unlink $NR files at $DIR/$tdir"
10041         unlinkmany $DIR/$tdir/f $NR
10042 }
10043 run_test 124a "lru resize ======================================="
10044
10045 get_max_pool_limit()
10046 {
10047         local limit=$($LCTL get_param \
10048                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
10049         local max=0
10050         for l in $limit; do
10051                 if [[ $l -gt $max ]]; then
10052                         max=$l
10053                 fi
10054         done
10055         echo $max
10056 }
10057
10058 test_124b() {
10059         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10060         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
10061                 skip_env "no lru resize on server"
10062
10063         LIMIT=$(get_max_pool_limit)
10064
10065         NR=$(($(default_lru_size)*20))
10066         if [[ $NR -gt $LIMIT ]]; then
10067                 log "Limit lock number by $LIMIT locks"
10068                 NR=$LIMIT
10069         fi
10070
10071         IFree=$(mdsrate_inodes_available)
10072         if [ $IFree -lt $NR ]; then
10073                 log "Limit lock number by $IFree inodes"
10074                 NR=$IFree
10075         fi
10076
10077         lru_resize_disable mdc
10078         test_mkdir -p $DIR/$tdir/disable_lru_resize
10079
10080         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
10081         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
10082         cancel_lru_locks mdc
10083         stime=`date +%s`
10084         PID=""
10085         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
10086         PID="$PID $!"
10087         sleep 2
10088         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
10089         PID="$PID $!"
10090         sleep 2
10091         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
10092         PID="$PID $!"
10093         wait $PID
10094         etime=`date +%s`
10095         nolruresize_delta=$((etime-stime))
10096         log "ls -la time: $nolruresize_delta seconds"
10097         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
10098         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
10099
10100         lru_resize_enable mdc
10101         test_mkdir -p $DIR/$tdir/enable_lru_resize
10102
10103         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
10104         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
10105         cancel_lru_locks mdc
10106         stime=`date +%s`
10107         PID=""
10108         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10109         PID="$PID $!"
10110         sleep 2
10111         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10112         PID="$PID $!"
10113         sleep 2
10114         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10115         PID="$PID $!"
10116         wait $PID
10117         etime=`date +%s`
10118         lruresize_delta=$((etime-stime))
10119         log "ls -la time: $lruresize_delta seconds"
10120         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
10121
10122         if [ $lruresize_delta -gt $nolruresize_delta ]; then
10123                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
10124         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
10125                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
10126         else
10127                 log "lru resize performs the same with no lru resize"
10128         fi
10129         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
10130 }
10131 run_test 124b "lru resize (performance test) ======================="
10132
10133 test_124c() {
10134         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10135         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
10136                 skip_env "no lru resize on server"
10137
10138         # cache ununsed locks on client
10139         local nr=100
10140         cancel_lru_locks mdc
10141         test_mkdir $DIR/$tdir
10142         createmany -o $DIR/$tdir/f $nr ||
10143                 error "failed to create $nr files in $DIR/$tdir"
10144         ls -l $DIR/$tdir > /dev/null
10145
10146         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
10147         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
10148         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
10149         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
10150         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
10151
10152         # set lru_max_age to 1 sec
10153         $LCTL set_param $nsdir.lru_max_age=1000 # milliseconds
10154         echo "sleep $((recalc_p * 2)) seconds..."
10155         sleep $((recalc_p * 2))
10156
10157         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
10158         # restore lru_max_age
10159         $LCTL set_param -n $nsdir.lru_max_age $max_age
10160         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
10161         unlinkmany $DIR/$tdir/f $nr
10162 }
10163 run_test 124c "LRUR cancel very aged locks"
10164
10165 test_125() { # 13358
10166         $LCTL get_param -n llite.*.client_type | grep -q local ||
10167                 skip "must run as local client"
10168         $LCTL get_param -n mdc.*-mdc-*.connect_flags | grep -q acl ||
10169                 skip_env "must have acl enabled"
10170         [ -z "$(which setfacl)" ] && skip_env "must have setfacl tool"
10171
10172         test_mkdir $DIR/$tdir
10173         $LFS setstripe -S 65536 -c -1 $DIR/$tdir || error "setstripe failed"
10174         setfacl -R -m u:bin:rwx $DIR/$tdir || error "setfacl $DIR/$tdir failed"
10175         ls -ld $DIR/$tdir || error "cannot access $DIR/$tdir"
10176 }
10177 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
10178
10179 test_126() { # bug 12829/13455
10180         $GSS && skip_env "must run as gss disabled"
10181         $LCTL get_param -n llite.*.client_type | grep -q local ||
10182                 skip "must run as local client"
10183         [ "$UID" != 0 ] && skip "must run as root, not UID $UID"
10184
10185         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
10186         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
10187         rm -f $DIR/$tfile
10188         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
10189 }
10190 run_test 126 "check that the fsgid provided by the client is taken into account"
10191
10192 test_127a() { # bug 15521
10193         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10194
10195         $LFS setstripe -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
10196         $LCTL set_param osc.*.stats=0
10197         FSIZE=$((2048 * 1024))
10198         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
10199         cancel_lru_locks osc
10200         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
10201
10202         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
10203         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
10204                 echo "got $COUNT $NAME"
10205                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
10206                 eval $NAME=$COUNT || error "Wrong proc format"
10207
10208                 case $NAME in
10209                         read_bytes|write_bytes)
10210                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
10211                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
10212                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
10213                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
10214                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
10215                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
10216                                 error "sumsquare is too small: $SUMSQ"
10217                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
10218                                 error "sumsquare is too big: $SUMSQ"
10219                         ;;
10220                         *) ;;
10221                 esac
10222         done < $DIR/${tfile}.tmp
10223
10224         #check that we actually got some stats
10225         [ "$read_bytes" ] || error "Missing read_bytes stats"
10226         [ "$write_bytes" ] || error "Missing write_bytes stats"
10227         [ "$read_bytes" != 0 ] || error "no read done"
10228         [ "$write_bytes" != 0 ] || error "no write done"
10229 }
10230 run_test 127a "verify the client stats are sane"
10231
10232 test_127b() { # bug LU-333
10233         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10234         local name count samp unit min max sum sumsq
10235
10236         $LCTL set_param llite.*.stats=0
10237
10238         # perform 2 reads and writes so MAX is different from SUM.
10239         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1
10240         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1
10241         cancel_lru_locks osc
10242         dd if=$DIR/$tfile of=/dev/null bs=$PAGE_SIZE count=1
10243         dd if=$DIR/$tfile of=/dev/null bs=$PAGE_SIZE count=1
10244
10245         $LCTL get_param llite.*.stats | grep samples > $TMP/$tfile.tmp
10246         while read name count samp unit min max sum sumsq; do
10247                 echo "got $count $name"
10248                 eval $name=$count || error "Wrong proc format"
10249
10250                 case $name in
10251                 read_bytes)
10252                         [ $count -ne 2 ] && error "count is not 2: $count"
10253                         [ $min -ne $PAGE_SIZE ] &&
10254                                 error "min is not $PAGE_SIZE: $min"
10255                         [ $max -ne $PAGE_SIZE ] &&
10256                                 error "max is incorrect: $max"
10257                         [ $sum -ne $((PAGE_SIZE * 2)) ] &&
10258                                 error "sum is wrong: $sum"
10259                         ;;
10260                 write_bytes)
10261                         [ $count -ne 2 ] && error "count is not 2: $count"
10262                         [ $min -ne $PAGE_SIZE ] &&
10263                                 error "min is not $PAGE_SIZE: $min"
10264                         [ $max -ne $PAGE_SIZE ] &&
10265                                 error "max is incorrect: $max"
10266                         [ $sum -ne $((PAGE_SIZE * 2)) ] &&
10267                                 error "sum is wrong: $sum"
10268                         ;;
10269                 *) ;;
10270                 esac
10271         done < $TMP/$tfile.tmp
10272
10273         #check that we actually got some stats
10274         [ "$read_bytes" ] || error "Missing read_bytes stats"
10275         [ "$write_bytes" ] || error "Missing write_bytes stats"
10276         [ "$read_bytes" != 0 ] || error "no read done"
10277         [ "$write_bytes" != 0 ] || error "no write done"
10278
10279         rm -f $TMP/${tfile}.tmp
10280 }
10281 run_test 127b "verify the llite client stats are sane"
10282
10283 test_128() { # bug 15212
10284         touch $DIR/$tfile
10285         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
10286                 find $DIR/$tfile
10287                 find $DIR/$tfile
10288         EOF
10289
10290         result=$(grep error $TMP/$tfile.log)
10291         rm -f $DIR/$tfile $TMP/$tfile.log
10292         [ -z "$result" ] ||
10293                 error "consecutive find's under interactive lfs failed"
10294 }
10295 run_test 128 "interactive lfs for 2 consecutive find's"
10296
10297 set_dir_limits () {
10298         local mntdev
10299         local canondev
10300         local node
10301
10302         local ldproc=/proc/fs/ldiskfs
10303         local facets=$(get_facets MDS)
10304
10305         for facet in ${facets//,/ }; do
10306                 canondev=$(ldiskfs_canon \
10307                            *.$(convert_facet2label $facet).mntdev $facet)
10308                 do_facet $facet "test -e $ldproc/$canondev/max_dir_size" ||
10309                         ldproc=/sys/fs/ldiskfs
10310                 do_facet $facet "echo $1 >$ldproc/$canondev/max_dir_size"
10311                 do_facet $facet "echo $2 >$ldproc/$canondev/warning_dir_size"
10312         done
10313 }
10314
10315 check_mds_dmesg() {
10316         local facets=$(get_facets MDS)
10317         for facet in ${facets//,/ }; do
10318                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
10319         done
10320         return 1
10321 }
10322
10323 test_129() {
10324         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10325         [[ $MDS1_VERSION -ge $(version_code 2.5.56) ]] ||
10326                 skip "Need MDS version with at least 2.5.56"
10327         if [ "$mds1_FSTYPE" != ldiskfs ]; then
10328                 skip_env "ldiskfs only test"
10329         fi
10330         remote_mds_nodsh && skip "remote MDS with nodsh"
10331
10332         local ENOSPC=28
10333         local EFBIG=27
10334         local has_warning=false
10335
10336         rm -rf $DIR/$tdir
10337         mkdir -p $DIR/$tdir
10338
10339         # block size of mds1
10340         local maxsize=$(($($LCTL get_param -n mdc.*MDT0000*.blocksize) * 5))
10341         set_dir_limits $maxsize $maxsize
10342         local dirsize=$(stat -c%s "$DIR/$tdir")
10343         local nfiles=0
10344         while [[ $dirsize -le $maxsize ]]; do
10345                 $MULTIOP $DIR/$tdir/file_base_$nfiles Oc
10346                 rc=$?
10347                 if ! $has_warning; then
10348                         check_mds_dmesg '"is approaching"' && has_warning=true
10349                 fi
10350                 # check two errors:
10351                 # ENOSPC for new ext4 max_dir_size (kernel commit df981d03ee)
10352                 # EFBIG for previous versions included in ldiskfs series
10353                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
10354                         set_dir_limits 0 0
10355                         echo "return code $rc received as expected"
10356
10357                         createmany -o $DIR/$tdir/file_extra_$nfiles. 5 ||
10358                                 error_exit "create failed w/o dir size limit"
10359
10360                         check_mds_dmesg '"has reached"' ||
10361                                 error_exit "reached message should be output"
10362
10363                         [ $has_warning = "false" ] &&
10364                                 error_exit "warning message should be output"
10365
10366                         dirsize=$(stat -c%s "$DIR/$tdir")
10367
10368                         [[ $dirsize -ge $maxsize ]] && return 0
10369                         error_exit "current dir size $dirsize, " \
10370                                    "previous limit $maxsize"
10371                 elif [ $rc -ne 0 ]; then
10372                         set_dir_limits 0 0
10373                         error_exit "return $rc received instead of expected " \
10374                                    "$EFBIG or $ENOSPC, files in dir $dirsize"
10375                 fi
10376                 nfiles=$((nfiles + 1))
10377                 dirsize=$(stat -c%s "$DIR/$tdir")
10378         done
10379
10380         set_dir_limits 0 0
10381         error "exceeded dir size limit $maxsize($MDSCOUNT) : $dirsize bytes"
10382 }
10383 run_test 129 "test directory size limit ========================"
10384
10385 OLDIFS="$IFS"
10386 cleanup_130() {
10387         trap 0
10388         IFS="$OLDIFS"
10389 }
10390
10391 test_130a() {
10392         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10393         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10394
10395         trap cleanup_130 EXIT RETURN
10396
10397         local fm_file=$DIR/$tfile
10398         $LFS setstripe -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
10399         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
10400                 error "dd failed for $fm_file"
10401
10402         # LU-1795: test filefrag/FIEMAP once, even if unsupported
10403         filefrag -ves $fm_file
10404         RC=$?
10405         [ "$(facet_fstype ost$(($($LFS getstripe -i $fm_file) + 1)))" = "zfs" ] &&
10406                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10407         [ $RC != 0 ] && error "filefrag $fm_file failed"
10408
10409         filefrag_op=$(filefrag -ve -k $fm_file |
10410                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10411         lun=$($LFS getstripe -i $fm_file)
10412
10413         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
10414         IFS=$'\n'
10415         tot_len=0
10416         for line in $filefrag_op
10417         do
10418                 frag_lun=`echo $line | cut -d: -f5`
10419                 ext_len=`echo $line | cut -d: -f4`
10420                 if (( $frag_lun != $lun )); then
10421                         cleanup_130
10422                         error "FIEMAP on 1-stripe file($fm_file) failed"
10423                         return
10424                 fi
10425                 (( tot_len += ext_len ))
10426         done
10427
10428         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
10429                 cleanup_130
10430                 error "FIEMAP on 1-stripe file($fm_file) failed;"
10431                 return
10432         fi
10433
10434         cleanup_130
10435
10436         echo "FIEMAP on single striped file succeeded"
10437 }
10438 run_test 130a "FIEMAP (1-stripe file)"
10439
10440 test_130b() {
10441         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >= 2 OSTs"
10442
10443         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10444         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10445
10446         trap cleanup_130 EXIT RETURN
10447
10448         local fm_file=$DIR/$tfile
10449         $LFS setstripe -S 65536 -c $OSTCOUNT $fm_file ||
10450                         error "setstripe on $fm_file"
10451         [ "$(facet_fstype ost$(($($LFS getstripe -i $fm_file) + 1)))" = "zfs" ] &&
10452                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10453
10454         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
10455                 error "dd failed on $fm_file"
10456
10457         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10458         filefrag_op=$(filefrag -ve -k $fm_file |
10459                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10460
10461         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10462                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10463
10464         IFS=$'\n'
10465         tot_len=0
10466         num_luns=1
10467         for line in $filefrag_op
10468         do
10469                 frag_lun=$(echo $line | cut -d: -f5 |
10470                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10471                 ext_len=$(echo $line | cut -d: -f4)
10472                 if (( $frag_lun != $last_lun )); then
10473                         if (( tot_len != 1024 )); then
10474                                 cleanup_130
10475                                 error "FIEMAP on $fm_file failed; returned " \
10476                                 "len $tot_len for OST $last_lun instead of 1024"
10477                                 return
10478                         else
10479                                 (( num_luns += 1 ))
10480                                 tot_len=0
10481                         fi
10482                 fi
10483                 (( tot_len += ext_len ))
10484                 last_lun=$frag_lun
10485         done
10486         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
10487                 cleanup_130
10488                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10489                         "luns or wrong len for OST $last_lun"
10490                 return
10491         fi
10492
10493         cleanup_130
10494
10495         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
10496 }
10497 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
10498
10499 test_130c() {
10500         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
10501
10502         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10503         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10504
10505         trap cleanup_130 EXIT RETURN
10506
10507         local fm_file=$DIR/$tfile
10508         $LFS setstripe -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
10509         [ "$(facet_fstype ost$(($($LFS getstripe -i $fm_file) + 1)))" = "zfs" ] &&
10510                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10511
10512         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
10513                         error "dd failed on $fm_file"
10514
10515         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10516         filefrag_op=$(filefrag -ve -k $fm_file |
10517                 sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10518
10519         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10520                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10521
10522         IFS=$'\n'
10523         tot_len=0
10524         num_luns=1
10525         for line in $filefrag_op
10526         do
10527                 frag_lun=$(echo $line | cut -d: -f5 |
10528                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10529                 ext_len=$(echo $line | cut -d: -f4)
10530                 if (( $frag_lun != $last_lun )); then
10531                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
10532                         if (( logical != 512 )); then
10533                                 cleanup_130
10534                                 error "FIEMAP on $fm_file failed; returned " \
10535                                 "logical start for lun $logical instead of 512"
10536                                 return
10537                         fi
10538                         if (( tot_len != 512 )); then
10539                                 cleanup_130
10540                                 error "FIEMAP on $fm_file failed; returned " \
10541                                 "len $tot_len for OST $last_lun instead of 1024"
10542                                 return
10543                         else
10544                                 (( num_luns += 1 ))
10545                                 tot_len=0
10546                         fi
10547                 fi
10548                 (( tot_len += ext_len ))
10549                 last_lun=$frag_lun
10550         done
10551         if (( num_luns != 2 || tot_len != 512 )); then
10552                 cleanup_130
10553                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10554                         "luns or wrong len for OST $last_lun"
10555                 return
10556         fi
10557
10558         cleanup_130
10559
10560         echo "FIEMAP on 2-stripe file with hole succeeded"
10561 }
10562 run_test 130c "FIEMAP (2-stripe file with hole)"
10563
10564 test_130d() {
10565         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
10566
10567         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10568         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10569
10570         trap cleanup_130 EXIT RETURN
10571
10572         local fm_file=$DIR/$tfile
10573         $LFS setstripe -S 65536 -c $OSTCOUNT $fm_file ||
10574                         error "setstripe on $fm_file"
10575         [ "$(facet_fstype ost$(($($LFS getstripe -i $fm_file) + 1)))" = "zfs" ] &&
10576                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10577
10578         local actual_stripe_count=$($LFS getstripe -c $fm_file)
10579         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripe_count ||
10580                 error "dd failed on $fm_file"
10581
10582         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10583         filefrag_op=$(filefrag -ve -k $fm_file |
10584                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10585
10586         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10587                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10588
10589         IFS=$'\n'
10590         tot_len=0
10591         num_luns=1
10592         for line in $filefrag_op
10593         do
10594                 frag_lun=$(echo $line | cut -d: -f5 |
10595                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10596                 ext_len=$(echo $line | cut -d: -f4)
10597                 if (( $frag_lun != $last_lun )); then
10598                         if (( tot_len != 1024 )); then
10599                                 cleanup_130
10600                                 error "FIEMAP on $fm_file failed; returned " \
10601                                 "len $tot_len for OST $last_lun instead of 1024"
10602                                 return
10603                         else
10604                                 (( num_luns += 1 ))
10605                                 tot_len=0
10606                         fi
10607                 fi
10608                 (( tot_len += ext_len ))
10609                 last_lun=$frag_lun
10610         done
10611         if (( num_luns != actual_stripe_count || tot_len != 1024 )); then
10612                 cleanup_130
10613                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10614                         "luns or wrong len for OST $last_lun"
10615                 return
10616         fi
10617
10618         cleanup_130
10619
10620         echo "FIEMAP on N-stripe file succeeded"
10621 }
10622 run_test 130d "FIEMAP (N-stripe file)"
10623
10624 test_130e() {
10625         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
10626
10627         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10628         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10629
10630         trap cleanup_130 EXIT RETURN
10631
10632         local fm_file=$DIR/$tfile
10633         $LFS setstripe -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
10634         [ "$(facet_fstype ost$(($($LFS getstripe -i $fm_file) + 1)))" = "zfs" ] &&
10635                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10636
10637         NUM_BLKS=512
10638         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
10639         for ((i = 0; i < $NUM_BLKS; i++))
10640         do
10641                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
10642         done
10643
10644         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10645         filefrag_op=$(filefrag -ve -k $fm_file |
10646                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10647
10648         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10649                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10650
10651         IFS=$'\n'
10652         tot_len=0
10653         num_luns=1
10654         for line in $filefrag_op
10655         do
10656                 frag_lun=$(echo $line | cut -d: -f5 |
10657                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10658                 ext_len=$(echo $line | cut -d: -f4)
10659                 if (( $frag_lun != $last_lun )); then
10660                         if (( tot_len != $EXPECTED_LEN )); then
10661                                 cleanup_130
10662                                 error "FIEMAP on $fm_file failed; returned " \
10663                                 "len $tot_len for OST $last_lun instead " \
10664                                 "of $EXPECTED_LEN"
10665                                 return
10666                         else
10667                                 (( num_luns += 1 ))
10668                                 tot_len=0
10669                         fi
10670                 fi
10671                 (( tot_len += ext_len ))
10672                 last_lun=$frag_lun
10673         done
10674         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
10675                 cleanup_130
10676                 error "FIEMAP on $fm_file failed; returned wrong number " \
10677                         "of luns or wrong len for OST $last_lun"
10678                 return
10679         fi
10680
10681         cleanup_130
10682
10683         echo "FIEMAP with continuation calls succeeded"
10684 }
10685 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
10686
10687 test_130f() {
10688         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10689         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10690
10691         local fm_file=$DIR/$tfile
10692         $MULTIOP $fm_file oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T33554432c ||
10693                 error "multiop create with lov_delay_create on $fm_file"
10694
10695         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10696         filefrag_extents=$(filefrag -vek $fm_file |
10697                            awk '/extents? found/ { print $2 }')
10698         if [[ "$filefrag_extents" != "0" ]]; then
10699                 error "FIEMAP on $fm_file failed; " \
10700                       "returned $filefrag_extents expected 0"
10701         fi
10702
10703         rm -f $fm_file
10704 }
10705 run_test 130f "FIEMAP (unstriped file)"
10706
10707 # Test for writev/readv
10708 test_131a() {
10709         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 ||
10710                 error "writev test failed"
10711         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 ||
10712                 error "readv failed"
10713         rm -f $DIR/$tfile
10714 }
10715 run_test 131a "test iov's crossing stripe boundary for writev/readv"
10716
10717 test_131b() {
10718         local fsize=$((524288 + 1048576 + 1572864))
10719         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 &&
10720                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
10721                         error "append writev test failed"
10722
10723         ((fsize += 1572864 + 1048576))
10724         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 &&
10725                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
10726                         error "append writev test failed"
10727         rm -f $DIR/$tfile
10728 }
10729 run_test 131b "test append writev"
10730
10731 test_131c() {
10732         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
10733         error "NOT PASS"
10734 }
10735 run_test 131c "test read/write on file w/o objects"
10736
10737 test_131d() {
10738         rwv -f $DIR/$tfile -w -n 1 1572864
10739         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
10740         if [ "$NOB" != 1572864 ]; then
10741                 error "Short read filed: read $NOB bytes instead of 1572864"
10742         fi
10743         rm -f $DIR/$tfile
10744 }
10745 run_test 131d "test short read"
10746
10747 test_131e() {
10748         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
10749         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
10750         error "read hitting hole failed"
10751         rm -f $DIR/$tfile
10752 }
10753 run_test 131e "test read hitting hole"
10754
10755 check_stats() {
10756         local facet=$1
10757         local op=$2
10758         local want=${3:-0}
10759         local res
10760
10761         case $facet in
10762         mds*) res=$(do_facet $facet \
10763                    $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$op")
10764                  ;;
10765         ost*) res=$(do_facet $facet \
10766                    $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$op")
10767                  ;;
10768         *) error "Wrong facet '$facet'" ;;
10769         esac
10770         [ "$res" ] || error "The counter for $op on $facet was not incremented"
10771         # if the argument $3 is zero, it means any stat increment is ok.
10772         if [[ $want -gt 0 ]]; then
10773                 local count=$(echo $res | awk '{ print $2 }')
10774                 [[ $count -ne $want ]] &&
10775                         error "The $op counter on $facet is $count, not $want"
10776         fi
10777 }
10778
10779 test_133a() {
10780         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10781         remote_ost_nodsh && skip "remote OST with nodsh"
10782         remote_mds_nodsh && skip "remote MDS with nodsh"
10783         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
10784                 skip_env "MDS doesn't support rename stats"
10785
10786         local testdir=$DIR/${tdir}/stats_testdir
10787
10788         mkdir -p $DIR/${tdir}
10789
10790         # clear stats.
10791         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10792         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10793
10794         # verify mdt stats first.
10795         mkdir ${testdir} || error "mkdir failed"
10796         check_stats $SINGLEMDS "mkdir" 1
10797         touch ${testdir}/${tfile} || error "touch failed"
10798         check_stats $SINGLEMDS "open" 1
10799         check_stats $SINGLEMDS "close" 1
10800         [ $MDS1_VERSION -ge $(version_code 2.8.54) ] && {
10801                 mknod ${testdir}/${tfile}-pipe p || error "mknod failed"
10802                 check_stats $SINGLEMDS "mknod" 2
10803         }
10804         rm -f ${testdir}/${tfile}-pipe || error "pipe remove failed"
10805         check_stats $SINGLEMDS "unlink" 1
10806         rm -f ${testdir}/${tfile} || error "file remove failed"
10807         check_stats $SINGLEMDS "unlink" 2
10808
10809         # remove working dir and check mdt stats again.
10810         rmdir ${testdir} || error "rmdir failed"
10811         check_stats $SINGLEMDS "rmdir" 1
10812
10813         local testdir1=$DIR/${tdir}/stats_testdir1
10814         mkdir -p ${testdir}
10815         mkdir -p ${testdir1}
10816         touch ${testdir1}/test1
10817         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
10818         check_stats $SINGLEMDS "crossdir_rename" 1
10819
10820         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
10821         check_stats $SINGLEMDS "samedir_rename" 1
10822
10823         rm -rf $DIR/${tdir}
10824 }
10825 run_test 133a "Verifying MDT stats ========================================"
10826
10827 test_133b() {
10828         local res
10829
10830         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10831         remote_ost_nodsh && skip "remote OST with nodsh"
10832         remote_mds_nodsh && skip "remote MDS with nodsh"
10833
10834         local testdir=$DIR/${tdir}/stats_testdir
10835
10836         mkdir -p ${testdir} || error "mkdir failed"
10837         touch ${testdir}/${tfile} || error "touch failed"
10838         cancel_lru_locks mdc
10839
10840         # clear stats.
10841         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10842         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10843
10844         # extra mdt stats verification.
10845         chmod 444 ${testdir}/${tfile} || error "chmod failed"
10846         check_stats $SINGLEMDS "setattr" 1
10847         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10848         if [ $MDS1_VERSION -ne $(version_code 2.2.0) ]
10849         then            # LU-1740
10850                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
10851                 check_stats $SINGLEMDS "getattr" 1
10852         fi
10853         rm -rf $DIR/${tdir}
10854
10855         # when DNE is enabled, MDT uses STATFS RPC to ping other targets
10856         # so the check below is not reliable
10857         [ $MDSCOUNT -eq 1 ] || return 0
10858
10859         # Sleep to avoid a cached response.
10860         #define OBD_STATFS_CACHE_SECONDS 1
10861         sleep 2
10862         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10863         do_facet ost1 $LCTL set_param obdfilter.*.exports.*.stats=clear
10864         $LFS df || error "lfs failed"
10865         check_stats $SINGLEMDS "statfs" 1
10866
10867         # check aggregated statfs (LU-10018)
10868         [ $MDS1_VERSION -lt $(version_code 2.11.54) ] &&
10869                 return 0
10870         [ $CLIENT_VERSION -lt $(version_code 2.11.54) ] &&
10871                 return 0
10872         sleep 2
10873         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10874         do_facet ost1 $LCTL set_param obdfilter.*.exports.*.stats=clear
10875         df $DIR
10876         check_stats $SINGLEMDS "statfs" 1
10877
10878         # We want to check that the client didn't send OST_STATFS to
10879         # ost1 but the MDT also uses OST_STATFS for precreate. So some
10880         # extra care is needed here.
10881         if remote_mds; then
10882                 local nid=$($LCTL list_nids | head -1 | sed  "s/\./\\\./g")
10883                 local param="obdfilter.$FSNAME-OST0000.exports.'$nid'.stats"
10884
10885                 res=$(do_facet ost1 $LCTL get_param $param | grep statfs)
10886                 [ "$res" ] && error "OST got STATFS"
10887         fi
10888
10889         return 0
10890 }
10891 run_test 133b "Verifying extra MDT stats =================================="
10892
10893 test_133c() {
10894         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10895         remote_ost_nodsh && skip "remote OST with nodsh"
10896         remote_mds_nodsh && skip "remote MDS with nodsh"
10897
10898         local testdir=$DIR/$tdir/stats_testdir
10899
10900         test_mkdir -p $testdir
10901
10902         # verify obdfilter stats.
10903         $LFS setstripe -c 1 -i 0 $testdir/$tfile
10904         sync
10905         cancel_lru_locks osc
10906         wait_delete_completed
10907
10908         # clear stats.
10909         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10910         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10911
10912         dd if=/dev/zero of=$testdir/$tfile conv=notrunc bs=512k count=1 ||
10913                 error "dd failed"
10914         sync
10915         cancel_lru_locks osc
10916         check_stats ost1 "write" 1
10917
10918         dd if=$testdir/$tfile of=/dev/null bs=1k count=1 || error "dd failed"
10919         check_stats ost1 "read" 1
10920
10921         > $testdir/$tfile || error "truncate failed"
10922         check_stats ost1 "punch" 1
10923
10924         rm -f $testdir/$tfile || error "file remove failed"
10925         wait_delete_completed
10926         check_stats ost1 "destroy" 1
10927
10928         rm -rf $DIR/$tdir
10929 }
10930 run_test 133c "Verifying OST stats ========================================"
10931
10932 order_2() {
10933         local value=$1
10934         local orig=$value
10935         local order=1
10936
10937         while [ $value -ge 2 ]; do
10938                 order=$((order*2))
10939                 value=$((value/2))
10940         done
10941
10942         if [ $orig -gt $order ]; then
10943                 order=$((order*2))
10944         fi
10945         echo $order
10946 }
10947
10948 size_in_KMGT() {
10949     local value=$1
10950     local size=('K' 'M' 'G' 'T');
10951     local i=0
10952     local size_string=$value
10953
10954     while [ $value -ge 1024 ]; do
10955         if [ $i -gt 3 ]; then
10956             #T is the biggest unit we get here, if that is bigger,
10957             #just return XXXT
10958             size_string=${value}T
10959             break
10960         fi
10961         value=$((value >> 10))
10962         if [ $value -lt 1024 ]; then
10963             size_string=${value}${size[$i]}
10964             break
10965         fi
10966         i=$((i + 1))
10967     done
10968
10969     echo $size_string
10970 }
10971
10972 get_rename_size() {
10973         local size=$1
10974         local context=${2:-.}
10975         local sample=$(do_facet $SINGLEMDS $LCTL \
10976                 get_param mdt.$FSNAME-MDT0000.rename_stats |
10977                 grep -A1 $context |
10978                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
10979         echo $sample
10980 }
10981
10982 test_133d() {
10983         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10984         remote_ost_nodsh && skip "remote OST with nodsh"
10985         remote_mds_nodsh && skip "remote MDS with nodsh"
10986         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
10987                 skip_env "MDS doesn't support rename stats"
10988
10989         local testdir1=$DIR/${tdir}/stats_testdir1
10990         local testdir2=$DIR/${tdir}/stats_testdir2
10991         mkdir -p $DIR/${tdir}
10992
10993         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
10994
10995         lfs mkdir -i 0 -c 1 ${testdir1} || error "mkdir failed"
10996         lfs mkdir -i 0 -c 1 ${testdir2} || error "mkdir failed"
10997
10998         createmany -o $testdir1/test 512 || error "createmany failed"
10999
11000         # check samedir rename size
11001         mv ${testdir1}/test0 ${testdir1}/test_0
11002
11003         local testdir1_size=$(ls -l $DIR/${tdir} |
11004                 awk '/stats_testdir1/ {print $5}')
11005         local testdir2_size=$(ls -l $DIR/${tdir} |
11006                 awk '/stats_testdir2/ {print $5}')
11007
11008         testdir1_size=$(order_2 $testdir1_size)
11009         testdir2_size=$(order_2 $testdir2_size)
11010
11011         testdir1_size=$(size_in_KMGT $testdir1_size)
11012         testdir2_size=$(size_in_KMGT $testdir2_size)
11013
11014         echo "source rename dir size: ${testdir1_size}"
11015         echo "target rename dir size: ${testdir2_size}"
11016
11017         local cmd="do_facet $SINGLEMDS $LCTL "
11018         cmd+="get_param mdt.$FSNAME-MDT0000.rename_stats"
11019
11020         eval $cmd || error "$cmd failed"
11021         local samedir=$($cmd | grep 'same_dir')
11022         local same_sample=$(get_rename_size $testdir1_size)
11023         [ -z "$samedir" ] && error "samedir_rename_size count error"
11024         [[ $same_sample -eq 1 ]] ||
11025                 error "samedir_rename_size error $same_sample"
11026         echo "Check same dir rename stats success"
11027
11028         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
11029
11030         # check crossdir rename size
11031         mv ${testdir1}/test_0 ${testdir2}/test_0
11032
11033         testdir1_size=$(ls -l $DIR/${tdir} |
11034                 awk '/stats_testdir1/ {print $5}')
11035         testdir2_size=$(ls -l $DIR/${tdir} |
11036                 awk '/stats_testdir2/ {print $5}')
11037
11038         testdir1_size=$(order_2 $testdir1_size)
11039         testdir2_size=$(order_2 $testdir2_size)
11040
11041         testdir1_size=$(size_in_KMGT $testdir1_size)
11042         testdir2_size=$(size_in_KMGT $testdir2_size)
11043
11044         echo "source rename dir size: ${testdir1_size}"
11045         echo "target rename dir size: ${testdir2_size}"
11046
11047         eval $cmd || error "$cmd failed"
11048         local crossdir=$($cmd | grep 'crossdir')
11049         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
11050         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
11051         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
11052         [[ $src_sample -eq 1 ]] ||
11053                 error "crossdir_rename_size error $src_sample"
11054         [[ $tgt_sample -eq 1 ]] ||
11055                 error "crossdir_rename_size error $tgt_sample"
11056         echo "Check cross dir rename stats success"
11057         rm -rf $DIR/${tdir}
11058 }
11059 run_test 133d "Verifying rename_stats ========================================"
11060
11061 test_133e() {
11062         remote_mds_nodsh && skip "remote MDS with nodsh"
11063         remote_ost_nodsh && skip "remote OST with nodsh"
11064         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11065
11066         local testdir=$DIR/${tdir}/stats_testdir
11067         local ctr f0 f1 bs=32768 count=42 sum
11068
11069         mkdir -p ${testdir} || error "mkdir failed"
11070
11071         $LFS setstripe -c 1 -i 0 ${testdir}/${tfile}
11072
11073         for ctr in {write,read}_bytes; do
11074                 sync
11075                 cancel_lru_locks osc
11076
11077                 do_facet ost1 $LCTL set_param -n \
11078                         "obdfilter.*.exports.clear=clear"
11079
11080                 if [ $ctr = write_bytes ]; then
11081                         f0=/dev/zero
11082                         f1=${testdir}/${tfile}
11083                 else
11084                         f0=${testdir}/${tfile}
11085                         f1=/dev/null
11086                 fi
11087
11088                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
11089                         error "dd failed"
11090                 sync
11091                 cancel_lru_locks osc
11092
11093                 sum=$(do_facet ost1 $LCTL get_param \
11094                         "obdfilter.*.exports.*.stats" |
11095                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
11096                                 $1 == ctr { sum += $7 }
11097                                 END { printf("%0.0f", sum) }')
11098
11099                 if ((sum != bs * count)); then
11100                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
11101                 fi
11102         done
11103
11104         rm -rf $DIR/${tdir}
11105 }
11106 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
11107
11108 proc_regexp="/{proc,sys}/{fs,sys,kernel/debug}/{lustre,lnet}/"
11109
11110 # Some versions of find (4.5.11, 4.5.14) included in CentOS 7.3-7.5 do
11111 # not honor the -ignore_readdir_race option correctly. So we call
11112 # error_ignore() rather than error() in these cases. See LU-11152.
11113 error_133() {
11114         if (find --version; do_facet mds1 find --version) |
11115                 grep -q '\b4\.5\.1[1-4]\b'; then
11116                 error_ignore LU-11152 "$@"
11117         else
11118                 error "$@"
11119         fi
11120 }
11121
11122 test_133f() {
11123         # First without trusting modes.
11124         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
11125         echo "proc_dirs='$proc_dirs'"
11126         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
11127         find $proc_dirs -exec cat '{}' \; &> /dev/null
11128
11129         # Second verifying readability.
11130         $LCTL get_param -R '*' &> /dev/null
11131
11132         # Verifing writability with badarea_io.
11133         find $proc_dirs \
11134                 -ignore_readdir_race \
11135                 -type f \
11136                 -not -name force_lbug \
11137                 -not -name changelog_mask \
11138                 -exec badarea_io '{}' \; ||
11139                         error_133 "find $proc_dirs failed"
11140 }
11141 run_test 133f "Check reads/writes of client lustre proc files with bad area io"
11142
11143 test_133g() {
11144         remote_mds_nodsh && skip "remote MDS with nodsh"
11145         remote_ost_nodsh && skip "remote OST with nodsh"
11146
11147         # eventually, this can also be replaced with "lctl get_param -R",
11148         # but not until that option is always available on the server
11149         local facet
11150         for facet in mds1 ost1; do
11151                 [ $(lustre_version_code $facet) -le $(version_code 2.5.54) ] &&
11152                         skip_noexit "Too old lustre on $facet"
11153                 local facet_proc_dirs=$(do_facet $facet \
11154                                         \\\ls -d $proc_regexp 2>/dev/null)
11155                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
11156                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
11157                 do_facet $facet find $facet_proc_dirs \
11158                         ! -name req_history \
11159                         -exec cat '{}' \\\; &> /dev/null
11160
11161                 do_facet $facet find $facet_proc_dirs \
11162                         ! -name req_history \
11163                         -type f \
11164                         -exec cat '{}' \\\; &> /dev/null ||
11165                                 error "proc file read failed"
11166
11167                 do_facet $facet find $facet_proc_dirs \
11168                         -ignore_readdir_race \
11169                         -type f \
11170                         -not -name force_lbug \
11171                         -not -name changelog_mask \
11172                         -exec badarea_io '{}' \\\; ||
11173                                 error_133 "$facet find $facet_proc_dirs failed"
11174         done
11175
11176         # remount the FS in case writes/reads /proc break the FS
11177         cleanup || error "failed to unmount"
11178         setup || error "failed to setup"
11179         true
11180 }
11181 run_test 133g "Check reads/writes of server lustre proc files with bad area io"
11182
11183 test_133h() {
11184         remote_mds_nodsh && skip "remote MDS with nodsh"
11185         remote_ost_nodsh && skip "remote OST with nodsh"
11186         [[ $MDS1_VERSION -lt $(version_code 2.9.54) ]] &&
11187                 skip "Need MDS version at least 2.9.54"
11188
11189         local facet
11190
11191         for facet in client mds1 ost1; do
11192                 local facet_proc_dirs=$(do_facet $facet \
11193                                         \\\ls -d $proc_regexp 2> /dev/null)
11194                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
11195                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
11196                 # Get the list of files that are missing the terminating newline
11197                 local missing=($(do_facet $facet \
11198                         find ${facet_proc_dirs} -type f \|              \
11199                                 while read F\; do                       \
11200                                         awk -v FS='\v' -v RS='\v\v'     \
11201                                         "'END { if(NR>0 &&              \
11202                                         \\\$NF !~ /.*\\\n\$/)           \
11203                                                 print FILENAME}'"       \
11204                                         '\$F'\;                         \
11205                                 done 2>/dev/null))
11206                 [ ${#missing[*]} -eq 0 ] ||
11207                         error "files do not end with newline: ${missing[*]}"
11208         done
11209 }
11210 run_test 133h "Proc files should end with newlines"
11211
11212 test_134a() {
11213         remote_mds_nodsh && skip "remote MDS with nodsh"
11214         [[ $MDS1_VERSION -lt $(version_code 2.7.54) ]] &&
11215                 skip "Need MDS version at least 2.7.54"
11216
11217         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
11218         cancel_lru_locks mdc
11219
11220         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
11221         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
11222         [ $unused -eq 0 ] || error "$unused locks are not cleared"
11223
11224         local nr=1000
11225         createmany -o $DIR/$tdir/f $nr ||
11226                 error "failed to create $nr files in $DIR/$tdir"
11227         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
11228
11229         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
11230         do_facet mds1 $LCTL set_param fail_loc=0x327
11231         do_facet mds1 $LCTL set_param fail_val=500
11232         touch $DIR/$tdir/m
11233
11234         echo "sleep 10 seconds ..."
11235         sleep 10
11236         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
11237
11238         do_facet mds1 $LCTL set_param fail_loc=0
11239         do_facet mds1 $LCTL set_param fail_val=0
11240         [ $lck_cnt -lt $unused ] ||
11241                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
11242
11243         rm $DIR/$tdir/m
11244         unlinkmany $DIR/$tdir/f $nr
11245 }
11246 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
11247
11248 test_134b() {
11249         remote_mds_nodsh && skip "remote MDS with nodsh"
11250         [[ $MDS1_VERSION -lt $(version_code 2.7.54) ]] &&
11251                 skip "Need MDS version at least 2.7.54"
11252
11253         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
11254         cancel_lru_locks mdc
11255
11256         local low_wm=$(do_facet mds1 $LCTL get_param -n \
11257                         ldlm.lock_reclaim_threshold_mb)
11258         # disable reclaim temporarily
11259         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
11260
11261         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
11262         do_facet mds1 $LCTL set_param fail_loc=0x328
11263         do_facet mds1 $LCTL set_param fail_val=500
11264
11265         $LCTL set_param debug=+trace
11266
11267         local nr=600
11268         createmany -o $DIR/$tdir/f $nr &
11269         local create_pid=$!
11270
11271         echo "Sleep $TIMEOUT seconds ..."
11272         sleep $TIMEOUT
11273         if ! ps -p $create_pid  > /dev/null 2>&1; then
11274                 do_facet mds1 $LCTL set_param fail_loc=0
11275                 do_facet mds1 $LCTL set_param fail_val=0
11276                 do_facet mds1 $LCTL set_param \
11277                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
11278                 error "createmany finished incorrectly!"
11279         fi
11280         do_facet mds1 $LCTL set_param fail_loc=0
11281         do_facet mds1 $LCTL set_param fail_val=0
11282         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
11283         wait $create_pid || return 1
11284
11285         unlinkmany $DIR/$tdir/f $nr
11286 }
11287 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
11288
11289 test_140() { #bug-17379
11290         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11291
11292         test_mkdir $DIR/$tdir
11293         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
11294         cp $(which stat) . || error "Copying stat to $DIR/$tdir"
11295
11296         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
11297         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
11298         local i=0
11299         while i=$((i + 1)); do
11300                 test_mkdir $i
11301                 cd $i || error "Changing to $i"
11302                 ln -s ../stat stat || error "Creating stat symlink"
11303                 # Read the symlink until ELOOP present,
11304                 # not LBUGing the system is considered success,
11305                 # we didn't overrun the stack.
11306                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
11307                 if [ $ret -ne 0 ]; then
11308                         if [ $ret -eq 40 ]; then
11309                                 break  # -ELOOP
11310                         else
11311                                 error "Open stat symlink"
11312                                         return
11313                         fi
11314                 fi
11315         done
11316         i=$((i - 1))
11317         echo "The symlink depth = $i"
11318         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
11319                                         error "Invalid symlink depth"
11320
11321         # Test recursive symlink
11322         ln -s symlink_self symlink_self
11323         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
11324         echo "open symlink_self returns $ret"
11325         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
11326 }
11327 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
11328
11329 test_150() {
11330         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11331
11332         local TF="$TMP/$tfile"
11333
11334         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
11335         cp $TF $DIR/$tfile
11336         cancel_lru_locks $OSC
11337         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
11338         remount_client $MOUNT
11339         df -P $MOUNT
11340         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
11341
11342         $TRUNCATE $TF 6000
11343         $TRUNCATE $DIR/$tfile 6000
11344         cancel_lru_locks $OSC
11345         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
11346
11347         echo "12345" >>$TF
11348         echo "12345" >>$DIR/$tfile
11349         cancel_lru_locks $OSC
11350         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
11351
11352         echo "12345" >>$TF
11353         echo "12345" >>$DIR/$tfile
11354         cancel_lru_locks $OSC
11355         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
11356
11357         rm -f $TF
11358         true
11359 }
11360 run_test 150 "truncate/append tests"
11361
11362 #LU-2902 roc_hit was not able to read all values from lproc
11363 function roc_hit_init() {
11364         local list=$(comma_list $(osts_nodes))
11365         local dir=$DIR/$tdir-check
11366         local file=$dir/$tfile
11367         local BEFORE
11368         local AFTER
11369         local idx
11370
11371         test_mkdir $dir
11372         #use setstripe to do a write to every ost
11373         for i in $(seq 0 $((OSTCOUNT-1))); do
11374                 $LFS setstripe -c 1 -i $i $dir || error "$LFS setstripe $file failed"
11375                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
11376                 idx=$(printf %04x $i)
11377                 BEFORE=$(get_osd_param $list *OST*$idx stats |
11378                         awk '$1 == "cache_access" {sum += $7}
11379                                 END { printf("%0.0f", sum) }')
11380
11381                 cancel_lru_locks osc
11382                 cat $file >/dev/null
11383
11384                 AFTER=$(get_osd_param $list *OST*$idx stats |
11385                         awk '$1 == "cache_access" {sum += $7}
11386                                 END { printf("%0.0f", sum) }')
11387
11388                 echo BEFORE:$BEFORE AFTER:$AFTER
11389                 if ! let "AFTER - BEFORE == 4"; then
11390                         rm -rf $dir
11391                         error "roc_hit is not safe to use"
11392                 fi
11393                 rm $file
11394         done
11395
11396         rm -rf $dir
11397 }
11398
11399 function roc_hit() {
11400         local list=$(comma_list $(osts_nodes))
11401         echo $(get_osd_param $list '' stats |
11402                 awk '$1 == "cache_hit" {sum += $7}
11403                         END { printf("%0.0f", sum) }')
11404 }
11405
11406 function set_cache() {
11407         local on=1
11408
11409         if [ "$2" == "off" ]; then
11410                 on=0;
11411         fi
11412         local list=$(comma_list $(osts_nodes))
11413         set_osd_param $list '' $1_cache_enable $on
11414
11415         cancel_lru_locks osc
11416 }
11417
11418 test_151() {
11419         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11420         remote_ost_nodsh && skip "remote OST with nodsh"
11421
11422         local CPAGES=3
11423         local list=$(comma_list $(osts_nodes))
11424
11425         # check whether obdfilter is cache capable at all
11426         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
11427                 skip "not cache-capable obdfilter"
11428         fi
11429
11430         # check cache is enabled on all obdfilters
11431         if get_osd_param $list '' read_cache_enable | grep 0; then
11432                 skip "oss cache is disabled"
11433         fi
11434
11435         set_osd_param $list '' writethrough_cache_enable 1
11436
11437         # check write cache is enabled on all obdfilters
11438         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
11439                 skip "oss write cache is NOT enabled"
11440         fi
11441
11442         roc_hit_init
11443
11444         #define OBD_FAIL_OBD_NO_LRU  0x609
11445         do_nodes $list $LCTL set_param fail_loc=0x609
11446
11447         # pages should be in the case right after write
11448         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
11449                 error "dd failed"
11450
11451         local BEFORE=$(roc_hit)
11452         cancel_lru_locks osc
11453         cat $DIR/$tfile >/dev/null
11454         local AFTER=$(roc_hit)
11455
11456         do_nodes $list $LCTL set_param fail_loc=0
11457
11458         if ! let "AFTER - BEFORE == CPAGES"; then
11459                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11460         fi
11461
11462         # the following read invalidates the cache
11463         cancel_lru_locks osc
11464         set_osd_param $list '' read_cache_enable 0
11465         cat $DIR/$tfile >/dev/null
11466
11467         # now data shouldn't be found in the cache
11468         BEFORE=$(roc_hit)
11469         cancel_lru_locks osc
11470         cat $DIR/$tfile >/dev/null
11471         AFTER=$(roc_hit)
11472         if let "AFTER - BEFORE != 0"; then
11473                 error "IN CACHE: before: $BEFORE, after: $AFTER"
11474         fi
11475
11476         set_osd_param $list '' read_cache_enable 1
11477         rm -f $DIR/$tfile
11478 }
11479 run_test 151 "test cache on oss and controls ==============================="
11480
11481 test_152() {
11482         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11483
11484         local TF="$TMP/$tfile"
11485
11486         # simulate ENOMEM during write
11487 #define OBD_FAIL_OST_NOMEM      0x226
11488         lctl set_param fail_loc=0x80000226
11489         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
11490         cp $TF $DIR/$tfile
11491         sync || error "sync failed"
11492         lctl set_param fail_loc=0
11493
11494         # discard client's cache
11495         cancel_lru_locks osc
11496
11497         # simulate ENOMEM during read
11498         lctl set_param fail_loc=0x80000226
11499         cmp $TF $DIR/$tfile || error "cmp failed"
11500         lctl set_param fail_loc=0
11501
11502         rm -f $TF
11503 }
11504 run_test 152 "test read/write with enomem ============================"
11505
11506 test_153() {
11507         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
11508 }
11509 run_test 153 "test if fdatasync does not crash ======================="
11510
11511 dot_lustre_fid_permission_check() {
11512         local fid=$1
11513         local ffid=$MOUNT/.lustre/fid/$fid
11514         local test_dir=$2
11515
11516         echo "stat fid $fid"
11517         stat $ffid > /dev/null || error "stat $ffid failed."
11518         echo "touch fid $fid"
11519         touch $ffid || error "touch $ffid failed."
11520         echo "write to fid $fid"
11521         cat /etc/hosts > $ffid || error "write $ffid failed."
11522         echo "read fid $fid"
11523         diff /etc/hosts $ffid || error "read $ffid failed."
11524         echo "append write to fid $fid"
11525         cat /etc/hosts >> $ffid || error "append write $ffid failed."
11526         echo "rename fid $fid"
11527         mv $ffid $test_dir/$tfile.1 &&
11528                 error "rename $ffid to $tfile.1 should fail."
11529         touch $test_dir/$tfile.1
11530         mv $test_dir/$tfile.1 $ffid &&
11531                 error "rename $tfile.1 to $ffid should fail."
11532         rm -f $test_dir/$tfile.1
11533         echo "truncate fid $fid"
11534         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
11535         echo "link fid $fid"
11536         ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
11537         if [[ $($LCTL get_param -n mdc.*-mdc-*.connect_flags) =~ acl ]]; then
11538                 echo "setfacl fid $fid"
11539                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
11540                 echo "getfacl fid $fid"
11541                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
11542         fi
11543         echo "unlink fid $fid"
11544         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
11545         echo "mknod fid $fid"
11546         mknod $ffid c 1 3 && error "mknod $ffid should fail."
11547
11548         fid=[0xf00000400:0x1:0x0]
11549         ffid=$MOUNT/.lustre/fid/$fid
11550
11551         echo "stat non-exist fid $fid"
11552         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
11553         echo "write to non-exist fid $fid"
11554         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
11555         echo "link new fid $fid"
11556         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
11557
11558         mkdir -p $test_dir/$tdir
11559         touch $test_dir/$tdir/$tfile
11560         fid=$($LFS path2fid $test_dir/$tdir)
11561         rc=$?
11562         [ $rc -ne 0 ] &&
11563                 error "error: could not get fid for $test_dir/$dir/$tfile."
11564
11565         ffid=$MOUNT/.lustre/fid/$fid
11566
11567         echo "ls $fid"
11568         ls $ffid > /dev/null || error "ls $ffid failed."
11569         echo "touch $fid/$tfile.1"
11570         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
11571
11572         echo "touch $MOUNT/.lustre/fid/$tfile"
11573         touch $MOUNT/.lustre/fid/$tfile && \
11574                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
11575
11576         echo "setxattr to $MOUNT/.lustre/fid"
11577         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
11578
11579         echo "listxattr for $MOUNT/.lustre/fid"
11580         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
11581
11582         echo "delxattr from $MOUNT/.lustre/fid"
11583         setfattr -x trusted.name1 $MOUNT/.lustre/fid
11584
11585         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
11586         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
11587                 error "touch invalid fid should fail."
11588
11589         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
11590         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
11591                 error "touch non-normal fid should fail."
11592
11593         echo "rename $tdir to $MOUNT/.lustre/fid"
11594         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
11595                 error "rename to $MOUNT/.lustre/fid should fail."
11596
11597         if [ $MDS1_VERSION -ge $(version_code 2.3.51) ]
11598         then            # LU-3547
11599                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
11600                 local new_obf_mode=777
11601
11602                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
11603                 chmod $new_obf_mode $DIR/.lustre/fid ||
11604                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
11605
11606                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
11607                 [ $obf_mode -eq $new_obf_mode ] ||
11608                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
11609
11610                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
11611                 chmod $old_obf_mode $DIR/.lustre/fid ||
11612                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
11613         fi
11614
11615         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
11616         fid=$($LFS path2fid $test_dir/$tfile-2)
11617
11618         if [ $MDS1_VERSION -ge $(version_code 2.6.50) ]
11619         then # LU-5424
11620                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
11621                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
11622                         error "create lov data thru .lustre failed"
11623         fi
11624         echo "cp /etc/passwd $test_dir/$tfile-2"
11625         cp /etc/passwd $test_dir/$tfile-2 ||
11626                 error "copy to $test_dir/$tfile-2 failed."
11627         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
11628         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
11629                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
11630
11631         rm -rf $test_dir/tfile.lnk
11632         rm -rf $test_dir/$tfile-2
11633 }
11634
11635 test_154A() {
11636         [[ $MDS1_VERSION -lt $(version_code 2.4.1) ]] &&
11637                 skip "Need MDS version at least 2.4.1"
11638
11639         local tf=$DIR/$tfile
11640         touch $tf
11641
11642         local fid=$($LFS path2fid $tf)
11643         [ -z "$fid" ] && error "path2fid unable to get $tf FID"
11644
11645         # check that we get the same pathname back
11646         local found=$($LFS fid2path $MOUNT "$fid")
11647         [ -z "$found" ] && error "fid2path unable to get '$fid' path"
11648         [ "$found" == "$tf" ] ||
11649                 error "fid2path($fid=path2fid($tf)) = $found != $tf"
11650 }
11651 run_test 154A "lfs path2fid and fid2path basic checks"
11652
11653 test_154B() {
11654         [[ $MDS1_VERSION -lt $(version_code 2.4.1) ]] &&
11655                 skip "Need MDS version at least 2.4.1"
11656
11657         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
11658         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
11659         local linkea=$($LL_DECODE_LINKEA $DIR/$tdir/$tfile | grep 'pfid')
11660         [ -z "$linkea" ] && error "decode linkea $DIR/$tdir/$tfile failed"
11661
11662         local name=$(echo $linkea | awk '/pfid/ {print $5}' | sed -e "s/'//g")
11663         local PFID=$(echo $linkea | awk '/pfid/ {print $3}' | sed -e "s/,//g")
11664
11665         # check that we get the same pathname
11666         echo "PFID: $PFID, name: $name"
11667         local FOUND=$($LFS fid2path $MOUNT "$PFID")
11668         [ -z "$FOUND" ] && error "fid2path unable to get $PFID path"
11669         [ "$FOUND/$name" != "$DIR/$tdir/$tfile" ] &&
11670                 error "ll_decode_linkea has $FOUND/$name != $DIR/$tdir/$tfile"
11671
11672         rm -rf $DIR/$tdir || error "Can not delete directory $DIR/$tdir"
11673 }
11674 run_test 154B "verify the ll_decode_linkea tool"
11675
11676 test_154a() {
11677         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11678         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11679         [[ $MDS1_VERSION -ge $(version_code 2.2.51) ]] ||
11680                 skip "Need MDS version at least 2.2.51"
11681         [ -z "$(which setfacl)" ] && skip_env "must have setfacl tool"
11682
11683         cp /etc/hosts $DIR/$tfile
11684
11685         fid=$($LFS path2fid $DIR/$tfile)
11686         rc=$?
11687         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
11688
11689         dot_lustre_fid_permission_check "$fid" $DIR ||
11690                 error "dot lustre permission check $fid failed"
11691
11692         ls -a $MOUNT | grep "\.lustre" && error ".lustre should not be listed"
11693
11694         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
11695
11696         touch $MOUNT/.lustre/file &&
11697                 error "creation is not allowed under .lustre"
11698
11699         mkdir $MOUNT/.lustre/dir &&
11700                 error "mkdir is not allowed under .lustre"
11701
11702         rm -rf $DIR/$tfile
11703 }
11704 run_test 154a "Open-by-FID"
11705
11706 test_154b() {
11707         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11708         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11709         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
11710         [[ $MDS1_VERSION -ge $(version_code 2.2.51) ]] ||
11711                 skip "Need MDS version at least 2.2.51"
11712
11713         local remote_dir=$DIR/$tdir/remote_dir
11714         local MDTIDX=1
11715         local rc=0
11716
11717         mkdir -p $DIR/$tdir
11718         $LFS mkdir -i $MDTIDX $remote_dir ||
11719                 error "create remote directory failed"
11720
11721         cp /etc/hosts $remote_dir/$tfile
11722
11723         fid=$($LFS path2fid $remote_dir/$tfile)
11724         rc=$?
11725         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
11726
11727         dot_lustre_fid_permission_check "$fid" $remote_dir ||
11728                 error "dot lustre permission check $fid failed"
11729         rm -rf $DIR/$tdir
11730 }
11731 run_test 154b "Open-by-FID for remote directory"
11732
11733 test_154c() {
11734         [[ $MDS1_VERSION -lt $(version_code 2.4.1) ]] &&
11735                 skip "Need MDS version at least 2.4.1"
11736
11737         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
11738         local FID1=$($LFS path2fid $DIR/$tfile.1)
11739         local FID2=$($LFS path2fid $DIR/$tfile.2)
11740         local FID3=$($LFS path2fid $DIR/$tfile.3)
11741
11742         local N=1
11743         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
11744                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
11745                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
11746                 local want=FID$N
11747                 [ "$FID" = "${!want}" ] ||
11748                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
11749                 N=$((N + 1))
11750         done
11751
11752         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
11753         do
11754                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
11755                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
11756                 N=$((N + 1))
11757         done
11758 }
11759 run_test 154c "lfs path2fid and fid2path multiple arguments"
11760
11761 test_154d() {
11762         remote_mds_nodsh && skip "remote MDS with nodsh"
11763         [[ $MDS1_VERSION -lt $(version_code 2.5.53) ]] &&
11764                 skip "Need MDS version at least 2.5.53"
11765
11766         if remote_mds; then
11767                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
11768         else
11769                 nid="0@lo"
11770         fi
11771         local proc_ofile="mdt.*.exports.'$nid'.open_files"
11772         local fd
11773         local cmd
11774
11775         rm -f $DIR/$tfile
11776         touch $DIR/$tfile
11777
11778         local fid=$($LFS path2fid $DIR/$tfile)
11779         # Open the file
11780         fd=$(free_fd)
11781         cmd="exec $fd<$DIR/$tfile"
11782         eval $cmd
11783         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
11784         echo "$fid_list" | grep "$fid"
11785         rc=$?
11786
11787         cmd="exec $fd>/dev/null"
11788         eval $cmd
11789         if [ $rc -ne 0 ]; then
11790                 error "FID $fid not found in open files list $fid_list"
11791         fi
11792 }
11793 run_test 154d "Verify open file fid"
11794
11795 test_154e()
11796 {
11797         [[ $MDS1_VERSION -lt $(version_code 2.6.50) ]] &&
11798                 skip "Need MDS version at least 2.6.50"
11799
11800         if ls -a $MOUNT | grep -q '^\.lustre$'; then
11801                 error ".lustre returned by readdir"
11802         fi
11803 }
11804 run_test 154e ".lustre is not returned by readdir"
11805
11806 test_154f() {
11807         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11808
11809         # create parent directory on a single MDT to avoid cross-MDT hardlinks
11810         test_mkdir -p -c1 $DIR/$tdir/d
11811         # test dirs inherit from its stripe
11812         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
11813         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
11814         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
11815         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
11816         touch $DIR/f
11817
11818         # get fid of parents
11819         local FID0=$($LFS path2fid $DIR/$tdir/d)
11820         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
11821         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
11822         local FID3=$($LFS path2fid $DIR)
11823
11824         # check that path2fid --parents returns expected <parent_fid>/name
11825         # 1) test for a directory (single parent)
11826         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
11827         [ "$parent" == "$FID0/foo1" ] ||
11828                 error "expected parent: $FID0/foo1, got: $parent"
11829
11830         # 2) test for a file with nlink > 1 (multiple parents)
11831         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
11832         echo "$parent" | grep -F "$FID1/$tfile" ||
11833                 error "$FID1/$tfile not returned in parent list"
11834         echo "$parent" | grep -F "$FID2/link" ||
11835                 error "$FID2/link not returned in parent list"
11836
11837         # 3) get parent by fid
11838         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
11839         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11840         echo "$parent" | grep -F "$FID1/$tfile" ||
11841                 error "$FID1/$tfile not returned in parent list (by fid)"
11842         echo "$parent" | grep -F "$FID2/link" ||
11843                 error "$FID2/link not returned in parent list (by fid)"
11844
11845         # 4) test for entry in root directory
11846         parent=$($LFS path2fid --parents $DIR/f)
11847         echo "$parent" | grep -F "$FID3/f" ||
11848                 error "$FID3/f not returned in parent list"
11849
11850         # 5) test it on root directory
11851         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
11852                 error "$MOUNT should not have parents"
11853
11854         # enable xattr caching and check that linkea is correctly updated
11855         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
11856         save_lustre_params client "llite.*.xattr_cache" > $save
11857         lctl set_param llite.*.xattr_cache 1
11858
11859         # 6.1) linkea update on rename
11860         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
11861
11862         # get parents by fid
11863         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11864         # foo1 should no longer be returned in parent list
11865         echo "$parent" | grep -F "$FID1" &&
11866                 error "$FID1 should no longer be in parent list"
11867         # the new path should appear
11868         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
11869                 error "$FID2/$tfile.moved is not in parent list"
11870
11871         # 6.2) linkea update on unlink
11872         rm -f $DIR/$tdir/d/foo2/link
11873         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11874         # foo2/link should no longer be returned in parent list
11875         echo "$parent" | grep -F "$FID2/link" &&
11876                 error "$FID2/link should no longer be in parent list"
11877         true
11878
11879         rm -f $DIR/f
11880         restore_lustre_params < $save
11881         rm -f $save
11882 }
11883 run_test 154f "get parent fids by reading link ea"
11884
11885 test_154g()
11886 {
11887         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11888         [[ $MDS1_VERSION -ge $(version_code 2.6.92) &&
11889            $CLIENT_VERSION -gt $(version_code 2.6.99) ]] ||
11890                 skip "Need MDS version at least 2.6.92"
11891
11892         mkdir -p $DIR/$tdir
11893         llapi_fid_test -d $DIR/$tdir
11894 }
11895 run_test 154g "various llapi FID tests"
11896
11897 test_155_small_load() {
11898     local temp=$TMP/$tfile
11899     local file=$DIR/$tfile
11900
11901     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
11902         error "dd of=$temp bs=6096 count=1 failed"
11903     cp $temp $file
11904     cancel_lru_locks $OSC
11905     cmp $temp $file || error "$temp $file differ"
11906
11907     $TRUNCATE $temp 6000
11908     $TRUNCATE $file 6000
11909     cmp $temp $file || error "$temp $file differ (truncate1)"
11910
11911     echo "12345" >>$temp
11912     echo "12345" >>$file
11913     cmp $temp $file || error "$temp $file differ (append1)"
11914
11915     echo "12345" >>$temp
11916     echo "12345" >>$file
11917     cmp $temp $file || error "$temp $file differ (append2)"
11918
11919     rm -f $temp $file
11920     true
11921 }
11922
11923 test_155_big_load() {
11924         remote_ost_nodsh && skip "remote OST with nodsh"
11925
11926         local temp=$TMP/$tfile
11927         local file=$DIR/$tfile
11928
11929         free_min_max
11930         local cache_size=$(do_facet ost$((MAXI+1)) \
11931                 "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
11932         local large_file_size=$((cache_size * 2))
11933
11934         echo "OSS cache size: $cache_size KB"
11935         echo "Large file size: $large_file_size KB"
11936
11937         [ $MAXV -le $large_file_size ] &&
11938                 skip_env "max available OST size needs > $large_file_size KB"
11939
11940         $LFS setstripe $file -c 1 -i $MAXI || error "$LFS setstripe $file failed"
11941
11942         dd if=/dev/urandom of=$temp bs=$large_file_size count=1k ||
11943                 error "dd of=$temp bs=$large_file_size count=1k failed"
11944         cp $temp $file
11945         ls -lh $temp $file
11946         cancel_lru_locks osc
11947         cmp $temp $file || error "$temp $file differ"
11948
11949         rm -f $temp $file
11950         true
11951 }
11952
11953 save_writethrough() {
11954         local facets=$(get_facets OST)
11955
11956         save_lustre_params $facets "osd-*.*.writethrough_cache_enable" > $1
11957 }
11958
11959 test_155a() {
11960         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11961
11962         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11963
11964         save_writethrough $p
11965
11966         set_cache read on
11967         set_cache writethrough on
11968         test_155_small_load
11969         restore_lustre_params < $p
11970         rm -f $p
11971 }
11972 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
11973
11974 test_155b() {
11975         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11976
11977         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11978
11979         save_writethrough $p
11980
11981         set_cache read on
11982         set_cache writethrough off
11983         test_155_small_load
11984         restore_lustre_params < $p
11985         rm -f $p
11986 }
11987 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
11988
11989 test_155c() {
11990         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11991
11992         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11993
11994         save_writethrough $p
11995
11996         set_cache read off
11997         set_cache writethrough on
11998         test_155_small_load
11999         restore_lustre_params < $p
12000         rm -f $p
12001 }
12002 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
12003
12004 test_155d() {
12005         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12006
12007         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12008
12009         save_writethrough $p
12010
12011         set_cache read off
12012         set_cache writethrough off
12013         test_155_small_load
12014         restore_lustre_params < $p
12015         rm -f $p
12016 }
12017 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
12018
12019 test_155e() {
12020         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12021
12022         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12023
12024         save_writethrough $p
12025
12026         set_cache read on
12027         set_cache writethrough on
12028         test_155_big_load
12029         restore_lustre_params < $p
12030         rm -f $p
12031 }
12032 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
12033
12034 test_155f() {
12035         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12036
12037         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12038
12039         save_writethrough $p
12040
12041         set_cache read on
12042         set_cache writethrough off
12043         test_155_big_load
12044         restore_lustre_params < $p
12045         rm -f $p
12046 }
12047 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
12048
12049 test_155g() {
12050         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12051
12052         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12053
12054         save_writethrough $p
12055
12056         set_cache read off
12057         set_cache writethrough on
12058         test_155_big_load
12059         restore_lustre_params < $p
12060         rm -f $p
12061 }
12062 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
12063
12064 test_155h() {
12065         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12066
12067         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12068
12069         save_writethrough $p
12070
12071         set_cache read off
12072         set_cache writethrough off
12073         test_155_big_load
12074         restore_lustre_params < $p
12075         rm -f $p
12076 }
12077 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
12078
12079 test_156() {
12080         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12081         remote_ost_nodsh && skip "remote OST with nodsh"
12082         [ $OST1_VERSION -lt $(version_code 2.6.93) ] &&
12083                 skip "stats not implemented on old servers"
12084         [ "$ost1_FSTYPE" = "zfs" ] &&
12085                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS"
12086
12087         local CPAGES=3
12088         local BEFORE
12089         local AFTER
12090         local file="$DIR/$tfile"
12091         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12092
12093         save_writethrough $p
12094         roc_hit_init
12095
12096         log "Turn on read and write cache"
12097         set_cache read on
12098         set_cache writethrough on
12099
12100         log "Write data and read it back."
12101         log "Read should be satisfied from the cache."
12102         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12103         BEFORE=$(roc_hit)
12104         cancel_lru_locks osc
12105         cat $file >/dev/null
12106         AFTER=$(roc_hit)
12107         if ! let "AFTER - BEFORE == CPAGES"; then
12108                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12109         else
12110                 log "cache hits:: before: $BEFORE, after: $AFTER"
12111         fi
12112
12113         log "Read again; it should be satisfied from the cache."
12114         BEFORE=$AFTER
12115         cancel_lru_locks osc
12116         cat $file >/dev/null
12117         AFTER=$(roc_hit)
12118         if ! let "AFTER - BEFORE == CPAGES"; then
12119                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12120         else
12121                 log "cache hits:: before: $BEFORE, after: $AFTER"
12122         fi
12123
12124         log "Turn off the read cache and turn on the write cache"
12125         set_cache read off
12126         set_cache writethrough on
12127
12128         log "Read again; it should be satisfied from the cache."
12129         BEFORE=$(roc_hit)
12130         cancel_lru_locks osc
12131         cat $file >/dev/null
12132         AFTER=$(roc_hit)
12133         if ! let "AFTER - BEFORE == CPAGES"; then
12134                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12135         else
12136                 log "cache hits:: before: $BEFORE, after: $AFTER"
12137         fi
12138
12139         log "Read again; it should not be satisfied from the cache."
12140         BEFORE=$AFTER
12141         cancel_lru_locks osc
12142         cat $file >/dev/null
12143         AFTER=$(roc_hit)
12144         if ! let "AFTER - BEFORE == 0"; then
12145                 error "IN CACHE: before: $BEFORE, after: $AFTER"
12146         else
12147                 log "cache hits:: before: $BEFORE, after: $AFTER"
12148         fi
12149
12150         log "Write data and read it back."
12151         log "Read should be satisfied from the cache."
12152         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12153         BEFORE=$(roc_hit)
12154         cancel_lru_locks osc
12155         cat $file >/dev/null
12156         AFTER=$(roc_hit)
12157         if ! let "AFTER - BEFORE == CPAGES"; then
12158                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12159         else
12160                 log "cache hits:: before: $BEFORE, after: $AFTER"
12161         fi
12162
12163         log "Read again; it should not be satisfied from the cache."
12164         BEFORE=$AFTER
12165         cancel_lru_locks osc
12166         cat $file >/dev/null
12167         AFTER=$(roc_hit)
12168         if ! let "AFTER - BEFORE == 0"; then
12169                 error "IN CACHE: before: $BEFORE, after: $AFTER"
12170         else
12171                 log "cache hits:: before: $BEFORE, after: $AFTER"
12172         fi
12173
12174         log "Turn off read and write cache"
12175         set_cache read off
12176         set_cache writethrough off
12177
12178         log "Write data and read it back"
12179         log "It should not be satisfied from the cache."
12180         rm -f $file
12181         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12182         cancel_lru_locks osc
12183         BEFORE=$(roc_hit)
12184         cat $file >/dev/null
12185         AFTER=$(roc_hit)
12186         if ! let "AFTER - BEFORE == 0"; then
12187                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
12188         else
12189                 log "cache hits:: before: $BEFORE, after: $AFTER"
12190         fi
12191
12192         log "Turn on the read cache and turn off the write cache"
12193         set_cache read on
12194         set_cache writethrough off
12195
12196         log "Write data and read it back"
12197         log "It should not be satisfied from the cache."
12198         rm -f $file
12199         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12200         BEFORE=$(roc_hit)
12201         cancel_lru_locks osc
12202         cat $file >/dev/null
12203         AFTER=$(roc_hit)
12204         if ! let "AFTER - BEFORE == 0"; then
12205                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
12206         else
12207                 log "cache hits:: before: $BEFORE, after: $AFTER"
12208         fi
12209
12210         log "Read again; it should be satisfied from the cache."
12211         BEFORE=$(roc_hit)
12212         cancel_lru_locks osc
12213         cat $file >/dev/null
12214         AFTER=$(roc_hit)
12215         if ! let "AFTER - BEFORE == CPAGES"; then
12216                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12217         else
12218                 log "cache hits:: before: $BEFORE, after: $AFTER"
12219         fi
12220
12221         restore_lustre_params < $p
12222         rm -f $p $file
12223 }
12224 run_test 156 "Verification of tunables"
12225
12226 test_160a() {
12227         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12228         remote_mds_nodsh && skip "remote MDS with nodsh"
12229         [ $MDS1_VERSION -ge $(version_code 2.2.0) ] ||
12230                 skip "Need MDS version at least 2.2.0"
12231
12232         changelog_register || error "changelog_register failed"
12233         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
12234         changelog_users $SINGLEMDS | grep -q $cl_user ||
12235                 error "User $cl_user not found in changelog_users"
12236
12237         # change something
12238         test_mkdir -p $DIR/$tdir/pics/2008/zachy
12239         changelog_clear 0 || error "changelog_clear failed"
12240         touch $DIR/$tdir/pics/2008/zachy/$tfile                 # open 1
12241         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg       # open 2
12242         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
12243         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
12244         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
12245         rm $DIR/$tdir/pics/desktop.jpg
12246
12247         changelog_dump | tail -10
12248
12249         echo "verifying changelog mask"
12250         changelog_chmask "-MKDIR"
12251         changelog_chmask "-CLOSE"
12252
12253         test_mkdir -p $DIR/$tdir/pics/zach/sofia                # not logged
12254         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # not logged
12255
12256         changelog_chmask "+MKDIR"
12257         changelog_chmask "+CLOSE"
12258
12259         test_mkdir -p $DIR/$tdir/pics/2008/sofia                # mkdir 1
12260         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # open 3
12261
12262         changelog_dump | tail -10
12263         MKDIRS=$(changelog_dump | grep -c "MKDIR")
12264         CLOSES=$(changelog_dump | grep -c "CLOSE")
12265         [ $MKDIRS -eq 1 ] || error "MKDIR changelog mask count $MKDIRS != 1"
12266         [ $CLOSES -eq 3 ] || error "CLOSE changelog mask count $CLOSES != 3"
12267
12268         # verify contents
12269         echo "verifying target fid"
12270         local fidc=$(changelog_extract_field "CREAT" "$tfile" "t=")
12271         local fidf=$($LFS path2fid $DIR/$tdir/pics/zach/$tfile)
12272         [ "$fidc" == "$fidf" ] ||
12273                 error "changelog '$tfile' fid $fidc != file fid $fidf"
12274         echo "verifying parent fid"
12275         # The FID returned from the Changelog may be the directory shard on
12276         # a different MDT, and not the FID returned by path2fid on the parent.
12277         # Instead of comparing FIDs, verify that fid2path(fidp) is correct,
12278         # since this is what will matter when recreating this file in the tree.
12279         local fidp=$(changelog_extract_field "CREAT" "$tfile" "p=")
12280         local pathp=$($LFS fid2path $MOUNT "$fidp")
12281         [ "${pathp%/}" == "$DIR/$tdir/pics/zach" ] ||
12282                 error "changelog fid2path($fidc) $pathp != $DIR/$tdir/pics/zach"
12283
12284         echo "getting records for $cl_user"
12285         changelog_users $SINGLEMDS
12286         local user_rec1=$(changelog_user_rec $SINGLEMDS $cl_user)
12287         local nclr=3
12288         __changelog_clear $SINGLEMDS $cl_user +$nclr ||
12289                 error "changelog_clear failed"
12290         local user_rec2=$(changelog_user_rec $SINGLEMDS $cl_user)
12291         echo "verifying user clear: $user_rec1 + $nclr == $user_rec2"
12292         [ $user_rec2 == $((user_rec1 + nclr)) ] ||
12293                 error "user index expect $user_rec1 + $nclr != $user_rec2"
12294
12295         local min0_rec=$(changelog_users $SINGLEMDS |
12296                 awk 'min == "" || $2 < min { min = $2 }; END { print min }')
12297         local first_rec=$($LFS changelog $(facet_svc $SINGLEMDS) |
12298                           awk '{ print $1; exit; }')
12299
12300         changelog_dump | tail -n 5
12301         echo "verifying user min purge: $min0_rec + 1 == $first_rec"
12302         [ $first_rec == $((min0_rec + 1)) ] ||
12303                 error "first index should be $min0_rec + 1 not $first_rec"
12304
12305         # LU-3446 changelog index reset on MDT restart
12306         local cur_rec1=$(changelog_users $SINGLEMDS |
12307                          awk '/^current.index:/ { print $NF }')
12308         changelog_clear 0 ||
12309                 error "clear all changelog records for $cl_user failed"
12310         stop $SINGLEMDS || error "Fail to stop $SINGLEMDS"
12311         start $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) $MDS_MOUNT_OPTS ||
12312                 error "Fail to start $SINGLEMDS"
12313         local cur_rec2=$(changelog_users $SINGLEMDS |
12314                          awk '/^current.index:/ { print $NF }')
12315         echo "verifying index survives MDT restart: $cur_rec1 == $cur_rec2"
12316         [ $cur_rec1 == $cur_rec2 ] ||
12317                 error "current index should be $cur_rec1 not $cur_rec2"
12318
12319         echo "verifying users from this test are deregistered"
12320         changelog_deregister || error "changelog_deregister failed"
12321         changelog_users $SINGLEMDS | grep -q $cl_user &&
12322                 error "User '$cl_user' still in changelog_users"
12323
12324         # lctl get_param -n mdd.*.changelog_users
12325         # current index: 144
12326         # ID    index (idle seconds)
12327         # cl3   144 (2)
12328         if ! changelog_users $SINGLEMDS | grep "^cl"; then
12329                 # this is the normal case where all users were deregistered
12330                 # make sure no new records are added when no users are present
12331                 local last_rec1=$(changelog_users $SINGLEMDS |
12332                                   awk '/^current.index:/ { print $NF }')
12333                 touch $DIR/$tdir/chloe
12334                 local last_rec2=$(changelog_users $SINGLEMDS |
12335                                   awk '/^current.index:/ { print $NF }')
12336                 echo "verify changelogs are off: $last_rec1 == $last_rec2"
12337                 [ $last_rec1 == $last_rec2 ] || error "changelogs not off"
12338         else
12339                 # any changelog users must be leftovers from a previous test
12340                 changelog_users $SINGLEMDS
12341                 echo "other changelog users; can't verify off"
12342         fi
12343 }
12344 run_test 160a "changelog sanity"
12345
12346 test_160b() { # LU-3587
12347         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12348         remote_mds_nodsh && skip "remote MDS with nodsh"
12349         [ $MDS1_VERSION -ge $(version_code 2.2.0) ] ||
12350                 skip "Need MDS version at least 2.2.0"
12351
12352         changelog_register || error "changelog_register failed"
12353         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
12354         changelog_users $SINGLEMDS | grep -q $cl_user ||
12355                 error "User '$cl_user' not found in changelog_users"
12356
12357         local longname1=$(str_repeat a 255)
12358         local longname2=$(str_repeat b 255)
12359
12360         cd $DIR
12361         echo "creating very long named file"
12362         touch $longname1 || error "create of '$longname1' failed"
12363         echo "renaming very long named file"
12364         mv $longname1 $longname2
12365
12366         changelog_dump | grep RENME | tail -n 5
12367         rm -f $longname2
12368 }
12369 run_test 160b "Verify that very long rename doesn't crash in changelog"
12370
12371 test_160c() {
12372         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12373         remote_mds_nodsh && skip "remote MDS with nodsh"
12374
12375         [[ $MDS1_VERSION -gt $(version_code 2.5.57) ]] ||
12376                 [[ $MDS1_VERSION -gt $(version_code 2.5.1) &&
12377                    $MDS1_VERSION -lt $(version_code 2.5.50) ]] ||
12378                 skip "Need MDS version at least 2.5.58 or 2.5.2+"
12379
12380         local rc=0
12381
12382         # Registration step
12383         changelog_register || error "changelog_register failed"
12384
12385         rm -rf $DIR/$tdir
12386         mkdir -p $DIR/$tdir
12387         $MCREATE $DIR/$tdir/foo_160c
12388         changelog_chmask "-TRUNC"
12389         $TRUNCATE $DIR/$tdir/foo_160c 200
12390         changelog_chmask "+TRUNC"
12391         $TRUNCATE $DIR/$tdir/foo_160c 199
12392         changelog_dump | tail -n 5
12393         local truncs=$(changelog_dump | tail -n 5 | grep -c TRUNC)
12394         [ $truncs -eq 1 ] || error "TRUNC changelog mask count $truncs != 1"
12395 }
12396 run_test 160c "verify that changelog log catch the truncate event"
12397
12398 test_160d() {
12399         remote_mds_nodsh && skip "remote MDS with nodsh"
12400         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
12401         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12402         [[ $MDS1_VERSION -ge $(version_code 2.7.60) ]] ||
12403                 skip "Need MDS version at least 2.7.60"
12404
12405         # Registration step
12406         changelog_register || error "changelog_register failed"
12407
12408         mkdir -p $DIR/$tdir/migrate_dir
12409         changelog_clear 0 || error "changelog_clear failed"
12410
12411         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
12412         changelog_dump | tail -n 5
12413         local migrates=$(changelog_dump | grep -c "MIGRT")
12414         [ $migrates -eq 1 ] || error "MIGRATE changelog count $migrates != 1"
12415 }
12416 run_test 160d "verify that changelog log catch the migrate event"
12417
12418 test_160e() {
12419         remote_mds_nodsh && skip "remote MDS with nodsh"
12420
12421         # Create a user
12422         changelog_register || error "changelog_register failed"
12423
12424         # Delete a future user (expect fail)
12425         local MDT0=$(facet_svc $SINGLEMDS)
12426         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister "cl77"
12427         local rc=$?
12428
12429         if [ $rc -eq 0 ]; then
12430                 error "Deleted non-existant user cl77"
12431         elif [ $rc -ne 2 ]; then
12432                 error "changelog_deregister failed with $rc, expect 2 (ENOENT)"
12433         fi
12434
12435         # Clear to a bad index (1 billion should be safe)
12436         $LFS changelog_clear $MDT0 "${CL_USERS[$SINGLEMDS]%% *}" 1000000000
12437         rc=$?
12438
12439         if [ $rc -eq 0 ]; then
12440                 error "Successfully cleared to invalid CL index"
12441         elif [ $rc -ne 22 ]; then
12442                 error "changelog_clear failed with $rc, expected 22 (EINVAL)"
12443         fi
12444 }
12445 run_test 160e "changelog negative testing (should return errors)"
12446
12447 test_160f() {
12448         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12449         [[ $MDS1_VERSION -ge $(version_code 2.10.56) ]] ||
12450                 skip "Need MDS version at least 2.10.56"
12451
12452         local mdts=$(comma_list $(mdts_nodes))
12453
12454         # Create a user
12455         changelog_register || error "first changelog_register failed"
12456         changelog_register || error "second changelog_register failed"
12457         local cl_users
12458         declare -A cl_user1
12459         declare -A cl_user2
12460         local user_rec1
12461         local user_rec2
12462         local i
12463
12464         # generate some changelog records to accumulate on each MDT
12465         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "test_mkdir $tdir failed"
12466         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12467                 error "create $DIR/$tdir/$tfile failed"
12468
12469         # check changelogs have been generated
12470         local nbcl=$(changelog_dump | wc -l)
12471         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12472
12473         for param in "changelog_max_idle_time=10" \
12474                      "changelog_gc=1" \
12475                      "changelog_min_gc_interval=2" \
12476                      "changelog_min_free_cat_entries=3"; do
12477                 local MDT0=$(facet_svc $SINGLEMDS)
12478                 local var="${param%=*}"
12479                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12480
12481                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12482                 do_nodes $mdts $LCTL set_param mdd.*.$param
12483         done
12484
12485         # force cl_user2 to be idle (1st part)
12486         sleep 9
12487
12488         # simulate changelog catalog almost full
12489         #define OBD_FAIL_CAT_FREE_RECORDS       0x1313
12490         do_nodes $mdts $LCTL set_param fail_loc=0x1313 fail_val=3
12491
12492         for i in $(seq $MDSCOUNT); do
12493                 cl_users=(${CL_USERS[mds$i]})
12494                 cl_user1[mds$i]="${cl_users[0]}"
12495                 cl_user2[mds$i]="${cl_users[1]}"
12496
12497                 [ -n "${cl_user1[mds$i]}" ] ||
12498                         error "mds$i: no user registered"
12499                 [ -n "${cl_user2[mds$i]}" ] ||
12500                         error "mds$i: only ${cl_user2[mds$i]} is registered"
12501
12502                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12503                 [ -n "$user_rec1" ] ||
12504                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12505                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12506                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12507                 [ -n "$user_rec2" ] ||
12508                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12509                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12510                      "$user_rec1 + 2 == $user_rec2"
12511                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12512                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12513                               "$user_rec1 + 2, but is $user_rec2"
12514                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12515                 [ -n "$user_rec2" ] ||
12516                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12517                 [ $user_rec1 == $user_rec2 ] ||
12518                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12519                               "$user_rec1, but is $user_rec2"
12520         done
12521
12522         # force cl_user2 to be idle (2nd part) and to reach
12523         # changelog_max_idle_time
12524         sleep 2
12525
12526         # generate one more changelog to trigger fail_loc
12527         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12528                 error "create $DIR/$tdir/${tfile}bis failed"
12529
12530         # ensure gc thread is done
12531         for i in $(mdts_nodes); do
12532                 wait_update $i \
12533                         "ps -e -o comm= | grep chlg_gc_thread" "" 20 ||
12534                         error "$i: GC-thread not done"
12535         done
12536
12537         local first_rec
12538         for i in $(seq $MDSCOUNT); do
12539                 # check cl_user1 still registered
12540                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12541                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12542                 # check cl_user2 unregistered
12543                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12544                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12545
12546                 # check changelogs are present and starting at $user_rec1 + 1
12547                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12548                 [ -n "$user_rec1" ] ||
12549                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12550                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12551                             awk '{ print $1; exit; }')
12552
12553                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12554                 [ $((user_rec1 + 1)) == $first_rec ] ||
12555                         error "mds$i: first index should be $user_rec1 + 1, " \
12556                               "but is $first_rec"
12557         done
12558 }
12559 run_test 160f "changelog garbage collect (timestamped users)"
12560
12561 test_160g() {
12562         remote_mds_nodsh && skip "remote MDS with nodsh"
12563         [[ $MDS1_VERSION -ge $(version_code 2.10.56) ]] ||
12564                 skip "Need MDS version at least 2.10.56"
12565
12566         local mdts=$(comma_list $(mdts_nodes))
12567
12568         #define OBD_FAIL_TIME_IN_CHLOG_USER     0x1314
12569         do_nodes $mdts $LCTL set_param fail_loc=0x1314
12570
12571         # Create a user
12572         changelog_register || error "first changelog_register failed"
12573         changelog_register || error "second changelog_register failed"
12574         local cl_users
12575         declare -A cl_user1
12576         declare -A cl_user2
12577         local user_rec1
12578         local user_rec2
12579         local i
12580
12581         # generate some changelog records to accumulate on each MDT
12582         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
12583         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12584                 error "create $DIR/$tdir/$tfile failed"
12585
12586         # check changelogs have been generated
12587         local nbcl=$(changelog_dump | wc -l)
12588         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12589
12590         # reduce the max_idle_indexes value to make sure we exceed it
12591         max_ndx=$((nbcl / 2 - 1))
12592
12593         for param in "changelog_max_idle_indexes=$max_ndx" \
12594                      "changelog_gc=1" \
12595                      "changelog_min_gc_interval=2" \
12596                      "changelog_min_free_cat_entries=3"; do
12597                 local MDT0=$(facet_svc $SINGLEMDS)
12598                 local var="${param%=*}"
12599                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12600
12601                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12602                 do_nodes $mdts $LCTL set_param mdd.*.$param ||
12603                         error "unable to set mdd.*.$param"
12604         done
12605
12606         # simulate changelog catalog almost full
12607         #define OBD_FAIL_CAT_FREE_RECORDS       0x1313
12608         do_nodes $mdts $LCTL set_param fail_loc=0x1313 fail_val=3
12609
12610         for i in $(seq $MDSCOUNT); do
12611                 cl_users=(${CL_USERS[mds$i]})
12612                 cl_user1[mds$i]="${cl_users[0]}"
12613                 cl_user2[mds$i]="${cl_users[1]}"
12614
12615                 [ -n "${cl_user1[mds$i]}" ] ||
12616                         error "mds$i: no user registered"
12617                 [ -n "${cl_user2[mds$i]}" ] ||
12618                         error "mds$i: only ${cl_user1[mds$i]} is registered"
12619
12620                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12621                 [ -n "$user_rec1" ] ||
12622                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12623                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12624                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12625                 [ -n "$user_rec2" ] ||
12626                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12627                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12628                      "$user_rec1 + 2 == $user_rec2"
12629                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12630                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12631                               "$user_rec1 + 2, but is $user_rec2"
12632                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12633                 [ -n "$user_rec2" ] ||
12634                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12635                 [ $user_rec1 == $user_rec2 ] ||
12636                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12637                               "$user_rec1, but is $user_rec2"
12638         done
12639
12640         # ensure we are past the previous changelog_min_gc_interval set above
12641         sleep 2
12642
12643         # generate one more changelog to trigger fail_loc
12644         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12645                 error "create $DIR/$tdir/${tfile}bis failed"
12646
12647         # ensure gc thread is done
12648         for i in $(mdts_nodes); do
12649                 wait_update $i \
12650                         "ps -e -o comm= | grep chlg_gc_thread" "" 20 ||
12651                         error "$i: GC-thread not done"
12652         done
12653
12654         local first_rec
12655         for i in $(seq $MDSCOUNT); do
12656                 # check cl_user1 still registered
12657                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12658                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12659                 # check cl_user2 unregistered
12660                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12661                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12662
12663                 # check changelogs are present and starting at $user_rec1 + 1
12664                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12665                 [ -n "$user_rec1" ] ||
12666                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12667                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12668                             awk '{ print $1; exit; }')
12669
12670                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12671                 [ $((user_rec1 + 1)) == $first_rec ] ||
12672                         error "mds$i: first index should be $user_rec1 + 1, " \
12673                               "but is $first_rec"
12674         done
12675 }
12676 run_test 160g "changelog garbage collect (old users)"
12677
12678 test_160h() {
12679         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12680         [[ $MDS1_VERSION -ge $(version_code 2.10.56) ]] ||
12681                 skip "Need MDS version at least 2.10.56"
12682
12683         local mdts=$(comma_list $(mdts_nodes))
12684
12685         # Create a user
12686         changelog_register || error "first changelog_register failed"
12687         changelog_register || error "second changelog_register failed"
12688         local cl_users
12689         declare -A cl_user1
12690         declare -A cl_user2
12691         local user_rec1
12692         local user_rec2
12693         local i
12694
12695         # generate some changelog records to accumulate on each MDT
12696         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "test_mkdir $tdir failed"
12697         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12698                 error "create $DIR/$tdir/$tfile failed"
12699
12700         # check changelogs have been generated
12701         local nbcl=$(changelog_dump | wc -l)
12702         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12703
12704         for param in "changelog_max_idle_time=10" \
12705                      "changelog_gc=1" \
12706                      "changelog_min_gc_interval=2"; do
12707                 local MDT0=$(facet_svc $SINGLEMDS)
12708                 local var="${param%=*}"
12709                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12710
12711                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12712                 do_nodes $mdts $LCTL set_param mdd.*.$param
12713         done
12714
12715         # force cl_user2 to be idle (1st part)
12716         sleep 9
12717
12718         for i in $(seq $MDSCOUNT); do
12719                 cl_users=(${CL_USERS[mds$i]})
12720                 cl_user1[mds$i]="${cl_users[0]}"
12721                 cl_user2[mds$i]="${cl_users[1]}"
12722
12723                 [ -n "${cl_user1[mds$i]}" ] ||
12724                         error "mds$i: no user registered"
12725                 [ -n "${cl_user2[mds$i]}" ] ||
12726                         error "mds$i: only ${cl_user2[mds$i]} is registered"
12727
12728                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12729                 [ -n "$user_rec1" ] ||
12730                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12731                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12732                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12733                 [ -n "$user_rec2" ] ||
12734                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12735                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12736                      "$user_rec1 + 2 == $user_rec2"
12737                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12738                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12739                               "$user_rec1 + 2, but is $user_rec2"
12740                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12741                 [ -n "$user_rec2" ] ||
12742                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12743                 [ $user_rec1 == $user_rec2 ] ||
12744                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12745                               "$user_rec1, but is $user_rec2"
12746         done
12747
12748         # force cl_user2 to be idle (2nd part) and to reach
12749         # changelog_max_idle_time
12750         sleep 2
12751
12752         # force each GC-thread start and block then
12753         # one per MDT/MDD, set fail_val accordingly
12754         #define OBD_FAIL_FORCE_GC_THREAD 0x1316
12755         do_nodes $mdts $LCTL set_param fail_loc=0x1316
12756
12757         # generate more changelogs to trigger fail_loc
12758         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12759                 error "create $DIR/$tdir/${tfile}bis failed"
12760
12761         # stop MDT to stop GC-thread, should be done in back-ground as it will
12762         # block waiting for the thread to be released and exit
12763         declare -A stop_pids
12764         for i in $(seq $MDSCOUNT); do
12765                 stop mds$i &
12766                 stop_pids[mds$i]=$!
12767         done
12768
12769         for i in $(mdts_nodes); do
12770                 local facet
12771                 local nb=0
12772                 local facets=$(facets_up_on_host $i)
12773
12774                 for facet in ${facets//,/ }; do
12775                         if [[ $facet == mds* ]]; then
12776                                 nb=$((nb + 1))
12777                         fi
12778                 done
12779                 # ensure each MDS's gc threads are still present and all in "R"
12780                 # state (OBD_FAIL_FORCE_GC_THREAD effect!)
12781                 [[ $(do_node $i pgrep chlg_gc_thread | wc -l) -eq $nb ]] ||
12782                         error "$i: expected $nb GC-thread"
12783                 wait_update $i \
12784                         "ps -C chlg_gc_thread -o state --no-headers | uniq" \
12785                         "R" 20 ||
12786                         error "$i: GC-thread not found in R-state"
12787                 # check umounts of each MDT on MDS have reached kthread_stop()
12788                 [[ $(do_node $i pgrep umount | wc -l) -eq $nb ]] ||
12789                         error "$i: expected $nb umount"
12790                 wait_update $i \
12791                         "ps -C umount -o state --no-headers | uniq" "D" 20 ||
12792                         error "$i: umount not found in D-state"
12793         done
12794
12795         # release all GC-threads
12796         do_nodes $mdts $LCTL set_param fail_loc=0
12797
12798         # wait for MDT stop to complete
12799         for i in $(seq $MDSCOUNT); do
12800                 wait ${stop_pids[mds$i]} || error "mds$i: stop failed"
12801         done
12802
12803         # XXX
12804         # may try to check if any orphan changelog records are present
12805         # via ldiskfs/zfs and llog_reader...
12806
12807         # re-start/mount MDTs
12808         for i in $(seq $MDSCOUNT); do
12809                 start mds$i $(mdsdevname $i) $MDS_MOUNT_OPTS ||
12810                         error "Fail to start mds$i"
12811         done
12812
12813         local first_rec
12814         for i in $(seq $MDSCOUNT); do
12815                 # check cl_user1 still registered
12816                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12817                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12818                 # check cl_user2 unregistered
12819                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12820                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12821
12822                 # check changelogs are present and starting at $user_rec1 + 1
12823                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12824                 [ -n "$user_rec1" ] ||
12825                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12826                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12827                             awk '{ print $1; exit; }')
12828
12829                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12830                 [ $((user_rec1 + 1)) == $first_rec ] ||
12831                         error "mds$i: first index should be $user_rec1 + 1, " \
12832                               "but is $first_rec"
12833         done
12834 }
12835 run_test 160h "changelog gc thread stop upon umount, orphan records delete " \
12836               "during mount"
12837
12838 test_160i() {
12839
12840         local mdts=$(comma_list $(mdts_nodes))
12841
12842         changelog_register || error "first changelog_register failed"
12843
12844         # generate some changelog records to accumulate on each MDT
12845         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
12846         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12847                 error "create $DIR/$tdir/$tfile failed"
12848
12849         # check changelogs have been generated
12850         local nbcl=$(changelog_dump | wc -l)
12851         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12852
12853         # simulate race between register and unregister
12854         # XXX as fail_loc is set per-MDS, with DNE configs the race
12855         # simulation will only occur for one MDT per MDS and for the
12856         # others the normal race scenario will take place
12857         #define CFS_FAIL_CHLOG_USER_REG_UNREG_RACE          0x1315
12858         do_nodes $mdts $LCTL set_param fail_loc=0x10001315
12859         do_nodes $mdts $LCTL set_param fail_val=1
12860
12861         # unregister 1st user
12862         changelog_deregister &
12863         local pid1=$!
12864         # wait some time for deregister work to reach race rdv
12865         sleep 2
12866         # register 2nd user
12867         changelog_register || error "2nd user register failed"
12868
12869         wait $pid1 || error "1st user deregister failed"
12870
12871         local i
12872         local last_rec
12873         declare -A LAST_REC
12874         for i in $(seq $MDSCOUNT); do
12875                 if changelog_users mds$i | grep "^cl"; then
12876                         # make sure new records are added with one user present
12877                         LAST_REC[mds$i]=$(changelog_users $SINGLEMDS |
12878                                           awk '/^current.index:/ { print $NF }')
12879                 else
12880                         error "mds$i has no user registered"
12881                 fi
12882         done
12883
12884         # generate more changelog records to accumulate on each MDT
12885         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12886                 error "create $DIR/$tdir/${tfile}bis failed"
12887
12888         for i in $(seq $MDSCOUNT); do
12889                 last_rec=$(changelog_users $SINGLEMDS |
12890                            awk '/^current.index:/ { print $NF }')
12891                 echo "verify changelogs are on: $last_rec != ${LAST_REC[mds$i]}"
12892                 [ $last_rec != ${LAST_REC[mds$i]} ] ||
12893                         error "changelogs are off on mds$i"
12894         done
12895 }
12896 run_test 160i "changelog user register/unregister race"
12897
12898 test_161a() {
12899         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12900
12901         test_mkdir -c1 $DIR/$tdir
12902         cp /etc/hosts $DIR/$tdir/$tfile
12903         test_mkdir -c1 $DIR/$tdir/foo1
12904         test_mkdir -c1 $DIR/$tdir/foo2
12905         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
12906         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
12907         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
12908         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
12909         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
12910         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
12911                 $LFS fid2path $DIR $FID
12912                 error "bad link ea"
12913         fi
12914         # middle
12915         rm $DIR/$tdir/foo2/zachary
12916         # last
12917         rm $DIR/$tdir/foo2/thor
12918         # first
12919         rm $DIR/$tdir/$tfile
12920         # rename
12921         mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
12922         [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ] &&
12923                 { $LFS fid2path $DIR $FID; error "bad link rename"; }
12924         rm $DIR/$tdir/foo2/maggie
12925
12926         # overflow the EA
12927         local longname=$tfile.avg_len_is_thirty_two_
12928         stack_trap "unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
12929                 error_noexit 'failed to unlink many hardlinks'" EXIT
12930         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
12931                 error "failed to hardlink many files"
12932         links=$($LFS fid2path $DIR $FID | wc -l)
12933         echo -n "${links}/1000 links in link EA"
12934         [[ $links -gt 60 ]] || error "expected at least 60 links in link EA"
12935 }
12936 run_test 161a "link ea sanity"
12937
12938 test_161b() {
12939         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12940         [ $MDSCOUNT -lt 2 ] && skip_env "skipping remote directory test"
12941
12942         local MDTIDX=1
12943         local remote_dir=$DIR/$tdir/remote_dir
12944
12945         mkdir -p $DIR/$tdir
12946         $LFS mkdir -i $MDTIDX $remote_dir ||
12947                 error "create remote directory failed"
12948
12949         cp /etc/hosts $remote_dir/$tfile
12950         mkdir -p $remote_dir/foo1
12951         mkdir -p $remote_dir/foo2
12952         ln $remote_dir/$tfile $remote_dir/foo1/sofia
12953         ln $remote_dir/$tfile $remote_dir/foo2/zachary
12954         ln $remote_dir/$tfile $remote_dir/foo1/luna
12955         ln $remote_dir/$tfile $remote_dir/foo2/thor
12956
12957         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
12958                      tr -d ']')
12959         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
12960                 $LFS fid2path $DIR $FID
12961                 error "bad link ea"
12962         fi
12963         # middle
12964         rm $remote_dir/foo2/zachary
12965         # last
12966         rm $remote_dir/foo2/thor
12967         # first
12968         rm $remote_dir/$tfile
12969         # rename
12970         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
12971         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
12972         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
12973                 $LFS fid2path $DIR $FID
12974                 error "bad link rename"
12975         fi
12976         rm $remote_dir/foo2/maggie
12977
12978         # overflow the EA
12979         local longname=filename_avg_len_is_thirty_two_
12980         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
12981                 error "failed to hardlink many files"
12982         links=$($LFS fid2path $DIR $FID | wc -l)
12983         echo -n "${links}/1000 links in link EA"
12984         [[ ${links} -gt 60 ]] ||
12985                 error "expected at least 60 links in link EA"
12986         unlinkmany $remote_dir/foo2/$longname 1000 ||
12987         error "failed to unlink many hardlinks"
12988 }
12989 run_test 161b "link ea sanity under remote directory"
12990
12991 test_161c() {
12992         remote_mds_nodsh && skip "remote MDS with nodsh"
12993         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12994         [[ $MDS1_VERSION -lt $(version_code 2.1.5) ]] &&
12995                 skip "Need MDS version at least 2.1.5"
12996
12997         # define CLF_RENAME_LAST 0x0001
12998         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
12999         changelog_register || error "changelog_register failed"
13000
13001         rm -rf $DIR/$tdir
13002         test_mkdir -i $((MDSCOUNT - 1)) $DIR/$tdir
13003         touch $DIR/$tdir/foo_161c
13004         touch $DIR/$tdir/bar_161c
13005         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
13006         changelog_dump | grep RENME | tail -n 5
13007         local flags=$(changelog_dump | grep "RENME.*bar_161c" | cut -f5 -d' ')
13008         changelog_clear 0 || error "changelog_clear failed"
13009         if [ x$flags != "x0x1" ]; then
13010                 error "flag $flags is not 0x1"
13011         fi
13012
13013         echo "rename overwrite target with nlink = 1, changelog flags=$flags"
13014         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
13015         touch $DIR/$tdir/foo_161c
13016         touch $DIR/$tdir/bar_161c
13017         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
13018         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
13019         changelog_dump | grep RENME | tail -n 5
13020         flags=$(changelog_dump | grep "RENME.*bar_161c" | cut -f5 -d' ')
13021         changelog_clear 0 || error "changelog_clear failed"
13022         if [ x$flags != "x0x0" ]; then
13023                 error "flag $flags is not 0x0"
13024         fi
13025         echo "rename overwrite a target having nlink > 1," \
13026                 "changelog record has flags of $flags"
13027
13028         # rename doesn't overwrite a target (changelog flag 0x0)
13029         touch $DIR/$tdir/foo_161c
13030         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
13031         changelog_dump | grep RENME | tail -n 5
13032         flags=$(changelog_dump | grep RENME | tail -1 | cut -f5 -d' ')
13033         changelog_clear 0 || error "changelog_clear failed"
13034         if [ x$flags != "x0x0" ]; then
13035                 error "flag $flags is not 0x0"
13036         fi
13037         echo "rename doesn't overwrite a target," \
13038                 "changelog record has flags of $flags"
13039
13040         # define CLF_UNLINK_LAST 0x0001
13041         # unlink a file having nlink = 1 (changelog flag 0x1)
13042         rm -f $DIR/$tdir/foo2_161c
13043         changelog_dump | grep UNLNK | tail -n 5
13044         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
13045         changelog_clear 0 || error "changelog_clear failed"
13046         if [ x$flags != "x0x1" ]; then
13047                 error "flag $flags is not 0x1"
13048         fi
13049         echo "unlink a file having nlink = 1," \
13050                 "changelog record has flags of $flags"
13051
13052         # unlink a file having nlink > 1 (changelog flag 0x0)
13053         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
13054         rm -f $DIR/$tdir/foobar_161c
13055         changelog_dump | grep UNLNK | tail -n 5
13056         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
13057         changelog_clear 0 || error "changelog_clear failed"
13058         if [ x$flags != "x0x0" ]; then
13059                 error "flag $flags is not 0x0"
13060         fi
13061         echo "unlink a file having nlink > 1, changelog record flags '$flags'"
13062 }
13063 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
13064
13065 test_161d() {
13066         remote_mds_nodsh && skip "remote MDS with nodsh"
13067         [ -n "$FILESET" ] && skip "Not functional for FILESET set"
13068
13069         local pid
13070         local fid
13071
13072         changelog_register || error "changelog_register failed"
13073
13074         # work in a standalone dir to avoid locking on $DIR/$MOUNT to
13075         # interfer with $MOUNT/.lustre/fid/ access
13076         mkdir $DIR/$tdir
13077         [[ $? -eq 0 ]] || error "mkdir failed"
13078
13079         #define OBD_FAIL_LLITE_CREATE_NODE_PAUSE 0x140c | OBD_FAIL_ONCE
13080         $LCTL set_param fail_loc=0x8000140c
13081         # 5s pause
13082         $LCTL set_param fail_val=5
13083
13084         # create file
13085         echo foofoo > $DIR/$tdir/$tfile &
13086         pid=$!
13087
13088         # wait for create to be delayed
13089         sleep 2
13090
13091         ps -p $pid
13092         [[ $? -eq 0 ]] || error "create should be blocked"
13093
13094         local tempfile=$(mktemp)
13095         fid=$(changelog_extract_field "CREAT" "$tfile" "t=")
13096         cat $MOUNT/.lustre/fid/$fid 2>/dev/null >$tempfile || error "cat failed"
13097         # some delay may occur during ChangeLog publishing and file read just
13098         # above, that could allow file write to happen finally
13099         [[ -s $tempfile ]] && echo "file should be empty"
13100
13101         $LCTL set_param fail_loc=0
13102
13103         wait $pid
13104         [[ $? -eq 0 ]] || error "create failed"
13105 }
13106 run_test 161d "create with concurrent .lustre/fid access"
13107
13108 check_path() {
13109         local expected="$1"
13110         shift
13111         local fid="$2"
13112
13113         local path
13114         path=$($LFS fid2path "$@")
13115         local rc=$?
13116
13117         if [ $rc -ne 0 ]; then
13118                 error "path looked up of '$expected' failed: rc=$rc"
13119         elif [ "$path" != "$expected" ]; then
13120                 error "path looked up '$path' instead of '$expected'"
13121         else
13122                 echo "FID '$fid' resolves to path '$path' as expected"
13123         fi
13124 }
13125
13126 test_162a() { # was test_162
13127         test_mkdir -p -c1 $DIR/$tdir/d2
13128         touch $DIR/$tdir/d2/$tfile
13129         touch $DIR/$tdir/d2/x1
13130         touch $DIR/$tdir/d2/x2
13131         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
13132         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
13133         # regular file
13134         local fid=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
13135         check_path "$tdir/d2/$tfile" $FSNAME "$fid" --link 0
13136
13137         # softlink
13138         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
13139         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
13140         check_path "$tdir/d2/p/q/r/slink" $FSNAME "$fid" --link 0
13141
13142         # softlink to wrong file
13143         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
13144         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
13145         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME "$fid" --link 0
13146
13147         # hardlink
13148         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
13149         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
13150         fid=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
13151         # fid2path dir/fsname should both work
13152         check_path "$tdir/d2/a/b/c/new_file" $FSNAME "$fid" --link 1
13153         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR "$fid" --link 0
13154
13155         # hardlink count: check that there are 2 links
13156         local nlinks=$($LFS fid2path $DIR "$fid" | wc -l)
13157         [ $nlinks -eq 2 ] || error "expect 2 links, found $nlinks"
13158
13159         # hardlink indexing: remove the first link
13160         rm $DIR/$tdir/d2/p/q/r/hlink
13161         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $fid --link 0
13162 }
13163 run_test 162a "path lookup sanity"
13164
13165 test_162b() {
13166         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13167         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
13168
13169         mkdir $DIR/$tdir
13170         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
13171                                 error "create striped dir failed"
13172
13173         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
13174                                         tail -n 1 | awk '{print $2}')
13175         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
13176
13177         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
13178         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
13179
13180         # regular file
13181         for ((i=0;i<5;i++)); do
13182                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
13183                         error "get fid for f$i failed"
13184                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0
13185
13186                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
13187                         error "get fid for d$i failed"
13188                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0
13189         done
13190
13191         return 0
13192 }
13193 run_test 162b "striped directory path lookup sanity"
13194
13195 # LU-4239: Verify fid2path works with paths 100 or more directories deep
13196 test_162c() {
13197         [[ $MDS1_VERSION -lt $(version_code 2.7.51) ]] &&
13198                 skip "Need MDS version at least 2.7.51"
13199
13200         local lpath=$tdir.local
13201         local rpath=$tdir.remote
13202
13203         test_mkdir $DIR/$lpath
13204         test_mkdir $DIR/$rpath
13205
13206         for ((i = 0; i <= 101; i++)); do
13207                 lpath="$lpath/$i"
13208                 mkdir $DIR/$lpath
13209                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
13210                         error "get fid for local directory $DIR/$lpath failed"
13211                 check_path "$DIR/$lpath" $MOUNT $FID --link 0
13212
13213                 rpath="$rpath/$i"
13214                 test_mkdir $DIR/$rpath
13215                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
13216                         error "get fid for remote directory $DIR/$rpath failed"
13217                 check_path "$DIR/$rpath" $MOUNT $FID --link 0
13218         done
13219
13220         return 0
13221 }
13222 run_test 162c "fid2path works with paths 100 or more directories deep"
13223
13224 test_169() {
13225         # do directio so as not to populate the page cache
13226         log "creating a 10 Mb file"
13227         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
13228         log "starting reads"
13229         dd if=$DIR/$tfile of=/dev/null bs=4096 &
13230         log "truncating the file"
13231         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
13232         log "killing dd"
13233         kill %+ || true # reads might have finished
13234         echo "wait until dd is finished"
13235         wait
13236         log "removing the temporary file"
13237         rm -rf $DIR/$tfile || error "tmp file removal failed"
13238 }
13239 run_test 169 "parallel read and truncate should not deadlock"
13240
13241 test_170() {
13242         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13243
13244         $LCTL clear     # bug 18514
13245         $LCTL debug_daemon start $TMP/${tfile}_log_good
13246         touch $DIR/$tfile
13247         $LCTL debug_daemon stop
13248         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
13249                 error "sed failed to read log_good"
13250
13251         $LCTL debug_daemon start $TMP/${tfile}_log_good
13252         rm -rf $DIR/$tfile
13253         $LCTL debug_daemon stop
13254
13255         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
13256                error "lctl df log_bad failed"
13257
13258         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
13259         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
13260
13261         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
13262         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
13263
13264         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
13265                 error "bad_line good_line1 good_line2 are empty"
13266
13267         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
13268         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
13269         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
13270
13271         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
13272         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
13273         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
13274
13275         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
13276                 error "bad_line_new good_line_new are empty"
13277
13278         local expected_good=$((good_line1 + good_line2*2))
13279
13280         rm -f $TMP/${tfile}*
13281         # LU-231, short malformed line may not be counted into bad lines
13282         if [ $bad_line -ne $bad_line_new ] &&
13283                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
13284                 error "expected $bad_line bad lines, but got $bad_line_new"
13285                 return 1
13286         fi
13287
13288         if [ $expected_good -ne $good_line_new ]; then
13289                 error "expected $expected_good good lines, but got $good_line_new"
13290                 return 2
13291         fi
13292         true
13293 }
13294 run_test 170 "test lctl df to handle corrupted log ====================="
13295
13296 test_171() { # bug20592
13297         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13298
13299         #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
13300         $LCTL set_param fail_loc=0x50e
13301         $LCTL set_param fail_val=3000
13302         multiop_bg_pause $DIR/$tfile O_s || true
13303         local MULTIPID=$!
13304         kill -USR1 $MULTIPID
13305         # cause log dump
13306         sleep 3
13307         wait $MULTIPID
13308         if dmesg | grep "recursive fault"; then
13309                 error "caught a recursive fault"
13310         fi
13311         $LCTL set_param fail_loc=0
13312         true
13313 }
13314 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
13315
13316 # it would be good to share it with obdfilter-survey/iokit-libecho code
13317 setup_obdecho_osc () {
13318         local rc=0
13319         local ost_nid=$1
13320         local obdfilter_name=$2
13321         echo "Creating new osc for $obdfilter_name on $ost_nid"
13322         # make sure we can find loopback nid
13323         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
13324
13325         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
13326                            ${obdfilter_name}_osc_UUID || rc=2; }
13327         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
13328                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
13329         return $rc
13330 }
13331
13332 cleanup_obdecho_osc () {
13333         local obdfilter_name=$1
13334         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
13335         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
13336         return 0
13337 }
13338
13339 obdecho_test() {
13340         local OBD=$1
13341         local node=$2
13342         local pages=${3:-64}
13343         local rc=0
13344         local id
13345
13346         local count=10
13347         local obd_size=$(get_obd_size $node $OBD)
13348         local page_size=$(get_page_size $node)
13349         if [[ -n "$obd_size" ]]; then
13350                 local new_count=$((obd_size / (pages * page_size / 1024)))
13351                 [[ $new_count -ge $count ]] || count=$new_count
13352         fi
13353
13354         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
13355         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
13356                            rc=2; }
13357         if [ $rc -eq 0 ]; then
13358             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
13359             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
13360         fi
13361         echo "New object id is $id"
13362         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
13363                            rc=4; }
13364         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
13365                            "test_brw $count w v $pages $id" || rc=4; }
13366         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
13367                            rc=4; }
13368         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
13369                                         "cleanup" || rc=5; }
13370         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
13371                                         "detach" || rc=6; }
13372         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
13373         return $rc
13374 }
13375
13376 test_180a() {
13377         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13378
13379         if ! module_loaded obdecho; then
13380                 load_module obdecho/obdecho &&
13381                         stack_trap "rmmod obdecho" EXIT ||
13382                         error "unable to load obdecho on client"
13383         fi
13384
13385         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
13386         local host=$($LCTL get_param -n osc.$osc.import |
13387                      awk '/current_connection:/ { print $2 }' )
13388         local target=$($LCTL get_param -n osc.$osc.import |
13389                        awk '/target:/ { print $2 }' )
13390         target=${target%_UUID}
13391
13392         if [ -n "$target" ]; then
13393                 setup_obdecho_osc $host $target &&
13394                         stack_trap "cleanup_obdecho_osc $target" EXIT ||
13395                         { error "obdecho setup failed with $?"; return; }
13396
13397                 obdecho_test ${target}_osc client ||
13398                         error "obdecho_test failed on ${target}_osc"
13399         else
13400                 $LCTL get_param osc.$osc.import
13401                 error "there is no osc.$osc.import target"
13402         fi
13403 }
13404 run_test 180a "test obdecho on osc"
13405
13406 test_180b() {
13407         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13408         remote_ost_nodsh && skip "remote OST with nodsh"
13409
13410         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
13411                 stack_trap "do_facet ost1 rmmod obdecho" EXIT ||
13412                 error "failed to load module obdecho"
13413
13414         local target=$(do_facet ost1 $LCTL dl |
13415                        awk '/obdfilter/ { print $4; exit; }')
13416
13417         if [ -n "$target" ]; then
13418                 obdecho_test $target ost1 || error "obdecho_test failed with $?"
13419         else
13420                 do_facet ost1 $LCTL dl
13421                 error "there is no obdfilter target on ost1"
13422         fi
13423 }
13424 run_test 180b "test obdecho directly on obdfilter"
13425
13426 test_180c() { # LU-2598
13427         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13428         remote_ost_nodsh && skip "remote OST with nodsh"
13429         [[ $MDS1_VERSION -lt $(version_code 2.4.0) ]] &&
13430                 skip "Need MDS version at least 2.4.0"
13431
13432         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
13433                 stack_trap "do_facet ost1 rmmod obdecho" EXIT ||
13434                 error "failed to load module obdecho"
13435
13436         local target=$(do_facet ost1 $LCTL dl |
13437                        awk '/obdfilter/ { print $4; exit; }')
13438
13439         if [ -n "$target" ]; then
13440                 local pages=16384 # 64MB bulk I/O RPC size
13441
13442                 obdecho_test "$target" ost1 "$pages" ||
13443                         error "obdecho_test with pages=$pages failed with $?"
13444         else
13445                 do_facet ost1 $LCTL dl
13446                 error "there is no obdfilter target on ost1"
13447         fi
13448 }
13449 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
13450
13451 test_181() { # bug 22177
13452         test_mkdir $DIR/$tdir
13453         # create enough files to index the directory
13454         createmany -o $DIR/$tdir/foobar 4000
13455         # print attributes for debug purpose
13456         lsattr -d .
13457         # open dir
13458         multiop_bg_pause $DIR/$tdir D_Sc || return 1
13459         MULTIPID=$!
13460         # remove the files & current working dir
13461         unlinkmany $DIR/$tdir/foobar 4000
13462         rmdir $DIR/$tdir
13463         kill -USR1 $MULTIPID
13464         wait $MULTIPID
13465         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
13466         return 0
13467 }
13468 run_test 181 "Test open-unlinked dir ========================"
13469
13470 test_182() {
13471         local fcount=1000
13472         local tcount=10
13473
13474         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13475
13476         $LCTL set_param mdc.*.rpc_stats=clear
13477
13478         for (( i = 0; i < $tcount; i++ )) ; do
13479                 mkdir $DIR/$tdir/$i
13480         done
13481
13482         for (( i = 0; i < $tcount; i++ )) ; do
13483                 createmany -o $DIR/$tdir/$i/f- $fcount &
13484         done
13485         wait
13486
13487         for (( i = 0; i < $tcount; i++ )) ; do
13488                 unlinkmany $DIR/$tdir/$i/f- $fcount &
13489         done
13490         wait
13491
13492         $LCTL get_param mdc.*.rpc_stats
13493
13494         rm -rf $DIR/$tdir
13495 }
13496 run_test 182 "Test parallel modify metadata operations ================"
13497
13498 test_183() { # LU-2275
13499         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13500         remote_mds_nodsh && skip "remote MDS with nodsh"
13501         [[ $MDS1_VERSION -lt $(version_code 2.3.56) ]] &&
13502                 skip "Need MDS version at least 2.3.56"
13503
13504         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13505         echo aaa > $DIR/$tdir/$tfile
13506
13507 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
13508         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
13509
13510         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
13511         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
13512
13513         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
13514
13515         # Flush negative dentry cache
13516         touch $DIR/$tdir/$tfile
13517
13518         # We are not checking for any leaked references here, they'll
13519         # become evident next time we do cleanup with module unload.
13520         rm -rf $DIR/$tdir
13521 }
13522 run_test 183 "No crash or request leak in case of strange dispositions ========"
13523
13524 # test suite 184 is for LU-2016, LU-2017
13525 test_184a() {
13526         check_swap_layouts_support
13527
13528         dir0=$DIR/$tdir/$testnum
13529         test_mkdir -p -c1 $dir0
13530         ref1=/etc/passwd
13531         ref2=/etc/group
13532         file1=$dir0/f1
13533         file2=$dir0/f2
13534         $LFS setstripe -c1 $file1
13535         cp $ref1 $file1
13536         $LFS setstripe -c2 $file2
13537         cp $ref2 $file2
13538         gen1=$($LFS getstripe -g $file1)
13539         gen2=$($LFS getstripe -g $file2)
13540
13541         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
13542         gen=$($LFS getstripe -g $file1)
13543         [[ $gen1 != $gen ]] ||
13544                 "Layout generation on $file1 does not change"
13545         gen=$($LFS getstripe -g $file2)
13546         [[ $gen2 != $gen ]] ||
13547                 "Layout generation on $file2 does not change"
13548
13549         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
13550         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
13551
13552         lfsck_verify_pfid $file1 $file2 || error "PFID are not transferred"
13553 }
13554 run_test 184a "Basic layout swap"
13555
13556 test_184b() {
13557         check_swap_layouts_support
13558
13559         dir0=$DIR/$tdir/$testnum
13560         mkdir -p $dir0 || error "creating dir $dir0"
13561         file1=$dir0/f1
13562         file2=$dir0/f2
13563         file3=$dir0/f3
13564         dir1=$dir0/d1
13565         dir2=$dir0/d2
13566         mkdir $dir1 $dir2
13567         $LFS setstripe -c1 $file1
13568         $LFS setstripe -c2 $file2
13569         $LFS setstripe -c1 $file3
13570         chown $RUNAS_ID $file3
13571         gen1=$($LFS getstripe -g $file1)
13572         gen2=$($LFS getstripe -g $file2)
13573
13574         $LFS swap_layouts $dir1 $dir2 &&
13575                 error "swap of directories layouts should fail"
13576         $LFS swap_layouts $dir1 $file1 &&
13577                 error "swap of directory and file layouts should fail"
13578         $RUNAS $LFS swap_layouts $file1 $file2 &&
13579                 error "swap of file we cannot write should fail"
13580         $LFS swap_layouts $file1 $file3 &&
13581                 error "swap of file with different owner should fail"
13582         /bin/true # to clear error code
13583 }
13584 run_test 184b "Forbidden layout swap (will generate errors)"
13585
13586 test_184c() {
13587         local cmpn_arg=$(cmp -n 2>&1 | grep "invalid option")
13588         [ -n "$cmpn_arg" ] && skip_env "cmp does not support -n"
13589         check_swap_layouts_support
13590
13591         local dir0=$DIR/$tdir/$testnum
13592         mkdir -p $dir0 || error "creating dir $dir0"
13593
13594         local ref1=$dir0/ref1
13595         local ref2=$dir0/ref2
13596         local file1=$dir0/file1
13597         local file2=$dir0/file2
13598         # create a file large enough for the concurrent test
13599         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
13600         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
13601         echo "ref file size: ref1($(stat -c %s $ref1))," \
13602              "ref2($(stat -c %s $ref2))"
13603
13604         cp $ref2 $file2
13605         dd if=$ref1 of=$file1 bs=16k &
13606         local DD_PID=$!
13607
13608         # Make sure dd starts to copy file
13609         while [ ! -f $file1 ]; do sleep 0.1; done
13610
13611         $LFS swap_layouts $file1 $file2
13612         local rc=$?
13613         wait $DD_PID
13614         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
13615         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
13616
13617         # how many bytes copied before swapping layout
13618         local copied=$(stat -c %s $file2)
13619         local remaining=$(stat -c %s $ref1)
13620         remaining=$((remaining - copied))
13621         echo "Copied $copied bytes before swapping layout..."
13622
13623         cmp -n $copied $file1 $ref2 | grep differ &&
13624                 error "Content mismatch [0, $copied) of ref2 and file1"
13625         cmp -n $copied $file2 $ref1 ||
13626                 error "Content mismatch [0, $copied) of ref1 and file2"
13627         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
13628                 error "Content mismatch [$copied, EOF) of ref1 and file1"
13629
13630         # clean up
13631         rm -f $ref1 $ref2 $file1 $file2
13632 }
13633 run_test 184c "Concurrent write and layout swap"
13634
13635 test_184d() {
13636         check_swap_layouts_support
13637         [ -z "$(which getfattr 2>/dev/null)" ] &&
13638                 skip_env "no getfattr command"
13639
13640         local file1=$DIR/$tdir/$tfile-1
13641         local file2=$DIR/$tdir/$tfile-2
13642         local file3=$DIR/$tdir/$tfile-3
13643         local lovea1
13644         local lovea2
13645
13646         mkdir -p $DIR/$tdir
13647         touch $file1 || error "create $file1 failed"
13648         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
13649                 error "create $file2 failed"
13650         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
13651                 error "create $file3 failed"
13652         lovea1=$(get_layout_param $file1)
13653
13654         $LFS swap_layouts $file2 $file3 ||
13655                 error "swap $file2 $file3 layouts failed"
13656         $LFS swap_layouts $file1 $file2 ||
13657                 error "swap $file1 $file2 layouts failed"
13658
13659         lovea2=$(get_layout_param $file2)
13660         echo "$lovea1"
13661         echo "$lovea2"
13662         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
13663
13664         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
13665         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
13666 }
13667 run_test 184d "allow stripeless layouts swap"
13668
13669 test_184e() {
13670         [[ $MDS1_VERSION -ge $(version_code 2.6.94) ]] ||
13671                 skip "Need MDS version at least 2.6.94"
13672         check_swap_layouts_support
13673         [ -z "$(which getfattr 2>/dev/null)" ] &&
13674                 skip_env "no getfattr command"
13675
13676         local file1=$DIR/$tdir/$tfile-1
13677         local file2=$DIR/$tdir/$tfile-2
13678         local file3=$DIR/$tdir/$tfile-3
13679         local lovea
13680
13681         mkdir -p $DIR/$tdir
13682         touch $file1 || error "create $file1 failed"
13683         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
13684                 error "create $file2 failed"
13685         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
13686                 error "create $file3 failed"
13687
13688         $LFS swap_layouts $file1 $file2 ||
13689                 error "swap $file1 $file2 layouts failed"
13690
13691         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
13692         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
13693
13694         echo 123 > $file1 || error "Should be able to write into $file1"
13695
13696         $LFS swap_layouts $file1 $file3 ||
13697                 error "swap $file1 $file3 layouts failed"
13698
13699         echo 123 > $file1 || error "Should be able to write into $file1"
13700
13701         rm -rf $file1 $file2 $file3
13702 }
13703 run_test 184e "Recreate layout after stripeless layout swaps"
13704
13705 test_184f() {
13706         # Create a file with name longer than sizeof(struct stat) ==
13707         # 144 to see if we can get chars from the file name to appear
13708         # in the returned striping. Note that 'f' == 0x66.
13709         local file=$(for ((i = 0; i < 200; i++)); do echo -n f; done)
13710
13711         mkdir -p $DIR/$tdir
13712         mcreate $DIR/$tdir/$file
13713         if lfs find --stripe-count 0x6666 $DIR/$tdir | grep $file; then
13714                 error "IOC_MDC_GETFILEINFO returned garbage striping"
13715         fi
13716 }
13717 run_test 184f "IOC_MDC_GETFILEINFO for files with long names but no striping"
13718
13719 test_185() { # LU-2441
13720         # LU-3553 - no volatile file support in old servers
13721         [[ $MDS1_VERSION -ge $(version_code 2.3.60) ]] ||
13722                 skip "Need MDS version at least 2.3.60"
13723
13724         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13725         touch $DIR/$tdir/spoo
13726         local mtime1=$(stat -c "%Y" $DIR/$tdir)
13727         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
13728                 error "cannot create/write a volatile file"
13729         [ "$FILESET" == "" ] &&
13730         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
13731                 error "FID is still valid after close"
13732
13733         multiop_bg_pause $DIR/$tdir vVw4096_c
13734         local multi_pid=$!
13735
13736         local OLD_IFS=$IFS
13737         IFS=":"
13738         local fidv=($fid)
13739         IFS=$OLD_IFS
13740         # assume that the next FID for this client is sequential, since stdout
13741         # is unfortunately eaten by multiop_bg_pause
13742         local n=$((${fidv[1]} + 1))
13743         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
13744         if [ "$FILESET" == "" ]; then
13745                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
13746                         error "FID is missing before close"
13747         fi
13748         kill -USR1 $multi_pid
13749         # 1 second delay, so if mtime change we will see it
13750         sleep 1
13751         local mtime2=$(stat -c "%Y" $DIR/$tdir)
13752         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
13753 }
13754 run_test 185 "Volatile file support"
13755
13756 test_187a() {
13757         remote_mds_nodsh && skip "remote MDS with nodsh"
13758         [ $MDS1_VERSION -lt $(version_code 2.3.0) ] &&
13759                 skip "Need MDS version at least 2.3.0"
13760
13761         local dir0=$DIR/$tdir/$testnum
13762         mkdir -p $dir0 || error "creating dir $dir0"
13763
13764         local file=$dir0/file1
13765         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
13766         local dv1=$($LFS data_version $file)
13767         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
13768         local dv2=$($LFS data_version $file)
13769         [[ $dv1 != $dv2 ]] ||
13770                 error "data version did not change on write $dv1 == $dv2"
13771
13772         # clean up
13773         rm -f $file1
13774 }
13775 run_test 187a "Test data version change"
13776
13777 test_187b() {
13778         remote_mds_nodsh && skip "remote MDS with nodsh"
13779         [ $MDS1_VERSION -lt $(version_code 2.3.0) ] &&
13780                 skip "Need MDS version at least 2.3.0"
13781
13782         local dir0=$DIR/$tdir/$testnum
13783         mkdir -p $dir0 || error "creating dir $dir0"
13784
13785         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
13786         [[ ${DV[0]} != ${DV[1]} ]] ||
13787                 error "data version did not change on write"\
13788                       " ${DV[0]} == ${DV[1]}"
13789
13790         # clean up
13791         rm -f $file1
13792 }
13793 run_test 187b "Test data version change on volatile file"
13794
13795 test_200() {
13796         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13797         remote_mgs_nodsh && skip "remote MGS with nodsh"
13798         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
13799
13800         local POOL=${POOL:-cea1}
13801         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
13802         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
13803         # Pool OST targets
13804         local first_ost=0
13805         local last_ost=$(($OSTCOUNT - 1))
13806         local ost_step=2
13807         local ost_list=$(seq $first_ost $ost_step $last_ost)
13808         local ost_range="$first_ost $last_ost $ost_step"
13809         local test_path=$POOL_ROOT/$POOL_DIR_NAME
13810         local file_dir=$POOL_ROOT/file_tst
13811         local subdir=$test_path/subdir
13812         local rc=0
13813
13814         if ! combined_mgs_mds ; then
13815                 mount_mgs_client
13816         fi
13817
13818         while : ; do
13819                 # former test_200a test_200b
13820                 pool_add $POOL                          || { rc=$? ; break; }
13821                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
13822                 # former test_200c test_200d
13823                 mkdir -p $test_path
13824                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
13825                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
13826                 mkdir -p $subdir
13827                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
13828                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
13829                                                         || { rc=$? ; break; }
13830                 # former test_200e test_200f
13831                 local files=$((OSTCOUNT*3))
13832                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
13833                                                         || { rc=$? ; break; }
13834                 pool_create_files $POOL $file_dir $files "$ost_list" \
13835                                                         || { rc=$? ; break; }
13836                 # former test_200g test_200h
13837                 pool_lfs_df $POOL                       || { rc=$? ; break; }
13838                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
13839
13840                 # former test_201a test_201b test_201c
13841                 pool_remove_first_target $POOL          || { rc=$? ; break; }
13842
13843                 local f=$test_path/$tfile
13844                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
13845                 pool_remove $POOL $f                    || { rc=$? ; break; }
13846                 break
13847         done
13848
13849         destroy_test_pools
13850
13851         if ! combined_mgs_mds ; then
13852                 umount_mgs_client
13853         fi
13854         return $rc
13855 }
13856 run_test 200 "OST pools"
13857
13858 # usage: default_attr <count | size | offset>
13859 default_attr() {
13860         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
13861 }
13862
13863 # usage: check_default_stripe_attr
13864 check_default_stripe_attr() {
13865         ACTUAL=$($LFS getstripe $* $DIR/$tdir)
13866         case $1 in
13867         --stripe-count|-c)
13868                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
13869         --stripe-size|-S)
13870                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
13871         --stripe-index|-i)
13872                 EXPECTED=-1;;
13873         *)
13874                 error "unknown getstripe attr '$1'"
13875         esac
13876
13877         [ $ACTUAL == $EXPECTED ] ||
13878                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
13879 }
13880
13881 test_204a() {
13882         test_mkdir $DIR/$tdir
13883         $LFS setstripe --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
13884
13885         check_default_stripe_attr --stripe-count
13886         check_default_stripe_attr --stripe-size
13887         check_default_stripe_attr --stripe-index
13888 }
13889 run_test 204a "Print default stripe attributes"
13890
13891 test_204b() {
13892         test_mkdir $DIR/$tdir
13893         $LFS setstripe --stripe-count 1 $DIR/$tdir
13894
13895         check_default_stripe_attr --stripe-size
13896         check_default_stripe_attr --stripe-index
13897 }
13898 run_test 204b "Print default stripe size and offset"
13899
13900 test_204c() {
13901         test_mkdir $DIR/$tdir
13902         $LFS setstripe --stripe-size 65536 $DIR/$tdir
13903
13904         check_default_stripe_attr --stripe-count
13905         check_default_stripe_attr --stripe-index
13906 }
13907 run_test 204c "Print default stripe count and offset"
13908
13909 test_204d() {
13910         test_mkdir $DIR/$tdir
13911         $LFS setstripe --stripe-index 0 $DIR/$tdir
13912
13913         check_default_stripe_attr --stripe-count
13914         check_default_stripe_attr --stripe-size
13915 }
13916 run_test 204d "Print default stripe count and size"
13917
13918 test_204e() {
13919         test_mkdir $DIR/$tdir
13920         $LFS setstripe -d $DIR/$tdir
13921
13922         check_default_stripe_attr --stripe-count --raw
13923         check_default_stripe_attr --stripe-size --raw
13924         check_default_stripe_attr --stripe-index --raw
13925 }
13926 run_test 204e "Print raw stripe attributes"
13927
13928 test_204f() {
13929         test_mkdir $DIR/$tdir
13930         $LFS setstripe --stripe-count 1 $DIR/$tdir
13931
13932         check_default_stripe_attr --stripe-size --raw
13933         check_default_stripe_attr --stripe-index --raw
13934 }
13935 run_test 204f "Print raw stripe size and offset"
13936
13937 test_204g() {
13938         test_mkdir $DIR/$tdir
13939         $LFS setstripe --stripe-size 65536 $DIR/$tdir
13940
13941         check_default_stripe_attr --stripe-count --raw
13942         check_default_stripe_attr --stripe-index --raw
13943 }
13944 run_test 204g "Print raw stripe count and offset"
13945
13946 test_204h() {
13947         test_mkdir $DIR/$tdir
13948         $LFS setstripe --stripe-index 0 $DIR/$tdir
13949
13950         check_default_stripe_attr --stripe-count --raw
13951         check_default_stripe_attr --stripe-size --raw
13952 }
13953 run_test 204h "Print raw stripe count and size"
13954
13955 # Figure out which job scheduler is being used, if any,
13956 # or use a fake one
13957 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
13958         JOBENV=SLURM_JOB_ID
13959 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
13960         JOBENV=LSB_JOBID
13961 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
13962         JOBENV=PBS_JOBID
13963 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
13964         JOBENV=LOADL_STEP_ID
13965 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
13966         JOBENV=JOB_ID
13967 else
13968         $LCTL list_param jobid_name > /dev/null 2>&1
13969         if [ $? -eq 0 ]; then
13970                 JOBENV=nodelocal
13971         else
13972                 JOBENV=FAKE_JOBID
13973         fi
13974 fi
13975 LUSTRE_JOBID_SIZE=31 # plus NUL terminator
13976
13977 verify_jobstats() {
13978         local cmd=($1)
13979         shift
13980         local facets="$@"
13981
13982 # we don't really need to clear the stats for this test to work, since each
13983 # command has a unique jobid, but it makes debugging easier if needed.
13984 #       for facet in $facets; do
13985 #               local dev=$(convert_facet2label $facet)
13986 #               # clear old jobstats
13987 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
13988 #       done
13989
13990         # use a new JobID for each test, or we might see an old one
13991         [ "$JOBENV" = "FAKE_JOBID" ] &&
13992                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
13993
13994         JOBVAL=${!JOBENV:0:$LUSTRE_JOBID_SIZE}
13995
13996         [ "$JOBENV" = "nodelocal" ] && {
13997                 FAKE_JOBID=id.$testnum.%e.$RANDOM
13998                 $LCTL set_param jobid_name=$FAKE_JOBID
13999                 JOBVAL=${FAKE_JOBID/\%e/$(basename ${cmd[0]})}
14000         }
14001
14002         log "Test: ${cmd[*]}"
14003         log "Using JobID environment $($LCTL get_param -n jobid_var)=$JOBVAL"
14004
14005         if [ $JOBENV = "FAKE_JOBID" ]; then
14006                 FAKE_JOBID=$JOBVAL ${cmd[*]}
14007         else
14008                 ${cmd[*]}
14009         fi
14010
14011         # all files are created on OST0000
14012         for facet in $facets; do
14013                 local stats="*.$(convert_facet2label $facet).job_stats"
14014
14015                 # strip out libtool wrappers for in-tree executables
14016                 if [ $(do_facet $facet lctl get_param $stats |
14017                        sed -e 's/\.lt-/./' | grep -c $JOBVAL) -ne 1 ]; then
14018                         do_facet $facet lctl get_param $stats
14019                         error "No jobstats for $JOBVAL found on $facet::$stats"
14020                 fi
14021         done
14022 }
14023
14024 jobstats_set() {
14025         local new_jobenv=$1
14026
14027         set_persistent_param_and_check client "jobid_var" \
14028                 "$FSNAME.sys.jobid_var" $new_jobenv
14029 }
14030
14031 test_205() { # Job stats
14032         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14033         [[ $MDS1_VERSION -ge $(version_code 2.7.1) ]] ||
14034                 skip "Need MDS version with at least 2.7.1"
14035         remote_mgs_nodsh && skip "remote MGS with nodsh"
14036         remote_mds_nodsh && skip "remote MDS with nodsh"
14037         remote_ost_nodsh && skip "remote OST with nodsh"
14038         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
14039                 skip "Server doesn't support jobstats"
14040         [[ $JOBID_VAR = disable ]] && skip_env "jobstats is disabled"
14041
14042         local old_jobenv=$($LCTL get_param -n jobid_var)
14043         [ $old_jobenv != $JOBENV ] && jobstats_set $JOBENV
14044
14045         if [[ $PERM_CMD == *"set_param -P"* ]]; then
14046                 stack_trap "do_facet mgs $PERM_CMD jobid_var=$old_jobenv" EXIT
14047         else
14048                 stack_trap "do_facet mgs $PERM_CMD \
14049                         $FSNAME.sys.jobid_var=$old_jobenv" EXIT
14050         fi
14051         changelog_register
14052
14053         local old_interval=$(do_facet $SINGLEMDS lctl get_param -n \
14054                                 mdt.*.job_cleanup_interval | head -n 1)
14055         local new_interval=5
14056         do_facet $SINGLEMDS \
14057                 $LCTL set_param mdt.*.job_cleanup_interval=$new_interval
14058         stack_trap "do_facet $SINGLEMDS \
14059                 $LCTL set_param mdt.*.job_cleanup_interval=$old_interval" EXIT
14060         local start=$SECONDS
14061
14062         local cmd
14063         # mkdir
14064         cmd="mkdir $DIR/$tdir"
14065         verify_jobstats "$cmd" "$SINGLEMDS"
14066         # rmdir
14067         cmd="rmdir $DIR/$tdir"
14068         verify_jobstats "$cmd" "$SINGLEMDS"
14069         # mkdir on secondary MDT
14070         if [ $MDSCOUNT -gt 1 ]; then
14071                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
14072                 verify_jobstats "$cmd" "mds2"
14073         fi
14074         # mknod
14075         cmd="mknod $DIR/$tfile c 1 3"
14076         verify_jobstats "$cmd" "$SINGLEMDS"
14077         # unlink
14078         cmd="rm -f $DIR/$tfile"
14079         verify_jobstats "$cmd" "$SINGLEMDS"
14080         # create all files on OST0000 so verify_jobstats can find OST stats
14081         # open & close
14082         cmd="$LFS setstripe -i 0 -c 1 $DIR/$tfile"
14083         verify_jobstats "$cmd" "$SINGLEMDS"
14084         # setattr
14085         cmd="touch $DIR/$tfile"
14086         verify_jobstats "$cmd" "$SINGLEMDS ost1"
14087         # write
14088         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
14089         verify_jobstats "$cmd" "ost1"
14090         # read
14091         cancel_lru_locks osc
14092         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
14093         verify_jobstats "$cmd" "ost1"
14094         # truncate
14095         cmd="$TRUNCATE $DIR/$tfile 0"
14096         verify_jobstats "$cmd" "$SINGLEMDS ost1"
14097         # rename
14098         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
14099         verify_jobstats "$cmd" "$SINGLEMDS"
14100         # jobstats expiry - sleep until old stats should be expired
14101         local left=$((new_interval + 5 - (SECONDS - start)))
14102         [ $left -ge 0 ] && wait_update_facet $SINGLEMDS \
14103                 "lctl get_param *.*.job_stats | grep -c 'job_id.*mkdir'" \
14104                         "0" $left
14105         cmd="mkdir $DIR/$tdir.expire"
14106         verify_jobstats "$cmd" "$SINGLEMDS"
14107         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
14108             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
14109
14110         # Ensure that jobid are present in changelog (if supported by MDS)
14111         if [ $MDS1_VERSION -ge $(version_code 2.6.52) ];then
14112                 changelog_dump | tail -10
14113                 jobids=$(changelog_dump | tail -9 | grep -c "j=")
14114                 [ $jobids -eq 9 ] ||
14115                         error "Wrong changelog jobid count $jobids != 9"
14116
14117                 # LU-5862
14118                 JOBENV="disable"
14119                 jobstats_set $JOBENV
14120                 touch $DIR/$tfile
14121                 changelog_dump | grep $tfile
14122                 jobids=$(changelog_dump | grep $tfile | tail -1 | grep -c "j=")
14123                 [ $jobids -eq 0 ] ||
14124                         error "Unexpected jobids when jobid_var=$JOBENV"
14125         fi
14126
14127         lctl set_param jobid_var=USER jobid_name="S.%j.%e.%u.%h.E"
14128         JOBENV="JOBCOMPLEX"
14129         JOBCOMPLEX="S.$USER.touch.$(id -u).$(hostname).E"
14130
14131         verify_jobstats "touch $DIR/$tfile" $SINGLEMDS
14132 }
14133 run_test 205 "Verify job stats"
14134
14135 # LU-1480, LU-1773 and LU-1657
14136 test_206() {
14137         mkdir -p $DIR/$tdir
14138         $LFS setstripe -c -1 $DIR/$tdir
14139 #define OBD_FAIL_LOV_INIT 0x1403
14140         $LCTL set_param fail_loc=0xa0001403
14141         $LCTL set_param fail_val=1
14142         touch $DIR/$tdir/$tfile || true
14143 }
14144 run_test 206 "fail lov_init_raid0() doesn't lbug"
14145
14146 test_207a() {
14147         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
14148         local fsz=`stat -c %s $DIR/$tfile`
14149         cancel_lru_locks mdc
14150
14151         # do not return layout in getattr intent
14152 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
14153         $LCTL set_param fail_loc=0x170
14154         local sz=`stat -c %s $DIR/$tfile`
14155
14156         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
14157
14158         rm -rf $DIR/$tfile
14159 }
14160 run_test 207a "can refresh layout at glimpse"
14161
14162 test_207b() {
14163         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
14164         local cksum=`md5sum $DIR/$tfile`
14165         local fsz=`stat -c %s $DIR/$tfile`
14166         cancel_lru_locks mdc
14167         cancel_lru_locks osc
14168
14169         # do not return layout in getattr intent
14170 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
14171         $LCTL set_param fail_loc=0x171
14172
14173         # it will refresh layout after the file is opened but before read issues
14174         echo checksum is "$cksum"
14175         echo "$cksum" |md5sum -c --quiet || error "file differs"
14176
14177         rm -rf $DIR/$tfile
14178 }
14179 run_test 207b "can refresh layout at open"
14180
14181 test_208() {
14182         # FIXME: in this test suite, only RD lease is used. This is okay
14183         # for now as only exclusive open is supported. After generic lease
14184         # is done, this test suite should be revised. - Jinshan
14185
14186         remote_mds_nodsh && skip "remote MDS with nodsh"
14187         [[ $MDS1_VERSION -ge $(version_code 2.4.52) ]] ||
14188                 skip "Need MDS version at least 2.4.52"
14189
14190         echo "==== test 1: verify get lease work"
14191         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
14192
14193         echo "==== test 2: verify lease can be broken by upcoming open"
14194         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
14195         local PID=$!
14196         sleep 1
14197
14198         $MULTIOP $DIR/$tfile oO_RDONLY:c
14199         kill -USR1 $PID && wait $PID || error "break lease error"
14200
14201         echo "==== test 3: verify lease can't be granted if an open already exists"
14202         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
14203         local PID=$!
14204         sleep 1
14205
14206         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
14207         kill -USR1 $PID && wait $PID || error "open file error"
14208
14209         echo "==== test 4: lease can sustain over recovery"
14210         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
14211         PID=$!
14212         sleep 1
14213
14214         fail mds1
14215
14216         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
14217
14218         echo "==== test 5: lease broken can't be regained by replay"
14219         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
14220         PID=$!
14221         sleep 1
14222
14223         # open file to break lease and then recovery
14224         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
14225         fail mds1
14226
14227         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
14228
14229         rm -f $DIR/$tfile
14230 }
14231 run_test 208 "Exclusive open"
14232
14233 test_209() {
14234         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
14235                 skip_env "must have disp_stripe"
14236
14237         touch $DIR/$tfile
14238         sync; sleep 5; sync;
14239
14240         echo 3 > /proc/sys/vm/drop_caches
14241         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
14242
14243         # open/close 500 times
14244         for i in $(seq 500); do
14245                 cat $DIR/$tfile
14246         done
14247
14248         echo 3 > /proc/sys/vm/drop_caches
14249         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
14250
14251         echo "before: $req_before, after: $req_after"
14252         [ $((req_after - req_before)) -ge 300 ] &&
14253                 error "open/close requests are not freed"
14254         return 0
14255 }
14256 run_test 209 "read-only open/close requests should be freed promptly"
14257
14258 test_212() {
14259         size=`date +%s`
14260         size=$((size % 8192 + 1))
14261         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
14262         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
14263         rm -f $DIR/f212 $DIR/f212.xyz
14264 }
14265 run_test 212 "Sendfile test ============================================"
14266
14267 test_213() {
14268         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
14269         cancel_lru_locks osc
14270         lctl set_param fail_loc=0x8000040f
14271         # generate a read lock
14272         cat $DIR/$tfile > /dev/null
14273         # write to the file, it will try to cancel the above read lock.
14274         cat /etc/hosts >> $DIR/$tfile
14275 }
14276 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
14277
14278 test_214() { # for bug 20133
14279         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
14280         for (( i=0; i < 340; i++ )) ; do
14281                 touch $DIR/$tdir/d214c/a$i
14282         done
14283
14284         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
14285         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
14286         ls $DIR/d214c || error "ls $DIR/d214c failed"
14287         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
14288         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
14289 }
14290 run_test 214 "hash-indexed directory test - bug 20133"
14291
14292 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
14293 create_lnet_proc_files() {
14294         lctl get_param -n $1 >$TMP/lnet_$1.sys || error "cannot read lnet.$1"
14295 }
14296
14297 # counterpart of create_lnet_proc_files
14298 remove_lnet_proc_files() {
14299         rm -f $TMP/lnet_$1.sys
14300 }
14301
14302 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
14303 # 3rd arg as regexp for body
14304 check_lnet_proc_stats() {
14305         local l=$(cat "$TMP/lnet_$1" |wc -l)
14306         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
14307
14308         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
14309 }
14310
14311 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
14312 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
14313 # optional and can be regexp for 2nd line (lnet.routes case)
14314 check_lnet_proc_entry() {
14315         local blp=2          # blp stands for 'position of 1st line of body'
14316         [ -z "$5" ] || blp=3 # lnet.routes case
14317
14318         local l=$(cat "$TMP/lnet_$1" |wc -l)
14319         # subtracting one from $blp because the body can be empty
14320         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
14321
14322         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
14323                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
14324
14325         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
14326                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
14327
14328         # bail out if any unexpected line happened
14329         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
14330         [ "$?" != 0 ] || error "$2 misformatted"
14331 }
14332
14333 test_215() { # for bugs 18102, 21079, 21517
14334         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14335
14336         local N='(0|[1-9][0-9]*)'       # non-negative numeric
14337         local P='[1-9][0-9]*'           # positive numeric
14338         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
14339         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
14340         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
14341         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
14342
14343         local L1 # regexp for 1st line
14344         local L2 # regexp for 2nd line (optional)
14345         local BR # regexp for the rest (body)
14346
14347         # lnet.stats should look as 11 space-separated non-negative numerics
14348         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
14349         create_lnet_proc_files "stats"
14350         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
14351         remove_lnet_proc_files "stats"
14352
14353         # lnet.routes should look like this:
14354         # Routing disabled/enabled
14355         # net hops priority state router
14356         # where net is a string like tcp0, hops > 0, priority >= 0,
14357         # state is up/down,
14358         # router is a string like 192.168.1.1@tcp2
14359         L1="^Routing (disabled|enabled)$"
14360         L2="^net +hops +priority +state +router$"
14361         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
14362         create_lnet_proc_files "routes"
14363         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
14364         remove_lnet_proc_files "routes"
14365
14366         # lnet.routers should look like this:
14367         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
14368         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
14369         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
14370         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
14371         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
14372         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
14373         create_lnet_proc_files "routers"
14374         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
14375         remove_lnet_proc_files "routers"
14376
14377         # lnet.peers should look like this:
14378         # nid refs state last max rtr min tx min queue
14379         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
14380         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
14381         # numeric (0 or >0 or <0), queue >= 0.
14382         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
14383         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
14384         create_lnet_proc_files "peers"
14385         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
14386         remove_lnet_proc_files "peers"
14387
14388         # lnet.buffers  should look like this:
14389         # pages count credits min
14390         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
14391         L1="^pages +count +credits +min$"
14392         BR="^ +$N +$N +$I +$I$"
14393         create_lnet_proc_files "buffers"
14394         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
14395         remove_lnet_proc_files "buffers"
14396
14397         # lnet.nis should look like this:
14398         # nid status alive refs peer rtr max tx min
14399         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
14400         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
14401         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
14402         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
14403         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
14404         create_lnet_proc_files "nis"
14405         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
14406         remove_lnet_proc_files "nis"
14407
14408         # can we successfully write to lnet.stats?
14409         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
14410 }
14411 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
14412
14413 test_216() { # bug 20317
14414         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14415         remote_ost_nodsh && skip "remote OST with nodsh"
14416
14417         local node
14418         local facets=$(get_facets OST)
14419         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
14420
14421         save_lustre_params client "osc.*.contention_seconds" > $p
14422         save_lustre_params $facets \
14423                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
14424         save_lustre_params $facets \
14425                 "ldlm.namespaces.filter-*.contended_locks" >> $p
14426         save_lustre_params $facets \
14427                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
14428         clear_stats osc.*.osc_stats
14429
14430         # agressive lockless i/o settings
14431         do_nodes $(comma_list $(osts_nodes)) \
14432                 "lctl set_param -n ldlm.namespaces.*.max_nolock_bytes=2000000 \
14433                         ldlm.namespaces.filter-*.contended_locks=0 \
14434                         ldlm.namespaces.filter-*.contention_seconds=60"
14435         lctl set_param -n osc.*.contention_seconds=60
14436
14437         $DIRECTIO write $DIR/$tfile 0 10 4096
14438         $CHECKSTAT -s 40960 $DIR/$tfile
14439
14440         # disable lockless i/o
14441         do_nodes $(comma_list $(osts_nodes)) \
14442                 "lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes=0 \
14443                         ldlm.namespaces.filter-*.contended_locks=32 \
14444                         ldlm.namespaces.filter-*.contention_seconds=0"
14445         lctl set_param -n osc.*.contention_seconds=0
14446         clear_stats osc.*.osc_stats
14447
14448         dd if=/dev/zero of=$DIR/$tfile count=0
14449         $CHECKSTAT -s 0 $DIR/$tfile
14450
14451         restore_lustre_params <$p
14452         rm -f $p
14453         rm $DIR/$tfile
14454 }
14455 run_test 216 "check lockless direct write updates file size and kms correctly"
14456
14457 test_217() { # bug 22430
14458         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14459
14460         local node
14461         local nid
14462
14463         for node in $(nodes_list); do
14464                 nid=$(host_nids_address $node $NETTYPE)
14465                 if [[ $nid = *-* ]] ; then
14466                         echo "lctl ping $(h2nettype $nid)"
14467                         lctl ping $(h2nettype $nid)
14468                 else
14469                         echo "skipping $node (no hyphen detected)"
14470                 fi
14471         done
14472 }
14473 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
14474
14475 test_218() {
14476        # do directio so as not to populate the page cache
14477        log "creating a 10 Mb file"
14478        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
14479        log "starting reads"
14480        dd if=$DIR/$tfile of=/dev/null bs=4096 &
14481        log "truncating the file"
14482        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
14483        log "killing dd"
14484        kill %+ || true # reads might have finished
14485        echo "wait until dd is finished"
14486        wait
14487        log "removing the temporary file"
14488        rm -rf $DIR/$tfile || error "tmp file removal failed"
14489 }
14490 run_test 218 "parallel read and truncate should not deadlock"
14491
14492 test_219() {
14493         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14494
14495         # write one partial page
14496         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
14497         # set no grant so vvp_io_commit_write will do sync write
14498         $LCTL set_param fail_loc=0x411
14499         # write a full page at the end of file
14500         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
14501
14502         $LCTL set_param fail_loc=0
14503         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
14504         $LCTL set_param fail_loc=0x411
14505         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
14506
14507         # LU-4201
14508         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
14509         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
14510 }
14511 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
14512
14513 test_220() { #LU-325
14514         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14515         remote_ost_nodsh && skip "remote OST with nodsh"
14516         remote_mds_nodsh && skip "remote MDS with nodsh"
14517         remote_mgs_nodsh && skip "remote MGS with nodsh"
14518
14519         local OSTIDX=0
14520
14521         # create on MDT0000 so the last_id and next_id are correct
14522         mkdir $DIR/$tdir
14523         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
14524         OST=${OST%_UUID}
14525
14526         # on the mdt's osc
14527         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
14528         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
14529                         osc.$mdtosc_proc1.prealloc_last_id)
14530         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
14531                         osc.$mdtosc_proc1.prealloc_next_id)
14532
14533         $LFS df -i
14534
14535         if ! combined_mgs_mds ; then
14536                 mount_mgs_client
14537         fi
14538
14539         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
14540         #define OBD_FAIL_OST_ENOINO              0x229
14541         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
14542         create_pool $FSNAME.$TESTNAME || return 1
14543         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
14544
14545         $LFS setstripe $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
14546
14547         MDSOBJS=$((last_id - next_id))
14548         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
14549
14550         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
14551         echo "OST still has $count kbytes free"
14552
14553         echo "create $MDSOBJS files @next_id..."
14554         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
14555
14556         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
14557                         osc.$mdtosc_proc1.prealloc_last_id)
14558         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
14559                         osc.$mdtosc_proc1.prealloc_next_id)
14560
14561         echo "after creation, last_id=$last_id2, next_id=$next_id2"
14562         $LFS df -i
14563
14564         echo "cleanup..."
14565
14566         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
14567         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
14568
14569         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST ||
14570                 error "$LCTL pool_remove $FSNAME.$TESTNAME $OST failed"
14571         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
14572                 error "$LCTL pool_destroy $FSNAME.$TESTNAME failed"
14573         echo "unlink $MDSOBJS files @$next_id..."
14574         unlinkmany $DIR/$tdir/f $MDSOBJS || error "unlinkmany failed"
14575
14576         if ! combined_mgs_mds ; then
14577                 umount_mgs_client
14578         fi
14579 }
14580 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
14581
14582 test_221() {
14583         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14584
14585         dd if=`which date` of=$MOUNT/date oflag=sync
14586         chmod +x $MOUNT/date
14587
14588         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
14589         $LCTL set_param fail_loc=0x80001401
14590
14591         $MOUNT/date > /dev/null
14592         rm -f $MOUNT/date
14593 }
14594 run_test 221 "make sure fault and truncate race to not cause OOM"
14595
14596 test_222a () {
14597         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14598
14599         rm -rf $DIR/$tdir
14600         test_mkdir $DIR/$tdir
14601         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14602         createmany -o $DIR/$tdir/$tfile 10
14603         cancel_lru_locks mdc
14604         cancel_lru_locks osc
14605         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
14606         $LCTL set_param fail_loc=0x31a
14607         ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
14608         $LCTL set_param fail_loc=0
14609         rm -r $DIR/$tdir
14610 }
14611 run_test 222a "AGL for ls should not trigger CLIO lock failure"
14612
14613 test_222b () {
14614         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14615
14616         rm -rf $DIR/$tdir
14617         test_mkdir $DIR/$tdir
14618         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14619         createmany -o $DIR/$tdir/$tfile 10
14620         cancel_lru_locks mdc
14621         cancel_lru_locks osc
14622         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
14623         $LCTL set_param fail_loc=0x31a
14624         rm -r $DIR/$tdir || error "AGL for rmdir failed"
14625         $LCTL set_param fail_loc=0
14626 }
14627 run_test 222b "AGL for rmdir should not trigger CLIO lock failure"
14628
14629 test_223 () {
14630         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14631
14632         rm -rf $DIR/$tdir
14633         test_mkdir $DIR/$tdir
14634         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14635         createmany -o $DIR/$tdir/$tfile 10
14636         cancel_lru_locks mdc
14637         cancel_lru_locks osc
14638         #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
14639         $LCTL set_param fail_loc=0x31b
14640         ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
14641         $LCTL set_param fail_loc=0
14642         rm -r $DIR/$tdir
14643 }
14644 run_test 223 "osc reenqueue if without AGL lock granted ======================="
14645
14646 test_224a() { # LU-1039, MRP-303
14647         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14648
14649         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
14650         $LCTL set_param fail_loc=0x508
14651         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
14652         $LCTL set_param fail_loc=0
14653         df $DIR
14654 }
14655 run_test 224a "Don't panic on bulk IO failure"
14656
14657 test_224b() { # LU-1039, MRP-303
14658         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14659
14660         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
14661         cancel_lru_locks osc
14662         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
14663         $LCTL set_param fail_loc=0x515
14664         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
14665         $LCTL set_param fail_loc=0
14666         df $DIR
14667 }
14668 run_test 224b "Don't panic on bulk IO failure"
14669
14670 test_224c() { # LU-6441
14671         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14672         remote_mds_nodsh && skip "remote MDS with nodsh"
14673
14674         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
14675         save_writethrough $p
14676         set_cache writethrough on
14677
14678         local pages_per_rpc=$($LCTL get_param \
14679                                 osc.*.max_pages_per_rpc)
14680         local at_max=$($LCTL get_param -n at_max)
14681         local timeout=$($LCTL get_param -n timeout)
14682         local test_at="at_max"
14683         local param_at="$FSNAME.sys.at_max"
14684         local test_timeout="timeout"
14685         local param_timeout="$FSNAME.sys.timeout"
14686
14687         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
14688
14689         set_persistent_param_and_check client "$test_at" "$param_at" 0
14690         set_persistent_param_and_check client "$test_timeout" "$param_timeout" 5
14691
14692         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3 0x520
14693         do_facet ost1 "$LCTL set_param fail_loc=0x520"
14694         $LFS setstripe -c 1 -i 0 $DIR/$tfile
14695         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
14696         sync
14697         do_facet ost1 "$LCTL set_param fail_loc=0"
14698
14699         set_persistent_param_and_check client "$test_at" "$param_at" $at_max
14700         set_persistent_param_and_check client "$test_timeout" "$param_timeout" \
14701                 $timeout
14702
14703         $LCTL set_param -n $pages_per_rpc
14704         restore_lustre_params < $p
14705         rm -f $p
14706 }
14707 run_test 224c "Don't hang if one of md lost during large bulk RPC"
14708
14709 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
14710 test_225a () {
14711         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14712         if [ -z ${MDSSURVEY} ]; then
14713                 skip_env "mds-survey not found"
14714         fi
14715         [ $MDS1_VERSION -ge $(version_code 2.2.51) ] ||
14716                 skip "Need MDS version at least 2.2.51"
14717
14718         local mds=$(facet_host $SINGLEMDS)
14719         local target=$(do_nodes $mds 'lctl dl' |
14720                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
14721
14722         local cmd1="file_count=1000 thrhi=4"
14723         local cmd2="dir_count=2 layer=mdd stripe_count=0"
14724         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
14725         local cmd="$cmd1 $cmd2 $cmd3"
14726
14727         rm -f ${TMP}/mds_survey*
14728         echo + $cmd
14729         eval $cmd || error "mds-survey with zero-stripe failed"
14730         cat ${TMP}/mds_survey*
14731         rm -f ${TMP}/mds_survey*
14732 }
14733 run_test 225a "Metadata survey sanity with zero-stripe"
14734
14735 test_225b () {
14736         if [ -z ${MDSSURVEY} ]; then
14737                 skip_env "mds-survey not found"
14738         fi
14739         [ $MDS1_VERSION -ge $(version_code 2.2.51) ] ||
14740                 skip "Need MDS version at least 2.2.51"
14741         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14742         remote_mds_nodsh && skip "remote MDS with nodsh"
14743         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
14744                 skip_env "Need to mount OST to test"
14745         fi
14746
14747         local mds=$(facet_host $SINGLEMDS)
14748         local target=$(do_nodes $mds 'lctl dl' |
14749                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
14750
14751         local cmd1="file_count=1000 thrhi=4"
14752         local cmd2="dir_count=2 layer=mdd stripe_count=1"
14753         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
14754         local cmd="$cmd1 $cmd2 $cmd3"
14755
14756         rm -f ${TMP}/mds_survey*
14757         echo + $cmd
14758         eval $cmd || error "mds-survey with stripe_count failed"
14759         cat ${TMP}/mds_survey*
14760         rm -f ${TMP}/mds_survey*
14761 }
14762 run_test 225b "Metadata survey sanity with stripe_count = 1"
14763
14764 mcreate_path2fid () {
14765         local mode=$1
14766         local major=$2
14767         local minor=$3
14768         local name=$4
14769         local desc=$5
14770         local path=$DIR/$tdir/$name
14771         local fid
14772         local rc
14773         local fid_path
14774
14775         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
14776                 error "cannot create $desc"
14777
14778         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
14779         rc=$?
14780         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
14781
14782         fid_path=$($LFS fid2path $MOUNT $fid)
14783         rc=$?
14784         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
14785
14786         [ "$path" == "$fid_path" ] ||
14787                 error "fid2path returned $fid_path, expected $path"
14788
14789         echo "pass with $path and $fid"
14790 }
14791
14792 test_226a () {
14793         rm -rf $DIR/$tdir
14794         mkdir -p $DIR/$tdir
14795
14796         mcreate_path2fid 0010666 0 0 fifo "FIFO"
14797         mcreate_path2fid 0020666 1 3 null "character special file (null)"
14798         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
14799         mcreate_path2fid 0040666 0 0 dir "directory"
14800         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
14801         mcreate_path2fid 0100666 0 0 file "regular file"
14802         mcreate_path2fid 0120666 0 0 link "symbolic link"
14803         mcreate_path2fid 0140666 0 0 sock "socket"
14804 }
14805 run_test 226a "call path2fid and fid2path on files of all type"
14806
14807 test_226b () {
14808         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14809
14810         local MDTIDX=1
14811
14812         rm -rf $DIR/$tdir
14813         mkdir -p $DIR/$tdir
14814         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
14815                 error "create remote directory failed"
14816         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
14817         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
14818                                 "character special file (null)"
14819         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
14820                                 "character special file (no device)"
14821         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
14822         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
14823                                 "block special file (loop)"
14824         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
14825         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
14826         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
14827 }
14828 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
14829
14830 # LU-1299 Executing or running ldd on a truncated executable does not
14831 # cause an out-of-memory condition.
14832 test_227() {
14833         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14834         [ -z "$(which ldd)" ] && skip_env "should have ldd tool"
14835
14836         dd if=$(which date) of=$MOUNT/date bs=1k count=1
14837         chmod +x $MOUNT/date
14838
14839         $MOUNT/date > /dev/null
14840         ldd $MOUNT/date > /dev/null
14841         rm -f $MOUNT/date
14842 }
14843 run_test 227 "running truncated executable does not cause OOM"
14844
14845 # LU-1512 try to reuse idle OI blocks
14846 test_228a() {
14847         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14848         remote_mds_nodsh && skip "remote MDS with nodsh"
14849         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
14850
14851         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14852         local myDIR=$DIR/$tdir
14853
14854         mkdir -p $myDIR
14855         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14856         $LCTL set_param fail_loc=0x80001002
14857         createmany -o $myDIR/t- 10000
14858         $LCTL set_param fail_loc=0
14859         # The guard is current the largest FID holder
14860         touch $myDIR/guard
14861         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14862                     tr -d '[')
14863         local IDX=$(($SEQ % 64))
14864
14865         do_facet $SINGLEMDS sync
14866         # Make sure journal flushed.
14867         sleep 6
14868         local blk1=$(do_facet $SINGLEMDS \
14869                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14870                      grep Blockcount | awk '{print $4}')
14871
14872         # Remove old files, some OI blocks will become idle.
14873         unlinkmany $myDIR/t- 10000
14874         # Create new files, idle OI blocks should be reused.
14875         createmany -o $myDIR/t- 2000
14876         do_facet $SINGLEMDS sync
14877         # Make sure journal flushed.
14878         sleep 6
14879         local blk2=$(do_facet $SINGLEMDS \
14880                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14881                      grep Blockcount | awk '{print $4}')
14882
14883         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14884 }
14885 run_test 228a "try to reuse idle OI blocks"
14886
14887 test_228b() {
14888         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14889         remote_mds_nodsh && skip "remote MDS with nodsh"
14890         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
14891
14892         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14893         local myDIR=$DIR/$tdir
14894
14895         mkdir -p $myDIR
14896         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14897         $LCTL set_param fail_loc=0x80001002
14898         createmany -o $myDIR/t- 10000
14899         $LCTL set_param fail_loc=0
14900         # The guard is current the largest FID holder
14901         touch $myDIR/guard
14902         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14903                     tr -d '[')
14904         local IDX=$(($SEQ % 64))
14905
14906         do_facet $SINGLEMDS sync
14907         # Make sure journal flushed.
14908         sleep 6
14909         local blk1=$(do_facet $SINGLEMDS \
14910                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14911                      grep Blockcount | awk '{print $4}')
14912
14913         # Remove old files, some OI blocks will become idle.
14914         unlinkmany $myDIR/t- 10000
14915
14916         # stop the MDT
14917         stop $SINGLEMDS || error "Fail to stop MDT."
14918         # remount the MDT
14919         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
14920
14921         df $MOUNT || error "Fail to df."
14922         # Create new files, idle OI blocks should be reused.
14923         createmany -o $myDIR/t- 2000
14924         do_facet $SINGLEMDS sync
14925         # Make sure journal flushed.
14926         sleep 6
14927         local blk2=$(do_facet $SINGLEMDS \
14928                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14929                      grep Blockcount | awk '{print $4}')
14930
14931         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14932 }
14933 run_test 228b "idle OI blocks can be reused after MDT restart"
14934
14935 #LU-1881
14936 test_228c() {
14937         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14938         remote_mds_nodsh && skip "remote MDS with nodsh"
14939         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
14940
14941         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14942         local myDIR=$DIR/$tdir
14943
14944         mkdir -p $myDIR
14945         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14946         $LCTL set_param fail_loc=0x80001002
14947         # 20000 files can guarantee there are index nodes in the OI file
14948         createmany -o $myDIR/t- 20000
14949         $LCTL set_param fail_loc=0
14950         # The guard is current the largest FID holder
14951         touch $myDIR/guard
14952         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14953                     tr -d '[')
14954         local IDX=$(($SEQ % 64))
14955
14956         do_facet $SINGLEMDS sync
14957         # Make sure journal flushed.
14958         sleep 6
14959         local blk1=$(do_facet $SINGLEMDS \
14960                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14961                      grep Blockcount | awk '{print $4}')
14962
14963         # Remove old files, some OI blocks will become idle.
14964         unlinkmany $myDIR/t- 20000
14965         rm -f $myDIR/guard
14966         # The OI file should become empty now
14967
14968         # Create new files, idle OI blocks should be reused.
14969         createmany -o $myDIR/t- 2000
14970         do_facet $SINGLEMDS sync
14971         # Make sure journal flushed.
14972         sleep 6
14973         local blk2=$(do_facet $SINGLEMDS \
14974                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14975                      grep Blockcount | awk '{print $4}')
14976
14977         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14978 }
14979 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
14980
14981 test_229() { # LU-2482, LU-3448
14982         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14983         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
14984         [ $MDS1_VERSION -lt $(version_code 2.4.53) ] &&
14985                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53"
14986
14987         rm -f $DIR/$tfile
14988
14989         # Create a file with a released layout and stripe count 2.
14990         $MULTIOP $DIR/$tfile H2c ||
14991                 error "failed to create file with released layout"
14992
14993         $LFS getstripe -v $DIR/$tfile
14994
14995         local pattern=$($LFS getstripe -L $DIR/$tfile)
14996         [ X"$pattern" = X"released" ] || error "pattern error ($pattern)"
14997
14998         local stripe_count=$($LFS getstripe -c $DIR/$tfile) ||
14999                 error "getstripe"
15000         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
15001         stat $DIR/$tfile || error "failed to stat released file"
15002
15003         chown $RUNAS_ID $DIR/$tfile ||
15004                 error "chown $RUNAS_ID $DIR/$tfile failed"
15005
15006         chgrp $RUNAS_ID $DIR/$tfile ||
15007                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
15008
15009         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
15010         rm $DIR/$tfile || error "failed to remove released file"
15011 }
15012 run_test 229 "getstripe/stat/rm/attr changes work on released files"
15013
15014 test_230a() {
15015         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15016         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15017         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15018                 skip "Need MDS version at least 2.11.52"
15019
15020         local MDTIDX=1
15021
15022         test_mkdir $DIR/$tdir
15023         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
15024         local mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230_local)
15025         [ $mdt_idx -ne 0 ] &&
15026                 error "create local directory on wrong MDT $mdt_idx"
15027
15028         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
15029                         error "create remote directory failed"
15030         local mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230)
15031         [ $mdt_idx -ne $MDTIDX ] &&
15032                 error "create remote directory on wrong MDT $mdt_idx"
15033
15034         createmany -o $DIR/$tdir/test_230/t- 10 ||
15035                 error "create files on remote directory failed"
15036         mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230/t-0)
15037         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
15038         rm -r $DIR/$tdir || error "unlink remote directory failed"
15039 }
15040 run_test 230a "Create remote directory and files under the remote directory"
15041
15042 test_230b() {
15043         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15044         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15045         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15046                 skip "Need MDS version at least 2.11.52"
15047
15048         local MDTIDX=1
15049         local mdt_index
15050         local i
15051         local file
15052         local pid
15053         local stripe_count
15054         local migrate_dir=$DIR/$tdir/migrate_dir
15055         local other_dir=$DIR/$tdir/other_dir
15056
15057         test_mkdir $DIR/$tdir
15058         test_mkdir -i0 -c1 $migrate_dir
15059         test_mkdir -i0 -c1 $other_dir
15060         for ((i=0; i<10; i++)); do
15061                 mkdir -p $migrate_dir/dir_${i}
15062                 createmany -o $migrate_dir/dir_${i}/f 10 ||
15063                         error "create files under remote dir failed $i"
15064         done
15065
15066         cp /etc/passwd $migrate_dir/$tfile
15067         cp /etc/passwd $other_dir/$tfile
15068         chattr +SAD $migrate_dir
15069         chattr +SAD $migrate_dir/$tfile
15070
15071         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
15072         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
15073         local old_dir_mode=$(stat -c%f $migrate_dir)
15074         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
15075
15076         mkdir -p $migrate_dir/dir_default_stripe2
15077         $LFS setstripe -c 2 $migrate_dir/dir_default_stripe2
15078         $LFS setstripe -c 2 $migrate_dir/${tfile}_stripe2
15079
15080         mkdir -p $other_dir
15081         ln $migrate_dir/$tfile $other_dir/luna
15082         ln $migrate_dir/$tfile $migrate_dir/sofia
15083         ln $other_dir/$tfile $migrate_dir/david
15084         ln -s $migrate_dir/$tfile $other_dir/zachary
15085         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
15086         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
15087
15088         $LFS migrate -m $MDTIDX $migrate_dir ||
15089                 error "fails on migrating remote dir to MDT1"
15090
15091         echo "migratate to MDT1, then checking.."
15092         for ((i = 0; i < 10; i++)); do
15093                 for file in $(find $migrate_dir/dir_${i}); do
15094                         mdt_index=$($LFS getstripe -m $file)
15095                         [ $mdt_index == $MDTIDX ] ||
15096                                 error "$file is not on MDT${MDTIDX}"
15097                 done
15098         done
15099
15100         # the multiple link file should still in MDT0
15101         mdt_index=$($LFS getstripe -m $migrate_dir/$tfile)
15102         [ $mdt_index == 0 ] ||
15103                 error "$file is not on MDT${MDTIDX}"
15104
15105         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
15106         [ "$old_dir_flag" = "$new_dir_flag" ] ||
15107                 error " expect $old_dir_flag get $new_dir_flag"
15108
15109         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
15110         [ "$old_file_flag" = "$new_file_flag" ] ||
15111                 error " expect $old_file_flag get $new_file_flag"
15112
15113         local new_dir_mode=$(stat -c%f $migrate_dir)
15114         [ "$old_dir_mode" = "$new_dir_mode" ] ||
15115                 error "expect mode $old_dir_mode get $new_dir_mode"
15116
15117         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
15118         [ "$old_file_mode" = "$new_file_mode" ] ||
15119                 error "expect mode $old_file_mode get $new_file_mode"
15120
15121         diff /etc/passwd $migrate_dir/$tfile ||
15122                 error "$tfile different after migration"
15123
15124         diff /etc/passwd $other_dir/luna ||
15125                 error "luna different after migration"
15126
15127         diff /etc/passwd $migrate_dir/sofia ||
15128                 error "sofia different after migration"
15129
15130         diff /etc/passwd $migrate_dir/david ||
15131                 error "david different after migration"
15132
15133         diff /etc/passwd $other_dir/zachary ||
15134                 error "zachary different after migration"
15135
15136         diff /etc/passwd $migrate_dir/${tfile}_ln ||
15137                 error "${tfile}_ln different after migration"
15138
15139         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
15140                 error "${tfile}_ln_other different after migration"
15141
15142         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
15143         [ $stripe_count = 2 ] ||
15144                 error "dir strpe_count $d != 2 after migration."
15145
15146         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
15147         [ $stripe_count = 2 ] ||
15148                 error "file strpe_count $d != 2 after migration."
15149
15150         #migrate back to MDT0
15151         MDTIDX=0
15152
15153         $LFS migrate -m $MDTIDX $migrate_dir ||
15154                 error "fails on migrating remote dir to MDT0"
15155
15156         echo "migrate back to MDT0, checking.."
15157         for file in $(find $migrate_dir); do
15158                 mdt_index=$($LFS getstripe -m $file)
15159                 [ $mdt_index == $MDTIDX ] ||
15160                         error "$file is not on MDT${MDTIDX}"
15161         done
15162
15163         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
15164         [ "$old_dir_flag" = "$new_dir_flag" ] ||
15165                 error " expect $old_dir_flag get $new_dir_flag"
15166
15167         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
15168         [ "$old_file_flag" = "$new_file_flag" ] ||
15169                 error " expect $old_file_flag get $new_file_flag"
15170
15171         local new_dir_mode=$(stat -c%f $migrate_dir)
15172         [ "$old_dir_mode" = "$new_dir_mode" ] ||
15173                 error "expect mode $old_dir_mode get $new_dir_mode"
15174
15175         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
15176         [ "$old_file_mode" = "$new_file_mode" ] ||
15177                 error "expect mode $old_file_mode get $new_file_mode"
15178
15179         diff /etc/passwd ${migrate_dir}/$tfile ||
15180                 error "$tfile different after migration"
15181
15182         diff /etc/passwd ${other_dir}/luna ||
15183                 error "luna different after migration"
15184
15185         diff /etc/passwd ${migrate_dir}/sofia ||
15186                 error "sofia different after migration"
15187
15188         diff /etc/passwd ${other_dir}/zachary ||
15189                 error "zachary different after migration"
15190
15191         diff /etc/passwd $migrate_dir/${tfile}_ln ||
15192                 error "${tfile}_ln different after migration"
15193
15194         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
15195                 error "${tfile}_ln_other different after migration"
15196
15197         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
15198         [ $stripe_count = 2 ] ||
15199                 error "dir strpe_count $d != 2 after migration."
15200
15201         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
15202         [ $stripe_count = 2 ] ||
15203                 error "file strpe_count $d != 2 after migration."
15204
15205         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15206 }
15207 run_test 230b "migrate directory"
15208
15209 test_230c() {
15210         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15211         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15212         remote_mds_nodsh && skip "remote MDS with nodsh"
15213         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15214                 skip "Need MDS version at least 2.11.52"
15215
15216         local MDTIDX=1
15217         local total=3
15218         local mdt_index
15219         local file
15220         local migrate_dir=$DIR/$tdir/migrate_dir
15221
15222         #If migrating directory fails in the middle, all entries of
15223         #the directory is still accessiable.
15224         test_mkdir $DIR/$tdir
15225         test_mkdir -i0 -c1 $migrate_dir
15226         test_mkdir -i1 -c1 $DIR/$tdir/remote_dir
15227         stat $migrate_dir
15228         createmany -o $migrate_dir/f $total ||
15229                 error "create files under ${migrate_dir} failed"
15230
15231         # fail after migrating top dir, and this will fail only once, so the
15232         # first sub file migration will fail (currently f3), others succeed.
15233         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
15234         do_facet mds1 lctl set_param fail_loc=0x1801
15235         local t=$(ls $migrate_dir | wc -l)
15236         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
15237                 error "migrate should fail"
15238         local u=$(ls $migrate_dir | wc -l)
15239         [ "$u" == "$t" ] || error "$u != $t during migration"
15240
15241         # add new dir/file should succeed
15242         mkdir $migrate_dir/dir ||
15243                 error "mkdir failed under migrating directory"
15244         touch $migrate_dir/file ||
15245                 error "create file failed under migrating directory"
15246
15247         # add file with existing name should fail
15248         for file in $migrate_dir/f*; do
15249                 stat $file > /dev/null || error "stat $file failed"
15250                 $OPENFILE -f O_CREAT:O_EXCL $file &&
15251                         error "open(O_CREAT|O_EXCL) $file should fail"
15252                 $MULTIOP $file m && error "create $file should fail"
15253                 touch $DIR/$tdir/remote_dir/$tfile ||
15254                         error "touch $tfile failed"
15255                 ln $DIR/$tdir/remote_dir/$tfile $file &&
15256                         error "link $file should fail"
15257                 mdt_index=$($LFS getstripe -m $file)
15258                 if [ $mdt_index == 0 ]; then
15259                         # file failed to migrate is not allowed to rename to
15260                         mv $DIR/$tdir/remote_dir/$tfile $file &&
15261                                 error "rename to $file should fail"
15262                 else
15263                         mv $DIR/$tdir/remote_dir/$tfile $file ||
15264                                 error "rename to $file failed"
15265                 fi
15266                 echo hello >> $file || error "write $file failed"
15267         done
15268
15269         # resume migration with different options should fail
15270         $LFS migrate -m 0 $migrate_dir &&
15271                 error "migrate -m 0 $migrate_dir should fail"
15272
15273         $LFS migrate -m $MDTIDX -c 2 $migrate_dir &&
15274                 error "migrate -c 2 $migrate_dir should fail"
15275
15276         # resume migration should succeed
15277         $LFS migrate -m $MDTIDX $migrate_dir ||
15278                 error "migrate $migrate_dir failed"
15279
15280         echo "Finish migration, then checking.."
15281         for file in $(find $migrate_dir); do
15282                 mdt_index=$($LFS getstripe -m $file)
15283                 [ $mdt_index == $MDTIDX ] ||
15284                         error "$file is not on MDT${MDTIDX}"
15285         done
15286
15287         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15288 }
15289 run_test 230c "check directory accessiblity if migration failed"
15290
15291 test_230d() {
15292         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15293         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15294         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15295                 skip "Need MDS version at least 2.11.52"
15296         # LU-11235
15297         [ "$mds1_FSTYPE" == "zfs" ] && skip "skip ZFS backend"
15298
15299         local migrate_dir=$DIR/$tdir/migrate_dir
15300         local old_index
15301         local new_index
15302         local old_count
15303         local new_count
15304         local new_hash
15305         local mdt_index
15306         local i
15307         local j
15308
15309         old_index=$((RANDOM % MDSCOUNT))
15310         old_count=$((MDSCOUNT - old_index))
15311         new_index=$((RANDOM % MDSCOUNT))
15312         new_count=$((MDSCOUNT - new_index))
15313         new_hash="all_char"
15314
15315         [ $old_count -gt 1 ] && old_count=$((old_count - RANDOM % old_count))
15316         [ $new_count -gt 1 ] && new_count=$((new_count - RANDOM % new_count))
15317
15318         test_mkdir $DIR/$tdir
15319         test_mkdir -i $old_index -c $old_count $migrate_dir
15320
15321         for ((i=0; i<100; i++)); do
15322                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
15323                 createmany -o $migrate_dir/dir_${i}/f 100 ||
15324                         error "create files under remote dir failed $i"
15325         done
15326
15327         echo -n "Migrate from MDT$old_index "
15328         [ $old_count -gt 1 ] && echo -n "... MDT$((old_index + old_count - 1)) "
15329         echo -n "to MDT$new_index"
15330         [ $new_count -gt 1 ] && echo -n " ... MDT$((new_index + new_count - 1))"
15331         echo
15332
15333         echo "$LFS migrate -m$new_index -c$new_count -H $new_hash $migrate_dir"
15334         $LFS migrate -m $new_index -c $new_count -H $new_hash $migrate_dir ||
15335                 error "migrate remote dir error"
15336
15337         echo "Finish migration, then checking.."
15338         for file in $(find $migrate_dir); do
15339                 mdt_index=$($LFS getstripe -m $file)
15340                 if [ $mdt_index -lt $new_index ] ||
15341                    [ $mdt_index -gt $((new_index + new_count - 1)) ]; then
15342                         error "$file is on MDT$mdt_index"
15343                 fi
15344         done
15345
15346         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15347 }
15348 run_test 230d "check migrate big directory"
15349
15350 test_230e() {
15351         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15352         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15353         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15354                 skip "Need MDS version at least 2.11.52"
15355
15356         local i
15357         local j
15358         local a_fid
15359         local b_fid
15360
15361         mkdir -p $DIR/$tdir
15362         mkdir $DIR/$tdir/migrate_dir
15363         mkdir $DIR/$tdir/other_dir
15364         touch $DIR/$tdir/migrate_dir/a
15365         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
15366         ls $DIR/$tdir/other_dir
15367
15368         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15369                 error "migrate dir fails"
15370
15371         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
15372         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
15373
15374         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15375         [ $mdt_index == 0 ] || error "a is not on MDT0"
15376
15377         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
15378                 error "migrate dir fails"
15379
15380         mdt_index=$($LFS getstripe -m $DIR/$tdir/other_dir)
15381         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
15382
15383         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15384         [ $mdt_index == 1 ] || error "a is not on MDT1"
15385
15386         mdt_index=$($LFS getstripe -m $DIR/$tdir/other_dir/b)
15387         [ $mdt_index == 1 ] || error "b is not on MDT1"
15388
15389         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
15390         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
15391
15392         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
15393
15394         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15395 }
15396 run_test 230e "migrate mulitple local link files"
15397
15398 test_230f() {
15399         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15400         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15401         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15402                 skip "Need MDS version at least 2.11.52"
15403
15404         local a_fid
15405         local ln_fid
15406
15407         mkdir -p $DIR/$tdir
15408         mkdir $DIR/$tdir/migrate_dir
15409         $LFS mkdir -i1 $DIR/$tdir/other_dir
15410         touch $DIR/$tdir/migrate_dir/a
15411         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
15412         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
15413         ls $DIR/$tdir/other_dir
15414
15415         # a should be migrated to MDT1, since no other links on MDT0
15416         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15417                 error "#1 migrate dir fails"
15418         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
15419         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
15420         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15421         [ $mdt_index == 1 ] || error "a is not on MDT1"
15422
15423         # a should stay on MDT1, because it is a mulitple link file
15424         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
15425                 error "#2 migrate dir fails"
15426         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15427         [ $mdt_index == 1 ] || error "a is not on MDT1"
15428
15429         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15430                 error "#3 migrate dir fails"
15431
15432         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
15433         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
15434         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
15435
15436         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
15437         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
15438
15439         # a should be migrated to MDT0, since no other links on MDT1
15440         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
15441                 error "#4 migrate dir fails"
15442         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15443         [ $mdt_index == 0 ] || error "a is not on MDT0"
15444
15445         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15446 }
15447 run_test 230f "migrate mulitple remote link files"
15448
15449 test_230g() {
15450         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15451         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15452         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15453                 skip "Need MDS version at least 2.11.52"
15454
15455         mkdir -p $DIR/$tdir/migrate_dir
15456
15457         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
15458                 error "migrating dir to non-exist MDT succeeds"
15459         true
15460 }
15461 run_test 230g "migrate dir to non-exist MDT"
15462
15463 test_230h() {
15464         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15465         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15466         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15467                 skip "Need MDS version at least 2.11.52"
15468
15469         local mdt_index
15470
15471         mkdir -p $DIR/$tdir/migrate_dir
15472
15473         $LFS migrate -m1 $DIR &&
15474                 error "migrating mountpoint1 should fail"
15475
15476         $LFS migrate -m1 $DIR/$tdir/.. &&
15477                 error "migrating mountpoint2 should fail"
15478
15479         # same as mv
15480         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. &&
15481                 error "migrating $tdir/migrate_dir/.. should fail"
15482
15483         true
15484 }
15485 run_test 230h "migrate .. and root"
15486
15487 test_230i() {
15488         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15489         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15490         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15491                 skip "Need MDS version at least 2.11.52"
15492
15493         mkdir -p $DIR/$tdir/migrate_dir
15494
15495         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
15496                 error "migration fails with a tailing slash"
15497
15498         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
15499                 error "migration fails with two tailing slashes"
15500 }
15501 run_test 230i "lfs migrate -m tolerates trailing slashes"
15502
15503 test_230j() {
15504         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
15505         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15506                 skip "Need MDS version at least 2.11.52"
15507
15508         $LFS mkdir -m 0 -c 1 $DIR/$tdir || error "mkdir $tdir failed"
15509         $LFS setstripe -E 1M -L mdt $DIR/$tdir/$tfile ||
15510                 error "create $tfile failed"
15511         cat /etc/passwd > $DIR/$tdir/$tfile
15512
15513         $LFS migrate -m 1 $DIR/$tdir
15514
15515         cmp /etc/passwd $DIR/$tdir/$tfile ||
15516                 error "DoM file mismatch after migration"
15517 }
15518 run_test 230j "DoM file data not changed after dir migration"
15519
15520 test_230k() {
15521         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs"
15522         [ $MDS1_VERSION -lt $(version_code 2.11.56) ] &&
15523                 skip "Need MDS version at least 2.11.56"
15524
15525         local total=20
15526         local files_on_starting_mdt=0
15527
15528         $LFS mkdir -i -1 -c 2 $DIR/$tdir || error "mkdir failed"
15529         $LFS getdirstripe $DIR/$tdir
15530         for i in $(seq $total); do
15531                 echo $((i*i - i)) > $DIR/$tdir/$tfile.$i || error "write failed"
15532                 [[ $($LFS getstripe -m $DIR/$tdir/$tfile.$i) -eq 0 ]] &&
15533                         files_on_starting_mdt=$((files_on_starting_mdt + 1))
15534         done
15535
15536         echo "$files_on_starting_mdt files on MDT0"
15537
15538         $LFS migrate -m 1,3 $DIR/$tdir || error "migrate -m 1,3 failed"
15539         $LFS getdirstripe $DIR/$tdir
15540
15541         files_on_starting_mdt=0
15542         for i in $(seq $total); do
15543                 $(echo $((i*i - i)) | cmp $DIR/$tdir/$tfile.$i -) ||
15544                         error "file $tfile.$i mismatch after migration"
15545                 [[ $($LFS getstripe -m $DIR/$tdir/$tfile.$i) -eq 1 ]] &&
15546                         files_on_starting_mdt=$((files_on_starting_mdt + 1))
15547         done
15548
15549         echo "$files_on_starting_mdt files on MDT1 after migration"
15550         [[ $files_on_starting_mdt -eq $total ]] && error "all files on MDT1"
15551
15552         $LFS migrate -m 0 -c 2 $DIR/$tdir || error "migrate -m 0 -c 2 failed"
15553         $LFS getdirstripe $DIR/$tdir
15554
15555         files_on_starting_mdt=0
15556         for i in $(seq $total); do
15557                 $(echo $((i*i - i)) | cmp $DIR/$tdir/$tfile.$i -) ||
15558                         error "file $tfile.$i mismatch after 2nd migration"
15559                 [[ $($LFS getstripe -m $DIR/$tdir/$tfile.$i) -eq 0 ]] &&
15560                         files_on_starting_mdt=$((files_on_starting_mdt + 1))
15561         done
15562
15563         echo "$files_on_starting_mdt files on MDT0 after 2nd migration"
15564         [[ $files_on_starting_mdt -eq $total ]] && error "all files on MDT0"
15565
15566         true
15567 }
15568 run_test 230k "file data not changed after dir migration"
15569
15570 test_230l() {
15571         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
15572         [ $MDS1_VERSION -lt $(version_code 2.11.56) ] &&
15573                 skip "Need MDS version at least 2.11.56"
15574
15575         $LFS mkdir -i 0 -c 1 $DIR/$tdir || error "mkdir failed"
15576         createmany -o $DIR/$tdir/f___________________________________ 1000 ||
15577                 error "create files under remote dir failed $i"
15578         $LFS migrate -m 1 $DIR/$tdir || error "migrate failed"
15579 }
15580 run_test 230l "readdir between MDTs won't crash"
15581
15582 test_231a()
15583 {
15584         # For simplicity this test assumes that max_pages_per_rpc
15585         # is the same across all OSCs
15586         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
15587         local bulk_size=$((max_pages * PAGE_SIZE))
15588         local brw_size=$(do_facet ost1 $LCTL get_param -n obdfilter.*.brw_size |
15589                                        head -n 1)
15590
15591         mkdir -p $DIR/$tdir
15592         $LFS setstripe -S ${brw_size}M $DIR/$tdir ||
15593                 error "failed to set stripe with -S ${brw_size}M option"
15594
15595         # clear the OSC stats
15596         $LCTL set_param osc.*.stats=0 &>/dev/null
15597         stop_writeback
15598
15599         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
15600         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
15601                 oflag=direct &>/dev/null || error "dd failed"
15602
15603         sync; sleep 1; sync # just to be safe
15604         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
15605         if [ x$nrpcs != "x1" ]; then
15606                 $LCTL get_param osc.*.stats
15607                 error "found $nrpcs ost_write RPCs, not 1 as expected"
15608         fi
15609
15610         start_writeback
15611         # Drop the OSC cache, otherwise we will read from it
15612         cancel_lru_locks osc
15613
15614         # clear the OSC stats
15615         $LCTL set_param osc.*.stats=0 &>/dev/null
15616
15617         # Client reads $bulk_size.
15618         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
15619                 iflag=direct &>/dev/null || error "dd failed"
15620
15621         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
15622         if [ x$nrpcs != "x1" ]; then
15623                 $LCTL get_param osc.*.stats
15624                 error "found $nrpcs ost_read RPCs, not 1 as expected"
15625         fi
15626 }
15627 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
15628
15629 test_231b() {
15630         mkdir -p $DIR/$tdir
15631         local i
15632         for i in {0..1023}; do
15633                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
15634                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
15635                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
15636         done
15637         sync
15638 }
15639 run_test 231b "must not assert on fully utilized OST request buffer"
15640
15641 test_232a() {
15642         mkdir -p $DIR/$tdir
15643         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
15644
15645         #define OBD_FAIL_LDLM_OST_LVB            0x31c
15646         do_facet ost1 $LCTL set_param fail_loc=0x31c
15647
15648         # ignore dd failure
15649         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
15650
15651         do_facet ost1 $LCTL set_param fail_loc=0
15652         umount_client $MOUNT || error "umount failed"
15653         mount_client $MOUNT || error "mount failed"
15654         stop ost1 || error "cannot stop ost1"
15655         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
15656 }
15657 run_test 232a "failed lock should not block umount"
15658
15659 test_232b() {
15660         [ $MDS1_VERSION -ge $(version_code 2.10.58) ] ||
15661                 skip "Need MDS version at least 2.10.58"
15662
15663         mkdir -p $DIR/$tdir
15664         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
15665         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1
15666         sync
15667         cancel_lru_locks osc
15668
15669         #define OBD_FAIL_LDLM_OST_LVB            0x31c
15670         do_facet ost1 $LCTL set_param fail_loc=0x31c
15671
15672         # ignore failure
15673         $LFS data_version $DIR/$tdir/$tfile || true
15674
15675         do_facet ost1 $LCTL set_param fail_loc=0
15676         umount_client $MOUNT || error "umount failed"
15677         mount_client $MOUNT || error "mount failed"
15678         stop ost1 || error "cannot stop ost1"
15679         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
15680 }
15681 run_test 232b "failed data version lock should not block umount"
15682
15683 test_233a() {
15684         [ $MDS1_VERSION -ge $(version_code 2.3.64) ] ||
15685                 skip "Need MDS version at least 2.3.64"
15686         [ -n "$FILESET" ] && skip_env "SKIP due to FILESET set"
15687
15688         local fid=$($LFS path2fid $MOUNT)
15689
15690         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15691                 error "cannot access $MOUNT using its FID '$fid'"
15692 }
15693 run_test 233a "checking that OBF of the FS root succeeds"
15694
15695 test_233b() {
15696         [ $MDS1_VERSION -ge $(version_code 2.5.90) ] ||
15697                 skip "Need MDS version at least 2.5.90"
15698         [ -n "$FILESET" ] && skip_env "SKIP due to FILESET set"
15699
15700         local fid=$($LFS path2fid $MOUNT/.lustre)
15701
15702         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15703                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
15704
15705         fid=$($LFS path2fid $MOUNT/.lustre/fid)
15706         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15707                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
15708 }
15709 run_test 233b "checking that OBF of the FS .lustre succeeds"
15710
15711 test_234() {
15712         local p="$TMP/sanityN-$TESTNAME.parameters"
15713         save_lustre_params client "llite.*.xattr_cache" > $p
15714         lctl set_param llite.*.xattr_cache 1 ||
15715                 skip_env "xattr cache is not supported"
15716
15717         mkdir -p $DIR/$tdir || error "mkdir failed"
15718         touch $DIR/$tdir/$tfile || error "touch failed"
15719         # OBD_FAIL_LLITE_XATTR_ENOMEM
15720         $LCTL set_param fail_loc=0x1405
15721         getfattr -n user.attr $DIR/$tdir/$tfile &&
15722                 error "getfattr should have failed with ENOMEM"
15723         $LCTL set_param fail_loc=0x0
15724         rm -rf $DIR/$tdir
15725
15726         restore_lustre_params < $p
15727         rm -f $p
15728 }
15729 run_test 234 "xattr cache should not crash on ENOMEM"
15730
15731 test_235() {
15732         [ $MDS1_VERSION -lt $(version_code 2.4.52) ] &&
15733                 skip "Need MDS version at least 2.4.52"
15734
15735         flock_deadlock $DIR/$tfile
15736         local RC=$?
15737         case $RC in
15738                 0)
15739                 ;;
15740                 124) error "process hangs on a deadlock"
15741                 ;;
15742                 *) error "error executing flock_deadlock $DIR/$tfile"
15743                 ;;
15744         esac
15745 }
15746 run_test 235 "LU-1715: flock deadlock detection does not work properly"
15747
15748 #LU-2935
15749 test_236() {
15750         check_swap_layouts_support
15751
15752         local ref1=/etc/passwd
15753         local ref2=/etc/group
15754         local file1=$DIR/$tdir/f1
15755         local file2=$DIR/$tdir/f2
15756
15757         test_mkdir -c1 $DIR/$tdir
15758         $LFS setstripe -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
15759         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
15760         $LFS setstripe -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
15761         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
15762         local fd=$(free_fd)
15763         local cmd="exec $fd<>$file2"
15764         eval $cmd
15765         rm $file2
15766         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
15767                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
15768         cmd="exec $fd>&-"
15769         eval $cmd
15770         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
15771
15772         #cleanup
15773         rm -rf $DIR/$tdir
15774 }
15775 run_test 236 "Layout swap on open unlinked file"
15776
15777 # LU-4659 linkea consistency
15778 test_238() {
15779         [[ $MDS1_VERSION -gt $(version_code 2.5.57) ]] ||
15780                 [[ $MDS1_VERSION -gt $(version_code 2.5.1) &&
15781                    $MDS1_VERSION -lt $(version_code 2.5.50) ]] ||
15782                 skip "Need MDS version at least 2.5.58 or 2.5.2+"
15783
15784         touch $DIR/$tfile
15785         ln $DIR/$tfile $DIR/$tfile.lnk
15786         touch $DIR/$tfile.new
15787         mv $DIR/$tfile.new $DIR/$tfile
15788         local fid1=$($LFS path2fid $DIR/$tfile)
15789         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
15790         local path1=$($LFS fid2path $FSNAME "$fid1")
15791         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
15792         local path2=$($LFS fid2path $FSNAME "$fid2")
15793         [ $tfile.lnk == $path2 ] ||
15794                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
15795         rm -f $DIR/$tfile*
15796 }
15797 run_test 238 "Verify linkea consistency"
15798
15799 test_239A() { # was test_239
15800         [ $MDS1_VERSION -lt $(version_code 2.5.60) ] &&
15801                 skip "Need MDS version at least 2.5.60"
15802
15803         local list=$(comma_list $(mdts_nodes))
15804
15805         mkdir -p $DIR/$tdir
15806         createmany -o $DIR/$tdir/f- 5000
15807         unlinkmany $DIR/$tdir/f- 5000
15808         [ $MDS1_VERSION -gt $(version_code 2.10.53) ] &&
15809                 do_nodes $list "lctl set_param -n osp.*.force_sync=1"
15810         changes=$(do_nodes $list "lctl get_param -n osp.*MDT*.sync_changes \
15811                         osp.*MDT*.sync_in_flight" | calc_sum)
15812         [ "$changes" -eq 0 ] || error "$changes not synced"
15813 }
15814 run_test 239A "osp_sync test"
15815
15816 test_239a() { #LU-5297
15817         remote_mds_nodsh && skip "remote MDS with nodsh"
15818
15819         touch $DIR/$tfile
15820         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
15821         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
15822         chgrp $RUNAS_GID $DIR/$tfile
15823         wait_delete_completed
15824 }
15825 run_test 239a "process invalid osp sync record correctly"
15826
15827 test_239b() { #LU-5297
15828         remote_mds_nodsh && skip "remote MDS with nodsh"
15829
15830         touch $DIR/$tfile1
15831         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
15832         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
15833         chgrp $RUNAS_GID $DIR/$tfile1
15834         wait_delete_completed
15835         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
15836         touch $DIR/$tfile2
15837         chgrp $RUNAS_GID $DIR/$tfile2
15838         wait_delete_completed
15839 }
15840 run_test 239b "process osp sync record with ENOMEM error correctly"
15841
15842 test_240() {
15843         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15844         remote_mds_nodsh && skip "remote MDS with nodsh"
15845
15846         mkdir -p $DIR/$tdir
15847
15848         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
15849                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
15850         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
15851                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
15852
15853         umount_client $MOUNT || error "umount failed"
15854         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
15855         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
15856         mount_client $MOUNT || error "failed to mount client"
15857
15858         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
15859         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
15860 }
15861 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
15862
15863 test_241_bio() {
15864         local count=$1
15865         local bsize=$2
15866
15867         for LOOP in $(seq $count); do
15868                 dd if=$DIR/$tfile of=/dev/null bs=$bsize count=1 2>/dev/null
15869                 cancel_lru_locks $OSC || true
15870         done
15871 }
15872
15873 test_241_dio() {
15874         local count=$1
15875         local bsize=$2
15876
15877         for LOOP in $(seq $1); do
15878                 dd if=$DIR/$tfile of=/dev/null bs=$bsize count=1 iflag=direct \
15879                         2>/dev/null
15880         done
15881 }
15882
15883 test_241a() { # was test_241
15884         local bsize=$PAGE_SIZE
15885
15886         (( bsize < 40960 )) && bsize=40960
15887         dd if=/dev/zero of=$DIR/$tfile count=1 bs=$bsize
15888         ls -la $DIR/$tfile
15889         cancel_lru_locks $OSC
15890         test_241_bio 1000 $bsize &
15891         PID=$!
15892         test_241_dio 1000 $bsize
15893         wait $PID
15894 }
15895 run_test 241a "bio vs dio"
15896
15897 test_241b() {
15898         local bsize=$PAGE_SIZE
15899
15900         (( bsize < 40960 )) && bsize=40960
15901         dd if=/dev/zero of=$DIR/$tfile count=1 bs=$bsize
15902         ls -la $DIR/$tfile
15903         test_241_dio 1000 $bsize &
15904         PID=$!
15905         test_241_dio 1000 $bsize
15906         wait $PID
15907 }
15908 run_test 241b "dio vs dio"
15909
15910 test_242() {
15911         remote_mds_nodsh && skip "remote MDS with nodsh"
15912
15913         mkdir -p $DIR/$tdir
15914         touch $DIR/$tdir/$tfile
15915
15916         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
15917         do_facet mds1 lctl set_param fail_loc=0x105
15918         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
15919
15920         do_facet mds1 lctl set_param fail_loc=0
15921         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
15922 }
15923 run_test 242 "mdt_readpage failure should not cause directory unreadable"
15924
15925 test_243()
15926 {
15927         test_mkdir $DIR/$tdir
15928         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
15929 }
15930 run_test 243 "various group lock tests"
15931
15932 test_244()
15933 {
15934         test_mkdir $DIR/$tdir
15935         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
15936         sendfile_grouplock $DIR/$tdir/$tfile || \
15937                 error "sendfile+grouplock failed"
15938         rm -rf $DIR/$tdir
15939 }
15940 run_test 244 "sendfile with group lock tests"
15941
15942 test_245() {
15943         local flagname="multi_mod_rpcs"
15944         local connect_data_name="max_mod_rpcs"
15945         local out
15946
15947         # check if multiple modify RPCs flag is set
15948         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
15949                 grep "connect_flags:")
15950         echo "$out"
15951
15952         echo "$out" | grep -qw $flagname
15953         if [ $? -ne 0 ]; then
15954                 echo "connect flag $flagname is not set"
15955                 return
15956         fi
15957
15958         # check if multiple modify RPCs data is set
15959         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
15960         echo "$out"
15961
15962         echo "$out" | grep -qw $connect_data_name ||
15963                 error "import should have connect data $connect_data_name"
15964 }
15965 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
15966
15967 test_246() { # LU-7371
15968         remote_ost_nodsh && skip "remote OST with nodsh"
15969         [ $OST1_VERSION -lt $(version_code 2.7.62) ] &&
15970                 skip "Need OST version >= 2.7.62"
15971
15972         do_facet ost1 $LCTL set_param fail_val=4095
15973 #define OBD_FAIL_OST_READ_SIZE          0x234
15974         do_facet ost1 $LCTL set_param fail_loc=0x234
15975         $LFS setstripe $DIR/$tfile -i 0 -c 1
15976         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
15977         cancel_lru_locks $FSNAME-OST0000
15978         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
15979 }
15980 run_test 246 "Read file of size 4095 should return right length"
15981
15982 cleanup_247() {
15983         local submount=$1
15984
15985         trap 0
15986         umount_client $submount
15987         rmdir $submount
15988 }
15989
15990 test_247a() {
15991         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
15992                 grep -q subtree ||
15993                 skip_env "Fileset feature is not supported"
15994
15995         local submount=${MOUNT}_$tdir
15996
15997         mkdir $MOUNT/$tdir
15998         mkdir -p $submount || error "mkdir $submount failed"
15999         FILESET="$FILESET/$tdir" mount_client $submount ||
16000                 error "mount $submount failed"
16001         trap "cleanup_247 $submount" EXIT
16002         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
16003         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
16004                 error "read $MOUNT/$tdir/$tfile failed"
16005         cleanup_247 $submount
16006 }
16007 run_test 247a "mount subdir as fileset"
16008
16009 test_247b() {
16010         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
16011                 skip_env "Fileset feature is not supported"
16012
16013         local submount=${MOUNT}_$tdir
16014
16015         rm -rf $MOUNT/$tdir
16016         mkdir -p $submount || error "mkdir $submount failed"
16017         SKIP_FILESET=1
16018         FILESET="$FILESET/$tdir" mount_client $submount &&
16019                 error "mount $submount should fail"
16020         rmdir $submount
16021 }
16022 run_test 247b "mount subdir that dose not exist"
16023
16024 test_247c() {
16025         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
16026                 skip_env "Fileset feature is not supported"
16027
16028         local submount=${MOUNT}_$tdir
16029
16030         mkdir -p $MOUNT/$tdir/dir1
16031         mkdir -p $submount || error "mkdir $submount failed"
16032         trap "cleanup_247 $submount" EXIT
16033         FILESET="$FILESET/$tdir" mount_client $submount ||
16034                 error "mount $submount failed"
16035         local fid=$($LFS path2fid $MOUNT/)
16036         $LFS fid2path $submount $fid && error "fid2path should fail"
16037         cleanup_247 $submount
16038 }
16039 run_test 247c "running fid2path outside root"
16040
16041 test_247d() {
16042         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
16043                 skip "Fileset feature is not supported"
16044
16045         local submount=${MOUNT}_$tdir
16046
16047         mkdir -p $MOUNT/$tdir/dir1
16048         mkdir -p $submount || error "mkdir $submount failed"
16049         FILESET="$FILESET/$tdir" mount_client $submount ||
16050                 error "mount $submount failed"
16051         trap "cleanup_247 $submount" EXIT
16052         local fid=$($LFS path2fid $submount/dir1)
16053         $LFS fid2path $submount $fid || error "fid2path should succeed"
16054         cleanup_247 $submount
16055 }
16056 run_test 247d "running fid2path inside root"
16057
16058 # LU-8037
16059 test_247e() {
16060         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
16061                 grep -q subtree ||
16062                 skip "Fileset feature is not supported"
16063
16064         local submount=${MOUNT}_$tdir
16065
16066         mkdir $MOUNT/$tdir
16067         mkdir -p $submount || error "mkdir $submount failed"
16068         FILESET="$FILESET/.." mount_client $submount &&
16069                 error "mount $submount should fail"
16070         rmdir $submount
16071 }
16072 run_test 247e "mount .. as fileset"
16073
16074 test_248() {
16075         local fast_read_sav=$($LCTL get_param -n llite.*.fast_read 2>/dev/null)
16076         [ -z "$fast_read_sav" ] && skip "no fast read support"
16077
16078         # create a large file for fast read verification
16079         dd if=/dev/zero of=$DIR/$tfile bs=1M count=128 > /dev/null 2>&1
16080
16081         # make sure the file is created correctly
16082         $CHECKSTAT -s $((128*1024*1024)) $DIR/$tfile ||
16083                 { rm -f $DIR/$tfile; skip "file creation error"; }
16084
16085         echo "Test 1: verify that fast read is 4 times faster on cache read"
16086
16087         # small read with fast read enabled
16088         $LCTL set_param -n llite.*.fast_read=1
16089         local t_fast=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
16090                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
16091                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
16092         # small read with fast read disabled
16093         $LCTL set_param -n llite.*.fast_read=0
16094         local t_slow=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
16095                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
16096                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
16097
16098         # verify that fast read is 4 times faster for cache read
16099         [ $(bc <<< "4 * $t_fast < $t_slow") -eq 1 ] ||
16100                 error_not_in_vm "fast read was not 4 times faster: " \
16101                            "$t_fast vs $t_slow"
16102
16103         echo "Test 2: verify the performance between big and small read"
16104         $LCTL set_param -n llite.*.fast_read=1
16105
16106         # 1k non-cache read
16107         cancel_lru_locks osc
16108         local t_1k=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
16109                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
16110                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
16111
16112         # 1M non-cache read
16113         cancel_lru_locks osc
16114         local t_1m=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
16115                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
16116                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
16117
16118         # verify that big IO is not 4 times faster than small IO
16119         [ $(bc <<< "4 * $t_1k >= $t_1m") -eq 1 ] ||
16120                 error_not_in_vm "bigger IO is way too fast: $t_1k vs $t_1m"
16121
16122         $LCTL set_param -n llite.*.fast_read=$fast_read_sav
16123         rm -f $DIR/$tfile
16124 }
16125 run_test 248 "fast read verification"
16126
16127 test_249() { # LU-7890
16128         [ $MDS1_VERSION -lt $(version_code 2.8.53) ] &&
16129                 skip "Need at least version 2.8.54"
16130
16131         rm -f $DIR/$tfile
16132         $LFS setstripe -c 1 $DIR/$tfile
16133         # Offset 2T == 4k * 512M
16134         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 seek=512M ||
16135                 error "dd to 2T offset failed"
16136 }
16137 run_test 249 "Write above 2T file size"
16138
16139 test_250() {
16140         [ "$(facet_fstype ost$(($($LFS getstripe -i $DIR/$tfile) + 1)))" = "zfs" ] \
16141          && skip "no 16TB file size limit on ZFS"
16142
16143         $LFS setstripe -c 1 $DIR/$tfile
16144         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
16145         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
16146         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
16147         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
16148                 conv=notrunc,fsync && error "append succeeded"
16149         return 0
16150 }
16151 run_test 250 "Write above 16T limit"
16152
16153 test_251() {
16154         $LFS setstripe -c -1 -S 1048576 $DIR/$tfile
16155
16156         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
16157         #Skip once - writing the first stripe will succeed
16158         $LCTL set_param fail_loc=0xa0001407 fail_val=1
16159         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
16160                 error "short write happened"
16161
16162         $LCTL set_param fail_loc=0xa0001407 fail_val=1
16163         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
16164                 error "short read happened"
16165
16166         rm -f $DIR/$tfile
16167 }
16168 run_test 251 "Handling short read and write correctly"
16169
16170 test_252() {
16171         remote_mds_nodsh && skip "remote MDS with nodsh"
16172         remote_ost_nodsh && skip "remote OST with nodsh"
16173         if [ "$ost1_FSTYPE" != "ldiskfs" -o "$mds1_FSTYPE" != "ldiskfs" ]; then
16174                 skip_env "ldiskfs only test"
16175         fi
16176
16177         local tgt
16178         local dev
16179         local out
16180         local uuid
16181         local num
16182         local gen
16183
16184         # check lr_reader on OST0000
16185         tgt=ost1
16186         dev=$(facet_device $tgt)
16187         out=$(do_facet $tgt $LR_READER $dev)
16188         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
16189         echo "$out"
16190         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
16191         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
16192                 error "Invalid uuid returned by $LR_READER on target $tgt"
16193         echo -e "uuid returned by $LR_READER is '$uuid'\n"
16194
16195         # check lr_reader -c on MDT0000
16196         tgt=mds1
16197         dev=$(facet_device $tgt)
16198         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
16199                 skip "$LR_READER does not support additional options"
16200         fi
16201         out=$(do_facet $tgt $LR_READER -c $dev)
16202         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
16203         echo "$out"
16204         num=$(echo "$out" | grep -c "mdtlov")
16205         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
16206                 error "Invalid number of mdtlov clients returned by $LR_READER"
16207         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
16208
16209         # check lr_reader -cr on MDT0000
16210         out=$(do_facet $tgt $LR_READER -cr $dev)
16211         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
16212         echo "$out"
16213         echo "$out" | grep -q "^reply_data:$" ||
16214                 error "$LR_READER should have returned 'reply_data' section"
16215         num=$(echo "$out" | grep -c "client_generation")
16216         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
16217 }
16218 run_test 252 "check lr_reader tool"
16219
16220 test_253_fill_ost() {
16221         local size_mb #how many MB should we write to pass watermark
16222         local lwm=$3  #low watermark
16223         local free_10mb #10% of free space
16224
16225         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
16226         size_mb=$((free_kb / 1024 - lwm))
16227         free_10mb=$((free_kb / 10240))
16228         #If 10% of free space cross low watermark use it
16229         if (( free_10mb > size_mb )); then
16230                 size_mb=$free_10mb
16231         else
16232                 #At least we need to store 1.1 of difference between
16233                 #free space and low watermark
16234                 size_mb=$((size_mb + size_mb / 10))
16235         fi
16236         if (( lwm <= $((free_kb / 1024)) )) || [ ! -f $DIR/$tdir/1 ]; then
16237                 dd if=/dev/zero of=$DIR/$tdir/1 bs=1M count=$size_mb \
16238                          oflag=append conv=notrunc
16239         fi
16240
16241         sleep_maxage
16242
16243         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
16244         echo "OST still has $((free_kb / 1024)) mbytes free"
16245 }
16246
16247 test_253() {
16248         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16249         remote_mds_nodsh && skip "remote MDS with nodsh"
16250         remote_mgs_nodsh && skip "remote MGS with nodsh"
16251
16252         local ostidx=0
16253         local rc=0
16254
16255         local ost_name=$($LFS osts |
16256                 sed -n 's/^'$ostidx': \(.*\)_UUID .*/\1/p')
16257         # on the mdt's osc
16258         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $ost_name)
16259         do_facet $SINGLEMDS $LCTL get_param -n \
16260                 osp.$mdtosc_proc1.reserved_mb_high ||
16261                 skip  "remote MDS does not support reserved_mb_high"
16262
16263         rm -rf $DIR/$tdir
16264         wait_mds_ost_sync
16265         wait_delete_completed
16266         mkdir $DIR/$tdir
16267
16268         local last_wm_h=$(do_facet $SINGLEMDS $LCTL get_param -n \
16269                         osp.$mdtosc_proc1.reserved_mb_high)
16270         local last_wm_l=$(do_facet $SINGLEMDS $LCTL get_param -n \
16271                         osp.$mdtosc_proc1.reserved_mb_low)
16272         echo "prev high watermark $last_wm_h, prev low watermark $last_wm_l"
16273
16274         if ! combined_mgs_mds ; then
16275                 mount_mgs_client
16276         fi
16277         create_pool $FSNAME.$TESTNAME || error "Pool creation failed"
16278         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $ost_name ||
16279                 error "Adding $ost_name to pool failed"
16280
16281         # Wait for client to see a OST at pool
16282         wait_update $HOSTNAME "$LCTL get_param -n
16283                 lov.$FSNAME-*.pools.$TESTNAME | sort -u |
16284                 grep $ost_name" "$ost_name""_UUID" $((TIMEOUT/2)) ||
16285                 error "Client can not see the pool"
16286         $LFS setstripe $DIR/$tdir -i $ostidx -c 1 -p $FSNAME.$TESTNAME ||
16287                 error "Setstripe failed"
16288
16289         dd if=/dev/zero of=$DIR/$tdir/0 bs=1M count=10
16290         local blocks=$($LFS df $MOUNT | grep $ost_name | awk '{ print $4 }')
16291         echo "OST still has $((blocks/1024)) mbytes free"
16292
16293         local new_lwm=$((blocks/1024-10))
16294         do_facet $SINGLEMDS $LCTL set_param \
16295                         osp.$mdtosc_proc1.reserved_mb_high=$((new_lwm+5))
16296         do_facet $SINGLEMDS $LCTL set_param \
16297                         osp.$mdtosc_proc1.reserved_mb_low=$new_lwm
16298
16299         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
16300
16301         #First enospc could execute orphan deletion so repeat.
16302         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
16303
16304         local oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
16305                         osp.$mdtosc_proc1.prealloc_status)
16306         echo "prealloc_status $oa_status"
16307
16308         dd if=/dev/zero of=$DIR/$tdir/2 bs=1M count=1 &&
16309                 error "File creation should fail"
16310         #object allocation was stopped, but we still able to append files
16311         dd if=/dev/zero of=$DIR/$tdir/1 bs=1M seek=6 count=5 oflag=append ||
16312                 error "Append failed"
16313         rm -f $DIR/$tdir/1 $DIR/$tdir/0 $DIR/$tdir/r*
16314
16315         wait_delete_completed
16316
16317         sleep_maxage
16318
16319         for i in $(seq 10 12); do
16320                 dd if=/dev/zero of=$DIR/$tdir/$i bs=1M count=1 2>/dev/null ||
16321                         error "File creation failed after rm";
16322         done
16323
16324         oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
16325                         osp.$mdtosc_proc1.prealloc_status)
16326         echo "prealloc_status $oa_status"
16327
16328         if (( oa_status != 0 )); then
16329                 error "Object allocation still disable after rm"
16330         fi
16331         do_facet $SINGLEMDS $LCTL set_param \
16332                         osp.$mdtosc_proc1.reserved_mb_high=$last_wm_h
16333         do_facet $SINGLEMDS $LCTL set_param \
16334                         osp.$mdtosc_proc1.reserved_mb_low=$last_wm_l
16335
16336
16337         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $ost_name ||
16338                 error "Remove $ost_name from pool failed"
16339         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
16340                 error "Pool destroy fialed"
16341
16342         if ! combined_mgs_mds ; then
16343                 umount_mgs_client
16344         fi
16345 }
16346 run_test 253 "Check object allocation limit"
16347
16348 test_254() {
16349         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16350         remote_mds_nodsh && skip "remote MDS with nodsh"
16351         do_facet $SINGLEMDS $LCTL get_param -n mdd.$MDT0.changelog_size ||
16352                 skip "MDS does not support changelog_size"
16353
16354         local cl_user
16355         local MDT0=$(facet_svc $SINGLEMDS)
16356
16357         changelog_register || error "changelog_register failed"
16358
16359         changelog_clear 0 || error "changelog_clear failed"
16360
16361         local size1=$(do_facet $SINGLEMDS \
16362                       $LCTL get_param -n mdd.$MDT0.changelog_size)
16363         echo "Changelog size $size1"
16364
16365         rm -rf $DIR/$tdir
16366         $LFS mkdir -i 0 $DIR/$tdir
16367         # change something
16368         mkdir -p $DIR/$tdir/pics/2008/zachy
16369         touch $DIR/$tdir/pics/2008/zachy/timestamp
16370         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
16371         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
16372         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
16373         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
16374         rm $DIR/$tdir/pics/desktop.jpg
16375
16376         local size2=$(do_facet $SINGLEMDS \
16377                       $LCTL get_param -n mdd.$MDT0.changelog_size)
16378         echo "Changelog size after work $size2"
16379
16380         (( $size2 > $size1 )) ||
16381                 error "new Changelog size=$size2 less than old size=$size1"
16382 }
16383 run_test 254 "Check changelog size"
16384
16385 ladvise_no_type()
16386 {
16387         local type=$1
16388         local file=$2
16389
16390         lfs ladvise -a invalid $file 2>&1 | grep "Valid types" |
16391                 awk -F: '{print $2}' | grep $type > /dev/null
16392         if [ $? -ne 0 ]; then
16393                 return 0
16394         fi
16395         return 1
16396 }
16397
16398 ladvise_no_ioctl()
16399 {
16400         local file=$1
16401
16402         lfs ladvise -a willread $file > /dev/null 2>&1
16403         if [ $? -eq 0 ]; then
16404                 return 1
16405         fi
16406
16407         lfs ladvise -a willread $file 2>&1 |
16408                 grep "Inappropriate ioctl for device" > /dev/null
16409         if [ $? -eq 0 ]; then
16410                 return 0
16411         fi
16412         return 1
16413 }
16414
16415 percent() {
16416         bc <<<"scale=2; ($1 - $2) * 100 / $2"
16417 }
16418
16419 # run a random read IO workload
16420 # usage: random_read_iops <filename> <filesize> <iosize>
16421 random_read_iops() {
16422         local file=$1
16423         local fsize=$2
16424         local iosize=${3:-4096}
16425
16426         $READS -f $file -s $fsize -b $iosize -n $((fsize / iosize)) -t 60 |
16427                 sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##'
16428 }
16429
16430 drop_file_oss_cache() {
16431         local file="$1"
16432         local nodes="$2"
16433
16434         $LFS ladvise -a dontneed $file 2>/dev/null ||
16435                 do_nodes $nodes "echo 3 > /proc/sys/vm/drop_caches"
16436 }
16437
16438 ladvise_willread_performance()
16439 {
16440         local repeat=10
16441         local average_origin=0
16442         local average_cache=0
16443         local average_ladvise=0
16444
16445         for ((i = 1; i <= $repeat; i++)); do
16446                 echo "Iter $i/$repeat: reading without willread hint"
16447                 cancel_lru_locks osc
16448                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
16449                 local speed_origin=$(random_read_iops $DIR/$tfile $size)
16450                 echo "Iter $i/$repeat: uncached speed: $speed_origin"
16451                 average_origin=$(bc <<<"$average_origin + $speed_origin")
16452
16453                 cancel_lru_locks osc
16454                 local speed_cache=$(random_read_iops $DIR/$tfile $size)
16455                 echo "Iter $i/$repeat: OSS cache speed: $speed_cache"
16456                 average_cache=$(bc <<<"$average_cache + $speed_cache")
16457
16458                 cancel_lru_locks osc
16459                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
16460                 $LFS ladvise -a willread $DIR/$tfile || error "ladvise failed"
16461                 local speed_ladvise=$(random_read_iops $DIR/$tfile $size)
16462                 echo "Iter $i/$repeat: ladvise speed: $speed_ladvise"
16463                 average_ladvise=$(bc <<<"$average_ladvise + $speed_ladvise")
16464         done
16465         average_origin=$(bc <<<"scale=2; $average_origin / $repeat")
16466         average_cache=$(bc <<<"scale=2; $average_cache / $repeat")
16467         average_ladvise=$(bc <<<"scale=2; $average_ladvise / $repeat")
16468
16469         speedup_cache=$(percent $average_cache $average_origin)
16470         speedup_ladvise=$(percent $average_ladvise $average_origin)
16471
16472         echo "Average uncached read: $average_origin"
16473         echo "Average speedup with OSS cached read: " \
16474                 "$average_cache = +$speedup_cache%"
16475         echo "Average speedup with ladvise willread: " \
16476                 "$average_ladvise = +$speedup_ladvise%"
16477
16478         local lowest_speedup=20
16479         if [ ${average_cache%.*} -lt $lowest_speedup ]; then
16480                 echo "Speedup with OSS cached read less than $lowest_speedup%," \
16481                         "got $average_cache%. Skipping ladvise willread check."
16482                 return 0
16483         fi
16484
16485         # the test won't work on ZFS until it supports 'ladvise dontneed', but
16486         # it is still good to run until then to exercise 'ladvise willread'
16487         ! $LFS ladvise -a dontneed $DIR/$tfile &&
16488                 [ "$ost1_FSTYPE" = "zfs" ] &&
16489                 echo "osd-zfs does not support dontneed or drop_caches" &&
16490                 return 0
16491
16492         lowest_speedup=$(bc <<<"scale=2; $average_cache / 2")
16493         [ ${average_ladvise%.*} -gt $lowest_speedup ] ||
16494                 error_not_in_vm "Speedup with willread is less than " \
16495                         "$lowest_speedup%, got $average_ladvise%"
16496 }
16497
16498 test_255a() {
16499         [ $OST1_VERSION -lt $(version_code 2.8.54) ] &&
16500                 skip "lustre < 2.8.54 does not support ladvise "
16501         remote_ost_nodsh && skip "remote OST with nodsh"
16502
16503         lfs setstripe -c -1 -i 0 $DIR/$tfile || error "$tfile failed"
16504
16505         ladvise_no_type willread $DIR/$tfile &&
16506                 skip "willread ladvise is not supported"
16507
16508         ladvise_no_ioctl $DIR/$tfile &&
16509                 skip "ladvise ioctl is not supported"
16510
16511         local size_mb=100
16512         local size=$((size_mb * 1048576))
16513         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
16514                 error "dd to $DIR/$tfile failed"
16515
16516         lfs ladvise -a willread $DIR/$tfile ||
16517                 error "Ladvise failed with no range argument"
16518
16519         lfs ladvise -a willread -s 0 $DIR/$tfile ||
16520                 error "Ladvise failed with no -l or -e argument"
16521
16522         lfs ladvise -a willread -e 1 $DIR/$tfile ||
16523                 error "Ladvise failed with only -e argument"
16524
16525         lfs ladvise -a willread -l 1 $DIR/$tfile ||
16526                 error "Ladvise failed with only -l argument"
16527
16528         lfs ladvise -a willread -s 2 -e 1 $DIR/$tfile &&
16529                 error "End offset should not be smaller than start offset"
16530
16531         lfs ladvise -a willread -s 2 -e 2 $DIR/$tfile &&
16532                 error "End offset should not be equal to start offset"
16533
16534         lfs ladvise -a willread -s $size -l 1 $DIR/$tfile ||
16535                 error "Ladvise failed with overflowing -s argument"
16536
16537         lfs ladvise -a willread -s 1 -e $((size + 1)) $DIR/$tfile ||
16538                 error "Ladvise failed with overflowing -e argument"
16539
16540         lfs ladvise -a willread -s 1 -l $size $DIR/$tfile ||
16541                 error "Ladvise failed with overflowing -l argument"
16542
16543         lfs ladvise -a willread -l 1 -e 2 $DIR/$tfile &&
16544                 error "Ladvise succeeded with conflicting -l and -e arguments"
16545
16546         echo "Synchronous ladvise should wait"
16547         local delay=4
16548 #define OBD_FAIL_OST_LADVISE_PAUSE       0x237
16549         do_nodes $(comma_list $(osts_nodes)) \
16550                 $LCTL set_param fail_val=$delay fail_loc=0x237
16551
16552         local start_ts=$SECONDS
16553         lfs ladvise -a willread $DIR/$tfile ||
16554                 error "Ladvise failed with no range argument"
16555         local end_ts=$SECONDS
16556         local inteval_ts=$((end_ts - start_ts))
16557
16558         if [ $inteval_ts -lt $(($delay - 1)) ]; then
16559                 error "Synchronous advice didn't wait reply"
16560         fi
16561
16562         echo "Asynchronous ladvise shouldn't wait"
16563         local start_ts=$SECONDS
16564         lfs ladvise -a willread -b $DIR/$tfile ||
16565                 error "Ladvise failed with no range argument"
16566         local end_ts=$SECONDS
16567         local inteval_ts=$((end_ts - start_ts))
16568
16569         if [ $inteval_ts -gt $(($delay / 2)) ]; then
16570                 error "Asynchronous advice blocked"
16571         fi
16572
16573         do_nodes $(comma_list $(osts_nodes)) $LCTL set_param fail_loc=0
16574         ladvise_willread_performance
16575 }
16576 run_test 255a "check 'lfs ladvise -a willread'"
16577
16578 facet_meminfo() {
16579         local facet=$1
16580         local info=$2
16581
16582         do_facet $facet "cat /proc/meminfo | grep ^${info}:" | awk '{print $2}'
16583 }
16584
16585 test_255b() {
16586         [ $OST1_VERSION -lt $(version_code 2.8.54) ] &&
16587                 skip "lustre < 2.8.54 does not support ladvise "
16588         remote_ost_nodsh && skip "remote OST with nodsh"
16589
16590         lfs setstripe -c 1 -i 0 $DIR/$tfile
16591
16592         ladvise_no_type dontneed $DIR/$tfile &&
16593                 skip "dontneed ladvise is not supported"
16594
16595         ladvise_no_ioctl $DIR/$tfile &&
16596                 skip "ladvise ioctl is not supported"
16597
16598         ! $LFS ladvise -a dontneed $DIR/$tfile &&
16599                 [ "$ost1_FSTYPE" = "zfs" ] &&
16600                 skip "zfs-osd does not support 'ladvise dontneed'"
16601
16602         local size_mb=100
16603         local size=$((size_mb * 1048576))
16604         # In order to prevent disturbance of other processes, only check 3/4
16605         # of the memory usage
16606         local kibibytes=$((size_mb * 1024 * 3 / 4))
16607
16608         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
16609                 error "dd to $DIR/$tfile failed"
16610
16611         #force write to complete before dropping OST cache & checking memory
16612         sync
16613
16614         local total=$(facet_meminfo ost1 MemTotal)
16615         echo "Total memory: $total KiB"
16616
16617         do_facet ost1 "sync && echo 3 > /proc/sys/vm/drop_caches"
16618         local before_read=$(facet_meminfo ost1 Cached)
16619         echo "Cache used before read: $before_read KiB"
16620
16621         lfs ladvise -a willread $DIR/$tfile ||
16622                 error "Ladvise willread failed"
16623         local after_read=$(facet_meminfo ost1 Cached)
16624         echo "Cache used after read: $after_read KiB"
16625
16626         lfs ladvise -a dontneed $DIR/$tfile ||
16627                 error "Ladvise dontneed again failed"
16628         local no_read=$(facet_meminfo ost1 Cached)
16629         echo "Cache used after dontneed ladvise: $no_read KiB"
16630
16631         if [ $total -lt $((before_read + kibibytes)) ]; then
16632                 echo "Memory is too small, abort checking"
16633                 return 0
16634         fi
16635
16636         if [ $((before_read + kibibytes)) -gt $after_read ]; then
16637                 error "Ladvise willread should use more memory" \
16638                         "than $kibibytes KiB"
16639         fi
16640
16641         if [ $((no_read + kibibytes)) -gt $after_read ]; then
16642                 error "Ladvise dontneed should release more memory" \
16643                         "than $kibibytes KiB"
16644         fi
16645 }
16646 run_test 255b "check 'lfs ladvise -a dontneed'"
16647
16648 test_255c() {
16649         [ $OST1_VERSION -lt $(version_code 2.10.50) ] &&
16650                 skip "lustre < 2.10.53 does not support lockahead"
16651
16652         local count
16653         local new_count
16654         local difference
16655         local i
16656         local rc
16657
16658         test_mkdir -p $DIR/$tdir
16659         $LFS setstripe -i 0 $DIR/$tdir
16660
16661         #test 10 returns only success/failure
16662         i=10
16663         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16664         rc=$?
16665         if [ $rc -eq 255 ]; then
16666                 error "Ladvise test${i} failed, ${rc}"
16667         fi
16668
16669         #test 11 counts lock enqueue requests, all others count new locks
16670         i=11
16671         count=$(do_facet ost1 \
16672                 $LCTL get_param -n ost.OSS.ost.stats)
16673         count=$(echo "$count" | grep ldlm_extent_enqueue | awk '{ print $2 }')
16674
16675         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16676         rc=$?
16677         if [ $rc -eq 255 ]; then
16678                 error "Ladvise test${i} failed, ${rc}"
16679         fi
16680
16681         new_count=$(do_facet ost1 \
16682                 $LCTL get_param -n ost.OSS.ost.stats)
16683         new_count=$(echo "$new_count" | grep ldlm_extent_enqueue | \
16684                    awk '{ print $2 }')
16685
16686         difference="$((new_count - count))"
16687         if [ $difference -ne $rc ]; then
16688                 error "Ladvise test${i}, bad enqueue count, returned " \
16689                       "${rc}, actual ${difference}"
16690         fi
16691
16692         for i in $(seq 12 21); do
16693                 # If we do not do this, we run the risk of having too many
16694                 # locks and starting lock cancellation while we are checking
16695                 # lock counts.
16696                 cancel_lru_locks osc
16697
16698                 count=$($LCTL get_param -n \
16699                        ldlm.namespaces.$FSNAME-OST0000*osc-[-0-9a-f]*.lock_unused_count)
16700
16701                 lockahead_test -d $DIR/$tdir -t $i -f $tfile
16702                 rc=$?
16703                 if [ $rc -eq 255 ]; then
16704                         error "Ladvise test ${i} failed, ${rc}"
16705                 fi
16706
16707                 new_count=$($LCTL get_param -n \
16708                        ldlm.namespaces.$FSNAME-OST0000*osc-[-0-9a-f]*.lock_unused_count)
16709                 difference="$((new_count - count))"
16710
16711                 # Test 15 output is divided by 100 to map down to valid return
16712                 if [ $i -eq 15 ]; then
16713                         rc="$((rc * 100))"
16714                 fi
16715
16716                 if [ $difference -ne $rc ]; then
16717                         error "Ladvise test ${i}, bad lock count, returned " \
16718                               "${rc}, actual ${difference}"
16719                 fi
16720         done
16721
16722         #test 22 returns only success/failure
16723         i=22
16724         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16725         rc=$?
16726         if [ $rc -eq 255 ]; then
16727                 error "Ladvise test${i} failed, ${rc}"
16728         fi
16729 }
16730 run_test 255c "suite of ladvise lockahead tests"
16731
16732 test_256() {
16733         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16734         remote_mds_nodsh && skip "remote MDS with nodsh"
16735         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip "ldiskfs only test"
16736         changelog_users $SINGLEMDS | grep "^cl" &&
16737                 skip "active changelog user"
16738
16739         local cl_user
16740         local cat_sl
16741         local mdt_dev
16742
16743         mdt_dev=$(mdsdevname 1)
16744         echo $mdt_dev
16745
16746         changelog_register || error "changelog_register failed"
16747
16748         rm -rf $DIR/$tdir
16749         mkdir -p $DIR/$tdir
16750
16751         changelog_clear 0 || error "changelog_clear failed"
16752
16753         # change something
16754         touch $DIR/$tdir/{1..10}
16755
16756         # stop the MDT
16757         stop $SINGLEMDS || error "Fail to stop MDT"
16758
16759         # remount the MDT
16760
16761         start $SINGLEMDS $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT"
16762
16763         #after mount new plainllog is used
16764         touch $DIR/$tdir/{11..19}
16765         local tmpfile=$(mktemp -u $tfile.XXXXXX)
16766         cat_sl=$(do_facet $SINGLEMDS "sync; \
16767                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
16768                  llog_reader $tmpfile | grep -c type=1064553b")
16769         do_facet $SINGLEMDS llog_reader $tmpfile
16770
16771         [ $cat_sl != 2 ] && error "Changelog catalog has $cat_sl != 2 slots"
16772
16773         changelog_clear 0 || error "changelog_clear failed"
16774
16775         cat_sl=$(do_facet $SINGLEMDS "sync; \
16776                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
16777                  llog_reader $tmpfile | grep -c type=1064553b; rm -f $tmpfile")
16778
16779         if (( cat_sl == 2 )); then
16780                 error "Empty plain llog was not deleted from changelog catalog"
16781         elif (( cat_sl != 1 )); then
16782                 error "Active plain llog shouldn't be deleted from catalog"
16783         fi
16784 }
16785 run_test 256 "Check llog delete for empty and not full state"
16786
16787 test_257() {
16788         remote_mds_nodsh && skip "remote MDS with nodsh"
16789         [[ $MDS1_VERSION -lt $(version_code 2.8.55) ]] &&
16790                 skip "Need MDS version at least 2.8.55"
16791
16792         test_mkdir $DIR/$tdir
16793
16794         setfattr -n trusted.name1 -v value1 $DIR/$tdir ||
16795                 error "setfattr -n trusted.name1=value1 $DIR/$tdir failed"
16796         stat $DIR/$tdir
16797
16798 #define OBD_FAIL_MDS_XATTR_REP                  0x161
16799         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
16800         local facet=mds$((mdtidx + 1))
16801         set_nodes_failloc $(facet_active_host $facet) 0x80000161
16802         getfattr -n trusted.name1 $DIR/$tdir 2> /dev/null
16803
16804         stop $facet || error "stop MDS failed"
16805         start $facet $(mdsdevname $((mdtidx + 1))) $MDS_MOUNT_OPTS ||
16806                 error "start MDS fail"
16807         wait_recovery_complete $facet
16808 }
16809 run_test 257 "xattr locks are not lost"
16810
16811 # Verify we take the i_mutex when security requires it
16812 test_258a() {
16813 #define OBD_FAIL_IMUTEX_SEC 0x141c
16814         $LCTL set_param fail_loc=0x141c
16815         touch $DIR/$tfile
16816         chmod u+s $DIR/$tfile
16817         chmod a+rwx $DIR/$tfile
16818         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
16819         RC=$?
16820         if [ $RC -ne 0 ]; then
16821                 error "error, failed to take i_mutex, rc=$?"
16822         fi
16823         rm -f $DIR/$tfile
16824 }
16825 run_test 258a
16826
16827 # Verify we do NOT take the i_mutex in the normal case
16828 test_258b() {
16829 #define OBD_FAIL_IMUTEX_NOSEC 0x141d
16830         $LCTL set_param fail_loc=0x141d
16831         touch $DIR/$tfile
16832         chmod a+rwx $DIR
16833         chmod a+rw $DIR/$tfile
16834         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
16835         RC=$?
16836         if [ $RC -ne 0 ]; then
16837                 error "error, took i_mutex unnecessarily, rc=$?"
16838         fi
16839         rm -f $DIR/$tfile
16840
16841 }
16842 run_test 258b "verify i_mutex security behavior"
16843
16844 test_259() {
16845         local file=$DIR/$tfile
16846         local before
16847         local after
16848
16849         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip "ldiskfs only test"
16850
16851         stack_trap "rm -f $file" EXIT
16852
16853         wait_delete_completed
16854         before=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16855         echo "before: $before"
16856
16857         $LFS setstripe -i 0 -c 1 $file
16858         dd if=/dev/zero of=$file bs=1M count=10 || error "couldn't write"
16859         sync_all_data
16860         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16861         echo "after write: $after"
16862
16863 #define OBD_FAIL_OSD_FAIL_AT_TRUNCATE          0x2301
16864         do_facet ost1 $LCTL set_param fail_loc=0x2301
16865         $TRUNCATE $file 0
16866         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16867         echo "after truncate: $after"
16868
16869         stop ost1
16870         do_facet ost1 $LCTL set_param fail_loc=0
16871         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
16872         sleep 2
16873         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16874         echo "after restart: $after"
16875         [ $((after - before)) -ge $(fs_log_size ost1) ] &&
16876                 error "missing truncate?"
16877
16878         return 0
16879 }
16880 run_test 259 "crash at delayed truncate"
16881
16882 test_260() {
16883 #define OBD_FAIL_MDC_CLOSE               0x806
16884         $LCTL set_param fail_loc=0x80000806
16885         touch $DIR/$tfile
16886
16887 }
16888 run_test 260 "Check mdc_close fail"
16889
16890 ### Data-on-MDT sanity tests ###
16891 test_270a() {
16892         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
16893                 skip "Need MDS version at least 2.10.55 for DoM"
16894
16895         # create DoM file
16896         local dom=$DIR/$tdir/dom_file
16897         local tmp=$DIR/$tdir/tmp_file
16898
16899         mkdir -p $DIR/$tdir
16900
16901         # basic checks for DoM component creation
16902         $LFS setstripe -E 1024K -E 2048K -L mdt $dom 2>/dev/null &&
16903                 error "Can set MDT layout to non-first entry"
16904
16905         $LFS setstripe -E 1024K -L mdt -E 2048K -L mdt $dom 2>/dev/null &&
16906                 error "Can define multiple entries as MDT layout"
16907
16908         $LFS setstripe -E 1M -L mdt $dom || error "Can't create DoM layout"
16909
16910         [ $($LFS getstripe -L $dom) == "mdt" ] || error "bad pattern"
16911         [ $($LFS getstripe -c $dom) == 0 ] || error "bad stripe count"
16912         [ $($LFS getstripe -S $dom) == 1048576 ] || error "bad stripe size"
16913
16914         local mdtidx=$($LFS getstripe -m $dom)
16915         local mdtname=MDT$(printf %04x $mdtidx)
16916         local facet=mds$((mdtidx + 1))
16917         local space_check=1
16918
16919         # Skip free space checks with ZFS
16920         [ "$(facet_fstype $facet)" == "zfs" ] && space_check=0
16921
16922         # write
16923         sync
16924         local size_tmp=$((65536 * 3))
16925         local mdtfree1=$(do_facet $facet \
16926                          lctl get_param -n osd*.*$mdtname.kbytesfree)
16927
16928         dd if=/dev/urandom of=$tmp bs=1024 count=$((size_tmp / 1024))
16929         # check also direct IO along write
16930         # IO size must be a multiple of PAGE_SIZE on all platforms (ARM=64KB)
16931         dd if=$tmp of=$dom bs=65536 count=$((size_tmp / 65536)) oflag=direct
16932         sync
16933         cmp $tmp $dom || error "file data is different"
16934         [ $(stat -c%s $dom) == $size_tmp ] ||
16935                 error "bad size after write: $(stat -c%s $dom) != $size_tmp"
16936         if [ $space_check == 1 ]; then
16937                 local mdtfree2=$(do_facet $facet \
16938                                  lctl get_param -n osd*.*$mdtname.kbytesfree)
16939
16940                 # increase in usage from by $size_tmp
16941                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_tmp / 1024)) ] ||
16942                         error "MDT free space wrong after write: " \
16943                               "$mdtfree1 >= $mdtfree2 + $size_tmp/1024"
16944         fi
16945
16946         # truncate
16947         local size_dom=10000
16948
16949         $TRUNCATE $dom $size_dom
16950         [ $(stat -c%s $dom) == $size_dom ] ||
16951                 error "bad size after truncate: $(stat -c%s $dom) != $size_dom"
16952         if [ $space_check == 1 ]; then
16953                 mdtfree1=$(do_facet $facet \
16954                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16955                 # decrease in usage from $size_tmp to new $size_dom
16956                 [ $(($mdtfree1 - $mdtfree2)) -ge \
16957                   $(((size_tmp - size_dom) / 1024)) ] ||
16958                         error "MDT free space is wrong after truncate: " \
16959                               "$mdtfree1 >= $mdtfree2 + ($size_tmp - $size_dom) / 1024"
16960         fi
16961
16962         # append
16963         cat $tmp >> $dom
16964         sync
16965         size_dom=$((size_dom + size_tmp))
16966         [ $(stat -c%s $dom) == $size_dom ] ||
16967                 error "bad size after append: $(stat -c%s $dom) != $size_dom"
16968         if [ $space_check == 1 ]; then
16969                 mdtfree2=$(do_facet $facet \
16970                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16971                 # increase in usage by $size_tmp from previous
16972                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_tmp / 1024)) ] ||
16973                         error "MDT free space is wrong after append: " \
16974                               "$mdtfree1 >= $mdtfree2 + $size_tmp/1024"
16975         fi
16976
16977         # delete
16978         rm $dom
16979         if [ $space_check == 1 ]; then
16980                 mdtfree1=$(do_facet $facet \
16981                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16982                 # decrease in usage by $size_dom from previous
16983                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_dom / 1024)) ] ||
16984                         error "MDT free space is wrong after removal: " \
16985                               "$mdtfree1 >= $mdtfree2 + $size_dom/1024"
16986         fi
16987
16988         # combined striping
16989         $LFS setstripe -E 1024K -L mdt -E EOF $dom ||
16990                 error "Can't create DoM + OST striping"
16991
16992         size_tmp=2031616 # must be a multiple of PAGE_SIZE=65536 on ARM
16993         dd if=/dev/urandom of=$tmp bs=1024 count=$((size_tmp / 1024))
16994         # check also direct IO along write
16995         dd if=$tmp of=$dom bs=65536 count=$((size_tmp / 65536)) oflag=direct
16996         sync
16997         cmp $tmp $dom || error "file data is different"
16998         [ $(stat -c%s $dom) == $size_tmp ] ||
16999                 error "bad size after write: $(stat -c%s $dom) != $size_tmp"
17000         rm $dom $tmp
17001
17002         return 0
17003 }
17004 run_test 270a "DoM: basic functionality tests"
17005
17006 test_270b() {
17007         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17008                 skip "Need MDS version at least 2.10.55"
17009
17010         local dom=$DIR/$tdir/dom_file
17011         local max_size=1048576
17012
17013         mkdir -p $DIR/$tdir
17014         $LFS setstripe -E $max_size -L mdt $dom
17015
17016         # truncate over the limit
17017         $TRUNCATE $dom $(($max_size + 1)) &&
17018                 error "successful truncate over the maximum size"
17019         # write over the limit
17020         dd if=/dev/zero of=$dom bs=$max_size seek=1 count=1 &&
17021                 error "successful write over the maximum size"
17022         # append over the limit
17023         dd if=/dev/zero of=$dom bs=$(($max_size - 3)) count=1
17024         echo "12345" >> $dom && error "successful append over the maximum size"
17025         rm $dom
17026
17027         return 0
17028 }
17029 run_test 270b "DoM: maximum size overflow checks for DoM-only file"
17030
17031 test_270c() {
17032         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17033                 skip "Need MDS version at least 2.10.55"
17034
17035         mkdir -p $DIR/$tdir
17036         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17037
17038         # check files inherit DoM EA
17039         touch $DIR/$tdir/first
17040         [ $($LFS getstripe -L $DIR/$tdir/first) == "mdt" ] ||
17041                 error "bad pattern"
17042         [ $($LFS getstripe -c $DIR/$tdir/first) == 0 ] ||
17043                 error "bad stripe count"
17044         [ $($LFS getstripe -S $DIR/$tdir/first) == 1048576 ] ||
17045                 error "bad stripe size"
17046
17047         # check directory inherits DoM EA and uses it as default
17048         mkdir $DIR/$tdir/subdir
17049         touch $DIR/$tdir/subdir/second
17050         [ $($LFS getstripe -L $DIR/$tdir/subdir/second) == "mdt" ] ||
17051                 error "bad pattern in sub-directory"
17052         [ $($LFS getstripe -c $DIR/$tdir/subdir/second) == 0 ] ||
17053                 error "bad stripe count in sub-directory"
17054         [ $($LFS getstripe -S $DIR/$tdir/subdir/second) == 1048576 ] ||
17055                 error "bad stripe size in sub-directory"
17056         return 0
17057 }
17058 run_test 270c "DoM: DoM EA inheritance tests"
17059
17060 test_270d() {
17061         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17062                 skip "Need MDS version at least 2.10.55"
17063
17064         mkdir -p $DIR/$tdir
17065         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17066
17067         # inherit default DoM striping
17068         mkdir $DIR/$tdir/subdir
17069         touch $DIR/$tdir/subdir/f1
17070
17071         # change default directory striping
17072         $LFS setstripe -c 1 $DIR/$tdir/subdir
17073         touch $DIR/$tdir/subdir/f2
17074         [ $($LFS getstripe -c $DIR/$tdir/subdir/f2) == 1 ] ||
17075                 error "wrong default striping in file 2"
17076         [ $($LFS getstripe -L $DIR/$tdir/subdir/f2) == "raid0" ] ||
17077                 error "bad pattern in file 2"
17078         return 0
17079 }
17080 run_test 270d "DoM: change striping from DoM to RAID0"
17081
17082 test_270e() {
17083         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17084                 skip "Need MDS version at least 2.10.55"
17085
17086         mkdir -p $DIR/$tdir/dom
17087         mkdir -p $DIR/$tdir/norm
17088         DOMFILES=20
17089         NORMFILES=10
17090         $LFS setstripe -E 1M -L mdt $DIR/$tdir/dom
17091         $LFS setstripe -i 0 -S 2M $DIR/$tdir/norm
17092
17093         createmany -o $DIR/$tdir/dom/dom- $DOMFILES
17094         createmany -o $DIR/$tdir/norm/norm- $NORMFILES
17095
17096         # find DoM files by layout
17097         NUM=$($LFS find -L mdt -type f $DIR/$tdir 2>/dev/null | wc -l)
17098         [ $NUM -eq  $DOMFILES ] ||
17099                 error "lfs find -L: found $NUM, expected $DOMFILES"
17100         echo "Test 1: lfs find 20 DOM files by layout: OK"
17101
17102         # there should be 1 dir with default DOM striping
17103         NUM=$($LFS find -L mdt -type d $DIR/$tdir 2>/dev/null | wc -l)
17104         [ $NUM -eq  1 ] ||
17105                 error "lfs find -L: found $NUM, expected 1 dir"
17106         echo "Test 2: lfs find 1 DOM dir by layout: OK"
17107
17108         # find DoM files by stripe size
17109         NUM=$($LFS find -S -1200K -type f $DIR/$tdir 2>/dev/null | wc -l)
17110         [ $NUM -eq  $DOMFILES ] ||
17111                 error "lfs find -S: found $NUM, expected $DOMFILES"
17112         echo "Test 4: lfs find 20 DOM files by stripe size: OK"
17113
17114         # find files by stripe offset except DoM files
17115         NUM=$($LFS find -i 0 -type f $DIR/$tdir 2>/dev/null | wc -l)
17116         [ $NUM -eq  $NORMFILES ] ||
17117                 error "lfs find -i: found $NUM, expected $NORMFILES"
17118         echo "Test 5: lfs find no DOM files by stripe index: OK"
17119         return 0
17120 }
17121 run_test 270e "DoM: lfs find with DoM files test"
17122
17123 test_270f() {
17124         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17125                 skip "Need MDS version at least 2.10.55"
17126
17127         local mdtname=${FSNAME}-MDT0000-mdtlov
17128         local dom=$DIR/$tdir/dom_file
17129         local dom_limit_saved=$(do_facet mds1 $LCTL get_param -n \
17130                                                 lod.$mdtname.dom_stripesize)
17131         local dom_limit=131072
17132
17133         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=$dom_limit
17134         local dom_current=$(do_facet mds1 $LCTL get_param -n \
17135                                                 lod.$mdtname.dom_stripesize)
17136         [ ${dom_limit} -eq ${dom_current} ] ||
17137                 error "Cannot change per-MDT DoM stripe limit to $dom_limit"
17138
17139         $LFS mkdir -i 0 -c 1 $DIR/$tdir
17140         $LFS setstripe -d $DIR/$tdir
17141         $LFS setstripe -E $dom_limit -L mdt $DIR/$tdir ||
17142                 error "Can't set directory default striping"
17143
17144         # exceed maximum stripe size
17145         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
17146                 error "Can't create file with $((dom_limit * 2)) DoM stripe"
17147         [ $($LFS getstripe -S $dom) -eq $((dom_limit * 2)) ] &&
17148                 error "Able to create DoM component size more than LOD limit"
17149
17150         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=0
17151         dom_current=$(do_facet mds1 $LCTL get_param -n \
17152                                                 lod.$mdtname.dom_stripesize)
17153         [ 0 -eq ${dom_current} ] ||
17154                 error "Can't set zero DoM stripe limit"
17155         rm $dom
17156
17157         # attempt to create DoM file on server with disabled DoM should
17158         # remove DoM entry from layout and be succeed
17159         $LFS setstripe -E $dom_limit -L mdt -E -1 $dom ||
17160                 error "Can't create DoM file (DoM is disabled)"
17161         [ $($LFS getstripe -L $dom) == "mdt" ] &&
17162                 error "File has DoM component while DoM is disabled"
17163         rm $dom
17164
17165         # attempt to create DoM file with only DoM stripe should return error
17166         $LFS setstripe -E $dom_limit -L mdt $dom &&
17167                 error "Able to create DoM-only file while DoM is disabled"
17168
17169         # too low values to be aligned with smallest stripe size 64K
17170         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=30000
17171         dom_current=$(do_facet mds1 $LCTL get_param -n \
17172                                                 lod.$mdtname.dom_stripesize)
17173         [ 30000 -eq ${dom_current} ] &&
17174                 error "Can set too small DoM stripe limit"
17175
17176         # 64K is a minimal stripe size in Lustre, expect limit of that size
17177         [ 65536 -eq ${dom_current} ] ||
17178                 error "Limit is not set to 64K but ${dom_current}"
17179
17180         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=2147483648
17181         dom_current=$(do_facet mds1 $LCTL get_param -n \
17182                                                 lod.$mdtname.dom_stripesize)
17183         echo $dom_current
17184         [ 2147483648 -eq ${dom_current} ] &&
17185                 error "Can set too large DoM stripe limit"
17186
17187         do_facet mds1 $LCTL set_param -n \
17188                                 lod.$mdtname.dom_stripesize=$((dom_limit * 2))
17189         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
17190                 error "Can't create DoM component size after limit change"
17191         do_facet mds1 $LCTL set_param -n \
17192                                 lod.$mdtname.dom_stripesize=$((dom_limit / 2))
17193         $LFS setstripe -E $dom_limit -L mdt ${dom}_big ||
17194                 error "Can't create DoM file after limit decrease"
17195         [ $($LFS getstripe -S ${dom}_big) -eq $((dom_limit / 2)) ] ||
17196                 error "Can create big DoM component after limit decrease"
17197         touch ${dom}_def ||
17198                 error "Can't create file with old default layout"
17199
17200         do_facet mds1 $LCTL set_param -n lod.*.dom_stripesize=$dom_limit_saved
17201         return 0
17202 }
17203 run_test 270f "DoM: maximum DoM stripe size checks"
17204
17205 test_271a() {
17206         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17207                 skip "Need MDS version at least 2.10.55"
17208
17209         local dom=$DIR/$tdir/dom
17210
17211         mkdir -p $DIR/$tdir
17212
17213         $LFS setstripe -E 1024K -L mdt $dom
17214
17215         lctl set_param -n mdc.*.stats=clear
17216         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
17217         cat $dom > /dev/null
17218         local reads=$(lctl get_param -n mdc.*.stats | grep -c ost_read)
17219         [ $reads -eq 0 ] || error "Unexpected $reads READ RPCs"
17220         ls $dom
17221         rm -f $dom
17222 }
17223 run_test 271a "DoM: data is cached for read after write"
17224
17225 test_271b() {
17226         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17227                 skip "Need MDS version at least 2.10.55"
17228
17229         local dom=$DIR/$tdir/dom
17230
17231         mkdir -p $DIR/$tdir
17232
17233         $LFS setstripe -E 1024K -L mdt -E EOF $dom
17234
17235         lctl set_param -n mdc.*.stats=clear
17236         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
17237         cancel_lru_locks mdc
17238         $CHECKSTAT -t file -s 4096 $dom || error "stat #1 fails"
17239         # second stat to check size is cached on client
17240         $CHECKSTAT -t file -s 4096 $dom || error "stat #2 fails"
17241         local gls=$(lctl get_param -n mdc.*.stats | grep -c ldlm_glimpse)
17242         [ $gls -eq 0 ] || error "Unexpected $gls glimpse RPCs"
17243         rm -f $dom
17244 }
17245 run_test 271b "DoM: no glimpse RPC for stat (DoM only file)"
17246
17247 test_271ba() {
17248         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17249                 skip "Need MDS version at least 2.10.55"
17250
17251         local dom=$DIR/$tdir/dom
17252
17253         mkdir -p $DIR/$tdir
17254
17255         $LFS setstripe -E 1024K -L mdt -E EOF $dom
17256
17257         lctl set_param -n mdc.*.stats=clear
17258         lctl set_param -n osc.*.stats=clear
17259         dd if=/dev/zero of=$dom bs=2048K count=1 || return 1
17260         cancel_lru_locks mdc
17261         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
17262         # second stat to check size is cached on client
17263         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
17264         local gls=$(lctl get_param -n mdc.*.stats | grep -c ldlm_glimpse)
17265         [ $gls == 0 ] || error "Unexpected $gls glimpse RPCs"
17266         local gls=$(lctl get_param -n osc.*.stats | grep -c ldlm_glimpse)
17267         [ $gls == 0 ] || error "Unexpected $gls OSC glimpse RPCs"
17268         rm -f $dom
17269 }
17270 run_test 271ba "DoM: no glimpse RPC for stat (combined file)"
17271
17272
17273 get_mdc_stats() {
17274         local mdtidx=$1
17275         local param=$2
17276         local mdt=MDT$(printf %04x $mdtidx)
17277
17278         if [ -z $param ]; then
17279                 lctl get_param -n mdc.*$mdt*.stats
17280         else
17281                 lctl get_param -n mdc.*$mdt*.stats | awk "/$param/"'{print $2}'
17282         fi
17283 }
17284
17285 test_271c() {
17286         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17287                 skip "Need MDS version at least 2.10.55"
17288
17289         local dom=$DIR/$tdir/dom
17290
17291         mkdir -p $DIR/$tdir
17292
17293         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17294
17295         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
17296         local facet=mds$((mdtidx + 1))
17297
17298         cancel_lru_locks mdc
17299         do_facet $facet lctl set_param -n mdt.*.dom_lock=0
17300         createmany -o $dom 1000
17301         lctl set_param -n mdc.*.stats=clear
17302         smalliomany -w $dom 1000 200
17303         get_mdc_stats $mdtidx
17304         local enq=$(get_mdc_stats $mdtidx ldlm_ibits_enqueue)
17305         # Each file has 1 open, 1 IO enqueues, total 2000
17306         # but now we have also +1 getxattr for security.capability, total 3000
17307         [ $enq -ge 2000 ] || error "Too few enqueues $enq, expected > 2000"
17308         unlinkmany $dom 1000
17309
17310         cancel_lru_locks mdc
17311         do_facet $facet lctl set_param -n mdt.*.dom_lock=1
17312         createmany -o $dom 1000
17313         lctl set_param -n mdc.*.stats=clear
17314         smalliomany -w $dom 1000 200
17315         local enq_2=$(get_mdc_stats $mdtidx ldlm_ibits_enqueue)
17316         # Expect to see reduced amount of RPCs by 1000 due to single enqueue
17317         # for OPEN and IO lock.
17318         [ $((enq - enq_2)) -ge 1000 ] ||
17319                 error "Too many enqueues $enq_2, expected about $((enq - 1000))"
17320         unlinkmany $dom 1000
17321         return 0
17322 }
17323 run_test 271c "DoM: IO lock at open saves enqueue RPCs"
17324
17325 cleanup_271def_tests() {
17326         trap 0
17327         rm -f $1
17328 }
17329
17330 test_271d() {
17331         [ $MDS1_VERSION -lt $(version_code 2.10.57) ] &&
17332                 skip "Need MDS version at least 2.10.57"
17333
17334         local dom=$DIR/$tdir/dom
17335         local tmp=$TMP/$tfile
17336         trap "cleanup_271def_tests $tmp" EXIT
17337
17338         mkdir -p $DIR/$tdir
17339
17340         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17341
17342         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
17343
17344         cancel_lru_locks mdc
17345         dd if=/dev/urandom of=$tmp bs=1000 count=1
17346         dd if=$tmp of=$dom bs=1000 count=1
17347         cancel_lru_locks mdc
17348
17349         cat /etc/hosts >> $tmp
17350         lctl set_param -n mdc.*.stats=clear
17351
17352         # append data to the same file it should update local page
17353         echo "Append to the same page"
17354         cat /etc/hosts >> $dom
17355         local num=$(get_mdc_stats $mdtidx ost_read)
17356         local ra=$(get_mdc_stats $mdtidx req_active)
17357         local rw=$(get_mdc_stats $mdtidx req_waittime)
17358
17359         [ -z $num ] || error "$num READ RPC occured"
17360         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17361         echo "... DONE"
17362
17363         # compare content
17364         cmp $tmp $dom || error "file miscompare"
17365
17366         cancel_lru_locks mdc
17367         lctl set_param -n mdc.*.stats=clear
17368
17369         echo "Open and read file"
17370         cat $dom > /dev/null
17371         local num=$(get_mdc_stats $mdtidx ost_read)
17372         local ra=$(get_mdc_stats $mdtidx req_active)
17373         local rw=$(get_mdc_stats $mdtidx req_waittime)
17374
17375         [ -z $num ] || error "$num READ RPC occured"
17376         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17377         echo "... DONE"
17378
17379         # compare content
17380         cmp $tmp $dom || error "file miscompare"
17381
17382         return 0
17383 }
17384 run_test 271d "DoM: read on open (1K file in reply buffer)"
17385
17386 test_271e() {
17387         [ $MDS1_VERSION -lt $(version_code 2.10.57) ] &&
17388                 skip "Need MDS version at least 2.10.57"
17389
17390         local dom=$DIR/$tdir/dom
17391         local tmp=$TMP/${tfile}.data
17392         trap "cleanup_271def_tests $tmp" EXIT
17393
17394         mkdir -p $DIR/$tdir
17395
17396         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17397
17398         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
17399
17400         cancel_lru_locks mdc
17401         dd if=/dev/urandom of=$tmp bs=30K count=1
17402         dd if=$tmp of=$dom bs=30K count=1
17403         cancel_lru_locks mdc
17404         cat /etc/hosts >> $tmp
17405         lctl set_param -n mdc.*.stats=clear
17406
17407         echo "Append to the same page"
17408         cat /etc/hosts >> $dom
17409
17410         local num=$(get_mdc_stats $mdtidx ost_read)
17411         local ra=$(get_mdc_stats $mdtidx req_active)
17412         local rw=$(get_mdc_stats $mdtidx req_waittime)
17413
17414         [ -z $num ] || error "$num READ RPC occured"
17415         # Reply buffer can be adjusted for larger buffer by resend
17416         echo "... DONE with $((ra - rw)) resends"
17417
17418         # compare content
17419         cmp $tmp $dom || error "file miscompare"
17420
17421         cancel_lru_locks mdc
17422         lctl set_param -n mdc.*.stats=clear
17423
17424         echo "Open and read file"
17425         cat $dom > /dev/null
17426         local num=$(get_mdc_stats $mdtidx ost_read)
17427         local ra=$(get_mdc_stats $mdtidx req_active)
17428         local rw=$(get_mdc_stats $mdtidx req_waittime)
17429
17430         [ -z $num ] || error "$num READ RPC occured"
17431         # Reply buffer can be adjusted for larger buffer by resend
17432         echo "... DONE with $((ra - rw)) resends"
17433
17434         # compare content
17435         cmp $tmp $dom || error "file miscompare"
17436
17437         return 0
17438 }
17439 run_test 271e "DoM: read on open (30K file with reply buffer adjusting)"
17440
17441 test_271f() {
17442         [ $MDS1_VERSION -lt $(version_code 2.10.57) ] &&
17443                 skip "Need MDS version at least 2.10.57"
17444
17445         local dom=$DIR/$tdir/dom
17446         local tmp=$TMP/$tfile
17447         trap "cleanup_271def_tests $tmp" EXIT
17448
17449         mkdir -p $DIR/$tdir
17450
17451         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17452
17453         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
17454
17455         cancel_lru_locks mdc
17456         dd if=/dev/urandom of=$tmp bs=200000 count=1
17457         dd if=$tmp of=$dom bs=200000 count=1
17458         cancel_lru_locks mdc
17459         cat /etc/hosts >> $tmp
17460         lctl set_param -n mdc.*.stats=clear
17461
17462         echo "Append to the same page"
17463         cat /etc/hosts >> $dom
17464         local num=$(get_mdc_stats $mdtidx ost_read)
17465         local ra=$(get_mdc_stats $mdtidx req_active)
17466         local rw=$(get_mdc_stats $mdtidx req_waittime)
17467
17468         [ -z $num ] || error "$num READ RPC occured"
17469         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17470         echo "... DONE"
17471
17472         # compare content
17473         cmp $tmp $dom || error "file miscompare"
17474
17475         cancel_lru_locks mdc
17476         lctl set_param -n mdc.*.stats=clear
17477
17478         echo "Open and read file"
17479         cat $dom > /dev/null
17480         local num=$(get_mdc_stats $mdtidx ost_read)
17481         local ra=$(get_mdc_stats $mdtidx req_active)
17482         local rw=$(get_mdc_stats $mdtidx req_waittime)
17483
17484         [ $num -eq 1 ] || error "expect 1 READ RPC, $num occured"
17485         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17486         echo "... DONE"
17487
17488         # compare content
17489         cmp $tmp $dom || error "file miscompare"
17490
17491         return 0
17492 }
17493 run_test 271f "DoM: read on open (200K file and read tail)"
17494
17495 test_272a() {
17496         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
17497                 skip "Need MDS version at least 2.11.50"
17498
17499         local dom=$DIR/$tdir/dom
17500         mkdir -p $DIR/$tdir
17501
17502         $LFS setstripe -E 256K -L mdt -E -1 -c1 $dom
17503         dd if=/dev/urandom of=$dom bs=512K count=1 ||
17504                 error "failed to write data into $dom"
17505         local old_md5=$(md5sum $dom)
17506
17507         $LFS migrate -E 256K -L mdt -E -1 -c2 $dom ||
17508                 error "failed to migrate to the same DoM component"
17509
17510         local new_md5=$(md5sum $dom)
17511
17512         [ "$old_md5" == "$new_md5" ] ||
17513                 error "md5sum differ: $old_md5, $new_md5"
17514
17515         [ $($LFS getstripe -c $dom) -eq 2 ] ||
17516                 error "migrate stripe count bad: $(LFS getstripe -c $dom) != 2"
17517 }
17518 run_test 272a "DoM migration: new layout with the same DOM component"
17519
17520 test_272b() {
17521         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
17522                 skip "Need MDS version at least 2.11.50"
17523
17524         local dom=$DIR/$tdir/dom
17525         mkdir -p $DIR/$tdir
17526         $LFS setstripe -E 1M -L mdt -E -1 -c1 $dom
17527
17528         local mdtidx=$($LFS getstripe -m $dom)
17529         local mdtname=MDT$(printf %04x $mdtidx)
17530         local facet=mds$((mdtidx + 1))
17531
17532         local mdtfree1=$(do_facet $facet \
17533                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17534         dd if=/dev/urandom of=$dom bs=2M count=1 ||
17535                 error "failed to write data into $dom"
17536         local old_md5=$(md5sum $dom)
17537         cancel_lru_locks mdc
17538         local mdtfree1=$(do_facet $facet \
17539                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17540
17541         $LFS migrate -c2 $dom ||
17542                 error "failed to migrate to the new composite layout"
17543         [ $($LFS getstripe -L $dom) == 'mdt' ] &&
17544                 error "MDT stripe was not removed"
17545
17546         cancel_lru_locks mdc
17547         local new_md5=$(md5sum $dom)
17548         [ "$old_md5" != "$new_md5" ] &&
17549                 error "$old_md5 != $new_md5"
17550
17551         # Skip free space checks with ZFS
17552         if [ "$(facet_fstype $facet)" != "zfs" ]; then
17553                 local mdtfree2=$(do_facet $facet \
17554                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17555                 [ $mdtfree2 -gt $mdtfree1 ] ||
17556                         error "MDT space is not freed after migration"
17557         fi
17558         return 0
17559 }
17560 run_test 272b "DoM migration: DOM file to the OST-striped file (plain)"
17561
17562 test_272c() {
17563         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
17564                 skip "Need MDS version at least 2.11.50"
17565
17566         local dom=$DIR/$tdir/$tfile
17567         mkdir -p $DIR/$tdir
17568         $LFS setstripe -E 1M -L mdt -E -1 -c1 $dom
17569
17570         local mdtidx=$($LFS getstripe -m $dom)
17571         local mdtname=MDT$(printf %04x $mdtidx)
17572         local facet=mds$((mdtidx + 1))
17573
17574         dd if=/dev/urandom of=$dom bs=2M count=1 oflag=direct ||
17575                 error "failed to write data into $dom"
17576         local old_md5=$(md5sum $dom)
17577         cancel_lru_locks mdc
17578         local mdtfree1=$(do_facet $facet \
17579                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17580
17581         $LFS migrate -E 2M -c1 -E -1 -c2 $dom ||
17582                 error "failed to migrate to the new composite layout"
17583         [ $($LFS getstripe -L $dom) == 'mdt' ] &&
17584                 error "MDT stripe was not removed"
17585
17586         cancel_lru_locks mdc
17587         local new_md5=$(md5sum $dom)
17588         [ "$old_md5" != "$new_md5" ] &&
17589                 error "$old_md5 != $new_md5"
17590
17591         # Skip free space checks with ZFS
17592         if [ "$(facet_fstype $facet)" != "zfs" ]; then
17593                 local mdtfree2=$(do_facet $facet \
17594                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17595                 [ $mdtfree2 -gt $mdtfree1 ] ||
17596                         error "MDS space is not freed after migration"
17597         fi
17598         return 0
17599 }
17600 run_test 272c "DoM migration: DOM file to the OST-striped file (composite)"
17601
17602 test_273a() {
17603         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
17604                 skip "Need MDS version at least 2.11.50"
17605
17606         # Layout swap cannot be done if either file has DOM component,
17607         # this will never be supported, migration should be used instead
17608
17609         local dom=$DIR/$tdir/$tfile
17610         mkdir -p $DIR/$tdir
17611
17612         $LFS setstripe -c2 ${dom}_plain
17613         $LFS setstripe -E 1M -L mdt -E -1 -c2 ${dom}_dom
17614         $LFS swap_layouts ${dom}_plain ${dom}_dom &&
17615                 error "can swap layout with DoM component"
17616         $LFS swap_layouts ${dom}_dom ${dom}_plain &&
17617                 error "can swap layout with DoM component"
17618
17619         $LFS setstripe -E 1M -c1 -E -1 -c2 ${dom}_comp
17620         $LFS swap_layouts ${dom}_comp ${dom}_dom &&
17621                 error "can swap layout with DoM component"
17622         $LFS swap_layouts ${dom}_dom ${dom}_comp &&
17623                 error "can swap layout with DoM component"
17624         return 0
17625 }
17626 run_test 273a "DoM: layout swapping should fail with DOM"
17627
17628 test_275() {
17629         remote_ost_nodsh && skip "remote OST with nodsh"
17630         [ $OST1_VERSION -lt $(version_code 2.10.57) ] &&
17631                 skip "Need OST version >= 2.10.57"
17632
17633         local file=$DIR/$tfile
17634         local oss
17635
17636         oss=$(comma_list $(osts_nodes))
17637
17638         dd if=/dev/urandom of=$file bs=1M count=2 ||
17639                 error "failed to create a file"
17640         cancel_lru_locks osc
17641
17642         #lock 1
17643         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
17644                 error "failed to read a file"
17645
17646 #define OBD_FAIL_LDLM_PAUSE_CANCEL2      0x31f
17647         $LCTL set_param fail_loc=0x8000031f
17648
17649         cancel_lru_locks osc &
17650         sleep 1
17651
17652 #define OBD_FAIL_LDLM_PROLONG_PAUSE      0x32b
17653         do_nodes $oss $LCTL set_param fail_loc=0x8000032b
17654         #IO takes another lock, but matches the PENDING one
17655         #and places it to the IO RPC
17656         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
17657                 error "failed to read a file with PENDING lock"
17658 }
17659 run_test 275 "Read on a canceled duplicate lock"
17660
17661 test_276() {
17662         remote_ost_nodsh && skip "remote OST with nodsh"
17663         local pid
17664
17665         do_facet ost1 "(while true; do \
17666                 $LCTL get_param obdfilter.*.filesfree > /dev/null 2>&1; \
17667                 done) & pid=\\\$!; echo \\\$pid > $TMP/sanity_276_pid" &
17668         pid=$!
17669
17670         for LOOP in $(seq 20); do
17671                 stop ost1
17672                 start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
17673         done
17674         kill -9 $pid
17675         do_facet ost1 "pid=\\\$(cat $TMP/sanity_276_pid); kill -9 \\\$pid; \
17676                 rm $TMP/sanity_276_pid"
17677 }
17678 run_test 276 "Race between mount and obd_statfs"
17679
17680 cleanup_test_300() {
17681         trap 0
17682         umask $SAVE_UMASK
17683 }
17684 test_striped_dir() {
17685         local mdt_index=$1
17686         local stripe_count
17687         local stripe_index
17688
17689         mkdir -p $DIR/$tdir
17690
17691         SAVE_UMASK=$(umask)
17692         trap cleanup_test_300 RETURN EXIT
17693
17694         $LFS setdirstripe -i $mdt_index -c 2 -H all_char -o 755 \
17695                                                 $DIR/$tdir/striped_dir ||
17696                 error "set striped dir error"
17697
17698         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
17699         [ "$mode" = "755" ] || error "expect 755 got $mode"
17700
17701         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
17702                 error "getdirstripe failed"
17703         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
17704         if [ "$stripe_count" != "2" ]; then
17705                 error "1:stripe_count is $stripe_count, expect 2"
17706         fi
17707         stripe_count=$($LFS getdirstripe -T $DIR/$tdir/striped_dir)
17708         if [ "$stripe_count" != "2" ]; then
17709                 error "2:stripe_count is $stripe_count, expect 2"
17710         fi
17711
17712         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
17713         if [ "$stripe_index" != "$mdt_index" ]; then
17714                 error "stripe_index is $stripe_index, expect $mdt_index"
17715         fi
17716
17717         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
17718                 error "nlink error after create striped dir"
17719
17720         mkdir $DIR/$tdir/striped_dir/a
17721         mkdir $DIR/$tdir/striped_dir/b
17722
17723         stat $DIR/$tdir/striped_dir/a ||
17724                 error "create dir under striped dir failed"
17725         stat $DIR/$tdir/striped_dir/b ||
17726                 error "create dir under striped dir failed"
17727
17728         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
17729                 error "nlink error after mkdir"
17730
17731         rmdir $DIR/$tdir/striped_dir/a
17732         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
17733                 error "nlink error after rmdir"
17734
17735         rmdir $DIR/$tdir/striped_dir/b
17736         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
17737                 error "nlink error after rmdir"
17738
17739         chattr +i $DIR/$tdir/striped_dir
17740         createmany -o $DIR/$tdir/striped_dir/f 10 &&
17741                 error "immutable flags not working under striped dir!"
17742         chattr -i $DIR/$tdir/striped_dir
17743
17744         rmdir $DIR/$tdir/striped_dir ||
17745                 error "rmdir striped dir error"
17746
17747         cleanup_test_300
17748
17749         true
17750 }
17751
17752 test_300a() {
17753         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
17754                 skip "skipped for lustre < 2.7.0"
17755         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17756         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17757
17758         test_striped_dir 0 || error "failed on striped dir on MDT0"
17759         test_striped_dir 1 || error "failed on striped dir on MDT0"
17760 }
17761 run_test 300a "basic striped dir sanity test"
17762
17763 test_300b() {
17764         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
17765                 skip "skipped for lustre < 2.7.0"
17766         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17767         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17768
17769         local i
17770         local mtime1
17771         local mtime2
17772         local mtime3
17773
17774         test_mkdir $DIR/$tdir || error "mkdir fail"
17775         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17776                 error "set striped dir error"
17777         for i in {0..9}; do
17778                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
17779                 sleep 1
17780                 touch $DIR/$tdir/striped_dir/file_$i || error "touch error $i"
17781                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
17782                 [ $mtime1 -eq $mtime2 ] && error "mtime unchanged after create"
17783                 sleep 1
17784                 rm -f $DIR/$tdir/striped_dir/file_$i || error "unlink error $i"
17785                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
17786                 [ $mtime2 -eq $mtime3 ] && error "mtime unchanged after unlink"
17787         done
17788         true
17789 }
17790 run_test 300b "check ctime/mtime for striped dir"
17791
17792 test_300c() {
17793         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
17794                 skip "skipped for lustre < 2.7.0"
17795         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17796         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17797
17798         local file_count
17799
17800         mkdir -p $DIR/$tdir
17801         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
17802                 error "set striped dir error"
17803
17804         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
17805                 error "chown striped dir failed"
17806
17807         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
17808                 error "create 5k files failed"
17809
17810         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
17811
17812         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
17813
17814         rm -rf $DIR/$tdir
17815 }
17816 run_test 300c "chown && check ls under striped directory"
17817
17818 test_300d() {
17819         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
17820                 skip "skipped for lustre < 2.7.0"
17821         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17822         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17823
17824         local stripe_count
17825         local file
17826
17827         mkdir -p $DIR/$tdir
17828         $LFS setstripe -c 2 $DIR/$tdir
17829
17830         #local striped directory
17831         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17832                 error "set striped dir error"
17833         createmany -o $DIR/$tdir/striped_dir/f 10 ||
17834                 error "create 10 files failed"
17835
17836         #remote striped directory
17837         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
17838                 error "set striped dir error"
17839         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
17840                 error "create 10 files failed"
17841
17842         for file in $(find $DIR/$tdir); do
17843                 stripe_count=$($LFS getstripe -c $file)
17844                 [ $stripe_count -eq 2 ] ||
17845                         error "wrong stripe $stripe_count for $file"
17846         done
17847
17848         rm -rf $DIR/$tdir
17849 }
17850 run_test 300d "check default stripe under striped directory"
17851
17852 test_300e() {
17853         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
17854                 skip "Need MDS version at least 2.7.55"
17855         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17856         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17857
17858         local stripe_count
17859         local file
17860
17861         mkdir -p $DIR/$tdir
17862
17863         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17864                 error "set striped dir error"
17865
17866         touch $DIR/$tdir/striped_dir/a
17867         touch $DIR/$tdir/striped_dir/b
17868         touch $DIR/$tdir/striped_dir/c
17869
17870         mkdir $DIR/$tdir/striped_dir/dir_a
17871         mkdir $DIR/$tdir/striped_dir/dir_b
17872         mkdir $DIR/$tdir/striped_dir/dir_c
17873
17874         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_a ||
17875                 error "set striped adir under striped dir error"
17876
17877         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_b ||
17878                 error "set striped bdir under striped dir error"
17879
17880         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_c ||
17881                 error "set striped cdir under striped dir error"
17882
17883         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
17884                 error "rename dir under striped dir fails"
17885
17886         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
17887                 error "rename dir under different stripes fails"
17888
17889         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
17890                 error "rename file under striped dir should succeed"
17891
17892         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
17893                 error "rename dir under striped dir should succeed"
17894
17895         rm -rf $DIR/$tdir
17896 }
17897 run_test 300e "check rename under striped directory"
17898
17899 test_300f() {
17900         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17901         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17902         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
17903                 skip "Need MDS version at least 2.7.55"
17904
17905         local stripe_count
17906         local file
17907
17908         rm -rf $DIR/$tdir
17909         mkdir -p $DIR/$tdir
17910
17911         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17912                 error "set striped dir error"
17913
17914         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir1 ||
17915                 error "set striped dir error"
17916
17917         touch $DIR/$tdir/striped_dir/a
17918         mkdir $DIR/$tdir/striped_dir/dir_a
17919         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
17920                 error "create striped dir under striped dir fails"
17921
17922         touch $DIR/$tdir/striped_dir1/b
17923         mkdir $DIR/$tdir/striped_dir1/dir_b
17924         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
17925                 error "create striped dir under striped dir fails"
17926
17927         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
17928                 error "rename dir under different striped dir should fail"
17929
17930         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
17931                 error "rename striped dir under diff striped dir should fail"
17932
17933         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
17934                 error "rename file under diff striped dirs fails"
17935
17936         rm -rf $DIR/$tdir
17937 }
17938 run_test 300f "check rename cross striped directory"
17939
17940 test_300_check_default_striped_dir()
17941 {
17942         local dirname=$1
17943         local default_count=$2
17944         local default_index=$3
17945         local stripe_count
17946         local stripe_index
17947         local dir_stripe_index
17948         local dir
17949
17950         echo "checking $dirname $default_count $default_index"
17951         $LFS setdirstripe -D -c $default_count -i $default_index \
17952                                 -t all_char $DIR/$tdir/$dirname ||
17953                 error "set default stripe on striped dir error"
17954         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
17955         [ $stripe_count -eq $default_count ] ||
17956                 error "expect $default_count get $stripe_count for $dirname"
17957
17958         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
17959         [ $stripe_index -eq $default_index ] ||
17960                 error "expect $default_index get $stripe_index for $dirname"
17961
17962         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
17963                                                 error "create dirs failed"
17964
17965         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
17966         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
17967         for dir in $(find $DIR/$tdir/$dirname/*); do
17968                 stripe_count=$($LFS getdirstripe -c $dir)
17969                 [ $stripe_count -eq $default_count ] ||
17970                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
17971                 error "stripe count $default_count != $stripe_count for $dir"
17972
17973                 stripe_index=$($LFS getdirstripe -i $dir)
17974                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
17975                         error "$stripe_index != $default_index for $dir"
17976
17977                 #check default stripe
17978                 stripe_count=$($LFS getdirstripe -D -c $dir)
17979                 [ $stripe_count -eq $default_count ] ||
17980                 error "default count $default_count != $stripe_count for $dir"
17981
17982                 stripe_index=$($LFS getdirstripe -D -i $dir)
17983                 [ $stripe_index -eq $default_index ] ||
17984                 error "default index $default_index != $stripe_index for $dir"
17985         done
17986         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
17987 }
17988
17989 test_300g() {
17990         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17991         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
17992                 skip "Need MDS version at least 2.7.55"
17993
17994         local dir
17995         local stripe_count
17996         local stripe_index
17997
17998         mkdir $DIR/$tdir
17999         mkdir $DIR/$tdir/normal_dir
18000
18001         #Checking when client cache stripe index
18002         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
18003         $LFS setdirstripe -D -i1 $DIR/$tdir/striped_dir ||
18004                 error "create striped_dir failed"
18005
18006         $LFS setdirstripe -i0 $DIR/$tdir/striped_dir/dir0 ||
18007                 error "create dir0 fails"
18008         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir0)
18009         [ $stripe_index -eq 0 ] ||
18010                 error "dir0 expect index 0 got $stripe_index"
18011
18012         mkdir $DIR/$tdir/striped_dir/dir1 ||
18013                 error "create dir1 fails"
18014         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir1)
18015         [ $stripe_index -eq 1 ] ||
18016                 error "dir1 expect index 1 got $stripe_index"
18017
18018         #check default stripe count/stripe index
18019         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
18020         test_300_check_default_striped_dir normal_dir 1 0
18021         test_300_check_default_striped_dir normal_dir 2 1
18022         test_300_check_default_striped_dir normal_dir 2 -1
18023
18024         #delete default stripe information
18025         echo "delete default stripeEA"
18026         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
18027                 error "set default stripe on striped dir error"
18028
18029         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
18030         for dir in $(find $DIR/$tdir/normal_dir/*); do
18031                 stripe_count=$($LFS getdirstripe -c $dir)
18032                 [ $stripe_count -eq 0 ] ||
18033                         error "expect 1 get $stripe_count for $dir"
18034                 stripe_index=$($LFS getdirstripe -i $dir)
18035                 [ $stripe_index -eq 0 ] ||
18036                         error "expect 0 get $stripe_index for $dir"
18037         done
18038 }
18039 run_test 300g "check default striped directory for normal directory"
18040
18041 test_300h() {
18042         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18043         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18044                 skip "Need MDS version at least 2.7.55"
18045
18046         local dir
18047         local stripe_count
18048
18049         mkdir $DIR/$tdir
18050         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
18051                 error "set striped dir error"
18052
18053         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
18054         test_300_check_default_striped_dir striped_dir 1 0
18055         test_300_check_default_striped_dir striped_dir 2 1
18056         test_300_check_default_striped_dir striped_dir 2 -1
18057
18058         #delete default stripe information
18059         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
18060                 error "set default stripe on striped dir error"
18061
18062         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
18063         for dir in $(find $DIR/$tdir/striped_dir/*); do
18064                 stripe_count=$($LFS getdirstripe -c $dir)
18065                 [ $stripe_count -eq 0 ] ||
18066                         error "expect 1 get $stripe_count for $dir"
18067         done
18068 }
18069 run_test 300h "check default striped directory for striped directory"
18070
18071 test_300i() {
18072         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18073         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18074         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18075                 skip "Need MDS version at least 2.7.55"
18076
18077         local stripe_count
18078         local file
18079
18080         mkdir $DIR/$tdir
18081
18082         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
18083                 error "set striped dir error"
18084
18085         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
18086                 error "create files under striped dir failed"
18087
18088         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir ||
18089                 error "set striped hashdir error"
18090
18091         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir/d0 ||
18092                 error "create dir0 under hash dir failed"
18093         $LFS setdirstripe -i0 -c$MDSCOUNT -H fnv_1a_64 $DIR/$tdir/hashdir/d1 ||
18094                 error "create dir1 under hash dir failed"
18095
18096         # unfortunately, we need to umount to clear dir layout cache for now
18097         # once we fully implement dir layout, we can drop this
18098         umount_client $MOUNT || error "umount failed"
18099         mount_client $MOUNT || error "mount failed"
18100
18101         $LFS find -H fnv_1a_64 $DIR/$tdir/hashdir
18102         local dircnt=$($LFS find -H fnv_1a_64 $DIR/$tdir/hashdir | wc -l)
18103         [ $dircnt -eq 1 ] || error "lfs find striped dir got:$dircnt,except:1"
18104
18105         #set the stripe to be unknown hash type
18106         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
18107         $LCTL set_param fail_loc=0x1901
18108         for ((i = 0; i < 10; i++)); do
18109                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
18110                         error "stat f-$i failed"
18111                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
18112         done
18113
18114         touch $DIR/$tdir/striped_dir/f0 &&
18115                 error "create under striped dir with unknown hash should fail"
18116
18117         $LCTL set_param fail_loc=0
18118
18119         umount_client $MOUNT || error "umount failed"
18120         mount_client $MOUNT || error "mount failed"
18121
18122         return 0
18123 }
18124 run_test 300i "client handle unknown hash type striped directory"
18125
18126 test_300j() {
18127         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18128         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18129         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18130                 skip "Need MDS version at least 2.7.55"
18131
18132         local stripe_count
18133         local file
18134
18135         mkdir $DIR/$tdir
18136
18137         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
18138         $LCTL set_param fail_loc=0x1702
18139         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
18140                 error "set striped dir error"
18141
18142         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
18143                 error "create files under striped dir failed"
18144
18145         $LCTL set_param fail_loc=0
18146
18147         rm -rf $DIR/$tdir || error "unlink striped dir fails"
18148
18149         return 0
18150 }
18151 run_test 300j "test large update record"
18152
18153 test_300k() {
18154         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18155         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18156         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18157                 skip "Need MDS version at least 2.7.55"
18158
18159         # this test needs a huge transaction
18160         local kb
18161         kb=$(do_facet $SINGLEMDS lctl get_param -n osd*.lustre-MDT0000.kbytestotal)
18162         [ $kb -lt $((1024*1024)) ] && skip "too small mds: $kb"
18163
18164         local stripe_count
18165         local file
18166
18167         mkdir $DIR/$tdir
18168
18169         #define OBD_FAIL_LARGE_STRIPE   0x1703
18170         $LCTL set_param fail_loc=0x1703
18171         $LFS setdirstripe -i 0 -c192 $DIR/$tdir/striped_dir ||
18172                 error "set striped dir error"
18173         $LCTL set_param fail_loc=0
18174
18175         $LFS getdirstripe $DIR/$tdir/striped_dir ||
18176                 error "getstripeddir fails"
18177         rm -rf $DIR/$tdir/striped_dir ||
18178                 error "unlink striped dir fails"
18179
18180         return 0
18181 }
18182 run_test 300k "test large striped directory"
18183
18184 test_300l() {
18185         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18186         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18187         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18188                 skip "Need MDS version at least 2.7.55"
18189
18190         local stripe_index
18191
18192         test_mkdir -p $DIR/$tdir/striped_dir
18193         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
18194                         error "chown $RUNAS_ID failed"
18195         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
18196                 error "set default striped dir failed"
18197
18198         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
18199         $LCTL set_param fail_loc=0x80000158
18200         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
18201
18202         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
18203         [ $stripe_index -eq 1 ] ||
18204                 error "expect 1 get $stripe_index for $dir"
18205 }
18206 run_test 300l "non-root user to create dir under striped dir with stale layout"
18207
18208 test_300m() {
18209         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18210         [ $MDSCOUNT -ge 2 ] && skip_env "Only for single MDT"
18211         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18212                 skip "Need MDS version at least 2.7.55"
18213
18214         mkdir -p $DIR/$tdir/striped_dir
18215         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
18216                 error "set default stripes dir error"
18217
18218         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
18219
18220         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
18221         [ $stripe_count -eq 0 ] ||
18222                         error "expect 0 get $stripe_count for a"
18223
18224         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
18225                 error "set default stripes dir error"
18226
18227         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
18228
18229         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
18230         [ $stripe_count -eq 0 ] ||
18231                         error "expect 0 get $stripe_count for b"
18232
18233         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
18234                 error "set default stripes dir error"
18235
18236         mkdir $DIR/$tdir/striped_dir/c &&
18237                 error "default stripe_index is invalid, mkdir c should fails"
18238
18239         rm -rf $DIR/$tdir || error "rmdir fails"
18240 }
18241 run_test 300m "setstriped directory on single MDT FS"
18242
18243 cleanup_300n() {
18244         local list=$(comma_list $(mdts_nodes))
18245
18246         trap 0
18247         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
18248 }
18249
18250 test_300n() {
18251         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18252         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18253         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18254                 skip "Need MDS version at least 2.7.55"
18255         remote_mds_nodsh && skip "remote MDS with nodsh"
18256
18257         local stripe_index
18258         local list=$(comma_list $(mdts_nodes))
18259
18260         trap cleanup_300n RETURN EXIT
18261         mkdir -p $DIR/$tdir
18262         chmod 777 $DIR/$tdir
18263         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
18264                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
18265                 error "create striped dir succeeds with gid=0"
18266
18267         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
18268         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
18269                 error "create striped dir fails with gid=-1"
18270
18271         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
18272         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
18273                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
18274                 error "set default striped dir succeeds with gid=0"
18275
18276
18277         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
18278         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
18279                 error "set default striped dir fails with gid=-1"
18280
18281
18282         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
18283         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
18284                                         error "create test_dir fails"
18285         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
18286                                         error "create test_dir1 fails"
18287         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
18288                                         error "create test_dir2 fails"
18289         cleanup_300n
18290 }
18291 run_test 300n "non-root user to create dir under striped dir with default EA"
18292
18293 test_300o() {
18294         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18295         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18296         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18297                 skip "Need MDS version at least 2.7.55"
18298
18299         local numfree1
18300         local numfree2
18301
18302         mkdir -p $DIR/$tdir
18303
18304         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
18305         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
18306         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
18307                 skip "not enough free inodes $numfree1 $numfree2"
18308         fi
18309
18310         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
18311         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
18312         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
18313                 skip "not enough free space $numfree1 $numfree2"
18314         fi
18315
18316         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
18317                 error "setdirstripe fails"
18318
18319         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
18320                 error "create dirs fails"
18321
18322         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
18323         ls $DIR/$tdir/striped_dir > /dev/null ||
18324                 error "ls striped dir fails"
18325         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
18326                 error "unlink big striped dir fails"
18327 }
18328 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
18329
18330 test_300p() {
18331         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18332         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18333         remote_mds_nodsh && skip "remote MDS with nodsh"
18334
18335         mkdir -p $DIR/$tdir
18336
18337         #define OBD_FAIL_OUT_ENOSPC     0x1704
18338         do_facet mds2 lctl set_param fail_loc=0x80001704
18339         $LFS setdirstripe -i 0 -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 \
18340                  && error "create striped directory should fail"
18341
18342         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
18343
18344         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
18345         true
18346 }
18347 run_test 300p "create striped directory without space"
18348
18349 test_300q() {
18350         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18351         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18352
18353         local fd=$(free_fd)
18354         local cmd="exec $fd<$tdir"
18355         cd $DIR
18356         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
18357         eval $cmd
18358         cmd="exec $fd<&-"
18359         trap "eval $cmd" EXIT
18360         cd $tdir || error "cd $tdir fails"
18361         rmdir  ../$tdir || error "rmdir $tdir fails"
18362         mkdir local_dir && error "create dir succeeds"
18363         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
18364         eval $cmd
18365         return 0
18366 }
18367 run_test 300q "create remote directory under orphan directory"
18368
18369 test_300r() {
18370         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
18371                 skip "Need MDS version at least 2.7.55" && return
18372         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
18373
18374         mkdir $DIR/$tdir
18375
18376         $LFS setdirstripe -i 0 -c -1 $DIR/$tdir/striped_dir ||
18377                 error "set striped dir error"
18378
18379         $LFS getdirstripe $DIR/$tdir/striped_dir ||
18380                 error "getstripeddir fails"
18381
18382         local stripe_count
18383         stripe_count=$($LFS getdirstripe $DIR/$tdir/striped_dir |
18384                       awk '/lmv_stripe_count:/ { print $2 }')
18385
18386         [ $MDSCOUNT -ne $stripe_count ] &&
18387                 error "wrong stripe count $stripe_count expected $MDSCOUNT"
18388
18389         rm -rf $DIR/$tdir/striped_dir ||
18390                 error "unlink striped dir fails"
18391 }
18392 run_test 300r "test -1 striped directory"
18393
18394 prepare_remote_file() {
18395         mkdir $DIR/$tdir/src_dir ||
18396                 error "create remote source failed"
18397
18398         cp /etc/hosts $DIR/$tdir/src_dir/a ||
18399                  error "cp to remote source failed"
18400         touch $DIR/$tdir/src_dir/a
18401
18402         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
18403                 error "create remote target dir failed"
18404
18405         touch $DIR/$tdir/tgt_dir/b
18406
18407         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
18408                 error "rename dir cross MDT failed!"
18409
18410         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
18411                 error "src_child still exists after rename"
18412
18413         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
18414                 error "missing file(a) after rename"
18415
18416         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
18417                 error "diff after rename"
18418 }
18419
18420 test_310a() {
18421         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 4 MDTs"
18422         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18423
18424         local remote_file=$DIR/$tdir/tgt_dir/b
18425
18426         mkdir -p $DIR/$tdir
18427
18428         prepare_remote_file || error "prepare remote file failed"
18429
18430         #open-unlink file
18431         $OPENUNLINK $remote_file $remote_file ||
18432                 error "openunlink $remote_file failed"
18433         $CHECKSTAT -a $remote_file || error "$remote_file exists"
18434 }
18435 run_test 310a "open unlink remote file"
18436
18437 test_310b() {
18438         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 4 MDTs"
18439         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18440
18441         local remote_file=$DIR/$tdir/tgt_dir/b
18442
18443         mkdir -p $DIR/$tdir
18444
18445         prepare_remote_file || error "prepare remote file failed"
18446
18447         ln $remote_file $DIR/$tfile || error "link failed for remote file"
18448         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
18449         $CHECKSTAT -t file $remote_file || error "check file failed"
18450 }
18451 run_test 310b "unlink remote file with multiple links while open"
18452
18453 test_310c() {
18454         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18455         [[ $MDSCOUNT -lt 4 ]] && skip_env "needs >= 4 MDTs"
18456
18457         local remote_file=$DIR/$tdir/tgt_dir/b
18458
18459         mkdir -p $DIR/$tdir
18460
18461         prepare_remote_file || error "prepare remote file failed"
18462
18463         ln $remote_file $DIR/$tfile || error "link failed for remote file"
18464         multiop_bg_pause $remote_file O_uc ||
18465                         error "mulitop failed for remote file"
18466         MULTIPID=$!
18467         $MULTIOP $DIR/$tfile Ouc
18468         kill -USR1 $MULTIPID
18469         wait $MULTIPID
18470 }
18471 run_test 310c "open-unlink remote file with multiple links"
18472
18473 #LU-4825
18474 test_311() {
18475         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18476         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
18477         [ $MDS1_VERSION -lt $(version_code 2.8.54) ] &&
18478                 skip "lustre < 2.8.54 does not contain LU-4825 fix"
18479         remote_mds_nodsh && skip "remote MDS with nodsh"
18480
18481         local old_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
18482         local mdts=$(comma_list $(mdts_nodes))
18483
18484         mkdir -p $DIR/$tdir
18485         $LFS setstripe -i 0 -c 1 $DIR/$tdir
18486         createmany -o $DIR/$tdir/$tfile. 1000
18487
18488         # statfs data is not real time, let's just calculate it
18489         old_iused=$((old_iused + 1000))
18490
18491         local count=$(do_facet $SINGLEMDS "$LCTL get_param -n \
18492                         osp.*OST0000*MDT0000.create_count")
18493         local max_count=$(do_facet $SINGLEMDS "$LCTL get_param -n \
18494                                 osp.*OST0000*MDT0000.max_create_count")
18495         do_nodes $mdts "$LCTL set_param -n osp.*OST0000*.max_create_count=0"
18496
18497         $LFS setstripe -i 0 $DIR/$tdir/$tfile || error "setstripe failed"
18498         local index=$($LFS getstripe -i $DIR/$tdir/$tfile)
18499         [ $index -ne 0 ] || error "$tfile stripe index is 0"
18500
18501         unlinkmany $DIR/$tdir/$tfile. 1000
18502
18503         do_nodes $mdts "$LCTL set_param -n \
18504                         osp.*OST0000*.max_create_count=$max_count"
18505         [ $(lustre_version_code $facet) -lt $(version_code 2.11.56) ] &&
18506                 do_nodes $mdts "$LCTL set_param -n \
18507                                 osp.*OST0000*.create_count=$count"
18508         do_nodes $mdts "$LCTL get_param osp.*OST0000*.create_count" |
18509                         grep "=0" && error "create_count is zero"
18510
18511         local new_iused
18512         for i in $(seq 120); do
18513                 new_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
18514                 # system may be too busy to destroy all objs in time, use
18515                 # a somewhat small value to not fail autotest
18516                 [ $((old_iused - new_iused)) -gt 400 ] && break
18517                 sleep 1
18518         done
18519
18520         echo "waited $i sec, old Iused $old_iused, new Iused $new_iused"
18521         [ $((old_iused - new_iused)) -gt 400 ] ||
18522                 error "objs not destroyed after unlink"
18523 }
18524 run_test 311 "disable OSP precreate, and unlink should destroy objs"
18525
18526 zfs_oid_to_objid()
18527 {
18528         local ost=$1
18529         local objid=$2
18530
18531         local vdevdir=$(dirname $(facet_vdevice $ost))
18532         local cmd="$ZDB -e -p $vdevdir -ddddd $(facet_device $ost)"
18533         local zfs_zapid=$(do_facet $ost $cmd |
18534                           grep -w "/O/0/d$((objid%32))" -C 5 |
18535                           awk '/Object/{getline; print $1}')
18536         local zfs_objid=$(do_facet $ost $cmd $zfs_zapid |
18537                           awk "/$objid = /"'{printf $3}')
18538
18539         echo $zfs_objid
18540 }
18541
18542 zfs_object_blksz() {
18543         local ost=$1
18544         local objid=$2
18545
18546         local vdevdir=$(dirname $(facet_vdevice $ost))
18547         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
18548         local blksz=$(do_facet $ost $cmd $objid |
18549                       awk '/dblk/{getline; printf $4}')
18550
18551         case "${blksz: -1}" in
18552                 k|K) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024)) ;;
18553                 m|M) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024*1024)) ;;
18554                 *) ;;
18555         esac
18556
18557         echo $blksz
18558 }
18559
18560 test_312() { # LU-4856
18561         remote_ost_nodsh && skip "remote OST with nodsh"
18562         [ "$ost1_FSTYPE" = "zfs" ] ||
18563                 skip_env "the test only applies to zfs"
18564
18565         local max_blksz=$(do_facet ost1 \
18566                           $ZFS get -p recordsize $(facet_device ost1) |
18567                           awk '!/VALUE/{print $3}')
18568
18569         # to make life a little bit easier
18570         $LFS mkdir -c 1 -i 0 $DIR/$tdir
18571         $LFS setstripe -c 1 -i 0 $DIR/$tdir
18572
18573         local tf=$DIR/$tdir/$tfile
18574         touch $tf
18575         local oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18576
18577         # Get ZFS object id
18578         local zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18579         # block size change by sequential overwrite
18580         local bs
18581
18582         for ((bs=$PAGE_SIZE; bs <= max_blksz; bs *= 4)) ; do
18583                 dd if=/dev/zero of=$tf bs=$bs count=1 oflag=sync conv=notrunc
18584
18585                 local blksz=$(zfs_object_blksz ost1 $zfs_objid)
18586                 [ $blksz -eq $bs ] || error "blksz error: $blksz, expected: $bs"
18587         done
18588         rm -f $tf
18589
18590         # block size change by sequential append write
18591         dd if=/dev/zero of=$tf bs=$PAGE_SIZE count=1 oflag=sync conv=notrunc
18592         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18593         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18594         local count
18595
18596         for ((count = 1; count < $((max_blksz / PAGE_SIZE)); count *= 2)); do
18597                 dd if=/dev/zero of=$tf bs=$PAGE_SIZE count=$count seek=$count \
18598                         oflag=sync conv=notrunc
18599
18600                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
18601                 [ $blksz -eq $((2 * count * PAGE_SIZE)) ] ||
18602                         error "blksz error, actual $blksz, " \
18603                                 "expected: 2 * $count * $PAGE_SIZE"
18604         done
18605         rm -f $tf
18606
18607         # random write
18608         touch $tf
18609         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18610         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18611
18612         dd if=/dev/zero of=$tf bs=1K count=1 oflag=sync conv=notrunc
18613         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18614         [ $blksz -eq $PAGE_SIZE ] ||
18615                 error "blksz error: $blksz, expected: $PAGE_SIZE"
18616
18617         dd if=/dev/zero of=$tf bs=64K count=1 oflag=sync conv=notrunc seek=128
18618         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18619         [ $blksz -eq 65536 ] || error "blksz error: $blksz, expected: 64k"
18620
18621         dd if=/dev/zero of=$tf bs=1M count=1 oflag=sync conv=notrunc
18622         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18623         [ $blksz -eq 65536 ] || error "rewrite error: $blksz, expected: 64k"
18624 }
18625 run_test 312 "make sure ZFS adjusts its block size by write pattern"
18626
18627 test_313() {
18628         remote_ost_nodsh && skip "remote OST with nodsh"
18629
18630         local file=$DIR/$tfile
18631
18632         rm -f $file
18633         $LFS setstripe -c 1 -i 0 $file || error "setstripe failed"
18634
18635         # define OBD_FAIL_TGT_RCVD_EIO           0x720
18636         do_facet ost1 "$LCTL set_param fail_loc=0x720"
18637         dd if=/dev/zero of=$file bs=$PAGE_SIZE oflag=direct count=1 &&
18638                 error "write should failed"
18639         do_facet ost1 "$LCTL set_param fail_loc=0"
18640         rm -f $file
18641 }
18642 run_test 313 "io should fail after last_rcvd update fail"
18643
18644 test_314() {
18645         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
18646
18647         $LFS setstripe -c 2 -i 0 $DIR/$tfile || error "setstripe failed"
18648         do_facet ost1 "$LCTL set_param fail_loc=0x720"
18649         rm -f $DIR/$tfile
18650         wait_delete_completed
18651         do_facet ost1 "$LCTL set_param fail_loc=0"
18652 }
18653 run_test 314 "OSP shouldn't fail after last_rcvd update failure"
18654
18655 test_315() { # LU-618
18656         local file=$DIR/$tfile
18657         rm -f $file
18658
18659         $MULTIOP $file oO_CREAT:O_DIRECT:O_RDWR:w4063232c ||
18660                 error "multiop file write failed"
18661         $MULTIOP $file oO_RDONLY:r4063232_c &
18662         PID=$!
18663
18664         sleep 2
18665
18666         local rbytes=$(awk '/read_bytes/ { print $2 }' /proc/$PID/io)
18667         kill -USR1 $PID
18668
18669         [ $rbytes -gt 4000000 ] || error "read is not accounted ($rbytes)"
18670         rm -f $file
18671 }
18672 run_test 315 "read should be accounted"
18673
18674 test_316() {
18675         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
18676         large_xattr_enabled || skip_env "ea_inode feature disabled"
18677
18678         rm -rf $DIR/$tdir/d
18679         mkdir -p $DIR/$tdir/d
18680         chown nobody $DIR/$tdir/d
18681         touch $DIR/$tdir/d/file
18682
18683         $LFS mv -M1 $DIR/$tdir/d || error "lfs mv failed"
18684 }
18685 run_test 316 "lfs mv"
18686
18687 test_317() {
18688         local trunc_sz
18689         local grant_blk_size
18690
18691         if [ "$(facet_fstype $facet)" == "zfs" ]; then
18692                 skip "LU-10370: no implementation for ZFS" && return
18693         fi
18694
18695         stack_trap "rm -f $DIR/$tfile" EXIT
18696         grant_blk_size=$($LCTL get_param osc.$FSNAME*.import |
18697                         awk '/grant_block_size:/ { print $2; exit; }')
18698         #
18699         # Create File of size 5M. Truncate it to below size's and verify
18700         # blocks count.
18701         #
18702         dd if=/dev/zero of=$DIR/$tfile bs=5M count=1 conv=fsync ||
18703                 error "Create file : $DIR/$tfile"
18704
18705         for trunc_sz in 2097152 4097 4000 509 0; do
18706                 $TRUNCATE $DIR/$tfile $trunc_sz ||
18707                         error "truncate $tfile to $trunc_sz failed"
18708                 local sz=$(stat --format=%s $DIR/$tfile)
18709                 local blk=$(stat --format=%b $DIR/$tfile)
18710                 local trunc_blk=$((((trunc_sz + (grant_blk_size - 1) ) /
18711                                      grant_blk_size) * 8))
18712
18713                 if [[ $blk -ne $trunc_blk ]]; then
18714                         $(which stat) $DIR/$tfile
18715                         error "Expected Block $trunc_blk got $blk for $tfile"
18716                 fi
18717
18718                 $CHECKSTAT -s $trunc_sz $DIR/$tfile ||
18719                         error "Expected Size $trunc_sz got $sz for $tfile"
18720         done
18721
18722         #
18723         # sparse file test
18724         # Create file with a hole and write actual two blocks. Block count
18725         # must be 16.
18726         #
18727         dd if=/dev/zero of=$DIR/$tfile bs=$grant_blk_size count=2 seek=5 \
18728                 conv=fsync || error "Create file : $DIR/$tfile"
18729
18730         # Calculate the final truncate size.
18731         trunc_sz=$(($(stat --format=%s $DIR/$tfile) - (grant_blk_size + 1)))
18732
18733         #
18734         # truncate to size $trunc_sz bytes. Strip the last block
18735         # The block count must drop to 8
18736         #
18737         $TRUNCATE $DIR/$tfile $trunc_sz ||
18738                 error "truncate $tfile to $trunc_sz failed"
18739
18740         local trunc_bsz=$((grant_blk_size / $(stat --format=%B $DIR/$tfile)))
18741         sz=$(stat --format=%s $DIR/$tfile)
18742         blk=$(stat --format=%b $DIR/$tfile)
18743
18744         if [[ $blk -ne $trunc_bsz ]]; then
18745                 $(which stat) $DIR/$tfile
18746                 error "Expected Block $trunc_bsz got $blk for $tfile"
18747         fi
18748
18749         $CHECKSTAT -s $trunc_sz $DIR/$tfile ||
18750                 error "Expected Size $trunc_sz got $sz for $tfile"
18751 }
18752 run_test 317 "Verify blocks get correctly update after truncate"
18753
18754 test_fake_rw() {
18755         local read_write=$1
18756         if [ "$read_write" = "write" ]; then
18757                 local dd_cmd="dd if=/dev/zero of=$DIR/$tfile"
18758         elif [ "$read_write" = "read" ]; then
18759                 local dd_cmd="dd of=/dev/null if=$DIR/$tfile"
18760         else
18761                 error "argument error"
18762         fi
18763
18764         # turn off debug for performance testing
18765         local saved_debug=$($LCTL get_param -n debug)
18766         $LCTL set_param debug=0
18767
18768         $LFS setstripe -c 1 -i 0 $DIR/$tfile
18769
18770         # get ost1 size - lustre-OST0000
18771         local ost1_avail_size=$($LFS df | awk /${ost1_svc}/'{ print $4 }')
18772         local blocks=$((ost1_avail_size/2/1024)) # half avail space by megabytes
18773         [ $blocks -gt 1000 ] && blocks=1000 # 1G in maximum
18774
18775         if [ "$read_write" = "read" ]; then
18776                 truncate -s $(expr 1048576 \* $blocks) $DIR/$tfile
18777         fi
18778
18779         local start_time=$(date +%s.%N)
18780         $dd_cmd bs=1M count=$blocks oflag=sync ||
18781                 error "real dd $read_write error"
18782         local duration=$(bc <<< "$(date +%s.%N) - $start_time")
18783
18784         if [ "$read_write" = "write" ]; then
18785                 rm -f $DIR/$tfile
18786         fi
18787
18788         # define OBD_FAIL_OST_FAKE_RW           0x238
18789         do_facet ost1 $LCTL set_param fail_loc=0x238
18790
18791         local start_time=$(date +%s.%N)
18792         $dd_cmd bs=1M count=$blocks oflag=sync ||
18793                 error "fake dd $read_write error"
18794         local duration_fake=$(bc <<< "$(date +%s.%N) - $start_time")
18795
18796         if [ "$read_write" = "write" ]; then
18797                 # verify file size
18798                 cancel_lru_locks osc
18799                 $CHECKSTAT -t file -s $((blocks * 1024 * 1024)) $DIR/$tfile ||
18800                         error "$tfile size not $blocks MB"
18801         fi
18802         do_facet ost1 $LCTL set_param fail_loc=0
18803
18804         echo "fake $read_write $duration_fake vs. normal $read_write" \
18805                 "$duration in seconds"
18806         [ $(bc <<< "$duration_fake < $duration") -eq 1 ] ||
18807                 error_not_in_vm "fake write is slower"
18808
18809         $LCTL set_param -n debug="$saved_debug"
18810         rm -f $DIR/$tfile
18811 }
18812 test_399a() { # LU-7655 for OST fake write
18813         remote_ost_nodsh && skip "remote OST with nodsh"
18814
18815         test_fake_rw write
18816 }
18817 run_test 399a "fake write should not be slower than normal write"
18818
18819 test_399b() { # LU-8726 for OST fake read
18820         remote_ost_nodsh && skip "remote OST with nodsh"
18821         if [ "$ost1_FSTYPE" != "ldiskfs" ]; then
18822                 skip_env "ldiskfs only test"
18823         fi
18824
18825         test_fake_rw read
18826 }
18827 run_test 399b "fake read should not be slower than normal read"
18828
18829 test_400a() { # LU-1606, was conf-sanity test_74
18830         if ! which $CC > /dev/null 2>&1; then
18831                 skip_env "$CC is not installed"
18832         fi
18833
18834         local extra_flags=''
18835         local out=$TMP/$tfile
18836         local prefix=/usr/include/lustre
18837         local prog
18838
18839         if ! [[ -d $prefix ]]; then
18840                 # Assume we're running in tree and fixup the include path.
18841                 extra_flags+=" -I$LUSTRE/../lnet/include/uapi -I$LUSTRE/include/uapi -I$LUSTRE/include"
18842                 extra_flags+=" -L$LUSTRE/utils/.lib"
18843         fi
18844
18845         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
18846                 $CC -Wall -Werror $extra_flags -o $out $prog -llustreapi ||
18847                         error "client api broken"
18848         done
18849         rm -f $out
18850 }
18851 run_test 400a "Lustre client api program can compile and link"
18852
18853 test_400b() { # LU-1606, LU-5011
18854         local header
18855         local out=$TMP/$tfile
18856         local prefix=/usr/include/linux/lustre
18857
18858         # We use a hard coded prefix so that this test will not fail
18859         # when run in tree. There are headers in lustre/include/lustre/
18860         # that are not packaged (like lustre_idl.h) and have more
18861         # complicated include dependencies (like config.h and lnet/types.h).
18862         # Since this test about correct packaging we just skip them when
18863         # they don't exist (see below) rather than try to fixup cppflags.
18864
18865         if ! which $CC > /dev/null 2>&1; then
18866                 skip_env "$CC is not installed"
18867         fi
18868
18869         for header in $prefix/*.h; do
18870                 if ! [[ -f "$header" ]]; then
18871                         continue
18872                 fi
18873
18874                 if [[ "$(basename $header)" == lustre_ioctl.h ]]; then
18875                         continue # lustre_ioctl.h is internal header
18876                 fi
18877
18878                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
18879                         error "cannot compile '$header'"
18880         done
18881         rm -f $out
18882 }
18883 run_test 400b "packaged headers can be compiled"
18884
18885 test_401a() { #LU-7437
18886         local printf_arg=$(find -printf 2>&1 | grep "unrecognized:")
18887         [ -n "$printf_arg" ] && skip_env "find does not support -printf"
18888
18889         #count the number of parameters by "list_param -R"
18890         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
18891         #count the number of parameters by listing proc files
18892         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
18893         echo "proc_dirs='$proc_dirs'"
18894         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
18895         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
18896                       sort -u | wc -l)
18897
18898         [ $params -eq $procs ] ||
18899                 error "found $params parameters vs. $procs proc files"
18900
18901         # test the list_param -D option only returns directories
18902         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
18903         #count the number of parameters by listing proc directories
18904         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
18905                 sort -u | wc -l)
18906
18907         [ $params -eq $procs ] ||
18908                 error "found $params parameters vs. $procs proc files"
18909 }
18910 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
18911
18912 test_401b() {
18913         local save=$($LCTL get_param -n jobid_var)
18914         local tmp=testing
18915
18916         $LCTL set_param foo=bar jobid_var=$tmp bar=baz &&
18917                 error "no error returned when setting bad parameters"
18918
18919         local jobid_new=$($LCTL get_param -n foe jobid_var baz)
18920         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
18921
18922         $LCTL set_param -n fog=bam jobid_var=$save bat=fog
18923         local jobid_old=$($LCTL get_param -n foe jobid_var bag)
18924         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
18925 }
18926 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
18927
18928 test_401c() {
18929         local jobid_var_old=$($LCTL get_param -n jobid_var)
18930         local jobid_var_new
18931
18932         $LCTL set_param jobid_var= &&
18933                 error "no error returned for 'set_param a='"
18934
18935         jobid_var_new=$($LCTL get_param -n jobid_var)
18936         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
18937                 error "jobid_var was changed by setting without value"
18938
18939         $LCTL set_param jobid_var &&
18940                 error "no error returned for 'set_param a'"
18941
18942         jobid_var_new=$($LCTL get_param -n jobid_var)
18943         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
18944                 error "jobid_var was changed by setting without value"
18945 }
18946 run_test 401c "Verify 'lctl set_param' without value fails in either format."
18947
18948 test_401d() {
18949         local jobid_var_old=$($LCTL get_param -n jobid_var)
18950         local jobid_var_new
18951         local new_value="foo=bar"
18952
18953         $LCTL set_param jobid_var=$new_value ||
18954                 error "'set_param a=b' did not accept a value containing '='"
18955
18956         jobid_var_new=$($LCTL get_param -n jobid_var)
18957         [[ "$jobid_var_new" == "$new_value" ]] ||
18958                 error "'set_param a=b' failed on a value containing '='"
18959
18960         # Reset the jobid_var to test the other format
18961         $LCTL set_param jobid_var=$jobid_var_old
18962         jobid_var_new=$($LCTL get_param -n jobid_var)
18963         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
18964                 error "failed to reset jobid_var"
18965
18966         $LCTL set_param jobid_var $new_value ||
18967                 error "'set_param a b' did not accept a value containing '='"
18968
18969         jobid_var_new=$($LCTL get_param -n jobid_var)
18970         [[ "$jobid_var_new" == "$new_value" ]] ||
18971                 error "'set_param a b' failed on a value containing '='"
18972
18973         $LCTL set_param jobid_var $jobid_var_old
18974         jobid_var_new=$($LCTL get_param -n jobid_var)
18975         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
18976                 error "failed to reset jobid_var"
18977 }
18978 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
18979
18980 test_402() {
18981         [[ $MDS1_VERSION -ge $(version_code 2.7.66) ]] ||
18982         [[ $MDS1_VERSION -ge $(version_code 2.7.18.4) &&
18983                 $MDS1_VERSION -lt $(version_code 2.7.50) ]] ||
18984         [[ $MDS1_VERSION -ge $(version_code 2.7.2) &&
18985                 $MDS1_VERSION -lt $(version_code 2.7.11) ]] ||
18986                 skip "Need MDS version 2.7.2+ or 2.7.18.4+ or 2.7.66+"
18987         remote_mds_nodsh && skip "remote MDS with nodsh"
18988
18989         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
18990 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
18991         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
18992         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
18993                 echo "Touch failed - OK"
18994 }
18995 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
18996
18997 test_403() {
18998         local file1=$DIR/$tfile.1
18999         local file2=$DIR/$tfile.2
19000         local tfile=$TMP/$tfile
19001
19002         rm -f $file1 $file2 $tfile
19003
19004         touch $file1
19005         ln $file1 $file2
19006
19007         # 30 sec OBD_TIMEOUT in ll_getattr()
19008         # right before populating st_nlink
19009         $LCTL set_param fail_loc=0x80001409
19010         stat -c %h $file1 > $tfile &
19011
19012         # create an alias, drop all locks and reclaim the dentry
19013         < $file2
19014         cancel_lru_locks mdc
19015         cancel_lru_locks osc
19016         sysctl -w vm.drop_caches=2
19017
19018         wait
19019
19020         [ $(cat $tfile) -gt 0 ] || error "wrong nlink count: $(cat $tfile)"
19021
19022         rm -f $tfile $file1 $file2
19023 }
19024 run_test 403 "i_nlink should not drop to zero due to aliasing"
19025
19026 test_404() { # LU-6601
19027         [[ $MDS1_VERSION -ge $(version_code 2.8.53) ]] ||
19028                 skip "Need server version newer than 2.8.52"
19029         remote_mds_nodsh && skip "remote MDS with nodsh"
19030
19031         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
19032                 awk '/osp .*-osc-MDT/ { print $4}')
19033
19034         local osp
19035         for osp in $mosps; do
19036                 echo "Deactivate: " $osp
19037                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
19038                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
19039                         awk -vp=$osp '$4 == p { print $2 }')
19040                 [ $stat = IN ] || {
19041                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
19042                         error "deactivate error"
19043                 }
19044                 echo "Activate: " $osp
19045                 do_facet $SINGLEMDS $LCTL --device %$osp activate
19046                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
19047                         awk -vp=$osp '$4 == p { print $2 }')
19048                 [ $stat = UP ] || {
19049                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
19050                         error "activate error"
19051                 }
19052         done
19053 }
19054 run_test 404 "validate manual {de}activated works properly for OSPs"
19055
19056 test_405() {
19057         [ -n "$FILESET" ] && skip "Not functional for FILESET set"
19058         [ $MDS1_VERSION -lt $(version_code 2.6.92) -o \
19059         [ $CLIENT_VERSION -lt $(version_code 2.6.99) ] &&
19060                 skip "Layout swap lock is not supported"
19061         check_swap_layouts_support
19062
19063         test_mkdir $DIR/$tdir
19064         swap_lock_test -d $DIR/$tdir ||
19065                 error "One layout swap locked test failed"
19066 }
19067 run_test 405 "Various layout swap lock tests"
19068
19069 test_406() {
19070         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19071         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
19072         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
19073         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19074         [ $MDS1_VERSION -lt $(version_code 2.8.50) ] &&
19075                 skip "Need MDS version at least 2.8.50"
19076
19077         local def_stripe_size=$($LFS getstripe -S $MOUNT)
19078         local test_pool=$TESTNAME
19079
19080         if ! combined_mgs_mds ; then
19081                 mount_mgs_client
19082         fi
19083         pool_add $test_pool || error "pool_add failed"
19084         pool_add_targets $test_pool 0 $(($OSTCOUNT - 1)) 1 ||
19085                 error "pool_add_targets failed"
19086
19087         save_layout_restore_at_exit $MOUNT
19088
19089         # parent set default stripe count only, child will stripe from both
19090         # parent and fs default
19091         $LFS setstripe -c 1 -i 1 -S $((def_stripe_size * 2)) -p $test_pool $MOUNT ||
19092                 error "setstripe $MOUNT failed"
19093         $LFS mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
19094         $LFS setstripe -c $OSTCOUNT $DIR/$tdir || error "setstripe $tdir failed"
19095         for i in $(seq 10); do
19096                 local f=$DIR/$tdir/$tfile.$i
19097                 touch $f || error "touch failed"
19098                 local count=$($LFS getstripe -c $f)
19099                 [ $count -eq $OSTCOUNT ] ||
19100                         error "$f stripe count $count != $OSTCOUNT"
19101                 local offset=$($LFS getstripe -i $f)
19102                 [ $offset -eq 1 ] || error "$f stripe offset $offset != 1"
19103                 local size=$($LFS getstripe -S $f)
19104                 [ $size -eq $((def_stripe_size * 2)) ] ||
19105                         error "$f stripe size $size != $((def_stripe_size * 2))"
19106                 local pool=$($LFS getstripe -p $f)
19107                 [ $pool == $test_pool ] || error "$f pool $pool != $test_pool"
19108         done
19109
19110         # change fs default striping, delete parent default striping, now child
19111         # will stripe from new fs default striping only
19112         $LFS setstripe -c 1 -S $def_stripe_size -i 0 $MOUNT ||
19113                 error "change $MOUNT default stripe failed"
19114         $LFS setstripe -c 0 $DIR/$tdir ||
19115                 error "delete $tdir default stripe failed"
19116         for i in $(seq 11 20); do
19117                 local f=$DIR/$tdir/$tfile.$i
19118                 touch $f || error "touch $f failed"
19119                 local count=$($LFS getstripe -c $f)
19120                 [ $count -eq 1 ] || error "$f stripe count $count != 1"
19121                 local offset=$($LFS getstripe -i $f)
19122                 [ $offset -eq 0 ] || error "$f stripe offset $offset != 0"
19123                 local size=$($LFS getstripe -S $f)
19124                 [ $size -eq $def_stripe_size ] ||
19125                         error "$f stripe size $size != $def_stripe_size"
19126                 local pool=$($LFS getstripe -p $f)
19127                 [ $pool == $test_pool ] || error "$f pool $pool isn't set"
19128         done
19129
19130         unlinkmany $DIR/$tdir/$tfile. 1 20
19131
19132         local f=$DIR/$tdir/$tfile
19133         pool_remove_all_targets $test_pool $f
19134         pool_remove $test_pool $f
19135
19136         if ! combined_mgs_mds ; then
19137                 umount_mgs_client
19138         fi
19139 }
19140 run_test 406 "DNE support fs default striping"
19141
19142 test_407() {
19143         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19144         [[ $MDS1_VERSION -lt $(version_code 2.8.55) ]] &&
19145                 skip "Need MDS version at least 2.8.55"
19146         remote_mds_nodsh && skip "remote MDS with nodsh"
19147
19148         $LFS mkdir -i 0 -c 1 $DIR/$tdir.0 ||
19149                 error "$LFS mkdir -i 0 -c 1 $tdir.0 failed"
19150         $LFS mkdir -i 1 -c 1 $DIR/$tdir.1 ||
19151                 error "$LFS mkdir -i 1 -c 1 $tdir.1 failed"
19152         touch $DIR/$tdir.0/$tfile.0 || error "touch $tdir.0/$tfile.0 failed"
19153
19154         #define OBD_FAIL_DT_TXN_STOP    0x2019
19155         for idx in $(seq $MDSCOUNT); do
19156                 do_facet mds$idx "lctl set_param fail_loc=0x2019"
19157         done
19158         $LFS mkdir -c 2 $DIR/$tdir && error "$LFS mkdir -c 2 $tdir should fail"
19159         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1/$tfile.1 &&
19160                 error "mv $tdir.0/$tfile.0 $tdir.1/$tfile.1 should fail"
19161         true
19162 }
19163 run_test 407 "transaction fail should cause operation fail"
19164
19165 test_408() {
19166         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1 oflag=direct
19167
19168         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
19169         lctl set_param fail_loc=0x8000040a
19170         # let ll_prepare_partial_page() fail
19171         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 conv=notrunc || true
19172
19173         rm -f $DIR/$tfile
19174
19175         # create at least 100 unused inodes so that
19176         # shrink_icache_memory(0) should not return 0
19177         touch $DIR/$tfile-{0..100}
19178         rm -f $DIR/$tfile-{0..100}
19179         sync
19180
19181         echo 2 > /proc/sys/vm/drop_caches
19182 }
19183 run_test 408 "drop_caches should not hang due to page leaks"
19184
19185 test_409()
19186 {
19187         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19188         check_mount_and_prep
19189
19190         mkdir -p $DIR/$tdir || error "(0) Fail to mkdir"
19191         $LFS mkdir -i 1 -c 2 $DIR/$tdir/foo || error "(1) Fail to mkdir"
19192         touch $DIR/$tdir/guard || error "(2) Fail to create"
19193
19194         local PREFIX=$(str_repeat 'A' 128)
19195         echo "Create 1K hard links start at $(date)"
19196         createmany -l $DIR/$tdir/guard $DIR/$tdir/foo/${PREFIX}_ 1000 ||
19197                 error "(3) Fail to hard link"
19198
19199         echo "Links count should be right although linkEA overflow"
19200         stat $DIR/$tdir/guard || error "(4) Fail to stat"
19201         local linkcount=$(stat --format=%h $DIR/$tdir/guard)
19202         [ $linkcount -eq 1001 ] ||
19203                 error "(5) Unexpected hard links count: $linkcount"
19204
19205         echo "List all links start at $(date)"
19206         ls -l $DIR/$tdir/foo > /dev/null ||
19207                 error "(6) Fail to list $DIR/$tdir/foo"
19208
19209         echo "Unlink hard links start at $(date)"
19210         unlinkmany $DIR/$tdir/foo/${PREFIX}_ 1000 ||
19211                 error "(7) Fail to unlink"
19212 }
19213 run_test 409 "Large amount of cross-MDTs hard links on the same file"
19214
19215 test_410()
19216 {
19217         [[ $CLIENT_VERSION -lt $(version_code 2.9.59) ]] &&
19218                 skip "Need client version at least 2.9.59"
19219
19220         # Create a file, and stat it from the kernel
19221         local testfile=$DIR/$tfile
19222         touch $testfile
19223
19224         local run_id=$RANDOM
19225         local my_ino=$(stat --format "%i" $testfile)
19226
19227         # Try to insert the module. This will always fail as the
19228         # module is designed to not be inserted.
19229         insmod $LUSTRE/tests/kernel/kinode.ko run_id=$run_id fname=$testfile \
19230             &> /dev/null
19231
19232         # Anything but success is a test failure
19233         dmesg | grep -q \
19234             "lustre_kinode_$run_id: inode numbers are identical: $my_ino" ||
19235             error "no inode match"
19236 }
19237 run_test 410 "Test inode number returned from kernel thread"
19238
19239 cleanup_test411_cgroup() {
19240         trap 0
19241         rmdir "$1"
19242 }
19243
19244 test_411() {
19245         local cg_basedir=/sys/fs/cgroup/memory
19246         # LU-9966
19247         test -f "$cg_basedir/memory.kmem.limit_in_bytes" ||
19248                 skip "no setup for cgroup"
19249
19250         dd if=/dev/zero of=$DIR/$tfile bs=1M count=100 conv=fsync ||
19251                 error "test file creation failed"
19252         cancel_lru_locks osc
19253
19254         # Create a very small memory cgroup to force a slab allocation error
19255         local cgdir=$cg_basedir/osc_slab_alloc
19256         mkdir $cgdir || error "cgroup mkdir '$cgdir' failed"
19257         trap "cleanup_test411_cgroup $cgdir" EXIT
19258         echo 2M > $cgdir/memory.kmem.limit_in_bytes
19259         echo 1M > $cgdir/memory.limit_in_bytes
19260
19261         # Should not LBUG, just be killed by oom-killer
19262         # dd will return 0 even allocation failure in some environment.
19263         # So don't check return value
19264         sh -c "echo \$$ > $cgdir/tasks && dd if=$DIR/$tfile of=/dev/null"
19265         cleanup_test411_cgroup $cgdir
19266
19267         return 0
19268 }
19269 run_test 411 "Slab allocation error with cgroup does not LBUG"
19270
19271 test_412() {
19272         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19273         if [ $(lustre_version_code mds1) -lt $(version_code 2.10.55) ]; then
19274                 skip "Need server version at least 2.10.55"
19275         fi
19276
19277         $LFS mkdir -i $((MDSCOUNT - 1)),$((MDSCOUNT - 2)) $DIR/$tdir ||
19278                 error "mkdir failed"
19279         $LFS getdirstripe $DIR/$tdir
19280         local stripe_index=$($LFS getdirstripe -i $DIR/$tdir)
19281         [ $stripe_index -eq $((MDSCOUNT - 1)) ] ||
19282                 error "expect $((MDSCOUT - 1)) get $stripe_index"
19283         local stripe_count=$($LFS getdirstripe -T $DIR/$tdir)
19284         [ $stripe_count -eq 2 ] ||
19285                 error "expect 2 get $stripe_count"
19286 }
19287 run_test 412 "mkdir on specific MDTs"
19288
19289 test_413() {
19290         [ $MDSCOUNT -lt 2 ] &&
19291                 skip "We need at least 2 MDTs for this test"
19292
19293         if [ $(lustre_version_code mds1) -lt $(version_code 2.10.55) ]; then
19294                 skip "Need server version at least 2.10.55"
19295         fi
19296
19297         mkdir $DIR/$tdir || error "mkdir failed"
19298
19299         # find MDT that is the most full
19300         local max=$($LFS df | grep MDT |
19301                 awk 'BEGIN { a=0 }
19302                         { sub("%", "", $5)
19303                           if (0+$5 >= a)
19304                           {
19305                                 a = $5
19306                                 b = $6
19307                           }
19308                         }
19309                      END { split(b, c, ":")
19310                            sub("]", "", c[2])
19311                            print c[2]
19312                          }')
19313
19314         for i in $(seq $((MDSCOUNT - 1))); do
19315                 $LFS mkdir -c $i $DIR/$tdir/d$i ||
19316                         error "mkdir d$i failed"
19317                 $LFS getdirstripe $DIR/$tdir/d$i
19318                 local stripe_index=$($LFS getdirstripe -i $DIR/$tdir/d$i)
19319                 [ $stripe_index -ne $max ] ||
19320                         error "don't expect $max"
19321         done
19322 }
19323 run_test 413 "mkdir on less full MDTs"
19324
19325 test_414() {
19326 #define OBD_FAIL_PTLRPC_BULK_ATTACH      0x521
19327         $LCTL set_param fail_loc=0x80000521
19328         dd if=/dev/zero of=$DIR/$tfile bs=2M count=1 oflag=sync
19329         rm -f $DIR/$tfile
19330 }
19331 run_test 414 "simulate ENOMEM in ptlrpc_register_bulk()"
19332
19333 test_415() {
19334         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19335         [ $(lustre_version_code mds1) -lt $(version_code 2.11.52) ] &&
19336                 skip "Need server version at least 2.11.52"
19337
19338         # LU-11102
19339         local total
19340         local setattr_pid
19341         local start_time
19342         local end_time
19343         local duration
19344
19345         total=500
19346         # this test may be slow on ZFS
19347         [ "$mds1_FSTYPE" == "zfs" ] && total=100
19348
19349         # though this test is designed for striped directory, let's test normal
19350         # directory too since lock is always saved as CoS lock.
19351         test_mkdir $DIR/$tdir || error "mkdir $tdir"
19352         createmany -o $DIR/$tdir/$tfile. $total || error "createmany"
19353
19354         (
19355                 while true; do
19356                         touch $DIR/$tdir
19357                 done
19358         ) &
19359         setattr_pid=$!
19360
19361         start_time=$(date +%s)
19362         for i in $(seq $total); do
19363                 mrename $DIR/$tdir/$tfile.$i $DIR/$tdir/$tfile-new.$i \
19364                         > /dev/null
19365         done
19366         end_time=$(date +%s)
19367         duration=$((end_time - start_time))
19368
19369         kill -9 $setattr_pid
19370
19371         echo "rename $total files took $duration sec"
19372         [ $duration -lt 100 ] || error "rename took $duration sec"
19373 }
19374 run_test 415 "lock revoke is not missing"
19375
19376 test_416() {
19377         [ $(lustre_version_code mds1) -lt $(version_code 2.11.55) ] &&
19378                 skip "Need server version at least 2.11.55"
19379
19380         # define OBD_FAIL_OSD_TXN_START    0x19a
19381         do_facet mds1 lctl set_param fail_loc=0x19a
19382
19383         lfs mkdir -c $MDSCOUNT $DIR/$tdir
19384
19385         true
19386 }
19387 run_test 416 "transaction start failure won't cause system hung"
19388
19389 cleanup_417() {
19390         trap 0
19391         do_nodes $(comma_list $(mdts_nodes)) \
19392                 "$LCTL set_param -n mdt.*MDT*.enable_dir_migration=1"
19393         do_nodes $(comma_list $(mdts_nodes)) \
19394                 "$LCTL set_param -n mdt.*MDT*.enable_remote_dir=1"
19395         do_nodes $(comma_list $(mdts_nodes)) \
19396                 "$LCTL set_param -n mdt.*MDT*.enable_striped_dir=1"
19397 }
19398
19399 test_417() {
19400         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
19401         [[ $MDS1_VERSION -lt $(version_code 2.11.56) ]] &&
19402                 skip "Need MDS version at least 2.11.56"
19403
19404         trap cleanup_417 RETURN EXIT
19405
19406         $LFS mkdir -i 1 $DIR/$tdir.1 || error "create remote dir $tdir.1 failed"
19407         do_nodes $(comma_list $(mdts_nodes)) \
19408                 "$LCTL set_param -n mdt.*MDT*.enable_dir_migration=0"
19409         $LFS migrate -m 0 $DIR/$tdir.1 &&
19410                 error "migrate dir $tdir.1 should fail"
19411
19412         do_nodes $(comma_list $(mdts_nodes)) \
19413                 "$LCTL set_param -n mdt.*MDT*.enable_remote_dir=0"
19414         $LFS mkdir -i 1 $DIR/$tdir.2 &&
19415                 error "create remote dir $tdir.2 should fail"
19416
19417         do_nodes $(comma_list $(mdts_nodes)) \
19418                 "$LCTL set_param -n mdt.*MDT*.enable_striped_dir=0"
19419         $LFS mkdir -c 2 $DIR/$tdir.3 &&
19420                 error "create striped dir $tdir.3 should fail"
19421         true
19422 }
19423 run_test 417 "disable remote dir, striped dir and dir migration"
19424
19425 # Checks that the outputs of df [-i] and lfs df [-i] match
19426 #
19427 # usage: check_lfs_df <blocks | inodes> <mountpoint>
19428 check_lfs_df() {
19429         local dir=$2
19430         local inodes
19431         local df_out
19432         local lfs_df_out
19433         local tries=100
19434         local count=0
19435         local passed=false
19436
19437         # blocks or inodes
19438         [ "$1" == "blocks" ] && inodes= || inodes="-i"
19439
19440         while (( count < tries )); do
19441                 cancel_lru_locks
19442                 sync; sleep 0.2
19443
19444                 # read the lines of interest
19445                 df_out=($(df $inodes $dir | tail -n +2)) ||
19446                         error "df $inodes $dir | tail -n +2 failed"
19447                 lfs_df_out=($($LFS df $inodes $dir | grep summary:)) ||
19448                         error "lfs df $inodes $dir | grep summary: failed"
19449
19450                 # skip first substrings of each output as they are different
19451                 # <NID>:/<fsname for df, filesystem_summary: for lfs df
19452                 df_out=(${df_out[@]:1})
19453                 lfs_df_out=(${lfs_df_out[@]:1})
19454
19455                 # compare the two outputs
19456                 passed=true
19457
19458                 for i in {0..4}; do
19459                         [ "${df_out[i]}" != "${lfs_df_out[i]}" ] && passed=false
19460                 done
19461                 $passed && break
19462         done
19463
19464         $passed || error "df and lfs df $1 output mismatch: "   \
19465                          "df ${inodes}: ${df_out[*]}, "         \
19466                          "lfs df ${inodes}: ${lfs_df_out[*]}"
19467 }
19468
19469 test_418() {
19470         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19471
19472         local dir=$DIR/$tdir
19473         local numfiles=$((RANDOM % 4096 + 2))
19474         local numblocks=$((RANDOM % 256 + 1))
19475
19476         wait_delete_completed
19477         test_mkdir $dir
19478
19479         # check block output
19480         check_lfs_df blocks $dir
19481         # check inode output
19482         check_lfs_df inodes $dir
19483
19484         # create a single file and retest
19485         echo "Creating a single file and testing"
19486         createmany -o $dir/$tfile- 1 &>/dev/null ||
19487                 error "creating 1 file in $dir failed"
19488         check_lfs_df blocks $dir
19489         check_lfs_df inodes $dir
19490
19491         # create a random number of files
19492         echo "Creating $((numfiles - 1)) files and testing"
19493         createmany -o $dir/$tfile- 1 $((numfiles - 1)) &>/dev/null ||
19494                 error "creating $((numfiles - 1)) files in $dir failed"
19495
19496         # write a random number of blocks to the first test file
19497         echo "Writing $numblocks 4K blocks and testing"
19498         dd if=/dev/urandom of=$dir/${tfile}-0 bs=4K conv=fsync \
19499                 count=$numblocks &>/dev/null ||
19500                 error "dd to $dir/${tfile}-0 failed"
19501
19502         # retest
19503         check_lfs_df blocks $dir
19504         check_lfs_df inodes $dir
19505
19506         unlinkmany $dir/$tfile- $numfiles &>/dev/null ||
19507                 error "unlinking $numfiles files in $dir failed"
19508 }
19509 run_test 418 "df and lfs df outputs match"
19510
19511 prep_801() {
19512         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
19513         [[ $OST1_VERSION -lt $(version_code 2.9.55) ]] &&
19514                 skip "Need server version at least 2.9.55"
19515
19516         start_full_debug_logging
19517 }
19518
19519 post_801() {
19520         stop_full_debug_logging
19521 }
19522
19523 barrier_stat() {
19524         if [ $MGS_VERSION -le $(version_code 2.10.0) ]; then
19525                 local st=$(do_facet mgs $LCTL barrier_stat $FSNAME |
19526                            awk '/The barrier for/ { print $7 }')
19527                 echo $st
19528         else
19529                 local st=$(do_facet mgs $LCTL barrier_stat -s $FSNAME)
19530                 echo \'$st\'
19531         fi
19532 }
19533
19534 barrier_expired() {
19535         local expired
19536
19537         if [ $MGS_VERSION -le $(version_code 2.10.0) ]; then
19538                 expired=$(do_facet mgs $LCTL barrier_stat $FSNAME |
19539                           awk '/will be expired/ { print $7 }')
19540         else
19541                 expired=$(do_facet mgs $LCTL barrier_stat -t $FSNAME)
19542         fi
19543
19544         echo $expired
19545 }
19546
19547 test_801a() {
19548         prep_801
19549
19550         echo "Start barrier_freeze at: $(date)"
19551         #define OBD_FAIL_BARRIER_DELAY          0x2202
19552         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
19553         do_facet mgs $LCTL barrier_freeze $FSNAME 10 &
19554
19555         sleep 2
19556         local b_status=$(barrier_stat)
19557         echo "Got barrier status at: $(date)"
19558         [ "$b_status" = "'freezing_p1'" ] ||
19559                 error "(1) unexpected barrier status $b_status"
19560
19561         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
19562         wait
19563         b_status=$(barrier_stat)
19564         [ "$b_status" = "'frozen'" ] ||
19565                 error "(2) unexpected barrier status $b_status"
19566
19567         local expired=$(barrier_expired)
19568         echo "sleep $((expired + 3)) seconds, then the barrier will be expired"
19569         sleep $((expired + 3))
19570
19571         b_status=$(barrier_stat)
19572         [ "$b_status" = "'expired'" ] ||
19573                 error "(3) unexpected barrier status $b_status"
19574
19575         do_facet mgs $LCTL barrier_freeze $FSNAME 10 ||
19576                 error "(4) fail to freeze barrier"
19577
19578         b_status=$(barrier_stat)
19579         [ "$b_status" = "'frozen'" ] ||
19580                 error "(5) unexpected barrier status $b_status"
19581
19582         echo "Start barrier_thaw at: $(date)"
19583         #define OBD_FAIL_BARRIER_DELAY          0x2202
19584         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
19585         do_facet mgs $LCTL barrier_thaw $FSNAME &
19586
19587         sleep 2
19588         b_status=$(barrier_stat)
19589         echo "Got barrier status at: $(date)"
19590         [ "$b_status" = "'thawing'" ] ||
19591                 error "(6) unexpected barrier status $b_status"
19592
19593         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
19594         wait
19595         b_status=$(barrier_stat)
19596         [ "$b_status" = "'thawed'" ] ||
19597                 error "(7) unexpected barrier status $b_status"
19598
19599         #define OBD_FAIL_BARRIER_FAILURE        0x2203
19600         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2203
19601         do_facet mgs $LCTL barrier_freeze $FSNAME
19602
19603         b_status=$(barrier_stat)
19604         [ "$b_status" = "'failed'" ] ||
19605                 error "(8) unexpected barrier status $b_status"
19606
19607         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
19608         do_facet mgs $LCTL barrier_thaw $FSNAME
19609
19610         post_801
19611 }
19612 run_test 801a "write barrier user interfaces and stat machine"
19613
19614 test_801b() {
19615         prep_801
19616
19617         mkdir $DIR/$tdir || error "(1) fail to mkdir"
19618         createmany -d $DIR/$tdir/d 6 || "(2) fail to mkdir"
19619         touch $DIR/$tdir/d2/f10 || error "(3) fail to touch"
19620         touch $DIR/$tdir/d3/f11 || error "(4) fail to touch"
19621         touch $DIR/$tdir/d4/f12 || error "(5) fail to touch"
19622
19623         cancel_lru_locks mdc
19624
19625         # 180 seconds should be long enough
19626         do_facet mgs $LCTL barrier_freeze $FSNAME 180
19627
19628         local b_status=$(barrier_stat)
19629         [ "$b_status" = "'frozen'" ] ||
19630                 error "(6) unexpected barrier status $b_status"
19631
19632         mkdir $DIR/$tdir/d0/d10 &
19633         mkdir_pid=$!
19634
19635         touch $DIR/$tdir/d1/f13 &
19636         touch_pid=$!
19637
19638         ln $DIR/$tdir/d2/f10 $DIR/$tdir/d2/f14 &
19639         ln_pid=$!
19640
19641         mv $DIR/$tdir/d3/f11 $DIR/$tdir/d3/f15 &
19642         mv_pid=$!
19643
19644         rm -f $DIR/$tdir/d4/f12 &
19645         rm_pid=$!
19646
19647         stat $DIR/$tdir/d5 || error "(7) stat should succeed"
19648
19649         # To guarantee taht the 'stat' is not blocked
19650         b_status=$(barrier_stat)
19651         [ "$b_status" = "'frozen'" ] ||
19652                 error "(8) unexpected barrier status $b_status"
19653
19654         # let above commands to run at background
19655         sleep 5
19656
19657         ps -p $mkdir_pid || error "(9) mkdir should be blocked"
19658         ps -p $touch_pid || error "(10) touch should be blocked"
19659         ps -p $ln_pid || error "(11) link should be blocked"
19660         ps -p $mv_pid || error "(12) rename should be blocked"
19661         ps -p $rm_pid || error "(13) unlink should be blocked"
19662
19663         b_status=$(barrier_stat)
19664         [ "$b_status" = "'frozen'" ] ||
19665                 error "(14) unexpected barrier status $b_status"
19666
19667         do_facet mgs $LCTL barrier_thaw $FSNAME
19668         b_status=$(barrier_stat)
19669         [ "$b_status" = "'thawed'" ] ||
19670                 error "(15) unexpected barrier status $b_status"
19671
19672         wait $mkdir_pid || error "(16) mkdir should succeed"
19673         wait $touch_pid || error "(17) touch should succeed"
19674         wait $ln_pid || error "(18) link should succeed"
19675         wait $mv_pid || error "(19) rename should succeed"
19676         wait $rm_pid || error "(20) unlink should succeed"
19677
19678         post_801
19679 }
19680 run_test 801b "modification will be blocked by write barrier"
19681
19682 test_801c() {
19683         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19684
19685         prep_801
19686
19687         stop mds2 || error "(1) Fail to stop mds2"
19688
19689         do_facet mgs $LCTL barrier_freeze $FSNAME 30
19690
19691         local b_status=$(barrier_stat)
19692         [ "$b_status" = "'expired'" -o "$b_status" = "'failed'" ] || {
19693                 do_facet mgs $LCTL barrier_thaw $FSNAME
19694                 error "(2) unexpected barrier status $b_status"
19695         }
19696
19697         do_facet mgs $LCTL barrier_rescan $FSNAME ||
19698                 error "(3) Fail to rescan barrier bitmap"
19699
19700         do_facet mgs $LCTL barrier_freeze $FSNAME 10
19701
19702         b_status=$(barrier_stat)
19703         [ "$b_status" = "'frozen'" ] ||
19704                 error "(4) unexpected barrier status $b_status"
19705
19706         do_facet mgs $LCTL barrier_thaw $FSNAME
19707         b_status=$(barrier_stat)
19708         [ "$b_status" = "'thawed'" ] ||
19709                 error "(5) unexpected barrier status $b_status"
19710
19711         local devname=$(mdsdevname 2)
19712
19713         start mds2 $devname $MDS_MOUNT_OPTS || error "(6) Fail to start mds2"
19714
19715         do_facet mgs $LCTL barrier_rescan $FSNAME ||
19716                 error "(7) Fail to rescan barrier bitmap"
19717
19718         post_801
19719 }
19720 run_test 801c "rescan barrier bitmap"
19721
19722 saved_MGS_MOUNT_OPTS=$MGS_MOUNT_OPTS
19723 saved_MDS_MOUNT_OPTS=$MDS_MOUNT_OPTS
19724 saved_OST_MOUNT_OPTS=$OST_MOUNT_OPTS
19725
19726 cleanup_802a() {
19727         trap 0
19728
19729         stopall
19730         MGS_MOUNT_OPTS=$saved_MGS_MOUNT_OPTS
19731         MDS_MOUNT_OPTS=$saved_MDS_MOUNT_OPTS
19732         OST_MOUNT_OPTS=$saved_OST_MOUNT_OPTS
19733         setupall
19734 }
19735
19736 test_802a() {
19737
19738         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
19739         [[ $OST1_VERSION -lt $(version_code 2.9.55) ]] &&
19740                 skip "Need server version at least 2.9.55"
19741
19742         [[ $ENABLE_QUOTA ]] && skip "Quota enabled for read-only test"
19743
19744         mkdir $DIR/$tdir || error "(1) fail to mkdir"
19745
19746         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
19747                 error "(2) Fail to copy"
19748
19749         trap cleanup_802a EXIT
19750
19751         # sync by force before remount as readonly
19752         sync; sync_all_data; sleep 3; sync_all_data
19753
19754         stopall
19755
19756         MGS_MOUNT_OPTS=$(csa_add "$MGS_MOUNT_OPTS" -o rdonly_dev)
19757         MDS_MOUNT_OPTS=$(csa_add "$MDS_MOUNT_OPTS" -o rdonly_dev)
19758         OST_MOUNT_OPTS=$(csa_add "$OST_MOUNT_OPTS" -o rdonly_dev)
19759
19760         echo "Mount the server as read only"
19761         setupall server_only || error "(3) Fail to start servers"
19762
19763         echo "Mount client without ro should fail"
19764         mount_client $MOUNT &&
19765                 error "(4) Mount client without 'ro' should fail"
19766
19767         echo "Mount client with ro should succeed"
19768         mount_client $MOUNT ro ||
19769                 error "(5) Mount client with 'ro' should succeed"
19770
19771         echo "Modify should be refused"
19772         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
19773
19774         echo "Read should be allowed"
19775         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
19776                 error "(7) Read should succeed under ro mode"
19777
19778         cleanup_802a
19779 }
19780 run_test 802a "simulate readonly device"
19781
19782 test_802b() {
19783         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19784         remote_mds_nodsh && skip "remote MDS with nodsh"
19785
19786         do_facet $SINGLEMDS $LCTL get_param mdt.*.readonly ||
19787                 skip "readonly option not available"
19788
19789         $LFS mkdir -i 0 -c 1 $DIR/$tdir || error "(1) fail to mkdir"
19790
19791         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
19792                 error "(2) Fail to copy"
19793
19794         # write back all cached data before setting MDT to readonly
19795         cancel_lru_locks
19796         sync_all_data
19797
19798         do_facet $SINGLEMDS $LCTL set_param mdt.*.readonly=1
19799         stack_trap "do_facet $SINGLEMDS $LCTL set_param mdt.*.readonly=0" EXIT
19800
19801         echo "Modify should be refused"
19802         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
19803
19804         echo "Read should be allowed"
19805         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
19806                 error "(7) Read should succeed under ro mode"
19807
19808         # disable readonly
19809         do_facet $SINGLEMDS $LCTL set_param mdt.*.readonly=0
19810 }
19811 run_test 802b "be able to set MDTs to readonly"
19812
19813 test_803() {
19814         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19815         [ $MDS1_VERSION -lt $(version_code 2.10.54) ] &&
19816                 skip "MDS needs to be newer than 2.10.54"
19817
19818         mkdir -p $DIR/$tdir
19819         # Create some objects on all MDTs to trigger related logs objects
19820         for idx in $(seq $MDSCOUNT); do
19821                 $LFS mkdir -c $MDSCOUNT -i $((idx % $MDSCOUNT)) \
19822                         $DIR/$tdir/dir${idx} ||
19823                         error "Fail to create $DIR/$tdir/dir${idx}"
19824         done
19825
19826         sync; sleep 3
19827         wait_delete_completed # ensure old test cleanups are finished
19828         echo "before create:"
19829         $LFS df -i $MOUNT
19830         local before_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19831
19832         for i in {1..10}; do
19833                 $LFS mkdir -c 1 -i 1 $DIR/$tdir/foo$i ||
19834                         error "Fail to create $DIR/$tdir/foo$i"
19835         done
19836
19837         sync; sleep 3
19838         echo "after create:"
19839         $LFS df -i $MOUNT
19840         local after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19841
19842         # allow for an llog to be cleaned up during the test
19843         [ $after_used -ge $((before_used + 10 - 1)) ] ||
19844                 error "before ($before_used) + 10 > after ($after_used)"
19845
19846         for i in {1..10}; do
19847                 rm -rf $DIR/$tdir/foo$i ||
19848                         error "Fail to remove $DIR/$tdir/foo$i"
19849         done
19850
19851         sleep 3 # avoid MDT return cached statfs
19852         wait_delete_completed
19853         echo "after unlink:"
19854         $LFS df -i $MOUNT
19855         after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19856
19857         # allow for an llog to be created during the test
19858         [ $after_used -le $((before_used + 1)) ] ||
19859                 error "after ($after_used) > before ($before_used) + 1"
19860 }
19861 run_test 803 "verify agent object for remote object"
19862
19863 test_804() {
19864         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19865         [ $MDS1_VERSION -lt $(version_code 2.10.54) ] &&
19866                 skip "MDS needs to be newer than 2.10.54"
19867         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
19868
19869         mkdir -p $DIR/$tdir
19870         $LFS mkdir -c 1 -i 1 $DIR/$tdir/dir0 ||
19871                 error "Fail to create $DIR/$tdir/dir0"
19872
19873         local fid=$($LFS path2fid $DIR/$tdir/dir0)
19874         local dev=$(mdsdevname 2)
19875
19876         do_facet mds2 "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19877                 grep ${fid} || error "NOT found agent entry for dir0"
19878
19879         $LFS mkdir -c $MDSCOUNT -i 0 $DIR/$tdir/dir1 ||
19880                 error "Fail to create $DIR/$tdir/dir1"
19881
19882         touch $DIR/$tdir/dir1/foo0 ||
19883                 error "Fail to create $DIR/$tdir/dir1/foo0"
19884         fid=$($LFS path2fid $DIR/$tdir/dir1/foo0)
19885         local rc=0
19886
19887         for idx in $(seq $MDSCOUNT); do
19888                 dev=$(mdsdevname $idx)
19889                 do_facet mds${idx} \
19890                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19891                         grep ${fid} && rc=$idx
19892         done
19893
19894         mv $DIR/$tdir/dir1/foo0 $DIR/$tdir/dir1/foo1 ||
19895                 error "Fail to rename foo0 to foo1"
19896         if [ $rc -eq 0 ]; then
19897                 for idx in $(seq $MDSCOUNT); do
19898                         dev=$(mdsdevname $idx)
19899                         do_facet mds${idx} \
19900                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19901                         grep ${fid} && rc=$idx
19902                 done
19903         fi
19904
19905         mv $DIR/$tdir/dir1/foo1 $DIR/$tdir/dir1/foo2 ||
19906                 error "Fail to rename foo1 to foo2"
19907         if [ $rc -eq 0 ]; then
19908                 for idx in $(seq $MDSCOUNT); do
19909                         dev=$(mdsdevname $idx)
19910                         do_facet mds${idx} \
19911                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19912                         grep ${fid} && rc=$idx
19913                 done
19914         fi
19915
19916         [ $rc -ne 0 ] || error "NOT found agent entry for foo"
19917
19918         ln $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir0/guard ||
19919                 error "Fail to link to $DIR/$tdir/dir1/foo2"
19920         mv $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir1/foo0 ||
19921                 error "Fail to rename foo2 to foo0"
19922         unlink $DIR/$tdir/dir1/foo0 ||
19923                 error "Fail to unlink $DIR/$tdir/dir1/foo0"
19924         rm -rf $DIR/$tdir/dir0 ||
19925                 error "Fail to rm $DIR/$tdir/dir0"
19926
19927         for idx in $(seq $MDSCOUNT); do
19928                 dev=$(mdsdevname $idx)
19929                 rc=0
19930
19931                 stop mds${idx}
19932                 run_e2fsck $(facet_active_host mds$idx) $dev -n ||
19933                         rc=$?
19934                 start mds${idx} $dev $MDS_MOUNT_OPTS ||
19935                         error "mount mds$idx failed"
19936                 df $MOUNT > /dev/null 2>&1
19937
19938                 # e2fsck should not return error
19939                 [ $rc -eq 0 ] ||
19940                         error "e2fsck detected error on MDT${idx}: rc=$rc"
19941         done
19942 }
19943 run_test 804 "verify agent entry for remote entry"
19944
19945 cleanup_805() {
19946         do_facet $SINGLEMDS zfs set quota=$old $fsset
19947         unlinkmany $DIR/$tdir/f- 1000000
19948         trap 0
19949 }
19950
19951 test_805() {
19952         local zfs_version=$(do_node $SINGLEMDS cat /sys/module/zfs/version)
19953         [ "$mds1_FSTYPE" != "zfs" ] && skip "ZFS specific test"
19954         [ $(version_code $zfs_version) -lt $(version_code 0.7.2) ] &&
19955                 skip "netfree not implemented before 0.7"
19956         [[ $MDS1_VERSION -ge $(version_code 2.10.57) ]] ||
19957                 skip "Need MDS version at least 2.10.57"
19958
19959         local fsset
19960         local freekb
19961         local usedkb
19962         local old
19963         local quota
19964         local pref="osd-zfs.lustre-MDT0000."
19965
19966         # limit available space on MDS dataset to meet nospace issue
19967         # quickly. then ZFS 0.7.2 can use reserved space if asked
19968         # properly (using netfree flag in osd_declare_destroy()
19969         fsset=$(do_facet $SINGLEMDS lctl get_param -n $pref.mntdev)
19970         old=$(do_facet $SINGLEMDS zfs get -H quota $fsset | \
19971                 gawk '{print $3}')
19972         freekb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytesfree)
19973         usedkb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytestotal)
19974         let "usedkb=usedkb-freekb"
19975         let "freekb=freekb/2"
19976         if let "freekb > 5000"; then
19977                 let "freekb=5000"
19978         fi
19979         do_facet $SINGLEMDS zfs set quota=$(((usedkb+freekb)*1024)) $fsset
19980         trap cleanup_805 EXIT
19981         mkdir $DIR/$tdir
19982         $LFS setstripe -E 1M -L mdt $DIR/$tdir || error "DoM not working"
19983         createmany -m $DIR/$tdir/f- 1000000 && error "ENOSPC wasn't met"
19984         rm -rf $DIR/$tdir || error "not able to remove"
19985         do_facet $SINGLEMDS zfs set quota=$old $fsset
19986         trap 0
19987 }
19988 run_test 805 "ZFS can remove from full fs"
19989
19990 # Size-on-MDS test
19991 check_lsom_data()
19992 {
19993         local file=$1
19994         local size=$($LFS getsom -s $file)
19995         local expect=$(stat -c %s $file)
19996
19997         [[ $size == $expect ]] ||
19998                 error "$file expected size: $expect, got: $size"
19999
20000         local blocks=$($LFS getsom -b $file)
20001         expect=$(stat -c %b $file)
20002         [[ $blocks == $expect ]] ||
20003                 error "$file expected blocks: $expect, got: $blocks"
20004 }
20005
20006 check_lsom_size()
20007 {
20008         local size=$($LFS getsom -s $1)
20009         local expect=$2
20010
20011         [[ $size == $expect ]] ||
20012                 error "$file expected size: $expect, got: $size"
20013 }
20014
20015 test_806() {
20016         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
20017                 skip "Need MDS version at least 2.11.52"
20018
20019         local bs=1048576
20020
20021         touch $DIR/$tfile || error "touch $tfile failed"
20022
20023         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
20024         save_lustre_params client "llite.*.xattr_cache" > $save
20025         lctl set_param llite.*.xattr_cache=0
20026         stack_trap "restore_lustre_params < $save; rm -f $save" EXIT
20027
20028         # single-threaded write
20029         echo "Test SOM for single-threaded write"
20030         dd if=/dev/zero of=$DIR/$tfile bs=$bs count=1 ||
20031                 error "write $tfile failed"
20032         check_lsom_size $DIR/$tfile $bs
20033
20034         local num=32
20035         local size=$(($num * $bs))
20036         local offset=0
20037         local i
20038
20039         echo "Test SOM for single client multi-threaded($num) write"
20040         $TRUNCATE $DIR/$tfile 0
20041         for ((i = 0; i < $num; i++)); do
20042                 $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
20043                 local pids[$i]=$!
20044                 offset=$((offset + $bs))
20045         done
20046         for (( i=0; i < $num; i++ )); do
20047                 wait ${pids[$i]}
20048         done
20049         check_lsom_size $DIR/$tfile $size
20050
20051         $TRUNCATE $DIR/$tfile 0
20052         for ((i = 0; i < $num; i++)); do
20053                 offset=$((offset - $bs))
20054                 $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
20055                 local pids[$i]=$!
20056         done
20057         for (( i=0; i < $num; i++ )); do
20058                 wait ${pids[$i]}
20059         done
20060         check_lsom_size $DIR/$tfile $size
20061
20062         # multi-client wirtes
20063         num=$(get_node_count ${CLIENTS//,/ })
20064         size=$(($num * $bs))
20065         offset=0
20066         i=0
20067
20068         echo "Test SOM for multi-client ($num) writes"
20069         $TRUNCATE $DIR/$tfile 0
20070         for client in ${CLIENTS//,/ }; do
20071                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
20072                 local pids[$i]=$!
20073                 i=$((i + 1))
20074                 offset=$((offset + $bs))
20075         done
20076         for (( i=0; i < $num; i++ )); do
20077                 wait ${pids[$i]}
20078         done
20079         check_lsom_size $DIR/$tfile $offset
20080
20081         i=0
20082         $TRUNCATE $DIR/$tfile 0
20083         for client in ${CLIENTS//,/ }; do
20084                 offset=$((offset - $bs))
20085                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
20086                 local pids[$i]=$!
20087                 i=$((i + 1))
20088         done
20089         for (( i=0; i < $num; i++ )); do
20090                 wait ${pids[$i]}
20091         done
20092         check_lsom_size $DIR/$tfile $size
20093
20094         # verify truncate
20095         echo "Test SOM for truncate"
20096         $TRUNCATE $DIR/$tfile 1048576
20097         check_lsom_size $DIR/$tfile 1048576
20098         $TRUNCATE $DIR/$tfile 1234
20099         check_lsom_size $DIR/$tfile 1234
20100
20101         # verify SOM blocks count
20102         echo "Verify SOM block count"
20103         $TRUNCATE $DIR/$tfile 0
20104         $MULTIOP $DIR/$tfile oO_TRUNC:O_RDWR:w1048576YSc ||
20105                 error "failed to write file $tfile"
20106         check_lsom_data $DIR/$tfile
20107 }
20108 run_test 806 "Verify Lazy Size on MDS"
20109
20110 test_807() {
20111         [ -n "$FILESET" ] && skip "Not functional for FILESET set"
20112         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
20113                 skip "Need MDS version at least 2.11.52"
20114
20115         # Registration step
20116         changelog_register || error "changelog_register failed"
20117         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
20118         changelog_users $SINGLEMDS | grep -q $cl_user ||
20119                 error "User $cl_user not found in changelog_users"
20120
20121         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
20122         save_lustre_params client "llite.*.xattr_cache" > $save
20123         lctl set_param llite.*.xattr_cache=0
20124         stack_trap "restore_lustre_params < $save; rm -f $save" EXIT
20125
20126         rm -rf $DIR/$tdir || error "rm $tdir failed"
20127         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
20128         touch $DIR/$tdir/trunc || error "touch $tdir/trunc failed"
20129         $TRUNCATE $DIR/$tdir/trunc 1024 || error "truncate $tdir/trunc failed"
20130         $TRUNCATE $DIR/$tdir/trunc 1048576 ||
20131                 error "truncate $tdir/trunc failed"
20132
20133         local bs=1048576
20134         dd if=/dev/zero of=$DIR/$tdir/single_dd bs=$bs count=1 ||
20135                 error "write $tfile failed"
20136
20137         # multi-client wirtes
20138         local num=$(get_node_count ${CLIENTS//,/ })
20139         local offset=0
20140         local i=0
20141
20142         echo "Test SOM for multi-client ($num) writes"
20143         touch $DIR/$tfile || error "touch $tfile failed"
20144         $TRUNCATE $DIR/$tfile 0
20145         for client in ${CLIENTS//,/ }; do
20146                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
20147                 local pids[$i]=$!
20148                 i=$((i + 1))
20149                 offset=$((offset + $bs))
20150         done
20151         for (( i=0; i < $num; i++ )); do
20152                 wait ${pids[$i]}
20153         done
20154
20155         sleep 5
20156         $LSOM_SYNC -u $cl_user -m $FSNAME-MDT0000 $MOUNT
20157         check_lsom_data $DIR/$tdir/trunc
20158         check_lsom_data $DIR/$tdir/single_dd
20159         check_lsom_data $DIR/$tfile
20160
20161         rm -rf $DIR/$tdir
20162         # Deregistration step
20163         changelog_deregister || error "changelog_deregister failed"
20164 }
20165 run_test 807 "verify LSOM syncing tool"
20166
20167 check_som_nologged()
20168 {
20169         local lines=$($LFS changelog $FSNAME-MDT0000 |
20170                 grep 'x=trusted.som' | wc -l)
20171         [ $lines -ne 0 ] && error "trusted.som xattr is logged in Changelogs"
20172 }
20173
20174 test_808() {
20175         [ $MDS1_VERSION -lt $(version_code 2.11.55) ] &&
20176                 skip "Need MDS version at least 2.11.55"
20177
20178         # Registration step
20179         changelog_register || error "changelog_register failed"
20180
20181         touch $DIR/$tfile || error "touch $tfile failed"
20182         check_som_nologged
20183
20184         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=1 ||
20185                 error "write $tfile failed"
20186         check_som_nologged
20187
20188         $TRUNCATE $DIR/$tfile 1234
20189         check_som_nologged
20190
20191         $TRUNCATE $DIR/$tfile 1048576
20192         check_som_nologged
20193
20194         # Deregistration step
20195         changelog_deregister || error "changelog_deregister failed"
20196 }
20197 run_test 808 "Check trusted.som xattr not logged in Changelogs"
20198
20199 check_som_nodata()
20200 {
20201         $LFS getsom $1
20202         [[ $? -eq 61 ]] || error "DoM-only file $1 has SOM xattr"
20203 }
20204
20205 test_809() {
20206         [ $MDS1_VERSION -lt $(version_code 2.11.56) ] &&
20207                 skip "Need MDS version at least 2.11.56"
20208
20209         $LFS setstripe -E 1M -L mdt $DIR/$tfile ||
20210                 error "failed to create DoM-only file $DIR/$tfile"
20211         touch $DIR/$tfile || error "touch $tfile failed"
20212         check_som_nodata $DIR/$tfile
20213
20214         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 ||
20215                 error "write $tfile failed"
20216         check_som_nodata $DIR/$tfile
20217
20218         $TRUNCATE $DIR/$tfile 1234
20219         check_som_nodata $DIR/$tfile
20220
20221         $TRUNCATE $DIR/$tfile 4097
20222         check_som_nodata $DIR/$file
20223 }
20224 run_test 809 "Verify no SOM xattr store for DoM-only files"
20225
20226 test_810() {
20227         local ORIG
20228         local CSUM
20229
20230         # t10 seem to dislike partial pages
20231         lctl set_param osc.*.checksum_type=adler
20232         lctl set_param fail_loc=0x411
20233         dd if=/dev/urandom of=$DIR/$tfile bs=10240 count=2
20234         ORIG=$(md5sum $DIR/$tfile)
20235         lctl set_param ldlm.namespaces.*osc*.lru_size=clear
20236         CSUM=$(md5sum $DIR/$tfile)
20237         set_checksum_type adler
20238         if [ "$ORIG" != "$CSUM" ]; then
20239                 error "$ORIG != $CSUM"
20240         fi
20241 }
20242 run_test 810 "partial page writes on ZFS (LU-11663)"
20243
20244 test_811() {
20245         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.56) ] &&
20246                 skip "Need MDS version at least 2.11.56"
20247
20248         #define OBD_FAIL_MDS_ORPHAN_DELETE      0x165
20249         do_facet mds1 $LCTL set_param fail_loc=0x165
20250         $MULTIOP $DIR/$tfile Ouc || error "multiop failed"
20251
20252         stop mds1
20253         start mds1 $(mdsdevname 1) $MDS_MOUNT_OPTS
20254
20255         sleep 5
20256         [[ $(do_facet mds1 pgrep orph_.*-MDD | wc -l) -eq 0 ]] ||
20257                 error "MDD orphan cleanup thread not quit"
20258 }
20259 run_test 811 "orphan name stub can be cleaned up in startup"
20260
20261 #
20262 # tests that do cleanup/setup should be run at the end
20263 #
20264
20265 test_900() {
20266         [ $PARALLEL == "yes" ] && skip "skip parallel run"
20267         local ls
20268
20269         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
20270         $LCTL set_param fail_loc=0x903
20271
20272         cancel_lru_locks MGC
20273
20274         FAIL_ON_ERROR=true cleanup
20275         FAIL_ON_ERROR=true setup
20276 }
20277 run_test 900 "umount should not race with any mgc requeue thread"
20278
20279 complete $SECONDS
20280 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
20281 check_and_cleanup_lustre
20282 if [ "$I_MOUNTED" != "yes" ]; then
20283         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
20284 fi
20285 exit_status