Whamcloud - gitweb
LU-11878 tests: don't fork-bomb sanity test_103b
[fs/lustre-release.git] / lustre / tests / sanity.sh
1 #!/bin/bash
2 # -*- tab-width: 8; indent-tabs-mode: t; -*-
3 #
4 # Run select tests by setting ONLY, or as arguments to the script.
5 # Skip specific tests by setting EXCEPT.
6 #
7 # e.g. ONLY="22 23" or ONLY="`seq 32 39`" or EXCEPT="31"
8 set -e
9
10 ONLY=${ONLY:-"$*"}
11 # bug number for skipped test: LU-9693 LU-6493 LU-9693 LU-11058
12 ALWAYS_EXCEPT="$SANITY_EXCEPT  42a     42b     42c     77k"
13 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
14
15 # skipped tests: LU-8411 LU-9096 LU-9054 ..
16 ALWAYS_EXCEPT="  407     253     312     $ALWAYS_EXCEPT"
17
18 if $SHARED_KEY; then
19 # bug number for skipped tests: LU-9795 (all below)
20         ALWAYS_EXCEPT="$ALWAYS_EXCEPT   17n     60a     133g    300f"
21 fi
22
23 if [[ $(uname -m) = aarch64 ]]; then
24         # bug number:    LU-11596 (all below)
25         ALWAYS_EXCEPT+=" 42d 42e 63a 63b 64a 64b 64c"
26         # bug number:    LU-11671 LU-11665 LU-11594 LU-11667 LU-11729
27         ALWAYS_EXCEPT+=" 45       101c     103a     317      810"
28 fi
29
30 # Check Grants after these tests
31 GRANT_CHECK_LIST="$GRANT_CHECK_LIST 42a 42b 42c 42d 42e 63a 63b 64a 64b 64c"
32 SRCDIR=$(cd $(dirname $0); echo $PWD)
33 export PATH=$PATH:/sbin
34
35 TMP=${TMP:-/tmp}
36 OSC=${OSC:-"osc"}
37
38 CC=${CC:-cc}
39 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
40 CREATETEST=${CREATETEST:-createtest}
41 LFS=${LFS:-lfs}
42 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
43 LCTL=${LCTL:-lctl}
44 OPENFILE=${OPENFILE:-openfile}
45 OPENUNLINK=${OPENUNLINK:-openunlink}
46 export MULTIOP=${MULTIOP:-multiop}
47 READS=${READS:-"reads"}
48 MUNLINK=${MUNLINK:-munlink}
49 SOCKETSERVER=${SOCKETSERVER:-socketserver}
50 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
51 MEMHOG=${MEMHOG:-memhog}
52 DIRECTIO=${DIRECTIO:-directio}
53 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
54 DEF_STRIPE_COUNT=-1
55 CHECK_GRANT=${CHECK_GRANT:-"yes"}
56 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
57 export PARALLEL=${PARALLEL:-"no"}
58
59 export NAME=${NAME:-local}
60
61 SAVE_PWD=$PWD
62
63 CLEANUP=${CLEANUP:-:}
64 SETUP=${SETUP:-:}
65 TRACE=${TRACE:-""}
66 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
67 LUSTRE_TESTS_API_DIR=${LUSTRE_TESTS_API_DIR:-${LUSTRE}/tests/clientapi}
68 . $LUSTRE/tests/test-framework.sh
69 init_test_env $@
70 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
71 init_logging
72
73 #                                  5          12          (min)"
74 [ "$SLOW" = "no" ] && EXCEPT_SLOW="27m 64b 68 71 115 300o"
75
76 if [ $(facet_fstype $SINGLEMDS) = "zfs" ]; then
77         # bug number for skipped test: LU-1957
78         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  180"
79         #                                               13    (min)"
80         [ "$SLOW" = "no" ] && EXCEPT_SLOW="$EXCEPT_SLOW 51b"
81 fi
82
83 # Get the SLES distro version
84 #
85 # Returns a version string that should only be used in comparing
86 # strings returned by version_code()
87 sles_version_code()
88 {
89         local version=$(grep VERSION_ID /etc/os-release | cut -d'"' -f2)
90
91         # All SuSE Linux versions have one decimal. version_code expects two
92         local sles_version=$version.0
93         version_code $sles_version
94 }
95
96 # Check if we are running on Ubuntu or SLES so we can make decisions on
97 # what tests to run
98 if [ -r /etc/SuSE-release ]; then
99         sles_version=$(sles_version_code)
100         [ $sles_version -lt $(version_code 11.4.0) ] &&
101                 # bug number for skipped test: LU-4341
102                 ALWAYS_EXCEPT="$ALWAYS_EXCEPT  170"
103         [ $sles_version -lt $(version_code 12.0.0) ] &&
104                 # bug number for skipped test: LU-3703
105                 ALWAYS_EXCEPT="$ALWAYS_EXCEPT  234"
106 elif [ -r /etc/os-release ]; then
107         if grep -qi ubuntu /etc/os-release; then
108                 ubuntu_version=$(version_code $(sed -n -e 's/"//g' \
109                                                 -e 's/^VERSION=//p' \
110                                                 /etc/os-release |
111                                                 awk '{ print $1 }'))
112
113                 if [[ $ubuntu_version -gt $(version_code 16.0.0) ]]; then
114                         # bug number for skipped test:
115                         #                LU-10334 LU-10366
116                         ALWAYS_EXCEPT+=" 103a     410"
117                 fi
118         fi
119 fi
120
121 FAIL_ON_ERROR=false
122
123 cleanup() {
124         echo -n "cln.."
125         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
126         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
127 }
128 setup() {
129         echo -n "mnt.."
130         load_modules
131         setupall || exit 10
132         echo "done"
133 }
134
135 check_swap_layouts_support()
136 {
137         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
138                 skip "Does not support layout lock."
139 }
140
141 check_and_setup_lustre
142 DIR=${DIR:-$MOUNT}
143 assert_DIR
144
145 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
146
147 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
148 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
149 rm -rf $DIR/[Rdfs][0-9]*
150
151 # $RUNAS_ID may get set incorrectly somewhere else
152 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
153
154 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
155
156 build_test_filter
157
158 if [ "${ONLY}" = "MOUNT" ] ; then
159         echo "Lustre is up, please go on"
160         exit
161 fi
162
163 echo "preparing for tests involving mounts"
164 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
165 touch $EXT2_DEV
166 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
167 echo # add a newline after mke2fs.
168
169 umask 077
170
171 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
172 lctl set_param debug=-1 2> /dev/null || true
173 test_0a() {
174         touch $DIR/$tfile
175         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
176         rm $DIR/$tfile
177         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
178 }
179 run_test 0a "touch; rm ====================="
180
181 test_0b() {
182         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
183         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
184 }
185 run_test 0b "chmod 0755 $DIR ============================="
186
187 test_0c() {
188         $LCTL get_param mdc.*.import | grep "state: FULL" ||
189                 error "import not FULL"
190         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
191                 error "bad target"
192 }
193 run_test 0c "check import proc"
194
195 test_0d() { # LU-3397
196         [ $(lustre_version_code mgs) -lt $(version_code 2.10.57) ] &&
197                 skip "proc exports not supported before 2.10.57"
198
199         local mgs_exp="mgs.MGS.exports"
200         local client_uuid=$($LCTL get_param -n mgc.*.uuid)
201         local exp_client_nid
202         local exp_client_version
203         local exp_val
204         local imp_val
205         local temp_imp=$DIR/$tfile.import
206         local temp_exp=$DIR/$tfile.export
207
208         # save mgc import file to $temp_imp
209         $LCTL get_param mgc.*.import | tee $temp_imp
210         # Check if client uuid is found in MGS export
211         for exp_client_nid in $(do_facet mgs $LCTL get_param -N $mgs_exp.*); do
212                 [ $(do_facet mgs $LCTL get_param -n $exp_client_nid.uuid) == \
213                         $client_uuid ] &&
214                         break;
215         done
216         # save mgs export file to $temp_exp
217         do_facet mgs $LCTL get_param $exp_client_nid.export | tee $temp_exp
218
219         # Compare the value of field "connect_flags"
220         imp_val=$(grep "connect_flags" $temp_imp)
221         exp_val=$(grep "connect_flags" $temp_exp)
222         [ "$exp_val" == "$imp_val" ] ||
223                 error "export flags '$exp_val' != import flags '$imp_val'"
224
225         # Compare the value of client version
226         exp_client_version=$(awk '/target_version:/ { print $2 }' $temp_exp)
227         exp_val=$(version_code $exp_client_version)
228         imp_val=$(lustre_version_code client)
229         [ "$exp_val" == "$imp_val" ] ||
230                 error "export client version '$exp_val' != '$imp_val'"
231 }
232 run_test 0d "check export proc ============================="
233
234 test_1() {
235         test_mkdir $DIR/$tdir
236         test_mkdir $DIR/$tdir/d2
237         mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
238         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
239         rmdir $DIR/$tdir/d2
240         rmdir $DIR/$tdir
241         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
242 }
243 run_test 1 "mkdir; remkdir; rmdir"
244
245 test_2() {
246         test_mkdir $DIR/$tdir
247         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
248         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
249         rm -r $DIR/$tdir
250         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
251 }
252 run_test 2 "mkdir; touch; rmdir; check file"
253
254 test_3() {
255         test_mkdir $DIR/$tdir
256         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
257         touch $DIR/$tdir/$tfile
258         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
259         rm -r $DIR/$tdir
260         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
261 }
262 run_test 3 "mkdir; touch; rmdir; check dir"
263
264 # LU-4471 - failed rmdir on remote directories still removes directory on MDT0
265 test_4() {
266         test_mkdir -i 1 $DIR/$tdir
267
268         touch $DIR/$tdir/$tfile ||
269                 error "Create file under remote directory failed"
270
271         rmdir $DIR/$tdir &&
272                 error "Expect error removing in-use dir $DIR/$tdir"
273
274         test -d $DIR/$tdir || error "Remote directory disappeared"
275
276         rm -rf $DIR/$tdir || error "remove remote dir error"
277 }
278 run_test 4 "mkdir; touch dir/file; rmdir; checkdir (expect error)"
279
280 test_5() {
281         test_mkdir $DIR/$tdir
282         test_mkdir $DIR/$tdir/d2
283         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
284         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
285         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
286 }
287 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2"
288
289 test_6a() {
290         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
291         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
292         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
293                 error "$tfile does not have perm 0666 or UID $UID"
294         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
295         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
296                 error "$tfile should be 0666 and owned by UID $UID"
297 }
298 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
299
300 test_6c() {
301         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
302
303         touch $DIR/$tfile
304         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
305         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
306                 error "$tfile should be owned by UID $RUNAS_ID"
307         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
308         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
309                 error "$tfile should be owned by UID $RUNAS_ID"
310 }
311 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
312
313 test_6e() {
314         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
315
316         touch $DIR/$tfile
317         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
318         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
319                 error "$tfile should be owned by GID $UID"
320         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
321         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
322                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
323 }
324 run_test 6e "touch+chgrp $tfile; $RUNAS chgrp $tfile (should return error)"
325
326 test_6g() {
327         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
328
329         test_mkdir $DIR/$tdir
330         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
331         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
332         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
333         test_mkdir $DIR/$tdir/d/subdir
334         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
335                 error "$tdir/d/subdir should be GID $RUNAS_GID"
336         if [[ $MDSCOUNT -gt 1 ]]; then
337                 # check remote dir sgid inherite
338                 $LFS mkdir -i 0 $DIR/$tdir.local ||
339                         error "mkdir $tdir.local failed"
340                 chmod g+s $DIR/$tdir.local ||
341                         error "chmod $tdir.local failed"
342                 chgrp $RUNAS_GID $DIR/$tdir.local ||
343                         error "chgrp $tdir.local failed"
344                 $LFS mkdir -i 1 $DIR/$tdir.local/$tdir.remote ||
345                         error "mkdir $tdir.remote failed"
346                 $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir.local/$tdir.remote ||
347                         error "$tdir.remote should be owned by $UID.$RUNAS_ID"
348                 $CHECKSTAT -p 02755 $DIR/$tdir.local/$tdir.remote ||
349                         error "$tdir.remote should be mode 02755"
350         fi
351 }
352 run_test 6g "verify new dir in sgid dir inherits group"
353
354 test_6h() { # bug 7331
355         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
356
357         touch $DIR/$tfile || error "touch failed"
358         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
359         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
360                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
361         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
362                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
363 }
364 run_test 6h "$RUNAS chown RUNAS_ID.0 .../$tfile (should return error)"
365
366 test_7a() {
367         test_mkdir $DIR/$tdir
368         $MCREATE $DIR/$tdir/$tfile
369         chmod 0666 $DIR/$tdir/$tfile
370         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
371                 error "$tdir/$tfile should be mode 0666"
372 }
373 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
374
375 test_7b() {
376         if [ ! -d $DIR/$tdir ]; then
377                 test_mkdir $DIR/$tdir
378         fi
379         $MCREATE $DIR/$tdir/$tfile
380         echo -n foo > $DIR/$tdir/$tfile
381         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
382         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
383 }
384 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
385
386 test_8() {
387         test_mkdir $DIR/$tdir
388         touch $DIR/$tdir/$tfile
389         chmod 0666 $DIR/$tdir/$tfile
390         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
391                 error "$tfile mode not 0666"
392 }
393 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
394
395 test_9() {
396         test_mkdir $DIR/$tdir
397         test_mkdir $DIR/$tdir/d2
398         test_mkdir $DIR/$tdir/d2/d3
399         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
400 }
401 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
402
403 test_10() {
404         test_mkdir $DIR/$tdir
405         test_mkdir $DIR/$tdir/d2
406         touch $DIR/$tdir/d2/$tfile
407         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
408                 error "$tdir/d2/$tfile not a file"
409 }
410 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
411
412 test_11() {
413         test_mkdir $DIR/$tdir
414         test_mkdir $DIR/$tdir/d2
415         chmod 0666 $DIR/$tdir/d2
416         chmod 0705 $DIR/$tdir/d2
417         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
418                 error "$tdir/d2 mode not 0705"
419 }
420 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
421
422 test_12() {
423         test_mkdir $DIR/$tdir
424         touch $DIR/$tdir/$tfile
425         chmod 0666 $DIR/$tdir/$tfile
426         chmod 0654 $DIR/$tdir/$tfile
427         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
428                 error "$tdir/d2 mode not 0654"
429 }
430 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
431
432 test_13() {
433         test_mkdir $DIR/$tdir
434         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
435         >  $DIR/$tdir/$tfile
436         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
437                 error "$tdir/$tfile size not 0 after truncate"
438 }
439 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
440
441 test_14() {
442         test_mkdir $DIR/$tdir
443         touch $DIR/$tdir/$tfile
444         rm $DIR/$tdir/$tfile
445         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
446 }
447 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
448
449 test_15() {
450         test_mkdir $DIR/$tdir
451         touch $DIR/$tdir/$tfile
452         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
453         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
454                 error "$tdir/${tfile_2} not a file after rename"
455         rm $DIR/$tdir/${tfile}_2 || error "unlink failed after rename"
456 }
457 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
458
459 test_16() {
460         test_mkdir $DIR/$tdir
461         touch $DIR/$tdir/$tfile
462         rm -rf $DIR/$tdir/$tfile
463         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
464 }
465 run_test 16 "touch .../d16/f; rm -rf .../d16/f"
466
467 test_17a() {
468         test_mkdir $DIR/$tdir
469         touch $DIR/$tdir/$tfile
470         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
471         ls -l $DIR/$tdir
472         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
473                 error "$tdir/l-exist not a symlink"
474         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
475                 error "$tdir/l-exist not referencing a file"
476         rm -f $DIR/$tdir/l-exist
477         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
478 }
479 run_test 17a "symlinks: create, remove (real)"
480
481 test_17b() {
482         test_mkdir $DIR/$tdir
483         ln -s no-such-file $DIR/$tdir/l-dangle
484         ls -l $DIR/$tdir
485         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
486                 error "$tdir/l-dangle not referencing no-such-file"
487         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
488                 error "$tdir/l-dangle not referencing non-existent file"
489         rm -f $DIR/$tdir/l-dangle
490         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
491 }
492 run_test 17b "symlinks: create, remove (dangling)"
493
494 test_17c() { # bug 3440 - don't save failed open RPC for replay
495         test_mkdir $DIR/$tdir
496         ln -s foo $DIR/$tdir/$tfile
497         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
498 }
499 run_test 17c "symlinks: open dangling (should return error)"
500
501 test_17d() {
502         test_mkdir $DIR/$tdir
503         ln -s foo $DIR/$tdir/$tfile
504         touch $DIR/$tdir/$tfile || error "creating to new symlink"
505 }
506 run_test 17d "symlinks: create dangling"
507
508 test_17e() {
509         test_mkdir $DIR/$tdir
510         local foo=$DIR/$tdir/$tfile
511         ln -s $foo $foo || error "create symlink failed"
512         ls -l $foo || error "ls -l failed"
513         ls $foo && error "ls not failed" || true
514 }
515 run_test 17e "symlinks: create recursive symlink (should return error)"
516
517 test_17f() {
518         test_mkdir $DIR/$tdir
519         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/$tdir/111
520         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/$tdir/222
521         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/$tdir/333
522         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/$tdir/444
523         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/$tdir/555
524         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
525         ls -l  $DIR/$tdir
526 }
527 run_test 17f "symlinks: long and very long symlink name"
528
529 # str_repeat(S, N) generate a string that is string S repeated N times
530 str_repeat() {
531         local s=$1
532         local n=$2
533         local ret=''
534         while [ $((n -= 1)) -ge 0 ]; do
535                 ret=$ret$s
536         done
537         echo $ret
538 }
539
540 # Long symlinks and LU-2241
541 test_17g() {
542         test_mkdir $DIR/$tdir
543         local TESTS="59 60 61 4094 4095"
544
545         # Fix for inode size boundary in 2.1.4
546         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
547                 TESTS="4094 4095"
548
549         # Patch not applied to 2.2 or 2.3 branches
550         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
551         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
552                 TESTS="4094 4095"
553
554         # skip long symlink name for rhel6.5.
555         # rhel6.5 has a limit (PATH_MAX - sizeof(struct filename))
556         grep -q '6.5' /etc/redhat-release &>/dev/null &&
557                 TESTS="59 60 61 4062 4063"
558
559         for i in $TESTS; do
560                 local SYMNAME=$(str_repeat 'x' $i)
561                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
562                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
563         done
564 }
565 run_test 17g "symlinks: really long symlink name and inode boundaries"
566
567 test_17h() { #bug 17378
568         [ $PARALLEL == "yes" ] && skip "skip parallel run"
569         remote_mds_nodsh && skip "remote MDS with nodsh"
570
571         local mdt_idx
572
573         test_mkdir $DIR/$tdir
574         mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
575         $LFS setstripe -c -1 $DIR/$tdir
576         #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
577         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
578         touch $DIR/$tdir/$tfile || true
579 }
580 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
581
582 test_17i() { #bug 20018
583         [ $PARALLEL == "yes" ] && skip "skip parallel run"
584         remote_mds_nodsh && skip "remote MDS with nodsh"
585
586         local foo=$DIR/$tdir/$tfile
587         local mdt_idx
588
589         test_mkdir -c1 $DIR/$tdir
590         mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
591         ln -s $foo $foo || error "create symlink failed"
592 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
593         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
594         ls -l $foo && error "error not detected"
595         return 0
596 }
597 run_test 17i "don't panic on short symlink (should return error)"
598
599 test_17k() { #bug 22301
600         [ $PARALLEL == "yes" ] && skip "skip parallel run"
601         [[ -z "$(which rsync 2>/dev/null)" ]] &&
602                 skip "no rsync command"
603         rsync --help | grep -q xattr ||
604                 skip_env "$(rsync --version | head -n1) does not support xattrs"
605         test_mkdir $DIR/$tdir
606         test_mkdir $DIR/$tdir.new
607         touch $DIR/$tdir/$tfile
608         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
609         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
610                 error "rsync failed with xattrs enabled"
611 }
612 run_test 17k "symlinks: rsync with xattrs enabled"
613
614 test_17l() { # LU-279
615         [[ -z "$(which getfattr 2>/dev/null)" ]] &&
616                 skip "no getfattr command"
617
618         test_mkdir $DIR/$tdir
619         touch $DIR/$tdir/$tfile
620         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
621         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
622                 # -h to not follow symlinks. -m '' to list all the xattrs.
623                 # grep to remove first line: '# file: $path'.
624                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
625                 do
626                         lgetxattr_size_check $path $xattr ||
627                                 error "lgetxattr_size_check $path $xattr failed"
628                 done
629         done
630 }
631 run_test 17l "Ensure lgetxattr's returned xattr size is consistent"
632
633 # LU-1540
634 test_17m() {
635         [ $PARALLEL == "yes" ] && skip "skip parallel run"
636         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
637                 skip_env "ldiskfs only test"
638         remote_mds_nodsh && skip "remote MDS with nodsh"
639         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
640         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
641                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks"
642
643         local short_sym="0123456789"
644         local wdir=$DIR/$tdir
645         local i
646
647         test_mkdir $wdir
648         long_sym=$short_sym
649         # create a long symlink file
650         for ((i = 0; i < 4; ++i)); do
651                 long_sym=${long_sym}${long_sym}
652         done
653
654         echo "create 512 short and long symlink files under $wdir"
655         for ((i = 0; i < 256; ++i)); do
656                 ln -sf ${long_sym}"a5a5" $wdir/long-$i
657                 ln -sf ${short_sym}"a5a5" $wdir/short-$i
658         done
659
660         echo "erase them"
661         rm -f $wdir/*
662         sync
663         wait_delete_completed
664
665         echo "recreate the 512 symlink files with a shorter string"
666         for ((i = 0; i < 512; ++i)); do
667                 # rewrite the symlink file with a shorter string
668                 ln -sf ${long_sym} $wdir/long-$i || error "long_sym failed"
669                 ln -sf ${short_sym} $wdir/short-$i || error "short_sym failed"
670         done
671
672         local mds_index=$(($($LFS getstripe -m $wdir) + 1))
673         local devname=$(mdsdevname $mds_index)
674
675         echo "stop and checking mds${mds_index}:"
676         # e2fsck should not return error
677         stop mds${mds_index}
678         run_e2fsck $(facet_active_host mds${mds_index}) $devname -n
679         rc=$?
680
681         start mds${mds_index} $devname $MDS_MOUNT_OPTS ||
682                 error "start mds${mds_index} failed"
683         df $MOUNT > /dev/null 2>&1
684         [ $rc -eq 0 ] ||
685                 error "e2fsck detected error for short/long symlink: rc=$rc"
686         rm -f $wdir/*
687 }
688 run_test 17m "run e2fsck against MDT which contains short/long symlink"
689
690 check_fs_consistency_17n() {
691         local mdt_index
692         local rc=0
693
694         # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
695         # so it only check MDT1/MDT2 instead of all of MDTs.
696         for mdt_index in 1 2; do
697                 local devname=$(mdsdevname $mdt_index)
698                 # e2fsck should not return error
699                 stop mds${mdt_index}
700                 run_e2fsck $(facet_active_host mds$mdt_index) $devname -n ||
701                         rc=$((rc + $?))
702
703                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS ||
704                         error "mount mds$mdt_index failed"
705                 df $MOUNT > /dev/null 2>&1
706         done
707         return $rc
708 }
709
710 test_17n() {
711         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
712         [ $PARALLEL == "yes" ] && skip "skip parallel run"
713         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
714                 skip_env "ldiskfs only test"
715         remote_mds_nodsh && skip "remote MDS with nodsh"
716         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
717         [ $(lustre_version_code $SINGLEMDS) -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         [ $(lustre_version_code $SINGLEMDS) -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         [ $(lustre_version_code $SINGLEMDS) -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         [ $(facet_fstype $SINGLEMDS) = "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         [[ $(lustre_version_code $SINGLEMDS) -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         [[ $(lustre_version_code $SINGLEMDS) -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 "$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         $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=$($GETSTRIPE -c $1)
1956         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1957         lmm_oid=$($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         $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                 [ $(lustre_version_code client) -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 "$GETSTRIPE -c $MOUNT | sed 's/  *//g'" "1" 20 ||
2090                 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
2091         local default_size=$($GETSTRIPE -S $MOUNT)
2092         local default_offset=$($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                 $SETSTRIPE -i $i -c -1 $tfile$i
2139                 # get striping information
2140                 ost_idx=($($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         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ] &&
2185                 skip27D+="-s 29"
2186         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.55) -o \
2187           $(lustre_version_code client) -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         [ $(lustre_version_code client) -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         [[ $(lustre_version_code $SINGLEMDS) -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         $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         [[ $($GETSTRIPE -c $DIR/$tdir/f0) == 2 ]] || error "wrong stripecount"
2267
2268 }
2269 run_test 27F "Client resend delayed layout creation with non-zero size"
2270
2271 test_27G() { #LU-10629
2272         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
2273         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2274         local POOL=${POOL:-testpool}
2275         local ostrange="0 0 1"
2276
2277         test_mkdir $DIR/$tdir
2278         pool_add $POOL || error "pool_add failed"
2279         pool_add_targets $POOL $ostrange || error "pool_add_targets failed"
2280         $LFS setstripe -p $POOL $DIR/$tdir
2281
2282         local pool=$($LFS getstripe -p $DIR/$tdir)
2283
2284         [ "$pool" = "$POOL" ] || error "Striping failed got '$pool' not '$POOL'"
2285
2286         $LFS setstripe -d $DIR/$tdir
2287
2288         pool=$($LFS getstripe -p $DIR/$tdir)
2289
2290         rmdir $DIR/$tdir
2291
2292         [ -z "$pool" ] || error "'$pool' is not empty"
2293 }
2294 run_test 27G "Clear OST pool from stripe"
2295
2296 test_27H() {
2297         [[ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.11.54) ]] &&
2298                 skip "Need MDS version newer than 2.11.54"
2299         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
2300         test_mkdir $DIR/$tdir
2301         $LFS setstripe -o 0 -o 2 $DIR/$tdir || error "setstripe failed"
2302         touch $DIR/$tdir/$tfile
2303         $LFS getstripe -c $DIR/$tdir/$tfile
2304         [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
2305                 error "two-stripe file doesn't have two stripes"
2306
2307         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
2308         $LFS getstripe -y $DIR/$tdir/$tfile
2309         (( $($LFS getstripe -y $DIR/$tdir/$tfile |
2310              egrep -c "l_ost_idx: [02]$") == "2" )) ||
2311                 error "expected l_ost_idx: [02]$ not matched"
2312
2313         # make sure ost list have been cleared
2314         local stripesize=$($GETSTRIPE -S $DIR/$tdir)
2315         $LFS setstripe -S $((stripesize * 4)) -i 1 \
2316                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
2317         touch $DIR/$tdir/f3
2318         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
2319 }
2320 run_test 27H "Set specific OSTs stripe"
2321
2322 # createtest also checks that device nodes are created and
2323 # then visible correctly (#2091)
2324 test_28() { # bug 2091
2325         test_mkdir $DIR/d28
2326         $CREATETEST $DIR/d28/ct || error "createtest failed"
2327 }
2328 run_test 28 "create/mknod/mkdir with bad file types ============"
2329
2330 test_29() {
2331         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2332
2333         sync; sleep 1; sync # flush out any dirty pages from previous tests
2334         cancel_lru_locks
2335         test_mkdir $DIR/d29
2336         touch $DIR/d29/foo
2337         log 'first d29'
2338         ls -l $DIR/d29
2339
2340         declare -i LOCKCOUNTORIG=0
2341         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2342                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2343         done
2344         [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
2345
2346         declare -i LOCKUNUSEDCOUNTORIG=0
2347         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2348                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2349         done
2350
2351         log 'second d29'
2352         ls -l $DIR/d29
2353         log 'done'
2354
2355         declare -i LOCKCOUNTCURRENT=0
2356         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2357                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2358         done
2359
2360         declare -i LOCKUNUSEDCOUNTCURRENT=0
2361         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2362                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2363         done
2364
2365         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2366                 $LCTL set_param -n ldlm.dump_namespaces ""
2367                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2368                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2369                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2370                 return 2
2371         fi
2372         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2373                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2374                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2375                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2376                 return 3
2377         fi
2378 }
2379 run_test 29 "IT_GETATTR regression  ============================"
2380
2381 test_30a() { # was test_30
2382         cp $(which ls) $DIR || cp /bin/ls $DIR
2383         $DIR/ls / || error "Can't execute binary from lustre"
2384         rm $DIR/ls
2385 }
2386 run_test 30a "execute binary from Lustre (execve) =============="
2387
2388 test_30b() {
2389         cp `which ls` $DIR || cp /bin/ls $DIR
2390         chmod go+rx $DIR/ls
2391         $RUNAS $DIR/ls / || error "Can't execute binary from lustre as non-root"
2392         rm $DIR/ls
2393 }
2394 run_test 30b "execute binary from Lustre as non-root ==========="
2395
2396 test_30c() { # b=22376
2397         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2398
2399         cp `which ls` $DIR || cp /bin/ls $DIR
2400         chmod a-rw $DIR/ls
2401         cancel_lru_locks mdc
2402         cancel_lru_locks osc
2403         $RUNAS $DIR/ls / || error "Can't execute binary from lustre"
2404         rm -f $DIR/ls
2405 }
2406 run_test 30c "execute binary from Lustre without read perms ===="
2407
2408 test_31a() {
2409         $OPENUNLINK $DIR/f31 $DIR/f31 || error "openunlink failed"
2410         $CHECKSTAT -a $DIR/f31 || error "$DIR/f31 exists"
2411 }
2412 run_test 31a "open-unlink file =================================="
2413
2414 test_31b() {
2415         touch $DIR/f31 || error "touch $DIR/f31 failed"
2416         ln $DIR/f31 $DIR/f31b || error "ln failed"
2417         $MULTIOP $DIR/f31b Ouc || error "multiop failed"
2418         $CHECKSTAT -t file $DIR/f31 || error "$DIR/f31 not file type"
2419 }
2420 run_test 31b "unlink file with multiple links while open ======="
2421
2422 test_31c() {
2423         touch $DIR/f31 || error "touch $DIR/f31 failed"
2424         ln $DIR/f31 $DIR/f31c || error "ln failed"
2425         multiop_bg_pause $DIR/f31 O_uc ||
2426                 error "multiop_bg_pause for $DIR/f31 failed"
2427         MULTIPID=$!
2428         $MULTIOP $DIR/f31c Ouc
2429         kill -USR1 $MULTIPID
2430         wait $MULTIPID
2431 }
2432 run_test 31c "open-unlink file with multiple links ============="
2433
2434 test_31d() {
2435         opendirunlink $DIR/d31d $DIR/d31d || error "opendirunlink failed"
2436         $CHECKSTAT -a $DIR/d31d || error "$DIR/d31d exists"
2437 }
2438 run_test 31d "remove of open directory ========================="
2439
2440 test_31e() { # bug 2904
2441         openfilleddirunlink $DIR/d31e || error "openfilleddirunlink failed"
2442 }
2443 run_test 31e "remove of open non-empty directory ==============="
2444
2445 test_31f() { # bug 4554
2446         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2447
2448         set -vx
2449         test_mkdir $DIR/d31f
2450         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2451         cp /etc/hosts $DIR/d31f
2452         ls -l $DIR/d31f
2453         $GETSTRIPE $DIR/d31f/hosts
2454         multiop_bg_pause $DIR/d31f D_c || return 1
2455         MULTIPID=$!
2456
2457         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2458         test_mkdir $DIR/d31f
2459         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2460         cp /etc/hosts $DIR/d31f
2461         ls -l $DIR/d31f
2462         $GETSTRIPE $DIR/d31f/hosts
2463         multiop_bg_pause $DIR/d31f D_c || return 1
2464         MULTIPID2=$!
2465
2466         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2467         wait $MULTIPID || error "first opendir $MULTIPID failed"
2468
2469         sleep 6
2470
2471         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2472         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2473         set +vx
2474 }
2475 run_test 31f "remove of open directory with open-unlink file ==="
2476
2477 test_31g() {
2478         echo "-- cross directory link --"
2479         test_mkdir -c1 $DIR/${tdir}ga
2480         test_mkdir -c1 $DIR/${tdir}gb
2481         touch $DIR/${tdir}ga/f
2482         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2483         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2484         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2485         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2486         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2487 }
2488 run_test 31g "cross directory link==============="
2489
2490 test_31h() {
2491         echo "-- cross directory link --"
2492         test_mkdir -c1 $DIR/${tdir}
2493         test_mkdir -c1 $DIR/${tdir}/dir
2494         touch $DIR/${tdir}/f
2495         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2496         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2497         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2498         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2499         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2500 }
2501 run_test 31h "cross directory link under child==============="
2502
2503 test_31i() {
2504         echo "-- cross directory link --"
2505         test_mkdir -c1 $DIR/$tdir
2506         test_mkdir -c1 $DIR/$tdir/dir
2507         touch $DIR/$tdir/dir/f
2508         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2509         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2510         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2511         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2512         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2513 }
2514 run_test 31i "cross directory link under parent==============="
2515
2516 test_31j() {
2517         test_mkdir -c1 -p $DIR/$tdir
2518         test_mkdir -c1 -p $DIR/$tdir/dir1
2519         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2520         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2521         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2522         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2523         return 0
2524 }
2525 run_test 31j "link for directory==============="
2526
2527 test_31k() {
2528         test_mkdir -c1 -p $DIR/$tdir
2529         touch $DIR/$tdir/s
2530         touch $DIR/$tdir/exist
2531         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2532         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2533         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2534         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2535         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2536         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2537         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2538         return 0
2539 }
2540 run_test 31k "link to file: the same, non-existing, dir==============="
2541
2542 test_31m() {
2543         mkdir $DIR/d31m
2544         touch $DIR/d31m/s
2545         mkdir $DIR/d31m2
2546         touch $DIR/d31m2/exist
2547         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2548         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2549         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2550         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2551         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2552         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2553         return 0
2554 }
2555 run_test 31m "link to file: the same, non-existing, dir==============="
2556
2557 test_31n() {
2558         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2559         nlink=$(stat --format=%h $DIR/$tfile)
2560         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2561         local fd=$(free_fd)
2562         local cmd="exec $fd<$DIR/$tfile"
2563         eval $cmd
2564         cmd="exec $fd<&-"
2565         trap "eval $cmd" EXIT
2566         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2567         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2568         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2569         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2570         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2571         eval $cmd
2572 }
2573 run_test 31n "check link count of unlinked file"
2574
2575 link_one() {
2576         local TEMPNAME=$(mktemp $1_XXXXXX)
2577         mlink $TEMPNAME $1 2> /dev/null &&
2578                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2579         munlink $TEMPNAME
2580 }
2581
2582 test_31o() { # LU-2901
2583         test_mkdir $DIR/$tdir
2584         for LOOP in $(seq 100); do
2585                 rm -f $DIR/$tdir/$tfile*
2586                 for THREAD in $(seq 8); do
2587                         link_one $DIR/$tdir/$tfile.$LOOP &
2588                 done
2589                 wait
2590                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2591                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2592                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2593                         break || true
2594         done
2595 }
2596 run_test 31o "duplicate hard links with same filename"
2597
2598 test_31p() {
2599         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
2600
2601         test_mkdir $DIR/$tdir
2602         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2603         $LFS setdirstripe -D -c2 -H all_char $DIR/$tdir/striped_dir
2604
2605         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2606                 error "open unlink test1 failed"
2607         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2608                 error "open unlink test2 failed"
2609
2610         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2611                 error "test1 still exists"
2612         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2613                 error "test2 still exists"
2614 }
2615 run_test 31p "remove of open striped directory"
2616
2617 cleanup_test32_mount() {
2618         local rc=0
2619         trap 0
2620         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$//p')
2621         $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
2622         losetup -d $loopdev || true
2623         rm -rf $DIR/$tdir
2624         return $rc
2625 }
2626
2627 test_32a() {
2628         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2629
2630         echo "== more mountpoints and symlinks ================="
2631         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2632         trap cleanup_test32_mount EXIT
2633         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2634         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2635                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2636         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. ||
2637                 error "$DIR/$tdir/ext2-mountpoint/.. not dir type"
2638         cleanup_test32_mount
2639 }
2640 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2641
2642 test_32b() {
2643         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2644
2645         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2646         trap cleanup_test32_mount EXIT
2647         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2648         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2649                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2650         ls -al $DIR/$tdir/ext2-mountpoint/.. ||
2651                 error "Can't list $DIR/$tdir/ext2-mountpoint/.."
2652         cleanup_test32_mount
2653 }
2654 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2655
2656 test_32c() {
2657         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2658
2659         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2660         trap cleanup_test32_mount EXIT
2661         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2662         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2663                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2664         test_mkdir -p $DIR/$tdir/d2/test_dir
2665         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
2666                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_dir not dir type"
2667         cleanup_test32_mount
2668 }
2669 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2670
2671 test_32d() {
2672         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2673
2674         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2675         trap cleanup_test32_mount EXIT
2676         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2677         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2678                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2679         test_mkdir -p $DIR/$tdir/d2/test_dir
2680         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
2681                 error "Can't list $DIR/$tdir/ext2-mountpoint/../d2/test_dir"
2682         cleanup_test32_mount
2683 }
2684 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir"
2685
2686 test_32e() {
2687         rm -fr $DIR/$tdir
2688         test_mkdir -p $DIR/$tdir/tmp
2689         local tmp_dir=$DIR/$tdir/tmp
2690         ln -s $DIR/$tdir $tmp_dir/symlink11
2691         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2692         $CHECKSTAT -t link $DIR/$tdir/tmp/symlink11 || error "symlink11 bad"
2693         $CHECKSTAT -t link $DIR/$tdir/symlink01 || error "symlink01 bad"
2694 }
2695 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir"
2696
2697 test_32f() {
2698         rm -fr $DIR/$tdir
2699         test_mkdir -p $DIR/$tdir/tmp
2700         local tmp_dir=$DIR/$tdir/tmp
2701         ln -s $DIR/$tdir $tmp_dir/symlink11
2702         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2703         ls $DIR/$tdir/tmp/symlink11  || error "symlink11 bad"
2704         ls $DIR/$tdir/symlink01 || error "symlink01 bad"
2705 }
2706 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir"
2707
2708 test_32g() {
2709         local tmp_dir=$DIR/$tdir/tmp
2710         test_mkdir -p $tmp_dir
2711         test_mkdir $DIR/${tdir}2
2712         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2713         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2714         $CHECKSTAT -t link $tmp_dir/symlink12 || error "symlink12 not a link"
2715         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error "symlink02 not a link"
2716         $CHECKSTAT -t dir -f $tmp_dir/symlink12 || error "symlink12 not a dir"
2717         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error "symlink12 not a dir"
2718 }
2719 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2720
2721 test_32h() {
2722         rm -fr $DIR/$tdir $DIR/${tdir}2
2723         tmp_dir=$DIR/$tdir/tmp
2724         test_mkdir -p $tmp_dir
2725         test_mkdir $DIR/${tdir}2
2726         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2727         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2728         ls $tmp_dir/symlink12 || error "listing symlink12"
2729         ls $DIR/$tdir/symlink02  || error "listing symlink02"
2730 }
2731 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2732
2733 test_32i() {
2734         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2735
2736         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2737         trap cleanup_test32_mount EXIT
2738         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2739         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2740                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2741         touch $DIR/$tdir/test_file
2742         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file ||
2743                 error "$DIR/$tdir/ext2-mountpoint/../test_file not file type"
2744         cleanup_test32_mount
2745 }
2746 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2747
2748 test_32j() {
2749         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2750
2751         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2752         trap cleanup_test32_mount EXIT
2753         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2754         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2755                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2756         touch $DIR/$tdir/test_file
2757         cat $DIR/$tdir/ext2-mountpoint/../test_file ||
2758                 error "Can't open $DIR/$tdir/ext2-mountpoint/../test_file"
2759         cleanup_test32_mount
2760 }
2761 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2762
2763 test_32k() {
2764         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2765
2766         rm -fr $DIR/$tdir
2767         trap cleanup_test32_mount EXIT
2768         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2769         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2770                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2771         test_mkdir -p $DIR/$tdir/d2
2772         touch $DIR/$tdir/d2/test_file || error "touch failed"
2773         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
2774                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_file not file type"
2775         cleanup_test32_mount
2776 }
2777 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2778
2779 test_32l() {
2780         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2781
2782         rm -fr $DIR/$tdir
2783         trap cleanup_test32_mount EXIT
2784         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2785         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2786                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2787         test_mkdir -p $DIR/$tdir/d2
2788         touch $DIR/$tdir/d2/test_file || error "touch failed"
2789         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
2790                 error "Can't open $DIR/$tdir/ext2-mountpoint/../d2/test_file"
2791         cleanup_test32_mount
2792 }
2793 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2794
2795 test_32m() {
2796         rm -fr $DIR/d32m
2797         test_mkdir -p $DIR/d32m/tmp
2798         TMP_DIR=$DIR/d32m/tmp
2799         ln -s $DIR $TMP_DIR/symlink11
2800         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2801         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 ||
2802                 error "symlink11 not a link"
2803         $CHECKSTAT -t link $DIR/d32m/symlink01 ||
2804                 error "symlink01 not a link"
2805 }
2806 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2807
2808 test_32n() {
2809         rm -fr $DIR/d32n
2810         test_mkdir -p $DIR/d32n/tmp
2811         TMP_DIR=$DIR/d32n/tmp
2812         ln -s $DIR $TMP_DIR/symlink11
2813         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2814         ls -l $DIR/d32n/tmp/symlink11  || error "listing symlink11"
2815         ls -l $DIR/d32n/symlink01 || error "listing symlink01"
2816 }
2817 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2818
2819 test_32o() {
2820         touch $DIR/$tfile
2821         test_mkdir -p $DIR/d32o/tmp
2822         TMP_DIR=$DIR/d32o/tmp
2823         ln -s $DIR/$tfile $TMP_DIR/symlink12
2824         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2825         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 ||
2826                 error "symlink12 not a link"
2827         $CHECKSTAT -t link $DIR/d32o/symlink02 || error "symlink02 not a link"
2828         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 ||
2829                 error "$DIR/d32o/tmp/symlink12 not file type"
2830         $CHECKSTAT -t file -f $DIR/d32o/symlink02 ||
2831                 error "$DIR/d32o/symlink02 not file type"
2832 }
2833 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2834
2835 test_32p() {
2836         log 32p_1
2837         rm -fr $DIR/d32p
2838         log 32p_2
2839         rm -f $DIR/$tfile
2840         log 32p_3
2841         touch $DIR/$tfile
2842         log 32p_4
2843         test_mkdir -p $DIR/d32p/tmp
2844         log 32p_5
2845         TMP_DIR=$DIR/d32p/tmp
2846         log 32p_6
2847         ln -s $DIR/$tfile $TMP_DIR/symlink12
2848         log 32p_7
2849         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2850         log 32p_8
2851         cat $DIR/d32p/tmp/symlink12 ||
2852                 error "Can't open $DIR/d32p/tmp/symlink12"
2853         log 32p_9
2854         cat $DIR/d32p/symlink02 || error "Can't open $DIR/d32p/symlink02"
2855         log 32p_10
2856 }
2857 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2858
2859 test_32q() {
2860         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2861
2862         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2863         trap cleanup_test32_mount EXIT
2864         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2865         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
2866         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2867                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2868         ls $DIR/$tdir/ext2-mountpoint | grep "\<under_the_mount\>" && error
2869         cleanup_test32_mount
2870 }
2871 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2872
2873 test_32r() {
2874         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2875
2876         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2877         trap cleanup_test32_mount EXIT
2878         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2879         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
2880         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2881                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2882         ls $DIR/$tdir/ext2-mountpoint | grep -q under_the_mount && error || true
2883         cleanup_test32_mount
2884 }
2885 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2886
2887 test_33aa() {
2888         rm -f $DIR/$tfile
2889         touch $DIR/$tfile
2890         chmod 444 $DIR/$tfile
2891         chown $RUNAS_ID $DIR/$tfile
2892         log 33_1
2893         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2894         log 33_2
2895 }
2896 run_test 33aa "write file with mode 444 (should return error)"
2897
2898 test_33a() {
2899         rm -fr $DIR/$tdir
2900         test_mkdir $DIR/$tdir
2901         chown $RUNAS_ID $DIR/$tdir
2902         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile ||
2903                 error "$RUNAS create $tdir/$tfile failed"
2904         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile &&
2905                 error "open RDWR" || true
2906 }
2907 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2908
2909 test_33b() {
2910         rm -fr $DIR/$tdir
2911         test_mkdir $DIR/$tdir
2912         chown $RUNAS_ID $DIR/$tdir
2913         $RUNAS $OPENFILE -f 1286739555 $DIR/$tdir/$tfile || true
2914 }
2915 run_test 33b "test open file with malformed flags (No panic)"
2916
2917 test_33c() {
2918         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2919         remote_ost_nodsh && skip "remote OST with nodsh"
2920
2921         local ostnum
2922         local ostname
2923         local write_bytes
2924         local all_zeros
2925
2926         all_zeros=:
2927         rm -fr $DIR/$tdir
2928         test_mkdir $DIR/$tdir
2929         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2930
2931         sync
2932         for ostnum in $(seq $OSTCOUNT); do
2933                 # test-framework's OST numbering is one-based, while Lustre's
2934                 # is zero-based
2935                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2936                 # Parsing llobdstat's output sucks; we could grep the /proc
2937                 # path, but that's likely to not be as portable as using the
2938                 # llobdstat utility.  So we parse lctl output instead.
2939                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2940                         obdfilter/$ostname/stats |
2941                         awk '/^write_bytes/ {print $7}' )
2942                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2943                 if (( ${write_bytes:-0} > 0 ))
2944                 then
2945                         all_zeros=false
2946                         break;
2947                 fi
2948         done
2949
2950         $all_zeros || return 0
2951
2952         # Write four bytes
2953         echo foo > $DIR/$tdir/bar
2954         # Really write them
2955         sync
2956
2957         # Total up write_bytes after writing.  We'd better find non-zeros.
2958         for ostnum in $(seq $OSTCOUNT); do
2959                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2960                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2961                         obdfilter/$ostname/stats |
2962                         awk '/^write_bytes/ {print $7}' )
2963                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2964                 if (( ${write_bytes:-0} > 0 ))
2965                 then
2966                         all_zeros=false
2967                         break;
2968                 fi
2969         done
2970
2971         if $all_zeros
2972         then
2973                 for ostnum in $(seq $OSTCOUNT); do
2974                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2975                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2976                         do_facet ost$ostnum lctl get_param -n \
2977                                 obdfilter/$ostname/stats
2978                 done
2979                 error "OST not keeping write_bytes stats (b22312)"
2980         fi
2981 }
2982 run_test 33c "test llobdstat and write_bytes"
2983
2984 test_33d() {
2985         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
2986         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2987
2988         local MDTIDX=1
2989         local remote_dir=$DIR/$tdir/remote_dir
2990
2991         test_mkdir $DIR/$tdir
2992         $LFS mkdir -i $MDTIDX $remote_dir ||
2993                 error "create remote directory failed"
2994
2995         touch $remote_dir/$tfile
2996         chmod 444 $remote_dir/$tfile
2997         chown $RUNAS_ID $remote_dir/$tfile
2998
2999         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
3000
3001         chown $RUNAS_ID $remote_dir
3002         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
3003                                         error "create" || true
3004         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
3005                                     error "open RDWR" || true
3006         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
3007 }
3008 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
3009
3010 test_33e() {
3011         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3012
3013         mkdir $DIR/$tdir
3014
3015         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3016         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3017         mkdir $DIR/$tdir/local_dir
3018
3019         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3020         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3021         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3022
3023         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3024                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
3025
3026         rmdir $DIR/$tdir/* || error "rmdir failed"
3027
3028         umask 777
3029         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3030         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3031         mkdir $DIR/$tdir/local_dir
3032
3033         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3034         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3035         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3036
3037         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3038                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
3039
3040         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
3041
3042         umask 000
3043         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3044         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3045         mkdir $DIR/$tdir/local_dir
3046
3047         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3048         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3049         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3050
3051         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3052                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
3053 }
3054 run_test 33e "mkdir and striped directory should have same mode"
3055
3056 cleanup_33f() {
3057         trap 0
3058         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
3059 }
3060
3061 test_33f() {
3062         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3063         remote_mds_nodsh && skip "remote MDS with nodsh"
3064
3065         mkdir $DIR/$tdir
3066         chmod go+rwx $DIR/$tdir
3067         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
3068         trap cleanup_33f EXIT
3069
3070         $RUNAS lfs mkdir -i 0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
3071                 error "cannot create striped directory"
3072
3073         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
3074                 error "cannot create files in striped directory"
3075
3076         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
3077                 error "cannot remove files in striped directory"
3078
3079         $RUNAS rmdir $DIR/$tdir/striped_dir ||
3080                 error "cannot remove striped directory"
3081
3082         cleanup_33f
3083 }
3084 run_test 33f "nonroot user can create, access, and remove a striped directory"
3085
3086 test_33g() {
3087         mkdir -p $DIR/$tdir/dir2
3088
3089         local err=$($RUNAS mkdir $DIR/$tdir/dir2 2>&1)
3090         echo $err
3091         [[ $err =~ "exists" ]] || error "Not exists error"
3092 }
3093 run_test 33g "nonroot user create already existing root created file"
3094
3095 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
3096 test_34a() {
3097         rm -f $DIR/f34
3098         $MCREATE $DIR/f34 || error "mcreate failed"
3099         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" ||
3100                 error "getstripe failed"
3101         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error "truncate failed"
3102         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" ||
3103                 error "getstripe failed"
3104         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3105                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3106 }
3107 run_test 34a "truncate file that has not been opened ==========="
3108
3109 test_34b() {
3110         [ ! -f $DIR/f34 ] && test_34a
3111         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3112                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3113         $OPENFILE -f O_RDONLY $DIR/f34
3114         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" ||
3115                 error "getstripe failed"
3116         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3117                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3118 }
3119 run_test 34b "O_RDONLY opening file doesn't create objects ====="
3120
3121 test_34c() {
3122         [ ! -f $DIR/f34 ] && test_34a
3123         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3124                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3125         $OPENFILE -f O_RDWR $DIR/f34
3126         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
3127         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3128                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3129 }
3130 run_test 34c "O_RDWR opening file-with-size works =============="
3131
3132 test_34d() {
3133         [ ! -f $DIR/f34 ] && test_34a
3134         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 ||
3135                 error "dd failed"
3136         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3137                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3138         rm $DIR/f34
3139 }
3140 run_test 34d "write to sparse file ============================="
3141
3142 test_34e() {
3143         rm -f $DIR/f34e
3144         $MCREATE $DIR/f34e || error "mcreate failed"
3145         $TRUNCATE $DIR/f34e 1000 || error "truncate failed"
3146         $CHECKSTAT -s 1000 $DIR/f34e ||
3147                 error "Size of $DIR/f34e not equal to 1000 bytes"
3148         $OPENFILE -f O_RDWR $DIR/f34e
3149         $CHECKSTAT -s 1000 $DIR/f34e ||
3150                 error "Size of $DIR/f34e not equal to 1000 bytes"
3151 }
3152 run_test 34e "create objects, some with size and some without =="
3153
3154 test_34f() { # bug 6242, 6243
3155         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3156
3157         SIZE34F=48000
3158         rm -f $DIR/f34f
3159         $MCREATE $DIR/f34f || error "mcreate failed"
3160         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
3161         dd if=$DIR/f34f of=$TMP/f34f
3162         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
3163         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
3164         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
3165         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
3166         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
3167 }
3168 run_test 34f "read from a file with no objects until EOF ======="
3169
3170 test_34g() {
3171         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3172
3173         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE ||
3174                 error "dd failed"
3175         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error "truncate failed"
3176         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
3177                 error "Size of $DIR/$tfile not equal to $((TEST_34_SIZE / 2))"
3178         cancel_lru_locks osc
3179         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
3180                 error "wrong size after lock cancel"
3181
3182         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error "truncate failed"
3183         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
3184                 error "expanding truncate failed"
3185         cancel_lru_locks osc
3186         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
3187                 error "wrong expanded size after lock cancel"
3188 }
3189 run_test 34g "truncate long file ==============================="
3190
3191 test_34h() {
3192         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3193
3194         local gid=10
3195         local sz=1000
3196
3197         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error "dd failed"
3198         sync # Flush the cache so that multiop below does not block on cache
3199              # flush when getting the group lock
3200         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
3201         MULTIPID=$!
3202
3203         # Since just timed wait is not good enough, let's do a sync write
3204         # that way we are sure enough time for a roundtrip + processing
3205         # passed + 2 seconds of extra margin.
3206         dd if=/dev/zero of=$DIR/${tfile}-1 bs=$PAGE_SIZE oflag=direct count=1
3207         rm $DIR/${tfile}-1
3208         sleep 2
3209
3210         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
3211                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
3212                 kill -9 $MULTIPID
3213         fi
3214         wait $MULTIPID
3215         local nsz=`stat -c %s $DIR/$tfile`
3216         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
3217 }
3218 run_test 34h "ftruncate file under grouplock should not block"
3219
3220 test_35a() {
3221         cp /bin/sh $DIR/f35a
3222         chmod 444 $DIR/f35a
3223         chown $RUNAS_ID $DIR/f35a
3224         $RUNAS $DIR/f35a && error || true
3225         rm $DIR/f35a
3226 }
3227 run_test 35a "exec file with mode 444 (should return and not leak)"
3228
3229 test_36a() {
3230         rm -f $DIR/f36
3231         utime $DIR/f36 || error "utime failed for MDS"
3232 }
3233 run_test 36a "MDS utime check (mknod, utime)"
3234
3235 test_36b() {
3236         echo "" > $DIR/f36
3237         utime $DIR/f36 || error "utime failed for OST"
3238 }
3239 run_test 36b "OST utime check (open, utime)"
3240
3241 test_36c() {
3242         rm -f $DIR/d36/f36
3243         test_mkdir $DIR/d36
3244         chown $RUNAS_ID $DIR/d36
3245         $RUNAS utime $DIR/d36/f36 || error "utime failed for MDS as non-root"
3246 }
3247 run_test 36c "non-root MDS utime check (mknod, utime)"
3248
3249 test_36d() {
3250         [ ! -d $DIR/d36 ] && test_36c
3251         echo "" > $DIR/d36/f36
3252         $RUNAS utime $DIR/d36/f36 || error "utime failed for OST as non-root"
3253 }
3254 run_test 36d "non-root OST utime check (open, utime)"
3255
3256 test_36e() {
3257         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping"
3258
3259         test_mkdir $DIR/$tdir
3260         touch $DIR/$tdir/$tfile
3261         $RUNAS utime $DIR/$tdir/$tfile &&
3262                 error "utime worked, expected failure" || true
3263 }
3264 run_test 36e "utime on non-owned file (should return error)"
3265
3266 subr_36fh() {
3267         local fl="$1"
3268         local LANG_SAVE=$LANG
3269         local LC_LANG_SAVE=$LC_LANG
3270         export LANG=C LC_LANG=C # for date language
3271
3272         DATESTR="Dec 20  2000"
3273         test_mkdir $DIR/$tdir
3274         lctl set_param fail_loc=$fl
3275         date; date +%s
3276         cp /etc/hosts $DIR/$tdir/$tfile
3277         sync & # write RPC generated with "current" inode timestamp, but delayed
3278         sleep 1
3279         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
3280         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
3281         cancel_lru_locks osc
3282         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
3283         date; date +%s
3284         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
3285                 echo "BEFORE: $LS_BEFORE" && \
3286                 echo "AFTER : $LS_AFTER" && \
3287                 echo "WANT  : $DATESTR" && \
3288                 error "$DIR/$tdir/$tfile timestamps changed" || true
3289
3290         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
3291 }
3292
3293 test_36f() {
3294         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3295
3296         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
3297         subr_36fh "0x80000214"
3298 }
3299 run_test 36f "utime on file racing with OST BRW write =========="
3300
3301 test_36g() {
3302         remote_ost_nodsh && skip "remote OST with nodsh"
3303         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3304
3305         local fmd_max_age
3306         local fmd_before
3307         local fmd_after
3308
3309         test_mkdir $DIR/$tdir
3310         fmd_max_age=$(do_facet ost1 \
3311                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
3312                 head -n 1")
3313
3314         fmd_before=$(do_facet ost1 \
3315                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3316         touch $DIR/$tdir/$tfile
3317         sleep $((fmd_max_age + 12))
3318         fmd_after=$(do_facet ost1 \
3319                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3320
3321         echo "fmd_before: $fmd_before"
3322         echo "fmd_after: $fmd_after"
3323         [[ $fmd_after -gt $fmd_before ]] &&
3324                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" &&
3325                 error "fmd didn't expire after ping" || true
3326 }
3327 run_test 36g "filter mod data cache expiry ====================="
3328
3329 test_36h() {
3330         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3331
3332         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
3333         subr_36fh "0x80000227"
3334 }
3335 run_test 36h "utime on file racing with OST BRW write =========="
3336
3337 test_36i() {
3338         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3339
3340         test_mkdir $DIR/$tdir
3341         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3342
3343         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3344         local new_mtime=$((mtime + 200))
3345
3346         #change Modify time of striped dir
3347         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3348                         error "change mtime failed"
3349
3350         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3351
3352         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3353 }
3354 run_test 36i "change mtime on striped directory"
3355
3356 # test_37 - duplicate with tests 32q 32r
3357
3358 test_38() {
3359         local file=$DIR/$tfile
3360         touch $file
3361         openfile -f O_DIRECTORY $file
3362         local RC=$?
3363         local ENOTDIR=20
3364         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3365         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3366 }
3367 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3368
3369 test_39a() { # was test_39
3370         touch $DIR/$tfile
3371         touch $DIR/${tfile}2
3372 #       ls -l  $DIR/$tfile $DIR/${tfile}2
3373 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
3374 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
3375         sleep 2
3376         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3377         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3378                 echo "mtime"
3379                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3380                 echo "atime"
3381                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3382                 echo "ctime"
3383                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3384                 error "O_TRUNC didn't change timestamps"
3385         fi
3386 }
3387 run_test 39a "mtime changed on create"
3388
3389 test_39b() {
3390         test_mkdir -c1 $DIR/$tdir
3391         cp -p /etc/passwd $DIR/$tdir/fopen
3392         cp -p /etc/passwd $DIR/$tdir/flink
3393         cp -p /etc/passwd $DIR/$tdir/funlink
3394         cp -p /etc/passwd $DIR/$tdir/frename
3395         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3396
3397         sleep 1
3398         echo "aaaaaa" >> $DIR/$tdir/fopen
3399         echo "aaaaaa" >> $DIR/$tdir/flink
3400         echo "aaaaaa" >> $DIR/$tdir/funlink
3401         echo "aaaaaa" >> $DIR/$tdir/frename
3402
3403         local open_new=`stat -c %Y $DIR/$tdir/fopen`
3404         local link_new=`stat -c %Y $DIR/$tdir/flink`
3405         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3406         local rename_new=`stat -c %Y $DIR/$tdir/frename`
3407
3408         cat $DIR/$tdir/fopen > /dev/null
3409         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3410         rm -f $DIR/$tdir/funlink2
3411         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3412
3413         for (( i=0; i < 2; i++ )) ; do
3414                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3415                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3416                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3417                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3418
3419                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3420                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3421                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3422                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3423
3424                 cancel_lru_locks osc
3425                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3426         done
3427 }
3428 run_test 39b "mtime change on open, link, unlink, rename  ======"
3429
3430 # this should be set to past
3431 TEST_39_MTIME=`date -d "1 year ago" +%s`
3432
3433 # bug 11063
3434 test_39c() {
3435         touch $DIR1/$tfile
3436         sleep 2
3437         local mtime0=`stat -c %Y $DIR1/$tfile`
3438
3439         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3440         local mtime1=`stat -c %Y $DIR1/$tfile`
3441         [ "$mtime1" = $TEST_39_MTIME ] || \
3442                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3443
3444         local d1=`date +%s`
3445         echo hello >> $DIR1/$tfile
3446         local d2=`date +%s`
3447         local mtime2=`stat -c %Y $DIR1/$tfile`
3448         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3449                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3450
3451         mv $DIR1/$tfile $DIR1/$tfile-1
3452
3453         for (( i=0; i < 2; i++ )) ; do
3454                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3455                 [ "$mtime2" = "$mtime3" ] || \
3456                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3457
3458                 cancel_lru_locks osc
3459                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3460         done
3461 }
3462 run_test 39c "mtime change on rename ==========================="
3463
3464 # bug 21114
3465 test_39d() {
3466         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3467
3468         touch $DIR1/$tfile
3469         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3470
3471         for (( i=0; i < 2; i++ )) ; do
3472                 local mtime=`stat -c %Y $DIR1/$tfile`
3473                 [ $mtime = $TEST_39_MTIME ] || \
3474                         error "mtime($mtime) is not set to $TEST_39_MTIME"
3475
3476                 cancel_lru_locks osc
3477                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3478         done
3479 }
3480 run_test 39d "create, utime, stat =============================="
3481
3482 # bug 21114
3483 test_39e() {
3484         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3485
3486         touch $DIR1/$tfile
3487         local mtime1=`stat -c %Y $DIR1/$tfile`
3488
3489         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3490
3491         for (( i=0; i < 2; i++ )) ; do
3492                 local mtime2=`stat -c %Y $DIR1/$tfile`
3493                 [ $mtime2 = $TEST_39_MTIME ] || \
3494                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3495
3496                 cancel_lru_locks osc
3497                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3498         done
3499 }
3500 run_test 39e "create, stat, utime, stat ========================"
3501
3502 # bug 21114
3503 test_39f() {
3504         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3505
3506         touch $DIR1/$tfile
3507         mtime1=`stat -c %Y $DIR1/$tfile`
3508
3509         sleep 2
3510         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3511
3512         for (( i=0; i < 2; i++ )) ; do
3513                 local mtime2=`stat -c %Y $DIR1/$tfile`
3514                 [ $mtime2 = $TEST_39_MTIME ] || \
3515                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3516
3517                 cancel_lru_locks osc
3518                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3519         done
3520 }
3521 run_test 39f "create, stat, sleep, utime, stat ================="
3522
3523 # bug 11063
3524 test_39g() {
3525         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3526
3527         echo hello >> $DIR1/$tfile
3528         local mtime1=`stat -c %Y $DIR1/$tfile`
3529
3530         sleep 2
3531         chmod o+r $DIR1/$tfile
3532
3533         for (( i=0; i < 2; i++ )) ; do
3534                 local mtime2=`stat -c %Y $DIR1/$tfile`
3535                 [ "$mtime1" = "$mtime2" ] || \
3536                         error "lost mtime: $mtime2, should be $mtime1"
3537
3538                 cancel_lru_locks osc
3539                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3540         done
3541 }
3542 run_test 39g "write, chmod, stat ==============================="
3543
3544 # bug 11063
3545 test_39h() {
3546         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3547
3548         touch $DIR1/$tfile
3549         sleep 1
3550
3551         local d1=`date`
3552         echo hello >> $DIR1/$tfile
3553         local mtime1=`stat -c %Y $DIR1/$tfile`
3554
3555         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3556         local d2=`date`
3557         if [ "$d1" != "$d2" ]; then
3558                 echo "write and touch not within one second"
3559         else
3560                 for (( i=0; i < 2; i++ )) ; do
3561                         local mtime2=`stat -c %Y $DIR1/$tfile`
3562                         [ "$mtime2" = $TEST_39_MTIME ] || \
3563                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3564
3565                         cancel_lru_locks osc
3566                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3567                 done
3568         fi
3569 }
3570 run_test 39h "write, utime within one second, stat ============="
3571
3572 test_39i() {
3573         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3574
3575         touch $DIR1/$tfile
3576         sleep 1
3577
3578         echo hello >> $DIR1/$tfile
3579         local mtime1=`stat -c %Y $DIR1/$tfile`
3580
3581         mv $DIR1/$tfile $DIR1/$tfile-1
3582
3583         for (( i=0; i < 2; i++ )) ; do
3584                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3585
3586                 [ "$mtime1" = "$mtime2" ] || \
3587                         error "lost mtime: $mtime2, should be $mtime1"
3588
3589                 cancel_lru_locks osc
3590                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3591         done
3592 }
3593 run_test 39i "write, rename, stat =============================="
3594
3595 test_39j() {
3596         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3597
3598         start_full_debug_logging
3599         touch $DIR1/$tfile
3600         sleep 1
3601
3602         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3603         lctl set_param fail_loc=0x80000412
3604         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3605                 error "multiop failed"
3606         local multipid=$!
3607         local mtime1=`stat -c %Y $DIR1/$tfile`
3608
3609         mv $DIR1/$tfile $DIR1/$tfile-1
3610
3611         kill -USR1 $multipid
3612         wait $multipid || error "multiop close failed"
3613
3614         for (( i=0; i < 2; i++ )) ; do
3615                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3616                 [ "$mtime1" = "$mtime2" ] ||
3617                         error "mtime is lost on close: $mtime2, " \
3618                               "should be $mtime1"
3619
3620                 cancel_lru_locks osc
3621                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3622         done
3623         lctl set_param fail_loc=0
3624         stop_full_debug_logging
3625 }
3626 run_test 39j "write, rename, close, stat ======================="
3627
3628 test_39k() {
3629         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3630
3631         touch $DIR1/$tfile
3632         sleep 1
3633
3634         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3635         local multipid=$!
3636         local mtime1=`stat -c %Y $DIR1/$tfile`
3637
3638         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3639
3640         kill -USR1 $multipid
3641         wait $multipid || error "multiop close failed"
3642
3643         for (( i=0; i < 2; i++ )) ; do
3644                 local mtime2=`stat -c %Y $DIR1/$tfile`
3645
3646                 [ "$mtime2" = $TEST_39_MTIME ] || \
3647                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3648
3649                 cancel_lru_locks osc
3650                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3651         done
3652 }
3653 run_test 39k "write, utime, close, stat ========================"
3654
3655 # this should be set to future
3656 TEST_39_ATIME=`date -d "1 year" +%s`
3657
3658 test_39l() {
3659         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3660         remote_mds_nodsh && skip "remote MDS with nodsh"
3661
3662         local atime_diff=$(do_facet $SINGLEMDS \
3663                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3664         rm -rf $DIR/$tdir
3665         mkdir -p $DIR/$tdir
3666
3667         # test setting directory atime to future
3668         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3669         local atime=$(stat -c %X $DIR/$tdir)
3670         [ "$atime" = $TEST_39_ATIME ] ||
3671                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3672
3673         # test setting directory atime from future to now
3674         local now=$(date +%s)
3675         touch -a -d @$now $DIR/$tdir
3676
3677         atime=$(stat -c %X $DIR/$tdir)
3678         [ "$atime" -eq "$now"  ] ||
3679                 error "atime is not updated from future: $atime, $now"
3680
3681         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3682         sleep 3
3683
3684         # test setting directory atime when now > dir atime + atime_diff
3685         local d1=$(date +%s)
3686         ls $DIR/$tdir
3687         local d2=$(date +%s)
3688         cancel_lru_locks mdc
3689         atime=$(stat -c %X $DIR/$tdir)
3690         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3691                 error "atime is not updated  : $atime, should be $d2"
3692
3693         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3694         sleep 3
3695
3696         # test not setting directory atime when now < dir atime + atime_diff
3697         ls $DIR/$tdir
3698         cancel_lru_locks mdc
3699         atime=$(stat -c %X $DIR/$tdir)
3700         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3701                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3702
3703         do_facet $SINGLEMDS \
3704                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3705 }
3706 run_test 39l "directory atime update ==========================="
3707
3708 test_39m() {
3709         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3710
3711         touch $DIR1/$tfile
3712         sleep 2
3713         local far_past_mtime=$(date -d "May 29 1953" +%s)
3714         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3715
3716         touch -m -d @$far_past_mtime $DIR1/$tfile
3717         touch -a -d @$far_past_atime $DIR1/$tfile
3718
3719         for (( i=0; i < 2; i++ )) ; do
3720                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3721                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3722                         error "atime or mtime set incorrectly"
3723
3724                 cancel_lru_locks osc
3725                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3726         done
3727 }
3728 run_test 39m "test atime and mtime before 1970"
3729
3730 test_39n() { # LU-3832
3731         remote_mds_nodsh && skip "remote MDS with nodsh"
3732
3733         local atime_diff=$(do_facet $SINGLEMDS \
3734                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3735         local atime0
3736         local atime1
3737         local atime2
3738
3739         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3740
3741         rm -rf $DIR/$tfile
3742         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3743         atime0=$(stat -c %X $DIR/$tfile)
3744
3745         sleep 5
3746         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3747         atime1=$(stat -c %X $DIR/$tfile)
3748
3749         sleep 5
3750         cancel_lru_locks mdc
3751         cancel_lru_locks osc
3752         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3753         atime2=$(stat -c %X $DIR/$tfile)
3754
3755         do_facet $SINGLEMDS \
3756                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3757
3758         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3759         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3760 }
3761 run_test 39n "check that O_NOATIME is honored"
3762
3763 test_39o() {
3764         TESTDIR=$DIR/$tdir/$tfile
3765         [ -e $TESTDIR ] && rm -rf $TESTDIR
3766         mkdir -p $TESTDIR
3767         cd $TESTDIR
3768         links1=2
3769         ls
3770         mkdir a b
3771         ls
3772         links2=$(stat -c %h .)
3773         [ $(($links1 + 2)) != $links2 ] &&
3774                 error "wrong links count $(($links1 + 2)) != $links2"
3775         rmdir b
3776         links3=$(stat -c %h .)
3777         [ $(($links1 + 1)) != $links3 ] &&
3778                 error "wrong links count $links1 != $links3"
3779         return 0
3780 }
3781 run_test 39o "directory cached attributes updated after create"
3782
3783 test_39p() {
3784         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
3785
3786         local MDTIDX=1
3787         TESTDIR=$DIR/$tdir/$tdir
3788         [ -e $TESTDIR ] && rm -rf $TESTDIR
3789         test_mkdir -p $TESTDIR
3790         cd $TESTDIR
3791         links1=2
3792         ls
3793         test_mkdir -i $MDTIDX $TESTDIR/remote_dir1
3794         test_mkdir -i $MDTIDX $TESTDIR/remote_dir2
3795         ls
3796         links2=$(stat -c %h .)
3797         [ $(($links1 + 2)) != $links2 ] &&
3798                 error "wrong links count $(($links1 + 2)) != $links2"
3799         rmdir remote_dir2
3800         links3=$(stat -c %h .)
3801         [ $(($links1 + 1)) != $links3 ] &&
3802                 error "wrong links count $links1 != $links3"
3803         return 0
3804 }
3805 run_test 39p "remote directory cached attributes updated after create ========"
3806
3807
3808 test_39q() { # LU-8041
3809         local testdir=$DIR/$tdir
3810         mkdir -p $testdir
3811         multiop_bg_pause $testdir D_c || error "multiop failed"
3812         local multipid=$!
3813         cancel_lru_locks mdc
3814         kill -USR1 $multipid
3815         local atime=$(stat -c %X $testdir)
3816         [ "$atime" -ne 0 ] || error "atime is zero"
3817 }
3818 run_test 39q "close won't zero out atime"
3819
3820 test_40() {
3821         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3822         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3823                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3824         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3825                 error "$tfile is not 4096 bytes in size"
3826 }
3827 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3828
3829 test_41() {
3830         # bug 1553
3831         small_write $DIR/f41 18
3832 }
3833 run_test 41 "test small file write + fstat ====================="
3834
3835 count_ost_writes() {
3836         lctl get_param -n ${OSC}.*.stats |
3837                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
3838                         END { printf("%0.0f", writes) }'
3839 }
3840
3841 # decent default
3842 WRITEBACK_SAVE=500
3843 DIRTY_RATIO_SAVE=40
3844 MAX_DIRTY_RATIO=50
3845 BG_DIRTY_RATIO_SAVE=10
3846 MAX_BG_DIRTY_RATIO=25
3847
3848 start_writeback() {
3849         trap 0
3850         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3851         # dirty_ratio, dirty_background_ratio
3852         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3853                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3854                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3855                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3856         else
3857                 # if file not here, we are a 2.4 kernel
3858                 kill -CONT `pidof kupdated`
3859         fi
3860 }
3861
3862 stop_writeback() {
3863         # setup the trap first, so someone cannot exit the test at the
3864         # exact wrong time and mess up a machine
3865         trap start_writeback EXIT
3866         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3867         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3868                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3869                 sysctl -w vm.dirty_writeback_centisecs=0
3870                 sysctl -w vm.dirty_writeback_centisecs=0
3871                 # save and increase /proc/sys/vm/dirty_ratio
3872                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3873                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3874                 # save and increase /proc/sys/vm/dirty_background_ratio
3875                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3876                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3877         else
3878                 # if file not here, we are a 2.4 kernel
3879                 kill -STOP `pidof kupdated`
3880         fi
3881 }
3882
3883 # ensure that all stripes have some grant before we test client-side cache
3884 setup_test42() {
3885         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3886                 dd if=/dev/zero of=$i bs=4k count=1
3887                 rm $i
3888         done
3889 }
3890
3891 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3892 # file truncation, and file removal.
3893 test_42a() {
3894         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3895
3896         setup_test42
3897         cancel_lru_locks $OSC
3898         stop_writeback
3899         sync; sleep 1; sync # just to be safe
3900         BEFOREWRITES=`count_ost_writes`
3901         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3902         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3903         AFTERWRITES=`count_ost_writes`
3904         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3905                 error "$BEFOREWRITES < $AFTERWRITES"
3906         start_writeback
3907 }
3908 run_test 42a "ensure that we don't flush on close"
3909
3910 test_42b() {
3911         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3912
3913         setup_test42
3914         cancel_lru_locks $OSC
3915         stop_writeback
3916         sync
3917         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3918         BEFOREWRITES=$(count_ost_writes)
3919         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3920         AFTERWRITES=$(count_ost_writes)
3921         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3922                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3923         fi
3924         BEFOREWRITES=$(count_ost_writes)
3925         sync || error "sync: $?"
3926         AFTERWRITES=$(count_ost_writes)
3927         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3928                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3929         fi
3930         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3931         start_writeback
3932         return 0
3933 }
3934 run_test 42b "test destroy of file with cached dirty data ======"
3935
3936 # if these tests just want to test the effect of truncation,
3937 # they have to be very careful.  consider:
3938 # - the first open gets a {0,EOF}PR lock
3939 # - the first write conflicts and gets a {0, count-1}PW
3940 # - the rest of the writes are under {count,EOF}PW
3941 # - the open for truncate tries to match a {0,EOF}PR
3942 #   for the filesize and cancels the PWs.
3943 # any number of fixes (don't get {0,EOF} on open, match
3944 # composite locks, do smarter file size management) fix
3945 # this, but for now we want these tests to verify that
3946 # the cancellation with truncate intent works, so we
3947 # start the file with a full-file pw lock to match against
3948 # until the truncate.
3949 trunc_test() {
3950         test=$1
3951         file=$DIR/$test
3952         offset=$2
3953         cancel_lru_locks $OSC
3954         stop_writeback
3955         # prime the file with 0,EOF PW to match
3956         touch $file
3957         $TRUNCATE $file 0
3958         sync; sync
3959         # now the real test..
3960         dd if=/dev/zero of=$file bs=1024 count=100
3961         BEFOREWRITES=`count_ost_writes`
3962         $TRUNCATE $file $offset
3963         cancel_lru_locks $OSC
3964         AFTERWRITES=`count_ost_writes`
3965         start_writeback
3966 }
3967
3968 test_42c() {
3969         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3970
3971         trunc_test 42c 1024
3972         [ $BEFOREWRITES -eq $AFTERWRITES ] &&
3973                 error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3974         rm $file
3975 }
3976 run_test 42c "test partial truncate of file with cached dirty data"
3977
3978 test_42d() {
3979         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3980
3981         trunc_test 42d 0
3982         [ $BEFOREWRITES -eq $AFTERWRITES ] ||
3983                 error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3984         rm $file
3985 }
3986 run_test 42d "test complete truncate of file with cached dirty data"
3987
3988 test_42e() { # bug22074
3989         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3990
3991         local TDIR=$DIR/${tdir}e
3992         local pages=16 # hardcoded 16 pages, don't change it.
3993         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3994         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3995         local max_dirty_mb
3996         local warmup_files
3997
3998         test_mkdir $DIR/${tdir}e
3999         $SETSTRIPE -c 1 $TDIR
4000         createmany -o $TDIR/f $files
4001
4002         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
4003
4004         # we assume that with $OSTCOUNT files, at least one of them will
4005         # be allocated on OST0.
4006         warmup_files=$((OSTCOUNT * max_dirty_mb))
4007         createmany -o $TDIR/w $warmup_files
4008
4009         # write a large amount of data into one file and sync, to get good
4010         # avail_grant number from OST.
4011         for ((i=0; i<$warmup_files; i++)); do
4012                 idx=$($GETSTRIPE -i $TDIR/w$i)
4013                 [ $idx -ne 0 ] && continue
4014                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
4015                 break
4016         done
4017         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
4018         sync
4019         $LCTL get_param $proc_osc0/cur_dirty_bytes
4020         $LCTL get_param $proc_osc0/cur_grant_bytes
4021
4022         # create as much dirty pages as we can while not to trigger the actual
4023         # RPCs directly. but depends on the env, VFS may trigger flush during this
4024         # period, hopefully we are good.
4025         for ((i=0; i<$warmup_files; i++)); do
4026                 idx=$($GETSTRIPE -i $TDIR/w$i)
4027                 [ $idx -ne 0 ] && continue
4028                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
4029         done
4030         $LCTL get_param $proc_osc0/cur_dirty_bytes
4031         $LCTL get_param $proc_osc0/cur_grant_bytes
4032
4033         # perform the real test
4034         $LCTL set_param $proc_osc0/rpc_stats 0
4035         for ((;i<$files; i++)); do
4036                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
4037                 dd if=/dev/zero of=$TDIR/f$i bs=$PAGE_SIZE count=$pages 2>/dev/null
4038         done
4039         sync
4040         $LCTL get_param $proc_osc0/rpc_stats
4041
4042         local percent=0
4043         local have_ppr=false
4044         $LCTL get_param $proc_osc0/rpc_stats |
4045                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
4046                         # skip lines until we are at the RPC histogram data
4047                         [ "$PPR" == "pages" ] && have_ppr=true && continue
4048                         $have_ppr || continue
4049
4050                         # we only want the percent stat for < 16 pages
4051                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
4052
4053                         percent=$((percent + WPCT))
4054                         if [[ $percent -gt 15 ]]; then
4055                                 error "less than 16-pages write RPCs" \
4056                                       "$percent% > 15%"
4057                                 break
4058                         fi
4059                 done
4060         rm -rf $TDIR
4061 }
4062 run_test 42e "verify sub-RPC writes are not done synchronously"
4063
4064 test_43A() { # was test_43
4065         test_mkdir $DIR/$tdir
4066         cp -p /bin/ls $DIR/$tdir/$tfile
4067         $MULTIOP $DIR/$tdir/$tfile Ow_c &
4068         pid=$!
4069         # give multiop a chance to open
4070         sleep 1
4071
4072         $DIR/$tdir/$tfile && error "execute $DIR/$tdir/$tfile succeeded" || true
4073         kill -USR1 $pid
4074 }
4075 run_test 43A "execution of file opened for write should return -ETXTBSY"
4076
4077 test_43a() {
4078         test_mkdir $DIR/$tdir
4079         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
4080                 cp -p multiop $DIR/$tdir/multiop
4081         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
4082                 error "multiop open $TMP/$tfile.junk failed"
4083         rm $TMP/$tfile.junk     # delete junk file on close (not part of test)
4084         MULTIOP_PID=$!
4085         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
4086         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
4087         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
4088 }
4089 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
4090
4091 test_43b() {
4092         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4093
4094         test_mkdir $DIR/$tdir
4095         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
4096                 cp -p multiop $DIR/$tdir/multiop
4097         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
4098                 error "multiop open $TMP/$tfile.junk failed"
4099         rm $TMP/$tfile.junk     # delete junk file on close (not part of test)
4100         MULTIOP_PID=$!
4101         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
4102         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
4103         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
4104 }
4105 run_test 43b "truncate of file being executed should return -ETXTBSY"
4106
4107 test_43c() {
4108         local testdir="$DIR/$tdir"
4109         test_mkdir $testdir
4110         cp $SHELL $testdir/
4111         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) |
4112                 ( cd $testdir && md5sum -c )
4113 }
4114 run_test 43c "md5sum of copy into lustre"
4115
4116 test_44A() { # was test_44
4117         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
4118
4119         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
4120         dd if=$DIR/f1 bs=4k count=1 > /dev/null
4121 }
4122 run_test 44A "zero length read from a sparse stripe"
4123
4124 test_44a() {
4125         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
4126                 awk '{ print $2 }')
4127         [ -z "$nstripe" ] && skip "can't get stripe info"
4128         [[ $nstripe -gt $OSTCOUNT ]] &&
4129                 skip "Wrong default_stripe_count: $nstripe OSTCOUNT: $OSTCOUNT"
4130
4131         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
4132                 awk '{ print $2 }')
4133         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
4134                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
4135                         awk '{ print $2 }')
4136         fi
4137
4138         OFFSETS="0 $((stride/2)) $((stride-1))"
4139         for offset in $OFFSETS; do
4140                 for i in $(seq 0 $((nstripe-1))); do
4141                         local GLOBALOFFSETS=""
4142                         # size in Bytes
4143                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
4144                         local myfn=$DIR/d44a-$size
4145                         echo "--------writing $myfn at $size"
4146                         ll_sparseness_write $myfn $size ||
4147                                 error "ll_sparseness_write"
4148                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
4149                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
4150                                 error "ll_sparseness_verify $GLOBALOFFSETS"
4151
4152                         for j in $(seq 0 $((nstripe-1))); do
4153                                 # size in Bytes
4154                                 size=$((((j + $nstripe )*$stride + $offset)))
4155                                 ll_sparseness_write $myfn $size ||
4156                                         error "ll_sparseness_write"
4157                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
4158                         done
4159                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
4160                                 error "ll_sparseness_verify $GLOBALOFFSETS"
4161                         rm -f $myfn
4162                 done
4163         done
4164 }
4165 run_test 44a "test sparse pwrite ==============================="
4166
4167 dirty_osc_total() {
4168         tot=0
4169         for d in `lctl get_param -n ${OSC}.*.cur_dirty_bytes`; do
4170                 tot=$(($tot + $d))
4171         done
4172         echo $tot
4173 }
4174 do_dirty_record() {
4175         before=`dirty_osc_total`
4176         echo executing "\"$*\""
4177         eval $*
4178         after=`dirty_osc_total`
4179         echo before $before, after $after
4180 }
4181 test_45() {
4182         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4183
4184         f="$DIR/f45"
4185         # Obtain grants from OST if it supports it
4186         echo blah > ${f}_grant
4187         stop_writeback
4188         sync
4189         do_dirty_record "echo blah > $f"
4190         [[ $before -eq $after ]] && error "write wasn't cached"
4191         do_dirty_record "> $f"
4192         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
4193         do_dirty_record "echo blah > $f"
4194         [[ $before -eq $after ]] && error "write wasn't cached"
4195         do_dirty_record "sync"
4196         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
4197         do_dirty_record "echo blah > $f"
4198         [[ $before -eq $after ]] && error "write wasn't cached"
4199         do_dirty_record "cancel_lru_locks osc"
4200         [[ $before -gt $after ]] ||
4201                 error "lock cancellation didn't lower dirty count"
4202         start_writeback
4203 }
4204 run_test 45 "osc io page accounting ============================"
4205
4206 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
4207 # test tickles a bug where re-dirtying a page was failing to be mapped to the
4208 # objects offset and an assert hit when an rpc was built with 1023's mapped
4209 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
4210 test_46() {
4211         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4212
4213         f="$DIR/f46"
4214         stop_writeback
4215         sync
4216         dd if=/dev/zero of=$f bs=$PAGE_SIZE seek=511 count=1
4217         sync
4218         dd conv=notrunc if=/dev/zero of=$f bs=$PAGE_SIZE seek=1023 count=1
4219         dd conv=notrunc if=/dev/zero of=$f bs=$PAGE_SIZE seek=511 count=1
4220         sync
4221         start_writeback
4222 }
4223 run_test 46 "dirtying a previously written page ================"
4224
4225 # test_47 is removed "Device nodes check" is moved to test_28
4226
4227 test_48a() { # bug 2399
4228         [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
4229         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.63) ] &&
4230                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly"
4231
4232         test_mkdir $DIR/$tdir
4233         cd $DIR/$tdir
4234         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
4235         test_mkdir $DIR/$tdir
4236         touch foo || error "'touch foo' failed after recreating cwd"
4237         test_mkdir bar
4238         touch .foo || error "'touch .foo' failed after recreating cwd"
4239         test_mkdir .bar
4240         ls . > /dev/null || error "'ls .' failed after recreating cwd"
4241         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4242         cd . || error "'cd .' failed after recreating cwd"
4243         mkdir . && error "'mkdir .' worked after recreating cwd"
4244         rmdir . && error "'rmdir .' worked after recreating cwd"
4245         ln -s . baz || error "'ln -s .' failed after recreating cwd"
4246         cd .. || error "'cd ..' failed after recreating cwd"
4247 }
4248 run_test 48a "Access renamed working dir (should return errors)="
4249
4250 test_48b() { # bug 2399
4251         rm -rf $DIR/$tdir
4252         test_mkdir $DIR/$tdir
4253         cd $DIR/$tdir
4254         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
4255         touch foo && error "'touch foo' worked after removing cwd"
4256         mkdir foo && error "'mkdir foo' worked after removing cwd"
4257         touch .foo && error "'touch .foo' worked after removing cwd"
4258         mkdir .foo && error "'mkdir .foo' worked after removing cwd"
4259         ls . > /dev/null && error "'ls .' worked after removing cwd"
4260         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4261         mkdir . && error "'mkdir .' worked after removing cwd"
4262         rmdir . && error "'rmdir .' worked after removing cwd"
4263         ln -s . foo && error "'ln -s .' worked after removing cwd"
4264         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
4265 }
4266 run_test 48b "Access removed working dir (should return errors)="
4267
4268 test_48c() { # bug 2350
4269         #lctl set_param debug=-1
4270         #set -vx
4271         rm -rf $DIR/$tdir
4272         test_mkdir -p $DIR/$tdir/dir
4273         cd $DIR/$tdir/dir
4274         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4275         $TRACE touch foo && error "touch foo worked after removing cwd"
4276         $TRACE mkdir foo && error "'mkdir foo' worked after removing cwd"
4277         touch .foo && error "touch .foo worked after removing cwd"
4278         mkdir .foo && error "mkdir .foo worked after removing cwd"
4279         $TRACE ls . && error "'ls .' worked after removing cwd"
4280         $TRACE ls .. || error "'ls ..' failed after removing cwd"
4281         $TRACE mkdir . && error "'mkdir .' worked after removing cwd"
4282         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
4283         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
4284         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
4285 }
4286 run_test 48c "Access removed working subdir (should return errors)"
4287
4288 test_48d() { # bug 2350
4289         #lctl set_param debug=-1
4290         #set -vx
4291         rm -rf $DIR/$tdir
4292         test_mkdir -p $DIR/$tdir/dir
4293         cd $DIR/$tdir/dir
4294         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4295         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4296         $TRACE touch foo && error "'touch foo' worked after removing parent"
4297         $TRACE mkdir foo && error "mkdir foo worked after removing parent"
4298         touch .foo && error "'touch .foo' worked after removing parent"
4299         mkdir .foo && error "mkdir .foo worked after removing parent"
4300         $TRACE ls . && error "'ls .' worked after removing parent"
4301         $TRACE ls .. && error "'ls ..' worked after removing parent"
4302         $TRACE mkdir . && error "'mkdir .' worked after removing parent"
4303         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
4304         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
4305         true
4306 }
4307 run_test 48d "Access removed parent subdir (should return errors)"
4308
4309 test_48e() { # bug 4134
4310         #lctl set_param debug=-1
4311         #set -vx
4312         rm -rf $DIR/$tdir
4313         test_mkdir -p $DIR/$tdir/dir
4314         cd $DIR/$tdir/dir
4315         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4316         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4317         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
4318         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
4319         # On a buggy kernel addition of "touch foo" after cd .. will
4320         # produce kernel oops in lookup_hash_it
4321         touch ../foo && error "'cd ..' worked after recreate parent"
4322         cd $DIR
4323         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
4324 }
4325 run_test 48e "Access to recreated parent subdir (should return errors)"
4326
4327 test_49() { # LU-1030
4328         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4329         remote_ost_nodsh && skip "remote OST with nodsh"
4330
4331         # get ost1 size - lustre-OST0000
4332         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
4333                 awk '{ print $4 }')
4334         # write 800M at maximum
4335         [[ $ost1_size -lt 2 ]] && ost1_size=2
4336         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
4337
4338         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
4339         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
4340         local dd_pid=$!
4341
4342         # change max_pages_per_rpc while writing the file
4343         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
4344         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
4345         # loop until dd process exits
4346         while ps ax -opid | grep -wq $dd_pid; do
4347                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
4348                 sleep $((RANDOM % 5 + 1))
4349         done
4350         # restore original max_pages_per_rpc
4351         $LCTL set_param $osc1_mppc=$orig_mppc
4352         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
4353 }
4354 run_test 49 "Change max_pages_per_rpc won't break osc extent"
4355
4356 test_50() {
4357         # bug 1485
4358         test_mkdir $DIR/$tdir
4359         cd $DIR/$tdir
4360         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
4361 }
4362 run_test 50 "special situations: /proc symlinks  ==============="
4363
4364 test_51a() {    # was test_51
4365         # bug 1516 - create an empty entry right after ".." then split dir
4366         test_mkdir -c1 $DIR/$tdir
4367         touch $DIR/$tdir/foo
4368         $MCREATE $DIR/$tdir/bar
4369         rm $DIR/$tdir/foo
4370         createmany -m $DIR/$tdir/longfile 201
4371         FNUM=202
4372         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
4373                 $MCREATE $DIR/$tdir/longfile$FNUM
4374                 FNUM=$(($FNUM + 1))
4375                 echo -n "+"
4376         done
4377         echo
4378         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
4379 }
4380 run_test 51a "special situations: split htree with empty entry =="
4381
4382 cleanup_print_lfs_df () {
4383         trap 0
4384         $LFS df
4385         $LFS df -i
4386 }
4387
4388 test_51b() {
4389         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4390
4391         local dir=$DIR/$tdir
4392         local nrdirs=$((65536 + 100))
4393
4394         # cleanup the directory
4395         rm -fr $dir
4396
4397         test_mkdir -c1 $dir
4398
4399         $LFS df
4400         $LFS df -i
4401         local mdtidx=$(printf "%04x" $($LFS getstripe -m $dir))
4402         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
4403         [[ $numfree -lt $nrdirs ]] &&
4404                 skip "not enough free inodes ($numfree) on MDT$mdtidx"
4405
4406         # need to check free space for the directories as well
4407         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
4408         numfree=$(( blkfree / $(fs_inode_ksize) ))
4409         [[ $numfree -lt $nrdirs ]] && skip "not enough blocks ($numfree)"
4410
4411         trap cleanup_print_lfs_df EXIT
4412
4413         # create files
4414         createmany -d $dir/d $nrdirs || {
4415                 unlinkmany $dir/d $nrdirs
4416                 error "failed to create $nrdirs subdirs in MDT$mdtidx:$dir"
4417         }
4418
4419         # really created :
4420         nrdirs=$(ls -U $dir | wc -l)
4421
4422         # unlink all but 100 subdirectories, then check it still works
4423         local left=100
4424         local delete=$((nrdirs - left))
4425
4426         $LFS df
4427         $LFS df -i
4428
4429         # for ldiskfs the nlink count should be 1, but this is OSD specific
4430         # and so this is listed for informational purposes only
4431         echo "nlink before: $(stat -c %h $dir), created before: $nrdirs"
4432         unlinkmany -d $dir/d $delete ||
4433                 error "unlink of first $delete subdirs failed"
4434
4435         echo "nlink between: $(stat -c %h $dir)"
4436         local found=$(ls -U $dir | wc -l)
4437         [ $found -ne $left ] &&
4438                 error "can't find subdirs: found only $found, expected $left"
4439
4440         unlinkmany -d $dir/d $delete $left ||
4441                 error "unlink of second $left subdirs failed"
4442         # regardless of whether the backing filesystem tracks nlink accurately
4443         # or not, the nlink count shouldn't be more than "." and ".." here
4444         local after=$(stat -c %h $dir)
4445         [[ $after -gt 2 ]] && error "nlink after: $after > 2" ||
4446                 echo "nlink after: $after"
4447
4448         cleanup_print_lfs_df
4449 }
4450 run_test 51b "exceed 64k subdirectory nlink limit on create, verify unlink"
4451
4452 test_51d() {
4453         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4454         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
4455
4456         test_mkdir $DIR/$tdir
4457         createmany -o $DIR/$tdir/t- 1000
4458         $LFS getstripe $DIR/$tdir > $TMP/$tfile
4459         for N in $(seq 0 $((OSTCOUNT - 1))); do
4460                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4461                         END { printf("%0.0f", objs) }' $TMP/$tfile)
4462                 OBJS0[$N]=$(grep -A 1 idx $TMP/$tfile | awk -vobjs=0 \
4463                         '($1 == '$N') { objs += 1 } \
4464                         END { printf("%0.0f", objs) }')
4465                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4466         done
4467         unlinkmany $DIR/$tdir/t- 1000
4468
4469         NLAST=0
4470         for N in $(seq 1 $((OSTCOUNT - 1))); do
4471                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4472                         error "OST $N has less objects vs OST $NLAST" \
4473                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4474                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4475                         error "OST $N has less objects vs OST $NLAST" \
4476                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4477
4478                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4479                         error "OST $N has less #0 objects vs OST $NLAST" \
4480                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4481                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4482                         error "OST $N has less #0 objects vs OST $NLAST" \
4483                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4484                 NLAST=$N
4485         done
4486         rm -f $TMP/$tfile
4487 }
4488 run_test 51d "check object distribution"
4489
4490 test_51e() {
4491         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4492                 skip_env "ldiskfs only test"
4493         fi
4494
4495         test_mkdir -c1 $DIR/$tdir
4496         test_mkdir -c1 $DIR/$tdir/d0
4497
4498         touch $DIR/$tdir/d0/foo
4499         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4500                 error "file exceed 65000 nlink limit!"
4501         unlinkmany $DIR/$tdir/d0/f- 65001
4502         return 0
4503 }
4504 run_test 51e "check file nlink limit"
4505
4506 test_51f() {
4507         test_mkdir $DIR/$tdir
4508
4509         local max=100000
4510         local ulimit_old=$(ulimit -n)
4511         local spare=20 # number of spare fd's for scripts/libraries, etc.
4512         local mdt=$($LFS getstripe -m $DIR/$tdir)
4513         local numfree=$($LFS df -i $DIR/$tdir | awk '/MDT:'$mdt'/ { print $4 }')
4514
4515         echo "MDT$mdt numfree=$numfree, max=$max"
4516         [[ $numfree -gt $max ]] && numfree=$max || numfree=$((numfree * 7 / 8))
4517         if [ $((numfree + spare)) -gt $ulimit_old ]; then
4518                 while ! ulimit -n $((numfree + spare)); do
4519                         numfree=$((numfree * 3 / 4))
4520                 done
4521                 echo "changed ulimit from $ulimit_old to $((numfree + spare))"
4522         else
4523                 echo "left ulimit at $ulimit_old"
4524         fi
4525
4526         createmany -o -k -t 120 $DIR/$tdir/f $numfree || {
4527                 unlinkmany $DIR/$tdir/f $numfree
4528                 error "create+open $numfree files in $DIR/$tdir failed"
4529         }
4530         ulimit -n $ulimit_old
4531
4532         # if createmany exits at 120s there will be fewer than $numfree files
4533         unlinkmany $DIR/$tdir/f $numfree || true
4534 }
4535 run_test 51f "check many open files limit"
4536
4537 test_52a() {
4538         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4539         test_mkdir $DIR/$tdir
4540         touch $DIR/$tdir/foo
4541         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4542         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4543         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4544         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4545         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4546                                         error "link worked"
4547         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4548         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4549         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4550                                                      error "lsattr"
4551         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4552         cp -r $DIR/$tdir $TMP/
4553         rm -fr $DIR/$tdir $TMP/$tdir || error "cleanup rm failed"
4554 }
4555 run_test 52a "append-only flag test (should return errors)"
4556
4557 test_52b() {
4558         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4559         test_mkdir $DIR/$tdir
4560         touch $DIR/$tdir/foo
4561         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4562         cat test > $DIR/$tdir/foo && error "cat test worked"
4563         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4564         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4565         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4566                                         error "link worked"
4567         echo foo >> $DIR/$tdir/foo && error "echo worked"
4568         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4569         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4570         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4571         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4572                                                         error "lsattr"
4573         chattr -i $DIR/$tdir/foo || error "chattr failed"
4574
4575         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4576 }
4577 run_test 52b "immutable flag test (should return errors) ======="
4578
4579 test_53() {
4580         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4581         remote_mds_nodsh && skip "remote MDS with nodsh"
4582         remote_ost_nodsh && skip "remote OST with nodsh"
4583
4584         local param
4585         local param_seq
4586         local ostname
4587         local mds_last
4588         local mds_last_seq
4589         local ost_last
4590         local ost_last_seq
4591         local ost_last_id
4592         local ostnum
4593         local node
4594         local found=false
4595         local support_last_seq=true
4596
4597         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
4598                 support_last_seq=false
4599
4600         # only test MDT0000
4601         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4602         local value
4603         for value in $(do_facet $SINGLEMDS \
4604                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4605                 param=$(echo ${value[0]} | cut -d "=" -f1)
4606                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4607
4608                 if $support_last_seq; then
4609                         param_seq=$(echo $param |
4610                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4611                         mds_last_seq=$(do_facet $SINGLEMDS \
4612                                        $LCTL get_param -n $param_seq)
4613                 fi
4614                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4615
4616                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4617                 node=$(facet_active_host ost$((ostnum+1)))
4618                 param="obdfilter.$ostname.last_id"
4619                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4620                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4621                         ost_last_id=$ost_last
4622
4623                         if $support_last_seq; then
4624                                 ost_last_id=$(echo $ost_last |
4625                                               awk -F':' '{print $2}' |
4626                                               sed -e "s/^0x//g")
4627                                 ost_last_seq=$(echo $ost_last |
4628                                                awk -F':' '{print $1}')
4629                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4630                         fi
4631
4632                         if [[ $ost_last_id != $mds_last ]]; then
4633                                 error "$ost_last_id != $mds_last"
4634                         else
4635                                 found=true
4636                                 break
4637                         fi
4638                 done
4639         done
4640         $found || error "can not match last_seq/last_id for $mdtosc"
4641         return 0
4642 }
4643 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4644
4645 test_54a() {
4646         perl -MSocket -e ';' || skip "no Socket perl module installed"
4647
4648         $SOCKETSERVER $DIR/socket ||
4649                 error "$SOCKETSERVER $DIR/socket failed: $?"
4650         $SOCKETCLIENT $DIR/socket ||
4651                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4652         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4653 }
4654 run_test 54a "unix domain socket test =========================="
4655
4656 test_54b() {
4657         f="$DIR/f54b"
4658         mknod $f c 1 3
4659         chmod 0666 $f
4660         dd if=/dev/zero of=$f bs=$PAGE_SIZE count=1
4661 }
4662 run_test 54b "char device works in lustre ======================"
4663
4664 find_loop_dev() {
4665         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4666         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4667         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4668
4669         for i in $(seq 3 7); do
4670                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4671                 LOOPDEV=$LOOPBASE$i
4672                 LOOPNUM=$i
4673                 break
4674         done
4675 }
4676
4677 cleanup_54c() {
4678         local rc=0
4679         loopdev="$DIR/loop54c"
4680
4681         trap 0
4682         $UMOUNT $DIR/$tdir || rc=$?
4683         losetup -d $loopdev || true
4684         losetup -d $LOOPDEV || true
4685         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4686         return $rc
4687 }
4688
4689 test_54c() {
4690         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4691
4692         loopdev="$DIR/loop54c"
4693
4694         find_loop_dev
4695         [ -z "$LOOPNUM" ] && skip_env "couldn't find empty loop device"
4696         trap cleanup_54c EXIT
4697         mknod $loopdev b 7 $LOOPNUM
4698         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4699         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE seek=1024 count=1 > /dev/null
4700         losetup $loopdev $DIR/$tfile ||
4701                 error "can't set up $loopdev for $DIR/$tfile"
4702         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4703         test_mkdir $DIR/$tdir
4704         mount -t ext2 $loopdev $DIR/$tdir ||
4705                 error "error mounting $loopdev on $DIR/$tdir"
4706         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$PAGE_SIZE count=30 ||
4707                 error "dd write"
4708         df $DIR/$tdir
4709         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$PAGE_SIZE count=30 ||
4710                 error "dd read"
4711         cleanup_54c
4712 }
4713 run_test 54c "block device works in lustre ====================="
4714
4715 test_54d() {
4716         f="$DIR/f54d"
4717         string="aaaaaa"
4718         mknod $f p
4719         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4720 }
4721 run_test 54d "fifo device works in lustre ======================"
4722
4723 test_54e() {
4724         f="$DIR/f54e"
4725         string="aaaaaa"
4726         cp -aL /dev/console $f
4727         echo $string > $f || error "echo $string to $f failed"
4728 }
4729 run_test 54e "console/tty device works in lustre ======================"
4730
4731 test_56a() {
4732         local numfiles=3
4733         local dir=$DIR/$tdir
4734
4735         rm -rf $dir
4736         test_mkdir -p $dir/dir
4737         for i in $(seq $numfiles); do
4738                 touch $dir/file$i
4739                 touch $dir/dir/file$i
4740         done
4741
4742         local numcomp=$($LFS getstripe --component-count $dir)
4743
4744         [[ $numcomp == 0 ]] && numcomp=1
4745
4746         # test lfs getstripe with --recursive
4747         local filenum=$($LFS getstripe -r $dir | egrep -c "obdidx|l_ost_idx")
4748
4749         [[ $filenum -eq $((numfiles * 2)) ]] ||
4750                 error "$LFS getstripe -r: found $filenum != $((numfiles * 2))"
4751         filenum=$($LFS getstripe $dir | egrep -c "obdidx|l_ost_idx")
4752         [[ $filenum -eq $numfiles ]] ||
4753                 error "$LFS getstripe $dir: found $filenum, not $numfiles"
4754         echo "$LFS getstripe showed obdidx or l_ost_idx"
4755
4756         # test lfs getstripe with file instead of dir
4757         filenum=$($LFS getstripe $dir/file1 | egrep -c "obdidx|l_ost_idx")
4758         [[ $filenum -eq 1 ]] ||
4759                 error "$LFS getstripe $dir/file1: found $filenum, not 1"
4760         echo "$LFS getstripe file1 passed"
4761
4762         #test lfs getstripe with --verbose
4763         filenum=$($LFS getstripe --verbose $dir | grep -c lmm_magic)
4764         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
4765                 error "$LFS getstripe --verbose $dir: "\
4766                       "got $filenum want $((numfiles * numcomp)) lmm_magic"
4767         [[ $($LFS getstripe $dir | grep -c lmm_magic) -eq 0 ]] ||
4768                 error "$LFS getstripe $dir: showed lmm_magic"
4769
4770         #test lfs getstripe with -v prints lmm_fid
4771         filenum=$($LFS getstripe -v $dir | grep -c lmm_fid)
4772         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
4773                 error "$LFS getstripe -v $dir: "\
4774                       "got $filenum want $((numfiles * numcomp)) lmm_fid"
4775         [[ $($LFS getstripe $dir | grep -c lmm_fid) -eq 0 ]] ||
4776                 error "$LFS getstripe $dir: showed lmm_fid by default"
4777         echo "$LFS getstripe --verbose passed"
4778
4779         #check for FID information
4780         local fid1=$($LFS getstripe --fid $dir/file1)
4781         local fid2=$($LFS getstripe --verbose $dir/file1 |
4782                      awk '/lmm_fid: / { print $2; exit; }')
4783         local fid3=$($LFS path2fid $dir/file1)
4784
4785         [ "$fid1" != "$fid2" ] &&
4786                 error "getstripe --fid '$fid1' != getstripe --verbose '$fid2'"
4787         [ "$fid1" != "$fid3" ] &&
4788                 error "getstripe --fid '$fid1' != lfs path2fid '$fid3'"
4789         echo "$LFS getstripe --fid passed"
4790
4791         #test lfs getstripe with --obd
4792         $LFS getstripe --obd wrong_uuid $dir 2>&1 | grep -q "unknown obduuid" ||
4793                 error "$LFS getstripe --obd wrong_uuid: should return error"
4794
4795         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
4796
4797         local ostidx=1
4798         local obduuid=$(ostuuid_from_index $ostidx)
4799         local found=$($LFS getstripe -r --obd $obduuid $dir |
4800                 grep 'lmm_stripe_offset:' | grep -c " $ostidx\$")
4801
4802         filenum=$($LFS getstripe -ir $dir | grep -c "^$ostidx\$")
4803         [[ $($LFS getstripe -id $dir) -ne $ostidx ]] ||
4804                 ((filenum--))
4805         [[ $($LFS getstripe -id $dir/dir) -ne $ostidx ]] ||
4806                 ((filenum--))
4807
4808         [[ $found -eq $filenum ]] ||
4809                 error "$LFS getstripe --obd: found $found expect $filenum"
4810         [[ $($LFS getstripe -r -v --obd $obduuid $dir |
4811                 sed '/^[         ]*'${ostidx}'[  ]/d' |
4812                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4813                 error "$LFS getstripe --obd: should not show file on other obd"
4814         echo "$LFS getstripe --obd passed"
4815 }
4816 run_test 56a "check $LFS getstripe"
4817
4818 test_56b() {
4819         local dir=$DIR/$tdir
4820         local numdirs=3
4821
4822         test_mkdir $dir
4823         for i in $(seq $numdirs); do
4824                 test_mkdir $dir/dir$i
4825         done
4826
4827         # test lfs getdirstripe default mode is non-recursion, which is
4828         # different from lfs getstripe
4829         local dircnt=$($LFS getdirstripe $dir | grep -c lmv_stripe_count)
4830
4831         [[ $dircnt -eq 1 ]] ||
4832                 error "$LFS getdirstripe: found $dircnt, not 1"
4833         dircnt=$($LFS getdirstripe --recursive $dir |
4834                 grep -c lmv_stripe_count)
4835         [[ $dircnt -eq $((numdirs + 1)) ]] ||
4836                 error "$LFS getdirstripe -r: $dircnt, != $((numdirs + 1))"
4837 }
4838 run_test 56b "check $LFS getdirstripe"
4839
4840 test_56c() {
4841         remote_ost_nodsh && skip "remote OST with nodsh"
4842
4843         local ost_idx=0
4844         local ost_name=$(ostname_from_index $ost_idx)
4845         local old_status=$(ost_dev_status $ost_idx)
4846
4847         [[ -z "$old_status" ]] ||
4848                 skip_env "OST $ost_name is in $old_status status"
4849
4850         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=1
4851         sleep_maxage
4852
4853         local new_status=$(ost_dev_status $ost_idx)
4854
4855         [[ "$new_status" = "D" ]] ||
4856                 error "OST $ost_name is in status of '$new_status', not 'D'"
4857
4858         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=0
4859         sleep_maxage
4860
4861         new_status=$(ost_dev_status $ost_idx)
4862         [[ -z "$new_status" ]] ||
4863                 error "OST $ost_name is in status of '$new_status', not ''"
4864 }
4865 run_test 56c "check 'lfs df' showing device status"
4866
4867 NUMFILES=3
4868 NUMDIRS=3
4869 setup_56() {
4870         local local_tdir="$1"
4871         local local_numfiles="$2"
4872         local local_numdirs="$3"
4873         local dir_params="$4"
4874         local dir_stripe_params="$5"
4875
4876         if [ ! -d "$local_tdir" ] ; then
4877                 test_mkdir -p $dir_stripe_params $local_tdir
4878                 [ "$dir_params" ] && $LFS setstripe $dir_params $local_tdir
4879                 for i in $(seq $local_numfiles) ; do
4880                         touch $local_tdir/file$i
4881                 done
4882                 for i in $(seq $local_numdirs) ; do
4883                         test_mkdir $dir_stripe_params $local_tdir/dir$i
4884                         for j in $(seq $local_numfiles) ; do
4885                                 touch $local_tdir/dir$i/file$j
4886                         done
4887                 done
4888         fi
4889 }
4890
4891 setup_56_special() {
4892         local local_tdir=$1
4893         local local_numfiles=$2
4894         local local_numdirs=$3
4895
4896         setup_56 $local_tdir $local_numfiles $local_numdirs
4897
4898         if [ ! -e "$local_tdir/loop${local_numfiles}b" ] ; then
4899                 for i in $(seq $local_numfiles) ; do
4900                         mknod $local_tdir/loop${i}b b 7 $i
4901                         mknod $local_tdir/null${i}c c 1 3
4902                         ln -s $local_tdir/file1 $local_tdir/link${i}
4903                 done
4904                 for i in $(seq $local_numdirs) ; do
4905                         mknod $local_tdir/dir$i/loop${i}b b 7 $i
4906                         mknod $local_tdir/dir$i/null${i}c c 1 3
4907                         ln -s $local_tdir/dir$i/file1 $local_tdir/dir$i/link${i}
4908                 done
4909         fi
4910 }
4911
4912 test_56g() {
4913         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4914         local expected=$(($NUMDIRS + 2))
4915
4916         setup_56 $dir $NUMFILES $NUMDIRS
4917
4918         # test lfs find with -name
4919         for i in $(seq $NUMFILES) ; do
4920                 local nums=$($LFS find -name "*$i" $dir | wc -l)
4921
4922                 [ $nums -eq $expected ] ||
4923                         error "lfs find -name '*$i' $dir wrong: "\
4924                               "found $nums, expected $expected"
4925         done
4926 }
4927 run_test 56g "check lfs find -name"
4928
4929 test_56h() {
4930         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4931         local expected=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4932
4933         setup_56 $dir $NUMFILES $NUMDIRS
4934
4935         # test lfs find with ! -name
4936         for i in $(seq $NUMFILES) ; do
4937                 local nums=$($LFS find ! -name "*$i" $dir | wc -l)
4938
4939                 [ $nums -eq $expected ] ||
4940                         error "lfs find ! -name '*$i' $dir wrong: "\
4941                               "found $nums, expected $expected"
4942         done
4943 }
4944 run_test 56h "check lfs find ! -name"
4945
4946 test_56i() {
4947         local dir=$DIR/$tdir
4948
4949         test_mkdir $dir
4950
4951         local cmd="$LFS find -ost $(ostuuid_from_index 0 $dir) $dir"
4952         local out=$($cmd)
4953
4954         [ -z "$out" ] || error "'$cmd' returned directory '$out'"
4955 }
4956 run_test 56i "check 'lfs find -ost UUID' skips directories"
4957
4958 test_56j() {
4959         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4960
4961         setup_56_special $dir $NUMFILES $NUMDIRS
4962
4963         local expected=$((NUMDIRS + 1))
4964         local cmd="$LFS find -type d $dir"
4965         local nums=$($cmd | wc -l)
4966
4967         [ $nums -eq $expected ] ||
4968                 error "'$cmd' wrong: found $nums, expected $expected"
4969 }
4970 run_test 56j "check lfs find -type d"
4971
4972 test_56k() {
4973         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4974
4975         setup_56_special $dir $NUMFILES $NUMDIRS
4976
4977         local expected=$(((NUMDIRS + 1) * NUMFILES))
4978         local cmd="$LFS find -type f $dir"
4979         local nums=$($cmd | wc -l)
4980
4981         [ $nums -eq $expected ] ||
4982                 error "'$cmd' wrong: found $nums, expected $expected"
4983 }
4984 run_test 56k "check lfs find -type f"
4985
4986 test_56l() {
4987         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4988
4989         setup_56_special $dir $NUMFILES $NUMDIRS
4990
4991         local expected=$((NUMDIRS + NUMFILES))
4992         local cmd="$LFS find -type b $dir"
4993         local nums=$($cmd | wc -l)
4994
4995         [ $nums -eq $expected ] ||
4996                 error "'$cmd' wrong: found $nums, expected $expected"
4997 }
4998 run_test 56l "check lfs find -type b"
4999
5000 test_56m() {
5001         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5002
5003         setup_56_special $dir $NUMFILES $NUMDIRS
5004
5005         local expected=$((NUMDIRS + NUMFILES))
5006         local cmd="$LFS find -type c $dir"
5007         local nums=$($cmd | wc -l)
5008         [ $nums -eq $expected ] ||
5009                 error "'$cmd' wrong: found $nums, expected $expected"
5010 }
5011 run_test 56m "check lfs find -type c"
5012
5013 test_56n() {
5014         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5015         setup_56_special $dir $NUMFILES $NUMDIRS
5016
5017         local expected=$((NUMDIRS + NUMFILES))
5018         local cmd="$LFS find -type l $dir"
5019         local nums=$($cmd | wc -l)
5020
5021         [ $nums -eq $expected ] ||
5022                 error "'$cmd' wrong: found $nums, expected $expected"
5023 }
5024 run_test 56n "check lfs find -type l"
5025
5026 test_56o() {
5027         local dir=$DIR/$tdir
5028
5029         setup_56 $dir $NUMFILES $NUMDIRS
5030         utime $dir/file1 > /dev/null || error "utime (1)"
5031         utime $dir/file2 > /dev/null || error "utime (2)"
5032         utime $dir/dir1 > /dev/null || error "utime (3)"
5033         utime $dir/dir2 > /dev/null || error "utime (4)"
5034         utime $dir/dir1/file1 > /dev/null || error "utime (5)"
5035         dd if=/dev/zero count=1 >> $dir/dir1/file1 && sync
5036
5037         local expected=4
5038         local nums=$($LFS find -mtime +0 $dir | wc -l)
5039
5040         [ $nums -eq $expected ] ||
5041                 error "lfs find -mtime +0 $dir: found $nums expect $expected"
5042
5043         expected=12
5044         cmd="$LFS find -mtime 0 $dir"
5045         nums=$($cmd | wc -l)
5046         [ $nums -eq $expected ] ||
5047                 error "'$cmd' wrong: found $nums, expected $expected"
5048 }
5049 run_test 56o "check lfs find -mtime for old files"
5050
5051 test_56p() {
5052         [ $RUNAS_ID -eq $UID ] &&
5053                 skip_env "RUNAS_ID = UID = $UID -- skipping"
5054
5055         local dir=$DIR/$tdir
5056
5057         setup_56 $dir $NUMFILES $NUMDIRS
5058         chown $RUNAS_ID $dir/file* || error "chown $DIR/${tdir}g/file$i failed"
5059
5060         local expected=$NUMFILES
5061         local cmd="$LFS find -uid $RUNAS_ID $dir"
5062         local nums=$($cmd | wc -l)
5063
5064         [ $nums -eq $expected ] ||
5065                 error "'$cmd' wrong: found $nums, expected $expected"
5066
5067         expected=$(((NUMFILES + 1) * NUMDIRS + 1))
5068         cmd="$LFS find ! -uid $RUNAS_ID $dir"
5069         nums=$($cmd | wc -l)
5070         [ $nums -eq $expected ] ||
5071                 error "'$cmd' wrong: found $nums, expected $expected"
5072 }
5073 run_test 56p "check lfs find -uid and ! -uid"
5074
5075 test_56q() {
5076         [ $RUNAS_ID -eq $UID ] &&
5077                 skip_env "RUNAS_ID = UID = $UID -- skipping"
5078
5079         local dir=$DIR/$tdir
5080
5081         setup_56 $dir $NUMFILES $NUMDIRS
5082         chgrp $RUNAS_GID $dir/file* || error "chown $dir/file$i failed"
5083
5084         local expected=$NUMFILES
5085         local cmd="$LFS find -gid $RUNAS_GID $dir"
5086         local nums=$($cmd | wc -l)
5087
5088         [ $nums -eq $expected ] ||
5089                 error "'$cmd' wrong: found $nums, expected $expected"
5090
5091         expected=$(( ($NUMFILES+1) * $NUMDIRS + 1))
5092         cmd="$LFS find ! -gid $RUNAS_GID $dir"
5093         nums=$($cmd | wc -l)
5094         [ $nums -eq $expected ] ||
5095                 error "'$cmd' wrong: found $nums, expected $expected"
5096 }
5097 run_test 56q "check lfs find -gid and ! -gid"
5098
5099 test_56r() {
5100         local dir=$DIR/$tdir
5101
5102         setup_56 $dir $NUMFILES $NUMDIRS
5103
5104         local expected=12
5105         local cmd="$LFS find -size 0 -type f $dir"
5106         local nums=$($cmd | wc -l)
5107
5108         [ $nums -eq $expected ] ||
5109                 error "'$cmd' wrong: found $nums, expected $expected"
5110         expected=0
5111         cmd="$LFS find ! -size 0 -type f $dir"
5112         nums=$($cmd | wc -l)
5113         [ $nums -eq $expected ] ||
5114                 error "'$cmd' wrong: found $nums, expected $expected"
5115         echo "test" > $dir/$tfile
5116         echo "test2" > $dir/$tfile.2 && sync
5117         expected=1
5118         cmd="$LFS find -size 5 -type f $dir"
5119         nums=$($cmd | wc -l)
5120         [ $nums -eq $expected ] ||
5121                 error "'$cmd' wrong: found $nums, expected $expected"
5122         expected=1
5123         cmd="$LFS find -size +5 -type f $dir"
5124         nums=$($cmd | wc -l)
5125         [ $nums -eq $expected ] ||
5126                 error "'$cmd' wrong: found $nums, expected $expected"
5127         expected=2
5128         cmd="$LFS find -size +0 -type f $dir"
5129         nums=$($cmd | wc -l)
5130         [ $nums -eq $expected ] ||
5131                 error "'$cmd' wrong: found $nums, expected $expected"
5132         expected=2
5133         cmd="$LFS find ! -size -5 -type f $dir"
5134         nums=$($cmd | wc -l)
5135         [ $nums -eq $expected ] ||
5136                 error "'$cmd' wrong: found $nums, expected $expected"
5137         expected=12
5138         cmd="$LFS find -size -5 -type f $dir"
5139         nums=$($cmd | wc -l)
5140         [ $nums -eq $expected ] ||
5141                 error "'$cmd' wrong: found $nums, expected $expected"
5142 }
5143 run_test 56r "check lfs find -size works"
5144
5145 test_56s() { # LU-611 #LU-9369
5146         [[ $OSTCOUNT -lt 2 ]] && skip_env "need at least 2 OSTs"
5147
5148         local dir=$DIR/$tdir
5149         local onestripe=$(((NUMDIRS + 1) * NUMFILES))
5150
5151         setup_56 $dir $NUMFILES $NUMDIRS "-c 1"
5152         for i in $(seq $NUMDIRS); do
5153                 $LFS setstripe -c $((OSTCOUNT + 1)) $dir/dir$i/$tfile
5154         done
5155
5156         local expected=$NUMDIRS
5157         local cmd="$LFS find -c $OSTCOUNT $dir"
5158         local nums=$($cmd | wc -l)
5159
5160         [ $nums -eq $expected ] || {
5161                 $LFS getstripe -R $dir
5162                 error "'$cmd' wrong: found $nums, expected $expected"
5163         }
5164
5165         expected=$((NUMDIRS + onestripe))
5166         cmd="$LFS find -stripe-count +0 -type f $dir"
5167         nums=$($cmd | wc -l)
5168         [ $nums -eq $expected ] || {
5169                 $LFS getstripe -R $dir
5170                 error "'$cmd' wrong: found $nums, expected $expected"
5171         }
5172
5173         expected=$onestripe
5174         cmd="$LFS find -stripe-count 1 -type f $dir"
5175         nums=$($cmd | wc -l)
5176         [ $nums -eq $expected ] || {
5177                 $LFS getstripe -R $dir
5178                 error "'$cmd' wrong: found $nums, expected $expected"
5179         }
5180
5181         cmd="$LFS find -stripe-count -2 -type f $dir"
5182         nums=$($cmd | wc -l)
5183         [ $nums -eq $expected ] || {
5184                 $LFS getstripe -R $dir
5185                 error "'$cmd' wrong: found $nums, expected $expected"
5186         }
5187
5188         expected=0
5189         cmd="$LFS find -stripe-count $((OSTCOUNT + 1)) -type f $dir"
5190         nums=$($cmd | wc -l)
5191         [ $nums -eq $expected ] || {
5192                 $LFS getstripe -R $dir
5193                 error "'$cmd' wrong: found $nums, expected $expected"
5194         }
5195 }
5196 run_test 56s "check lfs find -stripe-count works"
5197
5198 test_56t() { # LU-611 #LU-9369
5199         local dir=$DIR/$tdir
5200
5201         setup_56 $dir 0 $NUMDIRS
5202         for i in $(seq $NUMDIRS); do
5203                 $LFS setstripe -S 8M $dir/dir$i/$tfile
5204         done
5205
5206         local expected=$NUMDIRS
5207         local cmd="$LFS find -S 8M $dir"
5208         local nums=$($cmd | wc -l)
5209
5210         [ $nums -eq $expected ] || {
5211                 $LFS getstripe -R $dir
5212                 error "'$cmd' wrong: found $nums, expected $expected"
5213         }
5214         rm -rf $dir
5215
5216         setup_56 $dir $NUMFILES $NUMDIRS "--stripe-size 512k"
5217
5218         $LFS setstripe -S 256k $dir/$tfile.{0,1,2,3}
5219
5220         expected=$(((NUMDIRS + 1) * NUMFILES))
5221         cmd="$LFS find -stripe-size 512k -type f $dir"
5222         nums=$($cmd | wc -l)
5223         [ $nums -eq $expected ] ||
5224                 error "'$cmd' wrong: found $nums, expected $expected"
5225
5226         cmd="$LFS find -stripe-size +320k -type f $dir"
5227         nums=$($cmd | wc -l)
5228         [ $nums -eq $expected ] ||
5229                 error "'$cmd' wrong: found $nums, expected $expected"
5230
5231         expected=$(((NUMDIRS + 1) * NUMFILES + 4))
5232         cmd="$LFS find -stripe-size +200k -type f $dir"
5233         nums=$($cmd | wc -l)
5234         [ $nums -eq $expected ] ||
5235                 error "'$cmd' wrong: found $nums, expected $expected"
5236
5237         cmd="$LFS find -stripe-size -640k -type f $dir"
5238         nums=$($cmd | wc -l)
5239         [ $nums -eq $expected ] ||
5240                 error "'$cmd' wrong: found $nums, expected $expected"
5241
5242         expected=4
5243         cmd="$LFS find -stripe-size 256k -type f $dir"
5244         nums=$($cmd | wc -l)
5245         [ $nums -eq $expected ] ||
5246                 error "'$cmd' wrong: found $nums, expected $expected"
5247
5248         cmd="$LFS find -stripe-size -320k -type f $dir"
5249         nums=$($cmd | wc -l)
5250         [ $nums -eq $expected ] ||
5251                 error "'$cmd' wrong: found $nums, expected $expected"
5252
5253         expected=0
5254         cmd="$LFS find -stripe-size 1024k -type f $dir"
5255         nums=$($cmd | wc -l)
5256         [ $nums -eq $expected ] ||
5257                 error "'$cmd' wrong: found $nums, expected $expected"
5258 }
5259 run_test 56t "check lfs find -stripe-size works"
5260
5261 test_56u() { # LU-611
5262         local dir=$DIR/$tdir
5263
5264         setup_56 $dir $NUMFILES $NUMDIRS "-i 0 -c 1"
5265
5266         if [[ $OSTCOUNT -gt 1 ]]; then
5267                 $LFS setstripe -i 1 -c 1 $dir/$tfile.{0,1,2,3}
5268                 onestripe=4
5269         else
5270                 onestripe=0
5271         fi
5272
5273         local expected=$(((NUMDIRS + 1) * NUMFILES))
5274         local cmd="$LFS find -stripe-index 0 -type f $dir"
5275         local nums=$($cmd | wc -l)
5276
5277         [ $nums -eq $expected ] ||
5278                 error "'$cmd' wrong: found $nums, expected $expected"
5279
5280         expected=$onestripe
5281         cmd="$LFS find -stripe-index 1 -type f $dir"
5282         nums=$($cmd | wc -l)
5283         [ $nums -eq $expected ] ||
5284                 error "'$cmd' wrong: found $nums, expected $expected"
5285
5286         cmd="$LFS find ! -stripe-index 0 -type f $dir"
5287         nums=$($cmd | wc -l)
5288         [ $nums -eq $expected ] ||
5289                 error "'$cmd' wrong: found $nums, expected $expected"
5290
5291         expected=0
5292         # This should produce an error and not return any files
5293         cmd="$LFS find -stripe-index $OSTCOUNT -type f $dir"
5294         nums=$($cmd 2>/dev/null | wc -l)
5295         [ $nums -eq $expected ] ||
5296                 error "'$cmd' wrong: found $nums, expected $expected"
5297
5298         if [[ $OSTCOUNT -gt 1 ]]; then
5299                 expected=$(((NUMDIRS + 1) * NUMFILES + onestripe))
5300                 cmd="$LFS find -stripe-index 0,1 -type f $dir"
5301                 nums=$($cmd | wc -l)
5302                 [ $nums -eq $expected ] ||
5303                         error "'$cmd' wrong: found $nums, expected $expected"
5304         fi
5305 }
5306 run_test 56u "check lfs find -stripe-index works"
5307
5308 test_56v() {
5309         local mdt_idx=0
5310         local dir=$DIR/$tdir
5311
5312         setup_56 $dir $NUMFILES $NUMDIRS
5313
5314         UUID=$(mdtuuid_from_index $mdt_idx $dir)
5315         [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT $mdt_idx"
5316
5317         for file in $($LFS find -m $UUID $dir); do
5318                 file_midx=$($LFS getstripe -m $file)
5319                 [ $file_midx -eq $mdt_idx ] ||
5320                         error "lfs find -m $UUID != getstripe -m $file_midx"
5321         done
5322 }
5323 run_test 56v "check 'lfs find -m match with lfs getstripe -m'"
5324
5325 test_56w() {
5326         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5327         [ $PARALLEL == "yes" ] && skip "skip parallel run"
5328
5329         local dir=$DIR/$tdir
5330
5331         setup_56 $dir $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
5332
5333         local stripe_size=$($LFS getstripe -S -d $dir) ||
5334                 error "$LFS getstripe -S -d $dir failed"
5335         stripe_size=${stripe_size%% *}
5336
5337         local file_size=$((stripe_size * OSTCOUNT))
5338         local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
5339         local required_space=$((file_num * file_size))
5340         local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
5341                            head -n1)
5342         [[ $free_space -le $((required_space / 1024)) ]] &&
5343                 skip_env "need $required_space, have $free_space kbytes"
5344
5345         local dd_bs=65536
5346         local dd_count=$((file_size / dd_bs))
5347
5348         # write data into the files
5349         local i
5350         local j
5351         local file
5352
5353         for i in $(seq $NUMFILES); do
5354                 file=$dir/file$i
5355                 yes | dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5356                         error "write data into $file failed"
5357         done
5358         for i in $(seq $NUMDIRS); do
5359                 for j in $(seq $NUMFILES); do
5360                         file=$dir/dir$i/file$j
5361                         yes|dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5362                                 error "write data into $file failed"
5363                 done
5364         done
5365
5366         # $LFS_MIGRATE will fail if hard link migration is unsupported
5367         if [[ $(lustre_version_code mds1) -gt $(version_code 2.5.55) ]]; then
5368                 createmany -l$dir/dir1/file1 $dir/dir1/link 200 ||
5369                         error "creating links to $dir/dir1/file1 failed"
5370         fi
5371
5372         local expected=-1
5373
5374         [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
5375
5376         # lfs_migrate file
5377         local cmd="$LFS_MIGRATE -y -c $expected $dir/file1"
5378
5379         echo "$cmd"
5380         eval $cmd || error "$cmd failed"
5381
5382         check_stripe_count $dir/file1 $expected
5383
5384         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.90) ];
5385         then
5386                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
5387                 # OST 1 if it is on OST 0. This file is small enough to
5388                 # be on only one stripe.
5389                 file=$dir/migr_1_ost
5390                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
5391                         error "write data into $file failed"
5392                 local obdidx=$($LFS getstripe -i $file)
5393                 local oldmd5=$(md5sum $file)
5394                 local newobdidx=0
5395
5396                 [[ $obdidx -eq 0 ]] && newobdidx=1
5397                 cmd="$LFS migrate -i $newobdidx $file"
5398                 echo $cmd
5399                 eval $cmd || error "$cmd failed"
5400
5401                 local realobdix=$($LFS getstripe -i $file)
5402                 local newmd5=$(md5sum $file)
5403
5404                 [[ $newobdidx -ne $realobdix ]] &&
5405                         error "new OST is different (was=$obdidx, "\
5406                               "wanted=$newobdidx, got=$realobdix)"
5407                 [[ "$oldmd5" != "$newmd5" ]] &&
5408                         error "md5sum differ: $oldmd5, $newmd5"
5409         fi
5410
5411         # lfs_migrate dir
5412         cmd="$LFS_MIGRATE -y -c $expected $dir/dir1"
5413         echo "$cmd"
5414         eval $cmd || error "$cmd failed"
5415
5416         for j in $(seq $NUMFILES); do
5417                 check_stripe_count $dir/dir1/file$j $expected
5418         done
5419
5420         # lfs_migrate works with lfs find
5421         cmd="$LFS find -stripe_count $OSTCOUNT -type f $dir |
5422              $LFS_MIGRATE -y -c $expected"
5423         echo "$cmd"
5424         eval $cmd || error "$cmd failed"
5425
5426         for i in $(seq 2 $NUMFILES); do
5427                 check_stripe_count $dir/file$i $expected
5428         done
5429         for i in $(seq 2 $NUMDIRS); do
5430                 for j in $(seq $NUMFILES); do
5431                 check_stripe_count $dir/dir$i/file$j $expected
5432                 done
5433         done
5434 }
5435 run_test 56w "check lfs_migrate -c stripe_count works"
5436
5437 test_56wb() {
5438         local file1=$DIR/$tdir/file1
5439         local create_pool=false
5440         local initial_pool=$($LFS getstripe -p $DIR)
5441         local pool_list=()
5442         local pool=""
5443
5444         echo -n "Creating test dir..."
5445         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
5446         echo "done."
5447
5448         echo -n "Creating test file..."
5449         touch $file1 || error "cannot create file"
5450         echo "done."
5451
5452         echo -n "Detecting existing pools..."
5453         pool_list=($($LFS pool_list $FSNAME | grep "$FSNAME\." | cut -d. -f2))
5454
5455         if [ ${#pool_list[@]} -gt 0 ]; then
5456                 echo "${pool_list[@]}"
5457                 for thispool in "${pool_list[@]}"; do
5458                         if [[ -z "$initial_pool" ||
5459                               "$initial_pool" != "$thispool" ]]; then
5460                                 pool="$thispool"
5461                                 echo "Using existing pool '$pool'"
5462                                 break
5463                         fi
5464                 done
5465         else
5466                 echo "none detected."
5467         fi
5468         if [ -z "$pool" ]; then
5469                 pool=${POOL:-testpool}
5470                 [ "$initial_pool" = "$pool" ] && pool="testpool2"
5471                 echo -n "Creating pool '$pool'..."
5472                 create_pool=true
5473                 pool_add $pool &> /dev/null ||
5474                         error "pool_add failed"
5475                 echo "done."
5476
5477                 echo -n "Adding target to pool..."
5478                 pool_add_targets $pool 0 0 1 &> /dev/null ||
5479                         error "pool_add_targets failed"
5480                 echo "done."
5481         fi
5482
5483         echo -n "Setting pool using -p option..."
5484         $LFS_MIGRATE -y -q --no-rsync -p $pool $file1 &> /dev/null ||
5485                 error "migrate failed rc = $?"
5486         echo "done."
5487
5488         echo -n "Verifying test file is in pool after migrating..."
5489         [ "$($LFS getstripe -p $file1)" = $pool ] ||
5490                 error "file was not migrated to pool $pool"
5491         echo "done."
5492
5493         echo -n "Removing test file from pool '$pool'..."
5494         $LFS migrate $file1 &> /dev/null ||
5495                 error "cannot remove from pool"
5496         [ "$($LFS getstripe -p $file1)" ] &&
5497                 error "pool still set"
5498         echo "done."
5499
5500         echo -n "Setting pool using --pool option..."
5501         $LFS_MIGRATE -y -q --no-rsync --pool $pool $file1 &> /dev/null ||
5502                 error "migrate failed rc = $?"
5503         echo "done."
5504
5505         # Clean up
5506         rm -f $file1
5507         if $create_pool; then
5508                 destroy_test_pools 2> /dev/null ||
5509                         error "destroy test pools failed"
5510         fi
5511 }
5512 run_test 56wb "check lfs_migrate pool support"
5513
5514 test_56wc() {
5515         local file1="$DIR/$tdir/file1"
5516
5517         echo -n "Creating test dir..."
5518         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
5519         local def_stripe_size=$($LFS getstripe -S $DIR/$tdir 2>/dev/null)
5520         $LFS setstripe -S 1M -c 1 "$DIR/$tdir" &> /dev/null ||
5521                 error "cannot set stripe"
5522         echo "done"
5523
5524         echo -n "Setting initial stripe for test file..."
5525         $LFS setstripe -S 512K -c 1 "$file1" &> /dev/null ||
5526                 error "cannot set stripe"
5527         [ $($LFS getstripe -S "$file1") -eq 524288 ] ||
5528                 error "stripe size not set"
5529         echo "done."
5530
5531         # File currently set to -S 512K -c 1
5532
5533         # Ensure -c and -S options are rejected when -R is set
5534         echo -n "Verifying incompatible options are detected..."
5535         $LFS_MIGRATE -y -R -c 1 "$file1" &> /dev/null &&
5536                 error "incompatible -c and -R options not detected"
5537         $LFS_MIGRATE -y -R -S 1M "$file1" &> /dev/null &&
5538                 error "incompatible -S and -R options not detected"
5539         echo "done."
5540
5541         # Ensure unrecognized options are passed through to 'lfs migrate'
5542         echo -n "Verifying -S option is passed through to lfs migrate..."
5543         $LFS_MIGRATE -y -S 1M "$file1" &> /dev/null ||
5544                 error "migration failed"
5545         [ $($LFS getstripe -S "$file1") -eq 1048576 ] ||
5546                 error "file was not restriped"
5547         echo "done."
5548
5549         # File currently set to -S 1M -c 1
5550
5551         # Ensure long options are supported
5552         echo -n "Verifying long options supported..."
5553         $LFS_MIGRATE -y --non-block "$file1" &> /dev/null ||
5554                 error "long option without argument not supported"
5555         $LFS_MIGRATE -y --stripe-size 512K "$file1" &> /dev/null ||
5556                 error "long option with argument not supported"
5557         [ $($LFS getstripe -S "$file1") -eq 524288 ] ||
5558                 error "file not restriped with --stripe-size option"
5559         echo "done."
5560
5561         # File currently set to -S 512K -c 1
5562
5563         if [ "$OSTCOUNT" -gt 1 ]; then
5564                 echo -n "Verifying explicit stripe count can be set..."
5565                 $LFS_MIGRATE -y -c 2 "$file1" &> /dev/null ||
5566                         error "migrate failed"
5567                 [ $($LFS getstripe -c "$file1") -eq 2 ] ||
5568                         error "file not restriped to explicit count"
5569                 echo "done."
5570         fi
5571
5572         # File currently set to -S 512K -c 1 or -S 512K -c 2
5573
5574         # Ensure parent striping is used if -R is set, and no stripe
5575         # count or size is specified
5576         echo -n "Setting stripe for parent directory..."
5577         $LFS setstripe -S 1M -c 1 "$DIR/$tdir" &> /dev/null ||
5578                 error "cannot set stripe"
5579         echo "done."
5580
5581         echo -n "Verifying restripe option uses parent stripe settings..."
5582         $LFS_MIGRATE -y -R "$file1" &> /dev/null ||
5583                 error "migrate failed"
5584         [ $($LFS getstripe -S "$file1") -eq $def_stripe_size ] ||
5585                 error "file not restriped to parent settings"
5586         [ $($LFS getstripe -c "$file1") -eq 1 ] ||
5587                 error "file not restriped to parent settings"
5588         echo "done."
5589
5590         # File currently set to -S 1M -c 1
5591
5592         # Ensure striping is preserved if -R is not set, and no stripe
5593         # count or size is specified
5594         echo -n "Verifying striping size preserved when not specified..."
5595         local orig_stripe_size=$($LFS getstripe -S "$file1" 2>/dev/null)
5596         $LFS setstripe -S 2M -c 1 "$DIR/$tdir" &> /dev/null ||
5597                 error "cannot set stripe on parent directory"
5598         $LFS_MIGRATE -y "$file1" &> /dev/null ||
5599                 error "migrate failed"
5600         [ $($LFS getstripe -S "$file1") -eq $orig_stripe_size ] ||
5601                 error "file was restriped"
5602         echo "done."
5603
5604         # Ensure file name properly detected when final option has no argument
5605         echo -n "Verifying file name properly detected..."
5606         $LFS_MIGRATE -y "$file1" &> /dev/null ||
5607                 error "file name interpreted as option argument"
5608         echo "done."
5609
5610         # Clean up
5611         rm -f "$file1"
5612 }
5613 run_test 56wc "check unrecognized options for lfs_migrate are passed through"
5614
5615 test_56wd() {
5616         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5617
5618         local file1=$DIR/$tdir/file1
5619
5620         echo -n "Creating test dir..."
5621         test_mkdir $DIR/$tdir || error "cannot create dir"
5622         echo "done."
5623
5624         echo -n "Creating test file..."
5625         touch $file1
5626         echo "done."
5627
5628         # Ensure 'lfs migrate' will fail by using a non-existent option,
5629         # and make sure rsync is not called to recover
5630         echo -n "Make sure --no-rsync option works..."
5631         $LFS_MIGRATE -y --no-rsync --invalid-opt $file1 2>&1 |
5632                 grep -q 'refusing to fall back to rsync' ||
5633                 error "rsync was called with --no-rsync set"
5634         echo "done."
5635
5636         # Ensure rsync is called without trying 'lfs migrate' first
5637         echo -n "Make sure --rsync option works..."
5638         $LFS_MIGRATE -y --rsync --invalid-opt $file1 2>&1 |
5639                 grep -q 'falling back to rsync' &&
5640                 error "lfs migrate was called with --rsync set"
5641         echo "done."
5642
5643         echo -n "Make sure --rsync and --no-rsync options are exclusive..."
5644         $LFS_MIGRATE -y --rsync --no-rsync $file1 2>&1 |
5645                 grep -q 'at the same time' ||
5646                 error "--rsync and --no-rsync accepted concurrently"
5647         echo "done."
5648
5649         # Clean up
5650         rm -f $file1
5651 }
5652 run_test 56wd "check lfs_migrate --rsync and --no-rsync work"
5653
5654 test_56x() {
5655         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5656         check_swap_layouts_support
5657
5658         local dir=$DIR/$tdir
5659         local ref1=/etc/passwd
5660         local file1=$dir/file1
5661
5662         test_mkdir $dir || error "creating dir $dir"
5663         $LFS setstripe -c 2 $file1
5664         cp $ref1 $file1
5665         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
5666         stripe=$($LFS getstripe -c $file1)
5667         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5668         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5669
5670         # clean up
5671         rm -f $file1
5672 }
5673 run_test 56x "lfs migration support"
5674
5675 test_56xa() {
5676         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5677         check_swap_layouts_support
5678
5679         local dir=$DIR/$tdir/$testnum
5680
5681         test_mkdir -p $dir
5682
5683         local ref1=/etc/passwd
5684         local file1=$dir/file1
5685
5686         $LFS setstripe -c 2 $file1
5687         cp $ref1 $file1
5688         $LFS migrate --block -c 1 $file1 || error "migrate failed rc = $?"
5689
5690         local stripe=$($LFS getstripe -c $file1)
5691
5692         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5693         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5694
5695         # clean up
5696         rm -f $file1
5697 }
5698 run_test 56xa "lfs migration --block support"
5699
5700 check_migrate_links() {
5701         local dir="$1"
5702         local file1="$dir/file1"
5703         local begin="$2"
5704         local count="$3"
5705         local total_count=$(($begin + $count - 1))
5706         local symlink_count=10
5707         local uniq_count=10
5708
5709         if [ ! -f "$file1" ]; then
5710                 echo -n "creating initial file..."
5711                 $LFS setstripe -c 1 -S "512k" "$file1" ||
5712                         error "cannot setstripe initial file"
5713                 echo "done"
5714
5715                 echo -n "creating symlinks..."
5716                 for s in $(seq 1 $symlink_count); do
5717                         ln -s "$file1" "$dir/slink$s" ||
5718                                 error "cannot create symlinks"
5719                 done
5720                 echo "done"
5721
5722                 echo -n "creating nonlinked files..."
5723                 createmany -o "$dir/uniq" 1 10 &> /dev/null ||
5724                         error "cannot create nonlinked files"
5725                 echo "done"
5726         fi
5727
5728         # create hard links
5729         if [ ! -f "$dir/file$total_count" ]; then
5730                 echo -n "creating hard links $begin:$total_count..."
5731                 createmany -l"$file1" "$dir/file" "$begin" "$count" &>  \
5732                         /dev/null || error "cannot create hard links"
5733                 echo "done"
5734         fi
5735
5736         echo -n "checking number of hard links listed in xattrs..."
5737         local fid=$($LFS getstripe -F "$file1")
5738         local paths=($($LFS fid2path "$MOUNT" "$fid" 2> /dev/null))
5739
5740         echo "${#paths[*]}"
5741         if [ ${#paths[*]} -lt $total_count -a "$begin" -eq 2  ]; then
5742                         skip "hard link list has unexpected size, skipping test"
5743         fi
5744         if [ ${#paths[*]} -ge $total_count -a "$begin" -ne 2  ]; then
5745                         error "link names should exceed xattrs size"
5746         fi
5747
5748         echo -n "migrating files..."
5749         local migrate_out=$($LFS_MIGRATE -y -S '1m' $dir)
5750         local rc=$?
5751         [ $rc -eq 0 ] || error "migrate failed rc = $rc"
5752         echo "done"
5753
5754         # make sure all links have been properly migrated
5755         echo -n "verifying files..."
5756         fid=$($LFS getstripe -F "$file1") ||
5757                 error "cannot get fid for file $file1"
5758         for i in $(seq 2 $total_count); do
5759                 local fid2=$($LFS getstripe -F $dir/file$i)
5760
5761                 [ "$fid2" == "$fid" ] ||
5762                         error "migrated hard link has mismatched FID"
5763         done
5764
5765         # make sure hard links were properly detected, and migration was
5766         # performed only once for the entire link set; nonlinked files should
5767         # also be migrated
5768         local actual=$(grep -c 'done migrate' <<< "$migrate_out")
5769         local expected=$(($uniq_count + 1))
5770
5771         [ "$actual" -eq  "$expected" ] ||
5772                 error "hard links individually migrated ($actual != $expected)"
5773
5774         # make sure the correct number of hard links are present
5775         local hardlinks=$(stat -c '%h' "$file1")
5776
5777         [ $hardlinks -eq $total_count ] ||
5778                 error "num hard links $hardlinks != $total_count"
5779         echo "done"
5780
5781         return 0
5782 }
5783
5784 test_56xb() {
5785         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
5786                 skip "Need MDS version at least 2.10.55"
5787
5788         local dir="$DIR/$tdir"
5789
5790         test_mkdir "$dir" || error "cannot create dir $dir"
5791
5792         echo "testing lfs migrate mode when all links fit within xattrs"
5793         LFS_MIGRATE_RSYNC=false check_migrate_links "$dir" 2 99
5794
5795         echo "testing rsync mode when all links fit within xattrs"
5796         LFS_MIGRATE_RSYNC=true check_migrate_links "$dir" 2 99
5797
5798         echo "testing lfs migrate mode when all links do not fit within xattrs"
5799         LFS_MIGRATE_RSYNC=false check_migrate_links "$dir" 101 100
5800
5801         echo "testing rsync mode when all links do not fit within xattrs"
5802         LFS_MIGRATE_RSYNC=true check_migrate_links "$dir" 101 100
5803
5804         # clean up
5805         rm -rf $dir
5806 }
5807 run_test 56xb "lfs migration hard link support"
5808
5809 test_56y() {
5810         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
5811                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53"
5812
5813         local res=""
5814         local dir=$DIR/$tdir
5815         local f1=$dir/file1
5816         local f2=$dir/file2
5817
5818         test_mkdir -p $dir || error "creating dir $dir"
5819         touch $f1 || error "creating std file $f1"
5820         $MULTIOP $f2 H2c || error "creating released file $f2"
5821
5822         # a directory can be raid0, so ask only for files
5823         res=$($LFS find $dir -L raid0 -type f | wc -l)
5824         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
5825
5826         res=$($LFS find $dir \! -L raid0 -type f | wc -l)
5827         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
5828
5829         # only files can be released, so no need to force file search
5830         res=$($LFS find $dir -L released)
5831         [[ $res == $f2 ]] || error "search released: found $res != $f2"
5832
5833         res=$($LFS find $dir -type f \! -L released)
5834         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
5835 }
5836 run_test 56y "lfs find -L raid0|released"
5837
5838 test_56z() { # LU-4824
5839         # This checks to make sure 'lfs find' continues after errors
5840         # There are two classes of errors that should be caught:
5841         # - If multiple paths are provided, all should be searched even if one
5842         #   errors out
5843         # - If errors are encountered during the search, it should not terminate
5844         #   early
5845         local dir=$DIR/$tdir
5846         local i
5847
5848         test_mkdir $dir
5849         for i in d{0..9}; do
5850                 test_mkdir $dir/$i
5851         done
5852         touch $dir/d{0..9}/$tfile
5853         $LFS find $DIR/non_existent_dir $dir &&
5854                 error "$LFS find did not return an error"
5855         # Make a directory unsearchable. This should NOT be the last entry in
5856         # directory order.  Arbitrarily pick the 6th entry
5857         chmod 700 $($LFS find $dir -type d | sed '6!d')
5858
5859         local count=$($RUNAS $LFS find $DIR/non_existent $dir | wc -l)
5860
5861         # The user should be able to see 10 directories and 9 files
5862         [ $count == 19 ] || error "$LFS find did not continue after error"
5863 }
5864 run_test 56z "lfs find should continue after an error"
5865
5866 test_56aa() { # LU-5937
5867         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
5868
5869         local dir=$DIR/$tdir
5870
5871         mkdir $dir
5872         $LFS setdirstripe -c$MDSCOUNT $dir/striped_dir
5873
5874         createmany -o $dir/striped_dir/${tfile}- 1024
5875         local dirs=$($LFS find --size +8k $dir/)
5876
5877         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
5878 }
5879 run_test 56aa "lfs find --size under striped dir"
5880
5881 test_56ab() { # LU-10705
5882         test_mkdir $DIR/$tdir
5883         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=8k count=1 seek=2k
5884         dd if=/dev/zero of=$DIR/$tdir/$tfile.2 bs=4k count=1 seek=4k
5885         dd if=/dev/zero of=$DIR/$tdir/$tfile.3 bs=1M count=2 seek=16
5886         # Flush writes to ensure valid blocks.  Need to be more thorough for
5887         # ZFS, since blocks are not allocated/returned to client immediately.
5888         sync_all_data
5889         wait_zfs_commit ost1 2
5890         cancel_lru_locks osc
5891         ls -ls $DIR/$tdir
5892
5893         local files=$($LFS find --size +16M $DIR/$tdir | wc -l)
5894
5895         [[ $files == 3 ]] || error ">16M size files $files isn't 3 as expected"
5896
5897         files=$($LFS find --blocks +1M $DIR/$tdir | wc -l)
5898         [[ $files == 1 ]] || error ">1M blocks files $files isn't 1 as expected"
5899
5900         rm -f $DIR/$tdir/$tfile.[123]
5901 }
5902 run_test 56ab "lfs find --blocks"
5903
5904 test_56ba() {
5905         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.50) ] &&
5906                 skip "Need MDS version at least 2.10.50"
5907
5908         # Create composite files with one component
5909         local dir=$DIR/$tdir
5910
5911         setup_56 $dir/1Mfiles 5 1 "-S 1M --component-end 1M"
5912         # Create composite files with three components
5913         setup_56 $dir/2Mfiles 5 2 "-E 2M -S 1M -E 4M -E 6M"
5914         # Create non-composite files
5915         createmany -o $dir/${tfile}- 10
5916
5917         local nfiles=$($LFS find --component-end 1M --type f $dir | wc -l)
5918
5919         [[ $nfiles == 10 ]] ||
5920                 error "lfs find -E 1M found $nfiles != 10 files"
5921
5922         nfiles=$($LFS find ! -E 1M --type f $dir | wc -l)
5923         [[ $nfiles == 25 ]] ||
5924                 error "lfs find ! -E 1M found $nfiles != 25 files"
5925
5926         # All files have a component that starts at 0
5927         nfiles=$($LFS find --component-start 0 --type f $dir | wc -l)
5928         [[ $nfiles == 35 ]] ||
5929                 error "lfs find --component-start 0 - $nfiles != 35 files"
5930
5931         nfiles=$($LFS find --component-start 2M --type f $dir | wc -l)
5932         [[ $nfiles == 15 ]] ||
5933                 error "lfs find --component-start 2M - $nfiles != 15 files"
5934
5935         # All files created here have a componenet that does not starts at 2M
5936         nfiles=$($LFS find ! --component-start 2M --type f $dir | wc -l)
5937         [[ $nfiles == 35 ]] ||
5938                 error "lfs find ! --component-start 2M - $nfiles != 35 files"
5939
5940         # Find files with a specified number of components
5941         local nfiles=$($LFS find --component-count 3 --type f $dir | wc -l)
5942         [[ $nfiles == 15 ]] ||
5943                 error "lfs find --component-count 3 - $nfiles != 15 files"
5944
5945         # Remember non-composite files have a component count of zero
5946         local nfiles=$($LFS find --component-count 0 --type f $dir | wc -l)
5947         [[ $nfiles == 10 ]] ||
5948                 error "lfs find --component-count 0 - $nfiles != 10 files"
5949
5950         nfiles=$($LFS find ! --component-count 3 --type f $dir | wc -l)
5951         [[ $nfiles == 20 ]] ||
5952                 error "lfs find ! --component-count 3 - $nfiles != 20 files"
5953
5954         # All files have a flag called "init"
5955         local nfiles=$($LFS find --component-flags init --type f $dir | wc -l)
5956         [[ $nfiles == 35 ]] ||
5957                 error "lfs find --component-flags init - $nfiles != 35 files"
5958
5959         # Multi-component files will have a component not initialized
5960         local nfiles=$($LFS find ! --component-flags init --type f $dir | wc -l)
5961         [[ $nfiles == 15 ]] ||
5962                 error "lfs find !--component-flags init - $nfiles != 15 files"
5963
5964         rm -rf $dir
5965
5966 }
5967 run_test 56ba "test lfs find --component-end, -start, -count, and -flags"
5968
5969 test_56ca() {
5970         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.57) ]] ||
5971                 skip "Need MDS version at least 2.10.57"
5972
5973         local td=$DIR/$tdir
5974         local tf=$td/$tfile
5975         local dir
5976         local nfiles
5977         local cmd
5978         local i
5979         local j
5980
5981         # create mirrored directories and mirrored files
5982         mkdir $td || error "mkdir $td failed"
5983         $LFS mirror create -N3 $td || error "create mirrored dir $td failed"
5984         createmany -o $tf- 10 || error "create $tf- failed"
5985
5986         for i in $(seq 2); do
5987                 dir=$td/dir$i
5988                 mkdir $dir || error "mkdir $dir failed"
5989                 $LFS mirror create -N$((3 + i)) $dir ||
5990                         error "create mirrored dir $dir failed"
5991                 createmany -o $dir/$tfile- 10 ||
5992                         error "create $dir/$tfile- failed"
5993         done
5994
5995         # change the states of some mirrored files
5996         echo foo > $tf-6
5997         for i in $(seq 2); do
5998                 dir=$td/dir$i
5999                 for j in $(seq 4 9); do
6000                         echo foo > $dir/$tfile-$j
6001                 done
6002         done
6003
6004         # find mirrored files with specific mirror count
6005         cmd="$LFS find --mirror-count 3 --type f $td"
6006         nfiles=$($cmd | wc -l)
6007         [[ $nfiles = 10 ]] || error "$cmd: $nfiles != 10 files"
6008
6009         cmd="$LFS find ! --mirror-count 3 --type f $td"
6010         nfiles=$($cmd | wc -l)
6011         [[ $nfiles = 20 ]] || error "$cmd: $nfiles != 20 files"
6012
6013         cmd="$LFS find --mirror-count +2 --type f $td"
6014         nfiles=$($cmd | wc -l)
6015         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
6016
6017         cmd="$LFS find --mirror-count -6 --type f $td"
6018         nfiles=$($cmd | wc -l)
6019         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
6020
6021         # find mirrored files with specific file state
6022         cmd="$LFS find --maxdepth 1 --mirror-state=^ro --type f $td"
6023         [[ $($cmd) = $tf-6 ]] || error "$cmd: didn't return $tf-6"
6024
6025         cmd="$LFS find --mirror-state=ro --type f $td"
6026         nfiles=$($cmd | wc -l)
6027         [[ $nfiles = 17 ]] || error "$cmd: $nfiles != 17 files"
6028
6029         cmd="$LFS find ! --mirror-state=ro --type f $td"
6030         nfiles=$($cmd | wc -l)
6031         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
6032
6033         cmd="$LFS find --mirror-state=wp --type f $td"
6034         nfiles=$($cmd | wc -l)
6035         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
6036
6037         cmd="$LFS find ! --mirror-state=sp --type f $td"
6038         nfiles=$($cmd | wc -l)
6039         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
6040 }
6041 run_test 56ca "check lfs find --mirror-count|-N and --mirror-state"
6042
6043 test_57a() {
6044         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6045         # note test will not do anything if MDS is not local
6046         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
6047                 skip_env "ldiskfs only test"
6048         fi
6049         remote_mds_nodsh && skip "remote MDS with nodsh"
6050
6051         local MNTDEV="osd*.*MDT*.mntdev"
6052         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
6053         [ -z "$DEV" ] && error "can't access $MNTDEV"
6054         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
6055                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
6056                         error "can't access $DEV"
6057                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
6058                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
6059                 rm $TMP/t57a.dump
6060         done
6061 }
6062 run_test 57a "verify MDS filesystem created with large inodes =="
6063
6064 test_57b() {
6065         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6066         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
6067                 skip_env "ldiskfs only test"
6068         fi
6069         remote_mds_nodsh && skip "remote MDS with nodsh"
6070
6071         local dir=$DIR/$tdir
6072         local filecount=100
6073         local file1=$dir/f1
6074         local fileN=$dir/f$filecount
6075
6076         rm -rf $dir || error "removing $dir"
6077         test_mkdir -c1 $dir
6078         local mdtidx=$($LFS getstripe -m $dir)
6079         local mdtname=MDT$(printf %04x $mdtidx)
6080         local facet=mds$((mdtidx + 1))
6081
6082         echo "mcreating $filecount files"
6083         createmany -m $dir/f 1 $filecount || error "creating files in $dir"
6084
6085         # verify that files do not have EAs yet
6086         $LFS getstripe $file1 2>&1 | grep -q "no stripe" ||
6087                 error "$file1 has an EA"
6088         $LFS getstripe $fileN 2>&1 | grep -q "no stripe" ||
6089                 error "$fileN has an EA"
6090
6091         sync
6092         sleep 1
6093         df $dir  #make sure we get new statfs data
6094         local mdsfree=$(do_facet $facet \
6095                         lctl get_param -n osd*.*$mdtname.kbytesfree)
6096         local mdcfree=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
6097         local file
6098
6099         echo "opening files to create objects/EAs"
6100         for file in $(seq -f $dir/f%g 1 $filecount); do
6101                 $OPENFILE -f O_RDWR $file > /dev/null 2>&1 ||
6102                         error "opening $file"
6103         done
6104
6105         # verify that files have EAs now
6106         $LFS getstripe $file1 | grep -q "obdidx" || error "$file1 missing EA"
6107         $LFS getstripe $fileN | grep -q "obdidx" || error "$fileN missing EA"
6108
6109         sleep 1  #make sure we get new statfs data
6110         df $dir
6111         local mdsfree2=$(do_facet $facet \
6112                          lctl get_param -n osd*.*$mdtname.kbytesfree)
6113         local mdcfree2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
6114
6115         if [[ $mdcfree2 -lt $((mdcfree - 16)) ]]; then
6116                 if [ "$mdsfree" != "$mdsfree2" ]; then
6117                         error "MDC before $mdcfree != after $mdcfree2"
6118                 else
6119                         echo "MDC before $mdcfree != after $mdcfree2"
6120                         echo "unable to confirm if MDS has large inodes"
6121                 fi
6122         fi
6123         rm -rf $dir
6124 }
6125 run_test 57b "default LOV EAs are stored inside large inodes ==="
6126
6127 test_58() {
6128         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6129         [ -z "$(which wiretest 2>/dev/null)" ] &&
6130                         skip_env "could not find wiretest"
6131
6132         wiretest
6133 }
6134 run_test 58 "verify cross-platform wire constants =============="
6135
6136 test_59() {
6137         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6138
6139         echo "touch 130 files"
6140         createmany -o $DIR/f59- 130
6141         echo "rm 130 files"
6142         unlinkmany $DIR/f59- 130
6143         sync
6144         # wait for commitment of removal
6145         wait_delete_completed
6146 }
6147 run_test 59 "verify cancellation of llog records async ========="
6148
6149 TEST60_HEAD="test_60 run $RANDOM"
6150 test_60a() {
6151         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6152         remote_mgs_nodsh && skip "remote MGS with nodsh"
6153         do_facet mgs "! which run-llog.sh &> /dev/null" &&
6154                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
6155                         skip_env "missing subtest run-llog.sh"
6156
6157         log "$TEST60_HEAD - from kernel mode"
6158         do_facet mgs "$LCTL set_param debug=warning; $LCTL dk > /dev/null"
6159         do_facet mgs "bash run-llog.sh" || error "run-llog.sh failed"
6160         do_facet mgs $LCTL dk > $TMP/$tfile
6161
6162         # LU-6388: test llog_reader
6163         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
6164         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
6165         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
6166                         skip_env "missing llog_reader"
6167         local fstype=$(facet_fstype mgs)
6168         [ $fstype != ldiskfs -a $fstype != zfs ] &&
6169                 skip_env "Only for ldiskfs or zfs type mgs"
6170
6171         local mntpt=$(facet_mntpt mgs)
6172         local mgsdev=$(mgsdevname 1)
6173         local fid_list
6174         local fid
6175         local rec_list
6176         local rec
6177         local rec_type
6178         local obj_file
6179         local path
6180         local seq
6181         local oid
6182         local pass=true
6183
6184         #get fid and record list
6185         fid_list=($(awk '/9_sub.*record/ { print $NF }' /$TMP/$tfile |
6186                 tail -n 4))
6187         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' /$TMP/$tfile |
6188                 tail -n 4))
6189         #remount mgs as ldiskfs or zfs type
6190         stop mgs || error "stop mgs failed"
6191         mount_fstype mgs || error "remount mgs failed"
6192         for ((i = 0; i < ${#fid_list[@]}; i++)); do
6193                 fid=${fid_list[i]}
6194                 rec=${rec_list[i]}
6195                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
6196                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
6197                 oid=$((16#$oid))
6198
6199                 case $fstype in
6200                         ldiskfs )
6201                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
6202                         zfs )
6203                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
6204                 esac
6205                 echo "obj_file is $obj_file"
6206                 do_facet mgs $llog_reader $obj_file
6207
6208                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
6209                         awk '{ print $3 }' | sed -e "s/^type=//g")
6210                 if [ $rec_type != $rec ]; then
6211                         echo "FAILED test_60a wrong record type $rec_type," \
6212                               "should be $rec"
6213                         pass=false
6214                         break
6215                 fi
6216
6217                 #check obj path if record type is LLOG_LOGID_MAGIC
6218                 if [ "$rec" == "1064553b" ]; then
6219                         path=$(do_facet mgs $llog_reader $obj_file |
6220                                 grep "path=" | awk '{ print $NF }' |
6221                                 sed -e "s/^path=//g")
6222                         if [ $obj_file != $mntpt/$path ]; then
6223                                 echo "FAILED test_60a wrong obj path" \
6224                                       "$montpt/$path, should be $obj_file"
6225                                 pass=false
6226                                 break
6227                         fi
6228                 fi
6229         done
6230         rm -f $TMP/$tfile
6231         #restart mgs before "error", otherwise it will block the next test
6232         stop mgs || error "stop mgs failed"
6233         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
6234         $pass || error "test failed, see FAILED test_60a messages for specifics"
6235 }
6236 run_test 60a "llog_test run from kernel module and test llog_reader"
6237
6238 test_60aa() {
6239         remote_mgs_nodsh && skip "remote MGS with nodsh"
6240
6241         # test old logid format
6242         if [ $(lustre_version_code mgs) -le $(version_code 3.1.53) ]; then
6243                 do_facet mgs $LCTL dl | grep MGS
6244                 do_facet mgs "$LCTL --device %MGS llog_print \\\\\\\$$FSNAME-client" ||
6245                         error "old llog_print failed"
6246         fi
6247
6248         # test new logid format
6249         if [ $(lustre_version_code mgs) -ge $(version_code 2.9.53) ]; then
6250                 do_facet mgs "$LCTL --device MGS llog_print $FSNAME-client" ||
6251                         error "new llog_print failed"
6252         fi
6253 }
6254 run_test 60aa "llog_print works with FIDs and simple names"
6255
6256 test_60ab() {
6257         # test llog_print with params
6258
6259         [[ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.11.51) ]] ||
6260                 skip "Need server version greater than 2.11.51"
6261
6262         local yaml
6263         local orig_val
6264
6265         orig_val=$(do_facet mgs $LCTL get_param jobid_name)
6266         do_facet mgs $LCTL set_param -P jobid_name="testname"
6267
6268         yaml=$(do_facet mgs $LCTL --device MGS llog_print params |
6269             grep jobid_name | tail -n 1)
6270
6271         local param=`awk '{ print $10 }' <<< "$yaml"`
6272         local val=`awk '{ print $12 }' <<< "$yaml"`
6273         #return to the default
6274         do_facet mgs $LCTL set_param -P jobid_name=$orig_val
6275         [ $val = "testname" ] || error "bad value: $val"
6276         [ $param = "jobid_name," ] || error "Bad param: $param"
6277 }
6278 run_test 60ab "llog_print params output values from set_param -P"
6279
6280 test_60b() { # bug 6411
6281         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6282
6283         dmesg > $DIR/$tfile
6284         LLOG_COUNT=$(do_facet mgs dmesg |
6285                      awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
6286                           /llog_[a-z]*.c:[0-9]/ {
6287                                 if (marker)
6288                                         from_marker++
6289                                 from_begin++
6290                           }
6291                           END {
6292                                 if (marker)
6293                                         print from_marker
6294                                 else
6295                                         print from_begin
6296                           }")
6297
6298         [[ $LLOG_COUNT -gt 120 ]] &&
6299                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
6300 }
6301 run_test 60b "limit repeated messages from CERROR/CWARN"
6302
6303 test_60c() {
6304         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6305
6306         echo "create 5000 files"
6307         createmany -o $DIR/f60c- 5000
6308 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
6309         lctl set_param fail_loc=0x80000137
6310         unlinkmany $DIR/f60c- 5000
6311         lctl set_param fail_loc=0
6312 }
6313 run_test 60c "unlink file when mds full"
6314
6315 test_60d() {
6316         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6317
6318         SAVEPRINTK=$(lctl get_param -n printk)
6319         # verify "lctl mark" is even working"
6320         MESSAGE="test message ID $RANDOM $$"
6321         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
6322         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
6323
6324         lctl set_param printk=0 || error "set lnet.printk failed"
6325         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
6326         MESSAGE="new test message ID $RANDOM $$"
6327         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
6328         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
6329         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
6330
6331         lctl set_param -n printk="$SAVEPRINTK"
6332 }
6333 run_test 60d "test printk console message masking"
6334
6335 test_60e() {
6336         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6337         remote_mds_nodsh && skip "remote MDS with nodsh"
6338
6339         touch $DIR/$tfile
6340 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
6341         do_facet mds1 lctl set_param fail_loc=0x15b
6342         rm $DIR/$tfile
6343 }
6344 run_test 60e "no space while new llog is being created"
6345
6346 test_60g() {
6347         local pid
6348
6349         test_mkdir -c $MDSCOUNT $DIR/$tdir
6350         $LFS setdirstripe -D -i -1 -c $MDSCOUNT $DIR/$tdir
6351
6352         (
6353                 local index=0
6354                 while true; do
6355                         mkdir $DIR/$tdir/subdir$index 2>/dev/null
6356                         rmdir $DIR/$tdir/subdir$index 2>/dev/null
6357                         index=$((index + 1))
6358                 done
6359         ) &
6360
6361         pid=$!
6362
6363         for i in $(seq 100); do 
6364                 # define OBD_FAIL_OSD_TXN_START    0x19a
6365                 do_facet mds1 lctl set_param fail_loc=0x8000019a
6366                 usleep 100
6367         done
6368
6369         kill -9 $pid
6370
6371         mkdir $DIR/$tdir/new || error "mkdir failed"
6372         rmdir $DIR/$tdir/new || error "rmdir failed"
6373 }
6374 run_test 60g "transaction abort won't cause MDT hung"
6375
6376 test_61() {
6377         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6378
6379         f="$DIR/f61"
6380         dd if=/dev/zero of=$f bs=$PAGE_SIZE count=1 || error "dd $f failed"
6381         cancel_lru_locks osc
6382         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
6383         sync
6384 }
6385 run_test 61 "mmap() writes don't make sync hang ================"
6386
6387 # bug 2330 - insufficient obd_match error checking causes LBUG
6388 test_62() {
6389         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6390
6391         f="$DIR/f62"
6392         echo foo > $f
6393         cancel_lru_locks osc
6394         lctl set_param fail_loc=0x405
6395         cat $f && error "cat succeeded, expect -EIO"
6396         lctl set_param fail_loc=0
6397 }
6398 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
6399 # match every page all of the time.
6400 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
6401
6402 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
6403 # Though this test is irrelevant anymore, it helped to reveal some
6404 # other grant bugs (LU-4482), let's keep it.
6405 test_63a() {   # was test_63
6406         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6407
6408         MAX_DIRTY_MB=$(lctl get_param -n osc.*.max_dirty_mb | head -n 1)
6409
6410         for i in `seq 10` ; do
6411                 dd if=/dev/zero of=$DIR/f63 bs=8k &
6412                 sleep 5
6413                 kill $!
6414                 sleep 1
6415         done
6416
6417         rm -f $DIR/f63 || true
6418 }
6419 run_test 63a "Verify oig_wait interruption does not crash ======="
6420
6421 # bug 2248 - async write errors didn't return to application on sync
6422 # bug 3677 - async write errors left page locked
6423 test_63b() {
6424         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6425
6426         debugsave
6427         lctl set_param debug=-1
6428
6429         # ensure we have a grant to do async writes
6430         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
6431         rm $DIR/$tfile
6432
6433         sync    # sync lest earlier test intercept the fail_loc
6434
6435         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
6436         lctl set_param fail_loc=0x80000406
6437         $MULTIOP $DIR/$tfile Owy && \
6438                 error "sync didn't return ENOMEM"
6439         sync; sleep 2; sync     # do a real sync this time to flush page
6440         lctl get_param -n llite.*.dump_page_cache | grep locked && \
6441                 error "locked page left in cache after async error" || true
6442         debugrestore
6443 }
6444 run_test 63b "async write errors should be returned to fsync ==="
6445
6446 test_64a () {
6447         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6448
6449         df $DIR
6450         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
6451 }
6452 run_test 64a "verify filter grant calculations (in kernel) ====="
6453
6454 test_64b () {
6455         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6456
6457         sh oos.sh $MOUNT || error "oos.sh failed: $?"
6458 }
6459 run_test 64b "check out-of-space detection on client"
6460
6461 test_64c() {
6462         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
6463 }
6464 run_test 64c "verify grant shrink"
6465
6466 # this does exactly what osc_request.c:osc_announce_cached() does in
6467 # order to calculate max amount of grants to ask from server
6468 want_grant() {
6469         local tgt=$1
6470
6471         local nrpages=$($LCTL get_param -n osc.${tgt}.max_pages_per_rpc)
6472         local rpc_in_flight=$($LCTL get_param -n osc.${tgt}.max_rpcs_in_flight)
6473
6474         ((rpc_in_flight ++));
6475         nrpages=$((nrpages * rpc_in_flight))
6476
6477         local dirty_max_pages=$($LCTL get_param -n osc.${tgt}.max_dirty_mb)
6478
6479         dirty_max_pages=$((dirty_max_pages * 1024 * 1024 / PAGE_SIZE))
6480
6481         [[ $dirty_max_pages -gt $nrpages ]] && nrpages=$dirty_max_pages
6482         local undirty=$((nrpages * PAGE_SIZE))
6483
6484         local max_extent_pages
6485         max_extent_pages=$($LCTL get_param osc.${tgt}.import |
6486             grep grant_max_extent_size | awk '{print $2}')
6487         max_extent_pages=$((max_extent_pages / PAGE_SIZE))
6488         local nrextents=$(((nrpages + max_extent_pages - 1) / max_extent_pages))
6489         local grant_extent_tax
6490         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6491             grep grant_extent_tax | awk '{print $2}')
6492
6493         undirty=$((undirty + nrextents * grant_extent_tax))
6494
6495         echo $undirty
6496 }
6497
6498 # this is size of unit for grant allocation. It should be equal to
6499 # what tgt_grant.c:tgt_grant_chunk() calculates
6500 grant_chunk() {
6501         local tgt=$1
6502         local max_brw_size
6503         local grant_extent_tax
6504
6505         max_brw_size=$($LCTL get_param osc.${tgt}.import |
6506             grep max_brw_size | awk '{print $2}')
6507
6508         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6509             grep grant_extent_tax | awk '{print $2}')
6510
6511         echo $(((max_brw_size + grant_extent_tax) * 2))
6512 }
6513
6514 test_64d() {
6515         [ $(lustre_version_code ost1) -lt $(version_code 2.10.56) ] &&
6516                 skip "OST < 2.10.55 doesn't limit grants enough"
6517
6518         local tgt=$($LCTL dl | grep "0000-osc-[^mM]" | awk '{print $4}')
6519         local file=$DIR/$tfile
6520
6521         [[ $($LCTL get_param osc.${tgt}.import |
6522              grep "connect_flags:.*grant_param") ]] ||
6523                 skip "no grant_param connect flag"
6524
6525         local olddebug=$($LCTL get_param -n debug 2> /dev/null)
6526
6527         $LCTL set_param debug="$OLDDEBUG" 2> /dev/null || true
6528
6529         local max_cur_granted=$(($(want_grant $tgt) + $(grant_chunk $tgt)))
6530         stack_trap "rm -f $file" EXIT
6531
6532         $SETSTRIPE $file -i 0 -c 1
6533         dd if=/dev/zero of=$file bs=1M count=1000 &
6534         ddpid=$!
6535
6536         while true
6537         do
6538                 local cur_grant=$($LCTL get_param -n osc.${tgt}.cur_grant_bytes)
6539                 if [[ $cur_grant -gt $max_cur_granted ]]
6540                 then
6541                         kill $ddpid
6542                         error "cur_grant $cur_grant > $max_cur_granted"
6543                 fi
6544                 kill -0 $ddpid
6545                 [[ $? -ne 0 ]] && break;
6546                 sleep 2
6547         done
6548
6549         rm -f $DIR/$tfile
6550         wait_delete_completed
6551         $LCTL set_param debug="$olddebug" 2> /dev/null || true
6552 }
6553 run_test 64d "check grant limit exceed"
6554
6555 # bug 1414 - set/get directories' stripe info
6556 test_65a() {
6557         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6558
6559         test_mkdir $DIR/$tdir
6560         touch $DIR/$tdir/f1
6561         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
6562 }
6563 run_test 65a "directory with no stripe info"
6564
6565 test_65b() {
6566         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6567
6568         test_mkdir $DIR/$tdir
6569         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6570
6571         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6572                                                 error "setstripe"
6573         touch $DIR/$tdir/f2
6574         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
6575 }
6576 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
6577
6578 test_65c() {
6579         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6580         [ $OSTCOUNT -lt 2 ] && skip_env "need at least 2 OSTs"
6581
6582         test_mkdir $DIR/$tdir
6583         local stripesize=$($GETSTRIPE -S $DIR/$tdir)
6584
6585         $LFS setstripe -S $((stripesize * 4)) -i 1 \
6586                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
6587         touch $DIR/$tdir/f3
6588         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
6589 }
6590 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
6591
6592 test_65d() {
6593         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6594
6595         test_mkdir $DIR/$tdir
6596         local STRIPECOUNT=$($GETSTRIPE -c $DIR/$tdir)
6597         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6598
6599         if [[ $STRIPECOUNT -le 0 ]]; then
6600                 sc=1
6601         elif [[ $STRIPECOUNT -gt 2000 ]]; then
6602 #LOV_MAX_STRIPE_COUNT is 2000
6603                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
6604         else
6605                 sc=$(($STRIPECOUNT - 1))
6606         fi
6607         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
6608         touch $DIR/$tdir/f4 $DIR/$tdir/f5
6609         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
6610                 error "lverify failed"
6611 }
6612 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
6613
6614 test_65e() {
6615         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6616
6617         test_mkdir $DIR/$tdir
6618
6619         $SETSTRIPE $DIR/$tdir || error "setstripe"
6620         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
6621                                         error "no stripe info failed"
6622         touch $DIR/$tdir/f6
6623         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
6624 }
6625 run_test 65e "directory setstripe defaults"
6626
6627 test_65f() {
6628         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6629
6630         test_mkdir $DIR/${tdir}f
6631         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
6632 }
6633 run_test 65f "dir setstripe permission (should return error) ==="
6634
6635 test_65g() {
6636         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6637
6638         test_mkdir $DIR/$tdir
6639         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6640
6641         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6642                 error "setstripe -S failed"
6643         $LFS setstripe -d $DIR/$tdir || error "setstripe -d failed"
6644         $LFS getstripe -v $DIR/$tdir | grep "Default" ||
6645                 error "delete default stripe failed"
6646 }
6647 run_test 65g "directory setstripe -d"
6648
6649 test_65h() {
6650         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6651
6652         test_mkdir $DIR/$tdir
6653         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6654
6655         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6656                 error "setstripe -S failed"
6657         test_mkdir $DIR/$tdir/dd1
6658         [ $($LFS getstripe -c $DIR/$tdir) = $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
6659                 error "stripe info inherit failed"
6660 }
6661 run_test 65h "directory stripe info inherit ===================="
6662
6663 test_65i() {
6664         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6665
6666         save_layout_restore_at_exit $MOUNT
6667
6668         # bug6367: set non-default striping on root directory
6669         $LFS setstripe -S 65536 -c -1 $MOUNT || error "error setting stripe"
6670
6671         # bug12836: getstripe on -1 default directory striping
6672         $LFS getstripe $MOUNT || error "getstripe $MOUNT failed"
6673
6674         # bug12836: getstripe -v on -1 default directory striping
6675         $LFS getstripe -v $MOUNT || error "getstripe -v $MOUNT failed"
6676
6677         # bug12836: new find on -1 default directory striping
6678         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
6679 }
6680 run_test 65i "various tests to set root directory striping"
6681
6682 test_65j() { # bug6367
6683         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6684
6685         sync; sleep 1
6686
6687         # if we aren't already remounting for each test, do so for this test
6688         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
6689                 cleanup || error "failed to unmount"
6690                 setup
6691         fi
6692
6693         save_layout_restore_at_exit $MOUNT
6694
6695         $SETSTRIPE -d $MOUNT || error "setstripe failed"
6696 }
6697 run_test 65j "set default striping on root directory (bug 6367)="
6698
6699 cleanup_65k() {
6700         rm -rf $DIR/$tdir
6701         wait_delete_completed
6702         do_facet $SINGLEMDS "lctl set_param -n \
6703                 osp.$ost*MDT0000.max_create_count=$max_count"
6704         do_facet $SINGLEMDS "lctl set_param -n \
6705                 osp.$ost*MDT0000.create_count=$count"
6706         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
6707         echo $INACTIVE_OSC "is Activate"
6708
6709         wait_osc_import_state mds ost$ostnum FULL
6710 }
6711
6712 test_65k() { # bug11679
6713         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6714         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
6715         remote_mds_nodsh && skip "remote MDS with nodsh"
6716
6717         local disable_precreate=true
6718         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.8.54) ] &&
6719                 disable_precreate=false
6720
6721         echo "Check OST status: "
6722         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
6723                 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
6724
6725         for OSC in $MDS_OSCS; do
6726                 echo $OSC "is active"
6727                 do_facet $SINGLEMDS lctl --device %$OSC activate
6728         done
6729
6730         for INACTIVE_OSC in $MDS_OSCS; do
6731                 local ost=$(osc_to_ost $INACTIVE_OSC)
6732                 local ostnum=$(do_facet $SINGLEMDS lctl get_param -n \
6733                                lov.*md*.target_obd |
6734                                awk -F: /$ost/'{ print $1 }' | head -n 1)
6735
6736                 mkdir -p $DIR/$tdir
6737                 $SETSTRIPE -i $ostnum -c 1 $DIR/$tdir
6738                 createmany -o $DIR/$tdir/$tfile.$ostnum. 1000
6739
6740                 echo "Deactivate: " $INACTIVE_OSC
6741                 do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
6742
6743                 local count=$(do_facet $SINGLEMDS "lctl get_param -n \
6744                               osp.$ost*MDT0000.create_count")
6745                 local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
6746                                   osp.$ost*MDT0000.max_create_count")
6747                 $disable_precreate &&
6748                         do_facet $SINGLEMDS "lctl set_param -n \
6749                                 osp.$ost*MDT0000.max_create_count=0"
6750
6751                 for idx in $(seq 0 $((OSTCOUNT - 1))); do
6752                         [ -f $DIR/$tdir/$idx ] && continue
6753                         echo "$SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx"
6754                         $SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx ||
6755                                 { cleanup_65k;
6756                                   error "setstripe $idx should succeed"; }
6757                         rm -f $DIR/$tdir/$idx || error "rm $idx failed"
6758                 done
6759                 unlinkmany $DIR/$tdir/$tfile.$ostnum. 1000
6760                 rmdir $DIR/$tdir
6761
6762                 do_facet $SINGLEMDS "lctl set_param -n \
6763                         osp.$ost*MDT0000.max_create_count=$max_count"
6764                 do_facet $SINGLEMDS "lctl set_param -n \
6765                         osp.$ost*MDT0000.create_count=$count"
6766                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
6767                 echo $INACTIVE_OSC "is Activate"
6768
6769                 wait_osc_import_state mds ost$ostnum FULL
6770         done
6771 }
6772 run_test 65k "validate manual striping works properly with deactivated OSCs"
6773
6774 test_65l() { # bug 12836
6775         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6776
6777         test_mkdir -p $DIR/$tdir/test_dir
6778         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
6779         $LFS find -mtime -1 $DIR/$tdir >/dev/null
6780 }
6781 run_test 65l "lfs find on -1 stripe dir ========================"
6782
6783 test_65m() {
6784         local layout=$(save_layout $MOUNT)
6785         $RUNAS $SETSTRIPE -c 2 $MOUNT && {
6786                 restore_layout $MOUNT $layout
6787                 error "setstripe should fail by non-root users"
6788         }
6789         true
6790 }
6791 run_test 65m "normal user can't set filesystem default stripe"
6792
6793 test_65n() {
6794         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.12.0) ]] ||
6795                 skip "Need MDS version at least 2.12.0"
6796         [[ $PARALLEL != "yes" ]] || skip "skip parallel run"
6797
6798         [[ $OSTCOUNT -ge 2 ]] || skip_env "needs >= 2 OSTs"
6799         which getfattr > /dev/null 2>&1 || skip_env "no getfattr command"
6800         which setfattr > /dev/null 2>&1 || skip_env "no setfattr command"
6801
6802         local root_layout=$(save_layout $MOUNT)
6803         stack_trap "restore_layout $MOUNT $root_layout" EXIT
6804
6805         # new subdirectory under root directory should not inherit
6806         # the default layout from root
6807         local dir1=$MOUNT/$tdir-1
6808         mkdir $dir1 || error "mkdir $dir1 failed"
6809         ! getfattr -n trusted.lov $dir1 &> /dev/null ||
6810                 error "$dir1 shouldn't have LOV EA"
6811
6812         # delete the default layout on root directory
6813         $LFS setstripe -d $MOUNT || error "delete root default layout failed"
6814
6815         local dir2=$MOUNT/$tdir-2
6816         mkdir $dir2 || error "mkdir $dir2 failed"
6817         ! getfattr -n trusted.lov $dir2 &> /dev/null ||
6818                 error "$dir2 shouldn't have LOV EA"
6819
6820         # set a new striping pattern on root directory
6821         local def_stripe_size=$($LFS getstripe -S $MOUNT)
6822         local new_def_stripe_size=$((def_stripe_size * 2))
6823         $LFS setstripe -S $new_def_stripe_size $MOUNT ||
6824                 error "set stripe size on $MOUNT failed"
6825
6826         # new file created in $dir2 should inherit the new stripe size from
6827         # the filesystem default
6828         local file2=$dir2/$tfile-2
6829         touch $file2 || error "touch $file2 failed"
6830
6831         local file2_stripe_size=$($LFS getstripe -S $file2)
6832         [[ $file2_stripe_size -eq $new_def_stripe_size ]] ||
6833                 error "$file2 didn't inherit stripe size $new_def_stripe_size"
6834
6835         local dir3=$MOUNT/$tdir-3
6836         mkdir $dir3 || error "mkdir $dir3 failed"
6837         ! getfattr -n trusted.lov $dir3 &> /dev/null ||
6838                 error "$dir3 shouldn't have LOV EA"
6839
6840         # set OST pool on root directory
6841         local pool=$TESTNAME
6842         pool_add $pool || error "add $pool failed"
6843         pool_add_targets $pool 0 $((OSTCOUNT - 1)) 1 ||
6844                 error "add targets to $pool failed"
6845
6846         $LFS setstripe -p $pool $MOUNT ||
6847                 error "set OST pool on $MOUNT failed"
6848
6849         # new file created in $dir3 should inherit the pool from
6850         # the filesystem default
6851         local file3=$dir3/$tfile-3
6852         touch $file3 || error "touch $file3 failed"
6853
6854         local file3_pool=$($LFS getstripe -p $file3)
6855         [[ "$file3_pool" = "$pool" ]] ||
6856                 error "$file3 didn't inherit OST pool $pool"
6857
6858         local dir4=$MOUNT/$tdir-4
6859         mkdir $dir4 || error "mkdir $dir4 failed"
6860         ! getfattr -n trusted.lov $dir4 &> /dev/null ||
6861                 error "$dir4 shouldn't have LOV EA"
6862
6863         # new file created in $dir4 should inherit the pool from
6864         # the filesystem default
6865         local file4=$dir4/$tfile-4
6866         touch $file4 || error "touch $file4 failed"
6867
6868         local file4_pool=$($LFS getstripe -p $file4)
6869         [[ "$file4_pool" = "$pool" ]] ||
6870                 error "$file4 didn't inherit OST pool $pool"
6871
6872         # new subdirectory under non-root directory should inherit
6873         # the default layout from its parent directory
6874         $LFS setstripe -S $new_def_stripe_size -p $pool $dir4 ||
6875                 error "set directory layout on $dir4 failed"
6876
6877         local dir5=$dir4/$tdir-5
6878         mkdir $dir5 || error "mkdir $dir5 failed"
6879
6880         local dir4_layout=$(get_layout_param $dir4)
6881         local dir5_layout=$(get_layout_param $dir5)
6882         [[ "$dir4_layout" = "$dir5_layout" ]] ||
6883                 error "$dir5 should inherit the default layout from $dir4"
6884 }
6885 run_test 65n "don't inherit default layout from root for new subdirectories"
6886
6887 # bug 2543 - update blocks count on client
6888 test_66() {
6889         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6890
6891         COUNT=${COUNT:-8}
6892         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
6893         sync; sync_all_data; sync; sync_all_data
6894         cancel_lru_locks osc
6895         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
6896         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
6897 }
6898 run_test 66 "update inode blocks count on client ==============="
6899
6900 meminfo() {
6901         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
6902 }
6903
6904 swap_used() {
6905         swapon -s | awk '($1 == "'$1'") { print $4 }'
6906 }
6907
6908 # bug5265, obdfilter oa2dentry return -ENOENT
6909 # #define OBD_FAIL_SRV_ENOENT 0x217
6910 test_69() {
6911         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6912         remote_ost_nodsh && skip "remote OST with nodsh"
6913
6914         f="$DIR/$tfile"
6915         $SETSTRIPE -c 1 -i 0 $f
6916
6917         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
6918
6919         do_facet ost1 lctl set_param fail_loc=0x217
6920         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
6921         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
6922
6923         do_facet ost1 lctl set_param fail_loc=0
6924         $DIRECTIO write $f 0 2 || error "write error"
6925
6926         cancel_lru_locks osc
6927         $DIRECTIO read $f 0 1 || error "read error"
6928
6929         do_facet ost1 lctl set_param fail_loc=0x217
6930         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
6931
6932         do_facet ost1 lctl set_param fail_loc=0
6933         rm -f $f
6934 }
6935 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
6936
6937 test_71() {
6938         test_mkdir $DIR/$tdir
6939         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
6940         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
6941 }
6942 run_test 71 "Running dbench on lustre (don't segment fault) ===="
6943
6944 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
6945         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6946         [ "$RUNAS_ID" = "$UID" ] &&
6947                 skip_env "RUNAS_ID = UID = $UID -- skipping"
6948         # Check that testing environment is properly set up. Skip if not
6949         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS ||
6950                 skip_env "User $RUNAS_ID does not exist - skipping"
6951
6952         touch $DIR/$tfile
6953         chmod 777 $DIR/$tfile
6954         chmod ug+s $DIR/$tfile
6955         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
6956                 error "$RUNAS dd $DIR/$tfile failed"
6957         # See if we are still setuid/sgid
6958         test -u $DIR/$tfile -o -g $DIR/$tfile &&
6959                 error "S/gid is not dropped on write"
6960         # Now test that MDS is updated too
6961         cancel_lru_locks mdc
6962         test -u $DIR/$tfile -o -g $DIR/$tfile &&
6963                 error "S/gid is not dropped on MDS"
6964         rm -f $DIR/$tfile
6965 }
6966 run_test 72a "Test that remove suid works properly (bug5695) ===="
6967
6968 test_72b() { # bug 24226 -- keep mode setting when size is not changing
6969         local perm
6970
6971         [ "$RUNAS_ID" = "$UID" ] &&
6972                 skip_env "RUNAS_ID = UID = $UID -- skipping"
6973         [ "$RUNAS_ID" -eq 0 ] &&
6974                 skip_env "RUNAS_ID = 0 -- skipping"
6975         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6976         # Check that testing environment is properly set up. Skip if not
6977         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS ||
6978                 skip_env "User $RUNAS_ID does not exist - skipping"
6979
6980         touch $DIR/${tfile}-f{g,u}
6981         test_mkdir $DIR/${tfile}-dg
6982         test_mkdir $DIR/${tfile}-du
6983         chmod 770 $DIR/${tfile}-{f,d}{g,u}
6984         chmod g+s $DIR/${tfile}-{f,d}g
6985         chmod u+s $DIR/${tfile}-{f,d}u
6986         for perm in 777 2777 4777; do
6987                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
6988                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
6989                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
6990                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
6991         done
6992         true
6993 }
6994 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
6995
6996 # bug 3462 - multiple simultaneous MDC requests
6997 test_73() {
6998         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6999
7000         test_mkdir $DIR/d73-1
7001         test_mkdir $DIR/d73-2
7002         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
7003         pid1=$!
7004
7005         lctl set_param fail_loc=0x80000129
7006         $MULTIOP $DIR/d73-1/f73-2 Oc &
7007         sleep 1
7008         lctl set_param fail_loc=0
7009
7010         $MULTIOP $DIR/d73-2/f73-3 Oc &
7011         pid3=$!
7012
7013         kill -USR1 $pid1
7014         wait $pid1 || return 1
7015
7016         sleep 25
7017
7018         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
7019         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
7020         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
7021
7022         rm -rf $DIR/d73-*
7023 }
7024 run_test 73 "multiple MDC requests (should not deadlock)"
7025
7026 test_74a() { # bug 6149, 6184
7027         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7028
7029         touch $DIR/f74a
7030         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
7031         #
7032         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
7033         # will spin in a tight reconnection loop
7034         $LCTL set_param fail_loc=0x8000030e
7035         # get any lock that won't be difficult - lookup works.
7036         ls $DIR/f74a
7037         $LCTL set_param fail_loc=0
7038         rm -f $DIR/f74a
7039         true
7040 }
7041 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
7042
7043 test_74b() { # bug 13310
7044         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7045
7046         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
7047         #
7048         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
7049         # will spin in a tight reconnection loop
7050         $LCTL set_param fail_loc=0x8000030e
7051         # get a "difficult" lock
7052         touch $DIR/f74b
7053         $LCTL set_param fail_loc=0
7054         rm -f $DIR/f74b
7055         true
7056 }
7057 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
7058
7059 test_74c() {
7060         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7061
7062         #define OBD_FAIL_LDLM_NEW_LOCK
7063         $LCTL set_param fail_loc=0x319
7064         touch $DIR/$tfile && error "touch successful"
7065         $LCTL set_param fail_loc=0
7066         true
7067 }
7068 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
7069
7070 num_inodes() {
7071         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
7072 }
7073
7074 test_76() { # Now for bug 20433, added originally in bug 1443
7075         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7076
7077         local CPUS=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
7078
7079         cancel_lru_locks osc
7080         BEFORE_INODES=$(num_inodes)
7081         echo "before inodes: $BEFORE_INODES"
7082         local COUNT=1000
7083         [ "$SLOW" = "no" ] && COUNT=100
7084         for i in $(seq $COUNT); do
7085                 touch $DIR/$tfile
7086                 rm -f $DIR/$tfile
7087         done
7088         cancel_lru_locks osc
7089         AFTER_INODES=$(num_inodes)
7090         echo "after inodes: $AFTER_INODES"
7091         local wait=0
7092         while [[ $((AFTER_INODES-1*${CPUS:-1})) -gt $BEFORE_INODES ]]; do
7093                 sleep 2
7094                 AFTER_INODES=$(num_inodes)
7095                 wait=$((wait+2))
7096                 echo "wait $wait seconds inodes: $AFTER_INODES"
7097                 if [ $wait -gt 30 ]; then
7098                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
7099                 fi
7100         done
7101 }
7102 run_test 76 "confirm clients recycle inodes properly ===="
7103
7104
7105 export ORIG_CSUM=""
7106 set_checksums()
7107 {
7108         # Note: in sptlrpc modes which enable its own bulk checksum, the
7109         # original crc32_le bulk checksum will be automatically disabled,
7110         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
7111         # will be checked by sptlrpc code against sptlrpc bulk checksum.
7112         # In this case set_checksums() will not be no-op, because sptlrpc
7113         # bulk checksum will be enabled all through the test.
7114
7115         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
7116         lctl set_param -n osc.*.checksums $1
7117         return 0
7118 }
7119
7120 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
7121                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
7122 CKSUM_TYPES=${CKSUM_TYPES:-$(lctl get_param -n osc.*osc-[^mM]*.checksum_type |
7123                              tr -d [] | head -n1)}
7124 set_checksum_type()
7125 {
7126         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
7127         log "set checksum type to $1"
7128         return 0
7129 }
7130 F77_TMP=$TMP/f77-temp
7131 F77SZ=8
7132 setup_f77() {
7133         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
7134                 error "error writing to $F77_TMP"
7135 }
7136
7137 test_77a() { # bug 10889
7138         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7139         $GSS && skip_env "could not run with gss"
7140
7141         [ ! -f $F77_TMP ] && setup_f77
7142         set_checksums 1
7143         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
7144         set_checksums 0
7145         rm -f $DIR/$tfile
7146 }
7147 run_test 77a "normal checksum read/write operation"
7148
7149 test_77b() { # bug 10889
7150         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7151         $GSS && skip_env "could not run with gss"
7152
7153         [ ! -f $F77_TMP ] && setup_f77
7154         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7155         $LCTL set_param fail_loc=0x80000409
7156         set_checksums 1
7157
7158         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
7159                 error "dd error: $?"
7160         $LCTL set_param fail_loc=0
7161
7162         for algo in $CKSUM_TYPES; do
7163                 cancel_lru_locks osc
7164                 set_checksum_type $algo
7165                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
7166                 $LCTL set_param fail_loc=0x80000408
7167                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
7168                 $LCTL set_param fail_loc=0
7169         done
7170         set_checksums 0
7171         set_checksum_type $ORIG_CSUM_TYPE
7172         rm -f $DIR/$tfile
7173 }
7174 run_test 77b "checksum error on client write, read"
7175
7176 cleanup_77c() {
7177         trap 0
7178         set_checksums 0
7179         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=0
7180         $check_ost &&
7181                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=0
7182         [ -n "$osc_file_prefix" ] && rm -f ${osc_file_prefix}*
7183         $check_ost && [ -n "$ost_file_prefix" ] &&
7184                 do_facet ost1 rm -f ${ost_file_prefix}\*
7185 }
7186
7187 test_77c() {
7188         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7189         $GSS && skip_env "could not run with gss"
7190         remote_ost_nodsh && skip "remote OST with nodsh"
7191
7192         local bad1
7193         local osc_file_prefix
7194         local osc_file
7195         local check_ost=false
7196         local ost_file_prefix
7197         local ost_file
7198         local orig_cksum
7199         local dump_cksum
7200         local fid
7201
7202         # ensure corruption will occur on first OSS/OST
7203         $LFS setstripe -i 0 $DIR/$tfile
7204
7205         [ ! -f $F77_TMP ] && setup_f77
7206         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
7207                 error "dd write error: $?"
7208         fid=$($LFS path2fid $DIR/$tfile)
7209
7210         if [ $(lustre_version_code ost1) -ge $(version_code 2.9.57) ]
7211         then
7212                 check_ost=true
7213                 ost_file_prefix=$(do_facet ost1 $LCTL get_param -n debug_path)
7214                 ost_file_prefix=${ost_file_prefix}-checksum_dump-ost-\\${fid}
7215         else
7216                 echo "OSS do not support bulk pages dump upon error"
7217         fi
7218
7219         osc_file_prefix=$($LCTL get_param -n debug_path)
7220         osc_file_prefix=${osc_file_prefix}-checksum_dump-osc-\\${fid}
7221
7222         trap cleanup_77c EXIT
7223
7224         set_checksums 1
7225         # enable bulk pages dump upon error on Client
7226         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=1
7227         # enable bulk pages dump upon error on OSS
7228         $check_ost &&
7229                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=1
7230
7231         # flush Client cache to allow next read to reach OSS
7232         cancel_lru_locks osc
7233
7234         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE       0x408
7235         $LCTL set_param fail_loc=0x80000408
7236         dd if=$DIR/$tfile of=/dev/null bs=1M || error "dd read error: $?"
7237         $LCTL set_param fail_loc=0
7238
7239         rm -f $DIR/$tfile
7240
7241         # check cksum dump on Client
7242         osc_file=$(ls ${osc_file_prefix}*)
7243         [ -n "$osc_file" ] || error "no checksum dump file on Client"
7244         # OBD_FAIL_OSC_CHECKSUM_RECEIVE corrupts with "bad1" at start of file
7245         bad1=$(dd if=$osc_file bs=1 count=4 2>/dev/null) || error "dd error: $?"
7246         [ $bad1 == "bad1" ] || error "unexpected corrupt pattern"
7247         orig_cksum=$(dd if=$F77_TMP bs=1 skip=4 count=1048572 2>/dev/null |
7248                      cksum)
7249         dump_cksum=$(dd if=$osc_file bs=1 skip=4 2>/dev/null | cksum)
7250         [[ "$orig_cksum" == "$dump_cksum" ]] ||
7251                 error "dump content does not match on Client"
7252
7253         $check_ost || skip "No need to check cksum dump on OSS"
7254
7255         # check cksum dump on OSS
7256         ost_file=$(do_facet ost1 ls ${ost_file_prefix}\*)
7257         [ -n "$ost_file" ] || error "no checksum dump file on OSS"
7258         orig_cksum=$(dd if=$F77_TMP bs=1048576 count=1 2>/dev/null | cksum)
7259         dump_cksum=$(do_facet ost1 dd if=$ost_file 2>/dev/null \| cksum)
7260         [[ "$orig_cksum" == "$dump_cksum" ]] ||
7261                 error "dump content does not match on OSS"
7262
7263         cleanup_77c
7264 }
7265 run_test 77c "checksum error on client read with debug"
7266
7267 test_77d() { # bug 10889
7268         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7269         $GSS && skip_env "could not run with gss"
7270
7271         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7272         $LCTL set_param fail_loc=0x80000409
7273         set_checksums 1
7274         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
7275                 error "direct write: rc=$?"
7276         $LCTL set_param fail_loc=0
7277         set_checksums 0
7278
7279         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
7280         $LCTL set_param fail_loc=0x80000408
7281         set_checksums 1
7282         cancel_lru_locks osc
7283         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
7284                 error "direct read: rc=$?"
7285         $LCTL set_param fail_loc=0
7286         set_checksums 0
7287 }
7288 run_test 77d "checksum error on OST direct write, read"
7289
7290 test_77f() { # bug 10889
7291         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7292         $GSS && skip_env "could not run with gss"
7293
7294         set_checksums 1
7295         for algo in $CKSUM_TYPES; do
7296                 cancel_lru_locks osc
7297                 set_checksum_type $algo
7298                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7299                 $LCTL set_param fail_loc=0x409
7300                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
7301                         error "direct write succeeded"
7302                 $LCTL set_param fail_loc=0
7303         done
7304         set_checksum_type $ORIG_CSUM_TYPE
7305         set_checksums 0
7306 }
7307 run_test 77f "repeat checksum error on write (expect error)"
7308
7309 test_77g() { # bug 10889
7310         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7311         $GSS && skip_env "could not run with gss"
7312         remote_ost_nodsh && skip "remote OST with nodsh"
7313
7314         [ ! -f $F77_TMP ] && setup_f77
7315
7316         local file=$DIR/$tfile
7317         stack_trap "rm -f $file" EXIT
7318
7319         $SETSTRIPE -c 1 -i 0 $file
7320         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
7321         do_facet ost1 lctl set_param fail_loc=0x8000021a
7322         set_checksums 1
7323         dd if=$F77_TMP of=$file bs=1M count=$F77SZ ||
7324                 error "write error: rc=$?"
7325         do_facet ost1 lctl set_param fail_loc=0
7326         set_checksums 0
7327
7328         cancel_lru_locks osc
7329         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
7330         do_facet ost1 lctl set_param fail_loc=0x8000021b
7331         set_checksums 1
7332         cmp $F77_TMP $file || error "file compare failed"
7333         do_facet ost1 lctl set_param fail_loc=0
7334         set_checksums 0
7335 }
7336 run_test 77g "checksum error on OST write, read"
7337
7338 test_77k() { # LU-10906
7339         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7340         $GSS && skip_env "could not run with gss"
7341
7342         local cksum_param="osc.$FSNAME*.checksums"
7343         local get_checksum="$LCTL get_param -n $cksum_param | head -n1"
7344         local checksum
7345         local i
7346
7347         [ "$ORIG_CSUM" ] || ORIG_CSUM=$(eval $get_checksum)
7348         stack_trap "wait_update $HOSTNAME '$get_checksum' $ORIG_CSUM" EXIT
7349         stack_trap "do_facet mgs $LCTL set_param -P $cksum_param=$ORIG_CSUM" \
7350                 EXIT
7351
7352         for i in 0 1; do
7353                 do_facet mgs $LCTL set_param -P $cksum_param=$i ||
7354                         error "failed to set checksum=$i on MGS"
7355                 wait_update $HOSTNAME "$get_checksum" $i
7356                 #remount
7357                 echo "remount client, checksum should be $i"
7358                 remount_client $MOUNT || "failed to remount client"
7359                 checksum=$(eval $get_checksum)
7360                 [ $checksum -eq $i ] || error "checksum($checksum) != $i"
7361         done
7362
7363         for opt in "checksum" "nochecksum"; do
7364                 #remount with mount option
7365                 echo "remount client with option $opt, checksum should be $i"
7366                 umount_client $MOUNT || "failed to umount client"
7367                 mount_client $MOUNT "$MOUNT_OPTS,$opt" ||
7368                         "failed to mount client with option '$opt'"
7369                 checksum=$(eval $get_checksum)
7370                 [ $checksum -eq $i ] || error "checksum($checksum) != $i"
7371                 i=$((i - 1))
7372         done
7373
7374         remount_client $MOUNT || "failed to remount client"
7375 }
7376 run_test 77k "enable/disable checksum correctly"
7377
7378 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
7379 rm -f $F77_TMP
7380 unset F77_TMP
7381
7382 cleanup_test_78() {
7383         trap 0
7384         rm -f $DIR/$tfile
7385 }
7386
7387 test_78() { # bug 10901
7388         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7389         remote_ost || skip_env "local OST"
7390
7391         NSEQ=5
7392         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
7393         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
7394         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
7395         echo "MemTotal: $MEMTOTAL"
7396
7397         # reserve 256MB of memory for the kernel and other running processes,
7398         # and then take 1/2 of the remaining memory for the read/write buffers.
7399         if [ $MEMTOTAL -gt 512 ] ;then
7400                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
7401         else
7402                 # for those poor memory-starved high-end clusters...
7403                 MEMTOTAL=$((MEMTOTAL / 2))
7404         fi
7405         echo "Mem to use for directio: $MEMTOTAL"
7406
7407         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
7408         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
7409         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
7410         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
7411                 head -n1)
7412         echo "Smallest OST: $SMALLESTOST"
7413         [[ $SMALLESTOST -lt 10240 ]] &&
7414                 skip "too small OSTSIZE, useless to run large O_DIRECT test"
7415
7416         trap cleanup_test_78 EXIT
7417
7418         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
7419                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
7420
7421         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
7422         echo "File size: $F78SIZE"
7423         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
7424         for i in $(seq 1 $NSEQ); do
7425                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
7426                 echo directIO rdwr round $i of $NSEQ
7427                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
7428         done
7429
7430         cleanup_test_78
7431 }
7432 run_test 78 "handle large O_DIRECT writes correctly ============"
7433
7434 test_79() { # bug 12743
7435         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7436
7437         wait_delete_completed
7438
7439         BKTOTAL=$(calc_osc_kbytes kbytestotal)
7440         BKFREE=$(calc_osc_kbytes kbytesfree)
7441         BKAVAIL=$(calc_osc_kbytes kbytesavail)
7442
7443         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
7444         DFTOTAL=`echo $STRING | cut -d, -f1`
7445         DFUSED=`echo $STRING  | cut -d, -f2`
7446         DFAVAIL=`echo $STRING | cut -d, -f3`
7447         DFFREE=$(($DFTOTAL - $DFUSED))
7448
7449         ALLOWANCE=$((64 * $OSTCOUNT))
7450
7451         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
7452            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
7453                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
7454         fi
7455         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
7456            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
7457                 error "df free($DFFREE) mismatch OST free($BKFREE)"
7458         fi
7459         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
7460            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
7461                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
7462         fi
7463 }
7464 run_test 79 "df report consistency check ======================="
7465
7466 test_80() { # bug 10718
7467         remote_ost_nodsh && skip "remote OST with nodsh"
7468         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7469
7470         # relax strong synchronous semantics for slow backends like ZFS
7471         local soc="obdfilter.*.sync_on_lock_cancel"
7472         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
7473         local hosts=
7474         if [ "$soc_old" != "never" ] &&
7475                 [ "$(facet_fstype ost1)" != "ldiskfs" ]; then
7476                         hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
7477                                 facet_active_host $host; done | sort -u)
7478                         do_nodes $hosts lctl set_param $soc=never
7479         fi
7480
7481         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
7482         sync; sleep 1; sync
7483         local BEFORE=`date +%s`
7484         cancel_lru_locks osc
7485         local AFTER=`date +%s`
7486         local DIFF=$((AFTER-BEFORE))
7487         if [ $DIFF -gt 1 ] ; then
7488                 error "elapsed for 1M@1T = $DIFF"
7489         fi
7490
7491         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
7492
7493         rm -f $DIR/$tfile
7494 }
7495 run_test 80 "Page eviction is equally fast at high offsets too  ===="
7496
7497 test_81a() { # LU-456
7498         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7499         remote_ost_nodsh && skip "remote OST with nodsh"
7500
7501         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
7502         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
7503         do_facet ost1 lctl set_param fail_loc=0x80000228
7504
7505         # write should trigger a retry and success
7506         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
7507         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7508         RC=$?
7509         if [ $RC -ne 0 ] ; then
7510                 error "write should success, but failed for $RC"
7511         fi
7512 }
7513 run_test 81a "OST should retry write when get -ENOSPC ==============="
7514
7515 test_81b() { # LU-456
7516         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7517         remote_ost_nodsh && skip "remote OST with nodsh"
7518
7519         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
7520         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
7521         do_facet ost1 lctl set_param fail_loc=0x228
7522
7523         # write should retry several times and return -ENOSPC finally
7524         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
7525         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7526         RC=$?
7527         ENOSPC=28
7528         if [ $RC -ne $ENOSPC ] ; then
7529                 error "dd should fail for -ENOSPC, but succeed."
7530         fi
7531 }
7532 run_test 81b "OST should return -ENOSPC when retry still fails ======="
7533
7534 test_82() { # LU-1031
7535         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
7536         local gid1=14091995
7537         local gid2=16022000
7538
7539         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
7540         local MULTIPID1=$!
7541         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
7542         local MULTIPID2=$!
7543         kill -USR1 $MULTIPID2
7544         sleep 2
7545         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
7546                 error "First grouplock does not block second one"
7547         else
7548                 echo "Second grouplock blocks first one"
7549         fi
7550         kill -USR1 $MULTIPID1
7551         wait $MULTIPID1
7552         wait $MULTIPID2
7553 }
7554 run_test 82 "Basic grouplock test"
7555
7556 test_83() {
7557         local sfile="/boot/System.map-$(uname -r)"
7558         [ ! -f $sfile ] && skip "No $sfile found"
7559         # define OBD_FAIL_LLITE_PTASK_IO_FAIL 0x140d
7560         $LCTL set_param fail_loc=0x140d
7561         cp $sfile $DIR/$tfile || error "write failed"
7562         diff -c $sfile $DIR/$tfile || error "files are different"
7563         $LCTL set_param fail_loc=0
7564         rm -f $DIR/$tfile
7565 }
7566 run_test 83 "Short write in ptask ==============================="
7567
7568 test_99() {
7569         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs"
7570
7571         test_mkdir $DIR/$tdir.cvsroot
7572         chown $RUNAS_ID $DIR/$tdir.cvsroot
7573
7574         cd $TMP
7575         $RUNAS cvs -d $DIR/$tdir.cvsroot init || error "cvs init failed"
7576
7577         cd /etc/init.d
7578         # some versions of cvs import exit(1) when asked to import links or
7579         # files they can't read.  ignore those files.
7580         local toignore=$(find . -type l -printf '-I %f\n' -o \
7581                          ! -perm /4 -printf '-I %f\n')
7582         $RUNAS cvs -d $DIR/$tdir.cvsroot import -m "nomesg" $toignore \
7583                 $tdir.reposname vtag rtag
7584
7585         cd $DIR
7586         test_mkdir $DIR/$tdir.reposname
7587         chown $RUNAS_ID $DIR/$tdir.reposname
7588         $RUNAS cvs -d $DIR/$tdir.cvsroot co $tdir.reposname
7589
7590         cd $DIR/$tdir.reposname
7591         $RUNAS touch foo99
7592         $RUNAS cvs add -m 'addmsg' foo99
7593         $RUNAS cvs update
7594         $RUNAS cvs commit -m 'nomsg' foo99
7595         rm -fr $DIR/$tdir.cvsroot
7596 }
7597 run_test 99 "cvs strange file/directory operations"
7598
7599 test_100() {
7600         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7601         [[ "$NETTYPE" =~ tcp ]] ||
7602                 skip_env "TCP secure port test, not useful for NETTYPE=$NETTYPE"
7603         remote_ost_nodsh && skip "remote OST with nodsh"
7604         remote_mds_nodsh && skip "remote MDS with nodsh"
7605         remote_servers ||
7606                 skip "useless for local single node setup"
7607
7608         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
7609                 [ "$PROT" != "tcp" ] && continue
7610                 RPORT=$(echo $REMOTE | cut -d: -f2)
7611                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
7612
7613                 rc=0
7614                 LPORT=`echo $LOCAL | cut -d: -f2`
7615                 if [ $LPORT -ge 1024 ]; then
7616                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
7617                         netstat -tna
7618                         error_exit "local: $LPORT > 1024, remote: $RPORT"
7619                 fi
7620         done
7621         [ "$rc" = 0 ] || error_exit "privileged port not found" )
7622 }
7623 run_test 100 "check local port using privileged port ==========="
7624
7625 function get_named_value()
7626 {
7627     local tag
7628
7629     tag=$1
7630     while read ;do
7631         line=$REPLY
7632         case $line in
7633         $tag*)
7634             echo $line | sed "s/^$tag[ ]*//"
7635             break
7636             ;;
7637         esac
7638     done
7639 }
7640
7641 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
7642                    awk '/^max_cached_mb/ { print $2 }')
7643
7644 cleanup_101a() {
7645         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
7646         trap 0
7647 }
7648
7649 test_101a() {
7650         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7651         [ $MDSCOUNT -ge 2 ] && skip_env "needs < 2 MDTs" #LU-4322
7652
7653         local s
7654         local discard
7655         local nreads=10000
7656         local cache_limit=32
7657
7658         $LCTL set_param -n osc.*-osc*.rpc_stats 0
7659         trap cleanup_101a EXIT
7660         $LCTL set_param -n llite.*.read_ahead_stats 0
7661         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
7662
7663         #
7664         # randomly read 10000 of 64K chunks from file 3x 32MB in size
7665         #
7666         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
7667         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
7668
7669         discard=0
7670         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
7671                 get_named_value 'read but discarded' | cut -d" " -f1); do
7672                         discard=$(($discard + $s))
7673         done
7674         cleanup_101a
7675
7676         if [[ $(($discard * 10)) -gt $nreads ]]; then
7677                 $LCTL get_param osc.*-osc*.rpc_stats
7678                 $LCTL get_param llite.*.read_ahead_stats
7679                 error "too many ($discard) discarded pages"
7680         fi
7681         rm -f $DIR/$tfile || true
7682 }
7683 run_test 101a "check read-ahead for random reads"
7684
7685 setup_test101bc() {
7686         test_mkdir $DIR/$tdir
7687         local STRIPE_SIZE=$1
7688         local FILE_LENGTH=$2
7689         STRIPE_OFFSET=0
7690
7691         local FILE_SIZE_MB=$((FILE_LENGTH / STRIPE_SIZE))
7692
7693         local list=$(comma_list $(osts_nodes))
7694         set_osd_param $list '' read_cache_enable 0
7695         set_osd_param $list '' writethrough_cache_enable 0
7696
7697         trap cleanup_test101bc EXIT
7698         # prepare the read-ahead file
7699         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
7700
7701         dd if=/dev/zero of=$DIR/$tfile bs=$STRIPE_SIZE \
7702                                 count=$FILE_SIZE_MB 2> /dev/null
7703
7704 }
7705
7706 cleanup_test101bc() {
7707         trap 0
7708         rm -rf $DIR/$tdir
7709         rm -f $DIR/$tfile
7710
7711         local list=$(comma_list $(osts_nodes))
7712         set_osd_param $list '' read_cache_enable 1
7713         set_osd_param $list '' writethrough_cache_enable 1
7714 }
7715
7716 calc_total() {
7717         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
7718 }
7719
7720 ra_check_101() {
7721         local READ_SIZE=$1
7722         local STRIPE_SIZE=$2
7723         local FILE_LENGTH=$3
7724         local RA_INC=1048576
7725         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
7726         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
7727                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
7728         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
7729                         get_named_value 'read but discarded' |
7730                         cut -d" " -f1 | calc_total)
7731         if [[ $DISCARD -gt $discard_limit ]]; then
7732                 $LCTL get_param llite.*.read_ahead_stats
7733                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
7734         else
7735                 echo "Read-ahead success for size ${READ_SIZE}"
7736         fi
7737 }
7738
7739 test_101b() {
7740         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7741         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
7742
7743         local STRIPE_SIZE=1048576
7744         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
7745
7746         if [ $SLOW == "yes" ]; then
7747                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
7748         else
7749                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
7750         fi
7751
7752         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
7753
7754         # prepare the read-ahead file
7755         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
7756         cancel_lru_locks osc
7757         for BIDX in 2 4 8 16 32 64 128 256
7758         do
7759                 local BSIZE=$((BIDX*4096))
7760                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
7761                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
7762                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
7763                 $LCTL set_param -n llite.*.read_ahead_stats 0
7764                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
7765                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
7766                 cancel_lru_locks osc
7767                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
7768         done
7769         cleanup_test101bc
7770         true
7771 }
7772 run_test 101b "check stride-io mode read-ahead ================="
7773
7774 test_101c() {
7775         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7776
7777         local STRIPE_SIZE=1048576
7778         local FILE_LENGTH=$((STRIPE_SIZE*100))
7779         local nreads=10000
7780         local osc_rpc_stats
7781
7782         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
7783
7784         cancel_lru_locks osc
7785         $LCTL set_param osc.*.rpc_stats 0
7786         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
7787         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
7788                 local stats=$($LCTL get_param -n $osc_rpc_stats)
7789                 local lines=$(echo "$stats" | awk 'END {print NR;}')
7790                 local size
7791
7792                 if [ $lines -le 20 ]; then
7793                         continue
7794                 fi
7795                 for size in 1 2 4 8; do
7796                         local rpc=$(echo "$stats" |
7797                                     awk '($1 == "'$size':") {print $2; exit; }')
7798                         [ $rpc != 0 ] &&
7799                                 error "Small $((size*4))k read IO $rpc !"
7800                 done
7801                 echo "$osc_rpc_stats check passed!"
7802         done
7803         cleanup_test101bc
7804         true
7805 }
7806 run_test 101c "check stripe_size aligned read-ahead ================="
7807
7808 set_read_ahead() {
7809         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
7810         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
7811 }
7812
7813 test_101d() {
7814         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7815
7816         local file=$DIR/$tfile
7817         local sz_MB=${FILESIZE_101d:-500}
7818         local ra_MB=${READAHEAD_MB:-40}
7819
7820         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
7821         [ $free_MB -lt $sz_MB ] &&
7822                 skip "Need free space ${sz_MB}M, have ${free_MB}M"
7823
7824         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
7825         $SETSTRIPE -c -1 $file || error "setstripe failed"
7826
7827         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
7828         echo Cancel LRU locks on lustre client to flush the client cache
7829         cancel_lru_locks osc
7830
7831         echo Disable read-ahead
7832         local old_READAHEAD=$(set_read_ahead 0)
7833
7834         echo Reading the test file $file with read-ahead disabled
7835         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
7836
7837         echo Cancel LRU locks on lustre client to flush the client cache
7838         cancel_lru_locks osc
7839         echo Enable read-ahead with ${ra_MB}MB
7840         set_read_ahead $ra_MB
7841
7842         echo Reading the test file $file with read-ahead enabled
7843         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
7844
7845         echo "read-ahead disabled time read $raOFF"
7846         echo "read-ahead enabled  time read $raON"
7847
7848         set_read_ahead $old_READAHEAD
7849         rm -f $file
7850         wait_delete_completed
7851
7852         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
7853                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
7854 }
7855 run_test 101d "file read with and without read-ahead enabled"
7856
7857 test_101e() {
7858         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7859
7860         local file=$DIR/$tfile
7861         local size_KB=500  #KB
7862         local count=100
7863         local bsize=1024
7864
7865         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
7866         local need_KB=$((count * size_KB))
7867         [[ $free_KB -le $need_KB ]] &&
7868                 skip_env "Need free space $need_KB, have $free_KB"
7869
7870         echo "Creating $count ${size_KB}K test files"
7871         for ((i = 0; i < $count; i++)); do
7872                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
7873         done
7874
7875         echo "Cancel LRU locks on lustre client to flush the client cache"
7876         cancel_lru_locks $OSC
7877
7878         echo "Reset readahead stats"
7879         $LCTL set_param -n llite.*.read_ahead_stats 0
7880
7881         for ((i = 0; i < $count; i++)); do
7882                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
7883         done
7884
7885         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
7886                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
7887
7888         for ((i = 0; i < $count; i++)); do
7889                 rm -rf $file.$i 2>/dev/null
7890         done
7891
7892         #10000 means 20% reads are missing in readahead
7893         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
7894 }
7895 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
7896
7897 test_101f() {
7898         which iozone || skip_env "no iozone installed"
7899
7900         local old_debug=$($LCTL get_param debug)
7901         old_debug=${old_debug#*=}
7902         $LCTL set_param debug="reada mmap"
7903
7904         # create a test file
7905         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
7906
7907         echo Cancel LRU locks on lustre client to flush the client cache
7908         cancel_lru_locks osc
7909
7910         echo Reset readahead stats
7911         $LCTL set_param -n llite.*.read_ahead_stats 0
7912
7913         echo mmap read the file with small block size
7914         iozone -i 1 -u 1 -l 1 -+n -r 32k -s 128m -B -f $DIR/$tfile \
7915                 > /dev/null 2>&1
7916
7917         echo checking missing pages
7918         $LCTL get_param llite.*.read_ahead_stats
7919         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
7920                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
7921
7922         $LCTL set_param debug="$old_debug"
7923         [ $miss -lt 3 ] || error "misses too much pages ('$miss')!"
7924         rm -f $DIR/$tfile
7925 }
7926 run_test 101f "check mmap read performance"
7927
7928 test_101g_brw_size_test() {
7929         local mb=$1
7930         local pages=$((mb * 1048576 / PAGE_SIZE))
7931         local file=$DIR/$tfile
7932
7933         $LCTL set_param osc.*.max_pages_per_rpc=${mb}M ||
7934                 { error "unable to set max_pages_per_rpc=${mb}M"; return 1; }
7935         for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
7936                 [ $mp -ne $pages ] && error "max_pages_per_rpc $mp != $pages" &&
7937                         return 2
7938         done
7939
7940         stack_trap "rm -f $file" EXIT
7941         $LCTL set_param -n osc.*.rpc_stats=0
7942
7943         # 10 RPCs should be enough for the test
7944         local count=10
7945         dd if=/dev/zero of=$file bs=${mb}M count=$count ||
7946                 { error "dd write ${mb} MB blocks failed"; return 3; }
7947         cancel_lru_locks osc
7948         dd of=/dev/null if=$file bs=${mb}M count=$count ||
7949                 { error "dd write ${mb} MB blocks failed"; return 4; }
7950
7951         # calculate number of full-sized read and write RPCs
7952         rpcs=($($LCTL get_param -n 'osc.*.rpc_stats' |
7953                 sed -n '/pages per rpc/,/^$/p' |
7954                 awk '/'$pages':/ { reads += $2; writes += $6 }; \
7955                 END { print reads,writes }'))
7956         [ ${rpcs[0]} -ne $count ] && error "${rpcs[0]} != $count read RPCs" &&
7957                 return 5
7958         [ ${rpcs[1]} -ne $count ] && error "${rpcs[1]} != $count write RPCs" &&
7959                 return 6
7960
7961         return 0
7962 }
7963
7964 test_101g() {
7965         remote_ost_nodsh && skip "remote OST with nodsh"
7966
7967         local rpcs
7968         local osts=$(get_facets OST)
7969         local list=$(comma_list $(osts_nodes))
7970         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
7971         local brw_size="obdfilter.*.brw_size"
7972         local ostver=$(lustre_version_code ost1)
7973         local cliver=$(lustre_version_code client)
7974
7975         $LFS setstripe -i 0 -c 1 $DIR/$tfile
7976
7977         local orig_mb=$(do_facet ost1 $LCTL get_param -n $brw_size | head -n 1)
7978         if [ $ostver -ge $(version_code 2.8.52) -o \
7979              \( $ostver -ge $(version_code 2.7.17) -a \
7980                 $ostver -lt $(version_code 2.7.50) \) ] &&
7981            [ $cliver -ge $(version_code 2.8.52) -o \
7982              \( $cliver -ge $(version_code 2.7.17) -a \
7983                 $cliver -lt $(version_code 2.7.50) \) ]; then
7984                 [ $ostver -ge $(version_code 2.9.52) ] && suffix="M"
7985                 if [[ $orig_mb -lt 16 ]]; then
7986                         save_lustre_params $osts "$brw_size" > $p
7987                         do_nodes $list $LCTL set_param -n $brw_size=16$suffix ||
7988                                 error "set 16MB RPC size failed"
7989
7990                         echo "remount client to enable new RPC size"
7991                         remount_client $MOUNT || error "remount_client failed"
7992                 fi
7993
7994                 test_101g_brw_size_test 16 || error "16MB RPC test failed"
7995                 # should be able to set brw_size=12, but no rpc_stats for that
7996                 test_101g_brw_size_test 8 || error "8MB RPC test failed"
7997         fi
7998
7999         test_101g_brw_size_test 4 || error "4MB RPC test failed"
8000
8001         if [[ $orig_mb -lt 16 ]]; then
8002                 restore_lustre_params < $p
8003                 remount_client $MOUNT || error "remount_client restore failed"
8004         fi
8005
8006         rm -f $p $DIR/$tfile
8007 }
8008 run_test 101g "Big bulk(4/16 MiB) readahead"
8009
8010 setup_test102() {
8011         test_mkdir $DIR/$tdir
8012         chown $RUNAS_ID $DIR/$tdir
8013         STRIPE_SIZE=65536
8014         STRIPE_OFFSET=1
8015         STRIPE_COUNT=$OSTCOUNT
8016         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
8017
8018         trap cleanup_test102 EXIT
8019         cd $DIR
8020         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
8021         cd $DIR/$tdir
8022         for num in 1 2 3 4; do
8023                 for count in $(seq 1 $STRIPE_COUNT); do
8024                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
8025                                 local size=`expr $STRIPE_SIZE \* $num`
8026                                 local file=file"$num-$idx-$count"
8027                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
8028                         done
8029                 done
8030         done
8031
8032         cd $DIR
8033         $1 tar cf $TMP/f102.tar $tdir --xattrs
8034 }
8035
8036 cleanup_test102() {
8037         trap 0
8038         rm -f $TMP/f102.tar
8039         rm -rf $DIR/d0.sanity/d102
8040 }
8041
8042 test_102a() {
8043         [ "$UID" != 0 ] && skip "must run as root"
8044         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
8045                 skip_env "must have user_xattr"
8046
8047         [ -z "$(which setfattr 2>/dev/null)" ] &&
8048                 skip_env "could not find setfattr"
8049
8050         local testfile=$DIR/$tfile
8051
8052         touch $testfile
8053         echo "set/get xattr..."
8054         setfattr -n trusted.name1 -v value1 $testfile ||
8055                 error "setfattr -n trusted.name1=value1 $testfile failed"
8056         getfattr -n trusted.name1 $testfile 2> /dev/null |
8057           grep "trusted.name1=.value1" ||
8058                 error "$testfile missing trusted.name1=value1"
8059
8060         setfattr -n user.author1 -v author1 $testfile ||
8061                 error "setfattr -n user.author1=author1 $testfile failed"
8062         getfattr -n user.author1 $testfile 2> /dev/null |
8063           grep "user.author1=.author1" ||
8064                 error "$testfile missing trusted.author1=author1"
8065
8066         echo "listxattr..."
8067         setfattr -n trusted.name2 -v value2 $testfile ||
8068                 error "$testfile unable to set trusted.name2"
8069         setfattr -n trusted.name3 -v value3 $testfile ||
8070                 error "$testfile unable to set trusted.name3"
8071         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
8072             grep "trusted.name" | wc -l) -eq 3 ] ||
8073                 error "$testfile missing 3 trusted.name xattrs"
8074
8075         setfattr -n user.author2 -v author2 $testfile ||
8076                 error "$testfile unable to set user.author2"
8077         setfattr -n user.author3 -v author3 $testfile ||
8078                 error "$testfile unable to set user.author3"
8079         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
8080             grep "user.author" | wc -l) -eq 3 ] ||
8081                 error "$testfile missing 3 user.author xattrs"
8082
8083         echo "remove xattr..."
8084         setfattr -x trusted.name1 $testfile ||
8085                 error "$testfile error deleting trusted.name1"
8086         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
8087                 error "$testfile did not delete trusted.name1 xattr"
8088
8089         setfattr -x user.author1 $testfile ||
8090                 error "$testfile error deleting user.author1"
8091         echo "set lustre special xattr ..."
8092         $LFS setstripe -c1 $testfile
8093         local lovea=$(getfattr -n "trusted.lov" -e hex $testfile |
8094                 awk -F "=" '/trusted.lov/ { print $2 }' )
8095         setfattr -n "trusted.lov" -v $lovea $testfile ||
8096                 error "$testfile doesn't ignore setting trusted.lov again"
8097         setfattr -n "trusted.lov" -v "invalid_value" $testfile &&
8098                 error "$testfile allow setting invalid trusted.lov"
8099         rm -f $testfile
8100 }
8101 run_test 102a "user xattr test =================================="
8102
8103 test_102b() {
8104         [ -z "$(which setfattr 2>/dev/null)" ] &&
8105                 skip_env "could not find setfattr"
8106         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8107
8108         # b10930: get/set/list trusted.lov xattr
8109         echo "get/set/list trusted.lov xattr ..."
8110         local testfile=$DIR/$tfile
8111         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
8112                 error "setstripe failed"
8113         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
8114                 error "getstripe failed"
8115         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
8116                 error "can't get trusted.lov from $testfile"
8117
8118         local testfile2=${testfile}2
8119         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
8120                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
8121
8122         $MCREATE $testfile2
8123         setfattr -n trusted.lov -v $value $testfile2
8124         local stripe_size=$($GETSTRIPE -S $testfile2)
8125         local stripe_count=$($GETSTRIPE -c $testfile2)
8126         [[ $stripe_size -eq 65536 ]] ||
8127                 error "stripe size $stripe_size != 65536"
8128         [[ $stripe_count -eq $STRIPECOUNT ]] ||
8129                 error "stripe count $stripe_count != $STRIPECOUNT"
8130         rm -f $DIR/$tfile
8131 }
8132 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
8133
8134 test_102c() {
8135         [ -z "$(which setfattr 2>/dev/null)" ] &&
8136                 skip_env "could not find setfattr"
8137         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8138
8139         # b10930: get/set/list lustre.lov xattr
8140         echo "get/set/list lustre.lov xattr ..."
8141         test_mkdir $DIR/$tdir
8142         chown $RUNAS_ID $DIR/$tdir
8143         local testfile=$DIR/$tdir/$tfile
8144         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
8145                 error "setstripe failed"
8146         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
8147                 error "getstripe failed"
8148         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
8149         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
8150
8151         local testfile2=${testfile}2
8152         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
8153                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
8154
8155         $RUNAS $MCREATE $testfile2
8156         $RUNAS setfattr -n lustre.lov -v $value $testfile2
8157         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
8158         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
8159         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
8160         [ $stripe_count -eq $STRIPECOUNT ] ||
8161                 error "stripe count $stripe_count != $STRIPECOUNT"
8162 }
8163 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
8164
8165 compare_stripe_info1() {
8166         local stripe_index_all_zero=true
8167
8168         for num in 1 2 3 4; do
8169                 for count in $(seq 1 $STRIPE_COUNT); do
8170                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
8171                                 local size=$((STRIPE_SIZE * num))
8172                                 local file=file"$num-$offset-$count"
8173                                 stripe_size=$($LFS getstripe -S $PWD/$file)
8174                                 [[ $stripe_size -ne $size ]] &&
8175                                     error "$file: size $stripe_size != $size"
8176                                 stripe_count=$($LFS getstripe -c $PWD/$file)
8177                                 # allow fewer stripes to be created, ORI-601
8178                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
8179                                     error "$file: count $stripe_count != $count"
8180                                 stripe_index=$($LFS getstripe -i $PWD/$file)
8181                                 [[ $stripe_index -ne 0 ]] &&
8182                                         stripe_index_all_zero=false
8183                         done
8184                 done
8185         done
8186         $stripe_index_all_zero &&
8187                 error "all files are being extracted starting from OST index 0"
8188         return 0
8189 }
8190
8191 have_xattrs_include() {
8192         tar --help | grep -q xattrs-include &&
8193                 echo --xattrs-include="lustre.*"
8194 }
8195
8196 test_102d() {
8197         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8198         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8199
8200         XINC=$(have_xattrs_include)
8201         setup_test102
8202         tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
8203         cd $DIR/$tdir/$tdir
8204         compare_stripe_info1
8205 }
8206 run_test 102d "tar restore stripe info from tarfile,not keep osts"
8207
8208 test_102f() {
8209         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8210         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8211
8212         XINC=$(have_xattrs_include)
8213         setup_test102
8214         test_mkdir $DIR/$tdir.restore
8215         cd $DIR
8216         tar cf - --xattrs $tdir | tar xf - \
8217                 -C $DIR/$tdir.restore --xattrs $XINC
8218         cd $DIR/$tdir.restore/$tdir
8219         compare_stripe_info1
8220 }
8221 run_test 102f "tar copy files, not keep osts"
8222
8223 grow_xattr() {
8224         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
8225                 skip "must have user_xattr"
8226         [ -z "$(which setfattr 2>/dev/null)" ] &&
8227                 skip_env "could not find setfattr"
8228         [ -z "$(which getfattr 2>/dev/null)" ] &&
8229                 skip_env "could not find getfattr"
8230
8231         local xsize=${1:-1024}  # in bytes
8232         local file=$DIR/$tfile
8233         local value="$(generate_string $xsize)"
8234         local xbig=trusted.big
8235
8236         touch $file
8237         log "save $xbig on $file"
8238         setfattr -n $xbig -v $value $file ||
8239                 error "saving $xbig on $file failed"
8240
8241         local orig=$(get_xattr_value $xbig $file)
8242         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
8243
8244         local xsml=trusted.sml
8245         log "save $xsml on $file"
8246         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
8247
8248         local new=$(get_xattr_value $xbig $file)
8249         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
8250
8251         log "grow $xsml on $file"
8252         setfattr -n $xsml -v "$value" $file ||
8253                 error "growing $xsml on $file failed"
8254
8255         new=$(get_xattr_value $xbig $file)
8256         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
8257         log "$xbig still valid after growing $xsml"
8258
8259         rm -f $file
8260 }
8261
8262 test_102h() { # bug 15777
8263         grow_xattr 1024
8264 }
8265 run_test 102h "grow xattr from inside inode to external block"
8266
8267 test_102ha() {
8268         large_xattr_enabled || skip_env "ea_inode feature disabled"
8269
8270         grow_xattr $(max_xattr_size)
8271 }
8272 run_test 102ha "grow xattr from inside inode to external inode"
8273
8274 test_102i() { # bug 17038
8275         [ -z "$(which getfattr 2>/dev/null)" ] &&
8276                 skip "could not find getfattr"
8277
8278         touch $DIR/$tfile
8279         ln -s $DIR/$tfile $DIR/${tfile}link
8280         getfattr -n trusted.lov $DIR/$tfile ||
8281                 error "lgetxattr on $DIR/$tfile failed"
8282         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
8283                 grep -i "no such attr" ||
8284                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
8285         rm -f $DIR/$tfile $DIR/${tfile}link
8286 }
8287 run_test 102i "lgetxattr test on symbolic link ============"
8288
8289 test_102j() {
8290         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8291         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8292
8293         XINC=$(have_xattrs_include)
8294         setup_test102 "$RUNAS"
8295         chown $RUNAS_ID $DIR/$tdir
8296         $RUNAS tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
8297         cd $DIR/$tdir/$tdir
8298         compare_stripe_info1 "$RUNAS"
8299 }
8300 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
8301
8302 test_102k() {
8303         [ -z "$(which setfattr 2>/dev/null)" ] &&
8304                 skip "could not find setfattr"
8305
8306         touch $DIR/$tfile
8307         # b22187 just check that does not crash for regular file.
8308         setfattr -n trusted.lov $DIR/$tfile
8309         # b22187 'setfattr -n trusted.lov' should remove LOV EA for directories
8310         local test_kdir=$DIR/$tdir
8311         test_mkdir $test_kdir
8312         local default_size=$($LFS getstripe -S $test_kdir)
8313         local default_count=$($LFS getstripe -c $test_kdir)
8314         local default_offset=$($LFS getstripe -i $test_kdir)
8315         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
8316                 error 'dir setstripe failed'
8317         setfattr -n trusted.lov $test_kdir
8318         local stripe_size=$($LFS getstripe -S $test_kdir)
8319         local stripe_count=$($LFS getstripe -c $test_kdir)
8320         local stripe_offset=$($LFS getstripe -i $test_kdir)
8321         [ $stripe_size -eq $default_size ] ||
8322                 error "stripe size $stripe_size != $default_size"
8323         [ $stripe_count -eq $default_count ] ||
8324                 error "stripe count $stripe_count != $default_count"
8325         [ $stripe_offset -eq $default_offset ] ||
8326                 error "stripe offset $stripe_offset != $default_offset"
8327         rm -rf $DIR/$tfile $test_kdir
8328 }
8329 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
8330
8331 test_102l() {
8332         [ -z "$(which getfattr 2>/dev/null)" ] &&
8333                 skip "could not find getfattr"
8334
8335         # LU-532 trusted. xattr is invisible to non-root
8336         local testfile=$DIR/$tfile
8337
8338         touch $testfile
8339
8340         echo "listxattr as user..."
8341         chown $RUNAS_ID $testfile
8342         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
8343             grep -q "trusted" &&
8344                 error "$testfile trusted xattrs are user visible"
8345
8346         return 0;
8347 }
8348 run_test 102l "listxattr size test =================================="
8349
8350 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
8351         local path=$DIR/$tfile
8352         touch $path
8353
8354         listxattr_size_check $path || error "listattr_size_check $path failed"
8355 }
8356 run_test 102m "Ensure listxattr fails on small bufffer ========"
8357
8358 cleanup_test102
8359
8360 getxattr() { # getxattr path name
8361         # Return the base64 encoding of the value of xattr name on path.
8362         local path=$1
8363         local name=$2
8364
8365         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
8366         # file: $path
8367         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
8368         #
8369         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
8370
8371         getfattr --absolute-names --encoding=base64 --name=$name $path |
8372                 awk -F= -v name=$name '$1 == name {
8373                         print substr($0, index($0, "=") + 1);
8374         }'
8375 }
8376
8377 test_102n() { # LU-4101 mdt: protect internal xattrs
8378         [ -z "$(which setfattr 2>/dev/null)" ] &&
8379                 skip "could not find setfattr"
8380         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.50) ]
8381         then
8382                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
8383         fi
8384
8385         local file0=$DIR/$tfile.0
8386         local file1=$DIR/$tfile.1
8387         local xattr0=$TMP/$tfile.0
8388         local xattr1=$TMP/$tfile.1
8389         local namelist="lov lma lmv link fid version som hsm"
8390         local name
8391         local value
8392
8393         rm -rf $file0 $file1 $xattr0 $xattr1
8394         touch $file0 $file1
8395
8396         # Get 'before' xattrs of $file1.
8397         getfattr --absolute-names --dump --match=- $file1 > $xattr0
8398
8399         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
8400                 namelist+=" lfsck_namespace"
8401         for name in $namelist; do
8402                 # Try to copy xattr from $file0 to $file1.
8403                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
8404
8405                 setfattr --name=trusted.$name --value="$value" $file1 ||
8406                         error "setxattr 'trusted.$name' failed"
8407
8408                 # Try to set a garbage xattr.
8409                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
8410
8411                 if [[ x$name == "xlov" ]]; then
8412                         setfattr --name=trusted.lov --value="$value" $file1 &&
8413                         error "setxattr invalid 'trusted.lov' success"
8414                 else
8415                         setfattr --name=trusted.$name --value="$value" $file1 ||
8416                                 error "setxattr invalid 'trusted.$name' failed"
8417                 fi
8418
8419                 # Try to remove the xattr from $file1. We don't care if this
8420                 # appears to succeed or fail, we just don't want there to be
8421                 # any changes or crashes.
8422                 setfattr --remove=$trusted.$name $file1 2> /dev/null
8423         done
8424
8425         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.6.50) ]
8426         then
8427                 name="lfsck_ns"
8428                 # Try to copy xattr from $file0 to $file1.
8429                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
8430
8431                 setfattr --name=trusted.$name --value="$value" $file1 ||
8432                         error "setxattr 'trusted.$name' failed"
8433
8434                 # Try to set a garbage xattr.
8435                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
8436
8437                 setfattr --name=trusted.$name --value="$value" $file1 ||
8438                         error "setxattr 'trusted.$name' failed"
8439
8440                 # Try to remove the xattr from $file1. We don't care if this
8441                 # appears to succeed or fail, we just don't want there to be
8442                 # any changes or crashes.
8443                 setfattr --remove=$trusted.$name $file1 2> /dev/null
8444         fi
8445
8446         # Get 'after' xattrs of file1.
8447         getfattr --absolute-names --dump --match=- $file1 > $xattr1
8448
8449         if ! diff $xattr0 $xattr1; then
8450                 error "before and after xattrs of '$file1' differ"
8451         fi
8452
8453         rm -rf $file0 $file1 $xattr0 $xattr1
8454
8455         return 0
8456 }
8457 run_test 102n "silently ignore setxattr on internal trusted xattrs"
8458
8459 test_102p() { # LU-4703 setxattr did not check ownership
8460         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.56) ] &&
8461                 skip "MDS needs to be at least 2.5.56"
8462
8463         local testfile=$DIR/$tfile
8464
8465         touch $testfile
8466
8467         echo "setfacl as user..."
8468         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
8469         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
8470
8471         echo "setfattr as user..."
8472         setfacl -m "u:$RUNAS_ID:---" $testfile
8473         $RUNAS setfattr -x system.posix_acl_access $testfile
8474         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
8475 }
8476 run_test 102p "check setxattr(2) correctly fails without permission"
8477
8478 test_102q() {
8479         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
8480                 skip "MDS needs to be at least 2.6.92"
8481
8482         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
8483 }
8484 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
8485
8486 test_102r() {
8487         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.93) ] &&
8488                 skip "MDS needs to be at least 2.6.93"
8489
8490         touch $DIR/$tfile || error "touch"
8491         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
8492         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
8493         rm $DIR/$tfile || error "rm"
8494
8495         #normal directory
8496         mkdir -p $DIR/$tdir || error "mkdir"
8497         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
8498         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
8499         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
8500                 error "$testfile error deleting user.author1"
8501         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
8502                 grep "user.$(basename $tdir)" &&
8503                 error "$tdir did not delete user.$(basename $tdir)"
8504         rmdir $DIR/$tdir || error "rmdir"
8505
8506         #striped directory
8507         test_mkdir $DIR/$tdir
8508         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
8509         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
8510         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
8511                 error "$testfile error deleting user.author1"
8512         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
8513                 grep "user.$(basename $tdir)" &&
8514                 error "$tdir did not delete user.$(basename $tdir)"
8515         rmdir $DIR/$tdir || error "rm striped dir"
8516 }
8517 run_test 102r "set EAs with empty values"
8518
8519 test_102s() {
8520         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
8521                 skip "MDS needs to be at least 2.11.52"
8522
8523         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
8524
8525         save_lustre_params client "llite.*.xattr_cache" > $save
8526
8527         for cache in 0 1; do
8528                 lctl set_param llite.*.xattr_cache=$cache
8529
8530                 rm -f $DIR/$tfile
8531                 touch $DIR/$tfile || error "touch"
8532                 for prefix in lustre security system trusted user; do
8533                         # Note getxattr() may fail with 'Operation not
8534                         # supported' or 'No such attribute' depending
8535                         # on prefix and cache.
8536                         getfattr -n $prefix.n102s $DIR/$tfile &&
8537                                 error "getxattr '$prefix.n102s' should fail (cache = $cache)"
8538                 done
8539         done
8540
8541         restore_lustre_params < $save
8542 }
8543 run_test 102s "getting nonexistent xattrs should fail"
8544
8545 test_102t() {
8546         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
8547                 skip "MDS needs to be at least 2.11.52"
8548
8549         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
8550
8551         save_lustre_params client "llite.*.xattr_cache" > $save
8552
8553         for cache in 0 1; do
8554                 lctl set_param llite.*.xattr_cache=$cache
8555
8556                 for buf_size in 0 256; do
8557                         rm -f $DIR/$tfile
8558                         touch $DIR/$tfile || error "touch"
8559                         setfattr -n user.multiop $DIR/$tfile
8560                         $MULTIOP $DIR/$tfile oa$buf_size ||
8561                                 error "cannot get zero length xattr value (buf_size = $buf_size)"
8562                 done
8563         done
8564
8565         restore_lustre_params < $save
8566 }
8567 run_test 102t "zero length xattr values handled correctly"
8568
8569 run_acl_subtest()
8570 {
8571     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
8572     return $?
8573 }
8574
8575 test_103a() {
8576         [ "$UID" != 0 ] && skip "must run as root"
8577         $GSS && skip_env "could not run under gss"
8578         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
8579                 skip_env "must have acl enabled"
8580         [ -z "$(which setfacl 2>/dev/null)" ] &&
8581                 skip_env "could not find setfacl"
8582         remote_mds_nodsh && skip "remote MDS with nodsh"
8583
8584         gpasswd -a daemon bin                           # LU-5641
8585         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
8586
8587         declare -a identity_old
8588
8589         for num in $(seq $MDSCOUNT); do
8590                 switch_identity $num true || identity_old[$num]=$?
8591         done
8592
8593         SAVE_UMASK=$(umask)
8594         umask 0022
8595         mkdir -p $DIR/$tdir
8596         cd $DIR/$tdir
8597
8598         echo "performing cp ..."
8599         run_acl_subtest cp || error "run_acl_subtest cp failed"
8600         echo "performing getfacl-noacl..."
8601         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
8602         echo "performing misc..."
8603         run_acl_subtest misc || error  "misc test failed"
8604         echo "performing permissions..."
8605         run_acl_subtest permissions || error "permissions failed"
8606         # LU-1482 mdd: Setting xattr are properly checked with and without ACLs
8607         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.8.55) -o \
8608              \( $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6) -a \
8609              $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.29) \) ]
8610         then
8611                 echo "performing permissions xattr..."
8612                 run_acl_subtest permissions_xattr ||
8613                         error "permissions_xattr failed"
8614         fi
8615         echo "performing setfacl..."
8616         run_acl_subtest setfacl || error  "setfacl test failed"
8617
8618         # inheritance test got from HP
8619         echo "performing inheritance..."
8620         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
8621         chmod +x make-tree || error "chmod +x failed"
8622         run_acl_subtest inheritance || error "inheritance test failed"
8623         rm -f make-tree
8624
8625         echo "LU-974 ignore umask when acl is enabled..."
8626         run_acl_subtest 974 || error "LU-974 umask test failed"
8627         if [ $MDSCOUNT -ge 2 ]; then
8628                 run_acl_subtest 974_remote ||
8629                         error "LU-974 umask test failed under remote dir"
8630         fi
8631
8632         echo "LU-2561 newly created file is same size as directory..."
8633         if [ $(facet_fstype $SINGLEMDS) != "zfs" ]; then
8634                 run_acl_subtest 2561 || error "LU-2561 test failed"
8635         else
8636                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
8637         fi
8638
8639         run_acl_subtest 4924 || error "LU-4924 test failed"
8640
8641         cd $SAVE_PWD
8642         umask $SAVE_UMASK
8643
8644         for num in $(seq $MDSCOUNT); do
8645                 if [ "${identity_old[$num]}" = 1 ]; then
8646                         switch_identity $num false || identity_old[$num]=$?
8647                 fi
8648         done
8649 }
8650 run_test 103a "acl test"
8651
8652 test_103b() {
8653         declare -a pids
8654         local U
8655
8656         for U in {0..511}; do
8657                 {
8658                 local O=$(printf "%04o" $U)
8659
8660                 umask $(printf "%04o" $((511 ^ $O)))
8661                 $LFS setstripe -c 1 $DIR/$tfile.s$O
8662                 local S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.s$O))
8663
8664                 (( $S == ($O & 0666) )) ||
8665                         error "lfs setstripe $DIR/$tfile.s$O '$S' != '$O'"
8666
8667                 $LFS setstripe -E16M -c 1 -E1G -S4M $DIR/$tfile.p$O
8668                 S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.p$O))
8669                 (( $S == ($O & 0666) )) ||
8670                         error "lfs setstripe -E $DIR/$tfile.p$O '$S' != '$O'"
8671
8672                 $LFS setstripe -N2 -c 1 $DIR/$tfile.m$O
8673                 S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.m$O))
8674                 (( $S == ($O & 0666) )) ||
8675                         error "lfs setstripe -N2 $DIR/$tfile.m$O '$S' != '$O'"
8676                 rm -f $DIR/$tfile.[smp]$0
8677                 } &
8678                 local pid=$!
8679
8680                 # limit the concurrently running threads to 64. LU-11878
8681                 local idx=$((U % 64))
8682                 [ -z "${pids[idx]}" ] || wait ${pids[idx]}
8683                 pids[idx]=$pid
8684         done
8685         wait
8686 }
8687 run_test 103b "umask lfs setstripe"
8688
8689 test_103c() {
8690         mkdir -p $DIR/$tdir
8691         cp -rp $DIR/$tdir $DIR/$tdir.bak
8692
8693         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
8694                 error "$DIR/$tdir shouldn't contain default ACL"
8695         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
8696                 error "$DIR/$tdir.bak shouldn't contain default ACL"
8697         true
8698 }
8699 run_test 103c "'cp -rp' won't set empty acl"
8700
8701 test_104a() {
8702         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8703
8704         touch $DIR/$tfile
8705         lfs df || error "lfs df failed"
8706         lfs df -ih || error "lfs df -ih failed"
8707         lfs df -h $DIR || error "lfs df -h $DIR failed"
8708         lfs df -i $DIR || error "lfs df -i $DIR failed"
8709         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
8710         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
8711
8712         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
8713         lctl --device %$OSC deactivate
8714         lfs df || error "lfs df with deactivated OSC failed"
8715         lctl --device %$OSC activate
8716         # wait the osc back to normal
8717         wait_osc_import_state client ost FULL
8718
8719         lfs df || error "lfs df with reactivated OSC failed"
8720         rm -f $DIR/$tfile
8721 }
8722 run_test 104a "lfs df [-ih] [path] test ========================="
8723
8724 test_104b() {
8725         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8726         [ $RUNAS_ID -eq $UID ] &&
8727                 skip_env "RUNAS_ID = UID = $UID -- skipping"
8728
8729         chmod 666 /dev/obd
8730         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
8731                         grep "Permission denied" | wc -l)))
8732         if [ $denied_cnt -ne 0 ]; then
8733                 error "lfs check servers test failed"
8734         fi
8735 }
8736 run_test 104b "$RUNAS lfs check servers test ===================="
8737
8738 test_105a() {
8739         # doesn't work on 2.4 kernels
8740         touch $DIR/$tfile
8741         if $(flock_is_enabled); then
8742                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
8743         else
8744                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
8745         fi
8746         rm -f $DIR/$tfile
8747 }
8748 run_test 105a "flock when mounted without -o flock test ========"
8749
8750 test_105b() {
8751         touch $DIR/$tfile
8752         if $(flock_is_enabled); then
8753                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
8754         else
8755                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
8756         fi
8757         rm -f $DIR/$tfile
8758 }
8759 run_test 105b "fcntl when mounted without -o flock test ========"
8760
8761 test_105c() {
8762         touch $DIR/$tfile
8763         if $(flock_is_enabled); then
8764                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
8765         else
8766                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
8767         fi
8768         rm -f $DIR/$tfile
8769 }
8770 run_test 105c "lockf when mounted without -o flock test"
8771
8772 test_105d() { # bug 15924
8773         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8774
8775         test_mkdir $DIR/$tdir
8776         flock_is_enabled || skip_env "mount w/o flock enabled"
8777         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
8778         $LCTL set_param fail_loc=0x80000315
8779         flocks_test 2 $DIR/$tdir
8780 }
8781 run_test 105d "flock race (should not freeze) ========"
8782
8783 test_105e() { # bug 22660 && 22040
8784         flock_is_enabled || skip_env "mount w/o flock enabled"
8785
8786         touch $DIR/$tfile
8787         flocks_test 3 $DIR/$tfile
8788 }
8789 run_test 105e "Two conflicting flocks from same process"
8790
8791 test_106() { #bug 10921
8792         test_mkdir $DIR/$tdir
8793         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
8794         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
8795 }
8796 run_test 106 "attempt exec of dir followed by chown of that dir"
8797
8798 test_107() {
8799         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8800
8801         CDIR=`pwd`
8802         local file=core
8803
8804         cd $DIR
8805         rm -f $file
8806
8807         local save_pattern=$(sysctl -n kernel.core_pattern)
8808         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
8809         sysctl -w kernel.core_pattern=$file
8810         sysctl -w kernel.core_uses_pid=0
8811
8812         ulimit -c unlimited
8813         sleep 60 &
8814         SLEEPPID=$!
8815
8816         sleep 1
8817
8818         kill -s 11 $SLEEPPID
8819         wait $SLEEPPID
8820         if [ -e $file ]; then
8821                 size=`stat -c%s $file`
8822                 [ $size -eq 0 ] && error "Fail to create core file $file"
8823         else
8824                 error "Fail to create core file $file"
8825         fi
8826         rm -f $file
8827         sysctl -w kernel.core_pattern=$save_pattern
8828         sysctl -w kernel.core_uses_pid=$save_uses_pid
8829         cd $CDIR
8830 }
8831 run_test 107 "Coredump on SIG"
8832
8833 test_110() {
8834         test_mkdir $DIR/$tdir
8835         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255)
8836         $LFS mkdir -c $MDSCOUNT $DIR/$tdir/$(str_repeat 'b' 256) &&
8837                 error "mkdir with 256 char should fail, but did not"
8838         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
8839                 error "create with 255 char failed"
8840         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
8841                 error "create with 256 char should fail, but did not"
8842
8843         ls -l $DIR/$tdir
8844         rm -rf $DIR/$tdir
8845 }
8846 run_test 110 "filename length checking"
8847
8848 #
8849 # Purpose: To verify dynamic thread (OSS) creation.
8850 #
8851 test_115() {
8852         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8853         remote_ost_nodsh && skip "remote OST with nodsh"
8854
8855         # Lustre does not stop service threads once they are started.
8856         # Reset number of running threads to default.
8857         stopall
8858         setupall
8859
8860         local OSTIO_pre
8861         local save_params="$TMP/sanity-$TESTNAME.parameters"
8862
8863         # Get ll_ost_io count before I/O
8864         OSTIO_pre=$(do_facet ost1 \
8865                 "$LCTL get_param ost.OSS.ost_io.threads_started | cut -d= -f2")
8866         # Exit if lustre is not running (ll_ost_io not running).
8867         [ -z "$OSTIO_pre" ] && error "no OSS threads"
8868
8869         echo "Starting with $OSTIO_pre threads"
8870         local thread_max=$((OSTIO_pre * 2))
8871         local rpc_in_flight=$((thread_max * 2))
8872         # Number of I/O Process proposed to be started.
8873         local nfiles
8874         local facets=$(get_facets OST)
8875
8876         save_lustre_params client "osc.*OST*.max_rpcs_in_flight" > $save_params
8877         save_lustre_params $facets "ost.OSS.ost_io.threads_max" >> $save_params
8878
8879         # Set in_flight to $rpc_in_flight
8880         $LCTL set_param osc.*OST*.max_rpcs_in_flight=$rpc_in_flight ||
8881                 error "Failed to set max_rpcs_in_flight to $rpc_in_flight"
8882         nfiles=${rpc_in_flight}
8883         # Set ost thread_max to $thread_max
8884         do_facet ost1 "$LCTL set_param ost.OSS.ost_io.threads_max=$thread_max"
8885
8886         # 5 Minutes should be sufficient for max number of OSS
8887         # threads(thread_max) to be created.
8888         local timeout=300
8889
8890         # Start I/O.
8891         local WTL=${WTL:-"$LUSTRE/tests/write_time_limit"}
8892         test_mkdir $DIR/$tdir
8893         for i in $(seq $nfiles); do
8894                 local file=$DIR/$tdir/${tfile}-$i
8895                 $LFS setstripe -c -1 -i 0 $file
8896                 ($WTL $file $timeout)&
8897         done
8898
8899         # I/O Started - Wait for thread_started to reach thread_max or report
8900         # error if thread_started is more than thread_max.
8901         echo "Waiting for thread_started to reach thread_max"
8902         local thread_started=0
8903         local end_time=$((SECONDS + timeout))
8904
8905         while [ $SECONDS -le $end_time ] ; do
8906                 echo -n "."
8907                 # Get ost i/o thread_started count.
8908                 thread_started=$(do_facet ost1 \
8909                         "$LCTL get_param \
8910                         ost.OSS.ost_io.threads_started | cut -d= -f2")
8911                 # Break out if thread_started is equal/greater than thread_max
8912                 if [[ $thread_started -ge $thread_max ]]; then
8913                         echo ll_ost_io thread_started $thread_started, \
8914                                 equal/greater than thread_max $thread_max
8915                         break
8916                 fi
8917                 sleep 1
8918         done
8919
8920         # Cleanup - We have the numbers, Kill i/o jobs if running.
8921         jobcount=($(jobs -p))
8922         for i in $(seq 0 $((${#jobcount[@]}-1)))
8923         do
8924                 kill -9 ${jobcount[$i]}
8925                 if [ $? -ne 0 ] ; then
8926                         echo Warning: \
8927                         Failed to Kill \'WTL\(I/O\)\' with pid ${jobcount[$i]}
8928                 fi
8929         done
8930
8931         # Cleanup files left by WTL binary.
8932         for i in $(seq $nfiles); do
8933                 local file=$DIR/$tdir/${tfile}-$i
8934                 rm -rf $file
8935                 if [ $? -ne 0 ] ; then
8936                         echo "Warning: Failed to delete file $file"
8937                 fi
8938         done
8939
8940         restore_lustre_params <$save_params
8941         rm -f $save_params || echo "Warning: delete file '$save_params' failed"
8942
8943         # Error out if no new thread has started or Thread started is greater
8944         # than thread max.
8945         if [[ $thread_started -le $OSTIO_pre ||
8946                         $thread_started -gt $thread_max ]]; then
8947                 error "ll_ost_io: thread_started $thread_started" \
8948                       "OSTIO_pre $OSTIO_pre, thread_max $thread_max." \
8949                       "No new thread started or thread started greater " \
8950                       "than thread_max."
8951         fi
8952 }
8953 run_test 115 "verify dynamic thread creation===================="
8954
8955 free_min_max () {
8956         wait_delete_completed
8957         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
8958         echo "OST kbytes available: ${AVAIL[@]}"
8959         MAXV=${AVAIL[0]}
8960         MAXI=0
8961         MINV=${AVAIL[0]}
8962         MINI=0
8963         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
8964                 #echo OST $i: ${AVAIL[i]}kb
8965                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
8966                         MAXV=${AVAIL[i]}
8967                         MAXI=$i
8968                 fi
8969                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
8970                         MINV=${AVAIL[i]}
8971                         MINI=$i
8972                 fi
8973         done
8974         echo "Min free space: OST $MINI: $MINV"
8975         echo "Max free space: OST $MAXI: $MAXV"
8976 }
8977
8978 test_116a() { # was previously test_116()
8979         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8980         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8981         remote_mds_nodsh && skip "remote MDS with nodsh"
8982
8983         echo -n "Free space priority "
8984         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
8985                 head -n1
8986         declare -a AVAIL
8987         free_min_max
8988
8989         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip"
8990         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip"
8991         trap simple_cleanup_common EXIT
8992
8993         # Check if we need to generate uneven OSTs
8994         test_mkdir -p $DIR/$tdir/OST${MINI}
8995         local FILL=$((MINV / 4))
8996         local DIFF=$((MAXV - MINV))
8997         local DIFF2=$((DIFF * 100 / MINV))
8998
8999         local threshold=$(do_facet $SINGLEMDS \
9000                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
9001         threshold=${threshold%%%}
9002         echo -n "Check for uneven OSTs: "
9003         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
9004
9005         if [[ $DIFF2 -gt $threshold ]]; then
9006                 echo "ok"
9007                 echo "Don't need to fill OST$MINI"
9008         else
9009                 # generate uneven OSTs. Write 2% over the QOS threshold value
9010                 echo "no"
9011                 DIFF=$((threshold - DIFF2 + 2))
9012                 DIFF2=$((MINV * DIFF / 100))
9013                 echo "Fill $DIFF% remaining space in OST$MINI with ${DIFF2}KB"
9014                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
9015                         error "setstripe failed"
9016                 DIFF=$((DIFF2 / 2048))
9017                 i=0
9018                 while [ $i -lt $DIFF ]; do
9019                         i=$((i + 1))
9020                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
9021                                 bs=2M count=1 2>/dev/null
9022                         echo -n .
9023                 done
9024                 echo .
9025                 sync
9026                 sleep_maxage
9027                 free_min_max
9028         fi
9029
9030         DIFF=$((MAXV - MINV))
9031         DIFF2=$((DIFF * 100 / MINV))
9032         echo -n "diff=$DIFF=$DIFF2% must be > $threshold% for QOS mode..."
9033         if [ $DIFF2 -gt $threshold ]; then
9034                 echo "ok"
9035         else
9036                 echo "failed - QOS mode won't be used"
9037                 simple_cleanup_common
9038                 skip "QOS imbalance criteria not met"
9039         fi
9040
9041         MINI1=$MINI
9042         MINV1=$MINV
9043         MAXI1=$MAXI
9044         MAXV1=$MAXV
9045
9046         # now fill using QOS
9047         $SETSTRIPE -c 1 $DIR/$tdir
9048         FILL=$((FILL / 200))
9049         if [ $FILL -gt 600 ]; then
9050                 FILL=600
9051         fi
9052         echo "writing $FILL files to QOS-assigned OSTs"
9053         i=0
9054         while [ $i -lt $FILL ]; do
9055                 i=$((i + 1))
9056                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
9057                         count=1 2>/dev/null
9058                 echo -n .
9059         done
9060         echo "wrote $i 200k files"
9061         sync
9062         sleep_maxage
9063
9064         echo "Note: free space may not be updated, so measurements might be off"
9065         free_min_max
9066         DIFF2=$((MAXV - MINV))
9067         echo "free space delta: orig $DIFF final $DIFF2"
9068         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
9069         DIFF=$((MINV1 - ${AVAIL[$MINI1]}))
9070         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
9071         DIFF2=$((MAXV1 - ${AVAIL[$MAXI1]}))
9072         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
9073         if [[ $DIFF -gt 0 ]]; then
9074                 FILL=$((DIFF2 * 100 / DIFF - 100))
9075                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
9076         fi
9077
9078         # Figure out which files were written where
9079         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
9080                awk '/'$MINI1': / {print $2; exit}')
9081         echo $UUID
9082         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
9083         echo "$MINC files created on smaller OST $MINI1"
9084         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
9085                awk '/'$MAXI1': / {print $2; exit}')
9086         echo $UUID
9087         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
9088         echo "$MAXC files created on larger OST $MAXI1"
9089         if [[ $MINC -gt 0 ]]; then
9090                 FILL=$((MAXC * 100 / MINC - 100))
9091                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
9092         fi
9093         [[ $MAXC -gt $MINC ]] ||
9094                 error_ignore LU-9 "stripe QOS didn't balance free space"
9095         simple_cleanup_common
9096 }
9097 run_test 116a "stripe QOS: free space balance ==================="
9098
9099 test_116b() { # LU-2093
9100         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9101         remote_mds_nodsh && skip "remote MDS with nodsh"
9102
9103 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
9104         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
9105                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
9106         [ -z "$old_rr" ] && skip "no QOS"
9107         do_facet $SINGLEMDS lctl set_param \
9108                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
9109         mkdir -p $DIR/$tdir
9110         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
9111         createmany -o $DIR/$tdir/f- 20 || error "can't create"
9112         do_facet $SINGLEMDS lctl set_param fail_loc=0
9113         rm -rf $DIR/$tdir
9114         do_facet $SINGLEMDS lctl set_param \
9115                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
9116 }
9117 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
9118
9119 test_117() # bug 10891
9120 {
9121         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9122
9123         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
9124         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
9125         lctl set_param fail_loc=0x21e
9126         > $DIR/$tfile || error "truncate failed"
9127         lctl set_param fail_loc=0
9128         echo "Truncate succeeded."
9129         rm -f $DIR/$tfile
9130 }
9131 run_test 117 "verify osd extend =========="
9132
9133 NO_SLOW_RESENDCOUNT=4
9134 export OLD_RESENDCOUNT=""
9135 set_resend_count () {
9136         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
9137         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
9138         lctl set_param -n $PROC_RESENDCOUNT $1
9139         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
9140 }
9141
9142 # for reduce test_118* time (b=14842)
9143 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
9144
9145 # Reset async IO behavior after error case
9146 reset_async() {
9147         FILE=$DIR/reset_async
9148
9149         # Ensure all OSCs are cleared
9150         $SETSTRIPE -c -1 $FILE
9151         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
9152         sync
9153         rm $FILE
9154 }
9155
9156 test_118a() #bug 11710
9157 {
9158         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9159
9160         reset_async
9161
9162         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9163         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9164         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9165
9166         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9167                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9168                 return 1;
9169         fi
9170         rm -f $DIR/$tfile
9171 }
9172 run_test 118a "verify O_SYNC works =========="
9173
9174 test_118b()
9175 {
9176         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9177         remote_ost_nodsh && skip "remote OST with nodsh"
9178
9179         reset_async
9180
9181         #define OBD_FAIL_SRV_ENOENT 0x217
9182         set_nodes_failloc "$(osts_nodes)" 0x217
9183         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9184         RC=$?
9185         set_nodes_failloc "$(osts_nodes)" 0
9186         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9187         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9188                     grep -c writeback)
9189
9190         if [[ $RC -eq 0 ]]; then
9191                 error "Must return error due to dropped pages, rc=$RC"
9192                 return 1;
9193         fi
9194
9195         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9196                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9197                 return 1;
9198         fi
9199
9200         echo "Dirty pages not leaked on ENOENT"
9201
9202         # Due to the above error the OSC will issue all RPCs syncronously
9203         # until a subsequent RPC completes successfully without error.
9204         $MULTIOP $DIR/$tfile Ow4096yc
9205         rm -f $DIR/$tfile
9206
9207         return 0
9208 }
9209 run_test 118b "Reclaim dirty pages on fatal error =========="
9210
9211 test_118c()
9212 {
9213         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9214
9215         # for 118c, restore the original resend count, LU-1940
9216         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
9217                                 set_resend_count $OLD_RESENDCOUNT
9218         remote_ost_nodsh && skip "remote OST with nodsh"
9219
9220         reset_async
9221
9222         #define OBD_FAIL_OST_EROFS               0x216
9223         set_nodes_failloc "$(osts_nodes)" 0x216
9224
9225         # multiop should block due to fsync until pages are written
9226         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9227         MULTIPID=$!
9228         sleep 1
9229
9230         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
9231                 error "Multiop failed to block on fsync, pid=$MULTIPID"
9232         fi
9233
9234         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9235                     grep -c writeback)
9236         if [[ $WRITEBACK -eq 0 ]]; then
9237                 error "No page in writeback, writeback=$WRITEBACK"
9238         fi
9239
9240         set_nodes_failloc "$(osts_nodes)" 0
9241         wait $MULTIPID
9242         RC=$?
9243         if [[ $RC -ne 0 ]]; then
9244                 error "Multiop fsync failed, rc=$RC"
9245         fi
9246
9247         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9248         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9249                     grep -c writeback)
9250         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9251                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9252         fi
9253
9254         rm -f $DIR/$tfile
9255         echo "Dirty pages flushed via fsync on EROFS"
9256         return 0
9257 }
9258 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
9259
9260 # continue to use small resend count to reduce test_118* time (b=14842)
9261 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
9262
9263 test_118d()
9264 {
9265         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9266         remote_ost_nodsh && skip "remote OST with nodsh"
9267
9268         reset_async
9269
9270         #define OBD_FAIL_OST_BRW_PAUSE_BULK
9271         set_nodes_failloc "$(osts_nodes)" 0x214
9272         # multiop should block due to fsync until pages are written
9273         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9274         MULTIPID=$!
9275         sleep 1
9276
9277         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
9278                 error "Multiop failed to block on fsync, pid=$MULTIPID"
9279         fi
9280
9281         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9282                     grep -c writeback)
9283         if [[ $WRITEBACK -eq 0 ]]; then
9284                 error "No page in writeback, writeback=$WRITEBACK"
9285         fi
9286
9287         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
9288         set_nodes_failloc "$(osts_nodes)" 0
9289
9290         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9291         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9292                     grep -c writeback)
9293         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9294                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9295         fi
9296
9297         rm -f $DIR/$tfile
9298         echo "Dirty pages gaurenteed flushed via fsync"
9299         return 0
9300 }
9301 run_test 118d "Fsync validation inject a delay of the bulk =========="
9302
9303 test_118f() {
9304         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9305
9306         reset_async
9307
9308         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
9309         lctl set_param fail_loc=0x8000040a
9310
9311         # Should simulate EINVAL error which is fatal
9312         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9313         RC=$?
9314         if [[ $RC -eq 0 ]]; then
9315                 error "Must return error due to dropped pages, rc=$RC"
9316         fi
9317
9318         lctl set_param fail_loc=0x0
9319
9320         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9321         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9322         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9323                     grep -c writeback)
9324         if [[ $LOCKED -ne 0 ]]; then
9325                 error "Locked pages remain in cache, locked=$LOCKED"
9326         fi
9327
9328         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9329                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9330         fi
9331
9332         rm -f $DIR/$tfile
9333         echo "No pages locked after fsync"
9334
9335         reset_async
9336         return 0
9337 }
9338 run_test 118f "Simulate unrecoverable OSC side error =========="
9339
9340 test_118g() {
9341         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9342
9343         reset_async
9344
9345         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
9346         lctl set_param fail_loc=0x406
9347
9348         # simulate local -ENOMEM
9349         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9350         RC=$?
9351
9352         lctl set_param fail_loc=0
9353         if [[ $RC -eq 0 ]]; then
9354                 error "Must return error due to dropped pages, rc=$RC"
9355         fi
9356
9357         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9358         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9359         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9360                         grep -c writeback)
9361         if [[ $LOCKED -ne 0 ]]; then
9362                 error "Locked pages remain in cache, locked=$LOCKED"
9363         fi
9364
9365         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9366                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9367         fi
9368
9369         rm -f $DIR/$tfile
9370         echo "No pages locked after fsync"
9371
9372         reset_async
9373         return 0
9374 }
9375 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
9376
9377 test_118h() {
9378         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9379         remote_ost_nodsh && skip "remote OST with nodsh"
9380
9381         reset_async
9382
9383         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9384         set_nodes_failloc "$(osts_nodes)" 0x20e
9385         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
9386         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9387         RC=$?
9388
9389         set_nodes_failloc "$(osts_nodes)" 0
9390         if [[ $RC -eq 0 ]]; then
9391                 error "Must return error due to dropped pages, rc=$RC"
9392         fi
9393
9394         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9395         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9396         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9397                     grep -c writeback)
9398         if [[ $LOCKED -ne 0 ]]; then
9399                 error "Locked pages remain in cache, locked=$LOCKED"
9400         fi
9401
9402         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9403                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9404         fi
9405
9406         rm -f $DIR/$tfile
9407         echo "No pages locked after fsync"
9408
9409         return 0
9410 }
9411 run_test 118h "Verify timeout in handling recoverables errors  =========="
9412
9413 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
9414
9415 test_118i() {
9416         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9417         remote_ost_nodsh && skip "remote OST with nodsh"
9418
9419         reset_async
9420
9421         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9422         set_nodes_failloc "$(osts_nodes)" 0x20e
9423
9424         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
9425         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9426         PID=$!
9427         sleep 5
9428         set_nodes_failloc "$(osts_nodes)" 0
9429
9430         wait $PID
9431         RC=$?
9432         if [[ $RC -ne 0 ]]; then
9433                 error "got error, but should be not, rc=$RC"
9434         fi
9435
9436         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9437         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9438         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9439         if [[ $LOCKED -ne 0 ]]; then
9440                 error "Locked pages remain in cache, locked=$LOCKED"
9441         fi
9442
9443         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9444                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9445         fi
9446
9447         rm -f $DIR/$tfile
9448         echo "No pages locked after fsync"
9449
9450         return 0
9451 }
9452 run_test 118i "Fix error before timeout in recoverable error  =========="
9453
9454 [ "$SLOW" = "no" ] && set_resend_count 4
9455
9456 test_118j() {
9457         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9458         remote_ost_nodsh && skip "remote OST with nodsh"
9459
9460         reset_async
9461
9462         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
9463         set_nodes_failloc "$(osts_nodes)" 0x220
9464
9465         # return -EIO from OST
9466         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9467         RC=$?
9468         set_nodes_failloc "$(osts_nodes)" 0x0
9469         if [[ $RC -eq 0 ]]; then
9470                 error "Must return error due to dropped pages, rc=$RC"
9471         fi
9472
9473         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9474         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9475         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9476         if [[ $LOCKED -ne 0 ]]; then
9477                 error "Locked pages remain in cache, locked=$LOCKED"
9478         fi
9479
9480         # in recoverable error on OST we want resend and stay until it finished
9481         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9482                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9483         fi
9484
9485         rm -f $DIR/$tfile
9486         echo "No pages locked after fsync"
9487
9488         return 0
9489 }
9490 run_test 118j "Simulate unrecoverable OST side error =========="
9491
9492 test_118k()
9493 {
9494         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9495         remote_ost_nodsh && skip "remote OSTs with nodsh"
9496
9497         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9498         set_nodes_failloc "$(osts_nodes)" 0x20e
9499         test_mkdir $DIR/$tdir
9500
9501         for ((i=0;i<10;i++)); do
9502                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
9503                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
9504                 SLEEPPID=$!
9505                 sleep 0.500s
9506                 kill $SLEEPPID
9507                 wait $SLEEPPID
9508         done
9509
9510         set_nodes_failloc "$(osts_nodes)" 0
9511         rm -rf $DIR/$tdir
9512 }
9513 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
9514
9515 test_118l() # LU-646
9516 {
9517         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9518
9519         test_mkdir $DIR/$tdir
9520         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
9521         rm -rf $DIR/$tdir
9522 }
9523 run_test 118l "fsync dir"
9524
9525 test_118m() # LU-3066
9526 {
9527         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9528
9529         test_mkdir $DIR/$tdir
9530         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
9531         rm -rf $DIR/$tdir
9532 }
9533 run_test 118m "fdatasync dir ========="
9534
9535 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
9536
9537 test_118n()
9538 {
9539         local begin
9540         local end
9541
9542         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9543         remote_ost_nodsh && skip "remote OSTs with nodsh"
9544
9545         # Sleep to avoid a cached response.
9546         #define OBD_STATFS_CACHE_SECONDS 1
9547         sleep 2
9548
9549         # Inject a 10 second delay in the OST_STATFS handler.
9550         #define OBD_FAIL_OST_STATFS_DELAY 0x242
9551         set_nodes_failloc "$(osts_nodes)" 0x242
9552
9553         begin=$SECONDS
9554         stat --file-system $MOUNT > /dev/null
9555         end=$SECONDS
9556
9557         set_nodes_failloc "$(osts_nodes)" 0
9558
9559         if ((end - begin > 20)); then
9560             error "statfs took $((end - begin)) seconds, expected 10"
9561         fi
9562 }
9563 run_test 118n "statfs() sends OST_STATFS requests in parallel"
9564
9565 test_119a() # bug 11737
9566 {
9567         BSIZE=$((512 * 1024))
9568         directio write $DIR/$tfile 0 1 $BSIZE
9569         # We ask to read two blocks, which is more than a file size.
9570         # directio will indicate an error when requested and actual
9571         # sizes aren't equeal (a normal situation in this case) and
9572         # print actual read amount.
9573         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
9574         if [ "$NOB" != "$BSIZE" ]; then
9575                 error "read $NOB bytes instead of $BSIZE"
9576         fi
9577         rm -f $DIR/$tfile
9578 }
9579 run_test 119a "Short directIO read must return actual read amount"
9580
9581 test_119b() # bug 11737
9582 {
9583         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
9584
9585         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
9586         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
9587         sync
9588         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) ||
9589                 error "direct read failed"
9590         rm -f $DIR/$tfile
9591 }
9592 run_test 119b "Sparse directIO read must return actual read amount"
9593
9594 test_119c() # bug 13099
9595 {
9596         BSIZE=1048576
9597         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
9598         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
9599         rm -f $DIR/$tfile
9600 }
9601 run_test 119c "Testing for direct read hitting hole"
9602
9603 test_119d() # bug 15950
9604 {
9605         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9606
9607         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
9608         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
9609         BSIZE=1048576
9610         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
9611         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
9612         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
9613         lctl set_param fail_loc=0x40d
9614         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
9615         pid_dio=$!
9616         sleep 1
9617         cat $DIR/$tfile > /dev/null &
9618         lctl set_param fail_loc=0
9619         pid_reads=$!
9620         wait $pid_dio
9621         log "the DIO writes have completed, now wait for the reads (should not block very long)"
9622         sleep 2
9623         [ -n "`ps h -p $pid_reads -o comm`" ] && \
9624         error "the read rpcs have not completed in 2s"
9625         rm -f $DIR/$tfile
9626         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
9627 }
9628 run_test 119d "The DIO path should try to send a new rpc once one is completed"
9629
9630 test_120a() {
9631         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9632         remote_mds_nodsh && skip "remote MDS with nodsh"
9633         test_mkdir $DIR/$tdir
9634         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9635                 skip_env "no early lock cancel on server"
9636
9637         lru_resize_disable mdc
9638         lru_resize_disable osc
9639         cancel_lru_locks mdc
9640         # asynchronous object destroy at MDT could cause bl ast to client
9641         cancel_lru_locks osc
9642
9643         stat $DIR/$tdir > /dev/null
9644         can1=$(do_facet $SINGLEMDS \
9645                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9646                awk '/ldlm_cancel/ {print $2}')
9647         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9648                awk '/ldlm_bl_callback/ {print $2}')
9649         test_mkdir -c1 $DIR/$tdir/d1
9650         can2=$(do_facet $SINGLEMDS \
9651                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9652                awk '/ldlm_cancel/ {print $2}')
9653         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9654                awk '/ldlm_bl_callback/ {print $2}')
9655         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9656         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9657         lru_resize_enable mdc
9658         lru_resize_enable osc
9659 }
9660 run_test 120a "Early Lock Cancel: mkdir test"
9661
9662 test_120b() {
9663         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9664         remote_mds_nodsh && skip "remote MDS with nodsh"
9665         test_mkdir $DIR/$tdir
9666         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9667                 skip_env "no early lock cancel on server"
9668
9669         lru_resize_disable mdc
9670         lru_resize_disable osc
9671         cancel_lru_locks mdc
9672         stat $DIR/$tdir > /dev/null
9673         can1=$(do_facet $SINGLEMDS \
9674                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9675                awk '/ldlm_cancel/ {print $2}')
9676         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9677                awk '/ldlm_bl_callback/ {print $2}')
9678         touch $DIR/$tdir/f1
9679         can2=$(do_facet $SINGLEMDS \
9680                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9681                awk '/ldlm_cancel/ {print $2}')
9682         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9683                awk '/ldlm_bl_callback/ {print $2}')
9684         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9685         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9686         lru_resize_enable mdc
9687         lru_resize_enable osc
9688 }
9689 run_test 120b "Early Lock Cancel: create test"
9690
9691 test_120c() {
9692         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9693         remote_mds_nodsh && skip "remote MDS with nodsh"
9694         test_mkdir -c1 $DIR/$tdir
9695         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9696                 skip "no early lock cancel on server"
9697
9698         lru_resize_disable mdc
9699         lru_resize_disable osc
9700         test_mkdir -c1 $DIR/$tdir/d1
9701         test_mkdir -c1 $DIR/$tdir/d2
9702         touch $DIR/$tdir/d1/f1
9703         cancel_lru_locks mdc
9704         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
9705         can1=$(do_facet $SINGLEMDS \
9706                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9707                awk '/ldlm_cancel/ {print $2}')
9708         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9709                awk '/ldlm_bl_callback/ {print $2}')
9710         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
9711         can2=$(do_facet $SINGLEMDS \
9712                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9713                awk '/ldlm_cancel/ {print $2}')
9714         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9715                awk '/ldlm_bl_callback/ {print $2}')
9716         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9717         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9718         lru_resize_enable mdc
9719         lru_resize_enable osc
9720 }
9721 run_test 120c "Early Lock Cancel: link test"
9722
9723 test_120d() {
9724         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9725         remote_mds_nodsh && skip "remote MDS with nodsh"
9726         test_mkdir -c1 $DIR/$tdir
9727         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9728                 skip_env "no early lock cancel on server"
9729
9730         lru_resize_disable mdc
9731         lru_resize_disable osc
9732         touch $DIR/$tdir
9733         cancel_lru_locks mdc
9734         stat $DIR/$tdir > /dev/null
9735         can1=$(do_facet $SINGLEMDS \
9736                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9737                awk '/ldlm_cancel/ {print $2}')
9738         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9739                awk '/ldlm_bl_callback/ {print $2}')
9740         chmod a+x $DIR/$tdir
9741         can2=$(do_facet $SINGLEMDS \
9742                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9743                awk '/ldlm_cancel/ {print $2}')
9744         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9745                awk '/ldlm_bl_callback/ {print $2}')
9746         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9747         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9748         lru_resize_enable mdc
9749         lru_resize_enable osc
9750 }
9751 run_test 120d "Early Lock Cancel: setattr test"
9752
9753 test_120e() {
9754         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9755         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9756                 skip_env "no early lock cancel on server"
9757         remote_mds_nodsh && skip "remote MDS with nodsh"
9758
9759         local dlmtrace_set=false
9760
9761         test_mkdir -c1 $DIR/$tdir
9762         lru_resize_disable mdc
9763         lru_resize_disable osc
9764         ! $LCTL get_param debug | grep -q dlmtrace &&
9765                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
9766         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
9767         cancel_lru_locks mdc
9768         cancel_lru_locks osc
9769         dd if=$DIR/$tdir/f1 of=/dev/null
9770         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
9771         # XXX client can not do early lock cancel of OST lock
9772         # during unlink (LU-4206), so cancel osc lock now.
9773         sleep 2
9774         cancel_lru_locks osc
9775         can1=$(do_facet $SINGLEMDS \
9776                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9777                awk '/ldlm_cancel/ {print $2}')
9778         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9779                awk '/ldlm_bl_callback/ {print $2}')
9780         unlink $DIR/$tdir/f1
9781         sleep 5
9782         can2=$(do_facet $SINGLEMDS \
9783                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9784                awk '/ldlm_cancel/ {print $2}')
9785         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9786                awk '/ldlm_bl_callback/ {print $2}')
9787         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
9788                 $LCTL dk $TMP/cancel.debug.txt
9789         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
9790                 $LCTL dk $TMP/blocking.debug.txt
9791         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
9792         lru_resize_enable mdc
9793         lru_resize_enable osc
9794 }
9795 run_test 120e "Early Lock Cancel: unlink test"
9796
9797 test_120f() {
9798         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9799         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9800                 skip_env "no early lock cancel on server"
9801         remote_mds_nodsh && skip "remote MDS with nodsh"
9802
9803         test_mkdir -c1 $DIR/$tdir
9804         lru_resize_disable mdc
9805         lru_resize_disable osc
9806         test_mkdir -c1 $DIR/$tdir/d1
9807         test_mkdir -c1 $DIR/$tdir/d2
9808         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
9809         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
9810         cancel_lru_locks mdc
9811         cancel_lru_locks osc
9812         dd if=$DIR/$tdir/d1/f1 of=/dev/null
9813         dd if=$DIR/$tdir/d2/f2 of=/dev/null
9814         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
9815         # XXX client can not do early lock cancel of OST lock
9816         # during rename (LU-4206), so cancel osc lock now.
9817         sleep 2
9818         cancel_lru_locks osc
9819         can1=$(do_facet $SINGLEMDS \
9820                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9821                awk '/ldlm_cancel/ {print $2}')
9822         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9823                awk '/ldlm_bl_callback/ {print $2}')
9824         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
9825         sleep 5
9826         can2=$(do_facet $SINGLEMDS \
9827                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9828                awk '/ldlm_cancel/ {print $2}')
9829         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9830                awk '/ldlm_bl_callback/ {print $2}')
9831         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9832         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9833         lru_resize_enable mdc
9834         lru_resize_enable osc
9835 }
9836 run_test 120f "Early Lock Cancel: rename test"
9837
9838 test_120g() {
9839         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9840         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9841                 skip_env "no early lock cancel on server"
9842         remote_mds_nodsh && skip "remote MDS with nodsh"
9843
9844         lru_resize_disable mdc
9845         lru_resize_disable osc
9846         count=10000
9847         echo create $count files
9848         test_mkdir $DIR/$tdir
9849         cancel_lru_locks mdc
9850         cancel_lru_locks osc
9851         t0=$(date +%s)
9852
9853         can0=$(do_facet $SINGLEMDS \
9854                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9855                awk '/ldlm_cancel/ {print $2}')
9856         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9857                awk '/ldlm_bl_callback/ {print $2}')
9858         createmany -o $DIR/$tdir/f $count
9859         sync
9860         can1=$(do_facet $SINGLEMDS \
9861                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9862                awk '/ldlm_cancel/ {print $2}')
9863         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9864                awk '/ldlm_bl_callback/ {print $2}')
9865         t1=$(date +%s)
9866         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
9867         echo rm $count files
9868         rm -r $DIR/$tdir
9869         sync
9870         can2=$(do_facet $SINGLEMDS \
9871                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9872                awk '/ldlm_cancel/ {print $2}')
9873         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9874                awk '/ldlm_bl_callback/ {print $2}')
9875         t2=$(date +%s)
9876         echo total: $count removes in $((t2-t1))
9877         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
9878         sleep 2
9879         # wait for commitment of removal
9880         lru_resize_enable mdc
9881         lru_resize_enable osc
9882 }
9883 run_test 120g "Early Lock Cancel: performance test"
9884
9885 test_121() { #bug #10589
9886         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9887
9888         rm -rf $DIR/$tfile
9889         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
9890 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
9891         lctl set_param fail_loc=0x310
9892         cancel_lru_locks osc > /dev/null
9893         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
9894         lctl set_param fail_loc=0
9895         [[ $reads -eq $writes ]] ||
9896                 error "read $reads blocks, must be $writes blocks"
9897 }
9898 run_test 121 "read cancel race ========="
9899
9900 test_123a() { # was test 123, statahead(bug 11401)
9901         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9902
9903         SLOWOK=0
9904         if ! grep -q "processor.*: 1" /proc/cpuinfo; then
9905                 log "testing UP system. Performance may be lower than expected."
9906                 SLOWOK=1
9907         fi
9908
9909         rm -rf $DIR/$tdir
9910         test_mkdir $DIR/$tdir
9911         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
9912         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
9913         MULT=10
9914         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
9915                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
9916
9917                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
9918                 lctl set_param -n llite.*.statahead_max 0
9919                 lctl get_param llite.*.statahead_max
9920                 cancel_lru_locks mdc
9921                 cancel_lru_locks osc
9922                 stime=`date +%s`
9923                 time ls -l $DIR/$tdir | wc -l
9924                 etime=`date +%s`
9925                 delta=$((etime - stime))
9926                 log "ls $i files without statahead: $delta sec"
9927                 lctl set_param llite.*.statahead_max=$max
9928
9929                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
9930                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
9931                 cancel_lru_locks mdc
9932                 cancel_lru_locks osc
9933                 stime=`date +%s`
9934                 time ls -l $DIR/$tdir | wc -l
9935                 etime=`date +%s`
9936                 delta_sa=$((etime - stime))
9937                 log "ls $i files with statahead: $delta_sa sec"
9938                 lctl get_param -n llite.*.statahead_stats
9939                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
9940
9941                 [[ $swrong -lt $ewrong ]] &&
9942                         log "statahead was stopped, maybe too many locks held!"
9943                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
9944
9945                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
9946                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
9947                     lctl set_param -n llite.*.statahead_max 0
9948                     lctl get_param llite.*.statahead_max
9949                     cancel_lru_locks mdc
9950                     cancel_lru_locks osc
9951                     stime=`date +%s`
9952                     time ls -l $DIR/$tdir | wc -l
9953                     etime=`date +%s`
9954                     delta=$((etime - stime))
9955                     log "ls $i files again without statahead: $delta sec"
9956                     lctl set_param llite.*.statahead_max=$max
9957                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
9958                         if [  $SLOWOK -eq 0 ]; then
9959                                 error "ls $i files is slower with statahead!"
9960                         else
9961                                 log "ls $i files is slower with statahead!"
9962                         fi
9963                         break
9964                     fi
9965                 fi
9966
9967                 [ $delta -gt 20 ] && break
9968                 [ $delta -gt 8 ] && MULT=$((50 / delta))
9969                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
9970         done
9971         log "ls done"
9972
9973         stime=`date +%s`
9974         rm -r $DIR/$tdir
9975         sync
9976         etime=`date +%s`
9977         delta=$((etime - stime))
9978         log "rm -r $DIR/$tdir/: $delta seconds"
9979         log "rm done"
9980         lctl get_param -n llite.*.statahead_stats
9981 }
9982 run_test 123a "verify statahead work"
9983
9984 test_123b () { # statahead(bug 15027)
9985         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9986
9987         test_mkdir $DIR/$tdir
9988         createmany -o $DIR/$tdir/$tfile-%d 1000
9989
9990         cancel_lru_locks mdc
9991         cancel_lru_locks osc
9992
9993 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
9994         lctl set_param fail_loc=0x80000803
9995         ls -lR $DIR/$tdir > /dev/null
9996         log "ls done"
9997         lctl set_param fail_loc=0x0
9998         lctl get_param -n llite.*.statahead_stats
9999         rm -r $DIR/$tdir
10000         sync
10001
10002 }
10003 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
10004
10005 test_124a() {
10006         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10007         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
10008                 skip_env "no lru resize on server"
10009
10010         local NR=2000
10011
10012         test_mkdir $DIR/$tdir
10013
10014         log "create $NR files at $DIR/$tdir"
10015         createmany -o $DIR/$tdir/f $NR ||
10016                 error "failed to create $NR files in $DIR/$tdir"
10017
10018         cancel_lru_locks mdc
10019         ls -l $DIR/$tdir > /dev/null
10020
10021         local NSDIR=""
10022         local LRU_SIZE=0
10023         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
10024                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
10025                 LRU_SIZE=$($LCTL get_param -n $PARAM)
10026                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
10027                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
10028                         log "NSDIR=$NSDIR"
10029                         log "NS=$(basename $NSDIR)"
10030                         break
10031                 fi
10032         done
10033
10034         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
10035                 skip "Not enough cached locks created!"
10036         fi
10037         log "LRU=$LRU_SIZE"
10038
10039         local SLEEP=30
10040
10041         # We know that lru resize allows one client to hold $LIMIT locks
10042         # for 10h. After that locks begin to be killed by client.
10043         local MAX_HRS=10
10044         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
10045         log "LIMIT=$LIMIT"
10046         if [ $LIMIT -lt $LRU_SIZE ]; then
10047                 skip "Limit is too small $LIMIT"
10048         fi
10049
10050         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
10051         # killing locks. Some time was spent for creating locks. This means
10052         # that up to the moment of sleep finish we must have killed some of
10053         # them (10-100 locks). This depends on how fast ther were created.
10054         # Many of them were touched in almost the same moment and thus will
10055         # be killed in groups.
10056         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
10057
10058         # Use $LRU_SIZE_B here to take into account real number of locks
10059         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
10060         local LRU_SIZE_B=$LRU_SIZE
10061         log "LVF=$LVF"
10062         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
10063         log "OLD_LVF=$OLD_LVF"
10064         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
10065
10066         # Let's make sure that we really have some margin. Client checks
10067         # cached locks every 10 sec.
10068         SLEEP=$((SLEEP+20))
10069         log "Sleep ${SLEEP} sec"
10070         local SEC=0
10071         while ((SEC<$SLEEP)); do
10072                 echo -n "..."
10073                 sleep 5
10074                 SEC=$((SEC+5))
10075                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
10076                 echo -n "$LRU_SIZE"
10077         done
10078         echo ""
10079         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
10080         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
10081
10082         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
10083                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
10084                 unlinkmany $DIR/$tdir/f $NR
10085                 return
10086         }
10087
10088         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
10089         log "unlink $NR files at $DIR/$tdir"
10090         unlinkmany $DIR/$tdir/f $NR
10091 }
10092 run_test 124a "lru resize ======================================="
10093
10094 get_max_pool_limit()
10095 {
10096         local limit=$($LCTL get_param \
10097                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
10098         local max=0
10099         for l in $limit; do
10100                 if [[ $l -gt $max ]]; then
10101                         max=$l
10102                 fi
10103         done
10104         echo $max
10105 }
10106
10107 test_124b() {
10108         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10109         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
10110                 skip_env "no lru resize on server"
10111
10112         LIMIT=$(get_max_pool_limit)
10113
10114         NR=$(($(default_lru_size)*20))
10115         if [[ $NR -gt $LIMIT ]]; then
10116                 log "Limit lock number by $LIMIT locks"
10117                 NR=$LIMIT
10118         fi
10119
10120         IFree=$(mdsrate_inodes_available)
10121         if [ $IFree -lt $NR ]; then
10122                 log "Limit lock number by $IFree inodes"
10123                 NR=$IFree
10124         fi
10125
10126         lru_resize_disable mdc
10127         test_mkdir -p $DIR/$tdir/disable_lru_resize
10128
10129         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
10130         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
10131         cancel_lru_locks mdc
10132         stime=`date +%s`
10133         PID=""
10134         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
10135         PID="$PID $!"
10136         sleep 2
10137         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
10138         PID="$PID $!"
10139         sleep 2
10140         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
10141         PID="$PID $!"
10142         wait $PID
10143         etime=`date +%s`
10144         nolruresize_delta=$((etime-stime))
10145         log "ls -la time: $nolruresize_delta seconds"
10146         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
10147         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
10148
10149         lru_resize_enable mdc
10150         test_mkdir -p $DIR/$tdir/enable_lru_resize
10151
10152         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
10153         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
10154         cancel_lru_locks mdc
10155         stime=`date +%s`
10156         PID=""
10157         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10158         PID="$PID $!"
10159         sleep 2
10160         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10161         PID="$PID $!"
10162         sleep 2
10163         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10164         PID="$PID $!"
10165         wait $PID
10166         etime=`date +%s`
10167         lruresize_delta=$((etime-stime))
10168         log "ls -la time: $lruresize_delta seconds"
10169         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
10170
10171         if [ $lruresize_delta -gt $nolruresize_delta ]; then
10172                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
10173         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
10174                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
10175         else
10176                 log "lru resize performs the same with no lru resize"
10177         fi
10178         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
10179 }
10180 run_test 124b "lru resize (performance test) ======================="
10181
10182 test_124c() {
10183         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10184         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
10185                 skip_env "no lru resize on server"
10186
10187         # cache ununsed locks on client
10188         local nr=100
10189         cancel_lru_locks mdc
10190         test_mkdir $DIR/$tdir
10191         createmany -o $DIR/$tdir/f $nr ||
10192                 error "failed to create $nr files in $DIR/$tdir"
10193         ls -l $DIR/$tdir > /dev/null
10194
10195         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
10196         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
10197         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
10198         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
10199         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
10200
10201         # set lru_max_age to 1 sec
10202         $LCTL set_param $nsdir.lru_max_age=1000 # milliseconds
10203         echo "sleep $((recalc_p * 2)) seconds..."
10204         sleep $((recalc_p * 2))
10205
10206         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
10207         # restore lru_max_age
10208         $LCTL set_param -n $nsdir.lru_max_age $max_age
10209         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
10210         unlinkmany $DIR/$tdir/f $nr
10211 }
10212 run_test 124c "LRUR cancel very aged locks"
10213
10214 test_125() { # 13358
10215         $LCTL get_param -n llite.*.client_type | grep -q local ||
10216                 skip "must run as local client"
10217         $LCTL get_param -n mdc.*-mdc-*.connect_flags | grep -q acl ||
10218                 skip_env "must have acl enabled"
10219         [ -z "$(which setfacl)" ] && skip_env "must have setfacl tool"
10220
10221         test_mkdir $DIR/$tdir
10222         $LFS setstripe -S 65536 -c -1 $DIR/$tdir || error "setstripe failed"
10223         setfacl -R -m u:bin:rwx $DIR/$tdir || error "setfacl $DIR/$tdir failed"
10224         ls -ld $DIR/$tdir || error "cannot access $DIR/$tdir"
10225 }
10226 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
10227
10228 test_126() { # bug 12829/13455
10229         $GSS && skip_env "must run as gss disabled"
10230         $LCTL get_param -n llite.*.client_type | grep -q local ||
10231                 skip "must run as local client"
10232         [ "$UID" != 0 ] && skip "must run as root, not UID $UID"
10233
10234         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
10235         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
10236         rm -f $DIR/$tfile
10237         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
10238 }
10239 run_test 126 "check that the fsgid provided by the client is taken into account"
10240
10241 test_127a() { # bug 15521
10242         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10243
10244         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
10245         $LCTL set_param osc.*.stats=0
10246         FSIZE=$((2048 * 1024))
10247         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
10248         cancel_lru_locks osc
10249         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
10250
10251         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
10252         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
10253                 echo "got $COUNT $NAME"
10254                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
10255                 eval $NAME=$COUNT || error "Wrong proc format"
10256
10257                 case $NAME in
10258                         read_bytes|write_bytes)
10259                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
10260                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
10261                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
10262                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
10263                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
10264                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
10265                                 error "sumsquare is too small: $SUMSQ"
10266                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
10267                                 error "sumsquare is too big: $SUMSQ"
10268                         ;;
10269                         *) ;;
10270                 esac
10271         done < $DIR/${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 run_test 127a "verify the client stats are sane"
10280
10281 test_127b() { # bug LU-333
10282         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10283         local name count samp unit min max sum sumsq
10284
10285         $LCTL set_param llite.*.stats=0
10286
10287         # perform 2 reads and writes so MAX is different from SUM.
10288         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1
10289         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1
10290         cancel_lru_locks osc
10291         dd if=$DIR/$tfile of=/dev/null bs=$PAGE_SIZE count=1
10292         dd if=$DIR/$tfile of=/dev/null bs=$PAGE_SIZE count=1
10293
10294         $LCTL get_param llite.*.stats | grep samples > $TMP/$tfile.tmp
10295         while read name count samp unit min max sum sumsq; do
10296                 echo "got $count $name"
10297                 eval $name=$count || error "Wrong proc format"
10298
10299                 case $name in
10300                 read_bytes)
10301                         [ $count -ne 2 ] && error "count is not 2: $count"
10302                         [ $min -ne $PAGE_SIZE ] &&
10303                                 error "min is not $PAGE_SIZE: $min"
10304                         [ $max -ne $PAGE_SIZE ] &&
10305                                 error "max is incorrect: $max"
10306                         [ $sum -ne $((PAGE_SIZE * 2)) ] &&
10307                                 error "sum is wrong: $sum"
10308                         ;;
10309                 write_bytes)
10310                         [ $count -ne 2 ] && error "count is not 2: $count"
10311                         [ $min -ne $PAGE_SIZE ] &&
10312                                 error "min is not $PAGE_SIZE: $min"
10313                         [ $max -ne $PAGE_SIZE ] &&
10314                                 error "max is incorrect: $max"
10315                         [ $sum -ne $((PAGE_SIZE * 2)) ] &&
10316                                 error "sum is wrong: $sum"
10317                         ;;
10318                 *) ;;
10319                 esac
10320         done < $TMP/$tfile.tmp
10321
10322         #check that we actually got some stats
10323         [ "$read_bytes" ] || error "Missing read_bytes stats"
10324         [ "$write_bytes" ] || error "Missing write_bytes stats"
10325         [ "$read_bytes" != 0 ] || error "no read done"
10326         [ "$write_bytes" != 0 ] || error "no write done"
10327
10328         rm -f $TMP/${tfile}.tmp
10329 }
10330 run_test 127b "verify the llite client stats are sane"
10331
10332 test_128() { # bug 15212
10333         touch $DIR/$tfile
10334         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
10335                 find $DIR/$tfile
10336                 find $DIR/$tfile
10337         EOF
10338
10339         result=$(grep error $TMP/$tfile.log)
10340         rm -f $DIR/$tfile $TMP/$tfile.log
10341         [ -z "$result" ] ||
10342                 error "consecutive find's under interactive lfs failed"
10343 }
10344 run_test 128 "interactive lfs for 2 consecutive find's"
10345
10346 set_dir_limits () {
10347         local mntdev
10348         local canondev
10349         local node
10350
10351         local ldproc=/proc/fs/ldiskfs
10352         local facets=$(get_facets MDS)
10353
10354         for facet in ${facets//,/ }; do
10355                 canondev=$(ldiskfs_canon \
10356                            *.$(convert_facet2label $facet).mntdev $facet)
10357                 do_facet $facet "test -e $ldproc/$canondev/max_dir_size" ||
10358                         ldproc=/sys/fs/ldiskfs
10359                 do_facet $facet "echo $1 >$ldproc/$canondev/max_dir_size"
10360                 do_facet $facet "echo $2 >$ldproc/$canondev/warning_dir_size"
10361         done
10362 }
10363
10364 check_mds_dmesg() {
10365         local facets=$(get_facets MDS)
10366         for facet in ${facets//,/ }; do
10367                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
10368         done
10369         return 1
10370 }
10371
10372 test_129() {
10373         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10374         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.56) ]] ||
10375                 skip "Need MDS version with at least 2.5.56"
10376         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
10377                 skip_env "ldiskfs only test"
10378         fi
10379         remote_mds_nodsh && skip "remote MDS with nodsh"
10380
10381         local ENOSPC=28
10382         local EFBIG=27
10383         local has_warning=false
10384
10385         rm -rf $DIR/$tdir
10386         mkdir -p $DIR/$tdir
10387
10388         # block size of mds1
10389         local maxsize=$(($($LCTL get_param -n mdc.*MDT0000*.blocksize) * 5))
10390         set_dir_limits $maxsize $maxsize
10391         local dirsize=$(stat -c%s "$DIR/$tdir")
10392         local nfiles=0
10393         while [[ $dirsize -le $maxsize ]]; do
10394                 $MULTIOP $DIR/$tdir/file_base_$nfiles Oc
10395                 rc=$?
10396                 if ! $has_warning; then
10397                         check_mds_dmesg '"is approaching"' && has_warning=true
10398                 fi
10399                 # check two errors:
10400                 # ENOSPC for new ext4 max_dir_size (kernel commit df981d03ee)
10401                 # EFBIG for previous versions included in ldiskfs series
10402                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
10403                         set_dir_limits 0 0
10404                         echo "return code $rc received as expected"
10405
10406                         createmany -o $DIR/$tdir/file_extra_$nfiles. 5 ||
10407                                 error_exit "create failed w/o dir size limit"
10408
10409                         check_mds_dmesg '"has reached"' ||
10410                                 error_exit "reached message should be output"
10411
10412                         [ $has_warning = "false" ] &&
10413                                 error_exit "warning message should be output"
10414
10415                         dirsize=$(stat -c%s "$DIR/$tdir")
10416
10417                         [[ $dirsize -ge $maxsize ]] && return 0
10418                         error_exit "current dir size $dirsize, " \
10419                                    "previous limit $maxsize"
10420                 elif [ $rc -ne 0 ]; then
10421                         set_dir_limits 0 0
10422                         error_exit "return $rc received instead of expected " \
10423                                    "$EFBIG or $ENOSPC, files in dir $dirsize"
10424                 fi
10425                 nfiles=$((nfiles + 1))
10426                 dirsize=$(stat -c%s "$DIR/$tdir")
10427         done
10428
10429         set_dir_limits 0 0
10430         error "exceeded dir size limit $maxsize($MDSCOUNT) : $dirsize bytes"
10431 }
10432 run_test 129 "test directory size limit ========================"
10433
10434 OLDIFS="$IFS"
10435 cleanup_130() {
10436         trap 0
10437         IFS="$OLDIFS"
10438 }
10439
10440 test_130a() {
10441         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10442         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10443
10444         trap cleanup_130 EXIT RETURN
10445
10446         local fm_file=$DIR/$tfile
10447         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
10448         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
10449                 error "dd failed for $fm_file"
10450
10451         # LU-1795: test filefrag/FIEMAP once, even if unsupported
10452         filefrag -ves $fm_file
10453         RC=$?
10454         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10455                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10456         [ $RC != 0 ] && error "filefrag $fm_file failed"
10457
10458         filefrag_op=$(filefrag -ve -k $fm_file |
10459                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10460         lun=$($GETSTRIPE -i $fm_file)
10461
10462         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
10463         IFS=$'\n'
10464         tot_len=0
10465         for line in $filefrag_op
10466         do
10467                 frag_lun=`echo $line | cut -d: -f5`
10468                 ext_len=`echo $line | cut -d: -f4`
10469                 if (( $frag_lun != $lun )); then
10470                         cleanup_130
10471                         error "FIEMAP on 1-stripe file($fm_file) failed"
10472                         return
10473                 fi
10474                 (( tot_len += ext_len ))
10475         done
10476
10477         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
10478                 cleanup_130
10479                 error "FIEMAP on 1-stripe file($fm_file) failed;"
10480                 return
10481         fi
10482
10483         cleanup_130
10484
10485         echo "FIEMAP on single striped file succeeded"
10486 }
10487 run_test 130a "FIEMAP (1-stripe file)"
10488
10489 test_130b() {
10490         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >= 2 OSTs"
10491
10492         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10493         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10494
10495         trap cleanup_130 EXIT RETURN
10496
10497         local fm_file=$DIR/$tfile
10498         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
10499                         error "setstripe on $fm_file"
10500         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10501                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10502
10503         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
10504                 error "dd failed on $fm_file"
10505
10506         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10507         filefrag_op=$(filefrag -ve -k $fm_file |
10508                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10509
10510         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10511                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10512
10513         IFS=$'\n'
10514         tot_len=0
10515         num_luns=1
10516         for line in $filefrag_op
10517         do
10518                 frag_lun=$(echo $line | cut -d: -f5 |
10519                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10520                 ext_len=$(echo $line | cut -d: -f4)
10521                 if (( $frag_lun != $last_lun )); then
10522                         if (( tot_len != 1024 )); then
10523                                 cleanup_130
10524                                 error "FIEMAP on $fm_file failed; returned " \
10525                                 "len $tot_len for OST $last_lun instead of 1024"
10526                                 return
10527                         else
10528                                 (( num_luns += 1 ))
10529                                 tot_len=0
10530                         fi
10531                 fi
10532                 (( tot_len += ext_len ))
10533                 last_lun=$frag_lun
10534         done
10535         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
10536                 cleanup_130
10537                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10538                         "luns or wrong len for OST $last_lun"
10539                 return
10540         fi
10541
10542         cleanup_130
10543
10544         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
10545 }
10546 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
10547
10548 test_130c() {
10549         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
10550
10551         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10552         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10553
10554         trap cleanup_130 EXIT RETURN
10555
10556         local fm_file=$DIR/$tfile
10557         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
10558         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10559                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10560
10561         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
10562                         error "dd failed on $fm_file"
10563
10564         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10565         filefrag_op=$(filefrag -ve -k $fm_file |
10566                 sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10567
10568         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10569                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10570
10571         IFS=$'\n'
10572         tot_len=0
10573         num_luns=1
10574         for line in $filefrag_op
10575         do
10576                 frag_lun=$(echo $line | cut -d: -f5 |
10577                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10578                 ext_len=$(echo $line | cut -d: -f4)
10579                 if (( $frag_lun != $last_lun )); then
10580                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
10581                         if (( logical != 512 )); then
10582                                 cleanup_130
10583                                 error "FIEMAP on $fm_file failed; returned " \
10584                                 "logical start for lun $logical instead of 512"
10585                                 return
10586                         fi
10587                         if (( tot_len != 512 )); then
10588                                 cleanup_130
10589                                 error "FIEMAP on $fm_file failed; returned " \
10590                                 "len $tot_len for OST $last_lun instead of 1024"
10591                                 return
10592                         else
10593                                 (( num_luns += 1 ))
10594                                 tot_len=0
10595                         fi
10596                 fi
10597                 (( tot_len += ext_len ))
10598                 last_lun=$frag_lun
10599         done
10600         if (( num_luns != 2 || tot_len != 512 )); then
10601                 cleanup_130
10602                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10603                         "luns or wrong len for OST $last_lun"
10604                 return
10605         fi
10606
10607         cleanup_130
10608
10609         echo "FIEMAP on 2-stripe file with hole succeeded"
10610 }
10611 run_test 130c "FIEMAP (2-stripe file with hole)"
10612
10613 test_130d() {
10614         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
10615
10616         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10617         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10618
10619         trap cleanup_130 EXIT RETURN
10620
10621         local fm_file=$DIR/$tfile
10622         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
10623                         error "setstripe on $fm_file"
10624         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10625                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10626
10627         local actual_stripe_count=$($GETSTRIPE -c $fm_file)
10628         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripe_count ||
10629                 error "dd failed on $fm_file"
10630
10631         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10632         filefrag_op=$(filefrag -ve -k $fm_file |
10633                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10634
10635         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10636                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10637
10638         IFS=$'\n'
10639         tot_len=0
10640         num_luns=1
10641         for line in $filefrag_op
10642         do
10643                 frag_lun=$(echo $line | cut -d: -f5 |
10644                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10645                 ext_len=$(echo $line | cut -d: -f4)
10646                 if (( $frag_lun != $last_lun )); then
10647                         if (( tot_len != 1024 )); then
10648                                 cleanup_130
10649                                 error "FIEMAP on $fm_file failed; returned " \
10650                                 "len $tot_len for OST $last_lun instead of 1024"
10651                                 return
10652                         else
10653                                 (( num_luns += 1 ))
10654                                 tot_len=0
10655                         fi
10656                 fi
10657                 (( tot_len += ext_len ))
10658                 last_lun=$frag_lun
10659         done
10660         if (( num_luns != actual_stripe_count || tot_len != 1024 )); then
10661                 cleanup_130
10662                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10663                         "luns or wrong len for OST $last_lun"
10664                 return
10665         fi
10666
10667         cleanup_130
10668
10669         echo "FIEMAP on N-stripe file succeeded"
10670 }
10671 run_test 130d "FIEMAP (N-stripe file)"
10672
10673 test_130e() {
10674         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
10675
10676         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10677         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10678
10679         trap cleanup_130 EXIT RETURN
10680
10681         local fm_file=$DIR/$tfile
10682         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
10683         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10684                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10685
10686         NUM_BLKS=512
10687         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
10688         for ((i = 0; i < $NUM_BLKS; i++))
10689         do
10690                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
10691         done
10692
10693         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10694         filefrag_op=$(filefrag -ve -k $fm_file |
10695                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10696
10697         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10698                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10699
10700         IFS=$'\n'
10701         tot_len=0
10702         num_luns=1
10703         for line in $filefrag_op
10704         do
10705                 frag_lun=$(echo $line | cut -d: -f5 |
10706                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10707                 ext_len=$(echo $line | cut -d: -f4)
10708                 if (( $frag_lun != $last_lun )); then
10709                         if (( tot_len != $EXPECTED_LEN )); then
10710                                 cleanup_130
10711                                 error "FIEMAP on $fm_file failed; returned " \
10712                                 "len $tot_len for OST $last_lun instead " \
10713                                 "of $EXPECTED_LEN"
10714                                 return
10715                         else
10716                                 (( num_luns += 1 ))
10717                                 tot_len=0
10718                         fi
10719                 fi
10720                 (( tot_len += ext_len ))
10721                 last_lun=$frag_lun
10722         done
10723         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
10724                 cleanup_130
10725                 error "FIEMAP on $fm_file failed; returned wrong number " \
10726                         "of luns or wrong len for OST $last_lun"
10727                 return
10728         fi
10729
10730         cleanup_130
10731
10732         echo "FIEMAP with continuation calls succeeded"
10733 }
10734 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
10735
10736 test_130f() {
10737         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10738         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10739
10740         local fm_file=$DIR/$tfile
10741         $MULTIOP $fm_file oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T33554432c ||
10742                 error "multiop create with lov_delay_create on $fm_file"
10743
10744         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10745         filefrag_extents=$(filefrag -vek $fm_file |
10746                            awk '/extents? found/ { print $2 }')
10747         if [[ "$filefrag_extents" != "0" ]]; then
10748                 error "FIEMAP on $fm_file failed; " \
10749                       "returned $filefrag_extents expected 0"
10750         fi
10751
10752         rm -f $fm_file
10753 }
10754 run_test 130f "FIEMAP (unstriped file)"
10755
10756 # Test for writev/readv
10757 test_131a() {
10758         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 ||
10759                 error "writev test failed"
10760         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 ||
10761                 error "readv failed"
10762         rm -f $DIR/$tfile
10763 }
10764 run_test 131a "test iov's crossing stripe boundary for writev/readv"
10765
10766 test_131b() {
10767         local fsize=$((524288 + 1048576 + 1572864))
10768         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 &&
10769                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
10770                         error "append writev test failed"
10771
10772         ((fsize += 1572864 + 1048576))
10773         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 &&
10774                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
10775                         error "append writev test failed"
10776         rm -f $DIR/$tfile
10777 }
10778 run_test 131b "test append writev"
10779
10780 test_131c() {
10781         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
10782         error "NOT PASS"
10783 }
10784 run_test 131c "test read/write on file w/o objects"
10785
10786 test_131d() {
10787         rwv -f $DIR/$tfile -w -n 1 1572864
10788         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
10789         if [ "$NOB" != 1572864 ]; then
10790                 error "Short read filed: read $NOB bytes instead of 1572864"
10791         fi
10792         rm -f $DIR/$tfile
10793 }
10794 run_test 131d "test short read"
10795
10796 test_131e() {
10797         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
10798         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
10799         error "read hitting hole failed"
10800         rm -f $DIR/$tfile
10801 }
10802 run_test 131e "test read hitting hole"
10803
10804 check_stats() {
10805         local facet=$1
10806         local op=$2
10807         local want=${3:-0}
10808         local res
10809
10810         case $facet in
10811         mds*) res=$(do_facet $facet \
10812                    $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$op")
10813                  ;;
10814         ost*) res=$(do_facet $facet \
10815                    $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$op")
10816                  ;;
10817         *) error "Wrong facet '$facet'" ;;
10818         esac
10819         [ "$res" ] || error "The counter for $op on $facet was not incremented"
10820         # if the argument $3 is zero, it means any stat increment is ok.
10821         if [[ $want -gt 0 ]]; then
10822                 local count=$(echo $res | awk '{ print $2 }')
10823                 [[ $count -ne $want ]] &&
10824                         error "The $op counter on $facet is $count, not $want"
10825         fi
10826 }
10827
10828 test_133a() {
10829         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10830         remote_ost_nodsh && skip "remote OST with nodsh"
10831         remote_mds_nodsh && skip "remote MDS with nodsh"
10832         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
10833                 skip_env "MDS doesn't support rename stats"
10834
10835         local testdir=$DIR/${tdir}/stats_testdir
10836
10837         mkdir -p $DIR/${tdir}
10838
10839         # clear stats.
10840         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10841         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10842
10843         # verify mdt stats first.
10844         mkdir ${testdir} || error "mkdir failed"
10845         check_stats $SINGLEMDS "mkdir" 1
10846         touch ${testdir}/${tfile} || error "touch failed"
10847         check_stats $SINGLEMDS "open" 1
10848         check_stats $SINGLEMDS "close" 1
10849         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.8.54) ] && {
10850                 mknod ${testdir}/${tfile}-pipe p || error "mknod failed"
10851                 check_stats $SINGLEMDS "mknod" 2
10852         }
10853         rm -f ${testdir}/${tfile}-pipe || error "pipe remove failed"
10854         check_stats $SINGLEMDS "unlink" 1
10855         rm -f ${testdir}/${tfile} || error "file remove failed"
10856         check_stats $SINGLEMDS "unlink" 2
10857
10858         # remove working dir and check mdt stats again.
10859         rmdir ${testdir} || error "rmdir failed"
10860         check_stats $SINGLEMDS "rmdir" 1
10861
10862         local testdir1=$DIR/${tdir}/stats_testdir1
10863         mkdir -p ${testdir}
10864         mkdir -p ${testdir1}
10865         touch ${testdir1}/test1
10866         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
10867         check_stats $SINGLEMDS "crossdir_rename" 1
10868
10869         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
10870         check_stats $SINGLEMDS "samedir_rename" 1
10871
10872         rm -rf $DIR/${tdir}
10873 }
10874 run_test 133a "Verifying MDT stats ========================================"
10875
10876 test_133b() {
10877         local res
10878
10879         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10880         remote_ost_nodsh && skip "remote OST with nodsh"
10881         remote_mds_nodsh && skip "remote MDS with nodsh"
10882
10883         local testdir=$DIR/${tdir}/stats_testdir
10884
10885         mkdir -p ${testdir} || error "mkdir failed"
10886         touch ${testdir}/${tfile} || error "touch failed"
10887         cancel_lru_locks mdc
10888
10889         # clear stats.
10890         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10891         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10892
10893         # extra mdt stats verification.
10894         chmod 444 ${testdir}/${tfile} || error "chmod failed"
10895         check_stats $SINGLEMDS "setattr" 1
10896         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10897         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
10898         then            # LU-1740
10899                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
10900                 check_stats $SINGLEMDS "getattr" 1
10901         fi
10902         rm -rf $DIR/${tdir}
10903
10904         # when DNE is enabled, MDT uses STATFS RPC to ping other targets
10905         # so the check below is not reliable
10906         [ $MDSCOUNT -eq 1 ] || return 0
10907
10908         # Sleep to avoid a cached response.
10909         #define OBD_STATFS_CACHE_SECONDS 1
10910         sleep 2
10911         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10912         do_facet ost1 $LCTL set_param obdfilter.*.exports.*.stats=clear
10913         $LFS df || error "lfs failed"
10914         check_stats $SINGLEMDS "statfs" 1
10915
10916         # check aggregated statfs (LU-10018)
10917         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.54) ] &&
10918                 return 0
10919         [ $(lustre_version_code client) -lt $(version_code 2.11.54) ] &&
10920                 return 0
10921         sleep 2
10922         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10923         do_facet ost1 $LCTL set_param obdfilter.*.exports.*.stats=clear
10924         df $DIR
10925         check_stats $SINGLEMDS "statfs" 1
10926
10927         # We want to check that the client didn't send OST_STATFS to
10928         # ost1 but the MDT also uses OST_STATFS for precreate. So some
10929         # extra care is needed here.
10930         if remote_mds; then
10931                 local nid=$($LCTL list_nids | head -1 | sed  "s/\./\\\./g")
10932                 local param="obdfilter.$FSNAME-OST0000.exports.'$nid'.stats"
10933
10934                 res=$(do_facet ost1 $LCTL get_param $param | grep statfs)
10935                 [ "$res" ] && error "OST got STATFS"
10936         fi
10937
10938         return 0
10939 }
10940 run_test 133b "Verifying extra MDT stats =================================="
10941
10942 test_133c() {
10943         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10944         remote_ost_nodsh && skip "remote OST with nodsh"
10945         remote_mds_nodsh && skip "remote MDS with nodsh"
10946
10947         local testdir=$DIR/$tdir/stats_testdir
10948
10949         test_mkdir -p $testdir
10950
10951         # verify obdfilter stats.
10952         $SETSTRIPE -c 1 -i 0 $testdir/$tfile
10953         sync
10954         cancel_lru_locks osc
10955         wait_delete_completed
10956
10957         # clear stats.
10958         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10959         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10960
10961         dd if=/dev/zero of=$testdir/$tfile conv=notrunc bs=512k count=1 ||
10962                 error "dd failed"
10963         sync
10964         cancel_lru_locks osc
10965         check_stats ost1 "write" 1
10966
10967         dd if=$testdir/$tfile of=/dev/null bs=1k count=1 || error "dd failed"
10968         check_stats ost1 "read" 1
10969
10970         > $testdir/$tfile || error "truncate failed"
10971         check_stats ost1 "punch" 1
10972
10973         rm -f $testdir/$tfile || error "file remove failed"
10974         wait_delete_completed
10975         check_stats ost1 "destroy" 1
10976
10977         rm -rf $DIR/$tdir
10978 }
10979 run_test 133c "Verifying OST stats ========================================"
10980
10981 order_2() {
10982         local value=$1
10983         local orig=$value
10984         local order=1
10985
10986         while [ $value -ge 2 ]; do
10987                 order=$((order*2))
10988                 value=$((value/2))
10989         done
10990
10991         if [ $orig -gt $order ]; then
10992                 order=$((order*2))
10993         fi
10994         echo $order
10995 }
10996
10997 size_in_KMGT() {
10998     local value=$1
10999     local size=('K' 'M' 'G' 'T');
11000     local i=0
11001     local size_string=$value
11002
11003     while [ $value -ge 1024 ]; do
11004         if [ $i -gt 3 ]; then
11005             #T is the biggest unit we get here, if that is bigger,
11006             #just return XXXT
11007             size_string=${value}T
11008             break
11009         fi
11010         value=$((value >> 10))
11011         if [ $value -lt 1024 ]; then
11012             size_string=${value}${size[$i]}
11013             break
11014         fi
11015         i=$((i + 1))
11016     done
11017
11018     echo $size_string
11019 }
11020
11021 get_rename_size() {
11022         local size=$1
11023         local context=${2:-.}
11024         local sample=$(do_facet $SINGLEMDS $LCTL \
11025                 get_param mdt.$FSNAME-MDT0000.rename_stats |
11026                 grep -A1 $context |
11027                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
11028         echo $sample
11029 }
11030
11031 test_133d() {
11032         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11033         remote_ost_nodsh && skip "remote OST with nodsh"
11034         remote_mds_nodsh && skip "remote MDS with nodsh"
11035         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
11036                 skip_env "MDS doesn't support rename stats"
11037
11038         local testdir1=$DIR/${tdir}/stats_testdir1
11039         local testdir2=$DIR/${tdir}/stats_testdir2
11040         mkdir -p $DIR/${tdir}
11041
11042         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
11043
11044         lfs mkdir -i 0 -c 1 ${testdir1} || error "mkdir failed"
11045         lfs mkdir -i 0 -c 1 ${testdir2} || error "mkdir failed"
11046
11047         createmany -o $testdir1/test 512 || error "createmany failed"
11048
11049         # check samedir rename size
11050         mv ${testdir1}/test0 ${testdir1}/test_0
11051
11052         local testdir1_size=$(ls -l $DIR/${tdir} |
11053                 awk '/stats_testdir1/ {print $5}')
11054         local testdir2_size=$(ls -l $DIR/${tdir} |
11055                 awk '/stats_testdir2/ {print $5}')
11056
11057         testdir1_size=$(order_2 $testdir1_size)
11058         testdir2_size=$(order_2 $testdir2_size)
11059
11060         testdir1_size=$(size_in_KMGT $testdir1_size)
11061         testdir2_size=$(size_in_KMGT $testdir2_size)
11062
11063         echo "source rename dir size: ${testdir1_size}"
11064         echo "target rename dir size: ${testdir2_size}"
11065
11066         local cmd="do_facet $SINGLEMDS $LCTL "
11067         cmd+="get_param mdt.$FSNAME-MDT0000.rename_stats"
11068
11069         eval $cmd || error "$cmd failed"
11070         local samedir=$($cmd | grep 'same_dir')
11071         local same_sample=$(get_rename_size $testdir1_size)
11072         [ -z "$samedir" ] && error "samedir_rename_size count error"
11073         [[ $same_sample -eq 1 ]] ||
11074                 error "samedir_rename_size error $same_sample"
11075         echo "Check same dir rename stats success"
11076
11077         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
11078
11079         # check crossdir rename size
11080         mv ${testdir1}/test_0 ${testdir2}/test_0
11081
11082         testdir1_size=$(ls -l $DIR/${tdir} |
11083                 awk '/stats_testdir1/ {print $5}')
11084         testdir2_size=$(ls -l $DIR/${tdir} |
11085                 awk '/stats_testdir2/ {print $5}')
11086
11087         testdir1_size=$(order_2 $testdir1_size)
11088         testdir2_size=$(order_2 $testdir2_size)
11089
11090         testdir1_size=$(size_in_KMGT $testdir1_size)
11091         testdir2_size=$(size_in_KMGT $testdir2_size)
11092
11093         echo "source rename dir size: ${testdir1_size}"
11094         echo "target rename dir size: ${testdir2_size}"
11095
11096         eval $cmd || error "$cmd failed"
11097         local crossdir=$($cmd | grep 'crossdir')
11098         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
11099         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
11100         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
11101         [[ $src_sample -eq 1 ]] ||
11102                 error "crossdir_rename_size error $src_sample"
11103         [[ $tgt_sample -eq 1 ]] ||
11104                 error "crossdir_rename_size error $tgt_sample"
11105         echo "Check cross dir rename stats success"
11106         rm -rf $DIR/${tdir}
11107 }
11108 run_test 133d "Verifying rename_stats ========================================"
11109
11110 test_133e() {
11111         remote_mds_nodsh && skip "remote MDS with nodsh"
11112         remote_ost_nodsh && skip "remote OST with nodsh"
11113         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11114
11115         local testdir=$DIR/${tdir}/stats_testdir
11116         local ctr f0 f1 bs=32768 count=42 sum
11117
11118         mkdir -p ${testdir} || error "mkdir failed"
11119
11120         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
11121
11122         for ctr in {write,read}_bytes; do
11123                 sync
11124                 cancel_lru_locks osc
11125
11126                 do_facet ost1 $LCTL set_param -n \
11127                         "obdfilter.*.exports.clear=clear"
11128
11129                 if [ $ctr = write_bytes ]; then
11130                         f0=/dev/zero
11131                         f1=${testdir}/${tfile}
11132                 else
11133                         f0=${testdir}/${tfile}
11134                         f1=/dev/null
11135                 fi
11136
11137                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
11138                         error "dd failed"
11139                 sync
11140                 cancel_lru_locks osc
11141
11142                 sum=$(do_facet ost1 $LCTL get_param \
11143                         "obdfilter.*.exports.*.stats" |
11144                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
11145                                 $1 == ctr { sum += $7 }
11146                                 END { printf("%0.0f", sum) }')
11147
11148                 if ((sum != bs * count)); then
11149                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
11150                 fi
11151         done
11152
11153         rm -rf $DIR/${tdir}
11154 }
11155 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
11156
11157 proc_regexp="/{proc,sys}/{fs,sys,kernel/debug}/{lustre,lnet}/"
11158
11159 # Some versions of find (4.5.11, 4.5.14) included in CentOS 7.3-7.5 do
11160 # not honor the -ignore_readdir_race option correctly. So we call
11161 # error_ignore() rather than error() in these cases. See LU-11152.
11162 error_133() {
11163         if (find --version; do_facet mds1 find --version) |
11164                 grep -q '\b4\.5\.1[1-4]\b'; then
11165                 error_ignore LU-11152 "$@"
11166         else
11167                 error "$@"
11168         fi
11169 }
11170
11171 test_133f() {
11172         # First without trusting modes.
11173         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
11174         echo "proc_dirs='$proc_dirs'"
11175         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
11176         find $proc_dirs -exec cat '{}' \; &> /dev/null
11177
11178         # Second verifying readability.
11179         $LCTL get_param -R '*' &> /dev/null
11180
11181         # Verifing writability with badarea_io.
11182         find $proc_dirs \
11183                 -ignore_readdir_race \
11184                 -type f \
11185                 -not -name force_lbug \
11186                 -not -name changelog_mask \
11187                 -exec badarea_io '{}' \; ||
11188                         error_133 "find $proc_dirs failed"
11189 }
11190 run_test 133f "Check reads/writes of client lustre proc files with bad area io"
11191
11192 test_133g() {
11193         remote_mds_nodsh && skip "remote MDS with nodsh"
11194         remote_ost_nodsh && skip "remote OST with nodsh"
11195
11196         # eventually, this can also be replaced with "lctl get_param -R",
11197         # but not until that option is always available on the server
11198         local facet
11199         for facet in mds1 ost1; do
11200                 [ $(lustre_version_code $facet) -le $(version_code 2.5.54) ] &&
11201                         skip_noexit "Too old lustre on $facet"
11202                 local facet_proc_dirs=$(do_facet $facet \
11203                                         \\\ls -d $proc_regexp 2>/dev/null)
11204                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
11205                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
11206                 do_facet $facet find $facet_proc_dirs \
11207                         ! -name req_history \
11208                         -exec cat '{}' \\\; &> /dev/null
11209
11210                 do_facet $facet find $facet_proc_dirs \
11211                         ! -name req_history \
11212                         -type f \
11213                         -exec cat '{}' \\\; &> /dev/null ||
11214                                 error "proc file read failed"
11215
11216                 do_facet $facet find $facet_proc_dirs \
11217                         -ignore_readdir_race \
11218                         -type f \
11219                         -not -name force_lbug \
11220                         -not -name changelog_mask \
11221                         -exec badarea_io '{}' \\\; ||
11222                                 error_133 "$facet find $facet_proc_dirs failed"
11223         done
11224
11225         # remount the FS in case writes/reads /proc break the FS
11226         cleanup || error "failed to unmount"
11227         setup || error "failed to setup"
11228         true
11229 }
11230 run_test 133g "Check reads/writes of server lustre proc files with bad area io"
11231
11232 test_133h() {
11233         remote_mds_nodsh && skip "remote MDS with nodsh"
11234         remote_ost_nodsh && skip "remote OST with nodsh"
11235         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.54) ]] &&
11236                 skip "Need MDS version at least 2.9.54"
11237
11238         local facet
11239
11240         for facet in client mds1 ost1; do
11241                 local facet_proc_dirs=$(do_facet $facet \
11242                                         \\\ls -d $proc_regexp 2> /dev/null)
11243                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
11244                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
11245                 # Get the list of files that are missing the terminating newline
11246                 local missing=($(do_facet $facet \
11247                         find ${facet_proc_dirs} -type f \|              \
11248                                 while read F\; do                       \
11249                                         awk -v FS='\v' -v RS='\v\v'     \
11250                                         "'END { if(NR>0 &&              \
11251                                         \\\$NF !~ /.*\\\n\$/)           \
11252                                                 print FILENAME}'"       \
11253                                         '\$F'\;                         \
11254                                 done 2>/dev/null))
11255                 [ ${#missing[*]} -eq 0 ] ||
11256                         error "files do not end with newline: ${missing[*]}"
11257         done
11258 }
11259 run_test 133h "Proc files should end with newlines"
11260
11261 test_134a() {
11262         remote_mds_nodsh && skip "remote MDS with nodsh"
11263         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
11264                 skip "Need MDS version at least 2.7.54"
11265
11266         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
11267         cancel_lru_locks mdc
11268
11269         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
11270         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
11271         [ $unused -eq 0 ] || error "$unused locks are not cleared"
11272
11273         local nr=1000
11274         createmany -o $DIR/$tdir/f $nr ||
11275                 error "failed to create $nr files in $DIR/$tdir"
11276         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
11277
11278         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
11279         do_facet mds1 $LCTL set_param fail_loc=0x327
11280         do_facet mds1 $LCTL set_param fail_val=500
11281         touch $DIR/$tdir/m
11282
11283         echo "sleep 10 seconds ..."
11284         sleep 10
11285         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
11286
11287         do_facet mds1 $LCTL set_param fail_loc=0
11288         do_facet mds1 $LCTL set_param fail_val=0
11289         [ $lck_cnt -lt $unused ] ||
11290                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
11291
11292         rm $DIR/$tdir/m
11293         unlinkmany $DIR/$tdir/f $nr
11294 }
11295 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
11296
11297 test_134b() {
11298         remote_mds_nodsh && skip "remote MDS with nodsh"
11299         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
11300                 skip "Need MDS version at least 2.7.54"
11301
11302         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
11303         cancel_lru_locks mdc
11304
11305         local low_wm=$(do_facet mds1 $LCTL get_param -n \
11306                         ldlm.lock_reclaim_threshold_mb)
11307         # disable reclaim temporarily
11308         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
11309
11310         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
11311         do_facet mds1 $LCTL set_param fail_loc=0x328
11312         do_facet mds1 $LCTL set_param fail_val=500
11313
11314         $LCTL set_param debug=+trace
11315
11316         local nr=600
11317         createmany -o $DIR/$tdir/f $nr &
11318         local create_pid=$!
11319
11320         echo "Sleep $TIMEOUT seconds ..."
11321         sleep $TIMEOUT
11322         if ! ps -p $create_pid  > /dev/null 2>&1; then
11323                 do_facet mds1 $LCTL set_param fail_loc=0
11324                 do_facet mds1 $LCTL set_param fail_val=0
11325                 do_facet mds1 $LCTL set_param \
11326                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
11327                 error "createmany finished incorrectly!"
11328         fi
11329         do_facet mds1 $LCTL set_param fail_loc=0
11330         do_facet mds1 $LCTL set_param fail_val=0
11331         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
11332         wait $create_pid || return 1
11333
11334         unlinkmany $DIR/$tdir/f $nr
11335 }
11336 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
11337
11338 test_140() { #bug-17379
11339         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11340
11341         test_mkdir $DIR/$tdir
11342         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
11343         cp $(which stat) . || error "Copying stat to $DIR/$tdir"
11344
11345         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
11346         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
11347         local i=0
11348         while i=$((i + 1)); do
11349                 test_mkdir $i
11350                 cd $i || error "Changing to $i"
11351                 ln -s ../stat stat || error "Creating stat symlink"
11352                 # Read the symlink until ELOOP present,
11353                 # not LBUGing the system is considered success,
11354                 # we didn't overrun the stack.
11355                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
11356                 if [ $ret -ne 0 ]; then
11357                         if [ $ret -eq 40 ]; then
11358                                 break  # -ELOOP
11359                         else
11360                                 error "Open stat symlink"
11361                                         return
11362                         fi
11363                 fi
11364         done
11365         i=$((i - 1))
11366         echo "The symlink depth = $i"
11367         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
11368                                         error "Invalid symlink depth"
11369
11370         # Test recursive symlink
11371         ln -s symlink_self symlink_self
11372         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
11373         echo "open symlink_self returns $ret"
11374         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
11375 }
11376 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
11377
11378 test_150() {
11379         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11380
11381         local TF="$TMP/$tfile"
11382
11383         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
11384         cp $TF $DIR/$tfile
11385         cancel_lru_locks $OSC
11386         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
11387         remount_client $MOUNT
11388         df -P $MOUNT
11389         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
11390
11391         $TRUNCATE $TF 6000
11392         $TRUNCATE $DIR/$tfile 6000
11393         cancel_lru_locks $OSC
11394         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
11395
11396         echo "12345" >>$TF
11397         echo "12345" >>$DIR/$tfile
11398         cancel_lru_locks $OSC
11399         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
11400
11401         echo "12345" >>$TF
11402         echo "12345" >>$DIR/$tfile
11403         cancel_lru_locks $OSC
11404         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
11405
11406         rm -f $TF
11407         true
11408 }
11409 run_test 150 "truncate/append tests"
11410
11411 #LU-2902 roc_hit was not able to read all values from lproc
11412 function roc_hit_init() {
11413         local list=$(comma_list $(osts_nodes))
11414         local dir=$DIR/$tdir-check
11415         local file=$dir/$tfile
11416         local BEFORE
11417         local AFTER
11418         local idx
11419
11420         test_mkdir $dir
11421         #use setstripe to do a write to every ost
11422         for i in $(seq 0 $((OSTCOUNT-1))); do
11423                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
11424                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
11425                 idx=$(printf %04x $i)
11426                 BEFORE=$(get_osd_param $list *OST*$idx stats |
11427                         awk '$1 == "cache_access" {sum += $7}
11428                                 END { printf("%0.0f", sum) }')
11429
11430                 cancel_lru_locks osc
11431                 cat $file >/dev/null
11432
11433                 AFTER=$(get_osd_param $list *OST*$idx stats |
11434                         awk '$1 == "cache_access" {sum += $7}
11435                                 END { printf("%0.0f", sum) }')
11436
11437                 echo BEFORE:$BEFORE AFTER:$AFTER
11438                 if ! let "AFTER - BEFORE == 4"; then
11439                         rm -rf $dir
11440                         error "roc_hit is not safe to use"
11441                 fi
11442                 rm $file
11443         done
11444
11445         rm -rf $dir
11446 }
11447
11448 function roc_hit() {
11449         local list=$(comma_list $(osts_nodes))
11450         echo $(get_osd_param $list '' stats |
11451                 awk '$1 == "cache_hit" {sum += $7}
11452                         END { printf("%0.0f", sum) }')
11453 }
11454
11455 function set_cache() {
11456         local on=1
11457
11458         if [ "$2" == "off" ]; then
11459                 on=0;
11460         fi
11461         local list=$(comma_list $(osts_nodes))
11462         set_osd_param $list '' $1_cache_enable $on
11463
11464         cancel_lru_locks osc
11465 }
11466
11467 test_151() {
11468         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11469         remote_ost_nodsh && skip "remote OST with nodsh"
11470
11471         local CPAGES=3
11472         local list=$(comma_list $(osts_nodes))
11473
11474         # check whether obdfilter is cache capable at all
11475         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
11476                 skip "not cache-capable obdfilter"
11477         fi
11478
11479         # check cache is enabled on all obdfilters
11480         if get_osd_param $list '' read_cache_enable | grep 0; then
11481                 skip "oss cache is disabled"
11482         fi
11483
11484         set_osd_param $list '' writethrough_cache_enable 1
11485
11486         # check write cache is enabled on all obdfilters
11487         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
11488                 skip "oss write cache is NOT enabled"
11489         fi
11490
11491         roc_hit_init
11492
11493         #define OBD_FAIL_OBD_NO_LRU  0x609
11494         do_nodes $list $LCTL set_param fail_loc=0x609
11495
11496         # pages should be in the case right after write
11497         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
11498                 error "dd failed"
11499
11500         local BEFORE=$(roc_hit)
11501         cancel_lru_locks osc
11502         cat $DIR/$tfile >/dev/null
11503         local AFTER=$(roc_hit)
11504
11505         do_nodes $list $LCTL set_param fail_loc=0
11506
11507         if ! let "AFTER - BEFORE == CPAGES"; then
11508                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11509         fi
11510
11511         # the following read invalidates the cache
11512         cancel_lru_locks osc
11513         set_osd_param $list '' read_cache_enable 0
11514         cat $DIR/$tfile >/dev/null
11515
11516         # now data shouldn't be found in the cache
11517         BEFORE=$(roc_hit)
11518         cancel_lru_locks osc
11519         cat $DIR/$tfile >/dev/null
11520         AFTER=$(roc_hit)
11521         if let "AFTER - BEFORE != 0"; then
11522                 error "IN CACHE: before: $BEFORE, after: $AFTER"
11523         fi
11524
11525         set_osd_param $list '' read_cache_enable 1
11526         rm -f $DIR/$tfile
11527 }
11528 run_test 151 "test cache on oss and controls ==============================="
11529
11530 test_152() {
11531         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11532
11533         local TF="$TMP/$tfile"
11534
11535         # simulate ENOMEM during write
11536 #define OBD_FAIL_OST_NOMEM      0x226
11537         lctl set_param fail_loc=0x80000226
11538         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
11539         cp $TF $DIR/$tfile
11540         sync || error "sync failed"
11541         lctl set_param fail_loc=0
11542
11543         # discard client's cache
11544         cancel_lru_locks osc
11545
11546         # simulate ENOMEM during read
11547         lctl set_param fail_loc=0x80000226
11548         cmp $TF $DIR/$tfile || error "cmp failed"
11549         lctl set_param fail_loc=0
11550
11551         rm -f $TF
11552 }
11553 run_test 152 "test read/write with enomem ============================"
11554
11555 test_153() {
11556         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
11557 }
11558 run_test 153 "test if fdatasync does not crash ======================="
11559
11560 dot_lustre_fid_permission_check() {
11561         local fid=$1
11562         local ffid=$MOUNT/.lustre/fid/$fid
11563         local test_dir=$2
11564
11565         echo "stat fid $fid"
11566         stat $ffid > /dev/null || error "stat $ffid failed."
11567         echo "touch fid $fid"
11568         touch $ffid || error "touch $ffid failed."
11569         echo "write to fid $fid"
11570         cat /etc/hosts > $ffid || error "write $ffid failed."
11571         echo "read fid $fid"
11572         diff /etc/hosts $ffid || error "read $ffid failed."
11573         echo "append write to fid $fid"
11574         cat /etc/hosts >> $ffid || error "append write $ffid failed."
11575         echo "rename fid $fid"
11576         mv $ffid $test_dir/$tfile.1 &&
11577                 error "rename $ffid to $tfile.1 should fail."
11578         touch $test_dir/$tfile.1
11579         mv $test_dir/$tfile.1 $ffid &&
11580                 error "rename $tfile.1 to $ffid should fail."
11581         rm -f $test_dir/$tfile.1
11582         echo "truncate fid $fid"
11583         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
11584         echo "link fid $fid"
11585         ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
11586         if [[ $($LCTL get_param -n mdc.*-mdc-*.connect_flags) =~ acl ]]; then
11587                 echo "setfacl fid $fid"
11588                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
11589                 echo "getfacl fid $fid"
11590                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
11591         fi
11592         echo "unlink fid $fid"
11593         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
11594         echo "mknod fid $fid"
11595         mknod $ffid c 1 3 && error "mknod $ffid should fail."
11596
11597         fid=[0xf00000400:0x1:0x0]
11598         ffid=$MOUNT/.lustre/fid/$fid
11599
11600         echo "stat non-exist fid $fid"
11601         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
11602         echo "write to non-exist fid $fid"
11603         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
11604         echo "link new fid $fid"
11605         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
11606
11607         mkdir -p $test_dir/$tdir
11608         touch $test_dir/$tdir/$tfile
11609         fid=$($LFS path2fid $test_dir/$tdir)
11610         rc=$?
11611         [ $rc -ne 0 ] &&
11612                 error "error: could not get fid for $test_dir/$dir/$tfile."
11613
11614         ffid=$MOUNT/.lustre/fid/$fid
11615
11616         echo "ls $fid"
11617         ls $ffid > /dev/null || error "ls $ffid failed."
11618         echo "touch $fid/$tfile.1"
11619         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
11620
11621         echo "touch $MOUNT/.lustre/fid/$tfile"
11622         touch $MOUNT/.lustre/fid/$tfile && \
11623                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
11624
11625         echo "setxattr to $MOUNT/.lustre/fid"
11626         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
11627
11628         echo "listxattr for $MOUNT/.lustre/fid"
11629         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
11630
11631         echo "delxattr from $MOUNT/.lustre/fid"
11632         setfattr -x trusted.name1 $MOUNT/.lustre/fid
11633
11634         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
11635         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
11636                 error "touch invalid fid should fail."
11637
11638         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
11639         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
11640                 error "touch non-normal fid should fail."
11641
11642         echo "rename $tdir to $MOUNT/.lustre/fid"
11643         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
11644                 error "rename to $MOUNT/.lustre/fid should fail."
11645
11646         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
11647         then            # LU-3547
11648                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
11649                 local new_obf_mode=777
11650
11651                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
11652                 chmod $new_obf_mode $DIR/.lustre/fid ||
11653                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
11654
11655                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
11656                 [ $obf_mode -eq $new_obf_mode ] ||
11657                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
11658
11659                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
11660                 chmod $old_obf_mode $DIR/.lustre/fid ||
11661                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
11662         fi
11663
11664         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
11665         fid=$($LFS path2fid $test_dir/$tfile-2)
11666
11667         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.50) ]
11668         then # LU-5424
11669                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
11670                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
11671                         error "create lov data thru .lustre failed"
11672         fi
11673         echo "cp /etc/passwd $test_dir/$tfile-2"
11674         cp /etc/passwd $test_dir/$tfile-2 ||
11675                 error "copy to $test_dir/$tfile-2 failed."
11676         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
11677         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
11678                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
11679
11680         rm -rf $test_dir/tfile.lnk
11681         rm -rf $test_dir/$tfile-2
11682 }
11683
11684 test_154A() {
11685         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
11686                 skip "Need MDS version at least 2.4.1"
11687
11688         local tf=$DIR/$tfile
11689         touch $tf
11690
11691         local fid=$($LFS path2fid $tf)
11692         [ -z "$fid" ] && error "path2fid unable to get $tf FID"
11693
11694         # check that we get the same pathname back
11695         local found=$($LFS fid2path $MOUNT "$fid")
11696         [ -z "$found" ] && error "fid2path unable to get '$fid' path"
11697         [ "$found" == "$tf" ] ||
11698                 error "fid2path($fid=path2fid($tf)) = $found != $tf"
11699 }
11700 run_test 154A "lfs path2fid and fid2path basic checks"
11701
11702 test_154B() {
11703         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
11704                 skip "Need MDS version at least 2.4.1"
11705
11706         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
11707         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
11708         local linkea=$($LL_DECODE_LINKEA $DIR/$tdir/$tfile | grep 'pfid')
11709         [ -z "$linkea" ] && error "decode linkea $DIR/$tdir/$tfile failed"
11710
11711         local name=$(echo $linkea | awk '/pfid/ {print $5}' | sed -e "s/'//g")
11712         local PFID=$(echo $linkea | awk '/pfid/ {print $3}' | sed -e "s/,//g")
11713
11714         # check that we get the same pathname
11715         echo "PFID: $PFID, name: $name"
11716         local FOUND=$($LFS fid2path $MOUNT "$PFID")
11717         [ -z "$FOUND" ] && error "fid2path unable to get $PFID path"
11718         [ "$FOUND/$name" != "$DIR/$tdir/$tfile" ] &&
11719                 error "ll_decode_linkea has $FOUND/$name != $DIR/$tdir/$tfile"
11720
11721         rm -rf $DIR/$tdir || error "Can not delete directory $DIR/$tdir"
11722 }
11723 run_test 154B "verify the ll_decode_linkea tool"
11724
11725 test_154a() {
11726         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11727         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11728         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
11729                 skip "Need MDS version at least 2.2.51"
11730         [ -z "$(which setfacl)" ] && skip_env "must have setfacl tool"
11731
11732         cp /etc/hosts $DIR/$tfile
11733
11734         fid=$($LFS path2fid $DIR/$tfile)
11735         rc=$?
11736         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
11737
11738         dot_lustre_fid_permission_check "$fid" $DIR ||
11739                 error "dot lustre permission check $fid failed"
11740
11741         ls -a $MOUNT | grep "\.lustre" && error ".lustre should not be listed"
11742
11743         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
11744
11745         touch $MOUNT/.lustre/file &&
11746                 error "creation is not allowed under .lustre"
11747
11748         mkdir $MOUNT/.lustre/dir &&
11749                 error "mkdir is not allowed under .lustre"
11750
11751         rm -rf $DIR/$tfile
11752 }
11753 run_test 154a "Open-by-FID"
11754
11755 test_154b() {
11756         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11757         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11758         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
11759         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
11760                 skip "Need MDS version at least 2.2.51"
11761
11762         local remote_dir=$DIR/$tdir/remote_dir
11763         local MDTIDX=1
11764         local rc=0
11765
11766         mkdir -p $DIR/$tdir
11767         $LFS mkdir -i $MDTIDX $remote_dir ||
11768                 error "create remote directory failed"
11769
11770         cp /etc/hosts $remote_dir/$tfile
11771
11772         fid=$($LFS path2fid $remote_dir/$tfile)
11773         rc=$?
11774         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
11775
11776         dot_lustre_fid_permission_check "$fid" $remote_dir ||
11777                 error "dot lustre permission check $fid failed"
11778         rm -rf $DIR/$tdir
11779 }
11780 run_test 154b "Open-by-FID for remote directory"
11781
11782 test_154c() {
11783         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
11784                 skip "Need MDS version at least 2.4.1"
11785
11786         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
11787         local FID1=$($LFS path2fid $DIR/$tfile.1)
11788         local FID2=$($LFS path2fid $DIR/$tfile.2)
11789         local FID3=$($LFS path2fid $DIR/$tfile.3)
11790
11791         local N=1
11792         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
11793                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
11794                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
11795                 local want=FID$N
11796                 [ "$FID" = "${!want}" ] ||
11797                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
11798                 N=$((N + 1))
11799         done
11800
11801         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
11802         do
11803                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
11804                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
11805                 N=$((N + 1))
11806         done
11807 }
11808 run_test 154c "lfs path2fid and fid2path multiple arguments"
11809
11810 test_154d() {
11811         remote_mds_nodsh && skip "remote MDS with nodsh"
11812         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.53) ]] &&
11813                 skip "Need MDS version at least 2.5.53"
11814
11815         if remote_mds; then
11816                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
11817         else
11818                 nid="0@lo"
11819         fi
11820         local proc_ofile="mdt.*.exports.'$nid'.open_files"
11821         local fd
11822         local cmd
11823
11824         rm -f $DIR/$tfile
11825         touch $DIR/$tfile
11826
11827         local fid=$($LFS path2fid $DIR/$tfile)
11828         # Open the file
11829         fd=$(free_fd)
11830         cmd="exec $fd<$DIR/$tfile"
11831         eval $cmd
11832         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
11833         echo "$fid_list" | grep "$fid"
11834         rc=$?
11835
11836         cmd="exec $fd>/dev/null"
11837         eval $cmd
11838         if [ $rc -ne 0 ]; then
11839                 error "FID $fid not found in open files list $fid_list"
11840         fi
11841 }
11842 run_test 154d "Verify open file fid"
11843
11844 test_154e()
11845 {
11846         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.50) ]] &&
11847                 skip "Need MDS version at least 2.6.50"
11848
11849         if ls -a $MOUNT | grep -q '^\.lustre$'; then
11850                 error ".lustre returned by readdir"
11851         fi
11852 }
11853 run_test 154e ".lustre is not returned by readdir"
11854
11855 test_154f() {
11856         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11857
11858         # create parent directory on a single MDT to avoid cross-MDT hardlinks
11859         test_mkdir -p -c1 $DIR/$tdir/d
11860         # test dirs inherit from its stripe
11861         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
11862         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
11863         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
11864         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
11865         touch $DIR/f
11866
11867         # get fid of parents
11868         local FID0=$($LFS path2fid $DIR/$tdir/d)
11869         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
11870         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
11871         local FID3=$($LFS path2fid $DIR)
11872
11873         # check that path2fid --parents returns expected <parent_fid>/name
11874         # 1) test for a directory (single parent)
11875         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
11876         [ "$parent" == "$FID0/foo1" ] ||
11877                 error "expected parent: $FID0/foo1, got: $parent"
11878
11879         # 2) test for a file with nlink > 1 (multiple parents)
11880         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
11881         echo "$parent" | grep -F "$FID1/$tfile" ||
11882                 error "$FID1/$tfile not returned in parent list"
11883         echo "$parent" | grep -F "$FID2/link" ||
11884                 error "$FID2/link not returned in parent list"
11885
11886         # 3) get parent by fid
11887         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
11888         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11889         echo "$parent" | grep -F "$FID1/$tfile" ||
11890                 error "$FID1/$tfile not returned in parent list (by fid)"
11891         echo "$parent" | grep -F "$FID2/link" ||
11892                 error "$FID2/link not returned in parent list (by fid)"
11893
11894         # 4) test for entry in root directory
11895         parent=$($LFS path2fid --parents $DIR/f)
11896         echo "$parent" | grep -F "$FID3/f" ||
11897                 error "$FID3/f not returned in parent list"
11898
11899         # 5) test it on root directory
11900         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
11901                 error "$MOUNT should not have parents"
11902
11903         # enable xattr caching and check that linkea is correctly updated
11904         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
11905         save_lustre_params client "llite.*.xattr_cache" > $save
11906         lctl set_param llite.*.xattr_cache 1
11907
11908         # 6.1) linkea update on rename
11909         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
11910
11911         # get parents by fid
11912         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11913         # foo1 should no longer be returned in parent list
11914         echo "$parent" | grep -F "$FID1" &&
11915                 error "$FID1 should no longer be in parent list"
11916         # the new path should appear
11917         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
11918                 error "$FID2/$tfile.moved is not in parent list"
11919
11920         # 6.2) linkea update on unlink
11921         rm -f $DIR/$tdir/d/foo2/link
11922         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11923         # foo2/link should no longer be returned in parent list
11924         echo "$parent" | grep -F "$FID2/link" &&
11925                 error "$FID2/link should no longer be in parent list"
11926         true
11927
11928         rm -f $DIR/f
11929         restore_lustre_params < $save
11930         rm -f $save
11931 }
11932 run_test 154f "get parent fids by reading link ea"
11933
11934 test_154g()
11935 {
11936         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11937         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.92) && \
11938            $(lustre_version_code client) -gt $(version_code 2.6.99) ]] ||
11939                 skip "Need MDS version at least 2.6.92"
11940
11941         mkdir -p $DIR/$tdir
11942         llapi_fid_test -d $DIR/$tdir
11943 }
11944 run_test 154g "various llapi FID tests"
11945
11946 test_155_small_load() {
11947     local temp=$TMP/$tfile
11948     local file=$DIR/$tfile
11949
11950     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
11951         error "dd of=$temp bs=6096 count=1 failed"
11952     cp $temp $file
11953     cancel_lru_locks $OSC
11954     cmp $temp $file || error "$temp $file differ"
11955
11956     $TRUNCATE $temp 6000
11957     $TRUNCATE $file 6000
11958     cmp $temp $file || error "$temp $file differ (truncate1)"
11959
11960     echo "12345" >>$temp
11961     echo "12345" >>$file
11962     cmp $temp $file || error "$temp $file differ (append1)"
11963
11964     echo "12345" >>$temp
11965     echo "12345" >>$file
11966     cmp $temp $file || error "$temp $file differ (append2)"
11967
11968     rm -f $temp $file
11969     true
11970 }
11971
11972 test_155_big_load() {
11973         remote_ost_nodsh && skip "remote OST with nodsh"
11974
11975         local temp=$TMP/$tfile
11976         local file=$DIR/$tfile
11977
11978         free_min_max
11979         local cache_size=$(do_facet ost$((MAXI+1)) \
11980                 "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
11981         local large_file_size=$((cache_size * 2))
11982
11983         echo "OSS cache size: $cache_size KB"
11984         echo "Large file size: $large_file_size KB"
11985
11986         [ $MAXV -le $large_file_size ] &&
11987                 skip_env "max available OST size needs > $large_file_size KB"
11988
11989         $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
11990
11991         dd if=/dev/urandom of=$temp bs=$large_file_size count=1k ||
11992                 error "dd of=$temp bs=$large_file_size count=1k failed"
11993         cp $temp $file
11994         ls -lh $temp $file
11995         cancel_lru_locks osc
11996         cmp $temp $file || error "$temp $file differ"
11997
11998         rm -f $temp $file
11999         true
12000 }
12001
12002 save_writethrough() {
12003         local facets=$(get_facets OST)
12004
12005         save_lustre_params $facets "osd-*.*.writethrough_cache_enable" > $1
12006 }
12007
12008 test_155a() {
12009         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12010
12011         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12012
12013         save_writethrough $p
12014
12015         set_cache read on
12016         set_cache writethrough on
12017         test_155_small_load
12018         restore_lustre_params < $p
12019         rm -f $p
12020 }
12021 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
12022
12023 test_155b() {
12024         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12025
12026         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12027
12028         save_writethrough $p
12029
12030         set_cache read on
12031         set_cache writethrough off
12032         test_155_small_load
12033         restore_lustre_params < $p
12034         rm -f $p
12035 }
12036 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
12037
12038 test_155c() {
12039         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12040
12041         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12042
12043         save_writethrough $p
12044
12045         set_cache read off
12046         set_cache writethrough on
12047         test_155_small_load
12048         restore_lustre_params < $p
12049         rm -f $p
12050 }
12051 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
12052
12053 test_155d() {
12054         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12055
12056         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12057
12058         save_writethrough $p
12059
12060         set_cache read off
12061         set_cache writethrough off
12062         test_155_small_load
12063         restore_lustre_params < $p
12064         rm -f $p
12065 }
12066 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
12067
12068 test_155e() {
12069         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12070
12071         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12072
12073         save_writethrough $p
12074
12075         set_cache read on
12076         set_cache writethrough on
12077         test_155_big_load
12078         restore_lustre_params < $p
12079         rm -f $p
12080 }
12081 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
12082
12083 test_155f() {
12084         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12085
12086         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12087
12088         save_writethrough $p
12089
12090         set_cache read on
12091         set_cache writethrough off
12092         test_155_big_load
12093         restore_lustre_params < $p
12094         rm -f $p
12095 }
12096 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
12097
12098 test_155g() {
12099         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12100
12101         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12102
12103         save_writethrough $p
12104
12105         set_cache read off
12106         set_cache writethrough on
12107         test_155_big_load
12108         restore_lustre_params < $p
12109         rm -f $p
12110 }
12111 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
12112
12113 test_155h() {
12114         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12115
12116         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12117
12118         save_writethrough $p
12119
12120         set_cache read off
12121         set_cache writethrough off
12122         test_155_big_load
12123         restore_lustre_params < $p
12124         rm -f $p
12125 }
12126 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
12127
12128 test_156() {
12129         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12130         remote_ost_nodsh && skip "remote OST with nodsh"
12131         [ "$(facet_fstype ost1)" = "zfs" -a \
12132            $(lustre_version_code ost1 -lt $(version_code 2.6.93)) ] &&
12133                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS"
12134
12135         local CPAGES=3
12136         local BEFORE
12137         local AFTER
12138         local file="$DIR/$tfile"
12139         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12140
12141         save_writethrough $p
12142         roc_hit_init
12143
12144         log "Turn on read and write cache"
12145         set_cache read on
12146         set_cache writethrough on
12147
12148         log "Write data and read it back."
12149         log "Read should be satisfied from the cache."
12150         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12151         BEFORE=$(roc_hit)
12152         cancel_lru_locks osc
12153         cat $file >/dev/null
12154         AFTER=$(roc_hit)
12155         if ! let "AFTER - BEFORE == CPAGES"; then
12156                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12157         else
12158                 log "cache hits:: before: $BEFORE, after: $AFTER"
12159         fi
12160
12161         log "Read again; it should be satisfied from the cache."
12162         BEFORE=$AFTER
12163         cancel_lru_locks osc
12164         cat $file >/dev/null
12165         AFTER=$(roc_hit)
12166         if ! let "AFTER - BEFORE == CPAGES"; then
12167                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12168         else
12169                 log "cache hits:: before: $BEFORE, after: $AFTER"
12170         fi
12171
12172         log "Turn off the read cache and turn on the write cache"
12173         set_cache read off
12174         set_cache writethrough on
12175
12176         log "Read again; it should be satisfied from the cache."
12177         BEFORE=$(roc_hit)
12178         cancel_lru_locks osc
12179         cat $file >/dev/null
12180         AFTER=$(roc_hit)
12181         if ! let "AFTER - BEFORE == CPAGES"; then
12182                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12183         else
12184                 log "cache hits:: before: $BEFORE, after: $AFTER"
12185         fi
12186
12187         log "Read again; it should not be satisfied from the cache."
12188         BEFORE=$AFTER
12189         cancel_lru_locks osc
12190         cat $file >/dev/null
12191         AFTER=$(roc_hit)
12192         if ! let "AFTER - BEFORE == 0"; then
12193                 error "IN CACHE: before: $BEFORE, after: $AFTER"
12194         else
12195                 log "cache hits:: before: $BEFORE, after: $AFTER"
12196         fi
12197
12198         log "Write data and read it back."
12199         log "Read should be satisfied from the cache."
12200         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12201         BEFORE=$(roc_hit)
12202         cancel_lru_locks osc
12203         cat $file >/dev/null
12204         AFTER=$(roc_hit)
12205         if ! let "AFTER - BEFORE == CPAGES"; then
12206                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12207         else
12208                 log "cache hits:: before: $BEFORE, after: $AFTER"
12209         fi
12210
12211         log "Read again; it should not be satisfied from the cache."
12212         BEFORE=$AFTER
12213         cancel_lru_locks osc
12214         cat $file >/dev/null
12215         AFTER=$(roc_hit)
12216         if ! let "AFTER - BEFORE == 0"; then
12217                 error "IN CACHE: before: $BEFORE, after: $AFTER"
12218         else
12219                 log "cache hits:: before: $BEFORE, after: $AFTER"
12220         fi
12221
12222         log "Turn off read and write cache"
12223         set_cache read off
12224         set_cache writethrough off
12225
12226         log "Write data and read it back"
12227         log "It should not be satisfied from the cache."
12228         rm -f $file
12229         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12230         cancel_lru_locks osc
12231         BEFORE=$(roc_hit)
12232         cat $file >/dev/null
12233         AFTER=$(roc_hit)
12234         if ! let "AFTER - BEFORE == 0"; then
12235                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
12236         else
12237                 log "cache hits:: before: $BEFORE, after: $AFTER"
12238         fi
12239
12240         log "Turn on the read cache and turn off the write cache"
12241         set_cache read on
12242         set_cache writethrough off
12243
12244         log "Write data and read it back"
12245         log "It should not be satisfied from the cache."
12246         rm -f $file
12247         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12248         BEFORE=$(roc_hit)
12249         cancel_lru_locks osc
12250         cat $file >/dev/null
12251         AFTER=$(roc_hit)
12252         if ! let "AFTER - BEFORE == 0"; then
12253                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
12254         else
12255                 log "cache hits:: before: $BEFORE, after: $AFTER"
12256         fi
12257
12258         log "Read again; it should be satisfied from the cache."
12259         BEFORE=$(roc_hit)
12260         cancel_lru_locks osc
12261         cat $file >/dev/null
12262         AFTER=$(roc_hit)
12263         if ! let "AFTER - BEFORE == CPAGES"; then
12264                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12265         else
12266                 log "cache hits:: before: $BEFORE, after: $AFTER"
12267         fi
12268
12269         restore_lustre_params < $p
12270         rm -f $p $file
12271 }
12272 run_test 156 "Verification of tunables"
12273
12274 test_160a() {
12275         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12276         remote_mds_nodsh && skip "remote MDS with nodsh"
12277         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
12278                 skip "Need MDS version at least 2.2.0"
12279
12280         changelog_register || error "changelog_register failed"
12281         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
12282         changelog_users $SINGLEMDS | grep -q $cl_user ||
12283                 error "User $cl_user not found in changelog_users"
12284
12285         # change something
12286         test_mkdir -p $DIR/$tdir/pics/2008/zachy
12287         changelog_clear 0 || error "changelog_clear failed"
12288         touch $DIR/$tdir/pics/2008/zachy/$tfile                 # open 1
12289         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg       # open 2
12290         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
12291         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
12292         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
12293         rm $DIR/$tdir/pics/desktop.jpg
12294
12295         changelog_dump | tail -10
12296
12297         echo "verifying changelog mask"
12298         changelog_chmask "-MKDIR"
12299         changelog_chmask "-CLOSE"
12300
12301         test_mkdir -p $DIR/$tdir/pics/zach/sofia                # not logged
12302         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # not logged
12303
12304         changelog_chmask "+MKDIR"
12305         changelog_chmask "+CLOSE"
12306
12307         test_mkdir -p $DIR/$tdir/pics/2008/sofia                # mkdir 1
12308         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # open 3
12309
12310         changelog_dump | tail -10
12311         MKDIRS=$(changelog_dump | grep -c "MKDIR")
12312         CLOSES=$(changelog_dump | grep -c "CLOSE")
12313         [ $MKDIRS -eq 1 ] || error "MKDIR changelog mask count $MKDIRS != 1"
12314         [ $CLOSES -eq 3 ] || error "CLOSE changelog mask count $CLOSES != 3"
12315
12316         # verify contents
12317         echo "verifying target fid"
12318         local fidc=$(changelog_extract_field "CREAT" "$tfile" "t=")
12319         local fidf=$($LFS path2fid $DIR/$tdir/pics/zach/$tfile)
12320         [ "$fidc" == "$fidf" ] ||
12321                 error "changelog '$tfile' fid $fidc != file fid $fidf"
12322         echo "verifying parent fid"
12323         # The FID returned from the Changelog may be the directory shard on
12324         # a different MDT, and not the FID returned by path2fid on the parent.
12325         # Instead of comparing FIDs, verify that fid2path(fidp) is correct,
12326         # since this is what will matter when recreating this file in the tree.
12327         local fidp=$(changelog_extract_field "CREAT" "$tfile" "p=")
12328         local pathp=$($LFS fid2path $MOUNT "$fidp")
12329         [ "${pathp%/}" == "$DIR/$tdir/pics/zach" ] ||
12330                 error "changelog fid2path($fidc) $pathp != $DIR/$tdir/pics/zach"
12331
12332         echo "getting records for $cl_user"
12333         changelog_users $SINGLEMDS
12334         local user_rec1=$(changelog_user_rec $SINGLEMDS $cl_user)
12335         local nclr=3
12336         __changelog_clear $SINGLEMDS $cl_user +$nclr ||
12337                 error "changelog_clear failed"
12338         local user_rec2=$(changelog_user_rec $SINGLEMDS $cl_user)
12339         echo "verifying user clear: $user_rec1 + $nclr == $user_rec2"
12340         [ $user_rec2 == $((user_rec1 + nclr)) ] ||
12341                 error "user index expect $user_rec1 + $nclr != $user_rec2"
12342
12343         local min0_rec=$(changelog_users $SINGLEMDS |
12344                 awk 'min == "" || $2 < min { min = $2 }; END { print min }')
12345         local first_rec=$($LFS changelog $(facet_svc $SINGLEMDS) |
12346                           awk '{ print $1; exit; }')
12347
12348         changelog_dump | tail -n 5
12349         echo "verifying user min purge: $min0_rec + 1 == $first_rec"
12350         [ $first_rec == $((min0_rec + 1)) ] ||
12351                 error "first index should be $min0_rec + 1 not $first_rec"
12352
12353         # LU-3446 changelog index reset on MDT restart
12354         local cur_rec1=$(changelog_users $SINGLEMDS |
12355                          awk '/^current.index:/ { print $NF }')
12356         changelog_clear 0 ||
12357                 error "clear all changelog records for $cl_user failed"
12358         stop $SINGLEMDS || error "Fail to stop $SINGLEMDS"
12359         start $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) $MDS_MOUNT_OPTS ||
12360                 error "Fail to start $SINGLEMDS"
12361         local cur_rec2=$(changelog_users $SINGLEMDS |
12362                          awk '/^current.index:/ { print $NF }')
12363         echo "verifying index survives MDT restart: $cur_rec1 == $cur_rec2"
12364         [ $cur_rec1 == $cur_rec2 ] ||
12365                 error "current index should be $cur_rec1 not $cur_rec2"
12366
12367         echo "verifying users from this test are deregistered"
12368         changelog_deregister || error "changelog_deregister failed"
12369         changelog_users $SINGLEMDS | grep -q $cl_user &&
12370                 error "User '$cl_user' still in changelog_users"
12371
12372         # lctl get_param -n mdd.*.changelog_users
12373         # current index: 144
12374         # ID    index (idle seconds)
12375         # cl3   144 (2)
12376         if ! changelog_users $SINGLEMDS | grep "^cl"; then
12377                 # this is the normal case where all users were deregistered
12378                 # make sure no new records are added when no users are present
12379                 local last_rec1=$(changelog_users $SINGLEMDS |
12380                                   awk '/^current.index:/ { print $NF }')
12381                 touch $DIR/$tdir/chloe
12382                 local last_rec2=$(changelog_users $SINGLEMDS |
12383                                   awk '/^current.index:/ { print $NF }')
12384                 echo "verify changelogs are off: $last_rec1 == $last_rec2"
12385                 [ $last_rec1 == $last_rec2 ] || error "changelogs not off"
12386         else
12387                 # any changelog users must be leftovers from a previous test
12388                 changelog_users $SINGLEMDS
12389                 echo "other changelog users; can't verify off"
12390         fi
12391 }
12392 run_test 160a "changelog sanity"
12393
12394 test_160b() { # LU-3587
12395         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12396         remote_mds_nodsh && skip "remote MDS with nodsh"
12397         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
12398                 skip "Need MDS version at least 2.2.0"
12399
12400         changelog_register || error "changelog_register failed"
12401         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
12402         changelog_users $SINGLEMDS | grep -q $cl_user ||
12403                 error "User '$cl_user' not found in changelog_users"
12404
12405         local longname1=$(str_repeat a 255)
12406         local longname2=$(str_repeat b 255)
12407
12408         cd $DIR
12409         echo "creating very long named file"
12410         touch $longname1 || error "create of '$longname1' failed"
12411         echo "renaming very long named file"
12412         mv $longname1 $longname2
12413
12414         changelog_dump | grep RENME | tail -n 5
12415         rm -f $longname2
12416 }
12417 run_test 160b "Verify that very long rename doesn't crash in changelog"
12418
12419 test_160c() {
12420         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12421         remote_mds_nodsh && skip "remote MDS with nodsh"
12422
12423         local rc=0
12424         local server_version=$(lustre_version_code $SINGLEMDS)
12425
12426         [[ $server_version -gt $(version_code 2.5.57) ]] ||
12427                 [[ $server_version -gt $(version_code 2.5.1) &&
12428                    $server_version -lt $(version_code 2.5.50) ]] ||
12429                 skip "Need MDS version at least 2.5.58 or 2.5.2+"
12430
12431         # Registration step
12432         changelog_register || error "changelog_register failed"
12433
12434         rm -rf $DIR/$tdir
12435         mkdir -p $DIR/$tdir
12436         $MCREATE $DIR/$tdir/foo_160c
12437         changelog_chmask "-TRUNC"
12438         $TRUNCATE $DIR/$tdir/foo_160c 200
12439         changelog_chmask "+TRUNC"
12440         $TRUNCATE $DIR/$tdir/foo_160c 199
12441         changelog_dump | tail -n 5
12442         local truncs=$(changelog_dump | tail -n 5 | grep -c TRUNC)
12443         [ $truncs -eq 1 ] || error "TRUNC changelog mask count $truncs != 1"
12444 }
12445 run_test 160c "verify that changelog log catch the truncate event"
12446
12447 test_160d() {
12448         remote_mds_nodsh && skip "remote MDS with nodsh"
12449         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
12450         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12451         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.60) ]] ||
12452                 skip "Need MDS version at least 2.7.60"
12453
12454         # Registration step
12455         changelog_register || error "changelog_register failed"
12456
12457         mkdir -p $DIR/$tdir/migrate_dir
12458         changelog_clear 0 || error "changelog_clear failed"
12459
12460         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
12461         changelog_dump | tail -n 5
12462         local migrates=$(changelog_dump | grep -c "MIGRT")
12463         [ $migrates -eq 1 ] || error "MIGRATE changelog count $migrates != 1"
12464 }
12465 run_test 160d "verify that changelog log catch the migrate event"
12466
12467 test_160e() {
12468         remote_mds_nodsh && skip "remote MDS with nodsh"
12469
12470         # Create a user
12471         changelog_register || error "changelog_register failed"
12472
12473         # Delete a future user (expect fail)
12474         local MDT0=$(facet_svc $SINGLEMDS)
12475         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister "cl77"
12476         local rc=$?
12477
12478         if [ $rc -eq 0 ]; then
12479                 error "Deleted non-existant user cl77"
12480         elif [ $rc -ne 2 ]; then
12481                 error "changelog_deregister failed with $rc, expect 2 (ENOENT)"
12482         fi
12483
12484         # Clear to a bad index (1 billion should be safe)
12485         $LFS changelog_clear $MDT0 "${CL_USERS[$SINGLEMDS]%% *}" 1000000000
12486         rc=$?
12487
12488         if [ $rc -eq 0 ]; then
12489                 error "Successfully cleared to invalid CL index"
12490         elif [ $rc -ne 22 ]; then
12491                 error "changelog_clear failed with $rc, expected 22 (EINVAL)"
12492         fi
12493 }
12494 run_test 160e "changelog negative testing (should return errors)"
12495
12496 test_160f() {
12497         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12498         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.56) ]] ||
12499                 { skip "Need MDS version at least 2.10.56"; return 0; }
12500
12501         local mdts=$(comma_list $(mdts_nodes))
12502
12503         # Create a user
12504         changelog_register || error "first changelog_register failed"
12505         changelog_register || error "second changelog_register failed"
12506         local cl_users
12507         declare -A cl_user1
12508         declare -A cl_user2
12509         local user_rec1
12510         local user_rec2
12511         local i
12512
12513         # generate some changelog records to accumulate on each MDT
12514         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "test_mkdir $tdir failed"
12515         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12516                 error "create $DIR/$tdir/$tfile failed"
12517
12518         # check changelogs have been generated
12519         local nbcl=$(changelog_dump | wc -l)
12520         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12521
12522         for param in "changelog_max_idle_time=10" \
12523                      "changelog_gc=1" \
12524                      "changelog_min_gc_interval=2" \
12525                      "changelog_min_free_cat_entries=3"; do
12526                 local MDT0=$(facet_svc $SINGLEMDS)
12527                 local var="${param%=*}"
12528                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12529
12530                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12531                 do_nodes $mdts $LCTL set_param mdd.*.$param
12532         done
12533
12534         # force cl_user2 to be idle (1st part)
12535         sleep 9
12536
12537         # simulate changelog catalog almost full
12538         #define OBD_FAIL_CAT_FREE_RECORDS       0x1313
12539         do_nodes $mdts $LCTL set_param fail_loc=0x1313 fail_val=3
12540
12541         for i in $(seq $MDSCOUNT); do
12542                 cl_users=(${CL_USERS[mds$i]})
12543                 cl_user1[mds$i]="${cl_users[0]}"
12544                 cl_user2[mds$i]="${cl_users[1]}"
12545
12546                 [ -n "${cl_user1[mds$i]}" ] ||
12547                         error "mds$i: no user registered"
12548                 [ -n "${cl_user2[mds$i]}" ] ||
12549                         error "mds$i: only ${cl_user2[mds$i]} is registered"
12550
12551                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12552                 [ -n "$user_rec1" ] ||
12553                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12554                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12555                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12556                 [ -n "$user_rec2" ] ||
12557                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12558                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12559                      "$user_rec1 + 2 == $user_rec2"
12560                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12561                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12562                               "$user_rec1 + 2, but is $user_rec2"
12563                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12564                 [ -n "$user_rec2" ] ||
12565                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12566                 [ $user_rec1 == $user_rec2 ] ||
12567                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12568                               "$user_rec1, but is $user_rec2"
12569         done
12570
12571         # force cl_user2 to be idle (2nd part) and to reach
12572         # changelog_max_idle_time
12573         sleep 2
12574
12575         # generate one more changelog to trigger fail_loc
12576         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12577                 error "create $DIR/$tdir/${tfile}bis failed"
12578
12579         # ensure gc thread is done
12580         for i in $(mdts_nodes); do
12581                 wait_update $i \
12582                         "ps -e -o comm= | grep chlg_gc_thread" "" 20 ||
12583                         error "$i: GC-thread not done"
12584         done
12585
12586         local first_rec
12587         for i in $(seq $MDSCOUNT); do
12588                 # check cl_user1 still registered
12589                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12590                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12591                 # check cl_user2 unregistered
12592                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12593                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12594
12595                 # check changelogs are present and starting at $user_rec1 + 1
12596                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12597                 [ -n "$user_rec1" ] ||
12598                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12599                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12600                             awk '{ print $1; exit; }')
12601
12602                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12603                 [ $((user_rec1 + 1)) == $first_rec ] ||
12604                         error "mds$i: first index should be $user_rec1 + 1, " \
12605                               "but is $first_rec"
12606         done
12607 }
12608 run_test 160f "changelog garbage collect (timestamped users)"
12609
12610 test_160g() {
12611         remote_mds_nodsh && skip "remote MDS with nodsh"
12612         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.56) ]] ||
12613                 skip "Need MDS version at least 2.10.56"
12614
12615         local mdts=$(comma_list $(mdts_nodes))
12616
12617         #define OBD_FAIL_TIME_IN_CHLOG_USER     0x1314
12618         do_nodes $mdts $LCTL set_param fail_loc=0x1314
12619
12620         # Create a user
12621         changelog_register || error "first changelog_register failed"
12622         changelog_register || error "second changelog_register failed"
12623         local cl_users
12624         declare -A cl_user1
12625         declare -A cl_user2
12626         local user_rec1
12627         local user_rec2
12628         local i
12629
12630         # generate some changelog records to accumulate on each MDT
12631         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
12632         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12633                 error "create $DIR/$tdir/$tfile failed"
12634
12635         # check changelogs have been generated
12636         local nbcl=$(changelog_dump | wc -l)
12637         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12638
12639         # reduce the max_idle_indexes value to make sure we exceed it
12640         max_ndx=$((nbcl / 2 - 1))
12641
12642         for param in "changelog_max_idle_indexes=$max_ndx" \
12643                      "changelog_gc=1" \
12644                      "changelog_min_gc_interval=2" \
12645                      "changelog_min_free_cat_entries=3"; do
12646                 local MDT0=$(facet_svc $SINGLEMDS)
12647                 local var="${param%=*}"
12648                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12649
12650                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12651                 do_nodes $mdts $LCTL set_param mdd.*.$param ||
12652                         error "unable to set mdd.*.$param"
12653         done
12654
12655         # simulate changelog catalog almost full
12656         #define OBD_FAIL_CAT_FREE_RECORDS       0x1313
12657         do_nodes $mdts $LCTL set_param fail_loc=0x1313 fail_val=3
12658
12659         for i in $(seq $MDSCOUNT); do
12660                 cl_users=(${CL_USERS[mds$i]})
12661                 cl_user1[mds$i]="${cl_users[0]}"
12662                 cl_user2[mds$i]="${cl_users[1]}"
12663
12664                 [ -n "${cl_user1[mds$i]}" ] ||
12665                         error "mds$i: no user registered"
12666                 [ -n "${cl_user2[mds$i]}" ] ||
12667                         error "mds$i: only ${cl_user1[mds$i]} is registered"
12668
12669                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12670                 [ -n "$user_rec1" ] ||
12671                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12672                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12673                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12674                 [ -n "$user_rec2" ] ||
12675                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12676                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12677                      "$user_rec1 + 2 == $user_rec2"
12678                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12679                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12680                               "$user_rec1 + 2, but is $user_rec2"
12681                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12682                 [ -n "$user_rec2" ] ||
12683                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12684                 [ $user_rec1 == $user_rec2 ] ||
12685                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12686                               "$user_rec1, but is $user_rec2"
12687         done
12688
12689         # ensure we are past the previous changelog_min_gc_interval set above
12690         sleep 2
12691
12692         # generate one more changelog to trigger fail_loc
12693         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12694                 error "create $DIR/$tdir/${tfile}bis failed"
12695
12696         # ensure gc thread is done
12697         for i in $(mdts_nodes); do
12698                 wait_update $i \
12699                         "ps -e -o comm= | grep chlg_gc_thread" "" 20 ||
12700                         error "$i: GC-thread not done"
12701         done
12702
12703         local first_rec
12704         for i in $(seq $MDSCOUNT); do
12705                 # check cl_user1 still registered
12706                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12707                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12708                 # check cl_user2 unregistered
12709                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12710                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12711
12712                 # check changelogs are present and starting at $user_rec1 + 1
12713                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12714                 [ -n "$user_rec1" ] ||
12715                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12716                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12717                             awk '{ print $1; exit; }')
12718
12719                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12720                 [ $((user_rec1 + 1)) == $first_rec ] ||
12721                         error "mds$i: first index should be $user_rec1 + 1, " \
12722                               "but is $first_rec"
12723         done
12724 }
12725 run_test 160g "changelog garbage collect (old users)"
12726
12727 test_160h() {
12728         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12729         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.56) ]] ||
12730                 { skip "Need MDS version at least 2.10.56"; return 0; }
12731
12732         local mdts=$(comma_list $(mdts_nodes))
12733
12734         # Create a user
12735         changelog_register || error "first changelog_register failed"
12736         changelog_register || error "second changelog_register failed"
12737         local cl_users
12738         declare -A cl_user1
12739         declare -A cl_user2
12740         local user_rec1
12741         local user_rec2
12742         local i
12743
12744         # generate some changelog records to accumulate on each MDT
12745         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "test_mkdir $tdir failed"
12746         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12747                 error "create $DIR/$tdir/$tfile failed"
12748
12749         # check changelogs have been generated
12750         local nbcl=$(changelog_dump | wc -l)
12751         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12752
12753         for param in "changelog_max_idle_time=10" \
12754                      "changelog_gc=1" \
12755                      "changelog_min_gc_interval=2"; do
12756                 local MDT0=$(facet_svc $SINGLEMDS)
12757                 local var="${param%=*}"
12758                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12759
12760                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12761                 do_nodes $mdts $LCTL set_param mdd.*.$param
12762         done
12763
12764         # force cl_user2 to be idle (1st part)
12765         sleep 9
12766
12767         for i in $(seq $MDSCOUNT); do
12768                 cl_users=(${CL_USERS[mds$i]})
12769                 cl_user1[mds$i]="${cl_users[0]}"
12770                 cl_user2[mds$i]="${cl_users[1]}"
12771
12772                 [ -n "${cl_user1[mds$i]}" ] ||
12773                         error "mds$i: no user registered"
12774                 [ -n "${cl_user2[mds$i]}" ] ||
12775                         error "mds$i: only ${cl_user2[mds$i]} is registered"
12776
12777                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12778                 [ -n "$user_rec1" ] ||
12779                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12780                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12781                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12782                 [ -n "$user_rec2" ] ||
12783                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12784                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12785                      "$user_rec1 + 2 == $user_rec2"
12786                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12787                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12788                               "$user_rec1 + 2, but is $user_rec2"
12789                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12790                 [ -n "$user_rec2" ] ||
12791                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12792                 [ $user_rec1 == $user_rec2 ] ||
12793                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12794                               "$user_rec1, but is $user_rec2"
12795         done
12796
12797         # force cl_user2 to be idle (2nd part) and to reach
12798         # changelog_max_idle_time
12799         sleep 2
12800
12801         # force each GC-thread start and block then
12802         # one per MDT/MDD, set fail_val accordingly
12803         #define OBD_FAIL_FORCE_GC_THREAD 0x1316
12804         do_nodes $mdts $LCTL set_param fail_loc=0x1316
12805
12806         # generate more changelogs to trigger fail_loc
12807         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12808                 error "create $DIR/$tdir/${tfile}bis failed"
12809
12810         # stop MDT to stop GC-thread, should be done in back-ground as it will
12811         # block waiting for the thread to be released and exit
12812         declare -A stop_pids
12813         for i in $(seq $MDSCOUNT); do
12814                 stop mds$i &
12815                 stop_pids[mds$i]=$!
12816         done
12817
12818         for i in $(mdts_nodes); do
12819                 local facet
12820                 local nb=0
12821                 local facets=$(facets_up_on_host $i)
12822
12823                 for facet in ${facets//,/ }; do
12824                         if [[ $facet == mds* ]]; then
12825                                 nb=$((nb + 1))
12826                         fi
12827                 done
12828                 # ensure each MDS's gc threads are still present and all in "R"
12829                 # state (OBD_FAIL_FORCE_GC_THREAD effect!)
12830                 [[ $(do_node $i pgrep chlg_gc_thread | wc -l) -eq $nb ]] ||
12831                         error "$i: expected $nb GC-thread"
12832                 wait_update $i \
12833                         "ps -C chlg_gc_thread -o state --no-headers | uniq" \
12834                         "R" 20 ||
12835                         error "$i: GC-thread not found in R-state"
12836                 # check umounts of each MDT on MDS have reached kthread_stop()
12837                 [[ $(do_node $i pgrep umount | wc -l) -eq $nb ]] ||
12838                         error "$i: expected $nb umount"
12839                 wait_update $i \
12840                         "ps -C umount -o state --no-headers | uniq" "D" 20 ||
12841                         error "$i: umount not found in D-state"
12842         done
12843
12844         # release all GC-threads
12845         do_nodes $mdts $LCTL set_param fail_loc=0
12846
12847         # wait for MDT stop to complete
12848         for i in $(seq $MDSCOUNT); do
12849                 wait ${stop_pids[mds$i]} || error "mds$i: stop failed"
12850         done
12851
12852         # XXX
12853         # may try to check if any orphan changelog records are present
12854         # via ldiskfs/zfs and llog_reader...
12855
12856         # re-start/mount MDTs
12857         for i in $(seq $MDSCOUNT); do
12858                 start mds$i $(mdsdevname $i) $MDS_MOUNT_OPTS ||
12859                         error "Fail to start mds$i"
12860         done
12861
12862         local first_rec
12863         for i in $(seq $MDSCOUNT); do
12864                 # check cl_user1 still registered
12865                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12866                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12867                 # check cl_user2 unregistered
12868                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12869                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12870
12871                 # check changelogs are present and starting at $user_rec1 + 1
12872                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12873                 [ -n "$user_rec1" ] ||
12874                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12875                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12876                             awk '{ print $1; exit; }')
12877
12878                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12879                 [ $((user_rec1 + 1)) == $first_rec ] ||
12880                         error "mds$i: first index should be $user_rec1 + 1, " \
12881                               "but is $first_rec"
12882         done
12883 }
12884 run_test 160h "changelog gc thread stop upon umount, orphan records delete " \
12885               "during mount"
12886
12887 test_160i() {
12888
12889         local mdts=$(comma_list $(mdts_nodes))
12890
12891         changelog_register || error "first changelog_register failed"
12892
12893         # generate some changelog records to accumulate on each MDT
12894         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
12895         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12896                 error "create $DIR/$tdir/$tfile failed"
12897
12898         # check changelogs have been generated
12899         local nbcl=$(changelog_dump | wc -l)
12900         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12901
12902         # simulate race between register and unregister
12903         # XXX as fail_loc is set per-MDS, with DNE configs the race
12904         # simulation will only occur for one MDT per MDS and for the
12905         # others the normal race scenario will take place
12906         #define CFS_FAIL_CHLOG_USER_REG_UNREG_RACE          0x1315
12907         do_nodes $mdts $LCTL set_param fail_loc=0x10001315
12908         do_nodes $mdts $LCTL set_param fail_val=1
12909
12910         # unregister 1st user
12911         changelog_deregister &
12912         local pid1=$!
12913         # wait some time for deregister work to reach race rdv
12914         sleep 2
12915         # register 2nd user
12916         changelog_register || error "2nd user register failed"
12917
12918         wait $pid1 || error "1st user deregister failed"
12919
12920         local i
12921         local last_rec
12922         declare -A LAST_REC
12923         for i in $(seq $MDSCOUNT); do
12924                 if changelog_users mds$i | grep "^cl"; then
12925                         # make sure new records are added with one user present
12926                         LAST_REC[mds$i]=$(changelog_users $SINGLEMDS |
12927                                           awk '/^current.index:/ { print $NF }')
12928                 else
12929                         error "mds$i has no user registered"
12930                 fi
12931         done
12932
12933         # generate more changelog records to accumulate on each MDT
12934         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12935                 error "create $DIR/$tdir/${tfile}bis failed"
12936
12937         for i in $(seq $MDSCOUNT); do
12938                 last_rec=$(changelog_users $SINGLEMDS |
12939                            awk '/^current.index:/ { print $NF }')
12940                 echo "verify changelogs are on: $last_rec != ${LAST_REC[mds$i]}"
12941                 [ $last_rec != ${LAST_REC[mds$i]} ] ||
12942                         error "changelogs are off on mds$i"
12943         done
12944 }
12945 run_test 160i "changelog user register/unregister race"
12946
12947 test_161a() {
12948         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12949
12950         test_mkdir -c1 $DIR/$tdir
12951         cp /etc/hosts $DIR/$tdir/$tfile
12952         test_mkdir -c1 $DIR/$tdir/foo1
12953         test_mkdir -c1 $DIR/$tdir/foo2
12954         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
12955         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
12956         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
12957         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
12958         local FID=$($LFS path2fid $DIR/$tdir/$tfile | 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 $DIR/$tdir/foo2/zachary
12965         # last
12966         rm $DIR/$tdir/foo2/thor
12967         # first
12968         rm $DIR/$tdir/$tfile
12969         # rename
12970         mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
12971         [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ] &&
12972                 { $LFS fid2path $DIR $FID; error "bad link rename"; }
12973         rm $DIR/$tdir/foo2/maggie
12974
12975         # overflow the EA
12976         local longname=$tfile.avg_len_is_thirty_two_
12977         stack_trap "unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
12978                 error_noexit 'failed to unlink many hardlinks'" EXIT
12979         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
12980                 error "failed to hardlink many files"
12981         links=$($LFS fid2path $DIR $FID | wc -l)
12982         echo -n "${links}/1000 links in link EA"
12983         [[ $links -gt 60 ]] || error "expected at least 60 links in link EA"
12984 }
12985 run_test 161a "link ea sanity"
12986
12987 test_161b() {
12988         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12989         [ $MDSCOUNT -lt 2 ] && skip_env "skipping remote directory test"
12990
12991         local MDTIDX=1
12992         local remote_dir=$DIR/$tdir/remote_dir
12993
12994         mkdir -p $DIR/$tdir
12995         $LFS mkdir -i $MDTIDX $remote_dir ||
12996                 error "create remote directory failed"
12997
12998         cp /etc/hosts $remote_dir/$tfile
12999         mkdir -p $remote_dir/foo1
13000         mkdir -p $remote_dir/foo2
13001         ln $remote_dir/$tfile $remote_dir/foo1/sofia
13002         ln $remote_dir/$tfile $remote_dir/foo2/zachary
13003         ln $remote_dir/$tfile $remote_dir/foo1/luna
13004         ln $remote_dir/$tfile $remote_dir/foo2/thor
13005
13006         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
13007                      tr -d ']')
13008         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
13009                 $LFS fid2path $DIR $FID
13010                 error "bad link ea"
13011         fi
13012         # middle
13013         rm $remote_dir/foo2/zachary
13014         # last
13015         rm $remote_dir/foo2/thor
13016         # first
13017         rm $remote_dir/$tfile
13018         # rename
13019         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
13020         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
13021         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
13022                 $LFS fid2path $DIR $FID
13023                 error "bad link rename"
13024         fi
13025         rm $remote_dir/foo2/maggie
13026
13027         # overflow the EA
13028         local longname=filename_avg_len_is_thirty_two_
13029         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
13030                 error "failed to hardlink many files"
13031         links=$($LFS fid2path $DIR $FID | wc -l)
13032         echo -n "${links}/1000 links in link EA"
13033         [[ ${links} -gt 60 ]] ||
13034                 error "expected at least 60 links in link EA"
13035         unlinkmany $remote_dir/foo2/$longname 1000 ||
13036         error "failed to unlink many hardlinks"
13037 }
13038 run_test 161b "link ea sanity under remote directory"
13039
13040 test_161c() {
13041         remote_mds_nodsh && skip "remote MDS with nodsh"
13042         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13043         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
13044                 skip "Need MDS version at least 2.1.5"
13045
13046         # define CLF_RENAME_LAST 0x0001
13047         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
13048         changelog_register || error "changelog_register failed"
13049
13050         rm -rf $DIR/$tdir
13051         test_mkdir -i $((MDSCOUNT - 1)) $DIR/$tdir
13052         touch $DIR/$tdir/foo_161c
13053         touch $DIR/$tdir/bar_161c
13054         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
13055         changelog_dump | grep RENME | tail -n 5
13056         local flags=$(changelog_dump | grep "RENME.*bar_161c" | cut -f5 -d' ')
13057         changelog_clear 0 || error "changelog_clear failed"
13058         if [ x$flags != "x0x1" ]; then
13059                 error "flag $flags is not 0x1"
13060         fi
13061
13062         echo "rename overwrite target with nlink = 1, changelog flags=$flags"
13063         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
13064         touch $DIR/$tdir/foo_161c
13065         touch $DIR/$tdir/bar_161c
13066         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
13067         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
13068         changelog_dump | grep RENME | tail -n 5
13069         flags=$(changelog_dump | grep "RENME.*bar_161c" | cut -f5 -d' ')
13070         changelog_clear 0 || error "changelog_clear failed"
13071         if [ x$flags != "x0x0" ]; then
13072                 error "flag $flags is not 0x0"
13073         fi
13074         echo "rename overwrite a target having nlink > 1," \
13075                 "changelog record has flags of $flags"
13076
13077         # rename doesn't overwrite a target (changelog flag 0x0)
13078         touch $DIR/$tdir/foo_161c
13079         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
13080         changelog_dump | grep RENME | tail -n 5
13081         flags=$(changelog_dump | grep RENME | tail -1 | cut -f5 -d' ')
13082         changelog_clear 0 || error "changelog_clear failed"
13083         if [ x$flags != "x0x0" ]; then
13084                 error "flag $flags is not 0x0"
13085         fi
13086         echo "rename doesn't overwrite a target," \
13087                 "changelog record has flags of $flags"
13088
13089         # define CLF_UNLINK_LAST 0x0001
13090         # unlink a file having nlink = 1 (changelog flag 0x1)
13091         rm -f $DIR/$tdir/foo2_161c
13092         changelog_dump | grep UNLNK | tail -n 5
13093         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
13094         changelog_clear 0 || error "changelog_clear failed"
13095         if [ x$flags != "x0x1" ]; then
13096                 error "flag $flags is not 0x1"
13097         fi
13098         echo "unlink a file having nlink = 1," \
13099                 "changelog record has flags of $flags"
13100
13101         # unlink a file having nlink > 1 (changelog flag 0x0)
13102         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
13103         rm -f $DIR/$tdir/foobar_161c
13104         changelog_dump | grep UNLNK | tail -n 5
13105         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
13106         changelog_clear 0 || error "changelog_clear failed"
13107         if [ x$flags != "x0x0" ]; then
13108                 error "flag $flags is not 0x0"
13109         fi
13110         echo "unlink a file having nlink > 1, changelog record flags '$flags'"
13111 }
13112 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
13113
13114 test_161d() {
13115         remote_mds_nodsh && skip "remote MDS with nodsh"
13116
13117         local pid
13118         local fid
13119
13120         changelog_register || error "changelog_register failed"
13121
13122         # work in a standalone dir to avoid locking on $DIR/$MOUNT to
13123         # interfer with $MOUNT/.lustre/fid/ access
13124         mkdir $DIR/$tdir
13125         [[ $? -eq 0 ]] || error "mkdir failed"
13126
13127         #define OBD_FAIL_LLITE_CREATE_NODE_PAUSE 0x140c | OBD_FAIL_ONCE
13128         $LCTL set_param fail_loc=0x8000140c
13129         # 5s pause
13130         $LCTL set_param fail_val=5
13131
13132         # create file
13133         echo foofoo > $DIR/$tdir/$tfile &
13134         pid=$!
13135
13136         # wait for create to be delayed
13137         sleep 2
13138
13139         ps -p $pid
13140         [[ $? -eq 0 ]] || error "create should be blocked"
13141
13142         local tempfile=$(mktemp)
13143         fid=$(changelog_extract_field "CREAT" "$tfile" "t=")
13144         cat $MOUNT/.lustre/fid/$fid 2>/dev/null >$tempfile || error "cat failed"
13145         # some delay may occur during ChangeLog publishing and file read just
13146         # above, that could allow file write to happen finally
13147         [[ -s $tempfile ]] && echo "file should be empty"
13148
13149         $LCTL set_param fail_loc=0
13150
13151         wait $pid
13152         [[ $? -eq 0 ]] || error "create failed"
13153 }
13154 run_test 161d "create with concurrent .lustre/fid access"
13155
13156 check_path() {
13157         local expected="$1"
13158         shift
13159         local fid="$2"
13160
13161         local path
13162         path=$($LFS fid2path "$@")
13163         local rc=$?
13164
13165         if [ $rc -ne 0 ]; then
13166                 error "path looked up of '$expected' failed: rc=$rc"
13167         elif [ "$path" != "$expected" ]; then
13168                 error "path looked up '$path' instead of '$expected'"
13169         else
13170                 echo "FID '$fid' resolves to path '$path' as expected"
13171         fi
13172 }
13173
13174 test_162a() { # was test_162
13175         test_mkdir -p -c1 $DIR/$tdir/d2
13176         touch $DIR/$tdir/d2/$tfile
13177         touch $DIR/$tdir/d2/x1
13178         touch $DIR/$tdir/d2/x2
13179         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
13180         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
13181         # regular file
13182         local fid=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
13183         check_path "$tdir/d2/$tfile" $FSNAME "$fid" --link 0
13184
13185         # softlink
13186         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
13187         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
13188         check_path "$tdir/d2/p/q/r/slink" $FSNAME "$fid" --link 0
13189
13190         # softlink to wrong file
13191         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
13192         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
13193         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME "$fid" --link 0
13194
13195         # hardlink
13196         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
13197         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
13198         fid=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
13199         # fid2path dir/fsname should both work
13200         check_path "$tdir/d2/a/b/c/new_file" $FSNAME "$fid" --link 1
13201         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR "$fid" --link 0
13202
13203         # hardlink count: check that there are 2 links
13204         local nlinks=$($LFS fid2path $DIR "$fid" | wc -l)
13205         [ $nlinks -eq 2 ] || error "expect 2 links, found $nlinks"
13206
13207         # hardlink indexing: remove the first link
13208         rm $DIR/$tdir/d2/p/q/r/hlink
13209         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $fid --link 0
13210 }
13211 run_test 162a "path lookup sanity"
13212
13213 test_162b() {
13214         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13215         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
13216
13217         mkdir $DIR/$tdir
13218         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
13219                                 error "create striped dir failed"
13220
13221         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
13222                                         tail -n 1 | awk '{print $2}')
13223         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
13224
13225         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
13226         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
13227
13228         # regular file
13229         for ((i=0;i<5;i++)); do
13230                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
13231                         error "get fid for f$i failed"
13232                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0
13233
13234                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
13235                         error "get fid for d$i failed"
13236                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0
13237         done
13238
13239         return 0
13240 }
13241 run_test 162b "striped directory path lookup sanity"
13242
13243 # LU-4239: Verify fid2path works with paths 100 or more directories deep
13244 test_162c() {
13245         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.51) ]] &&
13246                 skip "Need MDS version at least 2.7.51"
13247
13248         local lpath=$tdir.local
13249         local rpath=$tdir.remote
13250
13251         test_mkdir $DIR/$lpath
13252         test_mkdir $DIR/$rpath
13253
13254         for ((i = 0; i <= 101; i++)); do
13255                 lpath="$lpath/$i"
13256                 mkdir $DIR/$lpath
13257                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
13258                         error "get fid for local directory $DIR/$lpath failed"
13259                 check_path "$DIR/$lpath" $MOUNT $FID --link 0
13260
13261                 rpath="$rpath/$i"
13262                 test_mkdir $DIR/$rpath
13263                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
13264                         error "get fid for remote directory $DIR/$rpath failed"
13265                 check_path "$DIR/$rpath" $MOUNT $FID --link 0
13266         done
13267
13268         return 0
13269 }
13270 run_test 162c "fid2path works with paths 100 or more directories deep"
13271
13272 test_169() {
13273         # do directio so as not to populate the page cache
13274         log "creating a 10 Mb file"
13275         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
13276         log "starting reads"
13277         dd if=$DIR/$tfile of=/dev/null bs=4096 &
13278         log "truncating the file"
13279         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
13280         log "killing dd"
13281         kill %+ || true # reads might have finished
13282         echo "wait until dd is finished"
13283         wait
13284         log "removing the temporary file"
13285         rm -rf $DIR/$tfile || error "tmp file removal failed"
13286 }
13287 run_test 169 "parallel read and truncate should not deadlock"
13288
13289 test_170() {
13290         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13291
13292         $LCTL clear     # bug 18514
13293         $LCTL debug_daemon start $TMP/${tfile}_log_good
13294         touch $DIR/$tfile
13295         $LCTL debug_daemon stop
13296         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
13297                 error "sed failed to read log_good"
13298
13299         $LCTL debug_daemon start $TMP/${tfile}_log_good
13300         rm -rf $DIR/$tfile
13301         $LCTL debug_daemon stop
13302
13303         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
13304                error "lctl df log_bad failed"
13305
13306         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
13307         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
13308
13309         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
13310         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
13311
13312         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
13313                 error "bad_line good_line1 good_line2 are empty"
13314
13315         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
13316         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
13317         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
13318
13319         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
13320         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
13321         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
13322
13323         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
13324                 error "bad_line_new good_line_new are empty"
13325
13326         local expected_good=$((good_line1 + good_line2*2))
13327
13328         rm -f $TMP/${tfile}*
13329         # LU-231, short malformed line may not be counted into bad lines
13330         if [ $bad_line -ne $bad_line_new ] &&
13331                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
13332                 error "expected $bad_line bad lines, but got $bad_line_new"
13333                 return 1
13334         fi
13335
13336         if [ $expected_good -ne $good_line_new ]; then
13337                 error "expected $expected_good good lines, but got $good_line_new"
13338                 return 2
13339         fi
13340         true
13341 }
13342 run_test 170 "test lctl df to handle corrupted log ====================="
13343
13344 test_171() { # bug20592
13345         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13346
13347         #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
13348         $LCTL set_param fail_loc=0x50e
13349         $LCTL set_param fail_val=3000
13350         multiop_bg_pause $DIR/$tfile O_s || true
13351         local MULTIPID=$!
13352         kill -USR1 $MULTIPID
13353         # cause log dump
13354         sleep 3
13355         wait $MULTIPID
13356         if dmesg | grep "recursive fault"; then
13357                 error "caught a recursive fault"
13358         fi
13359         $LCTL set_param fail_loc=0
13360         true
13361 }
13362 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
13363
13364 # it would be good to share it with obdfilter-survey/iokit-libecho code
13365 setup_obdecho_osc () {
13366         local rc=0
13367         local ost_nid=$1
13368         local obdfilter_name=$2
13369         echo "Creating new osc for $obdfilter_name on $ost_nid"
13370         # make sure we can find loopback nid
13371         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
13372
13373         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
13374                            ${obdfilter_name}_osc_UUID || rc=2; }
13375         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
13376                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
13377         return $rc
13378 }
13379
13380 cleanup_obdecho_osc () {
13381         local obdfilter_name=$1
13382         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
13383         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
13384         return 0
13385 }
13386
13387 obdecho_test() {
13388         local OBD=$1
13389         local node=$2
13390         local pages=${3:-64}
13391         local rc=0
13392         local id
13393
13394         local count=10
13395         local obd_size=$(get_obd_size $node $OBD)
13396         local page_size=$(get_page_size $node)
13397         if [[ -n "$obd_size" ]]; then
13398                 local new_count=$((obd_size / (pages * page_size / 1024)))
13399                 [[ $new_count -ge $count ]] || count=$new_count
13400         fi
13401
13402         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
13403         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
13404                            rc=2; }
13405         if [ $rc -eq 0 ]; then
13406             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
13407             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
13408         fi
13409         echo "New object id is $id"
13410         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
13411                            rc=4; }
13412         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
13413                            "test_brw $count w v $pages $id" || rc=4; }
13414         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
13415                            rc=4; }
13416         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
13417                                         "cleanup" || rc=5; }
13418         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
13419                                         "detach" || rc=6; }
13420         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
13421         return $rc
13422 }
13423
13424 test_180a() {
13425         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13426
13427         if ! module_loaded obdecho; then
13428                 load_module obdecho/obdecho &&
13429                         stack_trap "rmmod obdecho" EXIT ||
13430                         error "unable to load obdecho on client"
13431         fi
13432
13433         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
13434         local host=$($LCTL get_param -n osc.$osc.import |
13435                      awk '/current_connection:/ { print $2 }' )
13436         local target=$($LCTL get_param -n osc.$osc.import |
13437                        awk '/target:/ { print $2 }' )
13438         target=${target%_UUID}
13439
13440         if [ -n "$target" ]; then
13441                 setup_obdecho_osc $host $target &&
13442                         stack_trap "cleanup_obdecho_osc $target" EXIT ||
13443                         { error "obdecho setup failed with $?"; return; }
13444
13445                 obdecho_test ${target}_osc client ||
13446                         error "obdecho_test failed on ${target}_osc"
13447         else
13448                 $LCTL get_param osc.$osc.import
13449                 error "there is no osc.$osc.import target"
13450         fi
13451 }
13452 run_test 180a "test obdecho on osc"
13453
13454 test_180b() {
13455         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13456         remote_ost_nodsh && skip "remote OST with nodsh"
13457
13458         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
13459                 stack_trap "do_facet ost1 rmmod obdecho" EXIT ||
13460                 error "failed to load module obdecho"
13461
13462         local target=$(do_facet ost1 $LCTL dl |
13463                        awk '/obdfilter/ { print $4; exit; }')
13464
13465         if [ -n "$target" ]; then
13466                 obdecho_test $target ost1 || error "obdecho_test failed with $?"
13467         else
13468                 do_facet ost1 $LCTL dl
13469                 error "there is no obdfilter target on ost1"
13470         fi
13471 }
13472 run_test 180b "test obdecho directly on obdfilter"
13473
13474 test_180c() { # LU-2598
13475         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13476         remote_ost_nodsh && skip "remote OST with nodsh"
13477         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
13478                 skip "Need MDS version at least 2.4.0"
13479
13480         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
13481                 stack_trap "do_facet ost1 rmmod obdecho" EXIT ||
13482                 error "failed to load module obdecho"
13483
13484         local target=$(do_facet ost1 $LCTL dl |
13485                        awk '/obdfilter/ { print $4; exit; }')
13486
13487         if [ -n "$target" ]; then
13488                 local pages=16384 # 64MB bulk I/O RPC size
13489
13490                 obdecho_test "$target" ost1 "$pages" ||
13491                         error "obdecho_test with pages=$pages failed with $?"
13492         else
13493                 do_facet ost1 $LCTL dl
13494                 error "there is no obdfilter target on ost1"
13495         fi
13496 }
13497 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
13498
13499 test_181() { # bug 22177
13500         test_mkdir $DIR/$tdir
13501         # create enough files to index the directory
13502         createmany -o $DIR/$tdir/foobar 4000
13503         # print attributes for debug purpose
13504         lsattr -d .
13505         # open dir
13506         multiop_bg_pause $DIR/$tdir D_Sc || return 1
13507         MULTIPID=$!
13508         # remove the files & current working dir
13509         unlinkmany $DIR/$tdir/foobar 4000
13510         rmdir $DIR/$tdir
13511         kill -USR1 $MULTIPID
13512         wait $MULTIPID
13513         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
13514         return 0
13515 }
13516 run_test 181 "Test open-unlinked dir ========================"
13517
13518 test_182() {
13519         local fcount=1000
13520         local tcount=10
13521
13522         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13523
13524         $LCTL set_param mdc.*.rpc_stats=clear
13525
13526         for (( i = 0; i < $tcount; i++ )) ; do
13527                 mkdir $DIR/$tdir/$i
13528         done
13529
13530         for (( i = 0; i < $tcount; i++ )) ; do
13531                 createmany -o $DIR/$tdir/$i/f- $fcount &
13532         done
13533         wait
13534
13535         for (( i = 0; i < $tcount; i++ )) ; do
13536                 unlinkmany $DIR/$tdir/$i/f- $fcount &
13537         done
13538         wait
13539
13540         $LCTL get_param mdc.*.rpc_stats
13541
13542         rm -rf $DIR/$tdir
13543 }
13544 run_test 182 "Test parallel modify metadata operations ================"
13545
13546 test_183() { # LU-2275
13547         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13548         remote_mds_nodsh && skip "remote MDS with nodsh"
13549         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
13550                 skip "Need MDS version at least 2.3.56"
13551
13552         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13553         echo aaa > $DIR/$tdir/$tfile
13554
13555 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
13556         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
13557
13558         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
13559         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
13560
13561         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
13562
13563         # Flush negative dentry cache
13564         touch $DIR/$tdir/$tfile
13565
13566         # We are not checking for any leaked references here, they'll
13567         # become evident next time we do cleanup with module unload.
13568         rm -rf $DIR/$tdir
13569 }
13570 run_test 183 "No crash or request leak in case of strange dispositions ========"
13571
13572 # test suite 184 is for LU-2016, LU-2017
13573 test_184a() {
13574         check_swap_layouts_support
13575
13576         dir0=$DIR/$tdir/$testnum
13577         test_mkdir -p -c1 $dir0
13578         ref1=/etc/passwd
13579         ref2=/etc/group
13580         file1=$dir0/f1
13581         file2=$dir0/f2
13582         $SETSTRIPE -c1 $file1
13583         cp $ref1 $file1
13584         $SETSTRIPE -c2 $file2
13585         cp $ref2 $file2
13586         gen1=$($GETSTRIPE -g $file1)
13587         gen2=$($GETSTRIPE -g $file2)
13588
13589         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
13590         gen=$($GETSTRIPE -g $file1)
13591         [[ $gen1 != $gen ]] ||
13592                 "Layout generation on $file1 does not change"
13593         gen=$($GETSTRIPE -g $file2)
13594         [[ $gen2 != $gen ]] ||
13595                 "Layout generation on $file2 does not change"
13596
13597         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
13598         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
13599
13600         lfsck_verify_pfid $file1 $file2 || error "PFID are not transferred"
13601 }
13602 run_test 184a "Basic layout swap"
13603
13604 test_184b() {
13605         check_swap_layouts_support
13606
13607         dir0=$DIR/$tdir/$testnum
13608         mkdir -p $dir0 || error "creating dir $dir0"
13609         file1=$dir0/f1
13610         file2=$dir0/f2
13611         file3=$dir0/f3
13612         dir1=$dir0/d1
13613         dir2=$dir0/d2
13614         mkdir $dir1 $dir2
13615         $SETSTRIPE -c1 $file1
13616         $SETSTRIPE -c2 $file2
13617         $SETSTRIPE -c1 $file3
13618         chown $RUNAS_ID $file3
13619         gen1=$($GETSTRIPE -g $file1)
13620         gen2=$($GETSTRIPE -g $file2)
13621
13622         $LFS swap_layouts $dir1 $dir2 &&
13623                 error "swap of directories layouts should fail"
13624         $LFS swap_layouts $dir1 $file1 &&
13625                 error "swap of directory and file layouts should fail"
13626         $RUNAS $LFS swap_layouts $file1 $file2 &&
13627                 error "swap of file we cannot write should fail"
13628         $LFS swap_layouts $file1 $file3 &&
13629                 error "swap of file with different owner should fail"
13630         /bin/true # to clear error code
13631 }
13632 run_test 184b "Forbidden layout swap (will generate errors)"
13633
13634 test_184c() {
13635         local cmpn_arg=$(cmp -n 2>&1 | grep "invalid option")
13636         [ -n "$cmpn_arg" ] && skip_env "cmp does not support -n"
13637         check_swap_layouts_support
13638
13639         local dir0=$DIR/$tdir/$testnum
13640         mkdir -p $dir0 || error "creating dir $dir0"
13641
13642         local ref1=$dir0/ref1
13643         local ref2=$dir0/ref2
13644         local file1=$dir0/file1
13645         local file2=$dir0/file2
13646         # create a file large enough for the concurrent test
13647         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
13648         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
13649         echo "ref file size: ref1($(stat -c %s $ref1))," \
13650              "ref2($(stat -c %s $ref2))"
13651
13652         cp $ref2 $file2
13653         dd if=$ref1 of=$file1 bs=16k &
13654         local DD_PID=$!
13655
13656         # Make sure dd starts to copy file
13657         while [ ! -f $file1 ]; do sleep 0.1; done
13658
13659         $LFS swap_layouts $file1 $file2
13660         local rc=$?
13661         wait $DD_PID
13662         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
13663         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
13664
13665         # how many bytes copied before swapping layout
13666         local copied=$(stat -c %s $file2)
13667         local remaining=$(stat -c %s $ref1)
13668         remaining=$((remaining - copied))
13669         echo "Copied $copied bytes before swapping layout..."
13670
13671         cmp -n $copied $file1 $ref2 | grep differ &&
13672                 error "Content mismatch [0, $copied) of ref2 and file1"
13673         cmp -n $copied $file2 $ref1 ||
13674                 error "Content mismatch [0, $copied) of ref1 and file2"
13675         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
13676                 error "Content mismatch [$copied, EOF) of ref1 and file1"
13677
13678         # clean up
13679         rm -f $ref1 $ref2 $file1 $file2
13680 }
13681 run_test 184c "Concurrent write and layout swap"
13682
13683 test_184d() {
13684         check_swap_layouts_support
13685         [ -z "$(which getfattr 2>/dev/null)" ] &&
13686                 skip_env "no getfattr command"
13687
13688         local file1=$DIR/$tdir/$tfile-1
13689         local file2=$DIR/$tdir/$tfile-2
13690         local file3=$DIR/$tdir/$tfile-3
13691         local lovea1
13692         local lovea2
13693
13694         mkdir -p $DIR/$tdir
13695         touch $file1 || error "create $file1 failed"
13696         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
13697                 error "create $file2 failed"
13698         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
13699                 error "create $file3 failed"
13700         lovea1=$(get_layout_param $file1)
13701
13702         $LFS swap_layouts $file2 $file3 ||
13703                 error "swap $file2 $file3 layouts failed"
13704         $LFS swap_layouts $file1 $file2 ||
13705                 error "swap $file1 $file2 layouts failed"
13706
13707         lovea2=$(get_layout_param $file2)
13708         echo "$lovea1"
13709         echo "$lovea2"
13710         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
13711
13712         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
13713         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
13714 }
13715 run_test 184d "allow stripeless layouts swap"
13716
13717 test_184e() {
13718         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.94) ]] ||
13719                 skip "Need MDS version at least 2.6.94"
13720         check_swap_layouts_support
13721         [ -z "$(which getfattr 2>/dev/null)" ] &&
13722                 skip_env "no getfattr command"
13723
13724         local file1=$DIR/$tdir/$tfile-1
13725         local file2=$DIR/$tdir/$tfile-2
13726         local file3=$DIR/$tdir/$tfile-3
13727         local lovea
13728
13729         mkdir -p $DIR/$tdir
13730         touch $file1 || error "create $file1 failed"
13731         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
13732                 error "create $file2 failed"
13733         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
13734                 error "create $file3 failed"
13735
13736         $LFS swap_layouts $file1 $file2 ||
13737                 error "swap $file1 $file2 layouts failed"
13738
13739         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
13740         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
13741
13742         echo 123 > $file1 || error "Should be able to write into $file1"
13743
13744         $LFS swap_layouts $file1 $file3 ||
13745                 error "swap $file1 $file3 layouts failed"
13746
13747         echo 123 > $file1 || error "Should be able to write into $file1"
13748
13749         rm -rf $file1 $file2 $file3
13750 }
13751 run_test 184e "Recreate layout after stripeless layout swaps"
13752
13753 test_184f() {
13754         # Create a file with name longer than sizeof(struct stat) ==
13755         # 144 to see if we can get chars from the file name to appear
13756         # in the returned striping. Note that 'f' == 0x66.
13757         local file=$(for ((i = 0; i < 200; i++)); do echo -n f; done)
13758
13759         mkdir -p $DIR/$tdir
13760         mcreate $DIR/$tdir/$file
13761         if lfs find --stripe-count 0x6666 $DIR/$tdir | grep $file; then
13762                 error "IOC_MDC_GETFILEINFO returned garbage striping"
13763         fi
13764 }
13765 run_test 184f "IOC_MDC_GETFILEINFO for files with long names but no striping"
13766
13767 test_185() { # LU-2441
13768         # LU-3553 - no volatile file support in old servers
13769         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
13770                 skip "Need MDS version at least 2.3.60"
13771
13772         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13773         touch $DIR/$tdir/spoo
13774         local mtime1=$(stat -c "%Y" $DIR/$tdir)
13775         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
13776                 error "cannot create/write a volatile file"
13777         [ "$FILESET" == "" ] &&
13778         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
13779                 error "FID is still valid after close"
13780
13781         multiop_bg_pause $DIR/$tdir vVw4096_c
13782         local multi_pid=$!
13783
13784         local OLD_IFS=$IFS
13785         IFS=":"
13786         local fidv=($fid)
13787         IFS=$OLD_IFS
13788         # assume that the next FID for this client is sequential, since stdout
13789         # is unfortunately eaten by multiop_bg_pause
13790         local n=$((${fidv[1]} + 1))
13791         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
13792         if [ "$FILESET" == "" ]; then
13793                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
13794                         error "FID is missing before close"
13795         fi
13796         kill -USR1 $multi_pid
13797         # 1 second delay, so if mtime change we will see it
13798         sleep 1
13799         local mtime2=$(stat -c "%Y" $DIR/$tdir)
13800         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
13801 }
13802 run_test 185 "Volatile file support"
13803
13804 test_187a() {
13805         remote_mds_nodsh && skip "remote MDS with nodsh"
13806         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
13807                 skip "Need MDS version at least 2.3.0"
13808
13809         local dir0=$DIR/$tdir/$testnum
13810         mkdir -p $dir0 || error "creating dir $dir0"
13811
13812         local file=$dir0/file1
13813         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
13814         local dv1=$($LFS data_version $file)
13815         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
13816         local dv2=$($LFS data_version $file)
13817         [[ $dv1 != $dv2 ]] ||
13818                 error "data version did not change on write $dv1 == $dv2"
13819
13820         # clean up
13821         rm -f $file1
13822 }
13823 run_test 187a "Test data version change"
13824
13825 test_187b() {
13826         remote_mds_nodsh && skip "remote MDS with nodsh"
13827         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
13828                 skip "Need MDS version at least 2.3.0"
13829
13830         local dir0=$DIR/$tdir/$testnum
13831         mkdir -p $dir0 || error "creating dir $dir0"
13832
13833         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
13834         [[ ${DV[0]} != ${DV[1]} ]] ||
13835                 error "data version did not change on write"\
13836                       " ${DV[0]} == ${DV[1]}"
13837
13838         # clean up
13839         rm -f $file1
13840 }
13841 run_test 187b "Test data version change on volatile file"
13842
13843 test_200() {
13844         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13845         remote_mgs_nodsh && skip "remote MGS with nodsh"
13846         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
13847
13848         local POOL=${POOL:-cea1}
13849         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
13850         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
13851         # Pool OST targets
13852         local first_ost=0
13853         local last_ost=$(($OSTCOUNT - 1))
13854         local ost_step=2
13855         local ost_list=$(seq $first_ost $ost_step $last_ost)
13856         local ost_range="$first_ost $last_ost $ost_step"
13857         local test_path=$POOL_ROOT/$POOL_DIR_NAME
13858         local file_dir=$POOL_ROOT/file_tst
13859         local subdir=$test_path/subdir
13860         local rc=0
13861
13862         if ! combined_mgs_mds ; then
13863                 mount_mgs_client
13864         fi
13865
13866         while : ; do
13867                 # former test_200a test_200b
13868                 pool_add $POOL                          || { rc=$? ; break; }
13869                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
13870                 # former test_200c test_200d
13871                 mkdir -p $test_path
13872                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
13873                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
13874                 mkdir -p $subdir
13875                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
13876                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
13877                                                         || { rc=$? ; break; }
13878                 # former test_200e test_200f
13879                 local files=$((OSTCOUNT*3))
13880                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
13881                                                         || { rc=$? ; break; }
13882                 pool_create_files $POOL $file_dir $files "$ost_list" \
13883                                                         || { rc=$? ; break; }
13884                 # former test_200g test_200h
13885                 pool_lfs_df $POOL                       || { rc=$? ; break; }
13886                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
13887
13888                 # former test_201a test_201b test_201c
13889                 pool_remove_first_target $POOL          || { rc=$? ; break; }
13890
13891                 local f=$test_path/$tfile
13892                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
13893                 pool_remove $POOL $f                    || { rc=$? ; break; }
13894                 break
13895         done
13896
13897         destroy_test_pools
13898
13899         if ! combined_mgs_mds ; then
13900                 umount_mgs_client
13901         fi
13902         return $rc
13903 }
13904 run_test 200 "OST pools"
13905
13906 # usage: default_attr <count | size | offset>
13907 default_attr() {
13908         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
13909 }
13910
13911 # usage: check_default_stripe_attr
13912 check_default_stripe_attr() {
13913         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
13914         case $1 in
13915         --stripe-count|-c)
13916                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
13917         --stripe-size|-S)
13918                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
13919         --stripe-index|-i)
13920                 EXPECTED=-1;;
13921         *)
13922                 error "unknown getstripe attr '$1'"
13923         esac
13924
13925         [ $ACTUAL == $EXPECTED ] ||
13926                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
13927 }
13928
13929 test_204a() {
13930         test_mkdir $DIR/$tdir
13931         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
13932
13933         check_default_stripe_attr --stripe-count
13934         check_default_stripe_attr --stripe-size
13935         check_default_stripe_attr --stripe-index
13936 }
13937 run_test 204a "Print default stripe attributes"
13938
13939 test_204b() {
13940         test_mkdir $DIR/$tdir
13941         $SETSTRIPE --stripe-count 1 $DIR/$tdir
13942
13943         check_default_stripe_attr --stripe-size
13944         check_default_stripe_attr --stripe-index
13945 }
13946 run_test 204b "Print default stripe size and offset"
13947
13948 test_204c() {
13949         test_mkdir $DIR/$tdir
13950         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
13951
13952         check_default_stripe_attr --stripe-count
13953         check_default_stripe_attr --stripe-index
13954 }
13955 run_test 204c "Print default stripe count and offset"
13956
13957 test_204d() {
13958         test_mkdir $DIR/$tdir
13959         $SETSTRIPE --stripe-index 0 $DIR/$tdir
13960
13961         check_default_stripe_attr --stripe-count
13962         check_default_stripe_attr --stripe-size
13963 }
13964 run_test 204d "Print default stripe count and size"
13965
13966 test_204e() {
13967         test_mkdir $DIR/$tdir
13968         $SETSTRIPE -d $DIR/$tdir
13969
13970         check_default_stripe_attr --stripe-count --raw
13971         check_default_stripe_attr --stripe-size --raw
13972         check_default_stripe_attr --stripe-index --raw
13973 }
13974 run_test 204e "Print raw stripe attributes"
13975
13976 test_204f() {
13977         test_mkdir $DIR/$tdir
13978         $SETSTRIPE --stripe-count 1 $DIR/$tdir
13979
13980         check_default_stripe_attr --stripe-size --raw
13981         check_default_stripe_attr --stripe-index --raw
13982 }
13983 run_test 204f "Print raw stripe size and offset"
13984
13985 test_204g() {
13986         test_mkdir $DIR/$tdir
13987         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
13988
13989         check_default_stripe_attr --stripe-count --raw
13990         check_default_stripe_attr --stripe-index --raw
13991 }
13992 run_test 204g "Print raw stripe count and offset"
13993
13994 test_204h() {
13995         test_mkdir $DIR/$tdir
13996         $SETSTRIPE --stripe-index 0 $DIR/$tdir
13997
13998         check_default_stripe_attr --stripe-count --raw
13999         check_default_stripe_attr --stripe-size --raw
14000 }
14001 run_test 204h "Print raw stripe count and size"
14002
14003 # Figure out which job scheduler is being used, if any,
14004 # or use a fake one
14005 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
14006         JOBENV=SLURM_JOB_ID
14007 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
14008         JOBENV=LSB_JOBID
14009 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
14010         JOBENV=PBS_JOBID
14011 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
14012         JOBENV=LOADL_STEP_ID
14013 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
14014         JOBENV=JOB_ID
14015 else
14016         $LCTL list_param jobid_name > /dev/null 2>&1
14017         if [ $? -eq 0 ]; then
14018                 JOBENV=nodelocal
14019         else
14020                 JOBENV=FAKE_JOBID
14021         fi
14022 fi
14023 LUSTRE_JOBID_SIZE=31 # plus NUL terminator
14024
14025 verify_jobstats() {
14026         local cmd=($1)
14027         shift
14028         local facets="$@"
14029
14030 # we don't really need to clear the stats for this test to work, since each
14031 # command has a unique jobid, but it makes debugging easier if needed.
14032 #       for facet in $facets; do
14033 #               local dev=$(convert_facet2label $facet)
14034 #               # clear old jobstats
14035 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
14036 #       done
14037
14038         # use a new JobID for each test, or we might see an old one
14039         [ "$JOBENV" = "FAKE_JOBID" ] &&
14040                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
14041
14042         JOBVAL=${!JOBENV:0:$LUSTRE_JOBID_SIZE}
14043
14044         [ "$JOBENV" = "nodelocal" ] && {
14045                 FAKE_JOBID=id.$testnum.%e.$RANDOM
14046                 $LCTL set_param jobid_name=$FAKE_JOBID
14047                 JOBVAL=${FAKE_JOBID/\%e/$(basename ${cmd[0]})}
14048         }
14049
14050         log "Test: ${cmd[*]}"
14051         log "Using JobID environment $($LCTL get_param -n jobid_var)=$JOBVAL"
14052
14053         if [ $JOBENV = "FAKE_JOBID" ]; then
14054                 FAKE_JOBID=$JOBVAL ${cmd[*]}
14055         else
14056                 ${cmd[*]}
14057         fi
14058
14059         # all files are created on OST0000
14060         for facet in $facets; do
14061                 local stats="*.$(convert_facet2label $facet).job_stats"
14062
14063                 # strip out libtool wrappers for in-tree executables
14064                 if [ $(do_facet $facet lctl get_param $stats |
14065                        sed -e 's/\.lt-/./' | grep -c $JOBVAL) -ne 1 ]; then
14066                         do_facet $facet lctl get_param $stats
14067                         error "No jobstats for $JOBVAL found on $facet::$stats"
14068                 fi
14069         done
14070 }
14071
14072 jobstats_set() {
14073         local new_jobenv=$1
14074
14075         set_persistent_param_and_check client "jobid_var" \
14076                 "$FSNAME.sys.jobid_var" $new_jobenv
14077 }
14078
14079 test_205() { # Job stats
14080         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14081         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.1) ]] ||
14082                 skip "Need MDS version with at least 2.7.1"
14083         remote_mgs_nodsh && skip "remote MGS with nodsh"
14084         remote_mds_nodsh && skip "remote MDS with nodsh"
14085         remote_ost_nodsh && skip "remote OST with nodsh"
14086         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
14087                 skip "Server doesn't support jobstats"
14088         [[ $JOBID_VAR = disable ]] && skip_env "jobstats is disabled"
14089
14090         local old_jobenv=$($LCTL get_param -n jobid_var)
14091         [ $old_jobenv != $JOBENV ] && jobstats_set $JOBENV
14092
14093         if [[ $PERM_CMD = *"set_param -P"* ]]; then
14094                 stack_trap "do_facet mgs $PERM_CMD jobid_var=$old_jobenv" EXIT
14095         else
14096                 stack_trap "do_facet mgs $PERM_CMD \
14097                         $FSNAME.sys.jobid_var=$old_jobenv" EXIT
14098         fi
14099         changelog_register
14100
14101         local old_interval=$(do_facet $SINGLEMDS lctl get_param -n \
14102                                 mdt.*.job_cleanup_interval | head -n 1)
14103         local new_interval=5
14104         do_facet $SINGLEMDS \
14105                 $LCTL set_param mdt.*.job_cleanup_interval=$new_interval
14106         stack_trap "do_facet $SINGLEMDS \
14107                 $LCTL set_param mdt.*.job_cleanup_interval=$old_interval" EXIT
14108         local start=$SECONDS
14109
14110         local cmd
14111         # mkdir
14112         cmd="mkdir $DIR/$tdir"
14113         verify_jobstats "$cmd" "$SINGLEMDS"
14114         # rmdir
14115         cmd="rmdir $DIR/$tdir"
14116         verify_jobstats "$cmd" "$SINGLEMDS"
14117         # mkdir on secondary MDT
14118         if [ $MDSCOUNT -gt 1 ]; then
14119                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
14120                 verify_jobstats "$cmd" "mds2"
14121         fi
14122         # mknod
14123         cmd="mknod $DIR/$tfile c 1 3"
14124         verify_jobstats "$cmd" "$SINGLEMDS"
14125         # unlink
14126         cmd="rm -f $DIR/$tfile"
14127         verify_jobstats "$cmd" "$SINGLEMDS"
14128         # create all files on OST0000 so verify_jobstats can find OST stats
14129         # open & close
14130         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
14131         verify_jobstats "$cmd" "$SINGLEMDS"
14132         # setattr
14133         cmd="touch $DIR/$tfile"
14134         verify_jobstats "$cmd" "$SINGLEMDS ost1"
14135         # write
14136         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
14137         verify_jobstats "$cmd" "ost1"
14138         # read
14139         cancel_lru_locks osc
14140         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
14141         verify_jobstats "$cmd" "ost1"
14142         # truncate
14143         cmd="$TRUNCATE $DIR/$tfile 0"
14144         verify_jobstats "$cmd" "$SINGLEMDS ost1"
14145         # rename
14146         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
14147         verify_jobstats "$cmd" "$SINGLEMDS"
14148         # jobstats expiry - sleep until old stats should be expired
14149         local left=$((new_interval + 5 - (SECONDS - start)))
14150         [ $left -ge 0 ] && wait_update_facet $SINGLEMDS \
14151                 "lctl get_param *.*.job_stats | grep -c 'job_id.*mkdir'" \
14152                         "0" $left
14153         cmd="mkdir $DIR/$tdir.expire"
14154         verify_jobstats "$cmd" "$SINGLEMDS"
14155         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
14156             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
14157
14158         # Ensure that jobid are present in changelog (if supported by MDS)
14159         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.52) ];then
14160                 changelog_dump | tail -10
14161                 jobids=$(changelog_dump | tail -9 | grep -c "j=")
14162                 [ $jobids -eq 9 ] ||
14163                         error "Wrong changelog jobid count $jobids != 9"
14164
14165                 # LU-5862
14166                 JOBENV="disable"
14167                 jobstats_set $JOBENV
14168                 touch $DIR/$tfile
14169                 changelog_dump | grep $tfile
14170                 jobids=$(changelog_dump | grep $tfile | tail -1 | grep -c "j=")
14171                 [ $jobids -eq 0 ] ||
14172                         error "Unexpected jobids when jobid_var=$JOBENV"
14173         fi
14174
14175         lctl set_param jobid_var=USER jobid_name="S.%j.%e.%u.%h.E"
14176         JOBENV="JOBCOMPLEX"
14177         JOBCOMPLEX="S.$USER.touch.$(id -u).$(hostname).E"
14178
14179         verify_jobstats "touch $DIR/$tfile" $SINGLEMDS
14180 }
14181 run_test 205 "Verify job stats"
14182
14183 # LU-1480, LU-1773 and LU-1657
14184 test_206() {
14185         mkdir -p $DIR/$tdir
14186         $SETSTRIPE -c -1 $DIR/$tdir
14187 #define OBD_FAIL_LOV_INIT 0x1403
14188         $LCTL set_param fail_loc=0xa0001403
14189         $LCTL set_param fail_val=1
14190         touch $DIR/$tdir/$tfile || true
14191 }
14192 run_test 206 "fail lov_init_raid0() doesn't lbug"
14193
14194 test_207a() {
14195         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
14196         local fsz=`stat -c %s $DIR/$tfile`
14197         cancel_lru_locks mdc
14198
14199         # do not return layout in getattr intent
14200 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
14201         $LCTL set_param fail_loc=0x170
14202         local sz=`stat -c %s $DIR/$tfile`
14203
14204         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
14205
14206         rm -rf $DIR/$tfile
14207 }
14208 run_test 207a "can refresh layout at glimpse"
14209
14210 test_207b() {
14211         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
14212         local cksum=`md5sum $DIR/$tfile`
14213         local fsz=`stat -c %s $DIR/$tfile`
14214         cancel_lru_locks mdc
14215         cancel_lru_locks osc
14216
14217         # do not return layout in getattr intent
14218 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
14219         $LCTL set_param fail_loc=0x171
14220
14221         # it will refresh layout after the file is opened but before read issues
14222         echo checksum is "$cksum"
14223         echo "$cksum" |md5sum -c --quiet || error "file differs"
14224
14225         rm -rf $DIR/$tfile
14226 }
14227 run_test 207b "can refresh layout at open"
14228
14229 test_208() {
14230         # FIXME: in this test suite, only RD lease is used. This is okay
14231         # for now as only exclusive open is supported. After generic lease
14232         # is done, this test suite should be revised. - Jinshan
14233
14234         remote_mds_nodsh && skip "remote MDS with nodsh"
14235         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
14236                 skip "Need MDS version at least 2.4.52"
14237
14238         echo "==== test 1: verify get lease work"
14239         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
14240
14241         echo "==== test 2: verify lease can be broken by upcoming open"
14242         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
14243         local PID=$!
14244         sleep 1
14245
14246         $MULTIOP $DIR/$tfile oO_RDONLY:c
14247         kill -USR1 $PID && wait $PID || error "break lease error"
14248
14249         echo "==== test 3: verify lease can't be granted if an open already exists"
14250         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
14251         local PID=$!
14252         sleep 1
14253
14254         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
14255         kill -USR1 $PID && wait $PID || error "open file error"
14256
14257         echo "==== test 4: lease can sustain over recovery"
14258         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
14259         PID=$!
14260         sleep 1
14261
14262         fail mds1
14263
14264         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
14265
14266         echo "==== test 5: lease broken can't be regained by replay"
14267         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
14268         PID=$!
14269         sleep 1
14270
14271         # open file to break lease and then recovery
14272         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
14273         fail mds1
14274
14275         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
14276
14277         rm -f $DIR/$tfile
14278 }
14279 run_test 208 "Exclusive open"
14280
14281 test_209() {
14282         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
14283                 skip_env "must have disp_stripe"
14284
14285         touch $DIR/$tfile
14286         sync; sleep 5; sync;
14287
14288         echo 3 > /proc/sys/vm/drop_caches
14289         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
14290
14291         # open/close 500 times
14292         for i in $(seq 500); do
14293                 cat $DIR/$tfile
14294         done
14295
14296         echo 3 > /proc/sys/vm/drop_caches
14297         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
14298
14299         echo "before: $req_before, after: $req_after"
14300         [ $((req_after - req_before)) -ge 300 ] &&
14301                 error "open/close requests are not freed"
14302         return 0
14303 }
14304 run_test 209 "read-only open/close requests should be freed promptly"
14305
14306 test_212() {
14307         size=`date +%s`
14308         size=$((size % 8192 + 1))
14309         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
14310         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
14311         rm -f $DIR/f212 $DIR/f212.xyz
14312 }
14313 run_test 212 "Sendfile test ============================================"
14314
14315 test_213() {
14316         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
14317         cancel_lru_locks osc
14318         lctl set_param fail_loc=0x8000040f
14319         # generate a read lock
14320         cat $DIR/$tfile > /dev/null
14321         # write to the file, it will try to cancel the above read lock.
14322         cat /etc/hosts >> $DIR/$tfile
14323 }
14324 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
14325
14326 test_214() { # for bug 20133
14327         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
14328         for (( i=0; i < 340; i++ )) ; do
14329                 touch $DIR/$tdir/d214c/a$i
14330         done
14331
14332         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
14333         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
14334         ls $DIR/d214c || error "ls $DIR/d214c failed"
14335         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
14336         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
14337 }
14338 run_test 214 "hash-indexed directory test - bug 20133"
14339
14340 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
14341 create_lnet_proc_files() {
14342         lctl get_param -n $1 >$TMP/lnet_$1.sys || error "cannot read lnet.$1"
14343 }
14344
14345 # counterpart of create_lnet_proc_files
14346 remove_lnet_proc_files() {
14347         rm -f $TMP/lnet_$1.sys
14348 }
14349
14350 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
14351 # 3rd arg as regexp for body
14352 check_lnet_proc_stats() {
14353         local l=$(cat "$TMP/lnet_$1" |wc -l)
14354         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
14355
14356         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
14357 }
14358
14359 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
14360 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
14361 # optional and can be regexp for 2nd line (lnet.routes case)
14362 check_lnet_proc_entry() {
14363         local blp=2          # blp stands for 'position of 1st line of body'
14364         [ -z "$5" ] || blp=3 # lnet.routes case
14365
14366         local l=$(cat "$TMP/lnet_$1" |wc -l)
14367         # subtracting one from $blp because the body can be empty
14368         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
14369
14370         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
14371                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
14372
14373         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
14374                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
14375
14376         # bail out if any unexpected line happened
14377         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
14378         [ "$?" != 0 ] || error "$2 misformatted"
14379 }
14380
14381 test_215() { # for bugs 18102, 21079, 21517
14382         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14383
14384         local N='(0|[1-9][0-9]*)'       # non-negative numeric
14385         local P='[1-9][0-9]*'           # positive numeric
14386         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
14387         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
14388         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
14389         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
14390
14391         local L1 # regexp for 1st line
14392         local L2 # regexp for 2nd line (optional)
14393         local BR # regexp for the rest (body)
14394
14395         # lnet.stats should look as 11 space-separated non-negative numerics
14396         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
14397         create_lnet_proc_files "stats"
14398         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
14399         remove_lnet_proc_files "stats"
14400
14401         # lnet.routes should look like this:
14402         # Routing disabled/enabled
14403         # net hops priority state router
14404         # where net is a string like tcp0, hops > 0, priority >= 0,
14405         # state is up/down,
14406         # router is a string like 192.168.1.1@tcp2
14407         L1="^Routing (disabled|enabled)$"
14408         L2="^net +hops +priority +state +router$"
14409         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
14410         create_lnet_proc_files "routes"
14411         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
14412         remove_lnet_proc_files "routes"
14413
14414         # lnet.routers should look like this:
14415         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
14416         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
14417         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
14418         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
14419         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
14420         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
14421         create_lnet_proc_files "routers"
14422         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
14423         remove_lnet_proc_files "routers"
14424
14425         # lnet.peers should look like this:
14426         # nid refs state last max rtr min tx min queue
14427         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
14428         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
14429         # numeric (0 or >0 or <0), queue >= 0.
14430         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
14431         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
14432         create_lnet_proc_files "peers"
14433         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
14434         remove_lnet_proc_files "peers"
14435
14436         # lnet.buffers  should look like this:
14437         # pages count credits min
14438         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
14439         L1="^pages +count +credits +min$"
14440         BR="^ +$N +$N +$I +$I$"
14441         create_lnet_proc_files "buffers"
14442         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
14443         remove_lnet_proc_files "buffers"
14444
14445         # lnet.nis should look like this:
14446         # nid status alive refs peer rtr max tx min
14447         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
14448         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
14449         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
14450         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
14451         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
14452         create_lnet_proc_files "nis"
14453         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
14454         remove_lnet_proc_files "nis"
14455
14456         # can we successfully write to lnet.stats?
14457         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
14458 }
14459 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
14460
14461 test_216() { # bug 20317
14462         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14463         remote_ost_nodsh && skip "remote OST with nodsh"
14464
14465         local node
14466         local facets=$(get_facets OST)
14467         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
14468
14469         save_lustre_params client "osc.*.contention_seconds" > $p
14470         save_lustre_params $facets \
14471                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
14472         save_lustre_params $facets \
14473                 "ldlm.namespaces.filter-*.contended_locks" >> $p
14474         save_lustre_params $facets \
14475                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
14476         clear_stats osc.*.osc_stats
14477
14478         # agressive lockless i/o settings
14479         do_nodes $(comma_list $(osts_nodes)) \
14480                 "lctl set_param -n ldlm.namespaces.*.max_nolock_bytes=2000000 \
14481                         ldlm.namespaces.filter-*.contended_locks=0 \
14482                         ldlm.namespaces.filter-*.contention_seconds=60"
14483         lctl set_param -n osc.*.contention_seconds=60
14484
14485         $DIRECTIO write $DIR/$tfile 0 10 4096
14486         $CHECKSTAT -s 40960 $DIR/$tfile
14487
14488         # disable lockless i/o
14489         do_nodes $(comma_list $(osts_nodes)) \
14490                 "lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes=0 \
14491                         ldlm.namespaces.filter-*.contended_locks=32 \
14492                         ldlm.namespaces.filter-*.contention_seconds=0"
14493         lctl set_param -n osc.*.contention_seconds=0
14494         clear_stats osc.*.osc_stats
14495
14496         dd if=/dev/zero of=$DIR/$tfile count=0
14497         $CHECKSTAT -s 0 $DIR/$tfile
14498
14499         restore_lustre_params <$p
14500         rm -f $p
14501         rm $DIR/$tfile
14502 }
14503 run_test 216 "check lockless direct write updates file size and kms correctly"
14504
14505 test_217() { # bug 22430
14506         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14507
14508         local node
14509         local nid
14510
14511         for node in $(nodes_list); do
14512                 nid=$(host_nids_address $node $NETTYPE)
14513                 if [[ $nid = *-* ]] ; then
14514                         echo "lctl ping $(h2nettype $nid)"
14515                         lctl ping $(h2nettype $nid)
14516                 else
14517                         echo "skipping $node (no hyphen detected)"
14518                 fi
14519         done
14520 }
14521 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
14522
14523 test_218() {
14524        # do directio so as not to populate the page cache
14525        log "creating a 10 Mb file"
14526        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
14527        log "starting reads"
14528        dd if=$DIR/$tfile of=/dev/null bs=4096 &
14529        log "truncating the file"
14530        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
14531        log "killing dd"
14532        kill %+ || true # reads might have finished
14533        echo "wait until dd is finished"
14534        wait
14535        log "removing the temporary file"
14536        rm -rf $DIR/$tfile || error "tmp file removal failed"
14537 }
14538 run_test 218 "parallel read and truncate should not deadlock"
14539
14540 test_219() {
14541         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14542
14543         # write one partial page
14544         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
14545         # set no grant so vvp_io_commit_write will do sync write
14546         $LCTL set_param fail_loc=0x411
14547         # write a full page at the end of file
14548         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
14549
14550         $LCTL set_param fail_loc=0
14551         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
14552         $LCTL set_param fail_loc=0x411
14553         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
14554
14555         # LU-4201
14556         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
14557         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
14558 }
14559 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
14560
14561 test_220() { #LU-325
14562         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14563         remote_ost_nodsh && skip "remote OST with nodsh"
14564         remote_mds_nodsh && skip "remote MDS with nodsh"
14565         remote_mgs_nodsh && skip "remote MGS with nodsh"
14566
14567         local OSTIDX=0
14568
14569         # create on MDT0000 so the last_id and next_id are correct
14570         mkdir $DIR/$tdir
14571         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
14572         OST=${OST%_UUID}
14573
14574         # on the mdt's osc
14575         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
14576         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
14577                         osc.$mdtosc_proc1.prealloc_last_id)
14578         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
14579                         osc.$mdtosc_proc1.prealloc_next_id)
14580
14581         $LFS df -i
14582
14583         if ! combined_mgs_mds ; then
14584                 mount_mgs_client
14585         fi
14586
14587         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
14588         #define OBD_FAIL_OST_ENOINO              0x229
14589         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
14590         create_pool $FSNAME.$TESTNAME || return 1
14591         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
14592
14593         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
14594
14595         MDSOBJS=$((last_id - next_id))
14596         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
14597
14598         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
14599         echo "OST still has $count kbytes free"
14600
14601         echo "create $MDSOBJS files @next_id..."
14602         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
14603
14604         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
14605                         osc.$mdtosc_proc1.prealloc_last_id)
14606         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
14607                         osc.$mdtosc_proc1.prealloc_next_id)
14608
14609         echo "after creation, last_id=$last_id2, next_id=$next_id2"
14610         $LFS df -i
14611
14612         echo "cleanup..."
14613
14614         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
14615         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
14616
14617         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST ||
14618                 error "$LCTL pool_remove $FSNAME.$TESTNAME $OST failed"
14619         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
14620                 error "$LCTL pool_destroy $FSNAME.$TESTNAME failed"
14621         echo "unlink $MDSOBJS files @$next_id..."
14622         unlinkmany $DIR/$tdir/f $MDSOBJS || error "unlinkmany failed"
14623
14624         if ! combined_mgs_mds ; then
14625                 umount_mgs_client
14626         fi
14627 }
14628 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
14629
14630 test_221() {
14631         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14632
14633         dd if=`which date` of=$MOUNT/date oflag=sync
14634         chmod +x $MOUNT/date
14635
14636         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
14637         $LCTL set_param fail_loc=0x80001401
14638
14639         $MOUNT/date > /dev/null
14640         rm -f $MOUNT/date
14641 }
14642 run_test 221 "make sure fault and truncate race to not cause OOM"
14643
14644 test_222a () {
14645         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14646
14647         rm -rf $DIR/$tdir
14648         test_mkdir $DIR/$tdir
14649         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14650         createmany -o $DIR/$tdir/$tfile 10
14651         cancel_lru_locks mdc
14652         cancel_lru_locks osc
14653         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
14654         $LCTL set_param fail_loc=0x31a
14655         ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
14656         $LCTL set_param fail_loc=0
14657         rm -r $DIR/$tdir
14658 }
14659 run_test 222a "AGL for ls should not trigger CLIO lock failure"
14660
14661 test_222b () {
14662         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14663
14664         rm -rf $DIR/$tdir
14665         test_mkdir $DIR/$tdir
14666         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14667         createmany -o $DIR/$tdir/$tfile 10
14668         cancel_lru_locks mdc
14669         cancel_lru_locks osc
14670         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
14671         $LCTL set_param fail_loc=0x31a
14672         rm -r $DIR/$tdir || error "AGL for rmdir failed"
14673         $LCTL set_param fail_loc=0
14674 }
14675 run_test 222b "AGL for rmdir should not trigger CLIO lock failure"
14676
14677 test_223 () {
14678         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14679
14680         rm -rf $DIR/$tdir
14681         test_mkdir $DIR/$tdir
14682         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14683         createmany -o $DIR/$tdir/$tfile 10
14684         cancel_lru_locks mdc
14685         cancel_lru_locks osc
14686         #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
14687         $LCTL set_param fail_loc=0x31b
14688         ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
14689         $LCTL set_param fail_loc=0
14690         rm -r $DIR/$tdir
14691 }
14692 run_test 223 "osc reenqueue if without AGL lock granted ======================="
14693
14694 test_224a() { # LU-1039, MRP-303
14695         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14696
14697         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
14698         $LCTL set_param fail_loc=0x508
14699         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
14700         $LCTL set_param fail_loc=0
14701         df $DIR
14702 }
14703 run_test 224a "Don't panic on bulk IO failure"
14704
14705 test_224b() { # LU-1039, MRP-303
14706         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14707
14708         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
14709         cancel_lru_locks osc
14710         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
14711         $LCTL set_param fail_loc=0x515
14712         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
14713         $LCTL set_param fail_loc=0
14714         df $DIR
14715 }
14716 run_test 224b "Don't panic on bulk IO failure"
14717
14718 test_224c() { # LU-6441
14719         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14720         remote_mds_nodsh && skip "remote MDS with nodsh"
14721
14722         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
14723         save_writethrough $p
14724         set_cache writethrough on
14725
14726         local pages_per_rpc=$($LCTL get_param \
14727                                 osc.*.max_pages_per_rpc)
14728         local at_max=$($LCTL get_param -n at_max)
14729         local timeout=$($LCTL get_param -n timeout)
14730         local test_at="at_max"
14731         local param_at="$FSNAME.sys.at_max"
14732         local test_timeout="timeout"
14733         local param_timeout="$FSNAME.sys.timeout"
14734
14735         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
14736
14737         set_persistent_param_and_check client "$test_at" "$param_at" 0
14738         set_persistent_param_and_check client "$test_timeout" "$param_timeout" 5
14739
14740         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3   0x520
14741         do_facet ost1 $LCTL set_param fail_loc=0x520
14742         $LFS setstripe -c 1 -i 0 $DIR/$tfile
14743         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
14744         sync
14745         do_facet ost1 $LCTL set_param fail_loc=0
14746
14747         set_persistent_param_and_check client "$test_at" "$param_at" $at_max
14748         set_persistent_param_and_check client "$test_timeout" "$param_timeout" \
14749                 $timeout
14750
14751         $LCTL set_param -n $pages_per_rpc
14752         restore_lustre_params < $p
14753         rm -f $p
14754 }
14755 run_test 224c "Don't hang if one of md lost during large bulk RPC"
14756
14757 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
14758 test_225a () {
14759         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14760         if [ -z ${MDSSURVEY} ]; then
14761                 skip_env "mds-survey not found"
14762         fi
14763         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
14764                 skip "Need MDS version at least 2.2.51"
14765
14766         local mds=$(facet_host $SINGLEMDS)
14767         local target=$(do_nodes $mds 'lctl dl' |
14768                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
14769
14770         local cmd1="file_count=1000 thrhi=4"
14771         local cmd2="dir_count=2 layer=mdd stripe_count=0"
14772         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
14773         local cmd="$cmd1 $cmd2 $cmd3"
14774
14775         rm -f ${TMP}/mds_survey*
14776         echo + $cmd
14777         eval $cmd || error "mds-survey with zero-stripe failed"
14778         cat ${TMP}/mds_survey*
14779         rm -f ${TMP}/mds_survey*
14780 }
14781 run_test 225a "Metadata survey sanity with zero-stripe"
14782
14783 test_225b () {
14784         if [ -z ${MDSSURVEY} ]; then
14785                 skip_env "mds-survey not found"
14786         fi
14787         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
14788                 skip "Need MDS version at least 2.2.51"
14789         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14790         remote_mds_nodsh && skip "remote MDS with nodsh"
14791         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
14792                 skip_env "Need to mount OST to test"
14793         fi
14794
14795         local mds=$(facet_host $SINGLEMDS)
14796         local target=$(do_nodes $mds 'lctl dl' |
14797                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
14798
14799         local cmd1="file_count=1000 thrhi=4"
14800         local cmd2="dir_count=2 layer=mdd stripe_count=1"
14801         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
14802         local cmd="$cmd1 $cmd2 $cmd3"
14803
14804         rm -f ${TMP}/mds_survey*
14805         echo + $cmd
14806         eval $cmd || error "mds-survey with stripe_count failed"
14807         cat ${TMP}/mds_survey*
14808         rm -f ${TMP}/mds_survey*
14809 }
14810 run_test 225b "Metadata survey sanity with stripe_count = 1"
14811
14812 mcreate_path2fid () {
14813         local mode=$1
14814         local major=$2
14815         local minor=$3
14816         local name=$4
14817         local desc=$5
14818         local path=$DIR/$tdir/$name
14819         local fid
14820         local rc
14821         local fid_path
14822
14823         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
14824                 error "cannot create $desc"
14825
14826         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
14827         rc=$?
14828         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
14829
14830         fid_path=$($LFS fid2path $MOUNT $fid)
14831         rc=$?
14832         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
14833
14834         [ "$path" == "$fid_path" ] ||
14835                 error "fid2path returned $fid_path, expected $path"
14836
14837         echo "pass with $path and $fid"
14838 }
14839
14840 test_226a () {
14841         rm -rf $DIR/$tdir
14842         mkdir -p $DIR/$tdir
14843
14844         mcreate_path2fid 0010666 0 0 fifo "FIFO"
14845         mcreate_path2fid 0020666 1 3 null "character special file (null)"
14846         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
14847         mcreate_path2fid 0040666 0 0 dir "directory"
14848         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
14849         mcreate_path2fid 0100666 0 0 file "regular file"
14850         mcreate_path2fid 0120666 0 0 link "symbolic link"
14851         mcreate_path2fid 0140666 0 0 sock "socket"
14852 }
14853 run_test 226a "call path2fid and fid2path on files of all type"
14854
14855 test_226b () {
14856         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14857
14858         local MDTIDX=1
14859
14860         rm -rf $DIR/$tdir
14861         mkdir -p $DIR/$tdir
14862         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
14863                 error "create remote directory failed"
14864         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
14865         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
14866                                 "character special file (null)"
14867         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
14868                                 "character special file (no device)"
14869         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
14870         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
14871                                 "block special file (loop)"
14872         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
14873         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
14874         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
14875 }
14876 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
14877
14878 # LU-1299 Executing or running ldd on a truncated executable does not
14879 # cause an out-of-memory condition.
14880 test_227() {
14881         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14882         [ -z "$(which ldd)" ] && skip_env "should have ldd tool"
14883
14884         dd if=$(which date) of=$MOUNT/date bs=1k count=1
14885         chmod +x $MOUNT/date
14886
14887         $MOUNT/date > /dev/null
14888         ldd $MOUNT/date > /dev/null
14889         rm -f $MOUNT/date
14890 }
14891 run_test 227 "running truncated executable does not cause OOM"
14892
14893 # LU-1512 try to reuse idle OI blocks
14894 test_228a() {
14895         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14896         remote_mds_nodsh && skip "remote MDS with nodsh"
14897         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
14898                 skip_env "ldiskfs only test"
14899
14900         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14901         local myDIR=$DIR/$tdir
14902
14903         mkdir -p $myDIR
14904         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14905         $LCTL set_param fail_loc=0x80001002
14906         createmany -o $myDIR/t- 10000
14907         $LCTL set_param fail_loc=0
14908         # The guard is current the largest FID holder
14909         touch $myDIR/guard
14910         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14911                     tr -d '[')
14912         local IDX=$(($SEQ % 64))
14913
14914         do_facet $SINGLEMDS sync
14915         # Make sure journal flushed.
14916         sleep 6
14917         local blk1=$(do_facet $SINGLEMDS \
14918                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14919                      grep Blockcount | awk '{print $4}')
14920
14921         # Remove old files, some OI blocks will become idle.
14922         unlinkmany $myDIR/t- 10000
14923         # Create new files, idle OI blocks should be reused.
14924         createmany -o $myDIR/t- 2000
14925         do_facet $SINGLEMDS sync
14926         # Make sure journal flushed.
14927         sleep 6
14928         local blk2=$(do_facet $SINGLEMDS \
14929                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14930                      grep Blockcount | awk '{print $4}')
14931
14932         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14933 }
14934 run_test 228a "try to reuse idle OI blocks"
14935
14936 test_228b() {
14937         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14938         remote_mds_nodsh && skip "remote MDS with nodsh"
14939         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
14940                 skip_env "ldiskfs only test"
14941
14942         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14943         local myDIR=$DIR/$tdir
14944
14945         mkdir -p $myDIR
14946         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14947         $LCTL set_param fail_loc=0x80001002
14948         createmany -o $myDIR/t- 10000
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- 10000
14965
14966         # stop the MDT
14967         stop $SINGLEMDS || error "Fail to stop MDT."
14968         # remount the MDT
14969         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
14970
14971         df $MOUNT || error "Fail to df."
14972         # Create new files, idle OI blocks should be reused.
14973         createmany -o $myDIR/t- 2000
14974         do_facet $SINGLEMDS sync
14975         # Make sure journal flushed.
14976         sleep 6
14977         local blk2=$(do_facet $SINGLEMDS \
14978                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14979                      grep Blockcount | awk '{print $4}')
14980
14981         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14982 }
14983 run_test 228b "idle OI blocks can be reused after MDT restart"
14984
14985 #LU-1881
14986 test_228c() {
14987         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14988         remote_mds_nodsh && skip "remote MDS with nodsh"
14989         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
14990                 skip_env "ldiskfs only test"
14991
14992         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14993         local myDIR=$DIR/$tdir
14994
14995         mkdir -p $myDIR
14996         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14997         $LCTL set_param fail_loc=0x80001002
14998         # 20000 files can guarantee there are index nodes in the OI file
14999         createmany -o $myDIR/t- 20000
15000         $LCTL set_param fail_loc=0
15001         # The guard is current the largest FID holder
15002         touch $myDIR/guard
15003         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
15004                     tr -d '[')
15005         local IDX=$(($SEQ % 64))
15006
15007         do_facet $SINGLEMDS sync
15008         # Make sure journal flushed.
15009         sleep 6
15010         local blk1=$(do_facet $SINGLEMDS \
15011                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
15012                      grep Blockcount | awk '{print $4}')
15013
15014         # Remove old files, some OI blocks will become idle.
15015         unlinkmany $myDIR/t- 20000
15016         rm -f $myDIR/guard
15017         # The OI file should become empty now
15018
15019         # Create new files, idle OI blocks should be reused.
15020         createmany -o $myDIR/t- 2000
15021         do_facet $SINGLEMDS sync
15022         # Make sure journal flushed.
15023         sleep 6
15024         local blk2=$(do_facet $SINGLEMDS \
15025                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
15026                      grep Blockcount | awk '{print $4}')
15027
15028         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
15029 }
15030 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
15031
15032 test_229() { # LU-2482, LU-3448
15033         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15034         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
15035         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
15036                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53"
15037
15038         rm -f $DIR/$tfile
15039
15040         # Create a file with a released layout and stripe count 2.
15041         $MULTIOP $DIR/$tfile H2c ||
15042                 error "failed to create file with released layout"
15043
15044         $GETSTRIPE -v $DIR/$tfile
15045
15046         local pattern=$($GETSTRIPE -L $DIR/$tfile)
15047         [ X"$pattern" = X"released" ] || error "pattern error ($pattern)"
15048
15049         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
15050         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
15051         stat $DIR/$tfile || error "failed to stat released file"
15052
15053         chown $RUNAS_ID $DIR/$tfile ||
15054                 error "chown $RUNAS_ID $DIR/$tfile failed"
15055
15056         chgrp $RUNAS_ID $DIR/$tfile ||
15057                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
15058
15059         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
15060         rm $DIR/$tfile || error "failed to remove released file"
15061 }
15062 run_test 229 "getstripe/stat/rm/attr changes work on released files"
15063
15064 test_230a() {
15065         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15066         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15067         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15068                 skip "Need MDS version at least 2.11.52"
15069
15070         local MDTIDX=1
15071
15072         test_mkdir $DIR/$tdir
15073         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
15074         local mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230_local)
15075         [ $mdt_idx -ne 0 ] &&
15076                 error "create local directory on wrong MDT $mdt_idx"
15077
15078         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
15079                         error "create remote directory failed"
15080         local mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230)
15081         [ $mdt_idx -ne $MDTIDX ] &&
15082                 error "create remote directory on wrong MDT $mdt_idx"
15083
15084         createmany -o $DIR/$tdir/test_230/t- 10 ||
15085                 error "create files on remote directory failed"
15086         mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230/t-0)
15087         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
15088         rm -r $DIR/$tdir || error "unlink remote directory failed"
15089 }
15090 run_test 230a "Create remote directory and files under the remote directory"
15091
15092 test_230b() {
15093         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15094         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15095         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15096                 skip "Need MDS version at least 2.11.52"
15097
15098         local MDTIDX=1
15099         local mdt_index
15100         local i
15101         local file
15102         local pid
15103         local stripe_count
15104         local migrate_dir=$DIR/$tdir/migrate_dir
15105         local other_dir=$DIR/$tdir/other_dir
15106
15107         test_mkdir $DIR/$tdir
15108         test_mkdir -i0 -c1 $migrate_dir
15109         test_mkdir -i0 -c1 $other_dir
15110         for ((i=0; i<10; i++)); do
15111                 mkdir -p $migrate_dir/dir_${i}
15112                 createmany -o $migrate_dir/dir_${i}/f 10 ||
15113                         error "create files under remote dir failed $i"
15114         done
15115
15116         cp /etc/passwd $migrate_dir/$tfile
15117         cp /etc/passwd $other_dir/$tfile
15118         chattr +SAD $migrate_dir
15119         chattr +SAD $migrate_dir/$tfile
15120
15121         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
15122         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
15123         local old_dir_mode=$(stat -c%f $migrate_dir)
15124         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
15125
15126         mkdir -p $migrate_dir/dir_default_stripe2
15127         $SETSTRIPE -c 2 $migrate_dir/dir_default_stripe2
15128         $SETSTRIPE -c 2 $migrate_dir/${tfile}_stripe2
15129
15130         mkdir -p $other_dir
15131         ln $migrate_dir/$tfile $other_dir/luna
15132         ln $migrate_dir/$tfile $migrate_dir/sofia
15133         ln $other_dir/$tfile $migrate_dir/david
15134         ln -s $migrate_dir/$tfile $other_dir/zachary
15135         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
15136         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
15137
15138         $LFS migrate -m $MDTIDX $migrate_dir ||
15139                 error "fails on migrating remote dir to MDT1"
15140
15141         echo "migratate to MDT1, then checking.."
15142         for ((i = 0; i < 10; i++)); do
15143                 for file in $(find $migrate_dir/dir_${i}); do
15144                         mdt_index=$($LFS getstripe -m $file)
15145                         [ $mdt_index == $MDTIDX ] ||
15146                                 error "$file is not on MDT${MDTIDX}"
15147                 done
15148         done
15149
15150         # the multiple link file should still in MDT0
15151         mdt_index=$($LFS getstripe -m $migrate_dir/$tfile)
15152         [ $mdt_index == 0 ] ||
15153                 error "$file is not on MDT${MDTIDX}"
15154
15155         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
15156         [ "$old_dir_flag" = "$new_dir_flag" ] ||
15157                 error " expect $old_dir_flag get $new_dir_flag"
15158
15159         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
15160         [ "$old_file_flag" = "$new_file_flag" ] ||
15161                 error " expect $old_file_flag get $new_file_flag"
15162
15163         local new_dir_mode=$(stat -c%f $migrate_dir)
15164         [ "$old_dir_mode" = "$new_dir_mode" ] ||
15165                 error "expect mode $old_dir_mode get $new_dir_mode"
15166
15167         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
15168         [ "$old_file_mode" = "$new_file_mode" ] ||
15169                 error "expect mode $old_file_mode get $new_file_mode"
15170
15171         diff /etc/passwd $migrate_dir/$tfile ||
15172                 error "$tfile different after migration"
15173
15174         diff /etc/passwd $other_dir/luna ||
15175                 error "luna different after migration"
15176
15177         diff /etc/passwd $migrate_dir/sofia ||
15178                 error "sofia different after migration"
15179
15180         diff /etc/passwd $migrate_dir/david ||
15181                 error "david different after migration"
15182
15183         diff /etc/passwd $other_dir/zachary ||
15184                 error "zachary different after migration"
15185
15186         diff /etc/passwd $migrate_dir/${tfile}_ln ||
15187                 error "${tfile}_ln different after migration"
15188
15189         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
15190                 error "${tfile}_ln_other different after migration"
15191
15192         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
15193         [ $stripe_count = 2 ] ||
15194                 error "dir strpe_count $d != 2 after migration."
15195
15196         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
15197         [ $stripe_count = 2 ] ||
15198                 error "file strpe_count $d != 2 after migration."
15199
15200         #migrate back to MDT0
15201         MDTIDX=0
15202
15203         $LFS migrate -m $MDTIDX $migrate_dir ||
15204                 error "fails on migrating remote dir to MDT0"
15205
15206         echo "migrate back to MDT0, checking.."
15207         for file in $(find $migrate_dir); do
15208                 mdt_index=$($LFS getstripe -m $file)
15209                 [ $mdt_index == $MDTIDX ] ||
15210                         error "$file is not on MDT${MDTIDX}"
15211         done
15212
15213         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
15214         [ "$old_dir_flag" = "$new_dir_flag" ] ||
15215                 error " expect $old_dir_flag get $new_dir_flag"
15216
15217         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
15218         [ "$old_file_flag" = "$new_file_flag" ] ||
15219                 error " expect $old_file_flag get $new_file_flag"
15220
15221         local new_dir_mode=$(stat -c%f $migrate_dir)
15222         [ "$old_dir_mode" = "$new_dir_mode" ] ||
15223                 error "expect mode $old_dir_mode get $new_dir_mode"
15224
15225         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
15226         [ "$old_file_mode" = "$new_file_mode" ] ||
15227                 error "expect mode $old_file_mode get $new_file_mode"
15228
15229         diff /etc/passwd ${migrate_dir}/$tfile ||
15230                 error "$tfile different after migration"
15231
15232         diff /etc/passwd ${other_dir}/luna ||
15233                 error "luna different after migration"
15234
15235         diff /etc/passwd ${migrate_dir}/sofia ||
15236                 error "sofia different after migration"
15237
15238         diff /etc/passwd ${other_dir}/zachary ||
15239                 error "zachary different after migration"
15240
15241         diff /etc/passwd $migrate_dir/${tfile}_ln ||
15242                 error "${tfile}_ln different after migration"
15243
15244         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
15245                 error "${tfile}_ln_other different after migration"
15246
15247         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
15248         [ $stripe_count = 2 ] ||
15249                 error "dir strpe_count $d != 2 after migration."
15250
15251         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
15252         [ $stripe_count = 2 ] ||
15253                 error "file strpe_count $d != 2 after migration."
15254
15255         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15256 }
15257 run_test 230b "migrate directory"
15258
15259 test_230c() {
15260         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15261         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15262         remote_mds_nodsh && skip "remote MDS with nodsh"
15263         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15264                 skip "Need MDS version at least 2.11.52"
15265
15266         local MDTIDX=1
15267         local total=3
15268         local mdt_index
15269         local file
15270         local migrate_dir=$DIR/$tdir/migrate_dir
15271
15272         #If migrating directory fails in the middle, all entries of
15273         #the directory is still accessiable.
15274         test_mkdir $DIR/$tdir
15275         test_mkdir -i0 -c1 $migrate_dir
15276         test_mkdir -i1 -c1 $DIR/$tdir/remote_dir
15277         stat $migrate_dir
15278         createmany -o $migrate_dir/f $total ||
15279                 error "create files under ${migrate_dir} failed"
15280
15281         # fail after migrating top dir, and this will fail only once, so the
15282         # first sub file migration will fail (currently f3), others succeed.
15283         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
15284         do_facet mds1 lctl set_param fail_loc=0x1801
15285         local t=$(ls $migrate_dir | wc -l)
15286         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
15287                 error "migrate should fail"
15288         local u=$(ls $migrate_dir | wc -l)
15289         [ "$u" == "$t" ] || error "$u != $t during migration"
15290
15291         # add new dir/file should succeed
15292         mkdir $migrate_dir/dir ||
15293                 error "mkdir failed under migrating directory"
15294         touch $migrate_dir/file ||
15295                 error "create file failed under migrating directory"
15296
15297         # add file with existing name should fail
15298         for file in $migrate_dir/f*; do
15299                 stat $file > /dev/null || error "stat $file failed"
15300                 $OPENFILE -f O_CREAT:O_EXCL $file &&
15301                         error "open(O_CREAT|O_EXCL) $file should fail"
15302                 $MULTIOP $file m && error "create $file should fail"
15303                 touch $DIR/$tdir/remote_dir/$tfile ||
15304                         error "touch $tfile failed"
15305                 ln $DIR/$tdir/remote_dir/$tfile $file &&
15306                         error "link $file should fail"
15307                 mdt_index=$($LFS getstripe -m $file)
15308                 if [ $mdt_index == 0 ]; then
15309                         # file failed to migrate is not allowed to rename to
15310                         mv $DIR/$tdir/remote_dir/$tfile $file &&
15311                                 error "rename to $file should fail"
15312                 else
15313                         mv $DIR/$tdir/remote_dir/$tfile $file ||
15314                                 error "rename to $file failed"
15315                 fi
15316                 echo hello >> $file || error "write $file failed"
15317         done
15318
15319         # resume migration with different options should fail
15320         $LFS migrate -m 0 $migrate_dir &&
15321                 error "migrate -m 0 $migrate_dir should fail"
15322
15323         $LFS migrate -m $MDTIDX -c 2 $migrate_dir &&
15324                 error "migrate -c 2 $migrate_dir should fail"
15325
15326         # resume migration should succeed
15327         $LFS migrate -m $MDTIDX $migrate_dir ||
15328                 error "migrate $migrate_dir failed"
15329
15330         echo "Finish migration, then checking.."
15331         for file in $(find $migrate_dir); do
15332                 mdt_index=$($LFS getstripe -m $file)
15333                 [ $mdt_index == $MDTIDX ] ||
15334                         error "$file is not on MDT${MDTIDX}"
15335         done
15336
15337         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15338 }
15339 run_test 230c "check directory accessiblity if migration failed"
15340
15341 test_230d() {
15342         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15343         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15344         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15345                 skip "Need MDS version at least 2.11.52"
15346         # LU-11235
15347         [ "$(facet_fstype mds1)" == "zfs" ] && skip "skip ZFS backend"
15348
15349         local migrate_dir=$DIR/$tdir/migrate_dir
15350         local old_index
15351         local new_index
15352         local old_count
15353         local new_count
15354         local new_hash
15355         local mdt_index
15356         local i
15357         local j
15358
15359         old_index=$((RANDOM % MDSCOUNT))
15360         old_count=$((MDSCOUNT - old_index))
15361         new_index=$((RANDOM % MDSCOUNT))
15362         new_count=$((MDSCOUNT - new_index))
15363         new_hash="all_char"
15364
15365         [ $old_count -gt 1 ] && old_count=$((old_count - RANDOM % old_count))
15366         [ $new_count -gt 1 ] && new_count=$((new_count - RANDOM % new_count))
15367
15368         test_mkdir $DIR/$tdir
15369         test_mkdir -i $old_index -c $old_count $migrate_dir
15370
15371         for ((i=0; i<100; i++)); do
15372                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
15373                 createmany -o $migrate_dir/dir_${i}/f 100 ||
15374                         error "create files under remote dir failed $i"
15375         done
15376
15377         echo -n "Migrate from MDT$old_index "
15378         [ $old_count -gt 1 ] && echo -n "... MDT$((old_index + old_count - 1)) "
15379         echo -n "to MDT$new_index"
15380         [ $new_count -gt 1 ] && echo -n " ... MDT$((new_index + new_count - 1))"
15381         echo
15382
15383         echo "$LFS migrate -m$new_index -c$new_count -H $new_hash $migrate_dir"
15384         $LFS migrate -m $new_index -c $new_count -H $new_hash $migrate_dir ||
15385                 error "migrate remote dir error"
15386
15387         echo "Finish migration, then checking.."
15388         for file in $(find $migrate_dir); do
15389                 mdt_index=$($LFS getstripe -m $file)
15390                 if [ $mdt_index -lt $new_index ] ||
15391                    [ $mdt_index -gt $((new_index + new_count - 1)) ]; then
15392                         error "$file is on MDT$mdt_index"
15393                 fi
15394         done
15395
15396         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15397 }
15398 run_test 230d "check migrate big directory"
15399
15400 test_230e() {
15401         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15402         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15403         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15404                 skip "Need MDS version at least 2.11.52"
15405
15406         local i
15407         local j
15408         local a_fid
15409         local b_fid
15410
15411         mkdir -p $DIR/$tdir
15412         mkdir $DIR/$tdir/migrate_dir
15413         mkdir $DIR/$tdir/other_dir
15414         touch $DIR/$tdir/migrate_dir/a
15415         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
15416         ls $DIR/$tdir/other_dir
15417
15418         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15419                 error "migrate dir fails"
15420
15421         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
15422         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
15423
15424         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15425         [ $mdt_index == 0 ] || error "a is not on MDT0"
15426
15427         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
15428                 error "migrate dir fails"
15429
15430         mdt_index=$($LFS getstripe -m $DIR/$tdir/other_dir)
15431         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
15432
15433         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15434         [ $mdt_index == 1 ] || error "a is not on MDT1"
15435
15436         mdt_index=$($LFS getstripe -m $DIR/$tdir/other_dir/b)
15437         [ $mdt_index == 1 ] || error "b is not on MDT1"
15438
15439         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
15440         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
15441
15442         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
15443
15444         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15445 }
15446 run_test 230e "migrate mulitple local link files"
15447
15448 test_230f() {
15449         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15450         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15451         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15452                 skip "Need MDS version at least 2.11.52"
15453
15454         local a_fid
15455         local ln_fid
15456
15457         mkdir -p $DIR/$tdir
15458         mkdir $DIR/$tdir/migrate_dir
15459         $LFS mkdir -i1 $DIR/$tdir/other_dir
15460         touch $DIR/$tdir/migrate_dir/a
15461         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
15462         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
15463         ls $DIR/$tdir/other_dir
15464
15465         # a should be migrated to MDT1, since no other links on MDT0
15466         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15467                 error "#1 migrate dir fails"
15468         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
15469         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
15470         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15471         [ $mdt_index == 1 ] || error "a is not on MDT1"
15472
15473         # a should stay on MDT1, because it is a mulitple link file
15474         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
15475                 error "#2 migrate dir fails"
15476         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15477         [ $mdt_index == 1 ] || error "a is not on MDT1"
15478
15479         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15480                 error "#3 migrate dir fails"
15481
15482         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
15483         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
15484         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
15485
15486         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
15487         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
15488
15489         # a should be migrated to MDT0, since no other links on MDT1
15490         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
15491                 error "#4 migrate dir fails"
15492         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15493         [ $mdt_index == 0 ] || error "a is not on MDT0"
15494
15495         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15496 }
15497 run_test 230f "migrate mulitple remote link files"
15498
15499 test_230g() {
15500         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15501         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15502         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15503                 skip "Need MDS version at least 2.11.52"
15504
15505         mkdir -p $DIR/$tdir/migrate_dir
15506
15507         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
15508                 error "migrating dir to non-exist MDT succeeds"
15509         true
15510 }
15511 run_test 230g "migrate dir to non-exist MDT"
15512
15513 test_230h() {
15514         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15515         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15516         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15517                 skip "Need MDS version at least 2.11.52"
15518
15519         local mdt_index
15520
15521         mkdir -p $DIR/$tdir/migrate_dir
15522
15523         $LFS migrate -m1 $DIR &&
15524                 error "migrating mountpoint1 should fail"
15525
15526         $LFS migrate -m1 $DIR/$tdir/.. &&
15527                 error "migrating mountpoint2 should fail"
15528
15529         # same as mv
15530         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. &&
15531                 error "migrating $tdir/migrate_dir/.. should fail"
15532
15533         true
15534 }
15535 run_test 230h "migrate .. and root"
15536
15537 test_230i() {
15538         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15539         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15540         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15541                 skip "Need MDS version at least 2.11.52"
15542
15543         mkdir -p $DIR/$tdir/migrate_dir
15544
15545         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
15546                 error "migration fails with a tailing slash"
15547
15548         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
15549                 error "migration fails with two tailing slashes"
15550 }
15551 run_test 230i "lfs migrate -m tolerates trailing slashes"
15552
15553 test_230j() {
15554         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
15555         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15556                 skip "Need MDS version at least 2.11.52"
15557
15558         $LFS mkdir -m 0 -c 1 $DIR/$tdir || error "mkdir $tdir failed"
15559         $LFS setstripe -E 1M -L mdt $DIR/$tdir/$tfile ||
15560                 error "create $tfile failed"
15561         cat /etc/passwd > $DIR/$tdir/$tfile
15562
15563         $LFS migrate -m 1 $DIR/$tdir
15564
15565         cmp /etc/passwd $DIR/$tdir/$tfile ||
15566                 error "DoM file mismatch after migration"
15567 }
15568 run_test 230j "DoM file data not changed after dir migration"
15569
15570 test_230k() {
15571         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs"
15572         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.56) ] &&
15573                 skip "Need MDS version at least 2.11.56"
15574
15575         local total=20
15576         local files_on_starting_mdt=0
15577
15578         $LFS mkdir -i -1 -c 2 $DIR/$tdir || error "mkdir failed"
15579         $LFS getdirstripe $DIR/$tdir
15580         for i in $(seq $total); do
15581                 echo $((i*i - i)) > $DIR/$tdir/$tfile.$i || error "write failed"
15582                 [[ $($LFS getstripe -m $DIR/$tdir/$tfile.$i) -eq 0 ]] &&
15583                         files_on_starting_mdt=$((files_on_starting_mdt + 1))
15584         done
15585
15586         echo "$files_on_starting_mdt files on MDT0"
15587
15588         $LFS migrate -m 1,3 $DIR/$tdir || error "migrate -m 1,3 failed"
15589         $LFS getdirstripe $DIR/$tdir
15590
15591         files_on_starting_mdt=0
15592         for i in $(seq $total); do
15593                 $(echo $((i*i - i)) | cmp $DIR/$tdir/$tfile.$i -) ||
15594                         error "file $tfile.$i mismatch after migration"
15595                 [[ $($LFS getstripe -m $DIR/$tdir/$tfile.$i) -eq 1 ]] &&
15596                         files_on_starting_mdt=$((files_on_starting_mdt + 1))
15597         done
15598
15599         echo "$files_on_starting_mdt files on MDT1 after migration"
15600         [[ $files_on_starting_mdt -eq $total ]] && error "all files on MDT1"
15601
15602         $LFS migrate -m 0 -c 2 $DIR/$tdir || error "migrate -m 0 -c 2 failed"
15603         $LFS getdirstripe $DIR/$tdir
15604
15605         files_on_starting_mdt=0
15606         for i in $(seq $total); do
15607                 $(echo $((i*i - i)) | cmp $DIR/$tdir/$tfile.$i -) ||
15608                         error "file $tfile.$i mismatch after 2nd migration"
15609                 [[ $($LFS getstripe -m $DIR/$tdir/$tfile.$i) -eq 0 ]] &&
15610                         files_on_starting_mdt=$((files_on_starting_mdt + 1))
15611         done
15612
15613         echo "$files_on_starting_mdt files on MDT0 after 2nd migration"
15614         [[ $files_on_starting_mdt -eq $total ]] && error "all files on MDT0"
15615
15616         true
15617 }
15618 run_test 230k "file data not changed after dir migration"
15619
15620 test_230l() {
15621         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
15622         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.56) ] &&
15623                 skip "Need MDS version at least 2.11.56"
15624
15625         $LFS mkdir -i 0 -c 1 $DIR/$tdir || error "mkdir failed"
15626         createmany -o $DIR/$tdir/f___________________________________ 1000 ||
15627                 error "create files under remote dir failed $i"
15628         $LFS migrate -m 1 $DIR/$tdir || error "migrate failed"
15629 }
15630 run_test 230l "readdir between MDTs won't crash"
15631
15632 test_231a()
15633 {
15634         # For simplicity this test assumes that max_pages_per_rpc
15635         # is the same across all OSCs
15636         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
15637         local bulk_size=$((max_pages * PAGE_SIZE))
15638         local brw_size=$(do_facet ost1 $LCTL get_param -n obdfilter.*.brw_size |
15639                                        head -n 1)
15640
15641         mkdir -p $DIR/$tdir
15642         $LFS setstripe -S ${brw_size}M $DIR/$tdir ||
15643                 error "failed to set stripe with -S ${brw_size}M option"
15644
15645         # clear the OSC stats
15646         $LCTL set_param osc.*.stats=0 &>/dev/null
15647         stop_writeback
15648
15649         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
15650         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
15651                 oflag=direct &>/dev/null || error "dd failed"
15652
15653         sync; sleep 1; sync # just to be safe
15654         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
15655         if [ x$nrpcs != "x1" ]; then
15656                 $LCTL get_param osc.*.stats
15657                 error "found $nrpcs ost_write RPCs, not 1 as expected"
15658         fi
15659
15660         start_writeback
15661         # Drop the OSC cache, otherwise we will read from it
15662         cancel_lru_locks osc
15663
15664         # clear the OSC stats
15665         $LCTL set_param osc.*.stats=0 &>/dev/null
15666
15667         # Client reads $bulk_size.
15668         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
15669                 iflag=direct &>/dev/null || error "dd failed"
15670
15671         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
15672         if [ x$nrpcs != "x1" ]; then
15673                 $LCTL get_param osc.*.stats
15674                 error "found $nrpcs ost_read RPCs, not 1 as expected"
15675         fi
15676 }
15677 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
15678
15679 test_231b() {
15680         mkdir -p $DIR/$tdir
15681         local i
15682         for i in {0..1023}; do
15683                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
15684                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
15685                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
15686         done
15687         sync
15688 }
15689 run_test 231b "must not assert on fully utilized OST request buffer"
15690
15691 test_232a() {
15692         mkdir -p $DIR/$tdir
15693         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
15694
15695         #define OBD_FAIL_LDLM_OST_LVB            0x31c
15696         do_facet ost1 $LCTL set_param fail_loc=0x31c
15697
15698         # ignore dd failure
15699         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
15700
15701         do_facet ost1 $LCTL set_param fail_loc=0
15702         umount_client $MOUNT || error "umount failed"
15703         mount_client $MOUNT || error "mount failed"
15704         stop ost1 || error "cannot stop ost1"
15705         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
15706 }
15707 run_test 232a "failed lock should not block umount"
15708
15709 test_232b() {
15710         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.58) ] ||
15711                 skip "Need MDS version at least 2.10.58"
15712
15713         mkdir -p $DIR/$tdir
15714         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
15715         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1
15716         sync
15717         cancel_lru_locks osc
15718
15719         #define OBD_FAIL_LDLM_OST_LVB            0x31c
15720         do_facet ost1 $LCTL set_param fail_loc=0x31c
15721
15722         # ignore failure
15723         $LFS data_version $DIR/$tdir/$tfile || true
15724
15725         do_facet ost1 $LCTL set_param fail_loc=0
15726         umount_client $MOUNT || error "umount failed"
15727         mount_client $MOUNT || error "mount failed"
15728         stop ost1 || error "cannot stop ost1"
15729         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
15730 }
15731 run_test 232b "failed data version lock should not block umount"
15732
15733 test_233a() {
15734         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
15735                 skip "Need MDS version at least 2.3.64"
15736         [ -n "$FILESET" ] && skip_env "SKIP due to FILESET set"
15737
15738         local fid=$($LFS path2fid $MOUNT)
15739
15740         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15741                 error "cannot access $MOUNT using its FID '$fid'"
15742 }
15743 run_test 233a "checking that OBF of the FS root succeeds"
15744
15745 test_233b() {
15746         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
15747                 skip "Need MDS version at least 2.5.90"
15748         [ -n "$FILESET" ] && skip_env "SKIP due to FILESET set"
15749
15750         local fid=$($LFS path2fid $MOUNT/.lustre)
15751
15752         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15753                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
15754
15755         fid=$($LFS path2fid $MOUNT/.lustre/fid)
15756         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15757                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
15758 }
15759 run_test 233b "checking that OBF of the FS .lustre succeeds"
15760
15761 test_234() {
15762         local p="$TMP/sanityN-$TESTNAME.parameters"
15763         save_lustre_params client "llite.*.xattr_cache" > $p
15764         lctl set_param llite.*.xattr_cache 1 ||
15765                 skip_env "xattr cache is not supported"
15766
15767         mkdir -p $DIR/$tdir || error "mkdir failed"
15768         touch $DIR/$tdir/$tfile || error "touch failed"
15769         # OBD_FAIL_LLITE_XATTR_ENOMEM
15770         $LCTL set_param fail_loc=0x1405
15771         getfattr -n user.attr $DIR/$tdir/$tfile &&
15772                 error "getfattr should have failed with ENOMEM"
15773         $LCTL set_param fail_loc=0x0
15774         rm -rf $DIR/$tdir
15775
15776         restore_lustre_params < $p
15777         rm -f $p
15778 }
15779 run_test 234 "xattr cache should not crash on ENOMEM"
15780
15781 test_235() {
15782         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
15783                 skip "Need MDS version at least 2.4.52"
15784
15785         flock_deadlock $DIR/$tfile
15786         local RC=$?
15787         case $RC in
15788                 0)
15789                 ;;
15790                 124) error "process hangs on a deadlock"
15791                 ;;
15792                 *) error "error executing flock_deadlock $DIR/$tfile"
15793                 ;;
15794         esac
15795 }
15796 run_test 235 "LU-1715: flock deadlock detection does not work properly"
15797
15798 #LU-2935
15799 test_236() {
15800         check_swap_layouts_support
15801
15802         local ref1=/etc/passwd
15803         local ref2=/etc/group
15804         local file1=$DIR/$tdir/f1
15805         local file2=$DIR/$tdir/f2
15806
15807         test_mkdir -c1 $DIR/$tdir
15808         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
15809         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
15810         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
15811         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
15812         local fd=$(free_fd)
15813         local cmd="exec $fd<>$file2"
15814         eval $cmd
15815         rm $file2
15816         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
15817                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
15818         cmd="exec $fd>&-"
15819         eval $cmd
15820         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
15821
15822         #cleanup
15823         rm -rf $DIR/$tdir
15824 }
15825 run_test 236 "Layout swap on open unlinked file"
15826
15827 # LU-4659 linkea consistency
15828 test_238() {
15829         local server_version=$(lustre_version_code $SINGLEMDS)
15830
15831         [[ $server_version -gt $(version_code 2.5.57) ]] ||
15832                 [[ $server_version -gt $(version_code 2.5.1) &&
15833                    $server_version -lt $(version_code 2.5.50) ]] ||
15834                 skip "Need MDS version at least 2.5.58 or 2.5.2+"
15835
15836         touch $DIR/$tfile
15837         ln $DIR/$tfile $DIR/$tfile.lnk
15838         touch $DIR/$tfile.new
15839         mv $DIR/$tfile.new $DIR/$tfile
15840         local fid1=$($LFS path2fid $DIR/$tfile)
15841         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
15842         local path1=$($LFS fid2path $FSNAME "$fid1")
15843         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
15844         local path2=$($LFS fid2path $FSNAME "$fid2")
15845         [ $tfile.lnk == $path2 ] ||
15846                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
15847         rm -f $DIR/$tfile*
15848 }
15849 run_test 238 "Verify linkea consistency"
15850
15851 test_239A() { # was test_239
15852         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.60) ] &&
15853                 skip "Need MDS version at least 2.5.60"
15854
15855         local list=$(comma_list $(mdts_nodes))
15856
15857         mkdir -p $DIR/$tdir
15858         createmany -o $DIR/$tdir/f- 5000
15859         unlinkmany $DIR/$tdir/f- 5000
15860         [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.10.53) ] &&
15861                 do_nodes $list "lctl set_param -n osp.*.force_sync=1"
15862         changes=$(do_nodes $list "lctl get_param -n osp.*MDT*.sync_changes \
15863                         osp.*MDT*.sync_in_flight" | calc_sum)
15864         [ "$changes" -eq 0 ] || error "$changes not synced"
15865 }
15866 run_test 239A "osp_sync test"
15867
15868 test_239a() { #LU-5297
15869         remote_mds_nodsh && skip "remote MDS with nodsh"
15870
15871         touch $DIR/$tfile
15872         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
15873         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
15874         chgrp $RUNAS_GID $DIR/$tfile
15875         wait_delete_completed
15876 }
15877 run_test 239a "process invalid osp sync record correctly"
15878
15879 test_239b() { #LU-5297
15880         remote_mds_nodsh && skip "remote MDS with nodsh"
15881
15882         touch $DIR/$tfile1
15883         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
15884         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
15885         chgrp $RUNAS_GID $DIR/$tfile1
15886         wait_delete_completed
15887         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
15888         touch $DIR/$tfile2
15889         chgrp $RUNAS_GID $DIR/$tfile2
15890         wait_delete_completed
15891 }
15892 run_test 239b "process osp sync record with ENOMEM error correctly"
15893
15894 test_240() {
15895         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15896         remote_mds_nodsh && skip "remote MDS with nodsh"
15897
15898         mkdir -p $DIR/$tdir
15899
15900         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
15901                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
15902         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
15903                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
15904
15905         umount_client $MOUNT || error "umount failed"
15906         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
15907         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
15908         mount_client $MOUNT || error "failed to mount client"
15909
15910         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
15911         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
15912 }
15913 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
15914
15915 test_241_bio() {
15916         local count=$1
15917         local bsize=$2
15918
15919         for LOOP in $(seq $count); do
15920                 dd if=$DIR/$tfile of=/dev/null bs=$bsize count=1 2>/dev/null
15921                 cancel_lru_locks $OSC || true
15922         done
15923 }
15924
15925 test_241_dio() {
15926         local count=$1
15927         local bsize=$2
15928
15929         for LOOP in $(seq $1); do
15930                 dd if=$DIR/$tfile of=/dev/null bs=$bsize count=1 iflag=direct \
15931                         2>/dev/null
15932         done
15933 }
15934
15935 test_241a() { # was test_241
15936         local bsize=$PAGE_SIZE
15937
15938         (( bsize < 40960 )) && bsize=40960
15939         dd if=/dev/zero of=$DIR/$tfile count=1 bs=$bsize
15940         ls -la $DIR/$tfile
15941         cancel_lru_locks $OSC
15942         test_241_bio 1000 $bsize &
15943         PID=$!
15944         test_241_dio 1000 $bsize
15945         wait $PID
15946 }
15947 run_test 241a "bio vs dio"
15948
15949 test_241b() {
15950         local bsize=$PAGE_SIZE
15951
15952         (( bsize < 40960 )) && bsize=40960
15953         dd if=/dev/zero of=$DIR/$tfile count=1 bs=$bsize
15954         ls -la $DIR/$tfile
15955         test_241_dio 1000 $bsize &
15956         PID=$!
15957         test_241_dio 1000 $bsize
15958         wait $PID
15959 }
15960 run_test 241b "dio vs dio"
15961
15962 test_242() {
15963         remote_mds_nodsh && skip "remote MDS with nodsh"
15964
15965         mkdir -p $DIR/$tdir
15966         touch $DIR/$tdir/$tfile
15967
15968         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
15969         do_facet mds1 lctl set_param fail_loc=0x105
15970         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
15971
15972         do_facet mds1 lctl set_param fail_loc=0
15973         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
15974 }
15975 run_test 242 "mdt_readpage failure should not cause directory unreadable"
15976
15977 test_243()
15978 {
15979         test_mkdir $DIR/$tdir
15980         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
15981 }
15982 run_test 243 "various group lock tests"
15983
15984 test_244()
15985 {
15986         test_mkdir $DIR/$tdir
15987         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
15988         sendfile_grouplock $DIR/$tdir/$tfile || \
15989                 error "sendfile+grouplock failed"
15990         rm -rf $DIR/$tdir
15991 }
15992 run_test 244 "sendfile with group lock tests"
15993
15994 test_245() {
15995         local flagname="multi_mod_rpcs"
15996         local connect_data_name="max_mod_rpcs"
15997         local out
15998
15999         # check if multiple modify RPCs flag is set
16000         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
16001                 grep "connect_flags:")
16002         echo "$out"
16003
16004         echo "$out" | grep -qw $flagname
16005         if [ $? -ne 0 ]; then
16006                 echo "connect flag $flagname is not set"
16007                 return
16008         fi
16009
16010         # check if multiple modify RPCs data is set
16011         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
16012         echo "$out"
16013
16014         echo "$out" | grep -qw $connect_data_name ||
16015                 error "import should have connect data $connect_data_name"
16016 }
16017 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
16018
16019 test_246() { # LU-7371
16020         remote_ost_nodsh && skip "remote OST with nodsh"
16021         [ $(lustre_version_code ost1) -lt $(version_code 2.7.62) ] &&
16022                 skip "Need OST version >= 2.7.62"
16023
16024         do_facet ost1 $LCTL set_param fail_val=4095
16025 #define OBD_FAIL_OST_READ_SIZE          0x234
16026         do_facet ost1 $LCTL set_param fail_loc=0x234
16027         $LFS setstripe $DIR/$tfile -i 0 -c 1
16028         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
16029         cancel_lru_locks $FSNAME-OST0000
16030         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
16031 }
16032 run_test 246 "Read file of size 4095 should return right length"
16033
16034 cleanup_247() {
16035         local submount=$1
16036
16037         trap 0
16038         umount_client $submount
16039         rmdir $submount
16040 }
16041
16042 test_247a() {
16043         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
16044                 grep -q subtree ||
16045                 skip_env "Fileset feature is not supported"
16046
16047         local submount=${MOUNT}_$tdir
16048
16049         mkdir $MOUNT/$tdir
16050         mkdir -p $submount || error "mkdir $submount failed"
16051         FILESET="$FILESET/$tdir" mount_client $submount ||
16052                 error "mount $submount failed"
16053         trap "cleanup_247 $submount" EXIT
16054         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
16055         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
16056                 error "read $MOUNT/$tdir/$tfile failed"
16057         cleanup_247 $submount
16058 }
16059 run_test 247a "mount subdir as fileset"
16060
16061 test_247b() {
16062         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
16063                 skip_env "Fileset feature is not supported"
16064
16065         local submount=${MOUNT}_$tdir
16066
16067         rm -rf $MOUNT/$tdir
16068         mkdir -p $submount || error "mkdir $submount failed"
16069         SKIP_FILESET=1
16070         FILESET="$FILESET/$tdir" mount_client $submount &&
16071                 error "mount $submount should fail"
16072         rmdir $submount
16073 }
16074 run_test 247b "mount subdir that dose not exist"
16075
16076 test_247c() {
16077         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
16078                 skip_env "Fileset feature is not supported"
16079
16080         local submount=${MOUNT}_$tdir
16081
16082         mkdir -p $MOUNT/$tdir/dir1
16083         mkdir -p $submount || error "mkdir $submount failed"
16084         trap "cleanup_247 $submount" EXIT
16085         FILESET="$FILESET/$tdir" mount_client $submount ||
16086                 error "mount $submount failed"
16087         local fid=$($LFS path2fid $MOUNT/)
16088         $LFS fid2path $submount $fid && error "fid2path should fail"
16089         cleanup_247 $submount
16090 }
16091 run_test 247c "running fid2path outside root"
16092
16093 test_247d() {
16094         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
16095                 skip "Fileset feature is not supported"
16096
16097         local submount=${MOUNT}_$tdir
16098
16099         mkdir -p $MOUNT/$tdir/dir1
16100         mkdir -p $submount || error "mkdir $submount failed"
16101         FILESET="$FILESET/$tdir" mount_client $submount ||
16102                 error "mount $submount failed"
16103         trap "cleanup_247 $submount" EXIT
16104         local fid=$($LFS path2fid $submount/dir1)
16105         $LFS fid2path $submount $fid || error "fid2path should succeed"
16106         cleanup_247 $submount
16107 }
16108 run_test 247d "running fid2path inside root"
16109
16110 # LU-8037
16111 test_247e() {
16112         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
16113                 grep -q subtree ||
16114                 skip "Fileset feature is not supported"
16115
16116         local submount=${MOUNT}_$tdir
16117
16118         mkdir $MOUNT/$tdir
16119         mkdir -p $submount || error "mkdir $submount failed"
16120         FILESET="$FILESET/.." mount_client $submount &&
16121                 error "mount $submount should fail"
16122         rmdir $submount
16123 }
16124 run_test 247e "mount .. as fileset"
16125
16126 test_248() {
16127         local fast_read_sav=$($LCTL get_param -n llite.*.fast_read 2>/dev/null)
16128         [ -z "$fast_read_sav" ] && skip "no fast read support"
16129
16130         # create a large file for fast read verification
16131         dd if=/dev/zero of=$DIR/$tfile bs=1M count=128 > /dev/null 2>&1
16132
16133         # make sure the file is created correctly
16134         $CHECKSTAT -s $((128*1024*1024)) $DIR/$tfile ||
16135                 { rm -f $DIR/$tfile; skip "file creation error"; }
16136
16137         echo "Test 1: verify that fast read is 4 times faster on cache read"
16138
16139         # small read with fast read enabled
16140         $LCTL set_param -n llite.*.fast_read=1
16141         local t_fast=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
16142                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
16143                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
16144         # small read with fast read disabled
16145         $LCTL set_param -n llite.*.fast_read=0
16146         local t_slow=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
16147                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
16148                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
16149
16150         # verify that fast read is 4 times faster for cache read
16151         [ $(bc <<< "4 * $t_fast < $t_slow") -eq 1 ] ||
16152                 error_not_in_vm "fast read was not 4 times faster: " \
16153                            "$t_fast vs $t_slow"
16154
16155         echo "Test 2: verify the performance between big and small read"
16156         $LCTL set_param -n llite.*.fast_read=1
16157
16158         # 1k non-cache read
16159         cancel_lru_locks osc
16160         local t_1k=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
16161                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
16162                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
16163
16164         # 1M non-cache read
16165         cancel_lru_locks osc
16166         local t_1m=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
16167                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
16168                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
16169
16170         # verify that big IO is not 4 times faster than small IO
16171         [ $(bc <<< "4 * $t_1k >= $t_1m") -eq 1 ] ||
16172                 error_not_in_vm "bigger IO is way too fast: $t_1k vs $t_1m"
16173
16174         $LCTL set_param -n llite.*.fast_read=$fast_read_sav
16175         rm -f $DIR/$tfile
16176 }
16177 run_test 248 "fast read verification"
16178
16179 test_249() { # LU-7890
16180         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
16181                 skip "Need at least version 2.8.54"
16182
16183         rm -f $DIR/$tfile
16184         $SETSTRIPE -c 1 $DIR/$tfile
16185         # Offset 2T == 4k * 512M
16186         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 seek=512M ||
16187                 error "dd to 2T offset failed"
16188 }
16189 run_test 249 "Write above 2T file size"
16190
16191 test_250() {
16192         [ "$(facet_fstype ost$(($($GETSTRIPE -i $DIR/$tfile) + 1)))" = "zfs" ] \
16193          && skip "no 16TB file size limit on ZFS"
16194
16195         $SETSTRIPE -c 1 $DIR/$tfile
16196         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
16197         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
16198         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
16199         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
16200                 conv=notrunc,fsync && error "append succeeded"
16201         return 0
16202 }
16203 run_test 250 "Write above 16T limit"
16204
16205 test_251() {
16206         $SETSTRIPE -c -1 -S 1048576 $DIR/$tfile
16207
16208         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
16209         #Skip once - writing the first stripe will succeed
16210         $LCTL set_param fail_loc=0xa0001407 fail_val=1
16211         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
16212                 error "short write happened"
16213
16214         $LCTL set_param fail_loc=0xa0001407 fail_val=1
16215         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
16216                 error "short read happened"
16217
16218         rm -f $DIR/$tfile
16219 }
16220 run_test 251 "Handling short read and write correctly"
16221
16222 test_252() {
16223         remote_mds_nodsh && skip "remote MDS with nodsh"
16224         remote_ost_nodsh && skip "remote OST with nodsh"
16225         if [ "$(facet_fstype ost1)" != "ldiskfs" -o \
16226              "$(facet_fstype mds1)" != "ldiskfs" ]; then
16227                 skip_env "ldiskfs only test"
16228         fi
16229
16230         local tgt
16231         local dev
16232         local out
16233         local uuid
16234         local num
16235         local gen
16236
16237         # check lr_reader on OST0000
16238         tgt=ost1
16239         dev=$(facet_device $tgt)
16240         out=$(do_facet $tgt $LR_READER $dev)
16241         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
16242         echo "$out"
16243         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
16244         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
16245                 error "Invalid uuid returned by $LR_READER on target $tgt"
16246         echo -e "uuid returned by $LR_READER is '$uuid'\n"
16247
16248         # check lr_reader -c on MDT0000
16249         tgt=mds1
16250         dev=$(facet_device $tgt)
16251         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
16252                 skip "$LR_READER does not support additional options"
16253         fi
16254         out=$(do_facet $tgt $LR_READER -c $dev)
16255         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
16256         echo "$out"
16257         num=$(echo "$out" | grep -c "mdtlov")
16258         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
16259                 error "Invalid number of mdtlov clients returned by $LR_READER"
16260         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
16261
16262         # check lr_reader -cr on MDT0000
16263         out=$(do_facet $tgt $LR_READER -cr $dev)
16264         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
16265         echo "$out"
16266         echo "$out" | grep -q "^reply_data:$" ||
16267                 error "$LR_READER should have returned 'reply_data' section"
16268         num=$(echo "$out" | grep -c "client_generation")
16269         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
16270 }
16271 run_test 252 "check lr_reader tool"
16272
16273 test_253_fill_ost() {
16274         local size_mb #how many MB should we write to pass watermark
16275         local lwm=$3  #low watermark
16276         local free_10mb #10% of free space
16277
16278         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
16279         size_mb=$((free_kb / 1024 - lwm))
16280         free_10mb=$((free_kb / 10240))
16281         #If 10% of free space cross low watermark use it
16282         if (( free_10mb > size_mb )); then
16283                 size_mb=$free_10mb
16284         else
16285                 #At least we need to store 1.1 of difference between
16286                 #free space and low watermark
16287                 size_mb=$((size_mb + size_mb / 10))
16288         fi
16289         if (( lwm <= $((free_kb / 1024)) )) || [ ! -f $DIR/$tdir/1 ]; then
16290                 dd if=/dev/zero of=$DIR/$tdir/1 bs=1M count=$size_mb \
16291                          oflag=append conv=notrunc
16292         fi
16293
16294         sleep_maxage
16295
16296         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
16297         echo "OST still has $((free_kb / 1024)) mbytes free"
16298 }
16299
16300 test_253() {
16301         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16302         remote_mds_nodsh && skip "remote MDS with nodsh"
16303         remote_mgs_nodsh && skip "remote MGS with nodsh"
16304
16305         local ostidx=0
16306         local rc=0
16307
16308         local ost_name=$($LFS osts |
16309                 sed -n 's/^'$ostidx': \(.*\)_UUID .*/\1/p')
16310         # on the mdt's osc
16311         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $ost_name)
16312         do_facet $SINGLEMDS $LCTL get_param -n \
16313                 osp.$mdtosc_proc1.reserved_mb_high ||
16314                 skip  "remote MDS does not support reserved_mb_high"
16315
16316         rm -rf $DIR/$tdir
16317         wait_mds_ost_sync
16318         wait_delete_completed
16319         mkdir $DIR/$tdir
16320
16321         local last_wm_h=$(do_facet $SINGLEMDS $LCTL get_param -n \
16322                         osp.$mdtosc_proc1.reserved_mb_high)
16323         local last_wm_l=$(do_facet $SINGLEMDS $LCTL get_param -n \
16324                         osp.$mdtosc_proc1.reserved_mb_low)
16325         echo "prev high watermark $last_wm_h, prev low watermark $last_wm_l"
16326
16327         if ! combined_mgs_mds ; then
16328                 mount_mgs_client
16329         fi
16330         create_pool $FSNAME.$TESTNAME || error "Pool creation failed"
16331         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $ost_name ||
16332                 error "Adding $ost_name to pool failed"
16333
16334         # Wait for client to see a OST at pool
16335         wait_update $HOSTNAME "$LCTL get_param -n
16336                 lov.$FSNAME-*.pools.$TESTNAME | sort -u |
16337                 grep $ost_name" "$ost_name""_UUID" $((TIMEOUT/2)) ||
16338                 error "Client can not see the pool"
16339         $SETSTRIPE $DIR/$tdir -i $ostidx -c 1 -p $FSNAME.$TESTNAME ||
16340                 error "Setstripe failed"
16341
16342         dd if=/dev/zero of=$DIR/$tdir/0 bs=1M count=10
16343         local blocks=$($LFS df $MOUNT | grep $ost_name | awk '{ print $4 }')
16344         echo "OST still has $((blocks/1024)) mbytes free"
16345
16346         local new_lwm=$((blocks/1024-10))
16347         do_facet $SINGLEMDS $LCTL set_param \
16348                         osp.$mdtosc_proc1.reserved_mb_high=$((new_lwm+5))
16349         do_facet $SINGLEMDS $LCTL set_param \
16350                         osp.$mdtosc_proc1.reserved_mb_low=$new_lwm
16351
16352         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
16353
16354         #First enospc could execute orphan deletion so repeat.
16355         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
16356
16357         local oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
16358                         osp.$mdtosc_proc1.prealloc_status)
16359         echo "prealloc_status $oa_status"
16360
16361         dd if=/dev/zero of=$DIR/$tdir/2 bs=1M count=1 &&
16362                 error "File creation should fail"
16363         #object allocation was stopped, but we still able to append files
16364         dd if=/dev/zero of=$DIR/$tdir/1 bs=1M seek=6 count=5 oflag=append ||
16365                 error "Append failed"
16366         rm -f $DIR/$tdir/1 $DIR/$tdir/0 $DIR/$tdir/r*
16367
16368         wait_delete_completed
16369
16370         sleep_maxage
16371
16372         for i in $(seq 10 12); do
16373                 dd if=/dev/zero of=$DIR/$tdir/$i bs=1M count=1 2>/dev/null ||
16374                         error "File creation failed after rm";
16375         done
16376
16377         oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
16378                         osp.$mdtosc_proc1.prealloc_status)
16379         echo "prealloc_status $oa_status"
16380
16381         if (( oa_status != 0 )); then
16382                 error "Object allocation still disable after rm"
16383         fi
16384         do_facet $SINGLEMDS $LCTL set_param \
16385                         osp.$mdtosc_proc1.reserved_mb_high=$last_wm_h
16386         do_facet $SINGLEMDS $LCTL set_param \
16387                         osp.$mdtosc_proc1.reserved_mb_low=$last_wm_l
16388
16389
16390         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $ost_name ||
16391                 error "Remove $ost_name from pool failed"
16392         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
16393                 error "Pool destroy fialed"
16394
16395         if ! combined_mgs_mds ; then
16396                 umount_mgs_client
16397         fi
16398 }
16399 run_test 253 "Check object allocation limit"
16400
16401 test_254() {
16402         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16403         remote_mds_nodsh && skip "remote MDS with nodsh"
16404         do_facet $SINGLEMDS $LCTL get_param -n mdd.$MDT0.changelog_size ||
16405                 skip "MDS does not support changelog_size"
16406
16407         local cl_user
16408         local MDT0=$(facet_svc $SINGLEMDS)
16409
16410         changelog_register || error "changelog_register failed"
16411
16412         changelog_clear 0 || error "changelog_clear failed"
16413
16414         local size1=$(do_facet $SINGLEMDS \
16415                       $LCTL get_param -n mdd.$MDT0.changelog_size)
16416         echo "Changelog size $size1"
16417
16418         rm -rf $DIR/$tdir
16419         $LFS mkdir -i 0 $DIR/$tdir
16420         # change something
16421         mkdir -p $DIR/$tdir/pics/2008/zachy
16422         touch $DIR/$tdir/pics/2008/zachy/timestamp
16423         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
16424         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
16425         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
16426         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
16427         rm $DIR/$tdir/pics/desktop.jpg
16428
16429         local size2=$(do_facet $SINGLEMDS \
16430                       $LCTL get_param -n mdd.$MDT0.changelog_size)
16431         echo "Changelog size after work $size2"
16432
16433         (( $size2 > $size1 )) ||
16434                 error "new Changelog size=$size2 less than old size=$size1"
16435 }
16436 run_test 254 "Check changelog size"
16437
16438 ladvise_no_type()
16439 {
16440         local type=$1
16441         local file=$2
16442
16443         lfs ladvise -a invalid $file 2>&1 | grep "Valid types" |
16444                 awk -F: '{print $2}' | grep $type > /dev/null
16445         if [ $? -ne 0 ]; then
16446                 return 0
16447         fi
16448         return 1
16449 }
16450
16451 ladvise_no_ioctl()
16452 {
16453         local file=$1
16454
16455         lfs ladvise -a willread $file > /dev/null 2>&1
16456         if [ $? -eq 0 ]; then
16457                 return 1
16458         fi
16459
16460         lfs ladvise -a willread $file 2>&1 |
16461                 grep "Inappropriate ioctl for device" > /dev/null
16462         if [ $? -eq 0 ]; then
16463                 return 0
16464         fi
16465         return 1
16466 }
16467
16468 percent() {
16469         bc <<<"scale=2; ($1 - $2) * 100 / $2"
16470 }
16471
16472 # run a random read IO workload
16473 # usage: random_read_iops <filename> <filesize> <iosize>
16474 random_read_iops() {
16475         local file=$1
16476         local fsize=$2
16477         local iosize=${3:-4096}
16478
16479         $READS -f $file -s $fsize -b $iosize -n $((fsize / iosize)) -t 60 |
16480                 sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##'
16481 }
16482
16483 drop_file_oss_cache() {
16484         local file="$1"
16485         local nodes="$2"
16486
16487         $LFS ladvise -a dontneed $file 2>/dev/null ||
16488                 do_nodes $nodes "echo 3 > /proc/sys/vm/drop_caches"
16489 }
16490
16491 ladvise_willread_performance()
16492 {
16493         local repeat=10
16494         local average_origin=0
16495         local average_cache=0
16496         local average_ladvise=0
16497
16498         for ((i = 1; i <= $repeat; i++)); do
16499                 echo "Iter $i/$repeat: reading without willread hint"
16500                 cancel_lru_locks osc
16501                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
16502                 local speed_origin=$(random_read_iops $DIR/$tfile $size)
16503                 echo "Iter $i/$repeat: uncached speed: $speed_origin"
16504                 average_origin=$(bc <<<"$average_origin + $speed_origin")
16505
16506                 cancel_lru_locks osc
16507                 local speed_cache=$(random_read_iops $DIR/$tfile $size)
16508                 echo "Iter $i/$repeat: OSS cache speed: $speed_cache"
16509                 average_cache=$(bc <<<"$average_cache + $speed_cache")
16510
16511                 cancel_lru_locks osc
16512                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
16513                 $LFS ladvise -a willread $DIR/$tfile || error "ladvise failed"
16514                 local speed_ladvise=$(random_read_iops $DIR/$tfile $size)
16515                 echo "Iter $i/$repeat: ladvise speed: $speed_ladvise"
16516                 average_ladvise=$(bc <<<"$average_ladvise + $speed_ladvise")
16517         done
16518         average_origin=$(bc <<<"scale=2; $average_origin / $repeat")
16519         average_cache=$(bc <<<"scale=2; $average_cache / $repeat")
16520         average_ladvise=$(bc <<<"scale=2; $average_ladvise / $repeat")
16521
16522         speedup_cache=$(percent $average_cache $average_origin)
16523         speedup_ladvise=$(percent $average_ladvise $average_origin)
16524
16525         echo "Average uncached read: $average_origin"
16526         echo "Average speedup with OSS cached read: " \
16527                 "$average_cache = +$speedup_cache%"
16528         echo "Average speedup with ladvise willread: " \
16529                 "$average_ladvise = +$speedup_ladvise%"
16530
16531         local lowest_speedup=20
16532         if [ ${average_cache%.*} -lt $lowest_speedup ]; then
16533                 echo "Speedup with OSS cached read less than $lowest_speedup%," \
16534                         "got $average_cache%. Skipping ladvise willread check."
16535                 return 0
16536         fi
16537
16538         # the test won't work on ZFS until it supports 'ladvise dontneed', but
16539         # it is still good to run until then to exercise 'ladvise willread'
16540         ! $LFS ladvise -a dontneed $DIR/$tfile &&
16541                 [ "$(facet_fstype ost1)" = "zfs" ] &&
16542                 echo "osd-zfs does not support dontneed or drop_caches" &&
16543                 return 0
16544
16545         lowest_speedup=$(bc <<<"scale=2; $average_cache / 2")
16546         [ ${average_ladvise%.*} -gt $lowest_speedup ] ||
16547                 error_not_in_vm "Speedup with willread is less than " \
16548                         "$lowest_speedup%, got $average_ladvise%"
16549 }
16550
16551 test_255a() {
16552         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
16553                 skip "lustre < 2.8.54 does not support ladvise "
16554         remote_ost_nodsh && skip "remote OST with nodsh"
16555
16556         lfs setstripe -c -1 -i 0 $DIR/$tfile || error "$tfile failed"
16557
16558         ladvise_no_type willread $DIR/$tfile &&
16559                 skip "willread ladvise is not supported"
16560
16561         ladvise_no_ioctl $DIR/$tfile &&
16562                 skip "ladvise ioctl is not supported"
16563
16564         local size_mb=100
16565         local size=$((size_mb * 1048576))
16566         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
16567                 error "dd to $DIR/$tfile failed"
16568
16569         lfs ladvise -a willread $DIR/$tfile ||
16570                 error "Ladvise failed with no range argument"
16571
16572         lfs ladvise -a willread -s 0 $DIR/$tfile ||
16573                 error "Ladvise failed with no -l or -e argument"
16574
16575         lfs ladvise -a willread -e 1 $DIR/$tfile ||
16576                 error "Ladvise failed with only -e argument"
16577
16578         lfs ladvise -a willread -l 1 $DIR/$tfile ||
16579                 error "Ladvise failed with only -l argument"
16580
16581         lfs ladvise -a willread -s 2 -e 1 $DIR/$tfile &&
16582                 error "End offset should not be smaller than start offset"
16583
16584         lfs ladvise -a willread -s 2 -e 2 $DIR/$tfile &&
16585                 error "End offset should not be equal to start offset"
16586
16587         lfs ladvise -a willread -s $size -l 1 $DIR/$tfile ||
16588                 error "Ladvise failed with overflowing -s argument"
16589
16590         lfs ladvise -a willread -s 1 -e $((size + 1)) $DIR/$tfile ||
16591                 error "Ladvise failed with overflowing -e argument"
16592
16593         lfs ladvise -a willread -s 1 -l $size $DIR/$tfile ||
16594                 error "Ladvise failed with overflowing -l argument"
16595
16596         lfs ladvise -a willread -l 1 -e 2 $DIR/$tfile &&
16597                 error "Ladvise succeeded with conflicting -l and -e arguments"
16598
16599         echo "Synchronous ladvise should wait"
16600         local delay=4
16601 #define OBD_FAIL_OST_LADVISE_PAUSE       0x237
16602         do_nodes $(comma_list $(osts_nodes)) \
16603                 $LCTL set_param fail_val=$delay fail_loc=0x237
16604
16605         local start_ts=$SECONDS
16606         lfs ladvise -a willread $DIR/$tfile ||
16607                 error "Ladvise failed with no range argument"
16608         local end_ts=$SECONDS
16609         local inteval_ts=$((end_ts - start_ts))
16610
16611         if [ $inteval_ts -lt $(($delay - 1)) ]; then
16612                 error "Synchronous advice didn't wait reply"
16613         fi
16614
16615         echo "Asynchronous ladvise shouldn't wait"
16616         local start_ts=$SECONDS
16617         lfs ladvise -a willread -b $DIR/$tfile ||
16618                 error "Ladvise failed with no range argument"
16619         local end_ts=$SECONDS
16620         local inteval_ts=$((end_ts - start_ts))
16621
16622         if [ $inteval_ts -gt $(($delay / 2)) ]; then
16623                 error "Asynchronous advice blocked"
16624         fi
16625
16626         do_nodes $(comma_list $(osts_nodes)) $LCTL set_param fail_loc=0
16627         ladvise_willread_performance
16628 }
16629 run_test 255a "check 'lfs ladvise -a willread'"
16630
16631 facet_meminfo() {
16632         local facet=$1
16633         local info=$2
16634
16635         do_facet $facet "cat /proc/meminfo | grep ^${info}:" | awk '{print $2}'
16636 }
16637
16638 test_255b() {
16639         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
16640                 skip "lustre < 2.8.54 does not support ladvise "
16641         remote_ost_nodsh && skip "remote OST with nodsh"
16642
16643         lfs setstripe -c 1 -i 0 $DIR/$tfile
16644
16645         ladvise_no_type dontneed $DIR/$tfile &&
16646                 skip "dontneed ladvise is not supported"
16647
16648         ladvise_no_ioctl $DIR/$tfile &&
16649                 skip "ladvise ioctl is not supported"
16650
16651         ! $LFS ladvise -a dontneed $DIR/$tfile &&
16652                 [ "$(facet_fstype ost1)" = "zfs" ] &&
16653                 skip "zfs-osd does not support 'ladvise dontneed'"
16654
16655         local size_mb=100
16656         local size=$((size_mb * 1048576))
16657         # In order to prevent disturbance of other processes, only check 3/4
16658         # of the memory usage
16659         local kibibytes=$((size_mb * 1024 * 3 / 4))
16660
16661         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
16662                 error "dd to $DIR/$tfile failed"
16663
16664         #force write to complete before dropping OST cache & checking memory
16665         sync
16666
16667         local total=$(facet_meminfo ost1 MemTotal)
16668         echo "Total memory: $total KiB"
16669
16670         do_facet ost1 "sync && echo 3 > /proc/sys/vm/drop_caches"
16671         local before_read=$(facet_meminfo ost1 Cached)
16672         echo "Cache used before read: $before_read KiB"
16673
16674         lfs ladvise -a willread $DIR/$tfile ||
16675                 error "Ladvise willread failed"
16676         local after_read=$(facet_meminfo ost1 Cached)
16677         echo "Cache used after read: $after_read KiB"
16678
16679         lfs ladvise -a dontneed $DIR/$tfile ||
16680                 error "Ladvise dontneed again failed"
16681         local no_read=$(facet_meminfo ost1 Cached)
16682         echo "Cache used after dontneed ladvise: $no_read KiB"
16683
16684         if [ $total -lt $((before_read + kibibytes)) ]; then
16685                 echo "Memory is too small, abort checking"
16686                 return 0
16687         fi
16688
16689         if [ $((before_read + kibibytes)) -gt $after_read ]; then
16690                 error "Ladvise willread should use more memory" \
16691                         "than $kibibytes KiB"
16692         fi
16693
16694         if [ $((no_read + kibibytes)) -gt $after_read ]; then
16695                 error "Ladvise dontneed should release more memory" \
16696                         "than $kibibytes KiB"
16697         fi
16698 }
16699 run_test 255b "check 'lfs ladvise -a dontneed'"
16700
16701 test_255c() {
16702         [ $(lustre_version_code ost1) -lt $(version_code 2.10.50) ] &&
16703                 skip "lustre < 2.10.53 does not support lockahead"
16704
16705         local count
16706         local new_count
16707         local difference
16708         local i
16709         local rc
16710
16711         test_mkdir -p $DIR/$tdir
16712         $SETSTRIPE -i 0 $DIR/$tdir
16713
16714         #test 10 returns only success/failure
16715         i=10
16716         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16717         rc=$?
16718         if [ $rc -eq 255 ]; then
16719                 error "Ladvise test${i} failed, ${rc}"
16720         fi
16721
16722         #test 11 counts lock enqueue requests, all others count new locks
16723         i=11
16724         count=$(do_facet ost1 \
16725                 $LCTL get_param -n ost.OSS.ost.stats)
16726         count=$(echo "$count" | grep ldlm_extent_enqueue | awk '{ print $2 }')
16727
16728         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16729         rc=$?
16730         if [ $rc -eq 255 ]; then
16731                 error "Ladvise test${i} failed, ${rc}"
16732         fi
16733
16734         new_count=$(do_facet ost1 \
16735                 $LCTL get_param -n ost.OSS.ost.stats)
16736         new_count=$(echo "$new_count" | grep ldlm_extent_enqueue | \
16737                    awk '{ print $2 }')
16738
16739         difference="$((new_count - count))"
16740         if [ $difference -ne $rc ]; then
16741                 error "Ladvise test${i}, bad enqueue count, returned " \
16742                       "${rc}, actual ${difference}"
16743         fi
16744
16745         for i in $(seq 12 21); do
16746                 # If we do not do this, we run the risk of having too many
16747                 # locks and starting lock cancellation while we are checking
16748                 # lock counts.
16749                 cancel_lru_locks osc
16750
16751                 count=$($LCTL get_param -n \
16752                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
16753
16754                 lockahead_test -d $DIR/$tdir -t $i -f $tfile
16755                 rc=$?
16756                 if [ $rc -eq 255 ]; then
16757                         error "Ladvise test ${i} failed, ${rc}"
16758                 fi
16759
16760                 new_count=$($LCTL get_param -n \
16761                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
16762                 difference="$((new_count - count))"
16763
16764                 # Test 15 output is divided by 100 to map down to valid return
16765                 if [ $i -eq 15 ]; then
16766                         rc="$((rc * 100))"
16767                 fi
16768
16769                 if [ $difference -ne $rc ]; then
16770                         error "Ladvise test ${i}, bad lock count, returned " \
16771                               "${rc}, actual ${difference}"
16772                 fi
16773         done
16774
16775         #test 22 returns only success/failure
16776         i=22
16777         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16778         rc=$?
16779         if [ $rc -eq 255 ]; then
16780                 error "Ladvise test${i} failed, ${rc}"
16781         fi
16782 }
16783 run_test 255c "suite of ladvise lockahead tests"
16784
16785 test_256() {
16786         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16787         remote_mds_nodsh && skip "remote MDS with nodsh"
16788         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
16789                 skip "ldiskfs only test"
16790         changelog_users $SINGLEMDS | grep "^cl" &&
16791                 skip "active changelog user"
16792
16793         local cl_user
16794         local cat_sl
16795         local mdt_dev
16796
16797         mdt_dev=$(mdsdevname 1)
16798         echo $mdt_dev
16799
16800         changelog_register || error "changelog_register failed"
16801
16802         rm -rf $DIR/$tdir
16803         mkdir -p $DIR/$tdir
16804
16805         changelog_clear 0 || error "changelog_clear failed"
16806
16807         # change something
16808         touch $DIR/$tdir/{1..10}
16809
16810         # stop the MDT
16811         stop $SINGLEMDS || error "Fail to stop MDT"
16812
16813         # remount the MDT
16814
16815         start $SINGLEMDS $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT"
16816
16817         #after mount new plainllog is used
16818         touch $DIR/$tdir/{11..19}
16819         local tmpfile=$(mktemp -u $tfile.XXXXXX)
16820         cat_sl=$(do_facet $SINGLEMDS "sync; \
16821                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
16822                  llog_reader $tmpfile | grep -c type=1064553b")
16823         do_facet $SINGLEMDS llog_reader $tmpfile
16824
16825         [ $cat_sl != 2 ] && error "Changelog catalog has $cat_sl != 2 slots"
16826
16827         changelog_clear 0 || error "changelog_clear failed"
16828
16829         cat_sl=$(do_facet $SINGLEMDS "sync; \
16830                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
16831                  llog_reader $tmpfile | grep -c type=1064553b; rm -f $tmpfile")
16832
16833         if (( cat_sl == 2 )); then
16834                 error "Empty plain llog was not deleted from changelog catalog"
16835         elif (( cat_sl != 1 )); then
16836                 error "Active plain llog shouldn't be deleted from catalog"
16837         fi
16838 }
16839 run_test 256 "Check llog delete for empty and not full state"
16840
16841 test_257() {
16842         remote_mds_nodsh && skip "remote MDS with nodsh"
16843         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
16844                 skip "Need MDS version at least 2.8.55"
16845
16846         test_mkdir $DIR/$tdir
16847
16848         setfattr -n trusted.name1 -v value1 $DIR/$tdir ||
16849                 error "setfattr -n trusted.name1=value1 $DIR/$tdir failed"
16850         stat $DIR/$tdir
16851
16852 #define OBD_FAIL_MDS_XATTR_REP                  0x161
16853         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
16854         local facet=mds$((mdtidx + 1))
16855         set_nodes_failloc $(facet_active_host $facet) 0x80000161
16856         getfattr -n trusted.name1 $DIR/$tdir 2> /dev/null
16857
16858         stop $facet || error "stop MDS failed"
16859         start $facet $(mdsdevname $((mdtidx + 1))) $MDS_MOUNT_OPTS ||
16860                 error "start MDS fail"
16861 }
16862 run_test 257 "xattr locks are not lost"
16863
16864 # Verify we take the i_mutex when security requires it
16865 test_258a() {
16866 #define OBD_FAIL_IMUTEX_SEC 0x141c
16867         $LCTL set_param fail_loc=0x141c
16868         touch $DIR/$tfile
16869         chmod u+s $DIR/$tfile
16870         chmod a+rwx $DIR/$tfile
16871         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
16872         RC=$?
16873         if [ $RC -ne 0 ]; then
16874                 error "error, failed to take i_mutex, rc=$?"
16875         fi
16876         rm -f $DIR/$tfile
16877 }
16878 run_test 258a
16879
16880 # Verify we do NOT take the i_mutex in the normal case
16881 test_258b() {
16882 #define OBD_FAIL_IMUTEX_NOSEC 0x141d
16883         $LCTL set_param fail_loc=0x141d
16884         touch $DIR/$tfile
16885         chmod a+rwx $DIR
16886         chmod a+rw $DIR/$tfile
16887         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
16888         RC=$?
16889         if [ $RC -ne 0 ]; then
16890                 error "error, took i_mutex unnecessarily, rc=$?"
16891         fi
16892         rm -f $DIR/$tfile
16893
16894 }
16895 run_test 258b "verify i_mutex security behavior"
16896
16897 test_259() {
16898         local file=$DIR/$tfile
16899         local before
16900         local after
16901
16902         [ "$(facet_fstype mds1)" != "ldiskfs" ] &&
16903                 skip "ldiskfs only test" && return
16904
16905         stack_trap "rm -f $file" EXIT
16906
16907         wait_delete_completed
16908         before=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16909         echo "before: $before"
16910
16911         $LFS setstripe -i 0 -c 1 $file
16912         dd if=/dev/zero of=$file bs=1M count=10 || error "couldn't write"
16913         sync_all_data
16914         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16915         echo "after write: $after"
16916
16917 #define OBD_FAIL_OSD_FAIL_AT_TRUNCATE          0x2301
16918         do_facet ost1 $LCTL set_param fail_loc=0x2301
16919         $TRUNCATE $file 0
16920         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16921         echo "after truncate: $after"
16922
16923         stop ost1
16924         do_facet ost1 $LCTL set_param fail_loc=0
16925         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
16926         sleep 2
16927         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16928         echo "after restart: $after"
16929         [ $((after - before)) -ge $(fs_log_size ost1) ] &&
16930                 error "missing truncate?"
16931
16932         return 0
16933 }
16934 run_test 259 "crash at delayed truncate"
16935
16936 test_260() {
16937 #define OBD_FAIL_MDC_CLOSE               0x806
16938         $LCTL set_param fail_loc=0x80000806
16939         touch $DIR/$tfile
16940
16941 }
16942 run_test 260 "Check mdc_close fail"
16943
16944 ### Data-on-MDT sanity tests ###
16945 test_270a() {
16946         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16947                 skip "Need MDS version at least 2.10.55 for DoM"
16948
16949         # create DoM file
16950         local dom=$DIR/$tdir/dom_file
16951         local tmp=$DIR/$tdir/tmp_file
16952
16953         mkdir -p $DIR/$tdir
16954
16955         # basic checks for DoM component creation
16956         $LFS setstripe -E 1024K -E 2048K -L mdt $dom 2>/dev/null &&
16957                 error "Can set MDT layout to non-first entry"
16958
16959         $LFS setstripe -E 1024K -L mdt -E 2048K -L mdt $dom 2>/dev/null &&
16960                 error "Can define multiple entries as MDT layout"
16961
16962         $LFS setstripe -E 1M -L mdt $dom || error "Can't create DoM layout"
16963
16964         [ $($LFS getstripe -L $dom) == "mdt" ] || error "bad pattern"
16965         [ $($LFS getstripe -c $dom) == 0 ] || error "bad stripe count"
16966         [ $($LFS getstripe -S $dom) == 1048576 ] || error "bad stripe size"
16967
16968         local mdtidx=$($LFS getstripe -m $dom)
16969         local mdtname=MDT$(printf %04x $mdtidx)
16970         local facet=mds$((mdtidx + 1))
16971         local space_check=1
16972
16973         # Skip free space checks with ZFS
16974         [ "$(facet_fstype $facet)" == "zfs" ] && space_check=0
16975
16976         # write
16977         sync
16978         local size_tmp=$((65536 * 3))
16979         local mdtfree1=$(do_facet $facet \
16980                          lctl get_param -n osd*.*$mdtname.kbytesfree)
16981
16982         dd if=/dev/urandom of=$tmp bs=1024 count=$((size_tmp / 1024))
16983         # check also direct IO along write
16984         # IO size must be a multiple of PAGE_SIZE on all platforms (ARM=64KB)
16985         dd if=$tmp of=$dom bs=65536 count=$((size_tmp / 65536)) oflag=direct
16986         sync
16987         cmp $tmp $dom || error "file data is different"
16988         [ $(stat -c%s $dom) == $size_tmp ] ||
16989                 error "bad size after write: $(stat -c%s $dom) != $size_tmp"
16990         if [ $space_check == 1 ]; then
16991                 local mdtfree2=$(do_facet $facet \
16992                                  lctl get_param -n osd*.*$mdtname.kbytesfree)
16993
16994                 # increase in usage from by $size_tmp
16995                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_tmp / 1024)) ] ||
16996                         error "MDT free space wrong after write: " \
16997                               "$mdtfree1 >= $mdtfree2 + $size_tmp/1024"
16998         fi
16999
17000         # truncate
17001         local size_dom=10000
17002
17003         $TRUNCATE $dom $size_dom
17004         [ $(stat -c%s $dom) == $size_dom ] ||
17005                 error "bad size after truncate: $(stat -c%s $dom) != $size_dom"
17006         if [ $space_check == 1 ]; then
17007                 mdtfree1=$(do_facet $facet \
17008                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17009                 # decrease in usage from $size_tmp to new $size_dom
17010                 [ $(($mdtfree1 - $mdtfree2)) -ge \
17011                   $(((size_tmp - size_dom) / 1024)) ] ||
17012                         error "MDT free space is wrong after truncate: " \
17013                               "$mdtfree1 >= $mdtfree2 + ($size_tmp - $size_dom) / 1024"
17014         fi
17015
17016         # append
17017         cat $tmp >> $dom
17018         sync
17019         size_dom=$((size_dom + size_tmp))
17020         [ $(stat -c%s $dom) == $size_dom ] ||
17021                 error "bad size after append: $(stat -c%s $dom) != $size_dom"
17022         if [ $space_check == 1 ]; then
17023                 mdtfree2=$(do_facet $facet \
17024                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17025                 # increase in usage by $size_tmp from previous
17026                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_tmp / 1024)) ] ||
17027                         error "MDT free space is wrong after append: " \
17028                               "$mdtfree1 >= $mdtfree2 + $size_tmp/1024"
17029         fi
17030
17031         # delete
17032         rm $dom
17033         if [ $space_check == 1 ]; then
17034                 mdtfree1=$(do_facet $facet \
17035                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17036                 # decrease in usage by $size_dom from previous
17037                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_dom / 1024)) ] ||
17038                         error "MDT free space is wrong after removal: " \
17039                               "$mdtfree1 >= $mdtfree2 + $size_dom/1024"
17040         fi
17041
17042         # combined striping
17043         $LFS setstripe -E 1024K -L mdt -E EOF $dom ||
17044                 error "Can't create DoM + OST striping"
17045
17046         size_tmp=2031616 # must be a multiple of PAGE_SIZE=65536 on ARM
17047         dd if=/dev/urandom of=$tmp bs=1024 count=$((size_tmp / 1024))
17048         # check also direct IO along write
17049         dd if=$tmp of=$dom bs=65536 count=$((size_tmp / 65536)) oflag=direct
17050         sync
17051         cmp $tmp $dom || error "file data is different"
17052         [ $(stat -c%s $dom) == $size_tmp ] ||
17053                 error "bad size after write: $(stat -c%s $dom) != $size_tmp"
17054         rm $dom $tmp
17055
17056         return 0
17057 }
17058 run_test 270a "DoM: basic functionality tests"
17059
17060 test_270b() {
17061         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
17062                 skip "Need MDS version at least 2.10.55"
17063
17064         local dom=$DIR/$tdir/dom_file
17065         local max_size=1048576
17066
17067         mkdir -p $DIR/$tdir
17068         $LFS setstripe -E $max_size -L mdt $dom
17069
17070         # truncate over the limit
17071         $TRUNCATE $dom $(($max_size + 1)) &&
17072                 error "successful truncate over the maximum size"
17073         # write over the limit
17074         dd if=/dev/zero of=$dom bs=$max_size seek=1 count=1 &&
17075                 error "successful write over the maximum size"
17076         # append over the limit
17077         dd if=/dev/zero of=$dom bs=$(($max_size - 3)) count=1
17078         echo "12345" >> $dom && error "successful append over the maximum size"
17079         rm $dom
17080
17081         return 0
17082 }
17083 run_test 270b "DoM: maximum size overflow checks for DoM-only file"
17084
17085 test_270c() {
17086         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
17087                 skip "Need MDS version at least 2.10.55"
17088
17089         mkdir -p $DIR/$tdir
17090         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17091
17092         # check files inherit DoM EA
17093         touch $DIR/$tdir/first
17094         [ $($GETSTRIPE -L $DIR/$tdir/first) == "mdt" ] ||
17095                 error "bad pattern"
17096         [ $($LFS getstripe -c $DIR/$tdir/first) == 0 ] ||
17097                 error "bad stripe count"
17098         [ $($LFS getstripe -S $DIR/$tdir/first) == 1048576 ] ||
17099                 error "bad stripe size"
17100
17101         # check directory inherits DoM EA and uses it as default
17102         mkdir $DIR/$tdir/subdir
17103         touch $DIR/$tdir/subdir/second
17104         [ $($LFS getstripe -L $DIR/$tdir/subdir/second) == "mdt" ] ||
17105                 error "bad pattern in sub-directory"
17106         [ $($LFS getstripe -c $DIR/$tdir/subdir/second) == 0 ] ||
17107                 error "bad stripe count in sub-directory"
17108         [ $($LFS getstripe -S $DIR/$tdir/subdir/second) == 1048576 ] ||
17109                 error "bad stripe size in sub-directory"
17110         return 0
17111 }
17112 run_test 270c "DoM: DoM EA inheritance tests"
17113
17114 test_270d() {
17115         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
17116                 skip "Need MDS version at least 2.10.55"
17117
17118         mkdir -p $DIR/$tdir
17119         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17120
17121         # inherit default DoM striping
17122         mkdir $DIR/$tdir/subdir
17123         touch $DIR/$tdir/subdir/f1
17124
17125         # change default directory striping
17126         $LFS setstripe -c 1 $DIR/$tdir/subdir
17127         touch $DIR/$tdir/subdir/f2
17128         [ $($LFS getstripe -c $DIR/$tdir/subdir/f2) == 1 ] ||
17129                 error "wrong default striping in file 2"
17130         [ $($LFS getstripe -L $DIR/$tdir/subdir/f2) == "raid0" ] ||
17131                 error "bad pattern in file 2"
17132         return 0
17133 }
17134 run_test 270d "DoM: change striping from DoM to RAID0"
17135
17136 test_270e() {
17137         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
17138                 skip "Need MDS version at least 2.10.55"
17139
17140         mkdir -p $DIR/$tdir/dom
17141         mkdir -p $DIR/$tdir/norm
17142         DOMFILES=20
17143         NORMFILES=10
17144         $LFS setstripe -E 1M -L mdt $DIR/$tdir/dom
17145         $LFS setstripe -i 0 -S 2M $DIR/$tdir/norm
17146
17147         createmany -o $DIR/$tdir/dom/dom- $DOMFILES
17148         createmany -o $DIR/$tdir/norm/norm- $NORMFILES
17149
17150         # find DoM files by layout
17151         NUM=$($LFS find -L mdt -type f $DIR/$tdir 2>/dev/null | wc -l)
17152         [ $NUM -eq  $DOMFILES ] ||
17153                 error "lfs find -L: found $NUM, expected $DOMFILES"
17154         echo "Test 1: lfs find 20 DOM files by layout: OK"
17155
17156         # there should be 1 dir with default DOM striping
17157         NUM=$($LFS find -L mdt -type d $DIR/$tdir 2>/dev/null | wc -l)
17158         [ $NUM -eq  1 ] ||
17159                 error "lfs find -L: found $NUM, expected 1 dir"
17160         echo "Test 2: lfs find 1 DOM dir by layout: OK"
17161
17162         # find DoM files by stripe size
17163         NUM=$($LFS find -S -1200K -type f $DIR/$tdir 2>/dev/null | wc -l)
17164         [ $NUM -eq  $DOMFILES ] ||
17165                 error "lfs find -S: found $NUM, expected $DOMFILES"
17166         echo "Test 4: lfs find 20 DOM files by stripe size: OK"
17167
17168         # find files by stripe offset except DoM files
17169         NUM=$($LFS find -i 0 -type f $DIR/$tdir 2>/dev/null | wc -l)
17170         [ $NUM -eq  $NORMFILES ] ||
17171                 error "lfs find -i: found $NUM, expected $NORMFILES"
17172         echo "Test 5: lfs find no DOM files by stripe index: OK"
17173         return 0
17174 }
17175 run_test 270e "DoM: lfs find with DoM files test"
17176
17177 test_270f() {
17178         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
17179                 skip "Need MDS version at least 2.10.55"
17180
17181         local mdtname=${FSNAME}-MDT0000-mdtlov
17182         local dom=$DIR/$tdir/dom_file
17183         local dom_limit_saved=$(do_facet mds1 $LCTL get_param -n \
17184                                                 lod.$mdtname.dom_stripesize)
17185         local dom_limit=131072
17186
17187         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=$dom_limit
17188         local dom_current=$(do_facet mds1 $LCTL get_param -n \
17189                                                 lod.$mdtname.dom_stripesize)
17190         [ ${dom_limit} -eq ${dom_current} ] ||
17191                 error "Cannot change per-MDT DoM stripe limit to $dom_limit"
17192
17193         $LFS mkdir -i 0 -c 1 $DIR/$tdir
17194         $LFS setstripe -d $DIR/$tdir
17195         $LFS setstripe -E $dom_limit -L mdt $DIR/$tdir ||
17196                 error "Can't set directory default striping"
17197
17198         # exceed maximum stripe size
17199         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
17200                 error "Can't create file with $((dom_limit * 2)) DoM stripe"
17201         [ $($LFS getstripe -S $dom) -eq $((dom_limit * 2)) ] &&
17202                 error "Able to create DoM component size more than LOD limit"
17203
17204         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=0
17205         dom_current=$(do_facet mds1 $LCTL get_param -n \
17206                                                 lod.$mdtname.dom_stripesize)
17207         [ 0 -eq ${dom_current} ] ||
17208                 error "Can't set zero DoM stripe limit"
17209         rm $dom
17210
17211         # attempt to create DoM file on server with disabled DoM should
17212         # remove DoM entry from layout and be succeed
17213         $LFS setstripe -E $dom_limit -L mdt -E -1 $dom ||
17214                 error "Can't create DoM file (DoM is disabled)"
17215         [ $($LFS getstripe -L $dom) == "mdt" ] &&
17216                 error "File has DoM component while DoM is disabled"
17217         rm $dom
17218
17219         # attempt to create DoM file with only DoM stripe should return error
17220         $LFS setstripe -E $dom_limit -L mdt $dom &&
17221                 error "Able to create DoM-only file while DoM is disabled"
17222
17223         # too low values to be aligned with smallest stripe size 64K
17224         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=30000
17225         dom_current=$(do_facet mds1 $LCTL get_param -n \
17226                                                 lod.$mdtname.dom_stripesize)
17227         [ 30000 -eq ${dom_current} ] &&
17228                 error "Can set too small DoM stripe limit"
17229
17230         # 64K is a minimal stripe size in Lustre, expect limit of that size
17231         [ 65536 -eq ${dom_current} ] ||
17232                 error "Limit is not set to 64K but ${dom_current}"
17233
17234         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=2147483648
17235         dom_current=$(do_facet mds1 $LCTL get_param -n \
17236                                                 lod.$mdtname.dom_stripesize)
17237         echo $dom_current
17238         [ 2147483648 -eq ${dom_current} ] &&
17239                 error "Can set too large DoM stripe limit"
17240
17241         do_facet mds1 $LCTL set_param -n \
17242                                 lod.$mdtname.dom_stripesize=$((dom_limit * 2))
17243         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
17244                 error "Can't create DoM component size after limit change"
17245         do_facet mds1 $LCTL set_param -n \
17246                                 lod.$mdtname.dom_stripesize=$((dom_limit / 2))
17247         $LFS setstripe -E $dom_limit -L mdt ${dom}_big ||
17248                 error "Can't create DoM file after limit decrease"
17249         [ $($LFS getstripe -S ${dom}_big) -eq $((dom_limit / 2)) ] ||
17250                 error "Can create big DoM component after limit decrease"
17251         touch ${dom}_def ||
17252                 error "Can't create file with old default layout"
17253
17254         do_facet mds1 $LCTL set_param -n lod.*.dom_stripesize=$dom_limit_saved
17255         return 0
17256 }
17257 run_test 270f "DoM: maximum DoM stripe size checks"
17258
17259 test_271a() {
17260         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
17261                 skip "Need MDS version at least 2.10.55"
17262
17263         local dom=$DIR/$tdir/dom
17264
17265         mkdir -p $DIR/$tdir
17266
17267         $LFS setstripe -E 1024K -L mdt $dom
17268
17269         lctl set_param -n mdc.*.stats=clear
17270         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
17271         cat $dom > /dev/null
17272         local reads=$(lctl get_param -n mdc.*.stats | grep -c ost_read)
17273         [ $reads -eq 0 ] || error "Unexpected $reads READ RPCs"
17274         ls $dom
17275         rm -f $dom
17276 }
17277 run_test 271a "DoM: data is cached for read after write"
17278
17279 test_271b() {
17280         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
17281                 skip "Need MDS version at least 2.10.55"
17282
17283         local dom=$DIR/$tdir/dom
17284
17285         mkdir -p $DIR/$tdir
17286
17287         $LFS setstripe -E 1024K -L mdt -E EOF $dom
17288
17289         lctl set_param -n mdc.*.stats=clear
17290         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
17291         cancel_lru_locks mdc
17292         $CHECKSTAT -t file -s 4096 $dom || error "stat #1 fails"
17293         # second stat to check size is cached on client
17294         $CHECKSTAT -t file -s 4096 $dom || error "stat #2 fails"
17295         local gls=$(lctl get_param -n mdc.*.stats | grep -c ldlm_glimpse)
17296         [ $gls -eq 0 ] || error "Unexpected $gls glimpse RPCs"
17297         rm -f $dom
17298 }
17299 run_test 271b "DoM: no glimpse RPC for stat (DoM only file)"
17300
17301 test_271ba() {
17302         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
17303                 skip "Need MDS version at least 2.10.55"
17304
17305         local dom=$DIR/$tdir/dom
17306
17307         mkdir -p $DIR/$tdir
17308
17309         $LFS setstripe -E 1024K -L mdt -E EOF $dom
17310
17311         lctl set_param -n mdc.*.stats=clear
17312         lctl set_param -n osc.*.stats=clear
17313         dd if=/dev/zero of=$dom bs=2048K count=1 || return 1
17314         cancel_lru_locks mdc
17315         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
17316         # second stat to check size is cached on client
17317         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
17318         local gls=$(lctl get_param -n mdc.*.stats | grep -c ldlm_glimpse)
17319         [ $gls == 0 ] || error "Unexpected $gls glimpse RPCs"
17320         local gls=$(lctl get_param -n osc.*.stats | grep -c ldlm_glimpse)
17321         [ $gls == 0 ] || error "Unexpected $gls OSC glimpse RPCs"
17322         rm -f $dom
17323 }
17324 run_test 271ba "DoM: no glimpse RPC for stat (combined file)"
17325
17326
17327 get_mdc_stats() {
17328         local mdtidx=$1
17329         local param=$2
17330         local mdt=MDT$(printf %04x $mdtidx)
17331
17332         if [ -z $param ]; then
17333                 lctl get_param -n mdc.*$mdt*.stats
17334         else
17335                 lctl get_param -n mdc.*$mdt*.stats | awk "/$param/"'{print $2}'
17336         fi
17337 }
17338
17339 test_271c() {
17340         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
17341                 skip "Need MDS version at least 2.10.55"
17342
17343         local dom=$DIR/$tdir/dom
17344
17345         mkdir -p $DIR/$tdir
17346
17347         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17348
17349         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
17350         local facet=mds$((mdtidx + 1))
17351
17352         cancel_lru_locks mdc
17353         do_facet $facet lctl set_param -n mdt.*.dom_lock=0
17354         createmany -o $dom 1000
17355         lctl set_param -n mdc.*.stats=clear
17356         smalliomany -w $dom 1000 200
17357         get_mdc_stats $mdtidx
17358         local enq=$(get_mdc_stats $mdtidx ldlm_ibits_enqueue)
17359         # Each file has 1 open, 1 IO enqueues, total 2000
17360         # but now we have also +1 getxattr for security.capability, total 3000
17361         [ $enq -ge 2000 ] || error "Too few enqueues $enq, expected > 2000"
17362         unlinkmany $dom 1000
17363
17364         cancel_lru_locks mdc
17365         do_facet $facet lctl set_param -n mdt.*.dom_lock=1
17366         createmany -o $dom 1000
17367         lctl set_param -n mdc.*.stats=clear
17368         smalliomany -w $dom 1000 200
17369         local enq_2=$(get_mdc_stats $mdtidx ldlm_ibits_enqueue)
17370         # Expect to see reduced amount of RPCs by 1000 due to single enqueue
17371         # for OPEN and IO lock.
17372         [ $((enq - enq_2)) -ge 1000 ] ||
17373                 error "Too many enqueues $enq_2, expected about $((enq - 1000))"
17374         unlinkmany $dom 1000
17375         return 0
17376 }
17377 run_test 271c "DoM: IO lock at open saves enqueue RPCs"
17378
17379 cleanup_271def_tests() {
17380         trap 0
17381         rm -f $1
17382 }
17383
17384 test_271d() {
17385         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.57) ] &&
17386                 skip "Need MDS version at least 2.10.57" && return
17387
17388         local dom=$DIR/$tdir/dom
17389         local tmp=$TMP/$tfile
17390         trap "cleanup_271def_tests $tmp" EXIT
17391
17392         mkdir -p $DIR/$tdir
17393
17394         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17395
17396         local mdtidx=$($GETSTRIPE -M $DIR/$tdir)
17397
17398         cancel_lru_locks mdc
17399         dd if=/dev/urandom of=$tmp bs=1000 count=1
17400         dd if=$tmp of=$dom bs=1000 count=1
17401         cancel_lru_locks mdc
17402
17403         cat /etc/hosts >> $tmp
17404         lctl set_param -n mdc.*.stats=clear
17405
17406         # append data to the same file it should update local page
17407         echo "Append to the same page"
17408         cat /etc/hosts >> $dom
17409         local num=$(get_mdc_stats $mdtidx ost_read)
17410         local ra=$(get_mdc_stats $mdtidx req_active)
17411         local rw=$(get_mdc_stats $mdtidx req_waittime)
17412
17413         [ -z $num ] || error "$num READ RPC occured"
17414         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17415         echo "... DONE"
17416
17417         # compare content
17418         cmp $tmp $dom || error "file miscompare"
17419
17420         cancel_lru_locks mdc
17421         lctl set_param -n mdc.*.stats=clear
17422
17423         echo "Open and read file"
17424         cat $dom > /dev/null
17425         local num=$(get_mdc_stats $mdtidx ost_read)
17426         local ra=$(get_mdc_stats $mdtidx req_active)
17427         local rw=$(get_mdc_stats $mdtidx req_waittime)
17428
17429         [ -z $num ] || error "$num READ RPC occured"
17430         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17431         echo "... DONE"
17432
17433         # compare content
17434         cmp $tmp $dom || error "file miscompare"
17435
17436         return 0
17437 }
17438 run_test 271d "DoM: read on open (1K file in reply buffer)"
17439
17440 test_271e() {
17441         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.57) ] &&
17442                 skip "Need MDS version at least 2.10.57" && return
17443
17444         local dom=$DIR/$tdir/dom
17445         local tmp=$TMP/${tfile}.data
17446         trap "cleanup_271def_tests $tmp" EXIT
17447
17448         mkdir -p $DIR/$tdir
17449
17450         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17451
17452         local mdtidx=$($GETSTRIPE -M $DIR/$tdir)
17453
17454         cancel_lru_locks mdc
17455         dd if=/dev/urandom of=$tmp bs=30K count=1
17456         dd if=$tmp of=$dom bs=30K count=1
17457         cancel_lru_locks mdc
17458         cat /etc/hosts >> $tmp
17459         lctl set_param -n mdc.*.stats=clear
17460
17461         echo "Append to the same page"
17462         cat /etc/hosts >> $dom
17463
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         # Reply buffer can be adjusted for larger buffer by resend
17470         echo "... DONE with $((ra - rw)) resends"
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         [ -z $num ] || error "$num READ RPC occured"
17485         # Reply buffer can be adjusted for larger buffer by resend
17486         echo "... DONE with $((ra - rw)) resends"
17487
17488         # compare content
17489         cmp $tmp $dom || error "file miscompare"
17490
17491         return 0
17492 }
17493 run_test 271e "DoM: read on open (30K file with reply buffer adjusting)"
17494
17495 test_271f() {
17496         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.57) ] &&
17497                 skip "Need MDS version at least 2.10.57" && return
17498
17499         local dom=$DIR/$tdir/dom
17500         local tmp=$TMP/$tfile
17501         trap "cleanup_271def_tests $tmp" EXIT
17502
17503         mkdir -p $DIR/$tdir
17504
17505         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17506
17507         local mdtidx=$($GETSTRIPE -M $DIR/$tdir)
17508
17509         cancel_lru_locks mdc
17510         dd if=/dev/urandom of=$tmp bs=200000 count=1
17511         dd if=$tmp of=$dom bs=200000 count=1
17512         cancel_lru_locks mdc
17513         cat /etc/hosts >> $tmp
17514         lctl set_param -n mdc.*.stats=clear
17515
17516         echo "Append to the same page"
17517         cat /etc/hosts >> $dom
17518         local num=$(get_mdc_stats $mdtidx ost_read)
17519         local ra=$(get_mdc_stats $mdtidx req_active)
17520         local rw=$(get_mdc_stats $mdtidx req_waittime)
17521
17522         [ -z $num ] || error "$num READ RPC occured"
17523         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17524         echo "... DONE"
17525
17526         # compare content
17527         cmp $tmp $dom || error "file miscompare"
17528
17529         cancel_lru_locks mdc
17530         lctl set_param -n mdc.*.stats=clear
17531
17532         echo "Open and read file"
17533         cat $dom > /dev/null
17534         local num=$(get_mdc_stats $mdtidx ost_read)
17535         local ra=$(get_mdc_stats $mdtidx req_active)
17536         local rw=$(get_mdc_stats $mdtidx req_waittime)
17537
17538         [ $num -eq 1 ] || error "expect 1 READ RPC, $num occured"
17539         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17540         echo "... DONE"
17541
17542         # compare content
17543         cmp $tmp $dom || error "file miscompare"
17544
17545         return 0
17546 }
17547 run_test 271f "DoM: read on open (200K file and read tail)"
17548
17549 test_272a() {
17550         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.50) ] &&
17551                 skip "Need MDS version at least 2.11.50"
17552
17553         local dom=$DIR/$tdir/dom
17554         mkdir -p $DIR/$tdir
17555
17556         $LFS setstripe -E 256K -L mdt -E -1 -c1 $dom
17557         dd if=/dev/urandom of=$dom bs=512K count=1 ||
17558                 error "failed to write data into $dom"
17559         local old_md5=$(md5sum $dom)
17560
17561         $LFS migrate -E 256K -L mdt -E -1 -c2 $dom ||
17562                 error "failed to migrate to the same DoM component"
17563
17564         [ $($LFS getstripe -c $dom) -eq 2 ] ||
17565                 error "layout was not changed silently"
17566
17567         local new_md5=$(md5sum $dom)
17568
17569         [ "$old_md5" != "$new_md5" ] &&
17570                 error "md5sum differ: $old_md5, $new_md5"
17571         return 0
17572 }
17573 run_test 272a "DoM migration: new layout with the same DOM component"
17574
17575 test_272b() {
17576         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.50) ] &&
17577                 skip "Need MDS version at least 2.11.50"
17578
17579         local dom=$DIR/$tdir/dom
17580         mkdir -p $DIR/$tdir
17581         $LFS setstripe -E 1M -L mdt -E -1 -c1 $dom
17582
17583         local mdtidx=$($LFS getstripe -m $dom)
17584         local mdtname=MDT$(printf %04x $mdtidx)
17585         local facet=mds$((mdtidx + 1))
17586
17587         local mdtfree1=$(do_facet $facet \
17588                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17589         dd if=/dev/urandom of=$dom bs=2M count=1 ||
17590                 error "failed to write data into $dom"
17591         local old_md5=$(md5sum $dom)
17592         cancel_lru_locks mdc
17593         local mdtfree1=$(do_facet $facet \
17594                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17595
17596         $LFS migrate -c2 $dom ||
17597                 error "failed to migrate to the new composite layout"
17598         [ $($LFS getstripe -L $dom) == 'mdt' ] &&
17599                 error "MDT stripe was not removed"
17600
17601         cancel_lru_locks mdc
17602         local new_md5=$(md5sum $dom)
17603         [ "$old_md5" != "$new_md5" ] &&
17604                 error "$old_md5 != $new_md5"
17605
17606         # Skip free space checks with ZFS
17607         if [ "$(facet_fstype $facet)" != "zfs" ]; then
17608                 local mdtfree2=$(do_facet $facet \
17609                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17610                 [ $mdtfree2 -gt $mdtfree1 ] ||
17611                         error "MDT space is not freed after migration"
17612         fi
17613         return 0
17614 }
17615 run_test 272b "DoM migration: DOM file to the OST-striped file (plain)"
17616
17617 test_272c() {
17618         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.50) ] &&
17619                 skip "Need MDS version at least 2.11.50"
17620
17621         local dom=$DIR/$tdir/$tfile
17622         mkdir -p $DIR/$tdir
17623         $LFS setstripe -E 1M -L mdt -E -1 -c1 $dom
17624
17625         local mdtidx=$($LFS getstripe -m $dom)
17626         local mdtname=MDT$(printf %04x $mdtidx)
17627         local facet=mds$((mdtidx + 1))
17628
17629         dd if=/dev/urandom of=$dom bs=2M count=1 oflag=direct ||
17630                 error "failed to write data into $dom"
17631         local old_md5=$(md5sum $dom)
17632         cancel_lru_locks mdc
17633         local mdtfree1=$(do_facet $facet \
17634                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17635
17636         $LFS migrate -E 2M -c1 -E -1 -c2 $dom ||
17637                 error "failed to migrate to the new composite layout"
17638         [ $($LFS getstripe -L $dom) == 'mdt' ] &&
17639                 error "MDT stripe was not removed"
17640
17641         cancel_lru_locks mdc
17642         local new_md5=$(md5sum $dom)
17643         [ "$old_md5" != "$new_md5" ] &&
17644                 error "$old_md5 != $new_md5"
17645
17646         # Skip free space checks with ZFS
17647         if [ "$(facet_fstype $facet)" != "zfs" ]; then
17648                 local mdtfree2=$(do_facet $facet \
17649                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17650                 [ $mdtfree2 -gt $mdtfree1 ] ||
17651                         error "MDS space is not freed after migration"
17652         fi
17653         return 0
17654 }
17655 run_test 272c "DoM migration: DOM file to the OST-striped file (composite)"
17656
17657 test_273a() {
17658         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.50) ] &&
17659                 skip "Need MDS version at least 2.11.50"
17660
17661         # Layout swap cannot be done if either file has DOM component,
17662         # this will never be supported, migration should be used instead
17663
17664         local dom=$DIR/$tdir/$tfile
17665         mkdir -p $DIR/$tdir
17666
17667         $LFS setstripe -c2 ${dom}_plain
17668         $LFS setstripe -E 1M -L mdt -E -1 -c2 ${dom}_dom
17669         $LFS swap_layouts ${dom}_plain ${dom}_dom &&
17670                 error "can swap layout with DoM component"
17671         $LFS swap_layouts ${dom}_dom ${dom}_plain &&
17672                 error "can swap layout with DoM component"
17673
17674         $LFS setstripe -E 1M -c1 -E -1 -c2 ${dom}_comp
17675         $LFS swap_layouts ${dom}_comp ${dom}_dom &&
17676                 error "can swap layout with DoM component"
17677         $LFS swap_layouts ${dom}_dom ${dom}_comp &&
17678                 error "can swap layout with DoM component"
17679         return 0
17680 }
17681 run_test 273a "DoM: layout swapping should fail with DOM"
17682
17683 test_275() {
17684         remote_ost_nodsh && skip "remote OST with nodsh"
17685         [ $(lustre_version_code ost1) -lt $(version_code 2.10.57) ] &&
17686                 skip "Need OST version >= 2.10.57"
17687
17688         local file=$DIR/$tfile
17689         local oss
17690
17691         oss=$(comma_list $(osts_nodes))
17692
17693         dd if=/dev/urandom of=$file bs=1M count=2 ||
17694                 error "failed to create a file"
17695         cancel_lru_locks osc
17696
17697         #lock 1
17698         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
17699                 error "failed to read a file"
17700
17701 #define OBD_FAIL_LDLM_PAUSE_CANCEL2      0x31f
17702         $LCTL set_param fail_loc=0x8000031f
17703
17704         cancel_lru_locks osc &
17705         sleep 1
17706
17707 #define OBD_FAIL_LDLM_PROLONG_PAUSE      0x32b
17708         do_nodes $oss $LCTL set_param fail_loc=0x8000032b
17709         #IO takes another lock, but matches the PENDING one
17710         #and places it to the IO RPC
17711         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
17712                 error "failed to read a file with PENDING lock"
17713 }
17714 run_test 275 "Read on a canceled duplicate lock"
17715
17716 test_276() {
17717         remote_ost_nodsh && skip "remote OST with nodsh"
17718         local pid
17719
17720         do_facet ost1 "(while true; do \
17721                 $LCTL get_param obdfilter.*.filesfree > /dev/null 2>&1; \
17722                 done) & pid=\\\$!; echo \\\$pid > $TMP/sanity_276_pid" &
17723         pid=$!
17724
17725         for LOOP in $(seq 20); do
17726                 stop ost1
17727                 start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
17728         done
17729         kill -9 $pid
17730         do_facet ost1 "pid=\\\$(cat $TMP/sanity_276_pid); kill -9 \\\$pid; \
17731                 rm $TMP/sanity_276_pid"
17732 }
17733 run_test 276 "Race between mount and obd_statfs"
17734
17735 cleanup_test_300() {
17736         trap 0
17737         umask $SAVE_UMASK
17738 }
17739 test_striped_dir() {
17740         local mdt_index=$1
17741         local stripe_count
17742         local stripe_index
17743
17744         mkdir -p $DIR/$tdir
17745
17746         SAVE_UMASK=$(umask)
17747         trap cleanup_test_300 RETURN EXIT
17748
17749         $LFS setdirstripe -i $mdt_index -c 2 -H all_char -o 755 \
17750                                                 $DIR/$tdir/striped_dir ||
17751                 error "set striped dir error"
17752
17753         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
17754         [ "$mode" = "755" ] || error "expect 755 got $mode"
17755
17756         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
17757                 error "getdirstripe failed"
17758         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
17759         if [ "$stripe_count" != "2" ]; then
17760                 error "1:stripe_count is $stripe_count, expect 2"
17761         fi
17762         stripe_count=$($LFS getdirstripe -T $DIR/$tdir/striped_dir)
17763         if [ "$stripe_count" != "2" ]; then
17764                 error "2:stripe_count is $stripe_count, expect 2"
17765         fi
17766
17767         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
17768         if [ "$stripe_index" != "$mdt_index" ]; then
17769                 error "stripe_index is $stripe_index, expect $mdt_index"
17770         fi
17771
17772         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
17773                 error "nlink error after create striped dir"
17774
17775         mkdir $DIR/$tdir/striped_dir/a
17776         mkdir $DIR/$tdir/striped_dir/b
17777
17778         stat $DIR/$tdir/striped_dir/a ||
17779                 error "create dir under striped dir failed"
17780         stat $DIR/$tdir/striped_dir/b ||
17781                 error "create dir under striped dir failed"
17782
17783         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
17784                 error "nlink error after mkdir"
17785
17786         rmdir $DIR/$tdir/striped_dir/a
17787         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
17788                 error "nlink error after rmdir"
17789
17790         rmdir $DIR/$tdir/striped_dir/b
17791         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
17792                 error "nlink error after rmdir"
17793
17794         chattr +i $DIR/$tdir/striped_dir
17795         createmany -o $DIR/$tdir/striped_dir/f 10 &&
17796                 error "immutable flags not working under striped dir!"
17797         chattr -i $DIR/$tdir/striped_dir
17798
17799         rmdir $DIR/$tdir/striped_dir ||
17800                 error "rmdir striped dir error"
17801
17802         cleanup_test_300
17803
17804         true
17805 }
17806
17807 test_300a() {
17808         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
17809                 skip "skipped for lustre < 2.7.0"
17810         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17811         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17812
17813         test_striped_dir 0 || error "failed on striped dir on MDT0"
17814         test_striped_dir 1 || error "failed on striped dir on MDT0"
17815 }
17816 run_test 300a "basic striped dir sanity test"
17817
17818 test_300b() {
17819         [ $(lustre_version_code $SINGLEMDS) -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 i
17825         local mtime1
17826         local mtime2
17827         local mtime3
17828
17829         test_mkdir $DIR/$tdir || error "mkdir fail"
17830         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17831                 error "set striped dir error"
17832         for i in {0..9}; do
17833                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
17834                 sleep 1
17835                 touch $DIR/$tdir/striped_dir/file_$i || error "touch error $i"
17836                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
17837                 [ $mtime1 -eq $mtime2 ] && error "mtime unchanged after create"
17838                 sleep 1
17839                 rm -f $DIR/$tdir/striped_dir/file_$i || error "unlink error $i"
17840                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
17841                 [ $mtime2 -eq $mtime3 ] && error "mtime unchanged after unlink"
17842         done
17843         true
17844 }
17845 run_test 300b "check ctime/mtime for striped dir"
17846
17847 test_300c() {
17848         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
17849                 skip "skipped for lustre < 2.7.0"
17850         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17851         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17852
17853         local file_count
17854
17855         mkdir -p $DIR/$tdir
17856         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
17857                 error "set striped dir error"
17858
17859         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
17860                 error "chown striped dir failed"
17861
17862         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
17863                 error "create 5k files failed"
17864
17865         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
17866
17867         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
17868
17869         rm -rf $DIR/$tdir
17870 }
17871 run_test 300c "chown && check ls under striped directory"
17872
17873 test_300d() {
17874         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
17875                 skip "skipped for lustre < 2.7.0"
17876         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17877         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17878
17879         local stripe_count
17880         local file
17881
17882         mkdir -p $DIR/$tdir
17883         $SETSTRIPE -c 2 $DIR/$tdir
17884
17885         #local striped directory
17886         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17887                 error "set striped dir error"
17888         createmany -o $DIR/$tdir/striped_dir/f 10 ||
17889                 error "create 10 files failed"
17890
17891         #remote striped directory
17892         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
17893                 error "set striped dir error"
17894         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
17895                 error "create 10 files failed"
17896
17897         for file in $(find $DIR/$tdir); do
17898                 stripe_count=$($LFS getstripe -c $file)
17899                 [ $stripe_count -eq 2 ] ||
17900                         error "wrong stripe $stripe_count for $file"
17901         done
17902
17903         rm -rf $DIR/$tdir
17904 }
17905 run_test 300d "check default stripe under striped directory"
17906
17907 test_300e() {
17908         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17909                 skip "Need MDS version at least 2.7.55"
17910         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17911         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17912
17913         local stripe_count
17914         local file
17915
17916         mkdir -p $DIR/$tdir
17917
17918         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17919                 error "set striped dir error"
17920
17921         touch $DIR/$tdir/striped_dir/a
17922         touch $DIR/$tdir/striped_dir/b
17923         touch $DIR/$tdir/striped_dir/c
17924
17925         mkdir $DIR/$tdir/striped_dir/dir_a
17926         mkdir $DIR/$tdir/striped_dir/dir_b
17927         mkdir $DIR/$tdir/striped_dir/dir_c
17928
17929         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_a ||
17930                 error "set striped adir under striped dir error"
17931
17932         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_b ||
17933                 error "set striped bdir under striped dir error"
17934
17935         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_c ||
17936                 error "set striped cdir under striped dir error"
17937
17938         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
17939                 error "rename dir under striped dir fails"
17940
17941         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
17942                 error "rename dir under different stripes fails"
17943
17944         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
17945                 error "rename file under striped dir should succeed"
17946
17947         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
17948                 error "rename dir under striped dir should succeed"
17949
17950         rm -rf $DIR/$tdir
17951 }
17952 run_test 300e "check rename under striped directory"
17953
17954 test_300f() {
17955         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17956         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17957         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17958                 skip "Need MDS version at least 2.7.55"
17959
17960         local stripe_count
17961         local file
17962
17963         rm -rf $DIR/$tdir
17964         mkdir -p $DIR/$tdir
17965
17966         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17967                 error "set striped dir error"
17968
17969         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir1 ||
17970                 error "set striped dir error"
17971
17972         touch $DIR/$tdir/striped_dir/a
17973         mkdir $DIR/$tdir/striped_dir/dir_a
17974         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
17975                 error "create striped dir under striped dir fails"
17976
17977         touch $DIR/$tdir/striped_dir1/b
17978         mkdir $DIR/$tdir/striped_dir1/dir_b
17979         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
17980                 error "create striped dir under striped dir fails"
17981
17982         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
17983                 error "rename dir under different striped dir should fail"
17984
17985         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
17986                 error "rename striped dir under diff striped dir should fail"
17987
17988         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
17989                 error "rename file under diff striped dirs fails"
17990
17991         rm -rf $DIR/$tdir
17992 }
17993 run_test 300f "check rename cross striped directory"
17994
17995 test_300_check_default_striped_dir()
17996 {
17997         local dirname=$1
17998         local default_count=$2
17999         local default_index=$3
18000         local stripe_count
18001         local stripe_index
18002         local dir_stripe_index
18003         local dir
18004
18005         echo "checking $dirname $default_count $default_index"
18006         $LFS setdirstripe -D -c $default_count -i $default_index \
18007                                 -t all_char $DIR/$tdir/$dirname ||
18008                 error "set default stripe on striped dir error"
18009         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
18010         [ $stripe_count -eq $default_count ] ||
18011                 error "expect $default_count get $stripe_count for $dirname"
18012
18013         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
18014         [ $stripe_index -eq $default_index ] ||
18015                 error "expect $default_index get $stripe_index for $dirname"
18016
18017         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
18018                                                 error "create dirs failed"
18019
18020         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
18021         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
18022         for dir in $(find $DIR/$tdir/$dirname/*); do
18023                 stripe_count=$($LFS getdirstripe -c $dir)
18024                 [ $stripe_count -eq $default_count ] ||
18025                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
18026                 error "stripe count $default_count != $stripe_count for $dir"
18027
18028                 stripe_index=$($LFS getdirstripe -i $dir)
18029                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
18030                         error "$stripe_index != $default_index for $dir"
18031
18032                 #check default stripe
18033                 stripe_count=$($LFS getdirstripe -D -c $dir)
18034                 [ $stripe_count -eq $default_count ] ||
18035                 error "default count $default_count != $stripe_count for $dir"
18036
18037                 stripe_index=$($LFS getdirstripe -D -i $dir)
18038                 [ $stripe_index -eq $default_index ] ||
18039                 error "default index $default_index != $stripe_index for $dir"
18040         done
18041         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
18042 }
18043
18044 test_300g() {
18045         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18046         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
18047                 skip "Need MDS version at least 2.7.55"
18048
18049         local dir
18050         local stripe_count
18051         local stripe_index
18052
18053         mkdir $DIR/$tdir
18054         mkdir $DIR/$tdir/normal_dir
18055
18056         #Checking when client cache stripe index
18057         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
18058         $LFS setdirstripe -D -i1 $DIR/$tdir/striped_dir ||
18059                 error "create striped_dir failed"
18060
18061         $LFS setdirstripe -i0 $DIR/$tdir/striped_dir/dir0 ||
18062                 error "create dir0 fails"
18063         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir0)
18064         [ $stripe_index -eq 0 ] ||
18065                 error "dir0 expect index 0 got $stripe_index"
18066
18067         mkdir $DIR/$tdir/striped_dir/dir1 ||
18068                 error "create dir1 fails"
18069         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir1)
18070         [ $stripe_index -eq 1 ] ||
18071                 error "dir1 expect index 1 got $stripe_index"
18072
18073         #check default stripe count/stripe index
18074         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
18075         test_300_check_default_striped_dir normal_dir 1 0
18076         test_300_check_default_striped_dir normal_dir 2 1
18077         test_300_check_default_striped_dir normal_dir 2 -1
18078
18079         #delete default stripe information
18080         echo "delete default stripeEA"
18081         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
18082                 error "set default stripe on striped dir error"
18083
18084         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
18085         for dir in $(find $DIR/$tdir/normal_dir/*); do
18086                 stripe_count=$($LFS getdirstripe -c $dir)
18087                 [ $stripe_count -eq 0 ] ||
18088                         error "expect 1 get $stripe_count for $dir"
18089                 stripe_index=$($LFS getdirstripe -i $dir)
18090                 [ $stripe_index -eq 0 ] ||
18091                         error "expect 0 get $stripe_index for $dir"
18092         done
18093 }
18094 run_test 300g "check default striped directory for normal directory"
18095
18096 test_300h() {
18097         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18098         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
18099                 skip "Need MDS version at least 2.7.55"
18100
18101         local dir
18102         local stripe_count
18103
18104         mkdir $DIR/$tdir
18105         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
18106                 error "set striped dir error"
18107
18108         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
18109         test_300_check_default_striped_dir striped_dir 1 0
18110         test_300_check_default_striped_dir striped_dir 2 1
18111         test_300_check_default_striped_dir striped_dir 2 -1
18112
18113         #delete default stripe information
18114         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
18115                 error "set default stripe on striped dir error"
18116
18117         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
18118         for dir in $(find $DIR/$tdir/striped_dir/*); do
18119                 stripe_count=$($LFS getdirstripe -c $dir)
18120                 [ $stripe_count -eq 0 ] ||
18121                         error "expect 1 get $stripe_count for $dir"
18122         done
18123 }
18124 run_test 300h "check default striped directory for striped directory"
18125
18126 test_300i() {
18127         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18128         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18129         [ $(lustre_version_code $SINGLEMDS) -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         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
18138                 error "set striped dir error"
18139
18140         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
18141                 error "create files under striped dir failed"
18142
18143         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir ||
18144                 error "set striped hashdir error"
18145
18146         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir/d0 ||
18147                 error "create dir0 under hash dir failed"
18148         $LFS setdirstripe -i0 -c$MDSCOUNT -H fnv_1a_64 $DIR/$tdir/hashdir/d1 ||
18149                 error "create dir1 under hash dir failed"
18150
18151         # unfortunately, we need to umount to clear dir layout cache for now
18152         # once we fully implement dir layout, we can drop this
18153         umount_client $MOUNT || error "umount failed"
18154         mount_client $MOUNT || error "mount failed"
18155
18156         $LFS find -H fnv_1a_64 $DIR/$tdir/hashdir
18157         local dircnt=$($LFS find -H fnv_1a_64 $DIR/$tdir/hashdir | wc -l)
18158         [ $dircnt -eq 1 ] || error "lfs find striped dir got:$dircnt,except:1"
18159
18160         #set the stripe to be unknown hash type
18161         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
18162         $LCTL set_param fail_loc=0x1901
18163         for ((i = 0; i < 10; i++)); do
18164                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
18165                         error "stat f-$i failed"
18166                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
18167         done
18168
18169         touch $DIR/$tdir/striped_dir/f0 &&
18170                 error "create under striped dir with unknown hash should fail"
18171
18172         $LCTL set_param fail_loc=0
18173
18174         umount_client $MOUNT || error "umount failed"
18175         mount_client $MOUNT || error "mount failed"
18176
18177         return 0
18178 }
18179 run_test 300i "client handle unknown hash type striped directory"
18180
18181 test_300j() {
18182         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18183         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18184         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
18185                 skip "Need MDS version at least 2.7.55"
18186
18187         local stripe_count
18188         local file
18189
18190         mkdir $DIR/$tdir
18191
18192         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
18193         $LCTL set_param fail_loc=0x1702
18194         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
18195                 error "set striped dir error"
18196
18197         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
18198                 error "create files under striped dir failed"
18199
18200         $LCTL set_param fail_loc=0
18201
18202         rm -rf $DIR/$tdir || error "unlink striped dir fails"
18203
18204         return 0
18205 }
18206 run_test 300j "test large update record"
18207
18208 test_300k() {
18209         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18210         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18211         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
18212                 skip "Need MDS version at least 2.7.55"
18213
18214         local stripe_count
18215         local file
18216
18217         mkdir $DIR/$tdir
18218
18219         #define OBD_FAIL_LARGE_STRIPE   0x1703
18220         $LCTL set_param fail_loc=0x1703
18221         $LFS setdirstripe -i 0 -c192 $DIR/$tdir/striped_dir ||
18222                 error "set striped dir error"
18223         $LCTL set_param fail_loc=0
18224
18225         $LFS getdirstripe $DIR/$tdir/striped_dir ||
18226                 error "getstripeddir fails"
18227         rm -rf $DIR/$tdir/striped_dir ||
18228                 error "unlink striped dir fails"
18229
18230         return 0
18231 }
18232 run_test 300k "test large striped directory"
18233
18234 test_300l() {
18235         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18236         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18237         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
18238                 skip "Need MDS version at least 2.7.55"
18239
18240         local stripe_index
18241
18242         test_mkdir -p $DIR/$tdir/striped_dir
18243         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
18244                         error "chown $RUNAS_ID failed"
18245         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
18246                 error "set default striped dir failed"
18247
18248         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
18249         $LCTL set_param fail_loc=0x80000158
18250         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
18251
18252         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
18253         [ $stripe_index -eq 1 ] ||
18254                 error "expect 1 get $stripe_index for $dir"
18255 }
18256 run_test 300l "non-root user to create dir under striped dir with stale layout"
18257
18258 test_300m() {
18259         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18260         [ $MDSCOUNT -ge 2 ] && skip_env "Only for single MDT"
18261         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
18262                 skip "Need MDS version at least 2.7.55"
18263
18264         mkdir -p $DIR/$tdir/striped_dir
18265         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
18266                 error "set default stripes dir error"
18267
18268         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
18269
18270         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
18271         [ $stripe_count -eq 0 ] ||
18272                         error "expect 0 get $stripe_count for a"
18273
18274         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
18275                 error "set default stripes dir error"
18276
18277         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
18278
18279         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
18280         [ $stripe_count -eq 0 ] ||
18281                         error "expect 0 get $stripe_count for b"
18282
18283         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
18284                 error "set default stripes dir error"
18285
18286         mkdir $DIR/$tdir/striped_dir/c &&
18287                 error "default stripe_index is invalid, mkdir c should fails"
18288
18289         rm -rf $DIR/$tdir || error "rmdir fails"
18290 }
18291 run_test 300m "setstriped directory on single MDT FS"
18292
18293 cleanup_300n() {
18294         local list=$(comma_list $(mdts_nodes))
18295
18296         trap 0
18297         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
18298 }
18299
18300 test_300n() {
18301         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18302         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18303         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
18304                 skip "Need MDS version at least 2.7.55"
18305         remote_mds_nodsh && skip "remote MDS with nodsh"
18306
18307         local stripe_index
18308         local list=$(comma_list $(mdts_nodes))
18309
18310         trap cleanup_300n RETURN EXIT
18311         mkdir -p $DIR/$tdir
18312         chmod 777 $DIR/$tdir
18313         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
18314                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
18315                 error "create striped dir succeeds with gid=0"
18316
18317         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
18318         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
18319                 error "create striped dir fails with gid=-1"
18320
18321         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
18322         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
18323                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
18324                 error "set default striped dir succeeds with gid=0"
18325
18326
18327         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
18328         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
18329                 error "set default striped dir fails with gid=-1"
18330
18331
18332         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
18333         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
18334                                         error "create test_dir fails"
18335         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
18336                                         error "create test_dir1 fails"
18337         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
18338                                         error "create test_dir2 fails"
18339         cleanup_300n
18340 }
18341 run_test 300n "non-root user to create dir under striped dir with default EA"
18342
18343 test_300o() {
18344         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18345         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18346         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
18347                 skip "Need MDS version at least 2.7.55"
18348
18349         local numfree1
18350         local numfree2
18351
18352         mkdir -p $DIR/$tdir
18353
18354         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
18355         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
18356         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
18357                 skip "not enough free inodes $numfree1 $numfree2"
18358         fi
18359
18360         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
18361         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
18362         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
18363                 skip "not enough free space $numfree1 $numfree2"
18364         fi
18365
18366         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
18367                 error "setdirstripe fails"
18368
18369         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
18370                 error "create dirs fails"
18371
18372         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
18373         ls $DIR/$tdir/striped_dir > /dev/null ||
18374                 error "ls striped dir fails"
18375         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
18376                 error "unlink big striped dir fails"
18377 }
18378 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
18379
18380 test_300p() {
18381         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18382         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18383         remote_mds_nodsh && skip "remote MDS with nodsh"
18384
18385         mkdir -p $DIR/$tdir
18386
18387         #define OBD_FAIL_OUT_ENOSPC     0x1704
18388         do_facet mds2 lctl set_param fail_loc=0x80001704
18389         $LFS setdirstripe -i 0 -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 \
18390                  && error "create striped directory should fail"
18391
18392         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
18393
18394         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
18395         true
18396 }
18397 run_test 300p "create striped directory without space"
18398
18399 test_300q() {
18400         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18401         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18402
18403         local fd=$(free_fd)
18404         local cmd="exec $fd<$tdir"
18405         cd $DIR
18406         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
18407         eval $cmd
18408         cmd="exec $fd<&-"
18409         trap "eval $cmd" EXIT
18410         cd $tdir || error "cd $tdir fails"
18411         rmdir  ../$tdir || error "rmdir $tdir fails"
18412         mkdir local_dir && error "create dir succeeds"
18413         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
18414         eval $cmd
18415         return 0
18416 }
18417 run_test 300q "create remote directory under orphan directory"
18418
18419 prepare_remote_file() {
18420         mkdir $DIR/$tdir/src_dir ||
18421                 error "create remote source failed"
18422
18423         cp /etc/hosts $DIR/$tdir/src_dir/a ||
18424                  error "cp to remote source failed"
18425         touch $DIR/$tdir/src_dir/a
18426
18427         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
18428                 error "create remote target dir failed"
18429
18430         touch $DIR/$tdir/tgt_dir/b
18431
18432         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
18433                 error "rename dir cross MDT failed!"
18434
18435         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
18436                 error "src_child still exists after rename"
18437
18438         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
18439                 error "missing file(a) after rename"
18440
18441         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
18442                 error "diff after rename"
18443 }
18444
18445 test_310a() {
18446         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 4 MDTs"
18447         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18448
18449         local remote_file=$DIR/$tdir/tgt_dir/b
18450
18451         mkdir -p $DIR/$tdir
18452
18453         prepare_remote_file || error "prepare remote file failed"
18454
18455         #open-unlink file
18456         $OPENUNLINK $remote_file $remote_file ||
18457                 error "openunlink $remote_file failed"
18458         $CHECKSTAT -a $remote_file || error "$remote_file exists"
18459 }
18460 run_test 310a "open unlink remote file"
18461
18462 test_310b() {
18463         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 4 MDTs"
18464         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18465
18466         local remote_file=$DIR/$tdir/tgt_dir/b
18467
18468         mkdir -p $DIR/$tdir
18469
18470         prepare_remote_file || error "prepare remote file failed"
18471
18472         ln $remote_file $DIR/$tfile || error "link failed for remote file"
18473         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
18474         $CHECKSTAT -t file $remote_file || error "check file failed"
18475 }
18476 run_test 310b "unlink remote file with multiple links while open"
18477
18478 test_310c() {
18479         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18480         [[ $MDSCOUNT -lt 4 ]] && skip_env "needs >= 4 MDTs"
18481
18482         local remote_file=$DIR/$tdir/tgt_dir/b
18483
18484         mkdir -p $DIR/$tdir
18485
18486         prepare_remote_file || error "prepare remote file failed"
18487
18488         ln $remote_file $DIR/$tfile || error "link failed for remote file"
18489         multiop_bg_pause $remote_file O_uc ||
18490                         error "mulitop failed for remote file"
18491         MULTIPID=$!
18492         $MULTIOP $DIR/$tfile Ouc
18493         kill -USR1 $MULTIPID
18494         wait $MULTIPID
18495 }
18496 run_test 310c "open-unlink remote file with multiple links"
18497
18498 #LU-4825
18499 test_311() {
18500         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18501         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
18502         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.54) ] &&
18503                 skip "lustre < 2.8.54 does not contain LU-4825 fix"
18504         remote_mds_nodsh && skip "remote MDS with nodsh"
18505
18506         local old_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
18507         local mdts=$(comma_list $(mdts_nodes))
18508
18509         mkdir -p $DIR/$tdir
18510         $SETSTRIPE -i 0 -c 1 $DIR/$tdir
18511         createmany -o $DIR/$tdir/$tfile. 1000
18512
18513         # statfs data is not real time, let's just calculate it
18514         old_iused=$((old_iused + 1000))
18515
18516         local count=$(do_facet $SINGLEMDS "$LCTL get_param -n \
18517                         osp.*OST0000*MDT0000.create_count")
18518         local max_count=$(do_facet $SINGLEMDS "$LCTL get_param -n \
18519                                 osp.*OST0000*MDT0000.max_create_count")
18520         do_nodes $mdts "$LCTL set_param -n osp.*OST0000*.max_create_count=0"
18521
18522         $SETSTRIPE -i 0 $DIR/$tdir/$tfile || error "setstripe failed"
18523         local index=$($GETSTRIPE -i $DIR/$tdir/$tfile)
18524         [ $index -ne 0 ] || error "$tfile stripe index is 0"
18525
18526         unlinkmany $DIR/$tdir/$tfile. 1000
18527
18528         do_nodes $mdts "$LCTL set_param -n \
18529                         osp.*OST0000*.max_create_count=$max_count"
18530         [ $(lustre_version_code $facet) -lt $(version_code 2.11.56) ] &&
18531                 do_nodes $mdts "$LCTL set_param -n \
18532                                 osp.*OST0000*.create_count=$count"
18533         do_nodes $mdts "$LCTL get_param osp.*OST0000*.create_count" |
18534                         grep "=0" && error "create_count is zero"
18535
18536         local new_iused
18537         for i in $(seq 120); do
18538                 new_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
18539                 # system may be too busy to destroy all objs in time, use
18540                 # a somewhat small value to not fail autotest
18541                 [ $((old_iused - new_iused)) -gt 400 ] && break
18542                 sleep 1
18543         done
18544
18545         echo "waited $i sec, old Iused $old_iused, new Iused $new_iused"
18546         [ $((old_iused - new_iused)) -gt 400 ] ||
18547                 error "objs not destroyed after unlink"
18548 }
18549 run_test 311 "disable OSP precreate, and unlink should destroy objs"
18550
18551 zfs_oid_to_objid()
18552 {
18553         local ost=$1
18554         local objid=$2
18555
18556         local vdevdir=$(dirname $(facet_vdevice $ost))
18557         local cmd="$ZDB -e -p $vdevdir -ddddd $(facet_device $ost)"
18558         local zfs_zapid=$(do_facet $ost $cmd |
18559                           grep -w "/O/0/d$((objid%32))" -C 5 |
18560                           awk '/Object/{getline; print $1}')
18561         local zfs_objid=$(do_facet $ost $cmd $zfs_zapid |
18562                           awk "/$objid = /"'{printf $3}')
18563
18564         echo $zfs_objid
18565 }
18566
18567 zfs_object_blksz() {
18568         local ost=$1
18569         local objid=$2
18570
18571         local vdevdir=$(dirname $(facet_vdevice $ost))
18572         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
18573         local blksz=$(do_facet $ost $cmd $objid |
18574                       awk '/dblk/{getline; printf $4}')
18575
18576         case "${blksz: -1}" in
18577                 k|K) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024)) ;;
18578                 m|M) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024*1024)) ;;
18579                 *) ;;
18580         esac
18581
18582         echo $blksz
18583 }
18584
18585 test_312() { # LU-4856
18586         remote_ost_nodsh && skip "remote OST with nodsh"
18587         [ $(facet_fstype ost1) = "zfs" ] ||
18588                 skip_env "the test only applies to zfs"
18589
18590         local max_blksz=$(do_facet ost1 \
18591                           $ZFS get -p recordsize $(facet_device ost1) |
18592                           awk '!/VALUE/{print $3}')
18593
18594         # to make life a little bit easier
18595         $LFS mkdir -c 1 -i 0 $DIR/$tdir
18596         $LFS setstripe -c 1 -i 0 $DIR/$tdir
18597
18598         local tf=$DIR/$tdir/$tfile
18599         touch $tf
18600         local oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18601
18602         # Get ZFS object id
18603         local zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18604         # block size change by sequential overwrite
18605         local bs
18606
18607         for ((bs=$PAGE_SIZE; bs <= max_blksz; bs *= 4)) ; do
18608                 dd if=/dev/zero of=$tf bs=$bs count=1 oflag=sync conv=notrunc
18609
18610                 local blksz=$(zfs_object_blksz ost1 $zfs_objid)
18611                 [ $blksz -eq $bs ] || error "blksz error: $blksz, expected: $bs"
18612         done
18613         rm -f $tf
18614
18615         # block size change by sequential append write
18616         dd if=/dev/zero of=$tf bs=$PAGE_SIZE count=1 oflag=sync conv=notrunc
18617         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18618         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18619         local count
18620
18621         for ((count = 1; count < $((max_blksz / PAGE_SIZE)); count *= 2)); do
18622                 dd if=/dev/zero of=$tf bs=$PAGE_SIZE count=$count seek=$count \
18623                         oflag=sync conv=notrunc
18624
18625                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
18626                 [ $blksz -eq $((2 * count * PAGE_SIZE)) ] ||
18627                         error "blksz error, actual $blksz, " \
18628                                 "expected: 2 * $count * $PAGE_SIZE"
18629         done
18630         rm -f $tf
18631
18632         # random write
18633         touch $tf
18634         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18635         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18636
18637         dd if=/dev/zero of=$tf bs=1K count=1 oflag=sync conv=notrunc
18638         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18639         [ $blksz -eq $PAGE_SIZE ] ||
18640                 error "blksz error: $blksz, expected: $PAGE_SIZE"
18641
18642         dd if=/dev/zero of=$tf bs=64K count=1 oflag=sync conv=notrunc seek=128
18643         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18644         [ $blksz -eq 65536 ] || error "blksz error: $blksz, expected: 64k"
18645
18646         dd if=/dev/zero of=$tf bs=1M count=1 oflag=sync conv=notrunc
18647         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18648         [ $blksz -eq 65536 ] || error "rewrite error: $blksz, expected: 64k"
18649 }
18650 run_test 312 "make sure ZFS adjusts its block size by write pattern"
18651
18652 test_313() {
18653         remote_ost_nodsh && skip "remote OST with nodsh"
18654
18655         local file=$DIR/$tfile
18656
18657         rm -f $file
18658         $SETSTRIPE -c 1 -i 0 $file || error "setstripe failed"
18659
18660         # define OBD_FAIL_TGT_RCVD_EIO           0x720
18661         do_facet ost1 "$LCTL set_param fail_loc=0x720"
18662         dd if=/dev/zero of=$file bs=$PAGE_SIZE oflag=direct count=1 &&
18663                 error "write should failed"
18664         do_facet ost1 "$LCTL set_param fail_loc=0"
18665         rm -f $file
18666 }
18667 run_test 313 "io should fail after last_rcvd update fail"
18668
18669 test_314() {
18670         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
18671
18672         $SETSTRIPE -c 2 -i 0 $DIR/$tfile || error "setstripe failed"
18673         do_facet ost1 "$LCTL set_param fail_loc=0x720"
18674         rm -f $DIR/$tfile
18675         wait_delete_completed
18676         do_facet ost1 "$LCTL set_param fail_loc=0"
18677 }
18678 run_test 314 "OSP shouldn't fail after last_rcvd update failure"
18679
18680 test_315() { # LU-618
18681         local file=$DIR/$tfile
18682         rm -f $file
18683
18684         $MULTIOP $file oO_CREAT:O_DIRECT:O_RDWR:w4063232c ||
18685                 error "multiop file write failed"
18686         $MULTIOP $file oO_RDONLY:r4063232_c &
18687         PID=$!
18688
18689         sleep 2
18690
18691         local rbytes=$(awk '/read_bytes/ { print $2 }' /proc/$PID/io)
18692         kill -USR1 $PID
18693
18694         [ $rbytes -gt 4000000 ] || error "read is not accounted ($rbytes)"
18695         rm -f $file
18696 }
18697 run_test 315 "read should be accounted"
18698
18699 test_316() {
18700         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
18701         large_xattr_enabled || skip_env "ea_inode feature disabled"
18702
18703         rm -rf $DIR/$tdir/d
18704         mkdir -p $DIR/$tdir/d
18705         chown nobody $DIR/$tdir/d
18706         touch $DIR/$tdir/d/file
18707
18708         $LFS mv -M1 $DIR/$tdir/d || error "lfs mv failed"
18709 }
18710 run_test 316 "lfs mv"
18711
18712 test_317() {
18713         local trunc_sz
18714         local grant_blk_size
18715
18716         if [ "$(facet_fstype $facet)" == "zfs" ]; then
18717                 skip "LU-10370: no implementation for ZFS" && return
18718         fi
18719
18720         stack_trap "rm -f $DIR/$tfile" EXIT
18721         grant_blk_size=$($LCTL get_param osc.$FSNAME*.import |
18722                         awk '/grant_block_size:/ { print $2; exit; }')
18723         #
18724         # Create File of size 5M. Truncate it to below size's and verify
18725         # blocks count.
18726         #
18727         dd if=/dev/zero of=$DIR/$tfile bs=5M count=1 conv=fsync ||
18728                 error "Create file : $DIR/$tfile"
18729
18730         for trunc_sz in 2097152 4097 4000 509 0; do
18731                 $TRUNCATE $DIR/$tfile $trunc_sz ||
18732                         error "truncate $tfile to $trunc_sz failed"
18733                 local sz=$(stat --format=%s $DIR/$tfile)
18734                 local blk=$(stat --format=%b $DIR/$tfile)
18735                 local trunc_blk=$((((trunc_sz + (grant_blk_size - 1) ) /
18736                                      grant_blk_size) * 8))
18737
18738                 if [[ $blk -ne $trunc_blk ]]; then
18739                         $(which stat) $DIR/$tfile
18740                         error "Expected Block $trunc_blk got $blk for $tfile"
18741                 fi
18742
18743                 $CHECKSTAT -s $trunc_sz $DIR/$tfile ||
18744                         error "Expected Size $trunc_sz got $sz for $tfile"
18745         done
18746
18747         #
18748         # sparse file test
18749         # Create file with a hole and write actual two blocks. Block count
18750         # must be 16.
18751         #
18752         dd if=/dev/zero of=$DIR/$tfile bs=$grant_blk_size count=2 seek=5 \
18753                 conv=fsync || error "Create file : $DIR/$tfile"
18754
18755         # Calculate the final truncate size.
18756         trunc_sz=$(($(stat --format=%s $DIR/$tfile) - (grant_blk_size + 1)))
18757
18758         #
18759         # truncate to size $trunc_sz bytes. Strip the last block
18760         # The block count must drop to 8
18761         #
18762         $TRUNCATE $DIR/$tfile $trunc_sz ||
18763                 error "truncate $tfile to $trunc_sz failed"
18764
18765         local trunc_bsz=$((grant_blk_size / $(stat --format=%B $DIR/$tfile)))
18766         sz=$(stat --format=%s $DIR/$tfile)
18767         blk=$(stat --format=%b $DIR/$tfile)
18768
18769         if [[ $blk -ne $trunc_bsz ]]; then
18770                 $(which stat) $DIR/$tfile
18771                 error "Expected Block $trunc_bsz got $blk for $tfile"
18772         fi
18773
18774         $CHECKSTAT -s $trunc_sz $DIR/$tfile ||
18775                 error "Expected Size $trunc_sz got $sz for $tfile"
18776 }
18777 run_test 317 "Verify blocks get correctly update after truncate"
18778
18779 test_fake_rw() {
18780         local read_write=$1
18781         if [ "$read_write" = "write" ]; then
18782                 local dd_cmd="dd if=/dev/zero of=$DIR/$tfile"
18783         elif [ "$read_write" = "read" ]; then
18784                 local dd_cmd="dd of=/dev/null if=$DIR/$tfile"
18785         else
18786                 error "argument error"
18787         fi
18788
18789         # turn off debug for performance testing
18790         local saved_debug=$($LCTL get_param -n debug)
18791         $LCTL set_param debug=0
18792
18793         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
18794
18795         # get ost1 size - lustre-OST0000
18796         local ost1_avail_size=$($LFS df | awk /${ost1_svc}/'{ print $4 }')
18797         local blocks=$((ost1_avail_size/2/1024)) # half avail space by megabytes
18798         [ $blocks -gt 1000 ] && blocks=1000 # 1G in maximum
18799
18800         if [ "$read_write" = "read" ]; then
18801                 truncate -s $(expr 1048576 \* $blocks) $DIR/$tfile
18802         fi
18803
18804         local start_time=$(date +%s.%N)
18805         $dd_cmd bs=1M count=$blocks oflag=sync ||
18806                 error "real dd $read_write error"
18807         local duration=$(bc <<< "$(date +%s.%N) - $start_time")
18808
18809         if [ "$read_write" = "write" ]; then
18810                 rm -f $DIR/$tfile
18811         fi
18812
18813         # define OBD_FAIL_OST_FAKE_RW           0x238
18814         do_facet ost1 $LCTL set_param fail_loc=0x238
18815
18816         local start_time=$(date +%s.%N)
18817         $dd_cmd bs=1M count=$blocks oflag=sync ||
18818                 error "fake dd $read_write error"
18819         local duration_fake=$(bc <<< "$(date +%s.%N) - $start_time")
18820
18821         if [ "$read_write" = "write" ]; then
18822                 # verify file size
18823                 cancel_lru_locks osc
18824                 $CHECKSTAT -t file -s $((blocks * 1024 * 1024)) $DIR/$tfile ||
18825                         error "$tfile size not $blocks MB"
18826         fi
18827         do_facet ost1 $LCTL set_param fail_loc=0
18828
18829         echo "fake $read_write $duration_fake vs. normal $read_write" \
18830                 "$duration in seconds"
18831         [ $(bc <<< "$duration_fake < $duration") -eq 1 ] ||
18832                 error_not_in_vm "fake write is slower"
18833
18834         $LCTL set_param -n debug="$saved_debug"
18835         rm -f $DIR/$tfile
18836 }
18837 test_399a() { # LU-7655 for OST fake write
18838         remote_ost_nodsh && skip "remote OST with nodsh"
18839
18840         test_fake_rw write
18841 }
18842 run_test 399a "fake write should not be slower than normal write"
18843
18844 test_399b() { # LU-8726 for OST fake read
18845         remote_ost_nodsh && skip "remote OST with nodsh"
18846         if [ "$(facet_fstype ost1)" != "ldiskfs" ]; then
18847                 skip_env "ldiskfs only test"
18848         fi
18849
18850         test_fake_rw read
18851 }
18852 run_test 399b "fake read should not be slower than normal read"
18853
18854 test_400a() { # LU-1606, was conf-sanity test_74
18855         if ! which $CC > /dev/null 2>&1; then
18856                 skip_env "$CC is not installed"
18857         fi
18858
18859         local extra_flags=''
18860         local out=$TMP/$tfile
18861         local prefix=/usr/include/lustre
18862         local prog
18863
18864         if ! [[ -d $prefix ]]; then
18865                 # Assume we're running in tree and fixup the include path.
18866                 extra_flags+=" -I$LUSTRE/../lnet/include/uapi -I$LUSTRE/include/uapi -I$LUSTRE/include"
18867                 extra_flags+=" -L$LUSTRE/utils/.lib"
18868         fi
18869
18870         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
18871                 $CC -Wall -Werror $extra_flags -o $out $prog -llustreapi ||
18872                         error "client api broken"
18873         done
18874         rm -f $out
18875 }
18876 run_test 400a "Lustre client api program can compile and link"
18877
18878 test_400b() { # LU-1606, LU-5011
18879         local header
18880         local out=$TMP/$tfile
18881         local prefix=/usr/include/linux/lustre
18882
18883         # We use a hard coded prefix so that this test will not fail
18884         # when run in tree. There are headers in lustre/include/lustre/
18885         # that are not packaged (like lustre_idl.h) and have more
18886         # complicated include dependencies (like config.h and lnet/types.h).
18887         # Since this test about correct packaging we just skip them when
18888         # they don't exist (see below) rather than try to fixup cppflags.
18889
18890         if ! which $CC > /dev/null 2>&1; then
18891                 skip_env "$CC is not installed"
18892         fi
18893
18894         for header in $prefix/*.h; do
18895                 if ! [[ -f "$header" ]]; then
18896                         continue
18897                 fi
18898
18899                 if [[ "$(basename $header)" == lustre_ioctl.h ]]; then
18900                         continue # lustre_ioctl.h is internal header
18901                 fi
18902
18903                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
18904                         error "cannot compile '$header'"
18905         done
18906         rm -f $out
18907 }
18908 run_test 400b "packaged headers can be compiled"
18909
18910 test_401a() { #LU-7437
18911         local printf_arg=$(find -printf 2>&1 | grep "unrecognized:")
18912         [ -n "$printf_arg" ] && skip_env "find does not support -printf"
18913
18914         #count the number of parameters by "list_param -R"
18915         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
18916         #count the number of parameters by listing proc files
18917         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
18918         echo "proc_dirs='$proc_dirs'"
18919         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
18920         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
18921                       sort -u | wc -l)
18922
18923         [ $params -eq $procs ] ||
18924                 error "found $params parameters vs. $procs proc files"
18925
18926         # test the list_param -D option only returns directories
18927         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
18928         #count the number of parameters by listing proc directories
18929         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
18930                 sort -u | wc -l)
18931
18932         [ $params -eq $procs ] ||
18933                 error "found $params parameters vs. $procs proc files"
18934 }
18935 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
18936
18937 test_401b() {
18938         local save=$($LCTL get_param -n jobid_var)
18939         local tmp=testing
18940
18941         $LCTL set_param foo=bar jobid_var=$tmp bar=baz &&
18942                 error "no error returned when setting bad parameters"
18943
18944         local jobid_new=$($LCTL get_param -n foe jobid_var baz)
18945         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
18946
18947         $LCTL set_param -n fog=bam jobid_var=$save bat=fog
18948         local jobid_old=$($LCTL get_param -n foe jobid_var bag)
18949         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
18950 }
18951 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
18952
18953 test_401c() {
18954         local jobid_var_old=$($LCTL get_param -n jobid_var)
18955         local jobid_var_new
18956
18957         $LCTL set_param jobid_var= &&
18958                 error "no error returned for 'set_param a='"
18959
18960         jobid_var_new=$($LCTL get_param -n jobid_var)
18961         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
18962                 error "jobid_var was changed by setting without value"
18963
18964         $LCTL set_param jobid_var &&
18965                 error "no error returned for 'set_param a'"
18966
18967         jobid_var_new=$($LCTL get_param -n jobid_var)
18968         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
18969                 error "jobid_var was changed by setting without value"
18970 }
18971 run_test 401c "Verify 'lctl set_param' without value fails in either format."
18972
18973 test_401d() {
18974         local jobid_var_old=$($LCTL get_param -n jobid_var)
18975         local jobid_var_new
18976         local new_value="foo=bar"
18977
18978         $LCTL set_param jobid_var=$new_value ||
18979                 error "'set_param a=b' did not accept a value containing '='"
18980
18981         jobid_var_new=$($LCTL get_param -n jobid_var)
18982         [[ "$jobid_var_new" == "$new_value" ]] ||
18983                 error "'set_param a=b' failed on a value containing '='"
18984
18985         # Reset the jobid_var to test the other format
18986         $LCTL set_param jobid_var=$jobid_var_old
18987         jobid_var_new=$($LCTL get_param -n jobid_var)
18988         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
18989                 error "failed to reset jobid_var"
18990
18991         $LCTL set_param jobid_var $new_value ||
18992                 error "'set_param a b' did not accept a value containing '='"
18993
18994         jobid_var_new=$($LCTL get_param -n jobid_var)
18995         [[ "$jobid_var_new" == "$new_value" ]] ||
18996                 error "'set_param a b' failed on a value containing '='"
18997
18998         $LCTL set_param jobid_var $jobid_var_old
18999         jobid_var_new=$($LCTL get_param -n jobid_var)
19000         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
19001                 error "failed to reset jobid_var"
19002 }
19003 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
19004
19005 test_402() {
19006         local server_version=$(lustre_version_code $SINGLEMDS)
19007         [[ $server_version -ge $(version_code 2.7.66) ]] ||
19008         [[ $server_version -ge $(version_code 2.7.18.4) &&
19009                 $server_version -lt $(version_code 2.7.50) ]] ||
19010         [[ $server_version -ge $(version_code 2.7.2) &&
19011                 $server_version -lt $(version_code 2.7.11) ]] ||
19012                 skip "Need MDS version 2.7.2+ or 2.7.18.4+ or 2.7.66+"
19013         remote_mds_nodsh && skip "remote MDS with nodsh"
19014
19015         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
19016 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
19017         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
19018         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
19019                 echo "Touch failed - OK"
19020 }
19021 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
19022
19023 test_403() {
19024         local file1=$DIR/$tfile.1
19025         local file2=$DIR/$tfile.2
19026         local tfile=$TMP/$tfile
19027
19028         rm -f $file1 $file2 $tfile
19029
19030         touch $file1
19031         ln $file1 $file2
19032
19033         # 30 sec OBD_TIMEOUT in ll_getattr()
19034         # right before populating st_nlink
19035         $LCTL set_param fail_loc=0x80001409
19036         stat -c %h $file1 > $tfile &
19037
19038         # create an alias, drop all locks and reclaim the dentry
19039         < $file2
19040         cancel_lru_locks mdc
19041         cancel_lru_locks osc
19042         sysctl -w vm.drop_caches=2
19043
19044         wait
19045
19046         [ $(cat $tfile) -gt 0 ] || error "wrong nlink count: $(cat $tfile)"
19047
19048         rm -f $tfile $file1 $file2
19049 }
19050 run_test 403 "i_nlink should not drop to zero due to aliasing"
19051
19052 test_404() { # LU-6601
19053         local server_version=$(lustre_version_code $SINGLEMDS)
19054         [[ $server_version -ge $(version_code 2.8.53) ]] ||
19055                 skip "Need server version newer than 2.8.52"
19056         remote_mds_nodsh && skip "remote MDS with nodsh"
19057
19058         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
19059                 awk '/osp .*-osc-MDT/ { print $4}')
19060
19061         local osp
19062         for osp in $mosps; do
19063                 echo "Deactivate: " $osp
19064                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
19065                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
19066                         awk -vp=$osp '$4 == p { print $2 }')
19067                 [ $stat = IN ] || {
19068                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
19069                         error "deactivate error"
19070                 }
19071                 echo "Activate: " $osp
19072                 do_facet $SINGLEMDS $LCTL --device %$osp activate
19073                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
19074                         awk -vp=$osp '$4 == p { print $2 }')
19075                 [ $stat = UP ] || {
19076                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
19077                         error "activate error"
19078                 }
19079         done
19080 }
19081 run_test 404 "validate manual {de}activated works properly for OSPs"
19082
19083 test_405() {
19084         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) -o \
19085         [ $(lustre_version_code client) -lt $(version_code 2.6.99) ] &&
19086                 skip "Layout swap lock is not supported"
19087         check_swap_layouts_support
19088
19089         test_mkdir $DIR/$tdir
19090         swap_lock_test -d $DIR/$tdir ||
19091                 error "One layout swap locked test failed"
19092 }
19093 run_test 405 "Various layout swap lock tests"
19094
19095 test_406() {
19096         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19097         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
19098         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
19099         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19100         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.50) ] &&
19101                 skip "Need MDS version at least 2.8.50"
19102
19103         local def_stripe_size=$($LFS getstripe -S $MOUNT)
19104         local test_pool=$TESTNAME
19105
19106         if ! combined_mgs_mds ; then
19107                 mount_mgs_client
19108         fi
19109         pool_add $test_pool || error "pool_add failed"
19110         pool_add_targets $test_pool 0 $(($OSTCOUNT - 1)) 1 ||
19111                 error "pool_add_targets failed"
19112
19113         save_layout_restore_at_exit $MOUNT
19114
19115         # parent set default stripe count only, child will stripe from both
19116         # parent and fs default
19117         $LFS setstripe -c 1 -i 1 -S $((def_stripe_size * 2)) -p $test_pool $MOUNT ||
19118                 error "setstripe $MOUNT failed"
19119         $LFS mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
19120         $LFS setstripe -c $OSTCOUNT $DIR/$tdir || error "setstripe $tdir failed"
19121         for i in $(seq 10); do
19122                 local f=$DIR/$tdir/$tfile.$i
19123                 touch $f || error "touch failed"
19124                 local count=$($LFS getstripe -c $f)
19125                 [ $count -eq $OSTCOUNT ] ||
19126                         error "$f stripe count $count != $OSTCOUNT"
19127                 local offset=$($LFS getstripe -i $f)
19128                 [ $offset -eq 1 ] || error "$f stripe offset $offset != 1"
19129                 local size=$($LFS getstripe -S $f)
19130                 [ $size -eq $((def_stripe_size * 2)) ] ||
19131                         error "$f stripe size $size != $((def_stripe_size * 2))"
19132                 local pool=$($LFS getstripe -p $f)
19133                 [ $pool == $test_pool ] || error "$f pool $pool != $test_pool"
19134         done
19135
19136         # change fs default striping, delete parent default striping, now child
19137         # will stripe from new fs default striping only
19138         $LFS setstripe -c 1 -S $def_stripe_size -i 0 $MOUNT ||
19139                 error "change $MOUNT default stripe failed"
19140         $LFS setstripe -c 0 $DIR/$tdir ||
19141                 error "delete $tdir default stripe failed"
19142         for i in $(seq 11 20); do
19143                 local f=$DIR/$tdir/$tfile.$i
19144                 touch $f || error "touch $f failed"
19145                 local count=$($LFS getstripe -c $f)
19146                 [ $count -eq 1 ] || error "$f stripe count $count != 1"
19147                 local offset=$($LFS getstripe -i $f)
19148                 [ $offset -eq 0 ] || error "$f stripe offset $offset != 0"
19149                 local size=$($LFS getstripe -S $f)
19150                 [ $size -eq $def_stripe_size ] ||
19151                         error "$f stripe size $size != $def_stripe_size"
19152                 local pool=$($LFS getstripe -p $f)
19153                 [ $pool == $test_pool ] || error "$f pool $pool isn't set"
19154         done
19155
19156         unlinkmany $DIR/$tdir/$tfile. 1 20
19157
19158         local f=$DIR/$tdir/$tfile
19159         pool_remove_all_targets $test_pool $f
19160         pool_remove $test_pool $f
19161
19162         if ! combined_mgs_mds ; then
19163                 umount_mgs_client
19164         fi
19165 }
19166 run_test 406 "DNE support fs default striping"
19167
19168 test_407() {
19169         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19170         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
19171                 skip "Need MDS version at least 2.8.55"
19172         remote_mds_nodsh && skip "remote MDS with nodsh"
19173
19174         $LFS mkdir -i 0 -c 1 $DIR/$tdir.0 ||
19175                 error "$LFS mkdir -i 0 -c 1 $tdir.0 failed"
19176         $LFS mkdir -i 1 -c 1 $DIR/$tdir.1 ||
19177                 error "$LFS mkdir -i 1 -c 1 $tdir.1 failed"
19178         touch $DIR/$tdir.0/$tfile.0 || error "touch $tdir.0/$tfile.0 failed"
19179
19180         #define OBD_FAIL_DT_TXN_STOP    0x2019
19181         for idx in $(seq $MDSCOUNT); do
19182                 do_facet mds$idx "lctl set_param fail_loc=0x2019"
19183         done
19184         $LFS mkdir -c 2 $DIR/$tdir && error "$LFS mkdir -c 2 $tdir should fail"
19185         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1/$tfile.1 &&
19186                 error "mv $tdir.0/$tfile.0 $tdir.1/$tfile.1 should fail"
19187         true
19188 }
19189 run_test 407 "transaction fail should cause operation fail"
19190
19191 test_408() {
19192         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1 oflag=direct
19193
19194         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
19195         lctl set_param fail_loc=0x8000040a
19196         # let ll_prepare_partial_page() fail
19197         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 conv=notrunc || true
19198
19199         rm -f $DIR/$tfile
19200
19201         # create at least 100 unused inodes so that
19202         # shrink_icache_memory(0) should not return 0
19203         touch $DIR/$tfile-{0..100}
19204         rm -f $DIR/$tfile-{0..100}
19205         sync
19206
19207         echo 2 > /proc/sys/vm/drop_caches
19208 }
19209 run_test 408 "drop_caches should not hang due to page leaks"
19210
19211 test_409()
19212 {
19213         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19214         check_mount_and_prep
19215
19216         mkdir -p $DIR/$tdir || error "(0) Fail to mkdir"
19217         $LFS mkdir -i 1 -c 2 $DIR/$tdir/foo || error "(1) Fail to mkdir"
19218         touch $DIR/$tdir/guard || error "(2) Fail to create"
19219
19220         local PREFIX=$(str_repeat 'A' 128)
19221         echo "Create 1K hard links start at $(date)"
19222         createmany -l $DIR/$tdir/guard $DIR/$tdir/foo/${PREFIX}_ 1000 ||
19223                 error "(3) Fail to hard link"
19224
19225         echo "Links count should be right although linkEA overflow"
19226         stat $DIR/$tdir/guard || error "(4) Fail to stat"
19227         local linkcount=$(stat --format=%h $DIR/$tdir/guard)
19228         [ $linkcount -eq 1001 ] ||
19229                 error "(5) Unexpected hard links count: $linkcount"
19230
19231         echo "List all links start at $(date)"
19232         ls -l $DIR/$tdir/foo > /dev/null ||
19233                 error "(6) Fail to list $DIR/$tdir/foo"
19234
19235         echo "Unlink hard links start at $(date)"
19236         unlinkmany $DIR/$tdir/foo/${PREFIX}_ 1000 ||
19237                 error "(7) Fail to unlink"
19238 }
19239 run_test 409 "Large amount of cross-MDTs hard links on the same file"
19240
19241 test_410()
19242 {
19243         [[ $(lustre_version_code client) -lt $(version_code 2.9.59) ]] &&
19244                 skip "Need client version at least 2.9.59"
19245
19246         # Create a file, and stat it from the kernel
19247         local testfile=$DIR/$tfile
19248         touch $testfile
19249
19250         local run_id=$RANDOM
19251         local my_ino=$(stat --format "%i" $testfile)
19252
19253         # Try to insert the module. This will always fail as the
19254         # module is designed to not be inserted.
19255         insmod $LUSTRE/tests/kernel/kinode.ko run_id=$run_id fname=$testfile \
19256             &> /dev/null
19257
19258         # Anything but success is a test failure
19259         dmesg | grep -q \
19260             "lustre_kinode_$run_id: inode numbers are identical: $my_ino" ||
19261             error "no inode match"
19262 }
19263 run_test 410 "Test inode number returned from kernel thread"
19264
19265 cleanup_test411_cgroup() {
19266         trap 0
19267         rmdir "$1"
19268 }
19269
19270 test_411() {
19271         local cg_basedir=/sys/fs/cgroup/memory
19272         # LU-9966
19273         test -f "$cg_basedir/memory.kmem.limit_in_bytes" ||
19274                 skip "no setup for cgroup"
19275
19276         dd if=/dev/zero of=$DIR/$tfile bs=1M count=100 conv=fsync ||
19277                 error "test file creation failed"
19278         cancel_lru_locks osc
19279
19280         # Create a very small memory cgroup to force a slab allocation error
19281         local cgdir=$cg_basedir/osc_slab_alloc
19282         mkdir $cgdir || error "cgroup mkdir '$cgdir' failed"
19283         trap "cleanup_test411_cgroup $cgdir" EXIT
19284         echo 2M > $cgdir/memory.kmem.limit_in_bytes
19285         echo 1M > $cgdir/memory.limit_in_bytes
19286
19287         # Should not LBUG, just be killed by oom-killer
19288         # dd will return 0 even allocation failure in some environment.
19289         # So don't check return value
19290         sh -c "echo \$$ > $cgdir/tasks && dd if=$DIR/$tfile of=/dev/null"
19291         cleanup_test411_cgroup $cgdir
19292
19293         return 0
19294 }
19295 run_test 411 "Slab allocation error with cgroup does not LBUG"
19296
19297 test_412() {
19298         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19299         if [ $(lustre_version_code mds1) -lt $(version_code 2.10.55) ]; then
19300                 skip "Need server version at least 2.10.55"
19301         fi
19302
19303         $LFS mkdir -i $((MDSCOUNT - 1)),$((MDSCOUNT - 2)) $DIR/$tdir ||
19304                 error "mkdir failed"
19305         $LFS getdirstripe $DIR/$tdir
19306         local stripe_index=$($LFS getdirstripe -i $DIR/$tdir)
19307         [ $stripe_index -eq $((MDSCOUNT - 1)) ] ||
19308                 error "expect $((MDSCOUT - 1)) get $stripe_index"
19309         local stripe_count=$($LFS getdirstripe -T $DIR/$tdir)
19310         [ $stripe_count -eq 2 ] ||
19311                 error "expect 2 get $stripe_count"
19312 }
19313 run_test 412 "mkdir on specific MDTs"
19314
19315 test_413() {
19316         [ $MDSCOUNT -lt 2 ] &&
19317                 skip "We need at least 2 MDTs for this test"
19318
19319         if [ $(lustre_version_code mds1) -lt $(version_code 2.10.55) ]; then
19320                 skip "Need server version at least 2.10.55"
19321         fi
19322
19323         mkdir $DIR/$tdir || error "mkdir failed"
19324
19325         # find MDT that is the most full
19326         local max=$($LFS df | grep MDT |
19327                 awk 'BEGIN { a=0 }
19328                         { sub("%", "", $5)
19329                           if (0+$5 >= a)
19330                           {
19331                                 a = $5
19332                                 b = $6
19333                           }
19334                         }
19335                      END { split(b, c, ":")
19336                            sub("]", "", c[2])
19337                            print c[2]
19338                          }')
19339
19340         for i in $(seq $((MDSCOUNT - 1))); do
19341                 $LFS mkdir -c $i $DIR/$tdir/d$i ||
19342                         error "mkdir d$i failed"
19343                 $LFS getdirstripe $DIR/$tdir/d$i
19344                 local stripe_index=$($LFS getdirstripe -i $DIR/$tdir/d$i)
19345                 [ $stripe_index -ne $max ] ||
19346                         error "don't expect $max"
19347         done
19348 }
19349 run_test 413 "mkdir on less full MDTs"
19350
19351 test_414() {
19352 #define OBD_FAIL_PTLRPC_BULK_ATTACH      0x521
19353         $LCTL set_param fail_loc=0x80000521
19354         dd if=/dev/zero of=$DIR/$tfile bs=2M count=1 oflag=sync
19355         rm -f $DIR/$tfile
19356 }
19357 run_test 414 "simulate ENOMEM in ptlrpc_register_bulk()"
19358
19359 test_415() {
19360         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19361         [ $(lustre_version_code mds1) -lt $(version_code 2.11.52) ] &&
19362                 skip "Need server version at least 2.11.52"
19363
19364         # LU-11102
19365         local total
19366         local setattr_pid
19367         local start_time
19368         local end_time
19369         local duration
19370
19371         total=500
19372         # this test may be slow on ZFS
19373         [ "$(facet_fstype mds1)" == "zfs" ] && total=100
19374
19375         # though this test is designed for striped directory, let's test normal
19376         # directory too since lock is always saved as CoS lock.
19377         test_mkdir $DIR/$tdir || error "mkdir $tdir"
19378         createmany -o $DIR/$tdir/$tfile. $total || error "createmany"
19379
19380         (
19381                 while true; do
19382                         touch $DIR/$tdir
19383                 done
19384         ) &
19385         setattr_pid=$!
19386
19387         start_time=$(date +%s)
19388         for i in $(seq $total); do
19389                 mrename $DIR/$tdir/$tfile.$i $DIR/$tdir/$tfile-new.$i \
19390                         > /dev/null
19391         done
19392         end_time=$(date +%s)
19393         duration=$((end_time - start_time))
19394
19395         kill -9 $setattr_pid
19396
19397         echo "rename $total files took $duration sec"
19398         [ $duration -lt 100 ] || error "rename took $duration sec"
19399 }
19400 run_test 415 "lock revoke is not missing"
19401
19402 test_416() {
19403         [ $(lustre_version_code mds1) -lt $(version_code 2.11.55) ] &&
19404                 skip "Need server version at least 2.11.55"
19405
19406         # define OBD_FAIL_OSD_TXN_START    0x19a
19407         do_facet mds1 lctl set_param fail_loc=0x19a
19408
19409         lfs mkdir -c $MDSCOUNT $DIR/$tdir
19410
19411         true
19412 }
19413 run_test 416 "transaction start failure won't cause system hung"
19414
19415 cleanup_417() {
19416         trap 0
19417         do_nodes $(comma_list $(mdts_nodes)) \
19418                 "$LCTL set_param -n mdt.*MDT*.enable_dir_migration=1"
19419         do_nodes $(comma_list $(mdts_nodes)) \
19420                 "$LCTL set_param -n mdt.*MDT*.enable_remote_dir=1"
19421         do_nodes $(comma_list $(mdts_nodes)) \
19422                 "$LCTL set_param -n mdt.*MDT*.enable_striped_dir=1"
19423 }
19424
19425 test_417() {
19426         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
19427         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.56) ]] &&
19428                 skip "Need MDS version at least 2.11.56" && return
19429
19430         trap cleanup_417 RETURN EXIT
19431
19432         $LFS mkdir -i 1 $DIR/$tdir.1 || error "create remote dir $tdir.1 failed"
19433         do_nodes $(comma_list $(mdts_nodes)) \
19434                 "$LCTL set_param -n mdt.*MDT*.enable_dir_migration=0"
19435         $LFS migrate -m 0 $DIR/$tdir.1 &&
19436                 error "migrate dir $tdir.1 should fail"
19437
19438         do_nodes $(comma_list $(mdts_nodes)) \
19439                 "$LCTL set_param -n mdt.*MDT*.enable_remote_dir=0"
19440         $LFS mkdir -i 1 $DIR/$tdir.2 &&
19441                 error "create remote dir $tdir.2 should fail"
19442
19443         do_nodes $(comma_list $(mdts_nodes)) \
19444                 "$LCTL set_param -n mdt.*MDT*.enable_striped_dir=0"
19445         $LFS mkdir -c 2 $DIR/$tdir.3 &&
19446                 error "create striped dir $tdir.3 should fail"
19447         true
19448 }
19449 run_test 417 "disable remote dir, striped dir and dir migration"
19450
19451 # Checks that the outputs of df [-i] and lfs df [-i] match
19452 #
19453 # usage: check_lfs_df <blocks | inodes> <mountpoint>
19454 check_lfs_df() {
19455         local dir=$2
19456         local inodes
19457         local df_out
19458         local lfs_df_out
19459         local tries=100
19460         local count=0
19461         local passed=false
19462
19463         # blocks or inodes
19464         [ "$1" == "blocks" ] && inodes= || inodes="-i"
19465
19466         while (( count < tries )); do
19467                 cancel_lru_locks
19468                 sync; sleep 0.2
19469
19470                 # read the lines of interest
19471                 df_out=($(df $inodes $dir | tail -n +2)) ||
19472                         error "df $inodes $dir | tail -n +2 failed"
19473                 lfs_df_out=($($LFS df $inodes $dir | grep summary:)) ||
19474                         error "lfs df $inodes $dir | grep summary: failed"
19475
19476                 # skip first substrings of each output as they are different
19477                 # <NID>:/<fsname for df, filesystem_summary: for lfs df
19478                 df_out=(${df_out[@]:1})
19479                 lfs_df_out=(${lfs_df_out[@]:1})
19480
19481                 # compare the two outputs
19482                 passed=true
19483
19484                 for i in {0..4}; do
19485                         [ "${df_out[i]}" != "${lfs_df_out[i]}" ] && passed=false
19486                 done
19487                 $passed && break
19488         done
19489
19490         $passed || error "df and lfs df $1 output mismatch: "   \
19491                          "df ${inodes}: ${df_out[*]}, "         \
19492                          "lfs df ${inodes}: ${lfs_df_out[*]}"
19493 }
19494
19495 test_418() {
19496         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19497
19498         local dir=$DIR/$tdir
19499         local numfiles=$((RANDOM % 4096 + 2))
19500         local numblocks=$((RANDOM % 256 + 1))
19501
19502         wait_delete_completed
19503         test_mkdir $dir
19504
19505         # check block output
19506         check_lfs_df blocks $dir
19507         # check inode output
19508         check_lfs_df inodes $dir
19509
19510         # create a single file and retest
19511         echo "Creating a single file and testing"
19512         createmany -o $dir/$tfile- 1 &>/dev/null ||
19513                 error "creating 1 file in $dir failed"
19514         check_lfs_df blocks $dir
19515         check_lfs_df inodes $dir
19516
19517         # create a random number of files
19518         echo "Creating $((numfiles - 1)) files and testing"
19519         createmany -o $dir/$tfile- 1 $((numfiles - 1)) &>/dev/null ||
19520                 error "creating $((numfiles - 1)) files in $dir failed"
19521
19522         # write a random number of blocks to the first test file
19523         echo "Writing $numblocks 4K blocks and testing"
19524         dd if=/dev/urandom of=$dir/${tfile}-0 bs=4K conv=fsync \
19525                 count=$numblocks &>/dev/null ||
19526                 error "dd to $dir/${tfile}-0 failed"
19527
19528         # retest
19529         check_lfs_df blocks $dir
19530         check_lfs_df inodes $dir
19531
19532         unlinkmany $dir/$tfile- $numfiles &>/dev/null ||
19533                 error "unlinking $numfiles files in $dir failed"
19534 }
19535 run_test 418 "df and lfs df outputs match"
19536
19537 prep_801() {
19538         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
19539         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
19540                 skip "Need server version at least 2.9.55"
19541
19542         start_full_debug_logging
19543 }
19544
19545 post_801() {
19546         stop_full_debug_logging
19547 }
19548
19549 barrier_stat() {
19550         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
19551                 local st=$(do_facet mgs $LCTL barrier_stat $FSNAME |
19552                            awk '/The barrier for/ { print $7 }')
19553                 echo $st
19554         else
19555                 local st=$(do_facet mgs $LCTL barrier_stat -s $FSNAME)
19556                 echo \'$st\'
19557         fi
19558 }
19559
19560 barrier_expired() {
19561         local expired
19562
19563         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
19564                 expired=$(do_facet mgs $LCTL barrier_stat $FSNAME |
19565                           awk '/will be expired/ { print $7 }')
19566         else
19567                 expired=$(do_facet mgs $LCTL barrier_stat -t $FSNAME)
19568         fi
19569
19570         echo $expired
19571 }
19572
19573 test_801a() {
19574         prep_801
19575
19576         echo "Start barrier_freeze at: $(date)"
19577         #define OBD_FAIL_BARRIER_DELAY          0x2202
19578         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
19579         do_facet mgs $LCTL barrier_freeze $FSNAME 10 &
19580
19581         sleep 2
19582         local b_status=$(barrier_stat)
19583         echo "Got barrier status at: $(date)"
19584         [ "$b_status" = "'freezing_p1'" ] ||
19585                 error "(1) unexpected barrier status $b_status"
19586
19587         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
19588         wait
19589         b_status=$(barrier_stat)
19590         [ "$b_status" = "'frozen'" ] ||
19591                 error "(2) unexpected barrier status $b_status"
19592
19593         local expired=$(barrier_expired)
19594         echo "sleep $((expired + 3)) seconds, then the barrier will be expired"
19595         sleep $((expired + 3))
19596
19597         b_status=$(barrier_stat)
19598         [ "$b_status" = "'expired'" ] ||
19599                 error "(3) unexpected barrier status $b_status"
19600
19601         do_facet mgs $LCTL barrier_freeze $FSNAME 10 ||
19602                 error "(4) fail to freeze barrier"
19603
19604         b_status=$(barrier_stat)
19605         [ "$b_status" = "'frozen'" ] ||
19606                 error "(5) unexpected barrier status $b_status"
19607
19608         echo "Start barrier_thaw at: $(date)"
19609         #define OBD_FAIL_BARRIER_DELAY          0x2202
19610         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
19611         do_facet mgs $LCTL barrier_thaw $FSNAME &
19612
19613         sleep 2
19614         b_status=$(barrier_stat)
19615         echo "Got barrier status at: $(date)"
19616         [ "$b_status" = "'thawing'" ] ||
19617                 error "(6) unexpected barrier status $b_status"
19618
19619         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
19620         wait
19621         b_status=$(barrier_stat)
19622         [ "$b_status" = "'thawed'" ] ||
19623                 error "(7) unexpected barrier status $b_status"
19624
19625         #define OBD_FAIL_BARRIER_FAILURE        0x2203
19626         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2203
19627         do_facet mgs $LCTL barrier_freeze $FSNAME
19628
19629         b_status=$(barrier_stat)
19630         [ "$b_status" = "'failed'" ] ||
19631                 error "(8) unexpected barrier status $b_status"
19632
19633         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
19634         do_facet mgs $LCTL barrier_thaw $FSNAME
19635
19636         post_801
19637 }
19638 run_test 801a "write barrier user interfaces and stat machine"
19639
19640 test_801b() {
19641         prep_801
19642
19643         mkdir $DIR/$tdir || error "(1) fail to mkdir"
19644         createmany -d $DIR/$tdir/d 6 || "(2) fail to mkdir"
19645         touch $DIR/$tdir/d2/f10 || error "(3) fail to touch"
19646         touch $DIR/$tdir/d3/f11 || error "(4) fail to touch"
19647         touch $DIR/$tdir/d4/f12 || error "(5) fail to touch"
19648
19649         cancel_lru_locks mdc
19650
19651         # 180 seconds should be long enough
19652         do_facet mgs $LCTL barrier_freeze $FSNAME 180
19653
19654         local b_status=$(barrier_stat)
19655         [ "$b_status" = "'frozen'" ] ||
19656                 error "(6) unexpected barrier status $b_status"
19657
19658         mkdir $DIR/$tdir/d0/d10 &
19659         mkdir_pid=$!
19660
19661         touch $DIR/$tdir/d1/f13 &
19662         touch_pid=$!
19663
19664         ln $DIR/$tdir/d2/f10 $DIR/$tdir/d2/f14 &
19665         ln_pid=$!
19666
19667         mv $DIR/$tdir/d3/f11 $DIR/$tdir/d3/f15 &
19668         mv_pid=$!
19669
19670         rm -f $DIR/$tdir/d4/f12 &
19671         rm_pid=$!
19672
19673         stat $DIR/$tdir/d5 || error "(7) stat should succeed"
19674
19675         # To guarantee taht the 'stat' is not blocked
19676         b_status=$(barrier_stat)
19677         [ "$b_status" = "'frozen'" ] ||
19678                 error "(8) unexpected barrier status $b_status"
19679
19680         # let above commands to run at background
19681         sleep 5
19682
19683         ps -p $mkdir_pid || error "(9) mkdir should be blocked"
19684         ps -p $touch_pid || error "(10) touch should be blocked"
19685         ps -p $ln_pid || error "(11) link should be blocked"
19686         ps -p $mv_pid || error "(12) rename should be blocked"
19687         ps -p $rm_pid || error "(13) unlink should be blocked"
19688
19689         b_status=$(barrier_stat)
19690         [ "$b_status" = "'frozen'" ] ||
19691                 error "(14) unexpected barrier status $b_status"
19692
19693         do_facet mgs $LCTL barrier_thaw $FSNAME
19694         b_status=$(barrier_stat)
19695         [ "$b_status" = "'thawed'" ] ||
19696                 error "(15) unexpected barrier status $b_status"
19697
19698         wait $mkdir_pid || error "(16) mkdir should succeed"
19699         wait $touch_pid || error "(17) touch should succeed"
19700         wait $ln_pid || error "(18) link should succeed"
19701         wait $mv_pid || error "(19) rename should succeed"
19702         wait $rm_pid || error "(20) unlink should succeed"
19703
19704         post_801
19705 }
19706 run_test 801b "modification will be blocked by write barrier"
19707
19708 test_801c() {
19709         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19710
19711         prep_801
19712
19713         stop mds2 || error "(1) Fail to stop mds2"
19714
19715         do_facet mgs $LCTL barrier_freeze $FSNAME 30
19716
19717         local b_status=$(barrier_stat)
19718         [ "$b_status" = "'expired'" -o "$b_status" = "'failed'" ] || {
19719                 do_facet mgs $LCTL barrier_thaw $FSNAME
19720                 error "(2) unexpected barrier status $b_status"
19721         }
19722
19723         do_facet mgs $LCTL barrier_rescan $FSNAME ||
19724                 error "(3) Fail to rescan barrier bitmap"
19725
19726         do_facet mgs $LCTL barrier_freeze $FSNAME 10
19727
19728         b_status=$(barrier_stat)
19729         [ "$b_status" = "'frozen'" ] ||
19730                 error "(4) unexpected barrier status $b_status"
19731
19732         do_facet mgs $LCTL barrier_thaw $FSNAME
19733         b_status=$(barrier_stat)
19734         [ "$b_status" = "'thawed'" ] ||
19735                 error "(5) unexpected barrier status $b_status"
19736
19737         local devname=$(mdsdevname 2)
19738
19739         start mds2 $devname $MDS_MOUNT_OPTS || error "(6) Fail to start mds2"
19740
19741         do_facet mgs $LCTL barrier_rescan $FSNAME ||
19742                 error "(7) Fail to rescan barrier bitmap"
19743
19744         post_801
19745 }
19746 run_test 801c "rescan barrier bitmap"
19747
19748 saved_MGS_MOUNT_OPTS=$MGS_MOUNT_OPTS
19749 saved_MDS_MOUNT_OPTS=$MDS_MOUNT_OPTS
19750 saved_OST_MOUNT_OPTS=$OST_MOUNT_OPTS
19751
19752 cleanup_802() {
19753         trap 0
19754
19755         stopall
19756         MGS_MOUNT_OPTS=$saved_MGS_MOUNT_OPTS
19757         MDS_MOUNT_OPTS=$saved_MDS_MOUNT_OPTS
19758         OST_MOUNT_OPTS=$saved_OST_MOUNT_OPTS
19759         setupall
19760 }
19761
19762 test_802() {
19763
19764         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
19765         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
19766                 skip "Need server version at least 2.9.55"
19767
19768         [[ $ENABLE_QUOTA ]] && skip "Quota enabled for read-only test"
19769
19770         mkdir $DIR/$tdir || error "(1) fail to mkdir"
19771
19772         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
19773                 error "(2) Fail to copy"
19774
19775         trap cleanup_802 EXIT
19776
19777         # sync by force before remount as readonly
19778         sync; sync_all_data; sleep 3; sync_all_data
19779
19780         stopall
19781
19782         MGS_MOUNT_OPTS=$(csa_add "$MGS_MOUNT_OPTS" -o rdonly_dev)
19783         MDS_MOUNT_OPTS=$(csa_add "$MDS_MOUNT_OPTS" -o rdonly_dev)
19784         OST_MOUNT_OPTS=$(csa_add "$OST_MOUNT_OPTS" -o rdonly_dev)
19785
19786         echo "Mount the server as read only"
19787         setupall server_only || error "(3) Fail to start servers"
19788
19789         echo "Mount client without ro should fail"
19790         mount_client $MOUNT &&
19791                 error "(4) Mount client without 'ro' should fail"
19792
19793         echo "Mount client with ro should succeed"
19794         mount_client $MOUNT ro ||
19795                 error "(5) Mount client with 'ro' should succeed"
19796
19797         echo "Modify should be refused"
19798         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
19799
19800         echo "Read should be allowed"
19801         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
19802                 error "(7) Read should succeed under ro mode"
19803
19804         cleanup_802
19805 }
19806 run_test 802 "simulate readonly device"
19807
19808 test_803() {
19809         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19810         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.54) ] &&
19811                 skip "MDS needs to be newer than 2.10.54"
19812
19813         mkdir -p $DIR/$tdir
19814         # Create some objects on all MDTs to trigger related logs objects
19815         for idx in $(seq $MDSCOUNT); do
19816                 $LFS mkdir -c $MDSCOUNT -i $((idx % $MDSCOUNT)) \
19817                         $DIR/$tdir/dir${idx} ||
19818                         error "Fail to create $DIR/$tdir/dir${idx}"
19819         done
19820
19821         sync; sleep 3
19822         wait_delete_completed # ensure old test cleanups are finished
19823         echo "before create:"
19824         $LFS df -i $MOUNT
19825         local before_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19826
19827         for i in {1..10}; do
19828                 $LFS mkdir -c 1 -i 1 $DIR/$tdir/foo$i ||
19829                         error "Fail to create $DIR/$tdir/foo$i"
19830         done
19831
19832         sync; sleep 3
19833         echo "after create:"
19834         $LFS df -i $MOUNT
19835         local after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19836
19837         # allow for an llog to be cleaned up during the test
19838         [ $after_used -ge $((before_used + 10 - 1)) ] ||
19839                 error "before ($before_used) + 10 > after ($after_used)"
19840
19841         for i in {1..10}; do
19842                 rm -rf $DIR/$tdir/foo$i ||
19843                         error "Fail to remove $DIR/$tdir/foo$i"
19844         done
19845
19846         sleep 3 # avoid MDT return cached statfs
19847         wait_delete_completed
19848         echo "after unlink:"
19849         $LFS df -i $MOUNT
19850         after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19851
19852         # allow for an llog to be created during the test
19853         [ $after_used -le $((before_used + 1)) ] ||
19854                 error "after ($after_used) > before ($before_used) + 1"
19855 }
19856 run_test 803 "verify agent object for remote object"
19857
19858 test_804() {
19859         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19860         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.54) ] &&
19861                 skip "MDS needs to be newer than 2.10.54"
19862         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
19863                 skip_env "ldiskfs only test"
19864
19865         mkdir -p $DIR/$tdir
19866         $LFS mkdir -c 1 -i 1 $DIR/$tdir/dir0 ||
19867                 error "Fail to create $DIR/$tdir/dir0"
19868
19869         local fid=$($LFS path2fid $DIR/$tdir/dir0)
19870         local dev=$(mdsdevname 2)
19871
19872         do_facet mds2 "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19873                 grep ${fid} || error "NOT found agent entry for dir0"
19874
19875         $LFS mkdir -c $MDSCOUNT -i 0 $DIR/$tdir/dir1 ||
19876                 error "Fail to create $DIR/$tdir/dir1"
19877
19878         touch $DIR/$tdir/dir1/foo0 ||
19879                 error "Fail to create $DIR/$tdir/dir1/foo0"
19880         fid=$($LFS path2fid $DIR/$tdir/dir1/foo0)
19881         local rc=0
19882
19883         for idx in $(seq $MDSCOUNT); do
19884                 dev=$(mdsdevname $idx)
19885                 do_facet mds${idx} \
19886                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19887                         grep ${fid} && rc=$idx
19888         done
19889
19890         mv $DIR/$tdir/dir1/foo0 $DIR/$tdir/dir1/foo1 ||
19891                 error "Fail to rename foo0 to foo1"
19892         if [ $rc -eq 0 ]; then
19893                 for idx in $(seq $MDSCOUNT); do
19894                         dev=$(mdsdevname $idx)
19895                         do_facet mds${idx} \
19896                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19897                         grep ${fid} && rc=$idx
19898                 done
19899         fi
19900
19901         mv $DIR/$tdir/dir1/foo1 $DIR/$tdir/dir1/foo2 ||
19902                 error "Fail to rename foo1 to foo2"
19903         if [ $rc -eq 0 ]; then
19904                 for idx in $(seq $MDSCOUNT); do
19905                         dev=$(mdsdevname $idx)
19906                         do_facet mds${idx} \
19907                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19908                         grep ${fid} && rc=$idx
19909                 done
19910         fi
19911
19912         [ $rc -ne 0 ] || error "NOT found agent entry for foo"
19913
19914         ln $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir0/guard ||
19915                 error "Fail to link to $DIR/$tdir/dir1/foo2"
19916         mv $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir1/foo0 ||
19917                 error "Fail to rename foo2 to foo0"
19918         unlink $DIR/$tdir/dir1/foo0 ||
19919                 error "Fail to unlink $DIR/$tdir/dir1/foo0"
19920         rm -rf $DIR/$tdir/dir0 ||
19921                 error "Fail to rm $DIR/$tdir/dir0"
19922
19923         for idx in $(seq $MDSCOUNT); do
19924                 dev=$(mdsdevname $idx)
19925                 rc=0
19926
19927                 stop mds${idx}
19928                 run_e2fsck $(facet_active_host mds$idx) $dev -n ||
19929                         rc=$?
19930                 start mds${idx} $dev $MDS_MOUNT_OPTS ||
19931                         error "mount mds$idx failed"
19932                 df $MOUNT > /dev/null 2>&1
19933
19934                 # e2fsck should not return error
19935                 [ $rc -eq 0 ] ||
19936                         error "e2fsck detected error on MDT${idx}: rc=$rc"
19937         done
19938 }
19939 run_test 804 "verify agent entry for remote entry"
19940
19941 cleanup_805() {
19942         do_facet $SINGLEMDS zfs set quota=$old $fsset
19943         unlinkmany $DIR/$tdir/f- 1000000
19944         trap 0
19945 }
19946
19947 test_805() {
19948         local zfs_version=$(do_node $SINGLEMDS cat /sys/module/zfs/version)
19949         [ "$(facet_fstype mds1)" != "zfs" ] &&
19950                 skip "ZFS specific test"
19951         [ $(version_code $zfs_version) -lt $(version_code 0.7.2) ] &&
19952                 skip "netfree not implemented before 0.7"
19953         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.57) ]] ||
19954                 skip "Need MDS version at least 2.10.57"
19955
19956         local fsset
19957         local freekb
19958         local usedkb
19959         local old
19960         local quota
19961         local pref="osd-zfs.lustre-MDT0000."
19962
19963         # limit available space on MDS dataset to meet nospace issue
19964         # quickly. then ZFS 0.7.2 can use reserved space if asked
19965         # properly (using netfree flag in osd_declare_destroy()
19966         fsset=$(do_facet $SINGLEMDS lctl get_param -n $pref.mntdev)
19967         old=$(do_facet $SINGLEMDS zfs get -H quota $fsset | \
19968                 gawk '{print $3}')
19969         freekb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytesfree)
19970         usedkb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytestotal)
19971         let "usedkb=usedkb-freekb"
19972         let "freekb=freekb/2"
19973         if let "freekb > 5000"; then
19974                 let "freekb=5000"
19975         fi
19976         do_facet $SINGLEMDS zfs set quota=$(((usedkb+freekb)*1024)) $fsset
19977         trap cleanup_805 EXIT
19978         mkdir $DIR/$tdir
19979         $LFS setstripe -E 1M -L mdt $DIR/$tdir || error "DoM not working"
19980         createmany -m $DIR/$tdir/f- 1000000 && error "ENOSPC wasn't met"
19981         rm -rf $DIR/$tdir || error "not able to remove"
19982         do_facet $SINGLEMDS zfs set quota=$old $fsset
19983         trap 0
19984 }
19985 run_test 805 "ZFS can remove from full fs"
19986
19987 # Size-on-MDS test
19988 check_lsom_data()
19989 {
19990         local file=$1
19991         local size=$($LFS getsom -s $file)
19992         local expect=$(stat -c %s $file)
19993
19994         [[ $size == $expect ]] ||
19995                 error "$file expected size: $expect, got: $size"
19996
19997         local blocks=$($LFS getsom -b $file)
19998         expect=$(stat -c %b $file)
19999         [[ $blocks == $expect ]] ||
20000                 error "$file expected blocks: $expect, got: $blocks"
20001 }
20002
20003 check_lsom_size()
20004 {
20005         local size=$($LFS getsom -s $1)
20006         local expect=$2
20007
20008         [[ $size == $expect ]] ||
20009                 error "$file expected size: $expect, got: $size"
20010 }
20011
20012 test_806() {
20013         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
20014                 skip "Need MDS version at least 2.11.52" && return
20015
20016         local bs=1048576
20017
20018         touch $DIR/$tfile || error "touch $tfile failed"
20019
20020         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
20021         save_lustre_params client "llite.*.xattr_cache" > $save
20022         lctl set_param llite.*.xattr_cache=0
20023         stack_trap "restore_lustre_params < $save" EXIT
20024
20025         # single-threaded write
20026         echo "Test SOM for single-threaded write"
20027         dd if=/dev/zero of=$DIR/$tfile bs=$bs count=1 ||
20028                 error "write $tfile failed"
20029         check_lsom_size $DIR/$tfile $bs
20030
20031         local num=32
20032         local size=$(($num * $bs))
20033         local offset=0
20034         local i
20035
20036         echo "Test SOM for single client multi-threaded($num) write"
20037         $TRUNCATE $DIR/$tfile 0
20038         for ((i = 0; i < $num; i++)); do
20039                 $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
20040                 local pids[$i]=$!
20041                 offset=$((offset + $bs))
20042         done
20043         for (( i=0; i < $num; i++ )); do
20044                 wait ${pids[$i]}
20045         done
20046         check_lsom_size $DIR/$tfile $size
20047
20048         $TRUNCATE $DIR/$tfile 0
20049         for ((i = 0; i < $num; i++)); do
20050                 offset=$((offset - $bs))
20051                 $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
20052                 local pids[$i]=$!
20053         done
20054         for (( i=0; i < $num; i++ )); do
20055                 wait ${pids[$i]}
20056         done
20057         check_lsom_size $DIR/$tfile $size
20058
20059         # multi-client wirtes
20060         num=$(get_node_count ${CLIENTS//,/ })
20061         size=$(($num * $bs))
20062         offset=0
20063         i=0
20064
20065         echo "Test SOM for multi-client ($num) writes"
20066         $TRUNCATE $DIR/$tfile 0
20067         for client in ${CLIENTS//,/ }; do
20068                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
20069                 local pids[$i]=$!
20070                 i=$((i + 1))
20071                 offset=$((offset + $bs))
20072         done
20073         for (( i=0; i < $num; i++ )); do
20074                 wait ${pids[$i]}
20075         done
20076         check_lsom_size $DIR/$tfile $offset
20077
20078         i=0
20079         $TRUNCATE $DIR/$tfile 0
20080         for client in ${CLIENTS//,/ }; do
20081                 offset=$((offset - $bs))
20082                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
20083                 local pids[$i]=$!
20084                 i=$((i + 1))
20085         done
20086         for (( i=0; i < $num; i++ )); do
20087                 wait ${pids[$i]}
20088         done
20089         check_lsom_size $DIR/$tfile $size
20090
20091         # verify truncate
20092         echo "Test SOM for truncate"
20093         $TRUNCATE $DIR/$tfile 1048576
20094         check_lsom_size $DIR/$tfile 1048576
20095         $TRUNCATE $DIR/$tfile 1234
20096         check_lsom_size $DIR/$tfile 1234
20097
20098         # verify SOM blocks count
20099         echo "Verify SOM block count"
20100         $TRUNCATE $DIR/$tfile 0
20101         $MULTIOP $DIR/$tfile oO_TRUNC:O_RDWR:w1048576YSc ||
20102                 error "failed to write file $tfile"
20103         check_lsom_data $DIR/$tfile
20104 }
20105 run_test 806 "Verify Lazy Size on MDS"
20106
20107 test_807() {
20108         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
20109                 skip "Need MDS version at least 2.11.52" && return
20110
20111         # Registration step
20112         changelog_register || error "changelog_register failed"
20113         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
20114         changelog_users $SINGLEMDS | grep -q $cl_user ||
20115                 error "User $cl_user not found in changelog_users"
20116
20117         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
20118         save_lustre_params client "llite.*.xattr_cache" > $save
20119         lctl set_param llite.*.xattr_cache=0
20120         stack_trap "restore_lustre_params < $save" EXIT
20121
20122         rm -rf $DIR/$tdir || error "rm $tdir failed"
20123         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
20124         touch $DIR/$tdir/trunc || error "touch $tdir/trunc failed"
20125         $TRUNCATE $DIR/$tdir/trunc 1024 || error "truncate $tdir/trunc failed"
20126         $TRUNCATE $DIR/$tdir/trunc 1048576 ||
20127                 error "truncate $tdir/trunc failed"
20128
20129         local bs=1048576
20130         dd if=/dev/zero of=$DIR/$tdir/single_dd bs=$bs count=1 ||
20131                 error "write $tfile failed"
20132
20133         # multi-client wirtes
20134         local num=$(get_node_count ${CLIENTS//,/ })
20135         local offset=0
20136         local i=0
20137
20138         echo "Test SOM for multi-client ($num) writes"
20139         touch $DIR/$tfile || error "touch $tfile failed"
20140         $TRUNCATE $DIR/$tfile 0
20141         for client in ${CLIENTS//,/ }; do
20142                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
20143                 local pids[$i]=$!
20144                 i=$((i + 1))
20145                 offset=$((offset + $bs))
20146         done
20147         for (( i=0; i < $num; i++ )); do
20148                 wait ${pids[$i]}
20149         done
20150
20151         sleep 5
20152         $LSOM_SYNC -u $cl_user -m $FSNAME-MDT0000 $MOUNT
20153         check_lsom_data $DIR/$tdir/trunc
20154         check_lsom_data $DIR/$tdir/single_dd
20155         check_lsom_data $DIR/$tfile
20156
20157         rm -rf $DIR/$tdir
20158         # Deregistration step
20159         changelog_deregister || error "changelog_deregister failed"
20160 }
20161 run_test 807 "verify LSOM syncing tool"
20162
20163 check_som_nologged()
20164 {
20165         local lines=$($LFS changelog $FSNAME-MDT0000 |
20166                 grep 'x=trusted.som' | wc -l)
20167         [ $lines -ne 0 ] && error "trusted.som xattr is logged in Changelogs"
20168 }
20169
20170 test_808() {
20171         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.55) ] &&
20172                 skip "Need MDS version at least 2.11.55" && return
20173
20174         # Registration step
20175         changelog_register || error "changelog_register failed"
20176
20177         touch $DIR/$tfile || error "touch $tfile failed"
20178         check_som_nologged
20179
20180         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=1 ||
20181                 error "write $tfile failed"
20182         check_som_nologged
20183
20184         $TRUNCATE $DIR/$tfile 1234
20185         check_som_nologged
20186
20187         $TRUNCATE $DIR/$tfile 1048576
20188         check_som_nologged
20189
20190         # Deregistration step
20191         changelog_deregister || error "changelog_deregister failed"
20192 }
20193 run_test 808 "Check trusted.som xattr not logged in Changelogs"
20194
20195 check_som_nodata()
20196 {
20197         $LFS getsom $1
20198         [[ $? -eq 61 ]] || error "DoM-only file $1 has SOM xattr"
20199 }
20200
20201 test_809() {
20202         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.56) ] &&
20203                 skip "Need MDS version at least 2.11.56" && return
20204
20205         $LFS setstripe -E 1M -L mdt $DIR/$tfile ||
20206                 error "failed to create DoM-only file $DIR/$tfile"
20207         touch $DIR/$tfile || error "touch $tfile failed"
20208         check_som_nodata $DIR/$tfile
20209
20210         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 ||
20211                 error "write $tfile failed"
20212         check_som_nodata $DIR/$tfile
20213
20214         $TRUNCATE $DIR/$tfile 1234
20215         check_som_nodata $DIR/$tfile
20216
20217         $TRUNCATE $DIR/$tfile 4097
20218         check_som_nodata $DIR/$file
20219 }
20220 run_test 809 "Verify no SOM xattr store for DoM-only files"
20221
20222 test_810() {
20223         local ORIG
20224         local CSUM
20225
20226         # t10 seem to dislike partial pages
20227         lctl set_param osc.*.checksum_type=adler
20228         lctl set_param fail_loc=0x411
20229         dd if=/dev/urandom of=$DIR/$tfile bs=10240 count=2
20230         ORIG=$(md5sum $DIR/$tfile)
20231         lctl set_param ldlm.namespaces.*osc*.lru_size=clear
20232         CSUM=$(md5sum $DIR/$tfile)
20233         set_checksum_type adler
20234         if [ "$ORIG" != "$CSUM" ]; then
20235                 error "$ORIG != $CSUM"
20236         fi
20237 }
20238 run_test 810 "partial page writes on ZFS (LU-11663)"
20239
20240 #
20241 # tests that do cleanup/setup should be run at the end
20242 #
20243
20244 test_900() {
20245         [ $PARALLEL == "yes" ] && skip "skip parallel run"
20246         local ls
20247
20248         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
20249         $LCTL set_param fail_loc=0x903
20250
20251         cancel_lru_locks MGC
20252
20253         FAIL_ON_ERROR=true cleanup
20254         FAIL_ON_ERROR=true setup
20255 }
20256 run_test 900 "umount should not race with any mgc requeue thread"
20257
20258 complete $SECONDS
20259 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
20260 check_and_cleanup_lustre
20261 if [ "$I_MOUNTED" != "yes" ]; then
20262         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
20263 fi
20264 exit_status