Whamcloud - gitweb
da48ab8efc24de5d49586a3af66d795541bd2cb6
[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-11594 LU-11667 LU-11729
27         ALWAYS_EXCEPT+=" 45       103a      317      810"
28 fi
29
30 # Check Grants after these tests
31 GRANT_CHECK_LIST="$GRANT_CHECK_LIST 42a 42b 42c 42d 42e 63a 63b 64a 64b 64c"
32 SRCDIR=$(cd $(dirname $0); echo $PWD)
33 export PATH=$PATH:/sbin
34
35 TMP=${TMP:-/tmp}
36 OSC=${OSC:-"osc"}
37
38 CC=${CC:-cc}
39 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
40 CREATETEST=${CREATETEST:-createtest}
41 LFS=${LFS:-lfs}
42 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
43 LCTL=${LCTL:-lctl}
44 OPENFILE=${OPENFILE:-openfile}
45 OPENUNLINK=${OPENUNLINK:-openunlink}
46 export MULTIOP=${MULTIOP:-multiop}
47 READS=${READS:-"reads"}
48 MUNLINK=${MUNLINK:-munlink}
49 SOCKETSERVER=${SOCKETSERVER:-socketserver}
50 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
51 MEMHOG=${MEMHOG:-memhog}
52 DIRECTIO=${DIRECTIO:-directio}
53 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
54 DEF_STRIPE_COUNT=-1
55 CHECK_GRANT=${CHECK_GRANT:-"yes"}
56 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
57 export PARALLEL=${PARALLEL:-"no"}
58
59 export NAME=${NAME:-local}
60
61 SAVE_PWD=$PWD
62
63 CLEANUP=${CLEANUP:-:}
64 SETUP=${SETUP:-:}
65 TRACE=${TRACE:-""}
66 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
67 LUSTRE_TESTS_API_DIR=${LUSTRE_TESTS_API_DIR:-${LUSTRE}/tests/clientapi}
68 . $LUSTRE/tests/test-framework.sh
69 init_test_env $@
70 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
71 get_lustre_env
72 init_logging
73
74 if [[ $MDSCOUNT -gt 1 ]]; then
75         # bug number:    LU-11161
76         ALWAYS_EXCEPT+=" 160g"
77 fi
78
79 #                                  5          12          (min)"
80 [ "$SLOW" = "no" ] && EXCEPT_SLOW="27m 64b 68 71 115 300o"
81
82 if [ "$mds1_FSTYPE" = "zfs" ]; then
83         # bug number for skipped test: LU-1957
84         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  180"
85         #                                               13    (min)"
86         [ "$SLOW" = "no" ] && EXCEPT_SLOW="$EXCEPT_SLOW 51b"
87 fi
88
89 # Get the SLES distro version
90 #
91 # Returns a version string that should only be used in comparing
92 # strings returned by version_code()
93 sles_version_code()
94 {
95         local version=$(grep VERSION_ID /etc/os-release | cut -d'"' -f2)
96
97         # All SuSE Linux versions have one decimal. version_code expects two
98         local sles_version=$version.0
99         version_code $sles_version
100 }
101
102 # Check if we are running on Ubuntu or SLES so we can make decisions on
103 # what tests to run
104 if [ -r /etc/SuSE-release ]; then
105         sles_version=$(sles_version_code)
106         [ $sles_version -lt $(version_code 11.4.0) ] &&
107                 # bug number for skipped test: LU-4341
108                 ALWAYS_EXCEPT="$ALWAYS_EXCEPT  170"
109         [ $sles_version -lt $(version_code 12.0.0) ] &&
110                 # bug number for skipped test: LU-3703
111                 ALWAYS_EXCEPT="$ALWAYS_EXCEPT  234"
112 elif [ -r /etc/os-release ]; then
113         if grep -qi ubuntu /etc/os-release; then
114                 ubuntu_version=$(version_code $(sed -n -e 's/"//g' \
115                                                 -e 's/^VERSION=//p' \
116                                                 /etc/os-release |
117                                                 awk '{ print $1 }'))
118
119                 if [[ $ubuntu_version -gt $(version_code 16.0.0) ]]; then
120                         # bug number for skipped test:
121                         #                LU-10334 LU-10366
122                         ALWAYS_EXCEPT+=" 103a     410"
123                 fi
124         fi
125 fi
126
127 FAIL_ON_ERROR=false
128
129 cleanup() {
130         echo -n "cln.."
131         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
132         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
133 }
134 setup() {
135         echo -n "mnt.."
136         load_modules
137         setupall || exit 10
138         echo "done"
139 }
140
141 check_swap_layouts_support()
142 {
143         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
144                 skip "Does not support layout lock."
145 }
146
147 check_and_setup_lustre
148 DIR=${DIR:-$MOUNT}
149 assert_DIR
150
151 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
152
153 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
154 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
155 rm -rf $DIR/[Rdfs][0-9]*
156
157 # $RUNAS_ID may get set incorrectly somewhere else
158 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] &&
159         error "\$RUNAS_ID set to 0, but \$UID is also 0!"
160
161 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
162
163 build_test_filter
164
165 if [ "${ONLY}" = "MOUNT" ] ; then
166         echo "Lustre is up, please go on"
167         exit
168 fi
169
170 echo "preparing for tests involving mounts"
171 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
172 touch $EXT2_DEV
173 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
174 echo # add a newline after mke2fs.
175
176 umask 077
177
178 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
179 lctl set_param debug=-1 2> /dev/null || true
180 test_0a() {
181         touch $DIR/$tfile
182         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
183         rm $DIR/$tfile
184         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
185 }
186 run_test 0a "touch; rm ====================="
187
188 test_0b() {
189         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
190         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
191 }
192 run_test 0b "chmod 0755 $DIR ============================="
193
194 test_0c() {
195         $LCTL get_param mdc.*.import | grep "state: FULL" ||
196                 error "import not FULL"
197         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
198                 error "bad target"
199 }
200 run_test 0c "check import proc"
201
202 test_0d() { # LU-3397
203         [ $MGS_VERSION -lt $(version_code 2.10.57) ] &&
204                 skip "proc exports not supported before 2.10.57"
205
206         local mgs_exp="mgs.MGS.exports"
207         local client_uuid=$($LCTL get_param -n mgc.*.uuid)
208         local exp_client_nid
209         local exp_client_version
210         local exp_val
211         local imp_val
212         local temp_imp=$DIR/$tfile.import
213         local temp_exp=$DIR/$tfile.export
214
215         # save mgc import file to $temp_imp
216         $LCTL get_param mgc.*.import | tee $temp_imp
217         # Check if client uuid is found in MGS export
218         for exp_client_nid in $(do_facet mgs $LCTL get_param -N $mgs_exp.*); do
219                 [ $(do_facet mgs $LCTL get_param -n $exp_client_nid.uuid) == \
220                         $client_uuid ] &&
221                         break;
222         done
223         # save mgs export file to $temp_exp
224         do_facet mgs $LCTL get_param $exp_client_nid.export | tee $temp_exp
225
226         # Compare the value of field "connect_flags"
227         imp_val=$(grep "connect_flags" $temp_imp)
228         exp_val=$(grep "connect_flags" $temp_exp)
229         [ "$exp_val" == "$imp_val" ] ||
230                 error "export flags '$exp_val' != import flags '$imp_val'"
231
232         # Compare the value of client version
233         exp_client_version=$(awk '/target_version:/ { print $2 }' $temp_exp)
234         exp_val=$(version_code $exp_client_version)
235         imp_val=$CLIENT_VERSION
236         [ "$exp_val" == "$imp_val" ] ||
237                 error "export client version '$exp_val' != '$imp_val'"
238 }
239 run_test 0d "check export proc ============================="
240
241 test_1() {
242         test_mkdir $DIR/$tdir
243         test_mkdir $DIR/$tdir/d2
244         mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
245         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
246         rmdir $DIR/$tdir/d2
247         rmdir $DIR/$tdir
248         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
249 }
250 run_test 1 "mkdir; remkdir; rmdir"
251
252 test_2() {
253         test_mkdir $DIR/$tdir
254         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
255         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
256         rm -r $DIR/$tdir
257         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
258 }
259 run_test 2 "mkdir; touch; rmdir; check file"
260
261 test_3() {
262         test_mkdir $DIR/$tdir
263         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
264         touch $DIR/$tdir/$tfile
265         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
266         rm -r $DIR/$tdir
267         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
268 }
269 run_test 3 "mkdir; touch; rmdir; check dir"
270
271 # LU-4471 - failed rmdir on remote directories still removes directory on MDT0
272 test_4() {
273         test_mkdir -i 1 $DIR/$tdir
274
275         touch $DIR/$tdir/$tfile ||
276                 error "Create file under remote directory failed"
277
278         rmdir $DIR/$tdir &&
279                 error "Expect error removing in-use dir $DIR/$tdir"
280
281         test -d $DIR/$tdir || error "Remote directory disappeared"
282
283         rm -rf $DIR/$tdir || error "remove remote dir error"
284 }
285 run_test 4 "mkdir; touch dir/file; rmdir; checkdir (expect error)"
286
287 test_5() {
288         test_mkdir $DIR/$tdir
289         test_mkdir $DIR/$tdir/d2
290         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
291         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
292         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
293 }
294 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2"
295
296 test_6a() {
297         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
298         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
299         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
300                 error "$tfile does not have perm 0666 or UID $UID"
301         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
302         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
303                 error "$tfile should be 0666 and owned by UID $UID"
304 }
305 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
306
307 test_6c() {
308         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
309
310         touch $DIR/$tfile
311         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
312         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
313                 error "$tfile should be owned by UID $RUNAS_ID"
314         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
315         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
316                 error "$tfile should be owned by UID $RUNAS_ID"
317 }
318 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
319
320 test_6e() {
321         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
322
323         touch $DIR/$tfile
324         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
325         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
326                 error "$tfile should be owned by GID $UID"
327         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
328         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
329                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
330 }
331 run_test 6e "touch+chgrp $tfile; $RUNAS chgrp $tfile (should return error)"
332
333 test_6g() {
334         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
335
336         test_mkdir $DIR/$tdir
337         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
338         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
339         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
340         test_mkdir $DIR/$tdir/d/subdir
341         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
342                 error "$tdir/d/subdir should be GID $RUNAS_GID"
343         if [[ $MDSCOUNT -gt 1 ]]; then
344                 # check remote dir sgid inherite
345                 $LFS mkdir -i 0 $DIR/$tdir.local ||
346                         error "mkdir $tdir.local failed"
347                 chmod g+s $DIR/$tdir.local ||
348                         error "chmod $tdir.local failed"
349                 chgrp $RUNAS_GID $DIR/$tdir.local ||
350                         error "chgrp $tdir.local failed"
351                 $LFS mkdir -i 1 $DIR/$tdir.local/$tdir.remote ||
352                         error "mkdir $tdir.remote failed"
353                 $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir.local/$tdir.remote ||
354                         error "$tdir.remote should be owned by $UID.$RUNAS_ID"
355                 $CHECKSTAT -p 02755 $DIR/$tdir.local/$tdir.remote ||
356                         error "$tdir.remote should be mode 02755"
357         fi
358 }
359 run_test 6g "verify new dir in sgid dir inherits group"
360
361 test_6h() { # bug 7331
362         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
363
364         touch $DIR/$tfile || error "touch failed"
365         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
366         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
367                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
368         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
369                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
370 }
371 run_test 6h "$RUNAS chown RUNAS_ID.0 .../$tfile (should return error)"
372
373 test_7a() {
374         test_mkdir $DIR/$tdir
375         $MCREATE $DIR/$tdir/$tfile
376         chmod 0666 $DIR/$tdir/$tfile
377         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
378                 error "$tdir/$tfile should be mode 0666"
379 }
380 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
381
382 test_7b() {
383         if [ ! -d $DIR/$tdir ]; then
384                 test_mkdir $DIR/$tdir
385         fi
386         $MCREATE $DIR/$tdir/$tfile
387         echo -n foo > $DIR/$tdir/$tfile
388         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
389         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
390 }
391 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
392
393 test_8() {
394         test_mkdir $DIR/$tdir
395         touch $DIR/$tdir/$tfile
396         chmod 0666 $DIR/$tdir/$tfile
397         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
398                 error "$tfile mode not 0666"
399 }
400 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
401
402 test_9() {
403         test_mkdir $DIR/$tdir
404         test_mkdir $DIR/$tdir/d2
405         test_mkdir $DIR/$tdir/d2/d3
406         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
407 }
408 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
409
410 test_10() {
411         test_mkdir $DIR/$tdir
412         test_mkdir $DIR/$tdir/d2
413         touch $DIR/$tdir/d2/$tfile
414         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
415                 error "$tdir/d2/$tfile not a file"
416 }
417 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
418
419 test_11() {
420         test_mkdir $DIR/$tdir
421         test_mkdir $DIR/$tdir/d2
422         chmod 0666 $DIR/$tdir/d2
423         chmod 0705 $DIR/$tdir/d2
424         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
425                 error "$tdir/d2 mode not 0705"
426 }
427 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
428
429 test_12() {
430         test_mkdir $DIR/$tdir
431         touch $DIR/$tdir/$tfile
432         chmod 0666 $DIR/$tdir/$tfile
433         chmod 0654 $DIR/$tdir/$tfile
434         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
435                 error "$tdir/d2 mode not 0654"
436 }
437 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
438
439 test_13() {
440         test_mkdir $DIR/$tdir
441         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
442         >  $DIR/$tdir/$tfile
443         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
444                 error "$tdir/$tfile size not 0 after truncate"
445 }
446 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
447
448 test_14() {
449         test_mkdir $DIR/$tdir
450         touch $DIR/$tdir/$tfile
451         rm $DIR/$tdir/$tfile
452         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
453 }
454 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
455
456 test_15() {
457         test_mkdir $DIR/$tdir
458         touch $DIR/$tdir/$tfile
459         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
460         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
461                 error "$tdir/${tfile_2} not a file after rename"
462         rm $DIR/$tdir/${tfile}_2 || error "unlink failed after rename"
463 }
464 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
465
466 test_16() {
467         test_mkdir $DIR/$tdir
468         touch $DIR/$tdir/$tfile
469         rm -rf $DIR/$tdir/$tfile
470         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
471 }
472 run_test 16 "touch .../d16/f; rm -rf .../d16/f"
473
474 test_17a() {
475         test_mkdir $DIR/$tdir
476         touch $DIR/$tdir/$tfile
477         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
478         ls -l $DIR/$tdir
479         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
480                 error "$tdir/l-exist not a symlink"
481         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
482                 error "$tdir/l-exist not referencing a file"
483         rm -f $DIR/$tdir/l-exist
484         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
485 }
486 run_test 17a "symlinks: create, remove (real)"
487
488 test_17b() {
489         test_mkdir $DIR/$tdir
490         ln -s no-such-file $DIR/$tdir/l-dangle
491         ls -l $DIR/$tdir
492         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
493                 error "$tdir/l-dangle not referencing no-such-file"
494         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
495                 error "$tdir/l-dangle not referencing non-existent file"
496         rm -f $DIR/$tdir/l-dangle
497         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
498 }
499 run_test 17b "symlinks: create, remove (dangling)"
500
501 test_17c() { # bug 3440 - don't save failed open RPC for replay
502         test_mkdir $DIR/$tdir
503         ln -s foo $DIR/$tdir/$tfile
504         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
505 }
506 run_test 17c "symlinks: open dangling (should return error)"
507
508 test_17d() {
509         test_mkdir $DIR/$tdir
510         ln -s foo $DIR/$tdir/$tfile
511         touch $DIR/$tdir/$tfile || error "creating to new symlink"
512 }
513 run_test 17d "symlinks: create dangling"
514
515 test_17e() {
516         test_mkdir $DIR/$tdir
517         local foo=$DIR/$tdir/$tfile
518         ln -s $foo $foo || error "create symlink failed"
519         ls -l $foo || error "ls -l failed"
520         ls $foo && error "ls not failed" || true
521 }
522 run_test 17e "symlinks: create recursive symlink (should return error)"
523
524 test_17f() {
525         test_mkdir $DIR/$tdir
526         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/$tdir/111
527         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/$tdir/222
528         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/$tdir/333
529         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/$tdir/444
530         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/$tdir/555
531         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
532         ls -l  $DIR/$tdir
533 }
534 run_test 17f "symlinks: long and very long symlink name"
535
536 # str_repeat(S, N) generate a string that is string S repeated N times
537 str_repeat() {
538         local s=$1
539         local n=$2
540         local ret=''
541         while [ $((n -= 1)) -ge 0 ]; do
542                 ret=$ret$s
543         done
544         echo $ret
545 }
546
547 # Long symlinks and LU-2241
548 test_17g() {
549         test_mkdir $DIR/$tdir
550         local TESTS="59 60 61 4094 4095"
551
552         # Fix for inode size boundary in 2.1.4
553         [ $MDS1_VERSION -lt $(version_code 2.1.4) ] &&
554                 TESTS="4094 4095"
555
556         # Patch not applied to 2.2 or 2.3 branches
557         [ $MDS1_VERSION -ge $(version_code 2.2.0) ] &&
558         [ $MDS1_VERSION -le $(version_code 2.3.55) ] &&
559                 TESTS="4094 4095"
560
561         # skip long symlink name for rhel6.5.
562         # rhel6.5 has a limit (PATH_MAX - sizeof(struct filename))
563         grep -q '6.5' /etc/redhat-release &>/dev/null &&
564                 TESTS="59 60 61 4062 4063"
565
566         for i in $TESTS; do
567                 local SYMNAME=$(str_repeat 'x' $i)
568                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
569                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
570         done
571 }
572 run_test 17g "symlinks: really long symlink name and inode boundaries"
573
574 test_17h() { #bug 17378
575         [ $PARALLEL == "yes" ] && skip "skip parallel run"
576         remote_mds_nodsh && skip "remote MDS with nodsh"
577
578         local mdt_idx
579
580         test_mkdir $DIR/$tdir
581         mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
582         $LFS setstripe -c -1 $DIR/$tdir
583         #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
584         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
585         touch $DIR/$tdir/$tfile || true
586 }
587 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
588
589 test_17i() { #bug 20018
590         [ $PARALLEL == "yes" ] && skip "skip parallel run"
591         remote_mds_nodsh && skip "remote MDS with nodsh"
592
593         local foo=$DIR/$tdir/$tfile
594         local mdt_idx
595
596         test_mkdir -c1 $DIR/$tdir
597         mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
598         ln -s $foo $foo || error "create symlink failed"
599 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
600         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
601         ls -l $foo && error "error not detected"
602         return 0
603 }
604 run_test 17i "don't panic on short symlink (should return error)"
605
606 test_17k() { #bug 22301
607         [ $PARALLEL == "yes" ] && skip "skip parallel run"
608         [[ -z "$(which rsync 2>/dev/null)" ]] &&
609                 skip "no rsync command"
610         rsync --help | grep -q xattr ||
611                 skip_env "$(rsync --version | head -n1) does not support xattrs"
612         test_mkdir $DIR/$tdir
613         test_mkdir $DIR/$tdir.new
614         touch $DIR/$tdir/$tfile
615         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
616         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
617                 error "rsync failed with xattrs enabled"
618 }
619 run_test 17k "symlinks: rsync with xattrs enabled"
620
621 test_17l() { # LU-279
622         [[ -z "$(which getfattr 2>/dev/null)" ]] &&
623                 skip "no getfattr command"
624
625         test_mkdir $DIR/$tdir
626         touch $DIR/$tdir/$tfile
627         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
628         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
629                 # -h to not follow symlinks. -m '' to list all the xattrs.
630                 # grep to remove first line: '# file: $path'.
631                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
632                 do
633                         lgetxattr_size_check $path $xattr ||
634                                 error "lgetxattr_size_check $path $xattr failed"
635                 done
636         done
637 }
638 run_test 17l "Ensure lgetxattr's returned xattr size is consistent"
639
640 # LU-1540
641 test_17m() {
642         [ $PARALLEL == "yes" ] && skip "skip parallel run"
643         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
644         remote_mds_nodsh && skip "remote MDS with nodsh"
645         [ $MDS1_VERSION -ge $(version_code 2.2.0) ] &&
646         [ $MDS1_VERSION -le $(version_code 2.2.93) ] &&
647                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks"
648
649         local short_sym="0123456789"
650         local wdir=$DIR/$tdir
651         local i
652
653         test_mkdir $wdir
654         long_sym=$short_sym
655         # create a long symlink file
656         for ((i = 0; i < 4; ++i)); do
657                 long_sym=${long_sym}${long_sym}
658         done
659
660         echo "create 512 short and long symlink files under $wdir"
661         for ((i = 0; i < 256; ++i)); do
662                 ln -sf ${long_sym}"a5a5" $wdir/long-$i
663                 ln -sf ${short_sym}"a5a5" $wdir/short-$i
664         done
665
666         echo "erase them"
667         rm -f $wdir/*
668         sync
669         wait_delete_completed
670
671         echo "recreate the 512 symlink files with a shorter string"
672         for ((i = 0; i < 512; ++i)); do
673                 # rewrite the symlink file with a shorter string
674                 ln -sf ${long_sym} $wdir/long-$i || error "long_sym failed"
675                 ln -sf ${short_sym} $wdir/short-$i || error "short_sym failed"
676         done
677
678         local mds_index=$(($($LFS getstripe -m $wdir) + 1))
679         local devname=$(mdsdevname $mds_index)
680
681         echo "stop and checking mds${mds_index}:"
682         # e2fsck should not return error
683         stop mds${mds_index}
684         run_e2fsck $(facet_active_host mds${mds_index}) $devname -n
685         rc=$?
686
687         start mds${mds_index} $devname $MDS_MOUNT_OPTS ||
688                 error "start mds${mds_index} failed"
689         df $MOUNT > /dev/null 2>&1
690         [ $rc -eq 0 ] ||
691                 error "e2fsck detected error for short/long symlink: rc=$rc"
692         rm -f $wdir/*
693 }
694 run_test 17m "run e2fsck against MDT which contains short/long symlink"
695
696 check_fs_consistency_17n() {
697         local mdt_index
698         local rc=0
699
700         # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
701         # so it only check MDT1/MDT2 instead of all of MDTs.
702         for mdt_index in 1 2; do
703                 local devname=$(mdsdevname $mdt_index)
704                 # e2fsck should not return error
705                 stop mds${mdt_index}
706                 run_e2fsck $(facet_active_host mds$mdt_index) $devname -n ||
707                         rc=$((rc + $?))
708
709                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS ||
710                         error "mount mds$mdt_index failed"
711                 df $MOUNT > /dev/null 2>&1
712         done
713         return $rc
714 }
715
716 test_17n() {
717         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
718         [ $PARALLEL == "yes" ] && skip "skip parallel run"
719         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
720         remote_mds_nodsh && skip "remote MDS with nodsh"
721         [ $MDS1_VERSION -ge $(version_code 2.2.0) ] &&
722         [ $MDS1_VERSION -le $(version_code 2.2.93) ] &&
723                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks"
724
725         local i
726
727         test_mkdir $DIR/$tdir
728         for ((i=0; i<10; i++)); do
729                 $LFS mkdir -i1 -c2 $DIR/$tdir/remote_dir_${i} ||
730                         error "create remote dir error $i"
731                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
732                         error "create files under remote dir failed $i"
733         done
734
735         check_fs_consistency_17n ||
736                 error "e2fsck report error after create files under remote dir"
737
738         for ((i = 0; i < 10; i++)); do
739                 rm -rf $DIR/$tdir/remote_dir_${i} ||
740                         error "destroy remote dir error $i"
741         done
742
743         check_fs_consistency_17n ||
744                 error "e2fsck report error after unlink files under remote dir"
745
746         [ $MDS1_VERSION -lt $(version_code 2.4.50) ] &&
747                 skip "lustre < 2.4.50 does not support migrate mv"
748
749         for ((i = 0; i < 10; i++)); do
750                 mkdir -p $DIR/$tdir/remote_dir_${i}
751                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
752                         error "create files under remote dir failed $i"
753                 $LFS migrate --mdt-index 1 $DIR/$tdir/remote_dir_${i} ||
754                         error "migrate remote dir error $i"
755         done
756         check_fs_consistency_17n || error "e2fsck report error after migration"
757
758         for ((i = 0; i < 10; i++)); do
759                 rm -rf $DIR/$tdir/remote_dir_${i} ||
760                         error "destroy remote dir error $i"
761         done
762
763         check_fs_consistency_17n || error "e2fsck report error after unlink"
764 }
765 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
766
767 test_17o() {
768         remote_mds_nodsh && skip "remote MDS with nodsh"
769         [ $MDS1_VERSION -lt $(version_code 2.3.64) ] &&
770                 skip "Need MDS version at least 2.3.64"
771
772         local wdir=$DIR/${tdir}o
773         local mdt_index
774         local rc=0
775
776         test_mkdir $wdir
777         touch $wdir/$tfile
778         mdt_index=$($LFS getstripe -m $wdir/$tfile)
779         mdt_index=$((mdt_index + 1))
780
781         cancel_lru_locks mdc
782         #fail mds will wait the failover finish then set
783         #following fail_loc to avoid interfer the recovery process.
784         fail mds${mdt_index}
785
786         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
787         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
788         ls -l $wdir/$tfile && rc=1
789         do_facet mds${mdt_index} lctl set_param fail_loc=0
790         [[ $rc -eq 0 ]] || error "stat file should fail"
791 }
792 run_test 17o "stat file with incompat LMA feature"
793
794 test_18() {
795         touch $DIR/$tfile || error "Failed to touch $DIR/$tfile: $?"
796         ls $DIR || error "Failed to ls $DIR: $?"
797 }
798 run_test 18 "touch .../f ; ls ... =============================="
799
800 test_19a() {
801         touch $DIR/$tfile
802         ls -l $DIR
803         rm $DIR/$tfile
804         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
805 }
806 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
807
808 test_19b() {
809         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
810 }
811 run_test 19b "ls -l .../f19 (should return error) =============="
812
813 test_19c() {
814         [ $RUNAS_ID -eq $UID ] &&
815                 skip_env "RUNAS_ID = UID = $UID -- skipping"
816
817         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
818 }
819 run_test 19c "$RUNAS touch .../f19 (should return error) =="
820
821 test_19d() {
822         cat $DIR/f19 && error || true
823 }
824 run_test 19d "cat .../f19 (should return error) =============="
825
826 test_20() {
827         touch $DIR/$tfile
828         rm $DIR/$tfile
829         touch $DIR/$tfile
830         rm $DIR/$tfile
831         touch $DIR/$tfile
832         rm $DIR/$tfile
833         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
834 }
835 run_test 20 "touch .../f ; ls -l ..."
836
837 test_21() {
838         test_mkdir $DIR/$tdir
839         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
840         ln -s dangle $DIR/$tdir/link
841         echo foo >> $DIR/$tdir/link
842         cat $DIR/$tdir/dangle
843         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
844         $CHECKSTAT -f -t file $DIR/$tdir/link ||
845                 error "$tdir/link not linked to a file"
846 }
847 run_test 21 "write to dangling link"
848
849 test_22() {
850         local wdir=$DIR/$tdir
851         test_mkdir $wdir
852         chown $RUNAS_ID:$RUNAS_GID $wdir
853         (cd $wdir || error "cd $wdir failed";
854                 $RUNAS tar cf - /etc/hosts /etc/sysconfig/network |
855                 $RUNAS tar xf -)
856         ls -lR $wdir/etc || error "ls -lR $wdir/etc failed"
857         $CHECKSTAT -t dir $wdir/etc || error "checkstat -t dir failed"
858         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $wdir/etc ||
859                 error "checkstat -u failed"
860 }
861 run_test 22 "unpack tar archive as non-root user"
862
863 # was test_23
864 test_23a() {
865         test_mkdir $DIR/$tdir
866         local file=$DIR/$tdir/$tfile
867
868         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
869         openfile -f O_CREAT:O_EXCL $file &&
870                 error "$file recreate succeeded" || true
871 }
872 run_test 23a "O_CREAT|O_EXCL in subdir"
873
874 test_23b() { # bug 18988
875         test_mkdir $DIR/$tdir
876         local file=$DIR/$tdir/$tfile
877
878         rm -f $file
879         echo foo > $file || error "write filed"
880         echo bar >> $file || error "append filed"
881         $CHECKSTAT -s 8 $file || error "wrong size"
882         rm $file
883 }
884 run_test 23b "O_APPEND check"
885
886 # LU-9409, size with O_APPEND and tiny writes
887 test_23c() {
888         local file=$DIR/$tfile
889
890         # single dd
891         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800
892         $CHECKSTAT -s 6400 $file || error "wrong size, expected 6400"
893         rm -f $file
894
895         # racing tiny writes
896         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800 &
897         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800 &
898         wait
899         $CHECKSTAT -s 12800 $file || error "wrong size, expected 12800"
900         rm -f $file
901
902         #racing tiny & normal writes
903         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=4096 count=4 &
904         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=100 &
905         wait
906         $CHECKSTAT -s 17184 $file || error "wrong size, expected 17184"
907         rm -f $file
908
909         #racing tiny & normal writes 2, ugly numbers
910         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=4099 count=11 &
911         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=17 count=173 &
912         wait
913         $CHECKSTAT -s 48030 $file || error "wrong size, expected 48030"
914         rm -f $file
915 }
916 run_test 23c "O_APPEND size checks for tiny writes"
917
918 # LU-11069 file offset is correct after appending writes
919 test_23d() {
920         local file=$DIR/$tfile
921         local offset
922
923         echo CentaurHauls > $file
924         offset=$($MULTIOP $file oO_WRONLY:O_APPEND:w13Zp)
925         if ((offset != 26)); then
926                 error "wrong offset, expected 26, got '$offset'"
927         fi
928 }
929 run_test 23d "file offset is correct after appending writes"
930
931 # rename sanity
932 test_24a() {
933         echo '-- same directory rename'
934         test_mkdir $DIR/$tdir
935         touch $DIR/$tdir/$tfile.1
936         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
937         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
938 }
939 run_test 24a "rename file to non-existent target"
940
941 test_24b() {
942         test_mkdir $DIR/$tdir
943         touch $DIR/$tdir/$tfile.{1,2}
944         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
945         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
946         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
947 }
948 run_test 24b "rename file to existing target"
949
950 test_24c() {
951         test_mkdir $DIR/$tdir
952         test_mkdir $DIR/$tdir/d$testnum.1
953         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
954         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
955         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
956 }
957 run_test 24c "rename directory to non-existent target"
958
959 test_24d() {
960         test_mkdir -c1 $DIR/$tdir
961         test_mkdir -c1 $DIR/$tdir/d$testnum.1
962         test_mkdir -c1 $DIR/$tdir/d$testnum.2
963         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
964         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
965         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
966 }
967 run_test 24d "rename directory to existing target"
968
969 test_24e() {
970         echo '-- cross directory renames --'
971         test_mkdir $DIR/R5a
972         test_mkdir $DIR/R5b
973         touch $DIR/R5a/f
974         mv $DIR/R5a/f $DIR/R5b/g
975         $CHECKSTAT -a $DIR/R5a/f || error "$DIR/R5a/f exists"
976         $CHECKSTAT -t file $DIR/R5b/g || error "$DIR/R5b/g not file type"
977 }
978 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
979
980 test_24f() {
981         test_mkdir $DIR/R6a
982         test_mkdir $DIR/R6b
983         touch $DIR/R6a/f $DIR/R6b/g
984         mv $DIR/R6a/f $DIR/R6b/g
985         $CHECKSTAT -a $DIR/R6a/f || error "$DIR/R6a/f exists"
986         $CHECKSTAT -t file $DIR/R6b/g || error "$DIR/R6b/g not file type"
987 }
988 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
989
990 test_24g() {
991         test_mkdir $DIR/R7a
992         test_mkdir $DIR/R7b
993         test_mkdir $DIR/R7a/d
994         mv $DIR/R7a/d $DIR/R7b/e
995         $CHECKSTAT -a $DIR/R7a/d || error "$DIR/R7a/d exists"
996         $CHECKSTAT -t dir $DIR/R7b/e || error "$DIR/R7b/e not dir type"
997 }
998 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
999
1000 test_24h() {
1001         test_mkdir -c1 $DIR/R8a
1002         test_mkdir -c1 $DIR/R8b
1003         test_mkdir -c1 $DIR/R8a/d
1004         test_mkdir -c1 $DIR/R8b/e
1005         mrename $DIR/R8a/d $DIR/R8b/e
1006         $CHECKSTAT -a $DIR/R8a/d || error "$DIR/R8a/d exists"
1007         $CHECKSTAT -t dir $DIR/R8b/e || error "$DIR/R8b/e not dir type"
1008 }
1009 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
1010
1011 test_24i() {
1012         echo "-- rename error cases"
1013         test_mkdir $DIR/R9
1014         test_mkdir $DIR/R9/a
1015         touch $DIR/R9/f
1016         mrename $DIR/R9/f $DIR/R9/a
1017         $CHECKSTAT -t file $DIR/R9/f || error "$DIR/R9/f not file type"
1018         $CHECKSTAT -t dir  $DIR/R9/a || error "$DIR/R9/a not dir type"
1019         $CHECKSTAT -a $DIR/R9/a/f || error "$DIR/R9/a/f exists"
1020 }
1021 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
1022
1023 test_24j() {
1024         test_mkdir $DIR/R10
1025         mrename $DIR/R10/f $DIR/R10/g
1026         $CHECKSTAT -t dir $DIR/R10 || error "$DIR/R10 not dir type"
1027         $CHECKSTAT -a $DIR/R10/f || error "$DIR/R10/f exists"
1028         $CHECKSTAT -a $DIR/R10/g || error "$DIR/R10/g exists"
1029 }
1030 run_test 24j "source does not exist ============================"
1031
1032 test_24k() {
1033         test_mkdir $DIR/R11a
1034         test_mkdir $DIR/R11a/d
1035         touch $DIR/R11a/f
1036         mv $DIR/R11a/f $DIR/R11a/d
1037         $CHECKSTAT -a $DIR/R11a/f || error "$DIR/R11a/f exists"
1038         $CHECKSTAT -t file $DIR/R11a/d/f || error "$DIR/R11a/d/f not file type"
1039 }
1040 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
1041
1042 # bug 2429 - rename foo foo foo creates invalid file
1043 test_24l() {
1044         f="$DIR/f24l"
1045         $MULTIOP $f OcNs || error "rename of ${f} to itself failed"
1046 }
1047 run_test 24l "Renaming a file to itself ========================"
1048
1049 test_24m() {
1050         f="$DIR/f24m"
1051         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
1052         # on ext3 this does not remove either the source or target files
1053         # though the "expected" operation would be to remove the source
1054         $CHECKSTAT -t file ${f} || error "${f} missing"
1055         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
1056 }
1057 run_test 24m "Renaming a file to a hard link to itself ========="
1058
1059 test_24n() {
1060     f="$DIR/f24n"
1061     # this stats the old file after it was renamed, so it should fail
1062     touch ${f}
1063     $CHECKSTAT ${f} || error "${f} missing"
1064     mv ${f} ${f}.rename
1065     $CHECKSTAT ${f}.rename || error "${f}.rename missing"
1066     $CHECKSTAT -a ${f} || error "${f} exists"
1067 }
1068 run_test 24n "Statting the old file after renaming (Posix rename 2)"
1069
1070 test_24o() {
1071         test_mkdir $DIR/$tdir
1072         rename_many -s random -v -n 10 $DIR/$tdir
1073 }
1074 run_test 24o "rename of files during htree split"
1075
1076 test_24p() {
1077         test_mkdir $DIR/R12a
1078         test_mkdir $DIR/R12b
1079         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
1080         mrename $DIR/R12a $DIR/R12b
1081         $CHECKSTAT -a $DIR/R12a || error "$DIR/R12a exists"
1082         $CHECKSTAT -t dir $DIR/R12b || error "$DIR/R12b not dir type"
1083         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
1084         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
1085 }
1086 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
1087
1088 cleanup_multiop_pause() {
1089         trap 0
1090         kill -USR1 $MULTIPID
1091 }
1092
1093 test_24q() {
1094         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1095
1096         test_mkdir $DIR/R13a
1097         test_mkdir $DIR/R13b
1098         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
1099         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
1100         MULTIPID=$!
1101
1102         trap cleanup_multiop_pause EXIT
1103         mrename $DIR/R13a $DIR/R13b
1104         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
1105         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
1106         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
1107         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
1108         cleanup_multiop_pause
1109         wait $MULTIPID || error "multiop close failed"
1110 }
1111 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
1112
1113 test_24r() { #bug 3789
1114         test_mkdir $DIR/R14a
1115         test_mkdir $DIR/R14a/b
1116         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
1117         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
1118         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
1119 }
1120 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
1121
1122 test_24s() {
1123         test_mkdir $DIR/R15a
1124         test_mkdir $DIR/R15a/b
1125         test_mkdir $DIR/R15a/b/c
1126         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
1127         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
1128         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
1129 }
1130 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
1131 test_24t() {
1132         test_mkdir $DIR/R16a
1133         test_mkdir $DIR/R16a/b
1134         test_mkdir $DIR/R16a/b/c
1135         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1136         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1137         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1138 }
1139 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1140
1141 test_24u() { # bug12192
1142         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error "multiop failed"
1143         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1144 }
1145 run_test 24u "create stripe file"
1146
1147 simple_cleanup_common() {
1148         local rc=0
1149         trap 0
1150         [ -z "$DIR" -o -z "$tdir" ] && return 0
1151
1152         local start=$SECONDS
1153         rm -rf $DIR/$tdir
1154         rc=$?
1155         wait_delete_completed
1156         echo "cleanup time $((SECONDS - start))"
1157         return $rc
1158 }
1159
1160 max_pages_per_rpc() {
1161         local mdtname="$(printf "MDT%04x" ${1:-0})"
1162         $LCTL get_param -n mdc.*$mdtname*.max_pages_per_rpc
1163 }
1164
1165 test_24v() {
1166         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1167
1168         local nrfiles=${COUNT:-100000}
1169         local fname="$DIR/$tdir/$tfile"
1170
1171         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1172         [ "$mds1_FSTYPE" = "zfs" ] && nrfiles=${COUNT:-10000}
1173
1174         test_mkdir "$(dirname $fname)"
1175         # assume MDT0000 has the fewest inodes
1176         local stripes=$($LFS getdirstripe -c $(dirname $fname))
1177         local free_inodes=$(($(mdt_free_inodes 0) * stripes))
1178         [[ $free_inodes -lt $nrfiles ]] && nrfiles=$free_inodes
1179
1180         trap simple_cleanup_common EXIT
1181
1182         createmany -m "$fname" $nrfiles
1183
1184         cancel_lru_locks mdc
1185         lctl set_param mdc.*.stats clear
1186
1187         # was previously test_24D: LU-6101
1188         # readdir() returns correct number of entries after cursor reload
1189         local num_ls=$(ls $DIR/$tdir | wc -l)
1190         local num_uniq=$(ls $DIR/$tdir | sort -u | wc -l)
1191         local num_all=$(ls -a $DIR/$tdir | wc -l)
1192         if [ $num_ls -ne $nrfiles -o $num_uniq -ne $nrfiles -o \
1193              $num_all -ne $((nrfiles + 2)) ]; then
1194                 error "Expected $nrfiles files, got $num_ls " \
1195                         "($num_uniq unique $num_all .&..)"
1196         fi
1197         # LU-5 large readdir
1198         # dirent_size = 32 bytes for sizeof(struct lu_dirent) +
1199         #               N bytes for name (len($nrfiles) rounded to 8 bytes) +
1200         #               8 bytes for luda_type (4 bytes rounded to 8 bytes)
1201         # take into account of overhead in lu_dirpage header and end mark in
1202         # each page, plus one in rpc_num calculation.
1203         local dirent_size=$((32 + (${#tfile} | 7) + 1 + 8))
1204         local page_entries=$(((PAGE_SIZE - 24) / dirent_size))
1205         local mdt_idx=$($LFS getdirstripe -i $(dirname $fname))
1206         local rpc_pages=$(max_pages_per_rpc $mdt_idx)
1207         local rpc_max=$((nrfiles / (page_entries * rpc_pages) + stripes))
1208         local mds_readpage=$(calc_stats mdc.*.stats mds_readpage)
1209         echo "readpages: $mds_readpage rpc_max: $rpc_max"
1210         (( $mds_readpage < $rpc_max - 2 || $mds_readpage > $rpc_max + 1)) &&
1211                 error "large readdir doesn't take effect: " \
1212                       "$mds_readpage should be about $rpc_max"
1213
1214         simple_cleanup_common
1215 }
1216 run_test 24v "list large directory (test hash collision, b=17560)"
1217
1218 test_24w() { # bug21506
1219         SZ1=234852
1220         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1221         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1222         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1223         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1224         [[ "$SZ1" -eq "$SZ2" ]] ||
1225                 error "Error reading at the end of the file $tfile"
1226 }
1227 run_test 24w "Reading a file larger than 4Gb"
1228
1229 test_24x() {
1230         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
1231         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1232         [[ $MDS1_VERSION -lt $(version_code 2.7.56) ]] &&
1233                 skip "Need MDS version at least 2.7.56"
1234
1235         local MDTIDX=1
1236         local remote_dir=$DIR/$tdir/remote_dir
1237
1238         test_mkdir $DIR/$tdir
1239         $LFS mkdir -i $MDTIDX $remote_dir ||
1240                 error "create remote directory failed"
1241
1242         test_mkdir $DIR/$tdir/src_dir
1243         touch $DIR/$tdir/src_file
1244         test_mkdir $remote_dir/tgt_dir
1245         touch $remote_dir/tgt_file
1246
1247         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir ||
1248                 error "rename dir cross MDT failed!"
1249
1250         mrename $DIR/$tdir/src_file $remote_dir/tgt_file ||
1251                 error "rename file cross MDT failed!"
1252
1253         touch $DIR/$tdir/ln_file
1254         ln $DIR/$tdir/ln_file $remote_dir/ln_name ||
1255                 error "ln file cross MDT failed"
1256
1257         rm -rf $DIR/$tdir || error "Can not delete directories"
1258 }
1259 run_test 24x "cross MDT rename/link"
1260
1261 test_24y() {
1262         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
1263         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1264
1265         local remote_dir=$DIR/$tdir/remote_dir
1266         local mdtidx=1
1267
1268         test_mkdir $DIR/$tdir
1269         $LFS mkdir -i $mdtidx $remote_dir ||
1270                 error "create remote directory failed"
1271
1272         test_mkdir $remote_dir/src_dir
1273         touch $remote_dir/src_file
1274         test_mkdir $remote_dir/tgt_dir
1275         touch $remote_dir/tgt_file
1276
1277         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1278                 error "rename subdir in the same remote dir failed!"
1279
1280         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1281                 error "rename files in the same remote dir failed!"
1282
1283         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1284                 error "link files in the same remote dir failed!"
1285
1286         rm -rf $DIR/$tdir || error "Can not delete directories"
1287 }
1288 run_test 24y "rename/link on the same dir should succeed"
1289
1290 test_24A() { # LU-3182
1291         local NFILES=5000
1292
1293         rm -rf $DIR/$tdir
1294         test_mkdir $DIR/$tdir
1295         trap simple_cleanup_common EXIT
1296         createmany -m $DIR/$tdir/$tfile $NFILES
1297         local t=$(ls $DIR/$tdir | wc -l)
1298         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1299         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1300         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1301                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1302         fi
1303
1304         simple_cleanup_common || error "Can not delete directories"
1305 }
1306 run_test 24A "readdir() returns correct number of entries."
1307
1308 test_24B() { # LU-4805
1309         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
1310
1311         local count
1312
1313         test_mkdir $DIR/$tdir
1314         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1315                 error "create striped dir failed"
1316
1317         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1318         [ $count -eq 2 ] || error "Expected 2, got $count"
1319
1320         touch $DIR/$tdir/striped_dir/a
1321
1322         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1323         [ $count -eq 3 ] || error "Expected 3, got $count"
1324
1325         touch $DIR/$tdir/striped_dir/.f
1326
1327         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1328         [ $count -eq 4 ] || error "Expected 4, got $count"
1329
1330         rm -rf $DIR/$tdir || error "Can not delete directories"
1331 }
1332 run_test 24B "readdir for striped dir return correct number of entries"
1333
1334 test_24C() {
1335         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
1336
1337         mkdir $DIR/$tdir
1338         mkdir $DIR/$tdir/d0
1339         mkdir $DIR/$tdir/d1
1340
1341         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1342                 error "create striped dir failed"
1343
1344         cd $DIR/$tdir/d0/striped_dir
1345
1346         local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1347         local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1348         local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1349
1350         [ "$d0_ino" = "$parent_ino" ] ||
1351                 error ".. wrong, expect $d0_ino, get $parent_ino"
1352
1353         mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1354                 error "mv striped dir failed"
1355
1356         parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1357
1358         [ "$d1_ino" = "$parent_ino" ] ||
1359                 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1360 }
1361 run_test 24C "check .. in striped dir"
1362
1363 test_24E() {
1364         [[ $MDSCOUNT -lt 4 ]] && skip_env "needs >= 4 MDTs"
1365         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1366
1367         mkdir -p $DIR/$tdir
1368         mkdir $DIR/$tdir/src_dir
1369         $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
1370                 error "create remote source failed"
1371
1372         touch $DIR/$tdir/src_dir/src_child/a
1373
1374         $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
1375                 error "create remote target dir failed"
1376
1377         $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
1378                 error "create remote target child failed"
1379
1380         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
1381                 error "rename dir cross MDT failed!"
1382
1383         find $DIR/$tdir
1384
1385         $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
1386                 error "src_child still exists after rename"
1387
1388         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
1389                 error "missing file(a) after rename"
1390
1391         rm -rf $DIR/$tdir || error "Can not delete directories"
1392 }
1393 run_test 24E "cross MDT rename/link"
1394
1395 test_25a() {
1396         echo '== symlink sanity ============================================='
1397
1398         test_mkdir $DIR/d25
1399         ln -s d25 $DIR/s25
1400         touch $DIR/s25/foo ||
1401                 error "File creation in symlinked directory failed"
1402 }
1403 run_test 25a "create file in symlinked directory ==============="
1404
1405 test_25b() {
1406         [ ! -d $DIR/d25 ] && test_25a
1407         $CHECKSTAT -t file $DIR/s25/foo || error "$DIR/s25/foo not file type"
1408 }
1409 run_test 25b "lookup file in symlinked directory ==============="
1410
1411 test_26a() {
1412         test_mkdir $DIR/d26
1413         test_mkdir $DIR/d26/d26-2
1414         ln -s d26/d26-2 $DIR/s26
1415         touch $DIR/s26/foo || error "File creation failed"
1416 }
1417 run_test 26a "multiple component symlink ======================="
1418
1419 test_26b() {
1420         test_mkdir -p $DIR/$tdir/d26-2
1421         ln -s $tdir/d26-2/foo $DIR/s26-2
1422         touch $DIR/s26-2 || error "File creation failed"
1423 }
1424 run_test 26b "multiple component symlink at end of lookup ======"
1425
1426 test_26c() {
1427         test_mkdir $DIR/d26.2
1428         touch $DIR/d26.2/foo
1429         ln -s d26.2 $DIR/s26.2-1
1430         ln -s s26.2-1 $DIR/s26.2-2
1431         ln -s s26.2-2 $DIR/s26.2-3
1432         chmod 0666 $DIR/s26.2-3/foo
1433 }
1434 run_test 26c "chain of symlinks"
1435
1436 # recursive symlinks (bug 439)
1437 test_26d() {
1438         ln -s d26-3/foo $DIR/d26-3
1439 }
1440 run_test 26d "create multiple component recursive symlink"
1441
1442 test_26e() {
1443         [ ! -h $DIR/d26-3 ] && test_26d
1444         rm $DIR/d26-3
1445 }
1446 run_test 26e "unlink multiple component recursive symlink"
1447
1448 # recursive symlinks (bug 7022)
1449 test_26f() {
1450         test_mkdir $DIR/$tdir
1451         test_mkdir $DIR/$tdir/$tfile
1452         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1453         test_mkdir -p lndir/bar1
1454         test_mkdir $DIR/$tdir/$tfile/$tfile
1455         cd $tfile                || error "cd $tfile failed"
1456         ln -s .. dotdot          || error "ln dotdot failed"
1457         ln -s dotdot/lndir lndir || error "ln lndir failed"
1458         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1459         output=`ls $tfile/$tfile/lndir/bar1`
1460         [ "$output" = bar1 ] && error "unexpected output"
1461         rm -r $tfile             || error "rm $tfile failed"
1462         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1463 }
1464 run_test 26f "rm -r of a directory which has recursive symlink"
1465
1466 test_27a() {
1467         test_mkdir $DIR/$tdir
1468         $LFS getstripe $DIR/$tdir
1469         $LFS setstripe -c 1 $DIR/$tdir/$tfile || error "setstripe failed"
1470         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1471         cp /etc/hosts $DIR/$tdir/$tfile || error "Can't copy to one stripe file"
1472 }
1473 run_test 27a "one stripe file"
1474
1475 test_27b() {
1476         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1477
1478         test_mkdir $DIR/$tdir
1479         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1480         $LFS getstripe -c $DIR/$tdir/$tfile
1481         [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
1482                 error "two-stripe file doesn't have two stripes"
1483
1484         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1485 }
1486 run_test 27b "create and write to two stripe file"
1487
1488 test_27d() {
1489         test_mkdir $DIR/$tdir
1490         $LFS setstripe -c 0 -i -1 -S 0 $DIR/$tdir/$tfile ||
1491                 error "setstripe failed"
1492         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1493         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1494 }
1495 run_test 27d "create file with default settings"
1496
1497 test_27e() {
1498         # LU-5839 adds check for existed layout before setting it
1499         [[ $MDS1_VERSION -lt $(version_code 2.7.56) ]] &&
1500                 skip "Need MDS version at least 2.7.56"
1501
1502         test_mkdir $DIR/$tdir
1503         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1504         $LFS setstripe -c 2 $DIR/$tdir/$tfile && error "setstripe worked twice"
1505         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1506 }
1507 run_test 27e "setstripe existing file (should return error)"
1508
1509 test_27f() {
1510         test_mkdir $DIR/$tdir
1511         $LFS setstripe -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1512                 error "$LFS setstripe $DIR/$tdir/$tfile failed"
1513         $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1514                 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1515         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1516         $LFS getstripe $DIR/$tdir/$tfile || error "$LFS getstripe failed"
1517 }
1518 run_test 27f "setstripe with bad stripe size (should return error)"
1519
1520 test_27g() {
1521         test_mkdir $DIR/$tdir
1522         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1523         $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "no stripe info" ||
1524                 error "$DIR/$tdir/$tfile has object"
1525 }
1526 run_test 27g "$LFS getstripe with no objects"
1527
1528 test_27i() {
1529         test_mkdir $DIR/$tdir
1530         touch $DIR/$tdir/$tfile || error "touch failed"
1531         [[ $($LFS getstripe -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1532                 error "missing objects"
1533 }
1534 run_test 27i "$LFS getstripe with some objects"
1535
1536 test_27j() {
1537         test_mkdir $DIR/$tdir
1538         $LFS setstripe -i $OSTCOUNT $DIR/$tdir/$tfile &&
1539                 error "setstripe failed" || true
1540 }
1541 run_test 27j "setstripe with bad stripe offset (should return error)"
1542
1543 test_27k() { # bug 2844
1544         test_mkdir $DIR/$tdir
1545         local file=$DIR/$tdir/$tfile
1546         local ll_max_blksize=$((4 * 1024 * 1024))
1547         $LFS setstripe -S 67108864 $file || error "setstripe failed"
1548         local blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1549         [ $blksize -le $ll_max_blksize ] || error "1:$blksize > $ll_max_blksize"
1550         dd if=/dev/zero of=$file bs=4k count=1
1551         blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1552         [ $blksize -le $ll_max_blksize ] || error "2:$blksize > $ll_max_blksize"
1553 }
1554 run_test 27k "limit i_blksize for broken user apps"
1555
1556 test_27l() {
1557         mcreate $DIR/$tfile || error "creating file"
1558         $RUNAS $LFS setstripe -c 1 $DIR/$tfile &&
1559                 error "setstripe should have failed" || true
1560 }
1561 run_test 27l "check setstripe permissions (should return error)"
1562
1563 test_27m() {
1564         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1565
1566         ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1567                    head -n1)
1568         if [[ $ORIGFREE -gt $MAXFREE ]]; then
1569                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1570         fi
1571         trap simple_cleanup_common EXIT
1572         test_mkdir $DIR/$tdir
1573         $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.1
1574         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=1024 count=$MAXFREE &&
1575                 error "dd should fill OST0"
1576         i=2
1577         while $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.$i; do
1578                 i=$((i + 1))
1579                 [ $i -gt 256 ] && break
1580         done
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         i=$((i + 1))
1587         touch $DIR/$tdir/$tfile.$i
1588         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1589             awk '{print $1}'| grep -w "0") ] &&
1590                 error "OST0 was full but new created file still use it"
1591         simple_cleanup_common
1592 }
1593 run_test 27m "create file while OST0 was full"
1594
1595 sleep_maxage() {
1596         local delay=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage |
1597                       awk '{ print $1 * 2; exit; }')
1598         sleep $delay
1599 }
1600
1601 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1602 # if the OST isn't full anymore.
1603 reset_enospc() {
1604         local OSTIDX=${1:-""}
1605
1606         local list=$(comma_list $(osts_nodes))
1607         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1608
1609         do_nodes $list lctl set_param fail_loc=0
1610         sync    # initiate all OST_DESTROYs from MDS to OST
1611         sleep_maxage
1612 }
1613
1614 exhaust_precreations() {
1615         local OSTIDX=$1
1616         local FAILLOC=$2
1617         local FAILIDX=${3:-$OSTIDX}
1618         local ofacet=ost$((OSTIDX + 1))
1619
1620         test_mkdir -p -c1 $DIR/$tdir
1621         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
1622         local mfacet=mds$((mdtidx + 1))
1623         echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1624
1625         local OST=$(ostname_from_index $OSTIDX)
1626
1627         # on the mdt's osc
1628         local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1629         local last_id=$(do_facet $mfacet lctl get_param -n \
1630                         osc.$mdtosc_proc1.prealloc_last_id)
1631         local next_id=$(do_facet $mfacet lctl get_param -n \
1632                         osc.$mdtosc_proc1.prealloc_next_id)
1633
1634         local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1635         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1636
1637         test_mkdir -p $DIR/$tdir/${OST}
1638         $LFS setstripe -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1639 #define OBD_FAIL_OST_ENOSPC              0x215
1640         do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1641         echo "Creating to objid $last_id on ost $OST..."
1642         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1643         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1644         do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1645         sleep_maxage
1646 }
1647
1648 exhaust_all_precreations() {
1649         local i
1650         for (( i=0; i < OSTCOUNT; i++ )) ; do
1651                 exhaust_precreations $i $1 -1
1652         done
1653 }
1654
1655 test_27n() {
1656         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1657         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1658         remote_mds_nodsh && skip "remote MDS with nodsh"
1659         remote_ost_nodsh && skip "remote OST with nodsh"
1660
1661         reset_enospc
1662         rm -f $DIR/$tdir/$tfile
1663         exhaust_precreations 0 0x80000215
1664         $LFS setstripe -c -1 $DIR/$tdir || error "setstripe failed"
1665         touch $DIR/$tdir/$tfile || error "touch failed"
1666         $LFS getstripe $DIR/$tdir/$tfile
1667         reset_enospc
1668 }
1669 run_test 27n "create file with some full OSTs"
1670
1671 test_27o() {
1672         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1673         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1674         remote_mds_nodsh && skip "remote MDS with nodsh"
1675         remote_ost_nodsh && skip "remote OST with nodsh"
1676
1677         reset_enospc
1678         rm -f $DIR/$tdir/$tfile
1679         exhaust_all_precreations 0x215
1680
1681         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1682
1683         reset_enospc
1684         rm -rf $DIR/$tdir/*
1685 }
1686 run_test 27o "create file with all full OSTs (should error)"
1687
1688 test_27p() {
1689         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1690         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1691         remote_mds_nodsh && skip "remote MDS with nodsh"
1692         remote_ost_nodsh && skip "remote OST with nodsh"
1693
1694         reset_enospc
1695         rm -f $DIR/$tdir/$tfile
1696         test_mkdir $DIR/$tdir
1697
1698         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1699         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1700         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1701
1702         exhaust_precreations 0 0x80000215
1703         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1704         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1705         $LFS getstripe $DIR/$tdir/$tfile
1706
1707         reset_enospc
1708 }
1709 run_test 27p "append to a truncated file with some full OSTs"
1710
1711 test_27q() {
1712         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1713         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1714         remote_mds_nodsh && skip "remote MDS with nodsh"
1715         remote_ost_nodsh && skip "remote OST with nodsh"
1716
1717         reset_enospc
1718         rm -f $DIR/$tdir/$tfile
1719
1720         test_mkdir $DIR/$tdir
1721         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1722         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||
1723                 error "truncate $DIR/$tdir/$tfile failed"
1724         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1725
1726         exhaust_all_precreations 0x215
1727
1728         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1729         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1730
1731         reset_enospc
1732 }
1733 run_test 27q "append to truncated file with all OSTs full (should error)"
1734
1735 test_27r() {
1736         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1737         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1738         remote_mds_nodsh && skip "remote MDS with nodsh"
1739         remote_ost_nodsh && skip "remote OST with nodsh"
1740
1741         reset_enospc
1742         rm -f $DIR/$tdir/$tfile
1743         exhaust_precreations 0 0x80000215
1744
1745         $LFS setstripe -i 0 -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1746
1747         reset_enospc
1748 }
1749 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1750
1751 test_27s() { # bug 10725
1752         test_mkdir $DIR/$tdir
1753         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1754         local stripe_count=0
1755         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1756         $LFS setstripe -S $stripe_size -c $stripe_count $DIR/$tdir &&
1757                 error "stripe width >= 2^32 succeeded" || true
1758
1759 }
1760 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1761
1762 test_27t() { # bug 10864
1763         WDIR=$(pwd)
1764         WLFS=$(which lfs)
1765         cd $DIR
1766         touch $tfile
1767         $WLFS getstripe $tfile
1768         cd $WDIR
1769 }
1770 run_test 27t "check that utils parse path correctly"
1771
1772 test_27u() { # bug 4900
1773         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1774         remote_mds_nodsh && skip "remote MDS with nodsh"
1775
1776         local index
1777         local list=$(comma_list $(mdts_nodes))
1778
1779 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1780         do_nodes $list $LCTL set_param fail_loc=0x139
1781         test_mkdir -p $DIR/$tdir
1782         trap simple_cleanup_common EXIT
1783         createmany -o $DIR/$tdir/t- 1000
1784         do_nodes $list $LCTL set_param fail_loc=0
1785
1786         TLOG=$TMP/$tfile.getstripe
1787         $LFS getstripe $DIR/$tdir > $TLOG
1788         OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
1789         unlinkmany $DIR/$tdir/t- 1000
1790         trap 0
1791         [[ $OBJS -gt 0 ]] &&
1792                 error "$OBJS objects created on OST-0. See $TLOG" ||
1793                 rm -f $TLOG
1794 }
1795 run_test 27u "skip object creation on OSC w/o objects"
1796
1797 test_27v() { # bug 4900
1798         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1799         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1800         remote_mds_nodsh && skip "remote MDS with nodsh"
1801         remote_ost_nodsh && skip "remote OST with nodsh"
1802
1803         exhaust_all_precreations 0x215
1804         reset_enospc
1805
1806         $LFS setstripe -c 1 $DIR/$tdir         # 1 stripe / file
1807
1808         touch $DIR/$tdir/$tfile
1809         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1810         # all except ost1
1811         for (( i=1; i < OSTCOUNT; i++ )); do
1812                 do_facet ost$i lctl set_param fail_loc=0x705
1813         done
1814         local START=`date +%s`
1815         createmany -o $DIR/$tdir/$tfile 32
1816
1817         local FINISH=`date +%s`
1818         local TIMEOUT=`lctl get_param -n timeout`
1819         local PROCESS=$((FINISH - START))
1820         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1821                error "$FINISH - $START >= $TIMEOUT / 2"
1822         sleep $((TIMEOUT / 2 - PROCESS))
1823         reset_enospc
1824 }
1825 run_test 27v "skip object creation on slow OST"
1826
1827 test_27w() { # bug 10997
1828         test_mkdir $DIR/$tdir
1829         $LFS setstripe -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1830         [ $($LFS getstripe -S $DIR/$tdir/f0) -ne 65536 ] &&
1831                 error "stripe size $size != 65536" || true
1832         [ $($LFS getstripe -d $DIR/$tdir | grep -c "stripe_count") -eq 0 ] &&
1833                 error "$LFS getstripe -d $DIR/$tdir no 'stripe_count'" || true
1834 }
1835 run_test 27w "check $LFS setstripe -S and getstrip -d options"
1836
1837 test_27wa() {
1838         [[ $OSTCOUNT -lt 2 ]] &&
1839                 skip_env "skipping multiple stripe count/offset test"
1840
1841         test_mkdir $DIR/$tdir
1842         for i in $(seq 1 $OSTCOUNT); do
1843                 offset=$((i - 1))
1844                 $LFS setstripe -c $i -i $offset $DIR/$tdir/f$i ||
1845                         error "setstripe -c $i -i $offset failed"
1846                 count=$($LFS getstripe -c $DIR/$tdir/f$i)
1847                 index=$($LFS getstripe -i $DIR/$tdir/f$i)
1848                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1849                 [ $index -ne $offset ] &&
1850                         error "stripe offset $index != $offset" || true
1851         done
1852 }
1853 run_test 27wa "check $LFS setstripe -c -i options"
1854
1855 test_27x() {
1856         remote_ost_nodsh && skip "remote OST with nodsh"
1857         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1858         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1859
1860         OFFSET=$(($OSTCOUNT - 1))
1861         OSTIDX=0
1862         local OST=$(ostname_from_index $OSTIDX)
1863
1864         test_mkdir $DIR/$tdir
1865         $LFS setstripe -c 1 $DIR/$tdir  # 1 stripe per file
1866         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1867         sleep_maxage
1868         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1869         for i in $(seq 0 $OFFSET); do
1870                 [ $($LFS getstripe $DIR/$tdir/$tfile$i | grep -A 10 obdidx |
1871                         awk '{print $1}' | grep -w "$OSTIDX") ] &&
1872                 error "OST0 was degraded but new created file still use it"
1873         done
1874         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1875 }
1876 run_test 27x "create files while OST0 is degraded"
1877
1878 test_27y() {
1879         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1880         remote_mds_nodsh && skip "remote MDS with nodsh"
1881         remote_ost_nodsh && skip "remote OST with nodsh"
1882         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1883
1884         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1885         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1886                 osc.$mdtosc.prealloc_last_id)
1887         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1888                 osc.$mdtosc.prealloc_next_id)
1889         local fcount=$((last_id - next_id))
1890         [[ $fcount -eq 0 ]] && skip "not enough space on OST0"
1891         [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
1892
1893         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1894                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1895         local OST_DEACTIVE_IDX=-1
1896         local OSC
1897         local OSTIDX
1898         local OST
1899
1900         for OSC in $MDS_OSCS; do
1901                 OST=$(osc_to_ost $OSC)
1902                 OSTIDX=$(index_from_ostuuid $OST)
1903                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1904                         OST_DEACTIVE_IDX=$OSTIDX
1905                 fi
1906                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1907                         echo $OSC "is Deactivated:"
1908                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1909                 fi
1910         done
1911
1912         OSTIDX=$(index_from_ostuuid $OST)
1913         test_mkdir $DIR/$tdir
1914         $LFS setstripe -c 1 $DIR/$tdir      # 1 stripe / file
1915
1916         for OSC in $MDS_OSCS; do
1917                 OST=$(osc_to_ost $OSC)
1918                 OSTIDX=$(index_from_ostuuid $OST)
1919                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1920                         echo $OST "is degraded:"
1921                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1922                                                 obdfilter.$OST.degraded=1
1923                 fi
1924         done
1925
1926         sleep_maxage
1927         createmany -o $DIR/$tdir/$tfile $fcount
1928
1929         for OSC in $MDS_OSCS; do
1930                 OST=$(osc_to_ost $OSC)
1931                 OSTIDX=$(index_from_ostuuid $OST)
1932                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1933                         echo $OST "is recovered from degraded:"
1934                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1935                                                 obdfilter.$OST.degraded=0
1936                 else
1937                         do_facet $SINGLEMDS lctl --device %$OSC activate
1938                 fi
1939         done
1940
1941         # all osp devices get activated, hence -1 stripe count restored
1942         local stripe_count=0
1943
1944         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1945         # devices get activated.
1946         sleep_maxage
1947         $LFS setstripe -c -1 $DIR/$tfile
1948         stripe_count=$($LFS getstripe -c $DIR/$tfile)
1949         rm -f $DIR/$tfile
1950         [ $stripe_count -ne $OSTCOUNT ] &&
1951                 error "Of $OSTCOUNT OSTs, only $stripe_count is available"
1952         return 0
1953 }
1954 run_test 27y "create files while OST0 is degraded and the rest inactive"
1955
1956 check_seq_oid()
1957 {
1958         log "check file $1"
1959
1960         lmm_count=$($LFS getstripe -c $1)
1961         lmm_seq=$($LFS getstripe -v $1 | awk '/lmm_seq/ { print $2 }')
1962         lmm_oid=$($LFS getstripe -v $1 | awk '/lmm_object_id/ { print $2 }')
1963
1964         local old_ifs="$IFS"
1965         IFS=$'[:]'
1966         fid=($($LFS path2fid $1))
1967         IFS="$old_ifs"
1968
1969         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1970         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1971
1972         # compare lmm_seq and lu_fid->f_seq
1973         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1974         # compare lmm_object_id and lu_fid->oid
1975         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1976
1977         # check the trusted.fid attribute of the OST objects of the file
1978         local have_obdidx=false
1979         local stripe_nr=0
1980         $LFS getstripe $1 | while read obdidx oid hex seq; do
1981                 # skip lines up to and including "obdidx"
1982                 [ -z "$obdidx" ] && break
1983                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1984                 $have_obdidx || continue
1985
1986                 local ost=$((obdidx + 1))
1987                 local dev=$(ostdevname $ost)
1988                 local oid_hex
1989
1990                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1991
1992                 seq=$(echo $seq | sed -e "s/^0x//g")
1993                 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
1994                         oid_hex=$(echo $oid)
1995                 else
1996                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1997                 fi
1998                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1999
2000                 local ff=""
2001                 #
2002                 # Don't unmount/remount the OSTs if we don't need to do that.
2003                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
2004                 # update too, until that use mount/ll_decode_filter_fid/mount.
2005                 # Re-enable when debugfs will understand new filter_fid.
2006                 #
2007                 if [ $(facet_fstype ost$ost) == ldiskfs ]; then
2008                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
2009                                 $dev 2>/dev/null" | grep "parent=")
2010                 fi
2011                 if [ -z "$ff" ]; then
2012                         stop ost$ost
2013                         mount_fstype ost$ost
2014                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
2015                                 $(facet_mntpt ost$ost)/$obj_file)
2016                         unmount_fstype ost$ost
2017                         start ost$ost $dev $OST_MOUNT_OPTS
2018                         clients_up
2019                 fi
2020
2021                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
2022
2023                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
2024
2025                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
2026                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
2027                 #
2028                 # fid: parent=[0x200000400:0x1e:0x0] stripe=1 stripe_count=2 \
2029                 #       stripe_size=1048576 component_id=1 component_start=0 \
2030                 #       component_end=33554432
2031                 local ff_parent=$(sed -e 's/.*parent=.//' <<<$ff)
2032                 local ff_pseq=$(cut -d: -f1 <<<$ff_parent)
2033                 local ff_poid=$(cut -d: -f2 <<<$ff_parent)
2034                 local ff_pstripe
2035                 if grep -q 'stripe=' <<<$ff; then
2036                         ff_pstripe=$(sed -e 's/.*stripe=//' -e 's/ .*//' <<<$ff)
2037                 else
2038                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
2039                         # into f_ver in this case.  See comment on ff_parent.
2040                         ff_pstripe=$(cut -d: -f3 <<<$ff_parent | sed -e 's/]//')
2041                 fi
2042
2043                 # compare lmm_seq and filter_fid->ff_parent.f_seq
2044                 [ $ff_pseq = $lmm_seq ] ||
2045                         error "FF parent SEQ $ff_pseq != $lmm_seq"
2046                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
2047                 [ $ff_poid = $lmm_oid ] ||
2048                         error "FF parent OID $ff_poid != $lmm_oid"
2049                 (($ff_pstripe == $stripe_nr)) ||
2050                         error "FF stripe $ff_pstripe != $stripe_nr"
2051
2052                 stripe_nr=$((stripe_nr + 1))
2053                 [ $CLIENT_VERSION -lt $(version_code 2.9.55) ] &&
2054                         continue
2055                 if grep -q 'stripe_count=' <<<$ff; then
2056                         local ff_scnt=$(sed -e 's/.*stripe_count=//' \
2057                                             -e 's/ .*//' <<<$ff)
2058                         [ $lmm_count = $ff_scnt ] ||
2059                                 error "FF stripe count $lmm_count != $ff_scnt"
2060                 fi
2061         done
2062 }
2063
2064 test_27z() {
2065         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2066         remote_ost_nodsh && skip "remote OST with nodsh"
2067
2068         test_mkdir $DIR/$tdir
2069         $LFS setstripe -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
2070                 { error "setstripe -c -1 failed"; return 1; }
2071         # We need to send a write to every object to get parent FID info set.
2072         # This _should_ also work for setattr, but does not currently.
2073         # touch $DIR/$tdir/$tfile-1 ||
2074         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
2075                 { error "dd $tfile-1 failed"; return 2; }
2076         $LFS setstripe -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
2077                 { error "setstripe -c -1 failed"; return 3; }
2078         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
2079                 { error "dd $tfile-2 failed"; return 4; }
2080
2081         # make sure write RPCs have been sent to OSTs
2082         sync; sleep 5; sync
2083
2084         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
2085         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
2086 }
2087 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
2088
2089 test_27A() { # b=19102
2090         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2091
2092         save_layout_restore_at_exit $MOUNT
2093         $LFS setstripe -c 0 -i -1 -S 0 $MOUNT
2094         wait_update $HOSTNAME "$LFS getstripe -c $MOUNT | sed 's/  *//g'" "1" 20 ||
2095                 error "stripe count $($LFS getstripe -c $MOUNT) != 1"
2096         local default_size=$($LFS getstripe -S $MOUNT)
2097         local default_offset=$($LFS getstripe -i $MOUNT)
2098         local dsize=$(do_facet $SINGLEMDS \
2099                 "$LCTL get_param -n lod.$(facet_svc $SINGLEMDS)*.stripesize")
2100         [ $default_size -eq $dsize ] ||
2101                 error "stripe size $default_size != $dsize"
2102         [ $default_offset -eq -1 ] ||
2103                 error "stripe offset $default_offset != -1"
2104 }
2105 run_test 27A "check filesystem-wide default LOV EA values"
2106
2107 test_27B() { # LU-2523
2108         test_mkdir $DIR/$tdir
2109         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
2110         touch $DIR/$tdir/f0
2111         # open f1 with O_LOV_DELAY_CREATE
2112         # rename f0 onto f1
2113         # call setstripe ioctl on open file descriptor for f1
2114         # close
2115         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
2116                 $DIR/$tdir/f0
2117
2118         rm -f $DIR/$tdir/f1
2119         # open f1 with O_LOV_DELAY_CREATE
2120         # unlink f1
2121         # call setstripe ioctl on open file descriptor for f1
2122         # close
2123         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
2124
2125         # Allow multiop to fail in imitation of NFS's busted semantics.
2126         true
2127 }
2128 run_test 27B "call setstripe on open unlinked file/rename victim"
2129
2130 test_27C() { #LU-2871
2131         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2132
2133         declare -a ost_idx
2134         local index
2135         local found
2136         local i
2137         local j
2138
2139         test_mkdir $DIR/$tdir
2140         cd $DIR/$tdir
2141         for i in $(seq 0 $((OSTCOUNT - 1))); do
2142                 # set stripe across all OSTs starting from OST$i
2143                 $LFS setstripe -i $i -c -1 $tfile$i
2144                 # get striping information
2145                 ost_idx=($($LFS getstripe $tfile$i |
2146                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2147                 echo ${ost_idx[@]}
2148
2149                 # check the layout
2150                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2151                         error "${#ost_idx[@]} != $OSTCOUNT"
2152
2153                 for index in $(seq 0 $((OSTCOUNT - 1))); do
2154                         found=0
2155                         for j in $(echo ${ost_idx[@]}); do
2156                                 if [ $index -eq $j ]; then
2157                                         found=1
2158                                         break
2159                                 fi
2160                         done
2161                         [ $found = 1 ] ||
2162                                 error "Can not find $index in ${ost_idx[@]}"
2163                 done
2164         done
2165 }
2166 run_test 27C "check full striping across all OSTs"
2167
2168 test_27D() {
2169         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
2170         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
2171         remote_mds_nodsh && skip "remote MDS with nodsh"
2172
2173         local POOL=${POOL:-testpool}
2174         local first_ost=0
2175         local last_ost=$(($OSTCOUNT - 1))
2176         local ost_step=1
2177         local ost_list=$(seq $first_ost $ost_step $last_ost)
2178         local ost_range="$first_ost $last_ost $ost_step"
2179
2180         if ! combined_mgs_mds ; then
2181                 mount_mgs_client
2182         fi
2183
2184         test_mkdir $DIR/$tdir
2185         pool_add $POOL || error "pool_add failed"
2186         pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2187
2188         local skip27D
2189         [ $MDS1_VERSION -lt $(version_code 2.8.55) ] &&
2190                 skip27D+="-s 29"
2191         [ $MDS1_VERSION -lt $(version_code 2.9.55) -o \
2192           $CLIENT_VERSION -lt $(version_code 2.9.55) ] &&
2193                 skip27D+=" -s 30,31"
2194         llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT $skip27D ||
2195                 error "llapi_layout_test failed"
2196
2197         destroy_test_pools || error "destroy test pools failed"
2198
2199         if ! combined_mgs_mds ; then
2200                 umount_mgs_client
2201         fi
2202 }
2203 run_test 27D "validate llapi_layout API"
2204
2205 # Verify that default_easize is increased from its initial value after
2206 # accessing a widely striped file.
2207 test_27E() {
2208         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
2209         [ $CLIENT_VERSION -lt $(version_code 2.5.57) ] &&
2210                 skip "client does not have LU-3338 fix"
2211
2212         # 72 bytes is the minimum space required to store striping
2213         # information for a file striped across one OST:
2214         # (sizeof(struct lov_user_md_v3) +
2215         #  sizeof(struct lov_user_ost_data_v1))
2216         local min_easize=72
2217         $LCTL set_param -n llite.*.default_easize $min_easize ||
2218                 error "lctl set_param failed"
2219         local easize=$($LCTL get_param -n llite.*.default_easize)
2220
2221         [ $easize -eq $min_easize ] ||
2222                 error "failed to set default_easize"
2223
2224         $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2225                 error "setstripe failed"
2226         cat $DIR/$tfile
2227         rm $DIR/$tfile
2228
2229         easize=$($LCTL get_param -n llite.*.default_easize)
2230
2231         [ $easize -gt $min_easize ] ||
2232                 error "default_easize not updated"
2233 }
2234 run_test 27E "check that default extended attribute size properly increases"
2235
2236 test_27F() { # LU-5346/LU-7975
2237         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2238         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs"
2239         [[ $MDS1_VERSION -lt $(version_code 2.8.51) ]] &&
2240                 skip "Need MDS version at least 2.8.51"
2241         remote_ost_nodsh && skip "remote OST with nodsh"
2242
2243         test_mkdir $DIR/$tdir
2244         rm -f $DIR/$tdir/f0
2245         $LFS setstripe -c 2 $DIR/$tdir
2246
2247         # stop all OSTs to reproduce situation for LU-7975 ticket
2248         for num in $(seq $OSTCOUNT); do
2249                 stop ost$num
2250         done
2251
2252         # open/create f0 with O_LOV_DELAY_CREATE
2253         # truncate f0 to a non-0 size
2254         # close
2255         multiop $DIR/$tdir/f0 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T1050000c
2256
2257         $CHECKSTAT -s 1050000 $DIR/$tdir/f0 || error "checkstat failed"
2258         # open/write it again to force delayed layout creation
2259         cat /etc/hosts > $DIR/$tdir/f0 &
2260         catpid=$!
2261
2262         # restart OSTs
2263         for num in $(seq $OSTCOUNT); do
2264                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
2265                         error "ost$num failed to start"
2266         done
2267
2268         wait $catpid || error "cat failed"
2269
2270         cmp /etc/hosts $DIR/$tdir/f0 || error "cmp failed"
2271         [[ $($LFS getstripe -c $DIR/$tdir/f0) == 2 ]] ||
2272                 error "wrong stripecount"
2273
2274 }
2275 run_test 27F "Client resend delayed layout creation with non-zero size"
2276
2277 test_27G() { #LU-10629
2278         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
2279         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2280         local POOL=${POOL:-testpool}
2281         local ostrange="0 0 1"
2282
2283         test_mkdir $DIR/$tdir
2284         pool_add $POOL || error "pool_add failed"
2285         pool_add_targets $POOL $ostrange || error "pool_add_targets failed"
2286         $LFS setstripe -p $POOL $DIR/$tdir
2287
2288         local pool=$($LFS getstripe -p $DIR/$tdir)
2289
2290         [ "$pool" = "$POOL" ] || error "Striping failed got '$pool' not '$POOL'"
2291
2292         $LFS setstripe -d $DIR/$tdir
2293
2294         pool=$($LFS getstripe -p $DIR/$tdir)
2295
2296         rmdir $DIR/$tdir
2297
2298         [ -z "$pool" ] || error "'$pool' is not empty"
2299 }
2300 run_test 27G "Clear OST pool from stripe"
2301
2302 test_27H() {
2303         [[ $MDS1_VERSION -le $(version_code 2.11.54) ]] &&
2304                 skip "Need MDS version newer than 2.11.54"
2305         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
2306         test_mkdir $DIR/$tdir
2307         $LFS setstripe -o 0 -o 2 $DIR/$tdir || error "setstripe failed"
2308         touch $DIR/$tdir/$tfile
2309         $LFS getstripe -c $DIR/$tdir/$tfile
2310         [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
2311                 error "two-stripe file doesn't have two stripes"
2312
2313         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
2314         $LFS getstripe -y $DIR/$tdir/$tfile
2315         (( $($LFS getstripe -y $DIR/$tdir/$tfile |
2316              egrep -c "l_ost_idx: [02]$") == "2" )) ||
2317                 error "expected l_ost_idx: [02]$ not matched"
2318
2319         # make sure ost list has been cleared
2320         local stripesize=$($LFS getstripe -S $DIR/$tdir)
2321         $LFS setstripe -S $((stripesize * 4)) -i 1 \
2322                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
2323         touch $DIR/$tdir/f3
2324         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
2325 }
2326 run_test 27H "Set specific OSTs stripe"
2327
2328 # createtest also checks that device nodes are created and
2329 # then visible correctly (#2091)
2330 test_28() { # bug 2091
2331         test_mkdir $DIR/d28
2332         $CREATETEST $DIR/d28/ct || error "createtest failed"
2333 }
2334 run_test 28 "create/mknod/mkdir with bad file types ============"
2335
2336 test_29() {
2337         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2338
2339         sync; sleep 1; sync # flush out any dirty pages from previous tests
2340         cancel_lru_locks
2341         test_mkdir $DIR/d29
2342         touch $DIR/d29/foo
2343         log 'first d29'
2344         ls -l $DIR/d29
2345
2346         declare -i LOCKCOUNTORIG=0
2347         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2348                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2349         done
2350         [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
2351
2352         declare -i LOCKUNUSEDCOUNTORIG=0
2353         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2354                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2355         done
2356
2357         log 'second d29'
2358         ls -l $DIR/d29
2359         log 'done'
2360
2361         declare -i LOCKCOUNTCURRENT=0
2362         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2363                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2364         done
2365
2366         declare -i LOCKUNUSEDCOUNTCURRENT=0
2367         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2368                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2369         done
2370
2371         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2372                 $LCTL set_param -n ldlm.dump_namespaces ""
2373                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2374                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2375                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2376                 return 2
2377         fi
2378         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2379                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2380                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2381                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2382                 return 3
2383         fi
2384 }
2385 run_test 29 "IT_GETATTR regression  ============================"
2386
2387 test_30a() { # was test_30
2388         cp $(which ls) $DIR || cp /bin/ls $DIR
2389         $DIR/ls / || error "Can't execute binary from lustre"
2390         rm $DIR/ls
2391 }
2392 run_test 30a "execute binary from Lustre (execve) =============="
2393
2394 test_30b() {
2395         cp `which ls` $DIR || cp /bin/ls $DIR
2396         chmod go+rx $DIR/ls
2397         $RUNAS $DIR/ls / || error "Can't execute binary from lustre as non-root"
2398         rm $DIR/ls
2399 }
2400 run_test 30b "execute binary from Lustre as non-root ==========="
2401
2402 test_30c() { # b=22376
2403         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2404
2405         cp `which ls` $DIR || cp /bin/ls $DIR
2406         chmod a-rw $DIR/ls
2407         cancel_lru_locks mdc
2408         cancel_lru_locks osc
2409         $RUNAS $DIR/ls / || error "Can't execute binary from lustre"
2410         rm -f $DIR/ls
2411 }
2412 run_test 30c "execute binary from Lustre without read perms ===="
2413
2414 test_31a() {
2415         $OPENUNLINK $DIR/f31 $DIR/f31 || error "openunlink failed"
2416         $CHECKSTAT -a $DIR/f31 || error "$DIR/f31 exists"
2417 }
2418 run_test 31a "open-unlink file =================================="
2419
2420 test_31b() {
2421         touch $DIR/f31 || error "touch $DIR/f31 failed"
2422         ln $DIR/f31 $DIR/f31b || error "ln failed"
2423         $MULTIOP $DIR/f31b Ouc || error "multiop failed"
2424         $CHECKSTAT -t file $DIR/f31 || error "$DIR/f31 not file type"
2425 }
2426 run_test 31b "unlink file with multiple links while open ======="
2427
2428 test_31c() {
2429         touch $DIR/f31 || error "touch $DIR/f31 failed"
2430         ln $DIR/f31 $DIR/f31c || error "ln failed"
2431         multiop_bg_pause $DIR/f31 O_uc ||
2432                 error "multiop_bg_pause for $DIR/f31 failed"
2433         MULTIPID=$!
2434         $MULTIOP $DIR/f31c Ouc
2435         kill -USR1 $MULTIPID
2436         wait $MULTIPID
2437 }
2438 run_test 31c "open-unlink file with multiple links ============="
2439
2440 test_31d() {
2441         opendirunlink $DIR/d31d $DIR/d31d || error "opendirunlink failed"
2442         $CHECKSTAT -a $DIR/d31d || error "$DIR/d31d exists"
2443 }
2444 run_test 31d "remove of open directory ========================="
2445
2446 test_31e() { # bug 2904
2447         openfilleddirunlink $DIR/d31e || error "openfilleddirunlink failed"
2448 }
2449 run_test 31e "remove of open non-empty directory ==============="
2450
2451 test_31f() { # bug 4554
2452         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2453
2454         set -vx
2455         test_mkdir $DIR/d31f
2456         $LFS setstripe -S 1048576 -c 1 $DIR/d31f
2457         cp /etc/hosts $DIR/d31f
2458         ls -l $DIR/d31f
2459         $LFS getstripe $DIR/d31f/hosts
2460         multiop_bg_pause $DIR/d31f D_c || return 1
2461         MULTIPID=$!
2462
2463         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2464         test_mkdir $DIR/d31f
2465         $LFS setstripe -S 1048576 -c 1 $DIR/d31f
2466         cp /etc/hosts $DIR/d31f
2467         ls -l $DIR/d31f
2468         $LFS getstripe $DIR/d31f/hosts
2469         multiop_bg_pause $DIR/d31f D_c || return 1
2470         MULTIPID2=$!
2471
2472         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2473         wait $MULTIPID || error "first opendir $MULTIPID failed"
2474
2475         sleep 6
2476
2477         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2478         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2479         set +vx
2480 }
2481 run_test 31f "remove of open directory with open-unlink file ==="
2482
2483 test_31g() {
2484         echo "-- cross directory link --"
2485         test_mkdir -c1 $DIR/${tdir}ga
2486         test_mkdir -c1 $DIR/${tdir}gb
2487         touch $DIR/${tdir}ga/f
2488         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2489         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2490         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2491         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2492         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2493 }
2494 run_test 31g "cross directory link==============="
2495
2496 test_31h() {
2497         echo "-- cross directory link --"
2498         test_mkdir -c1 $DIR/${tdir}
2499         test_mkdir -c1 $DIR/${tdir}/dir
2500         touch $DIR/${tdir}/f
2501         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2502         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2503         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2504         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2505         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2506 }
2507 run_test 31h "cross directory link under child==============="
2508
2509 test_31i() {
2510         echo "-- cross directory link --"
2511         test_mkdir -c1 $DIR/$tdir
2512         test_mkdir -c1 $DIR/$tdir/dir
2513         touch $DIR/$tdir/dir/f
2514         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2515         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2516         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2517         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2518         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2519 }
2520 run_test 31i "cross directory link under parent==============="
2521
2522 test_31j() {
2523         test_mkdir -c1 -p $DIR/$tdir
2524         test_mkdir -c1 -p $DIR/$tdir/dir1
2525         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2526         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2527         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2528         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2529         return 0
2530 }
2531 run_test 31j "link for directory==============="
2532
2533 test_31k() {
2534         test_mkdir -c1 -p $DIR/$tdir
2535         touch $DIR/$tdir/s
2536         touch $DIR/$tdir/exist
2537         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2538         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2539         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2540         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2541         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2542         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2543         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2544         return 0
2545 }
2546 run_test 31k "link to file: the same, non-existing, dir==============="
2547
2548 test_31m() {
2549         mkdir $DIR/d31m
2550         touch $DIR/d31m/s
2551         mkdir $DIR/d31m2
2552         touch $DIR/d31m2/exist
2553         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2554         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2555         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2556         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2557         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2558         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2559         return 0
2560 }
2561 run_test 31m "link to file: the same, non-existing, dir==============="
2562
2563 test_31n() {
2564         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2565         nlink=$(stat --format=%h $DIR/$tfile)
2566         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2567         local fd=$(free_fd)
2568         local cmd="exec $fd<$DIR/$tfile"
2569         eval $cmd
2570         cmd="exec $fd<&-"
2571         trap "eval $cmd" EXIT
2572         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2573         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2574         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2575         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2576         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2577         eval $cmd
2578 }
2579 run_test 31n "check link count of unlinked file"
2580
2581 link_one() {
2582         local TEMPNAME=$(mktemp $1_XXXXXX)
2583         mlink $TEMPNAME $1 2> /dev/null &&
2584                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2585         munlink $TEMPNAME
2586 }
2587
2588 test_31o() { # LU-2901
2589         test_mkdir $DIR/$tdir
2590         for LOOP in $(seq 100); do
2591                 rm -f $DIR/$tdir/$tfile*
2592                 for THREAD in $(seq 8); do
2593                         link_one $DIR/$tdir/$tfile.$LOOP &
2594                 done
2595                 wait
2596                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2597                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2598                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2599                         break || true
2600         done
2601 }
2602 run_test 31o "duplicate hard links with same filename"
2603
2604 test_31p() {
2605         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
2606
2607         test_mkdir $DIR/$tdir
2608         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2609         $LFS setdirstripe -D -c2 -H all_char $DIR/$tdir/striped_dir
2610
2611         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2612                 error "open unlink test1 failed"
2613         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2614                 error "open unlink test2 failed"
2615
2616         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2617                 error "test1 still exists"
2618         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2619                 error "test2 still exists"
2620 }
2621 run_test 31p "remove of open striped directory"
2622
2623 cleanup_test32_mount() {
2624         local rc=0
2625         trap 0
2626         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$//p')
2627         $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
2628         losetup -d $loopdev || true
2629         rm -rf $DIR/$tdir
2630         return $rc
2631 }
2632
2633 test_32a() {
2634         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2635
2636         echo "== more mountpoints and symlinks ================="
2637         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2638         trap cleanup_test32_mount EXIT
2639         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2640         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2641                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2642         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. ||
2643                 error "$DIR/$tdir/ext2-mountpoint/.. not dir type"
2644         cleanup_test32_mount
2645 }
2646 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2647
2648 test_32b() {
2649         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2650
2651         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2652         trap cleanup_test32_mount EXIT
2653         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2654         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2655                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2656         ls -al $DIR/$tdir/ext2-mountpoint/.. ||
2657                 error "Can't list $DIR/$tdir/ext2-mountpoint/.."
2658         cleanup_test32_mount
2659 }
2660 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2661
2662 test_32c() {
2663         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2664
2665         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2666         trap cleanup_test32_mount EXIT
2667         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2668         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2669                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2670         test_mkdir -p $DIR/$tdir/d2/test_dir
2671         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
2672                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_dir not dir type"
2673         cleanup_test32_mount
2674 }
2675 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2676
2677 test_32d() {
2678         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2679
2680         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2681         trap cleanup_test32_mount EXIT
2682         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2683         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2684                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2685         test_mkdir -p $DIR/$tdir/d2/test_dir
2686         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
2687                 error "Can't list $DIR/$tdir/ext2-mountpoint/../d2/test_dir"
2688         cleanup_test32_mount
2689 }
2690 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir"
2691
2692 test_32e() {
2693         rm -fr $DIR/$tdir
2694         test_mkdir -p $DIR/$tdir/tmp
2695         local tmp_dir=$DIR/$tdir/tmp
2696         ln -s $DIR/$tdir $tmp_dir/symlink11
2697         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2698         $CHECKSTAT -t link $DIR/$tdir/tmp/symlink11 || error "symlink11 bad"
2699         $CHECKSTAT -t link $DIR/$tdir/symlink01 || error "symlink01 bad"
2700 }
2701 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir"
2702
2703 test_32f() {
2704         rm -fr $DIR/$tdir
2705         test_mkdir -p $DIR/$tdir/tmp
2706         local tmp_dir=$DIR/$tdir/tmp
2707         ln -s $DIR/$tdir $tmp_dir/symlink11
2708         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2709         ls $DIR/$tdir/tmp/symlink11  || error "symlink11 bad"
2710         ls $DIR/$tdir/symlink01 || error "symlink01 bad"
2711 }
2712 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir"
2713
2714 test_32g() {
2715         local tmp_dir=$DIR/$tdir/tmp
2716         test_mkdir -p $tmp_dir
2717         test_mkdir $DIR/${tdir}2
2718         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2719         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2720         $CHECKSTAT -t link $tmp_dir/symlink12 || error "symlink12 not a link"
2721         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error "symlink02 not a link"
2722         $CHECKSTAT -t dir -f $tmp_dir/symlink12 || error "symlink12 not a dir"
2723         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error "symlink12 not a dir"
2724 }
2725 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2726
2727 test_32h() {
2728         rm -fr $DIR/$tdir $DIR/${tdir}2
2729         tmp_dir=$DIR/$tdir/tmp
2730         test_mkdir -p $tmp_dir
2731         test_mkdir $DIR/${tdir}2
2732         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2733         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2734         ls $tmp_dir/symlink12 || error "listing symlink12"
2735         ls $DIR/$tdir/symlink02  || error "listing symlink02"
2736 }
2737 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2738
2739 test_32i() {
2740         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2741
2742         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2743         trap cleanup_test32_mount EXIT
2744         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2745         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2746                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2747         touch $DIR/$tdir/test_file
2748         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file ||
2749                 error "$DIR/$tdir/ext2-mountpoint/../test_file not file type"
2750         cleanup_test32_mount
2751 }
2752 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2753
2754 test_32j() {
2755         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2756
2757         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2758         trap cleanup_test32_mount EXIT
2759         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2760         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2761                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2762         touch $DIR/$tdir/test_file
2763         cat $DIR/$tdir/ext2-mountpoint/../test_file ||
2764                 error "Can't open $DIR/$tdir/ext2-mountpoint/../test_file"
2765         cleanup_test32_mount
2766 }
2767 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2768
2769 test_32k() {
2770         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2771
2772         rm -fr $DIR/$tdir
2773         trap cleanup_test32_mount EXIT
2774         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2775         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2776                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2777         test_mkdir -p $DIR/$tdir/d2
2778         touch $DIR/$tdir/d2/test_file || error "touch failed"
2779         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
2780                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_file not file type"
2781         cleanup_test32_mount
2782 }
2783 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2784
2785 test_32l() {
2786         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2787
2788         rm -fr $DIR/$tdir
2789         trap cleanup_test32_mount EXIT
2790         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2791         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2792                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2793         test_mkdir -p $DIR/$tdir/d2
2794         touch $DIR/$tdir/d2/test_file || error "touch failed"
2795         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
2796                 error "Can't open $DIR/$tdir/ext2-mountpoint/../d2/test_file"
2797         cleanup_test32_mount
2798 }
2799 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2800
2801 test_32m() {
2802         rm -fr $DIR/d32m
2803         test_mkdir -p $DIR/d32m/tmp
2804         TMP_DIR=$DIR/d32m/tmp
2805         ln -s $DIR $TMP_DIR/symlink11
2806         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2807         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 ||
2808                 error "symlink11 not a link"
2809         $CHECKSTAT -t link $DIR/d32m/symlink01 ||
2810                 error "symlink01 not a link"
2811 }
2812 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2813
2814 test_32n() {
2815         rm -fr $DIR/d32n
2816         test_mkdir -p $DIR/d32n/tmp
2817         TMP_DIR=$DIR/d32n/tmp
2818         ln -s $DIR $TMP_DIR/symlink11
2819         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2820         ls -l $DIR/d32n/tmp/symlink11  || error "listing symlink11"
2821         ls -l $DIR/d32n/symlink01 || error "listing symlink01"
2822 }
2823 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2824
2825 test_32o() {
2826         touch $DIR/$tfile
2827         test_mkdir -p $DIR/d32o/tmp
2828         TMP_DIR=$DIR/d32o/tmp
2829         ln -s $DIR/$tfile $TMP_DIR/symlink12
2830         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2831         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 ||
2832                 error "symlink12 not a link"
2833         $CHECKSTAT -t link $DIR/d32o/symlink02 || error "symlink02 not a link"
2834         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 ||
2835                 error "$DIR/d32o/tmp/symlink12 not file type"
2836         $CHECKSTAT -t file -f $DIR/d32o/symlink02 ||
2837                 error "$DIR/d32o/symlink02 not file type"
2838 }
2839 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2840
2841 test_32p() {
2842         log 32p_1
2843         rm -fr $DIR/d32p
2844         log 32p_2
2845         rm -f $DIR/$tfile
2846         log 32p_3
2847         touch $DIR/$tfile
2848         log 32p_4
2849         test_mkdir -p $DIR/d32p/tmp
2850         log 32p_5
2851         TMP_DIR=$DIR/d32p/tmp
2852         log 32p_6
2853         ln -s $DIR/$tfile $TMP_DIR/symlink12
2854         log 32p_7
2855         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2856         log 32p_8
2857         cat $DIR/d32p/tmp/symlink12 ||
2858                 error "Can't open $DIR/d32p/tmp/symlink12"
2859         log 32p_9
2860         cat $DIR/d32p/symlink02 || error "Can't open $DIR/d32p/symlink02"
2861         log 32p_10
2862 }
2863 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2864
2865 test_32q() {
2866         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2867
2868         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2869         trap cleanup_test32_mount EXIT
2870         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2871         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
2872         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2873                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2874         ls $DIR/$tdir/ext2-mountpoint | grep "\<under_the_mount\>" && error
2875         cleanup_test32_mount
2876 }
2877 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2878
2879 test_32r() {
2880         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2881
2882         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2883         trap cleanup_test32_mount EXIT
2884         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2885         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
2886         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2887                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2888         ls $DIR/$tdir/ext2-mountpoint | grep -q under_the_mount && error || true
2889         cleanup_test32_mount
2890 }
2891 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2892
2893 test_33aa() {
2894         rm -f $DIR/$tfile
2895         touch $DIR/$tfile
2896         chmod 444 $DIR/$tfile
2897         chown $RUNAS_ID $DIR/$tfile
2898         log 33_1
2899         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2900         log 33_2
2901 }
2902 run_test 33aa "write file with mode 444 (should return error)"
2903
2904 test_33a() {
2905         rm -fr $DIR/$tdir
2906         test_mkdir $DIR/$tdir
2907         chown $RUNAS_ID $DIR/$tdir
2908         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile ||
2909                 error "$RUNAS create $tdir/$tfile failed"
2910         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile &&
2911                 error "open RDWR" || true
2912 }
2913 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2914
2915 test_33b() {
2916         rm -fr $DIR/$tdir
2917         test_mkdir $DIR/$tdir
2918         chown $RUNAS_ID $DIR/$tdir
2919         $RUNAS $OPENFILE -f 1286739555 $DIR/$tdir/$tfile || true
2920 }
2921 run_test 33b "test open file with malformed flags (No panic)"
2922
2923 test_33c() {
2924         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2925         remote_ost_nodsh && skip "remote OST with nodsh"
2926
2927         local ostnum
2928         local ostname
2929         local write_bytes
2930         local all_zeros
2931
2932         all_zeros=:
2933         rm -fr $DIR/$tdir
2934         test_mkdir $DIR/$tdir
2935         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2936
2937         sync
2938         for ostnum in $(seq $OSTCOUNT); do
2939                 # test-framework's OST numbering is one-based, while Lustre's
2940                 # is zero-based
2941                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2942                 # Parsing llobdstat's output sucks; we could grep the /proc
2943                 # path, but that's likely to not be as portable as using the
2944                 # llobdstat utility.  So we parse lctl output instead.
2945                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2946                         obdfilter/$ostname/stats |
2947                         awk '/^write_bytes/ {print $7}' )
2948                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2949                 if (( ${write_bytes:-0} > 0 ))
2950                 then
2951                         all_zeros=false
2952                         break;
2953                 fi
2954         done
2955
2956         $all_zeros || return 0
2957
2958         # Write four bytes
2959         echo foo > $DIR/$tdir/bar
2960         # Really write them
2961         sync
2962
2963         # Total up write_bytes after writing.  We'd better find non-zeros.
2964         for ostnum in $(seq $OSTCOUNT); do
2965                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2966                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2967                         obdfilter/$ostname/stats |
2968                         awk '/^write_bytes/ {print $7}' )
2969                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2970                 if (( ${write_bytes:-0} > 0 ))
2971                 then
2972                         all_zeros=false
2973                         break;
2974                 fi
2975         done
2976
2977         if $all_zeros
2978         then
2979                 for ostnum in $(seq $OSTCOUNT); do
2980                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2981                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2982                         do_facet ost$ostnum lctl get_param -n \
2983                                 obdfilter/$ostname/stats
2984                 done
2985                 error "OST not keeping write_bytes stats (b22312)"
2986         fi
2987 }
2988 run_test 33c "test llobdstat and write_bytes"
2989
2990 test_33d() {
2991         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
2992         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2993
2994         local MDTIDX=1
2995         local remote_dir=$DIR/$tdir/remote_dir
2996
2997         test_mkdir $DIR/$tdir
2998         $LFS mkdir -i $MDTIDX $remote_dir ||
2999                 error "create remote directory failed"
3000
3001         touch $remote_dir/$tfile
3002         chmod 444 $remote_dir/$tfile
3003         chown $RUNAS_ID $remote_dir/$tfile
3004
3005         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
3006
3007         chown $RUNAS_ID $remote_dir
3008         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
3009                                         error "create" || true
3010         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
3011                                     error "open RDWR" || true
3012         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
3013 }
3014 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
3015
3016 test_33e() {
3017         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3018
3019         mkdir $DIR/$tdir
3020
3021         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3022         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3023         mkdir $DIR/$tdir/local_dir
3024
3025         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3026         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3027         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3028
3029         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3030                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
3031
3032         rmdir $DIR/$tdir/* || error "rmdir failed"
3033
3034         umask 777
3035         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3036         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3037         mkdir $DIR/$tdir/local_dir
3038
3039         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3040         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3041         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3042
3043         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3044                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
3045
3046         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
3047
3048         umask 000
3049         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3050         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3051         mkdir $DIR/$tdir/local_dir
3052
3053         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3054         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3055         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3056
3057         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3058                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
3059 }
3060 run_test 33e "mkdir and striped directory should have same mode"
3061
3062 cleanup_33f() {
3063         trap 0
3064         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
3065 }
3066
3067 test_33f() {
3068         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3069         remote_mds_nodsh && skip "remote MDS with nodsh"
3070
3071         mkdir $DIR/$tdir
3072         chmod go+rwx $DIR/$tdir
3073         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
3074         trap cleanup_33f EXIT
3075
3076         $RUNAS lfs mkdir -i 0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
3077                 error "cannot create striped directory"
3078
3079         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
3080                 error "cannot create files in striped directory"
3081
3082         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
3083                 error "cannot remove files in striped directory"
3084
3085         $RUNAS rmdir $DIR/$tdir/striped_dir ||
3086                 error "cannot remove striped directory"
3087
3088         cleanup_33f
3089 }
3090 run_test 33f "nonroot user can create, access, and remove a striped directory"
3091
3092 test_33g() {
3093         mkdir -p $DIR/$tdir/dir2
3094
3095         local err=$($RUNAS mkdir $DIR/$tdir/dir2 2>&1)
3096         echo $err
3097         [[ $err =~ "exists" ]] || error "Not exists error"
3098 }
3099 run_test 33g "nonroot user create already existing root created file"
3100
3101 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
3102 test_34a() {
3103         rm -f $DIR/f34
3104         $MCREATE $DIR/f34 || error "mcreate failed"
3105         $LFS getstripe $DIR/f34 2>&1 | grep -q "no stripe info" ||
3106                 error "getstripe failed"
3107         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error "truncate failed"
3108         $LFS getstripe $DIR/f34 2>&1 | grep -q "no stripe info" ||
3109                 error "getstripe failed"
3110         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3111                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3112 }
3113 run_test 34a "truncate file that has not been opened ==========="
3114
3115 test_34b() {
3116         [ ! -f $DIR/f34 ] && test_34a
3117         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3118                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3119         $OPENFILE -f O_RDONLY $DIR/f34
3120         $LFS getstripe $DIR/f34 2>&1 | grep -q "no stripe info" ||
3121                 error "getstripe failed"
3122         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3123                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3124 }
3125 run_test 34b "O_RDONLY opening file doesn't create objects ====="
3126
3127 test_34c() {
3128         [ ! -f $DIR/f34 ] && test_34a
3129         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3130                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3131         $OPENFILE -f O_RDWR $DIR/f34
3132         $LFS getstripe $DIR/f34 2>&1 | grep -q "no stripe info" &&
3133                 error "$LFS getstripe failed"
3134         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3135                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3136 }
3137 run_test 34c "O_RDWR opening file-with-size works =============="
3138
3139 test_34d() {
3140         [ ! -f $DIR/f34 ] && test_34a
3141         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 ||
3142                 error "dd failed"
3143         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3144                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3145         rm $DIR/f34
3146 }
3147 run_test 34d "write to sparse file ============================="
3148
3149 test_34e() {
3150         rm -f $DIR/f34e
3151         $MCREATE $DIR/f34e || error "mcreate failed"
3152         $TRUNCATE $DIR/f34e 1000 || error "truncate failed"
3153         $CHECKSTAT -s 1000 $DIR/f34e ||
3154                 error "Size of $DIR/f34e not equal to 1000 bytes"
3155         $OPENFILE -f O_RDWR $DIR/f34e
3156         $CHECKSTAT -s 1000 $DIR/f34e ||
3157                 error "Size of $DIR/f34e not equal to 1000 bytes"
3158 }
3159 run_test 34e "create objects, some with size and some without =="
3160
3161 test_34f() { # bug 6242, 6243
3162         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3163
3164         SIZE34F=48000
3165         rm -f $DIR/f34f
3166         $MCREATE $DIR/f34f || error "mcreate failed"
3167         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
3168         dd if=$DIR/f34f of=$TMP/f34f
3169         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
3170         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
3171         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
3172         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
3173         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
3174 }
3175 run_test 34f "read from a file with no objects until EOF ======="
3176
3177 test_34g() {
3178         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3179
3180         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE ||
3181                 error "dd failed"
3182         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error "truncate failed"
3183         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
3184                 error "Size of $DIR/$tfile not equal to $((TEST_34_SIZE / 2))"
3185         cancel_lru_locks osc
3186         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
3187                 error "wrong size after lock cancel"
3188
3189         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error "truncate failed"
3190         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
3191                 error "expanding truncate failed"
3192         cancel_lru_locks osc
3193         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
3194                 error "wrong expanded size after lock cancel"
3195 }
3196 run_test 34g "truncate long file ==============================="
3197
3198 test_34h() {
3199         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3200
3201         local gid=10
3202         local sz=1000
3203
3204         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error "dd failed"
3205         sync # Flush the cache so that multiop below does not block on cache
3206              # flush when getting the group lock
3207         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
3208         MULTIPID=$!
3209
3210         # Since just timed wait is not good enough, let's do a sync write
3211         # that way we are sure enough time for a roundtrip + processing
3212         # passed + 2 seconds of extra margin.
3213         dd if=/dev/zero of=$DIR/${tfile}-1 bs=$PAGE_SIZE oflag=direct count=1
3214         rm $DIR/${tfile}-1
3215         sleep 2
3216
3217         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
3218                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
3219                 kill -9 $MULTIPID
3220         fi
3221         wait $MULTIPID
3222         local nsz=`stat -c %s $DIR/$tfile`
3223         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
3224 }
3225 run_test 34h "ftruncate file under grouplock should not block"
3226
3227 test_35a() {
3228         cp /bin/sh $DIR/f35a
3229         chmod 444 $DIR/f35a
3230         chown $RUNAS_ID $DIR/f35a
3231         $RUNAS $DIR/f35a && error || true
3232         rm $DIR/f35a
3233 }
3234 run_test 35a "exec file with mode 444 (should return and not leak)"
3235
3236 test_36a() {
3237         rm -f $DIR/f36
3238         utime $DIR/f36 || error "utime failed for MDS"
3239 }
3240 run_test 36a "MDS utime check (mknod, utime)"
3241
3242 test_36b() {
3243         echo "" > $DIR/f36
3244         utime $DIR/f36 || error "utime failed for OST"
3245 }
3246 run_test 36b "OST utime check (open, utime)"
3247
3248 test_36c() {
3249         rm -f $DIR/d36/f36
3250         test_mkdir $DIR/d36
3251         chown $RUNAS_ID $DIR/d36
3252         $RUNAS utime $DIR/d36/f36 || error "utime failed for MDS as non-root"
3253 }
3254 run_test 36c "non-root MDS utime check (mknod, utime)"
3255
3256 test_36d() {
3257         [ ! -d $DIR/d36 ] && test_36c
3258         echo "" > $DIR/d36/f36
3259         $RUNAS utime $DIR/d36/f36 || error "utime failed for OST as non-root"
3260 }
3261 run_test 36d "non-root OST utime check (open, utime)"
3262
3263 test_36e() {
3264         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping"
3265
3266         test_mkdir $DIR/$tdir
3267         touch $DIR/$tdir/$tfile
3268         $RUNAS utime $DIR/$tdir/$tfile &&
3269                 error "utime worked, expected failure" || true
3270 }
3271 run_test 36e "utime on non-owned file (should return error)"
3272
3273 subr_36fh() {
3274         local fl="$1"
3275         local LANG_SAVE=$LANG
3276         local LC_LANG_SAVE=$LC_LANG
3277         export LANG=C LC_LANG=C # for date language
3278
3279         DATESTR="Dec 20  2000"
3280         test_mkdir $DIR/$tdir
3281         lctl set_param fail_loc=$fl
3282         date; date +%s
3283         cp /etc/hosts $DIR/$tdir/$tfile
3284         sync & # write RPC generated with "current" inode timestamp, but delayed
3285         sleep 1
3286         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
3287         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
3288         cancel_lru_locks osc
3289         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
3290         date; date +%s
3291         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
3292                 echo "BEFORE: $LS_BEFORE" && \
3293                 echo "AFTER : $LS_AFTER" && \
3294                 echo "WANT  : $DATESTR" && \
3295                 error "$DIR/$tdir/$tfile timestamps changed" || true
3296
3297         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
3298 }
3299
3300 test_36f() {
3301         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3302
3303         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
3304         subr_36fh "0x80000214"
3305 }
3306 run_test 36f "utime on file racing with OST BRW write =========="
3307
3308 test_36g() {
3309         remote_ost_nodsh && skip "remote OST with nodsh"
3310         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3311
3312         local fmd_max_age
3313         local fmd_before
3314         local fmd_after
3315
3316         test_mkdir $DIR/$tdir
3317         fmd_max_age=$(do_facet ost1 \
3318                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
3319                 head -n 1")
3320
3321         fmd_before=$(do_facet ost1 \
3322                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3323         touch $DIR/$tdir/$tfile
3324         sleep $((fmd_max_age + 12))
3325         fmd_after=$(do_facet ost1 \
3326                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3327
3328         echo "fmd_before: $fmd_before"
3329         echo "fmd_after: $fmd_after"
3330         [[ $fmd_after -gt $fmd_before ]] &&
3331                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" &&
3332                 error "fmd didn't expire after ping" || true
3333 }
3334 run_test 36g "filter mod data cache expiry ====================="
3335
3336 test_36h() {
3337         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3338
3339         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
3340         subr_36fh "0x80000227"
3341 }
3342 run_test 36h "utime on file racing with OST BRW write =========="
3343
3344 test_36i() {
3345         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3346
3347         test_mkdir $DIR/$tdir
3348         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3349
3350         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3351         local new_mtime=$((mtime + 200))
3352
3353         #change Modify time of striped dir
3354         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3355                         error "change mtime failed"
3356
3357         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3358
3359         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3360 }
3361 run_test 36i "change mtime on striped directory"
3362
3363 # test_37 - duplicate with tests 32q 32r
3364
3365 test_38() {
3366         local file=$DIR/$tfile
3367         touch $file
3368         openfile -f O_DIRECTORY $file
3369         local RC=$?
3370         local ENOTDIR=20
3371         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3372         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3373 }
3374 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3375
3376 test_39a() { # was test_39
3377         touch $DIR/$tfile
3378         touch $DIR/${tfile}2
3379 #       ls -l  $DIR/$tfile $DIR/${tfile}2
3380 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
3381 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
3382         sleep 2
3383         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3384         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3385                 echo "mtime"
3386                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3387                 echo "atime"
3388                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3389                 echo "ctime"
3390                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3391                 error "O_TRUNC didn't change timestamps"
3392         fi
3393 }
3394 run_test 39a "mtime changed on create"
3395
3396 test_39b() {
3397         test_mkdir -c1 $DIR/$tdir
3398         cp -p /etc/passwd $DIR/$tdir/fopen
3399         cp -p /etc/passwd $DIR/$tdir/flink
3400         cp -p /etc/passwd $DIR/$tdir/funlink
3401         cp -p /etc/passwd $DIR/$tdir/frename
3402         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3403
3404         sleep 1
3405         echo "aaaaaa" >> $DIR/$tdir/fopen
3406         echo "aaaaaa" >> $DIR/$tdir/flink
3407         echo "aaaaaa" >> $DIR/$tdir/funlink
3408         echo "aaaaaa" >> $DIR/$tdir/frename
3409
3410         local open_new=`stat -c %Y $DIR/$tdir/fopen`
3411         local link_new=`stat -c %Y $DIR/$tdir/flink`
3412         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3413         local rename_new=`stat -c %Y $DIR/$tdir/frename`
3414
3415         cat $DIR/$tdir/fopen > /dev/null
3416         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3417         rm -f $DIR/$tdir/funlink2
3418         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3419
3420         for (( i=0; i < 2; i++ )) ; do
3421                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3422                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3423                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3424                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3425
3426                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3427                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3428                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3429                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3430
3431                 cancel_lru_locks osc
3432                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3433         done
3434 }
3435 run_test 39b "mtime change on open, link, unlink, rename  ======"
3436
3437 # this should be set to past
3438 TEST_39_MTIME=`date -d "1 year ago" +%s`
3439
3440 # bug 11063
3441 test_39c() {
3442         touch $DIR1/$tfile
3443         sleep 2
3444         local mtime0=`stat -c %Y $DIR1/$tfile`
3445
3446         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3447         local mtime1=`stat -c %Y $DIR1/$tfile`
3448         [ "$mtime1" = $TEST_39_MTIME ] || \
3449                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3450
3451         local d1=`date +%s`
3452         echo hello >> $DIR1/$tfile
3453         local d2=`date +%s`
3454         local mtime2=`stat -c %Y $DIR1/$tfile`
3455         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3456                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3457
3458         mv $DIR1/$tfile $DIR1/$tfile-1
3459
3460         for (( i=0; i < 2; i++ )) ; do
3461                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3462                 [ "$mtime2" = "$mtime3" ] || \
3463                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3464
3465                 cancel_lru_locks osc
3466                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3467         done
3468 }
3469 run_test 39c "mtime change on rename ==========================="
3470
3471 # bug 21114
3472 test_39d() {
3473         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3474
3475         touch $DIR1/$tfile
3476         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3477
3478         for (( i=0; i < 2; i++ )) ; do
3479                 local mtime=`stat -c %Y $DIR1/$tfile`
3480                 [ $mtime = $TEST_39_MTIME ] || \
3481                         error "mtime($mtime) is not set to $TEST_39_MTIME"
3482
3483                 cancel_lru_locks osc
3484                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3485         done
3486 }
3487 run_test 39d "create, utime, stat =============================="
3488
3489 # bug 21114
3490 test_39e() {
3491         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3492
3493         touch $DIR1/$tfile
3494         local mtime1=`stat -c %Y $DIR1/$tfile`
3495
3496         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3497
3498         for (( i=0; i < 2; i++ )) ; do
3499                 local mtime2=`stat -c %Y $DIR1/$tfile`
3500                 [ $mtime2 = $TEST_39_MTIME ] || \
3501                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3502
3503                 cancel_lru_locks osc
3504                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3505         done
3506 }
3507 run_test 39e "create, stat, utime, stat ========================"
3508
3509 # bug 21114
3510 test_39f() {
3511         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3512
3513         touch $DIR1/$tfile
3514         mtime1=`stat -c %Y $DIR1/$tfile`
3515
3516         sleep 2
3517         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3518
3519         for (( i=0; i < 2; i++ )) ; do
3520                 local mtime2=`stat -c %Y $DIR1/$tfile`
3521                 [ $mtime2 = $TEST_39_MTIME ] || \
3522                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3523
3524                 cancel_lru_locks osc
3525                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3526         done
3527 }
3528 run_test 39f "create, stat, sleep, utime, stat ================="
3529
3530 # bug 11063
3531 test_39g() {
3532         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3533
3534         echo hello >> $DIR1/$tfile
3535         local mtime1=`stat -c %Y $DIR1/$tfile`
3536
3537         sleep 2
3538         chmod o+r $DIR1/$tfile
3539
3540         for (( i=0; i < 2; i++ )) ; do
3541                 local mtime2=`stat -c %Y $DIR1/$tfile`
3542                 [ "$mtime1" = "$mtime2" ] || \
3543                         error "lost mtime: $mtime2, should be $mtime1"
3544
3545                 cancel_lru_locks osc
3546                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3547         done
3548 }
3549 run_test 39g "write, chmod, stat ==============================="
3550
3551 # bug 11063
3552 test_39h() {
3553         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3554
3555         touch $DIR1/$tfile
3556         sleep 1
3557
3558         local d1=`date`
3559         echo hello >> $DIR1/$tfile
3560         local mtime1=`stat -c %Y $DIR1/$tfile`
3561
3562         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3563         local d2=`date`
3564         if [ "$d1" != "$d2" ]; then
3565                 echo "write and touch not within one second"
3566         else
3567                 for (( i=0; i < 2; i++ )) ; do
3568                         local mtime2=`stat -c %Y $DIR1/$tfile`
3569                         [ "$mtime2" = $TEST_39_MTIME ] || \
3570                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3571
3572                         cancel_lru_locks osc
3573                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3574                 done
3575         fi
3576 }
3577 run_test 39h "write, utime within one second, stat ============="
3578
3579 test_39i() {
3580         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3581
3582         touch $DIR1/$tfile
3583         sleep 1
3584
3585         echo hello >> $DIR1/$tfile
3586         local mtime1=`stat -c %Y $DIR1/$tfile`
3587
3588         mv $DIR1/$tfile $DIR1/$tfile-1
3589
3590         for (( i=0; i < 2; i++ )) ; do
3591                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3592
3593                 [ "$mtime1" = "$mtime2" ] || \
3594                         error "lost mtime: $mtime2, should be $mtime1"
3595
3596                 cancel_lru_locks osc
3597                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3598         done
3599 }
3600 run_test 39i "write, rename, stat =============================="
3601
3602 test_39j() {
3603         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3604
3605         start_full_debug_logging
3606         touch $DIR1/$tfile
3607         sleep 1
3608
3609         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3610         lctl set_param fail_loc=0x80000412
3611         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3612                 error "multiop failed"
3613         local multipid=$!
3614         local mtime1=`stat -c %Y $DIR1/$tfile`
3615
3616         mv $DIR1/$tfile $DIR1/$tfile-1
3617
3618         kill -USR1 $multipid
3619         wait $multipid || error "multiop close failed"
3620
3621         for (( i=0; i < 2; i++ )) ; do
3622                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3623                 [ "$mtime1" = "$mtime2" ] ||
3624                         error "mtime is lost on close: $mtime2, " \
3625                               "should be $mtime1"
3626
3627                 cancel_lru_locks osc
3628                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3629         done
3630         lctl set_param fail_loc=0
3631         stop_full_debug_logging
3632 }
3633 run_test 39j "write, rename, close, stat ======================="
3634
3635 test_39k() {
3636         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3637
3638         touch $DIR1/$tfile
3639         sleep 1
3640
3641         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3642         local multipid=$!
3643         local mtime1=`stat -c %Y $DIR1/$tfile`
3644
3645         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3646
3647         kill -USR1 $multipid
3648         wait $multipid || error "multiop close failed"
3649
3650         for (( i=0; i < 2; i++ )) ; do
3651                 local mtime2=`stat -c %Y $DIR1/$tfile`
3652
3653                 [ "$mtime2" = $TEST_39_MTIME ] || \
3654                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3655
3656                 cancel_lru_locks osc
3657                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3658         done
3659 }
3660 run_test 39k "write, utime, close, stat ========================"
3661
3662 # this should be set to future
3663 TEST_39_ATIME=`date -d "1 year" +%s`
3664
3665 test_39l() {
3666         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3667         remote_mds_nodsh && skip "remote MDS with nodsh"
3668
3669         local atime_diff=$(do_facet $SINGLEMDS \
3670                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3671         rm -rf $DIR/$tdir
3672         mkdir -p $DIR/$tdir
3673
3674         # test setting directory atime to future
3675         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3676         local atime=$(stat -c %X $DIR/$tdir)
3677         [ "$atime" = $TEST_39_ATIME ] ||
3678                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3679
3680         # test setting directory atime from future to now
3681         local now=$(date +%s)
3682         touch -a -d @$now $DIR/$tdir
3683
3684         atime=$(stat -c %X $DIR/$tdir)
3685         [ "$atime" -eq "$now"  ] ||
3686                 error "atime is not updated from future: $atime, $now"
3687
3688         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3689         sleep 3
3690
3691         # test setting directory atime when now > dir atime + atime_diff
3692         local d1=$(date +%s)
3693         ls $DIR/$tdir
3694         local d2=$(date +%s)
3695         cancel_lru_locks mdc
3696         atime=$(stat -c %X $DIR/$tdir)
3697         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3698                 error "atime is not updated  : $atime, should be $d2"
3699
3700         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3701         sleep 3
3702
3703         # test not setting directory atime when now < dir atime + atime_diff
3704         ls $DIR/$tdir
3705         cancel_lru_locks mdc
3706         atime=$(stat -c %X $DIR/$tdir)
3707         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3708                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3709
3710         do_facet $SINGLEMDS \
3711                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3712 }
3713 run_test 39l "directory atime update ==========================="
3714
3715 test_39m() {
3716         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3717
3718         touch $DIR1/$tfile
3719         sleep 2
3720         local far_past_mtime=$(date -d "May 29 1953" +%s)
3721         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3722
3723         touch -m -d @$far_past_mtime $DIR1/$tfile
3724         touch -a -d @$far_past_atime $DIR1/$tfile
3725
3726         for (( i=0; i < 2; i++ )) ; do
3727                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3728                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3729                         error "atime or mtime set incorrectly"
3730
3731                 cancel_lru_locks osc
3732                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3733         done
3734 }
3735 run_test 39m "test atime and mtime before 1970"
3736
3737 test_39n() { # LU-3832
3738         remote_mds_nodsh && skip "remote MDS with nodsh"
3739
3740         local atime_diff=$(do_facet $SINGLEMDS \
3741                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3742         local atime0
3743         local atime1
3744         local atime2
3745
3746         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3747
3748         rm -rf $DIR/$tfile
3749         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3750         atime0=$(stat -c %X $DIR/$tfile)
3751
3752         sleep 5
3753         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3754         atime1=$(stat -c %X $DIR/$tfile)
3755
3756         sleep 5
3757         cancel_lru_locks mdc
3758         cancel_lru_locks osc
3759         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3760         atime2=$(stat -c %X $DIR/$tfile)
3761
3762         do_facet $SINGLEMDS \
3763                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3764
3765         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3766         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3767 }
3768 run_test 39n "check that O_NOATIME is honored"
3769
3770 test_39o() {
3771         TESTDIR=$DIR/$tdir/$tfile
3772         [ -e $TESTDIR ] && rm -rf $TESTDIR
3773         mkdir -p $TESTDIR
3774         cd $TESTDIR
3775         links1=2
3776         ls
3777         mkdir a b
3778         ls
3779         links2=$(stat -c %h .)
3780         [ $(($links1 + 2)) != $links2 ] &&
3781                 error "wrong links count $(($links1 + 2)) != $links2"
3782         rmdir b
3783         links3=$(stat -c %h .)
3784         [ $(($links1 + 1)) != $links3 ] &&
3785                 error "wrong links count $links1 != $links3"
3786         return 0
3787 }
3788 run_test 39o "directory cached attributes updated after create"
3789
3790 test_39p() {
3791         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
3792
3793         local MDTIDX=1
3794         TESTDIR=$DIR/$tdir/$tdir
3795         [ -e $TESTDIR ] && rm -rf $TESTDIR
3796         test_mkdir -p $TESTDIR
3797         cd $TESTDIR
3798         links1=2
3799         ls
3800         test_mkdir -i $MDTIDX $TESTDIR/remote_dir1
3801         test_mkdir -i $MDTIDX $TESTDIR/remote_dir2
3802         ls
3803         links2=$(stat -c %h .)
3804         [ $(($links1 + 2)) != $links2 ] &&
3805                 error "wrong links count $(($links1 + 2)) != $links2"
3806         rmdir remote_dir2
3807         links3=$(stat -c %h .)
3808         [ $(($links1 + 1)) != $links3 ] &&
3809                 error "wrong links count $links1 != $links3"
3810         return 0
3811 }
3812 run_test 39p "remote directory cached attributes updated after create ========"
3813
3814
3815 test_39q() { # LU-8041
3816         local testdir=$DIR/$tdir
3817         mkdir -p $testdir
3818         multiop_bg_pause $testdir D_c || error "multiop failed"
3819         local multipid=$!
3820         cancel_lru_locks mdc
3821         kill -USR1 $multipid
3822         local atime=$(stat -c %X $testdir)
3823         [ "$atime" -ne 0 ] || error "atime is zero"
3824 }
3825 run_test 39q "close won't zero out atime"
3826
3827 test_40() {
3828         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3829         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3830                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3831         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3832                 error "$tfile is not 4096 bytes in size"
3833 }
3834 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3835
3836 test_41() {
3837         # bug 1553
3838         small_write $DIR/f41 18
3839 }
3840 run_test 41 "test small file write + fstat ====================="
3841
3842 count_ost_writes() {
3843         lctl get_param -n ${OSC}.*.stats |
3844                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
3845                         END { printf("%0.0f", writes) }'
3846 }
3847
3848 # decent default
3849 WRITEBACK_SAVE=500
3850 DIRTY_RATIO_SAVE=40
3851 MAX_DIRTY_RATIO=50
3852 BG_DIRTY_RATIO_SAVE=10
3853 MAX_BG_DIRTY_RATIO=25
3854
3855 start_writeback() {
3856         trap 0
3857         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3858         # dirty_ratio, dirty_background_ratio
3859         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3860                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3861                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3862                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3863         else
3864                 # if file not here, we are a 2.4 kernel
3865                 kill -CONT `pidof kupdated`
3866         fi
3867 }
3868
3869 stop_writeback() {
3870         # setup the trap first, so someone cannot exit the test at the
3871         # exact wrong time and mess up a machine
3872         trap start_writeback EXIT
3873         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3874         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3875                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3876                 sysctl -w vm.dirty_writeback_centisecs=0
3877                 sysctl -w vm.dirty_writeback_centisecs=0
3878                 # save and increase /proc/sys/vm/dirty_ratio
3879                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3880                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3881                 # save and increase /proc/sys/vm/dirty_background_ratio
3882                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3883                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3884         else
3885                 # if file not here, we are a 2.4 kernel
3886                 kill -STOP `pidof kupdated`
3887         fi
3888 }
3889
3890 # ensure that all stripes have some grant before we test client-side cache
3891 setup_test42() {
3892         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3893                 dd if=/dev/zero of=$i bs=4k count=1
3894                 rm $i
3895         done
3896 }
3897
3898 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3899 # file truncation, and file removal.
3900 test_42a() {
3901         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3902
3903         setup_test42
3904         cancel_lru_locks $OSC
3905         stop_writeback
3906         sync; sleep 1; sync # just to be safe
3907         BEFOREWRITES=`count_ost_writes`
3908         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3909         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3910         AFTERWRITES=`count_ost_writes`
3911         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3912                 error "$BEFOREWRITES < $AFTERWRITES"
3913         start_writeback
3914 }
3915 run_test 42a "ensure that we don't flush on close"
3916
3917 test_42b() {
3918         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3919
3920         setup_test42
3921         cancel_lru_locks $OSC
3922         stop_writeback
3923         sync
3924         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3925         BEFOREWRITES=$(count_ost_writes)
3926         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3927         AFTERWRITES=$(count_ost_writes)
3928         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3929                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3930         fi
3931         BEFOREWRITES=$(count_ost_writes)
3932         sync || error "sync: $?"
3933         AFTERWRITES=$(count_ost_writes)
3934         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3935                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3936         fi
3937         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3938         start_writeback
3939         return 0
3940 }
3941 run_test 42b "test destroy of file with cached dirty data ======"
3942
3943 # if these tests just want to test the effect of truncation,
3944 # they have to be very careful.  consider:
3945 # - the first open gets a {0,EOF}PR lock
3946 # - the first write conflicts and gets a {0, count-1}PW
3947 # - the rest of the writes are under {count,EOF}PW
3948 # - the open for truncate tries to match a {0,EOF}PR
3949 #   for the filesize and cancels the PWs.
3950 # any number of fixes (don't get {0,EOF} on open, match
3951 # composite locks, do smarter file size management) fix
3952 # this, but for now we want these tests to verify that
3953 # the cancellation with truncate intent works, so we
3954 # start the file with a full-file pw lock to match against
3955 # until the truncate.
3956 trunc_test() {
3957         test=$1
3958         file=$DIR/$test
3959         offset=$2
3960         cancel_lru_locks $OSC
3961         stop_writeback
3962         # prime the file with 0,EOF PW to match
3963         touch $file
3964         $TRUNCATE $file 0
3965         sync; sync
3966         # now the real test..
3967         dd if=/dev/zero of=$file bs=1024 count=100
3968         BEFOREWRITES=`count_ost_writes`
3969         $TRUNCATE $file $offset
3970         cancel_lru_locks $OSC
3971         AFTERWRITES=`count_ost_writes`
3972         start_writeback
3973 }
3974
3975 test_42c() {
3976         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3977
3978         trunc_test 42c 1024
3979         [ $BEFOREWRITES -eq $AFTERWRITES ] &&
3980                 error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3981         rm $file
3982 }
3983 run_test 42c "test partial truncate of file with cached dirty data"
3984
3985 test_42d() {
3986         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3987
3988         trunc_test 42d 0
3989         [ $BEFOREWRITES -eq $AFTERWRITES ] ||
3990                 error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3991         rm $file
3992 }
3993 run_test 42d "test complete truncate of file with cached dirty data"
3994
3995 test_42e() { # bug22074
3996         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3997
3998         local TDIR=$DIR/${tdir}e
3999         local pages=16 # hardcoded 16 pages, don't change it.
4000         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
4001         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
4002         local max_dirty_mb
4003         local warmup_files
4004
4005         test_mkdir $DIR/${tdir}e
4006         $LFS setstripe -c 1 $TDIR
4007         createmany -o $TDIR/f $files
4008
4009         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
4010
4011         # we assume that with $OSTCOUNT files, at least one of them will
4012         # be allocated on OST0.
4013         warmup_files=$((OSTCOUNT * max_dirty_mb))
4014         createmany -o $TDIR/w $warmup_files
4015
4016         # write a large amount of data into one file and sync, to get good
4017         # avail_grant number from OST.
4018         for ((i=0; i<$warmup_files; i++)); do
4019                 idx=$($LFS getstripe -i $TDIR/w$i)
4020                 [ $idx -ne 0 ] && continue
4021                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
4022                 break
4023         done
4024         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
4025         sync
4026         $LCTL get_param $proc_osc0/cur_dirty_bytes
4027         $LCTL get_param $proc_osc0/cur_grant_bytes
4028
4029         # create as much dirty pages as we can while not to trigger the actual
4030         # RPCs directly. but depends on the env, VFS may trigger flush during this
4031         # period, hopefully we are good.
4032         for ((i=0; i<$warmup_files; i++)); do
4033                 idx=$($LFS getstripe -i $TDIR/w$i)
4034                 [ $idx -ne 0 ] && continue
4035                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
4036         done
4037         $LCTL get_param $proc_osc0/cur_dirty_bytes
4038         $LCTL get_param $proc_osc0/cur_grant_bytes
4039
4040         # perform the real test
4041         $LCTL set_param $proc_osc0/rpc_stats 0
4042         for ((;i<$files; i++)); do
4043                 [ $($LFS getstripe -i $TDIR/f$i) -eq 0 ] || continue
4044                 dd if=/dev/zero of=$TDIR/f$i bs=$PAGE_SIZE count=$pages 2>/dev/null
4045         done
4046         sync
4047         $LCTL get_param $proc_osc0/rpc_stats
4048
4049         local percent=0
4050         local have_ppr=false
4051         $LCTL get_param $proc_osc0/rpc_stats |
4052                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
4053                         # skip lines until we are at the RPC histogram data
4054                         [ "$PPR" == "pages" ] && have_ppr=true && continue
4055                         $have_ppr || continue
4056
4057                         # we only want the percent stat for < 16 pages
4058                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
4059
4060                         percent=$((percent + WPCT))
4061                         if [[ $percent -gt 15 ]]; then
4062                                 error "less than 16-pages write RPCs" \
4063                                       "$percent% > 15%"
4064                                 break
4065                         fi
4066                 done
4067         rm -rf $TDIR
4068 }
4069 run_test 42e "verify sub-RPC writes are not done synchronously"
4070
4071 test_43A() { # was test_43
4072         test_mkdir $DIR/$tdir
4073         cp -p /bin/ls $DIR/$tdir/$tfile
4074         $MULTIOP $DIR/$tdir/$tfile Ow_c &
4075         pid=$!
4076         # give multiop a chance to open
4077         sleep 1
4078
4079         $DIR/$tdir/$tfile && error "execute $DIR/$tdir/$tfile succeeded" || true
4080         kill -USR1 $pid
4081 }
4082 run_test 43A "execution of file opened for write should return -ETXTBSY"
4083
4084 test_43a() {
4085         test_mkdir $DIR/$tdir
4086         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
4087                 cp -p multiop $DIR/$tdir/multiop
4088         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
4089                 error "multiop open $TMP/$tfile.junk failed"
4090         rm $TMP/$tfile.junk     # delete junk file on close (not part of test)
4091         MULTIOP_PID=$!
4092         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
4093         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
4094         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
4095 }
4096 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
4097
4098 test_43b() {
4099         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4100
4101         test_mkdir $DIR/$tdir
4102         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
4103                 cp -p multiop $DIR/$tdir/multiop
4104         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
4105                 error "multiop open $TMP/$tfile.junk failed"
4106         rm $TMP/$tfile.junk     # delete junk file on close (not part of test)
4107         MULTIOP_PID=$!
4108         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
4109         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
4110         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
4111 }
4112 run_test 43b "truncate of file being executed should return -ETXTBSY"
4113
4114 test_43c() {
4115         local testdir="$DIR/$tdir"
4116         test_mkdir $testdir
4117         cp $SHELL $testdir/
4118         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) |
4119                 ( cd $testdir && md5sum -c )
4120 }
4121 run_test 43c "md5sum of copy into lustre"
4122
4123 test_44A() { # was test_44
4124         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
4125
4126         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
4127         dd if=$DIR/f1 bs=4k count=1 > /dev/null
4128 }
4129 run_test 44A "zero length read from a sparse stripe"
4130
4131 test_44a() {
4132         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
4133                 awk '{ print $2 }')
4134         [ -z "$nstripe" ] && skip "can't get stripe info"
4135         [[ $nstripe -gt $OSTCOUNT ]] &&
4136                 skip "Wrong default_stripe_count: $nstripe OSTCOUNT: $OSTCOUNT"
4137
4138         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
4139                 awk '{ print $2 }')
4140         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
4141                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
4142                         awk '{ print $2 }')
4143         fi
4144
4145         OFFSETS="0 $((stride/2)) $((stride-1))"
4146         for offset in $OFFSETS; do
4147                 for i in $(seq 0 $((nstripe-1))); do
4148                         local GLOBALOFFSETS=""
4149                         # size in Bytes
4150                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
4151                         local myfn=$DIR/d44a-$size
4152                         echo "--------writing $myfn at $size"
4153                         ll_sparseness_write $myfn $size ||
4154                                 error "ll_sparseness_write"
4155                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
4156                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
4157                                 error "ll_sparseness_verify $GLOBALOFFSETS"
4158
4159                         for j in $(seq 0 $((nstripe-1))); do
4160                                 # size in Bytes
4161                                 size=$((((j + $nstripe )*$stride + $offset)))
4162                                 ll_sparseness_write $myfn $size ||
4163                                         error "ll_sparseness_write"
4164                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
4165                         done
4166                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
4167                                 error "ll_sparseness_verify $GLOBALOFFSETS"
4168                         rm -f $myfn
4169                 done
4170         done
4171 }
4172 run_test 44a "test sparse pwrite ==============================="
4173
4174 dirty_osc_total() {
4175         tot=0
4176         for d in `lctl get_param -n ${OSC}.*.cur_dirty_bytes`; do
4177                 tot=$(($tot + $d))
4178         done
4179         echo $tot
4180 }
4181 do_dirty_record() {
4182         before=`dirty_osc_total`
4183         echo executing "\"$*\""
4184         eval $*
4185         after=`dirty_osc_total`
4186         echo before $before, after $after
4187 }
4188 test_45() {
4189         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4190
4191         f="$DIR/f45"
4192         # Obtain grants from OST if it supports it
4193         echo blah > ${f}_grant
4194         stop_writeback
4195         sync
4196         do_dirty_record "echo blah > $f"
4197         [[ $before -eq $after ]] && error "write wasn't cached"
4198         do_dirty_record "> $f"
4199         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
4200         do_dirty_record "echo blah > $f"
4201         [[ $before -eq $after ]] && error "write wasn't cached"
4202         do_dirty_record "sync"
4203         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
4204         do_dirty_record "echo blah > $f"
4205         [[ $before -eq $after ]] && error "write wasn't cached"
4206         do_dirty_record "cancel_lru_locks osc"
4207         [[ $before -gt $after ]] ||
4208                 error "lock cancellation didn't lower dirty count"
4209         start_writeback
4210 }
4211 run_test 45 "osc io page accounting ============================"
4212
4213 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
4214 # test tickles a bug where re-dirtying a page was failing to be mapped to the
4215 # objects offset and an assert hit when an rpc was built with 1023's mapped
4216 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
4217 test_46() {
4218         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4219
4220         f="$DIR/f46"
4221         stop_writeback
4222         sync
4223         dd if=/dev/zero of=$f bs=$PAGE_SIZE seek=511 count=1
4224         sync
4225         dd conv=notrunc if=/dev/zero of=$f bs=$PAGE_SIZE seek=1023 count=1
4226         dd conv=notrunc if=/dev/zero of=$f bs=$PAGE_SIZE seek=511 count=1
4227         sync
4228         start_writeback
4229 }
4230 run_test 46 "dirtying a previously written page ================"
4231
4232 # test_47 is removed "Device nodes check" is moved to test_28
4233
4234 test_48a() { # bug 2399
4235         [ "$mds1_FSTYPE" = "zfs" ] &&
4236         [ $MDS1_VERSION -lt $(version_code 2.3.63) ] &&
4237                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly"
4238
4239         test_mkdir $DIR/$tdir
4240         cd $DIR/$tdir
4241         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
4242         test_mkdir $DIR/$tdir
4243         touch foo || error "'touch foo' failed after recreating cwd"
4244         test_mkdir bar
4245         touch .foo || error "'touch .foo' failed after recreating cwd"
4246         test_mkdir .bar
4247         ls . > /dev/null || error "'ls .' failed after recreating cwd"
4248         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4249         cd . || error "'cd .' failed after recreating cwd"
4250         mkdir . && error "'mkdir .' worked after recreating cwd"
4251         rmdir . && error "'rmdir .' worked after recreating cwd"
4252         ln -s . baz || error "'ln -s .' failed after recreating cwd"
4253         cd .. || error "'cd ..' failed after recreating cwd"
4254 }
4255 run_test 48a "Access renamed working dir (should return errors)="
4256
4257 test_48b() { # bug 2399
4258         rm -rf $DIR/$tdir
4259         test_mkdir $DIR/$tdir
4260         cd $DIR/$tdir
4261         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
4262         touch foo && error "'touch foo' worked after removing cwd"
4263         mkdir foo && error "'mkdir foo' worked after removing cwd"
4264         touch .foo && error "'touch .foo' worked after removing cwd"
4265         mkdir .foo && error "'mkdir .foo' worked after removing cwd"
4266         ls . > /dev/null && error "'ls .' worked after removing cwd"
4267         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4268         mkdir . && error "'mkdir .' worked after removing cwd"
4269         rmdir . && error "'rmdir .' worked after removing cwd"
4270         ln -s . foo && error "'ln -s .' worked after removing cwd"
4271         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
4272 }
4273 run_test 48b "Access removed working dir (should return errors)="
4274
4275 test_48c() { # bug 2350
4276         #lctl set_param debug=-1
4277         #set -vx
4278         rm -rf $DIR/$tdir
4279         test_mkdir -p $DIR/$tdir/dir
4280         cd $DIR/$tdir/dir
4281         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4282         $TRACE touch foo && error "touch foo worked after removing cwd"
4283         $TRACE mkdir foo && error "'mkdir foo' worked after removing cwd"
4284         touch .foo && error "touch .foo worked after removing cwd"
4285         mkdir .foo && error "mkdir .foo worked after removing cwd"
4286         $TRACE ls . && error "'ls .' worked after removing cwd"
4287         $TRACE ls .. || error "'ls ..' failed after removing cwd"
4288         $TRACE mkdir . && error "'mkdir .' worked after removing cwd"
4289         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
4290         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
4291         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
4292 }
4293 run_test 48c "Access removed working subdir (should return errors)"
4294
4295 test_48d() { # bug 2350
4296         #lctl set_param debug=-1
4297         #set -vx
4298         rm -rf $DIR/$tdir
4299         test_mkdir -p $DIR/$tdir/dir
4300         cd $DIR/$tdir/dir
4301         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4302         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4303         $TRACE touch foo && error "'touch foo' worked after removing parent"
4304         $TRACE mkdir foo && error "mkdir foo worked after removing parent"
4305         touch .foo && error "'touch .foo' worked after removing parent"
4306         mkdir .foo && error "mkdir .foo worked after removing parent"
4307         $TRACE ls . && error "'ls .' worked after removing parent"
4308         $TRACE ls .. && error "'ls ..' worked after removing parent"
4309         $TRACE mkdir . && error "'mkdir .' worked after removing parent"
4310         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
4311         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
4312         true
4313 }
4314 run_test 48d "Access removed parent subdir (should return errors)"
4315
4316 test_48e() { # bug 4134
4317         #lctl set_param debug=-1
4318         #set -vx
4319         rm -rf $DIR/$tdir
4320         test_mkdir -p $DIR/$tdir/dir
4321         cd $DIR/$tdir/dir
4322         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4323         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4324         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
4325         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
4326         # On a buggy kernel addition of "touch foo" after cd .. will
4327         # produce kernel oops in lookup_hash_it
4328         touch ../foo && error "'cd ..' worked after recreate parent"
4329         cd $DIR
4330         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
4331 }
4332 run_test 48e "Access to recreated parent subdir (should return errors)"
4333
4334 test_49() { # LU-1030
4335         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4336         remote_ost_nodsh && skip "remote OST with nodsh"
4337
4338         # get ost1 size - lustre-OST0000
4339         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
4340                 awk '{ print $4 }')
4341         # write 800M at maximum
4342         [[ $ost1_size -lt 2 ]] && ost1_size=2
4343         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
4344
4345         $LFS setstripe -c 1 -i 0 $DIR/$tfile
4346         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
4347         local dd_pid=$!
4348
4349         # change max_pages_per_rpc while writing the file
4350         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
4351         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
4352         # loop until dd process exits
4353         while ps ax -opid | grep -wq $dd_pid; do
4354                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
4355                 sleep $((RANDOM % 5 + 1))
4356         done
4357         # restore original max_pages_per_rpc
4358         $LCTL set_param $osc1_mppc=$orig_mppc
4359         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
4360 }
4361 run_test 49 "Change max_pages_per_rpc won't break osc extent"
4362
4363 test_50() {
4364         # bug 1485
4365         test_mkdir $DIR/$tdir
4366         cd $DIR/$tdir
4367         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
4368 }
4369 run_test 50 "special situations: /proc symlinks  ==============="
4370
4371 test_51a() {    # was test_51
4372         # bug 1516 - create an empty entry right after ".." then split dir
4373         test_mkdir -c1 $DIR/$tdir
4374         touch $DIR/$tdir/foo
4375         $MCREATE $DIR/$tdir/bar
4376         rm $DIR/$tdir/foo
4377         createmany -m $DIR/$tdir/longfile 201
4378         FNUM=202
4379         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
4380                 $MCREATE $DIR/$tdir/longfile$FNUM
4381                 FNUM=$(($FNUM + 1))
4382                 echo -n "+"
4383         done
4384         echo
4385         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
4386 }
4387 run_test 51a "special situations: split htree with empty entry =="
4388
4389 cleanup_print_lfs_df () {
4390         trap 0
4391         $LFS df
4392         $LFS df -i
4393 }
4394
4395 test_51b() {
4396         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4397
4398         local dir=$DIR/$tdir
4399         local nrdirs=$((65536 + 100))
4400
4401         # cleanup the directory
4402         rm -fr $dir
4403
4404         test_mkdir -c1 $dir
4405
4406         $LFS df
4407         $LFS df -i
4408         local mdtidx=$(printf "%04x" $($LFS getstripe -m $dir))
4409         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
4410         [[ $numfree -lt $nrdirs ]] &&
4411                 skip "not enough free inodes ($numfree) on MDT$mdtidx"
4412
4413         # need to check free space for the directories as well
4414         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
4415         numfree=$(( blkfree / $(fs_inode_ksize) ))
4416         [[ $numfree -lt $nrdirs ]] && skip "not enough blocks ($numfree)"
4417
4418         trap cleanup_print_lfs_df EXIT
4419
4420         # create files
4421         createmany -d $dir/d $nrdirs || {
4422                 unlinkmany $dir/d $nrdirs
4423                 error "failed to create $nrdirs subdirs in MDT$mdtidx:$dir"
4424         }
4425
4426         # really created :
4427         nrdirs=$(ls -U $dir | wc -l)
4428
4429         # unlink all but 100 subdirectories, then check it still works
4430         local left=100
4431         local delete=$((nrdirs - left))
4432
4433         $LFS df
4434         $LFS df -i
4435
4436         # for ldiskfs the nlink count should be 1, but this is OSD specific
4437         # and so this is listed for informational purposes only
4438         echo "nlink before: $(stat -c %h $dir), created before: $nrdirs"
4439         unlinkmany -d $dir/d $delete ||
4440                 error "unlink of first $delete subdirs failed"
4441
4442         echo "nlink between: $(stat -c %h $dir)"
4443         local found=$(ls -U $dir | wc -l)
4444         [ $found -ne $left ] &&
4445                 error "can't find subdirs: found only $found, expected $left"
4446
4447         unlinkmany -d $dir/d $delete $left ||
4448                 error "unlink of second $left subdirs failed"
4449         # regardless of whether the backing filesystem tracks nlink accurately
4450         # or not, the nlink count shouldn't be more than "." and ".." here
4451         local after=$(stat -c %h $dir)
4452         [[ $after -gt 2 ]] && error "nlink after: $after > 2" ||
4453                 echo "nlink after: $after"
4454
4455         cleanup_print_lfs_df
4456 }
4457 run_test 51b "exceed 64k subdirectory nlink limit on create, verify unlink"
4458
4459 test_51d() {
4460         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4461         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
4462
4463         test_mkdir $DIR/$tdir
4464         createmany -o $DIR/$tdir/t- 1000
4465         $LFS getstripe $DIR/$tdir > $TMP/$tfile
4466         for N in $(seq 0 $((OSTCOUNT - 1))); do
4467                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4468                         END { printf("%0.0f", objs) }' $TMP/$tfile)
4469                 OBJS0[$N]=$(grep -A 1 idx $TMP/$tfile | awk -vobjs=0 \
4470                         '($1 == '$N') { objs += 1 } \
4471                         END { printf("%0.0f", objs) }')
4472                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4473         done
4474         unlinkmany $DIR/$tdir/t- 1000
4475
4476         NLAST=0
4477         for N in $(seq 1 $((OSTCOUNT - 1))); do
4478                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4479                         error "OST $N has less objects vs OST $NLAST" \
4480                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4481                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4482                         error "OST $N has less objects vs OST $NLAST" \
4483                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4484
4485                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4486                         error "OST $N has less #0 objects vs OST $NLAST" \
4487                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4488                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4489                         error "OST $N has less #0 objects vs OST $NLAST" \
4490                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4491                 NLAST=$N
4492         done
4493         rm -f $TMP/$tfile
4494 }
4495 run_test 51d "check object distribution"
4496
4497 test_51e() {
4498         if [ "$mds1_FSTYPE" != ldiskfs ]; then
4499                 skip_env "ldiskfs only test"
4500         fi
4501
4502         test_mkdir -c1 $DIR/$tdir
4503         test_mkdir -c1 $DIR/$tdir/d0
4504
4505         touch $DIR/$tdir/d0/foo
4506         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4507                 error "file exceed 65000 nlink limit!"
4508         unlinkmany $DIR/$tdir/d0/f- 65001
4509         return 0
4510 }
4511 run_test 51e "check file nlink limit"
4512
4513 test_51f() {
4514         test_mkdir $DIR/$tdir
4515
4516         local max=100000
4517         local ulimit_old=$(ulimit -n)
4518         local spare=20 # number of spare fd's for scripts/libraries, etc.
4519         local mdt=$($LFS getstripe -m $DIR/$tdir)
4520         local numfree=$($LFS df -i $DIR/$tdir | awk '/MDT:'$mdt'/ { print $4 }')
4521
4522         echo "MDT$mdt numfree=$numfree, max=$max"
4523         [[ $numfree -gt $max ]] && numfree=$max || numfree=$((numfree * 7 / 8))
4524         if [ $((numfree + spare)) -gt $ulimit_old ]; then
4525                 while ! ulimit -n $((numfree + spare)); do
4526                         numfree=$((numfree * 3 / 4))
4527                 done
4528                 echo "changed ulimit from $ulimit_old to $((numfree + spare))"
4529         else
4530                 echo "left ulimit at $ulimit_old"
4531         fi
4532
4533         createmany -o -k -t 120 $DIR/$tdir/f $numfree || {
4534                 unlinkmany $DIR/$tdir/f $numfree
4535                 error "create+open $numfree files in $DIR/$tdir failed"
4536         }
4537         ulimit -n $ulimit_old
4538
4539         # if createmany exits at 120s there will be fewer than $numfree files
4540         unlinkmany $DIR/$tdir/f $numfree || true
4541 }
4542 run_test 51f "check many open files limit"
4543
4544 test_52a() {
4545         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4546         test_mkdir $DIR/$tdir
4547         touch $DIR/$tdir/foo
4548         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4549         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4550         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4551         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4552         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4553                                         error "link worked"
4554         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4555         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4556         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4557                                                      error "lsattr"
4558         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4559         cp -r $DIR/$tdir $TMP/
4560         rm -fr $DIR/$tdir $TMP/$tdir || error "cleanup rm failed"
4561 }
4562 run_test 52a "append-only flag test (should return errors)"
4563
4564 test_52b() {
4565         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4566         test_mkdir $DIR/$tdir
4567         touch $DIR/$tdir/foo
4568         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4569         cat test > $DIR/$tdir/foo && error "cat test worked"
4570         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4571         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4572         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4573                                         error "link worked"
4574         echo foo >> $DIR/$tdir/foo && error "echo worked"
4575         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4576         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4577         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4578         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4579                                                         error "lsattr"
4580         chattr -i $DIR/$tdir/foo || error "chattr failed"
4581
4582         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4583 }
4584 run_test 52b "immutable flag test (should return errors) ======="
4585
4586 test_53() {
4587         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4588         remote_mds_nodsh && skip "remote MDS with nodsh"
4589         remote_ost_nodsh && skip "remote OST with nodsh"
4590
4591         local param
4592         local param_seq
4593         local ostname
4594         local mds_last
4595         local mds_last_seq
4596         local ost_last
4597         local ost_last_seq
4598         local ost_last_id
4599         local ostnum
4600         local node
4601         local found=false
4602         local support_last_seq=true
4603
4604         [[ $MDS1_VERSION -ge $(version_code 2.3.60) ]] ||
4605                 support_last_seq=false
4606
4607         # only test MDT0000
4608         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4609         local value
4610         for value in $(do_facet $SINGLEMDS \
4611                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4612                 param=$(echo ${value[0]} | cut -d "=" -f1)
4613                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4614
4615                 if $support_last_seq; then
4616                         param_seq=$(echo $param |
4617                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4618                         mds_last_seq=$(do_facet $SINGLEMDS \
4619                                        $LCTL get_param -n $param_seq)
4620                 fi
4621                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4622
4623                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4624                 node=$(facet_active_host ost$((ostnum+1)))
4625                 param="obdfilter.$ostname.last_id"
4626                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4627                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4628                         ost_last_id=$ost_last
4629
4630                         if $support_last_seq; then
4631                                 ost_last_id=$(echo $ost_last |
4632                                               awk -F':' '{print $2}' |
4633                                               sed -e "s/^0x//g")
4634                                 ost_last_seq=$(echo $ost_last |
4635                                                awk -F':' '{print $1}')
4636                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4637                         fi
4638
4639                         if [[ $ost_last_id != $mds_last ]]; then
4640                                 error "$ost_last_id != $mds_last"
4641                         else
4642                                 found=true
4643                                 break
4644                         fi
4645                 done
4646         done
4647         $found || error "can not match last_seq/last_id for $mdtosc"
4648         return 0
4649 }
4650 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4651
4652 test_54a() {
4653         perl -MSocket -e ';' || skip "no Socket perl module installed"
4654
4655         $SOCKETSERVER $DIR/socket ||
4656                 error "$SOCKETSERVER $DIR/socket failed: $?"
4657         $SOCKETCLIENT $DIR/socket ||
4658                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4659         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4660 }
4661 run_test 54a "unix domain socket test =========================="
4662
4663 test_54b() {
4664         f="$DIR/f54b"
4665         mknod $f c 1 3
4666         chmod 0666 $f
4667         dd if=/dev/zero of=$f bs=$PAGE_SIZE count=1
4668 }
4669 run_test 54b "char device works in lustre ======================"
4670
4671 find_loop_dev() {
4672         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4673         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4674         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4675
4676         for i in $(seq 3 7); do
4677                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4678                 LOOPDEV=$LOOPBASE$i
4679                 LOOPNUM=$i
4680                 break
4681         done
4682 }
4683
4684 cleanup_54c() {
4685         local rc=0
4686         loopdev="$DIR/loop54c"
4687
4688         trap 0
4689         $UMOUNT $DIR/$tdir || rc=$?
4690         losetup -d $loopdev || true
4691         losetup -d $LOOPDEV || true
4692         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4693         return $rc
4694 }
4695
4696 test_54c() {
4697         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4698
4699         loopdev="$DIR/loop54c"
4700
4701         find_loop_dev
4702         [ -z "$LOOPNUM" ] && skip_env "couldn't find empty loop device"
4703         trap cleanup_54c EXIT
4704         mknod $loopdev b 7 $LOOPNUM
4705         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4706         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE seek=1024 count=1 > /dev/null
4707         losetup $loopdev $DIR/$tfile ||
4708                 error "can't set up $loopdev for $DIR/$tfile"
4709         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4710         test_mkdir $DIR/$tdir
4711         mount -t ext2 $loopdev $DIR/$tdir ||
4712                 error "error mounting $loopdev on $DIR/$tdir"
4713         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$PAGE_SIZE count=30 ||
4714                 error "dd write"
4715         df $DIR/$tdir
4716         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$PAGE_SIZE count=30 ||
4717                 error "dd read"
4718         cleanup_54c
4719 }
4720 run_test 54c "block device works in lustre ====================="
4721
4722 test_54d() {
4723         f="$DIR/f54d"
4724         string="aaaaaa"
4725         mknod $f p
4726         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4727 }
4728 run_test 54d "fifo device works in lustre ======================"
4729
4730 test_54e() {
4731         f="$DIR/f54e"
4732         string="aaaaaa"
4733         cp -aL /dev/console $f
4734         echo $string > $f || error "echo $string to $f failed"
4735 }
4736 run_test 54e "console/tty device works in lustre ======================"
4737
4738 test_56a() {
4739         local numfiles=3
4740         local dir=$DIR/$tdir
4741
4742         rm -rf $dir
4743         test_mkdir -p $dir/dir
4744         for i in $(seq $numfiles); do
4745                 touch $dir/file$i
4746                 touch $dir/dir/file$i
4747         done
4748
4749         local numcomp=$($LFS getstripe --component-count $dir)
4750
4751         [[ $numcomp == 0 ]] && numcomp=1
4752
4753         # test lfs getstripe with --recursive
4754         local filenum=$($LFS getstripe -r $dir | egrep -c "obdidx|l_ost_idx")
4755
4756         [[ $filenum -eq $((numfiles * 2)) ]] ||
4757                 error "$LFS getstripe -r: found $filenum != $((numfiles * 2))"
4758         filenum=$($LFS getstripe $dir | egrep -c "obdidx|l_ost_idx")
4759         [[ $filenum -eq $numfiles ]] ||
4760                 error "$LFS getstripe $dir: found $filenum, not $numfiles"
4761         echo "$LFS getstripe showed obdidx or l_ost_idx"
4762
4763         # test lfs getstripe with file instead of dir
4764         filenum=$($LFS getstripe $dir/file1 | egrep -c "obdidx|l_ost_idx")
4765         [[ $filenum -eq 1 ]] ||
4766                 error "$LFS getstripe $dir/file1: found $filenum, not 1"
4767         echo "$LFS getstripe file1 passed"
4768
4769         #test lfs getstripe with --verbose
4770         filenum=$($LFS getstripe --verbose $dir | grep -c lmm_magic)
4771         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
4772                 error "$LFS getstripe --verbose $dir: "\
4773                       "got $filenum want $((numfiles * numcomp)) lmm_magic"
4774         [[ $($LFS getstripe $dir | grep -c lmm_magic) -eq 0 ]] ||
4775                 error "$LFS getstripe $dir: showed lmm_magic"
4776
4777         #test lfs getstripe with -v prints lmm_fid
4778         filenum=$($LFS getstripe -v $dir | grep -c lmm_fid)
4779         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
4780                 error "$LFS getstripe -v $dir: "\
4781                       "got $filenum want $((numfiles * numcomp)) lmm_fid"
4782         [[ $($LFS getstripe $dir | grep -c lmm_fid) -eq 0 ]] ||
4783                 error "$LFS getstripe $dir: showed lmm_fid by default"
4784         echo "$LFS getstripe --verbose passed"
4785
4786         #check for FID information
4787         local fid1=$($LFS getstripe --fid $dir/file1)
4788         local fid2=$($LFS getstripe --verbose $dir/file1 |
4789                      awk '/lmm_fid: / { print $2; exit; }')
4790         local fid3=$($LFS path2fid $dir/file1)
4791
4792         [ "$fid1" != "$fid2" ] &&
4793                 error "getstripe --fid '$fid1' != getstripe --verbose '$fid2'"
4794         [ "$fid1" != "$fid3" ] &&
4795                 error "getstripe --fid '$fid1' != lfs path2fid '$fid3'"
4796         echo "$LFS getstripe --fid passed"
4797
4798         #test lfs getstripe with --obd
4799         $LFS getstripe --obd wrong_uuid $dir 2>&1 | grep -q "unknown obduuid" ||
4800                 error "$LFS getstripe --obd wrong_uuid: should return error"
4801
4802         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
4803
4804         local ostidx=1
4805         local obduuid=$(ostuuid_from_index $ostidx)
4806         local found=$($LFS getstripe -r --obd $obduuid $dir |
4807                 grep 'lmm_stripe_offset:' | grep -c " $ostidx\$")
4808
4809         filenum=$($LFS getstripe -ir $dir | grep -c "^$ostidx\$")
4810         [[ $($LFS getstripe -id $dir) -ne $ostidx ]] ||
4811                 ((filenum--))
4812         [[ $($LFS getstripe -id $dir/dir) -ne $ostidx ]] ||
4813                 ((filenum--))
4814
4815         [[ $found -eq $filenum ]] ||
4816                 error "$LFS getstripe --obd: found $found expect $filenum"
4817         [[ $($LFS getstripe -r -v --obd $obduuid $dir |
4818                 sed '/^[         ]*'${ostidx}'[  ]/d' |
4819                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4820                 error "$LFS getstripe --obd: should not show file on other obd"
4821         echo "$LFS getstripe --obd passed"
4822 }
4823 run_test 56a "check $LFS getstripe"
4824
4825 test_56b() {
4826         local dir=$DIR/$tdir
4827         local numdirs=3
4828
4829         test_mkdir $dir
4830         for i in $(seq $numdirs); do
4831                 test_mkdir $dir/dir$i
4832         done
4833
4834         # test lfs getdirstripe default mode is non-recursion, which is
4835         # different from lfs getstripe
4836         local dircnt=$($LFS getdirstripe $dir | grep -c lmv_stripe_count)
4837
4838         [[ $dircnt -eq 1 ]] ||
4839                 error "$LFS getdirstripe: found $dircnt, not 1"
4840         dircnt=$($LFS getdirstripe --recursive $dir |
4841                 grep -c lmv_stripe_count)
4842         [[ $dircnt -eq $((numdirs + 1)) ]] ||
4843                 error "$LFS getdirstripe -r: $dircnt, != $((numdirs + 1))"
4844 }
4845 run_test 56b "check $LFS getdirstripe"
4846
4847 test_56c() {
4848         remote_ost_nodsh && skip "remote OST with nodsh"
4849
4850         local ost_idx=0
4851         local ost_name=$(ostname_from_index $ost_idx)
4852         local old_status=$(ost_dev_status $ost_idx)
4853
4854         [[ -z "$old_status" ]] ||
4855                 skip_env "OST $ost_name is in $old_status status"
4856
4857         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=1
4858         sleep_maxage
4859
4860         local new_status=$(ost_dev_status $ost_idx)
4861
4862         [[ "$new_status" = "D" ]] ||
4863                 error "OST $ost_name is in status of '$new_status', not 'D'"
4864
4865         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=0
4866         sleep_maxage
4867
4868         new_status=$(ost_dev_status $ost_idx)
4869         [[ -z "$new_status" ]] ||
4870                 error "OST $ost_name is in status of '$new_status', not ''"
4871 }
4872 run_test 56c "check 'lfs df' showing device status"
4873
4874 NUMFILES=3
4875 NUMDIRS=3
4876 setup_56() {
4877         local local_tdir="$1"
4878         local local_numfiles="$2"
4879         local local_numdirs="$3"
4880         local dir_params="$4"
4881         local dir_stripe_params="$5"
4882
4883         if [ ! -d "$local_tdir" ] ; then
4884                 test_mkdir -p $dir_stripe_params $local_tdir
4885                 [ "$dir_params" ] && $LFS setstripe $dir_params $local_tdir
4886                 for i in $(seq $local_numfiles) ; do
4887                         touch $local_tdir/file$i
4888                 done
4889                 for i in $(seq $local_numdirs) ; do
4890                         test_mkdir $dir_stripe_params $local_tdir/dir$i
4891                         for j in $(seq $local_numfiles) ; do
4892                                 touch $local_tdir/dir$i/file$j
4893                         done
4894                 done
4895         fi
4896 }
4897
4898 setup_56_special() {
4899         local local_tdir=$1
4900         local local_numfiles=$2
4901         local local_numdirs=$3
4902
4903         setup_56 $local_tdir $local_numfiles $local_numdirs
4904
4905         if [ ! -e "$local_tdir/loop${local_numfiles}b" ] ; then
4906                 for i in $(seq $local_numfiles) ; do
4907                         mknod $local_tdir/loop${i}b b 7 $i
4908                         mknod $local_tdir/null${i}c c 1 3
4909                         ln -s $local_tdir/file1 $local_tdir/link${i}
4910                 done
4911                 for i in $(seq $local_numdirs) ; do
4912                         mknod $local_tdir/dir$i/loop${i}b b 7 $i
4913                         mknod $local_tdir/dir$i/null${i}c c 1 3
4914                         ln -s $local_tdir/dir$i/file1 $local_tdir/dir$i/link${i}
4915                 done
4916         fi
4917 }
4918
4919 test_56g() {
4920         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4921         local expected=$(($NUMDIRS + 2))
4922
4923         setup_56 $dir $NUMFILES $NUMDIRS
4924
4925         # test lfs find with -name
4926         for i in $(seq $NUMFILES) ; do
4927                 local nums=$($LFS find -name "*$i" $dir | wc -l)
4928
4929                 [ $nums -eq $expected ] ||
4930                         error "lfs find -name '*$i' $dir wrong: "\
4931                               "found $nums, expected $expected"
4932         done
4933 }
4934 run_test 56g "check lfs find -name"
4935
4936 test_56h() {
4937         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4938         local expected=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4939
4940         setup_56 $dir $NUMFILES $NUMDIRS
4941
4942         # test lfs find with ! -name
4943         for i in $(seq $NUMFILES) ; do
4944                 local nums=$($LFS find ! -name "*$i" $dir | wc -l)
4945
4946                 [ $nums -eq $expected ] ||
4947                         error "lfs find ! -name '*$i' $dir wrong: "\
4948                               "found $nums, expected $expected"
4949         done
4950 }
4951 run_test 56h "check lfs find ! -name"
4952
4953 test_56i() {
4954         local dir=$DIR/$tdir
4955
4956         test_mkdir $dir
4957
4958         local cmd="$LFS find -ost $(ostuuid_from_index 0 $dir) $dir"
4959         local out=$($cmd)
4960
4961         [ -z "$out" ] || error "'$cmd' returned directory '$out'"
4962 }
4963 run_test 56i "check 'lfs find -ost UUID' skips directories"
4964
4965 test_56j() {
4966         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4967
4968         setup_56_special $dir $NUMFILES $NUMDIRS
4969
4970         local expected=$((NUMDIRS + 1))
4971         local cmd="$LFS find -type d $dir"
4972         local nums=$($cmd | wc -l)
4973
4974         [ $nums -eq $expected ] ||
4975                 error "'$cmd' wrong: found $nums, expected $expected"
4976 }
4977 run_test 56j "check lfs find -type d"
4978
4979 test_56k() {
4980         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4981
4982         setup_56_special $dir $NUMFILES $NUMDIRS
4983
4984         local expected=$(((NUMDIRS + 1) * NUMFILES))
4985         local cmd="$LFS find -type f $dir"
4986         local nums=$($cmd | wc -l)
4987
4988         [ $nums -eq $expected ] ||
4989                 error "'$cmd' wrong: found $nums, expected $expected"
4990 }
4991 run_test 56k "check lfs find -type f"
4992
4993 test_56l() {
4994         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4995
4996         setup_56_special $dir $NUMFILES $NUMDIRS
4997
4998         local expected=$((NUMDIRS + NUMFILES))
4999         local cmd="$LFS find -type b $dir"
5000         local nums=$($cmd | wc -l)
5001
5002         [ $nums -eq $expected ] ||
5003                 error "'$cmd' wrong: found $nums, expected $expected"
5004 }
5005 run_test 56l "check lfs find -type b"
5006
5007 test_56m() {
5008         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5009
5010         setup_56_special $dir $NUMFILES $NUMDIRS
5011
5012         local expected=$((NUMDIRS + NUMFILES))
5013         local cmd="$LFS find -type c $dir"
5014         local nums=$($cmd | wc -l)
5015         [ $nums -eq $expected ] ||
5016                 error "'$cmd' wrong: found $nums, expected $expected"
5017 }
5018 run_test 56m "check lfs find -type c"
5019
5020 test_56n() {
5021         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5022         setup_56_special $dir $NUMFILES $NUMDIRS
5023
5024         local expected=$((NUMDIRS + NUMFILES))
5025         local cmd="$LFS find -type l $dir"
5026         local nums=$($cmd | wc -l)
5027
5028         [ $nums -eq $expected ] ||
5029                 error "'$cmd' wrong: found $nums, expected $expected"
5030 }
5031 run_test 56n "check lfs find -type l"
5032
5033 test_56o() {
5034         local dir=$DIR/$tdir
5035
5036         setup_56 $dir $NUMFILES $NUMDIRS
5037         utime $dir/file1 > /dev/null || error "utime (1)"
5038         utime $dir/file2 > /dev/null || error "utime (2)"
5039         utime $dir/dir1 > /dev/null || error "utime (3)"
5040         utime $dir/dir2 > /dev/null || error "utime (4)"
5041         utime $dir/dir1/file1 > /dev/null || error "utime (5)"
5042         dd if=/dev/zero count=1 >> $dir/dir1/file1 && sync
5043
5044         local expected=4
5045         local nums=$($LFS find -mtime +0 $dir | wc -l)
5046
5047         [ $nums -eq $expected ] ||
5048                 error "lfs find -mtime +0 $dir: found $nums expect $expected"
5049
5050         expected=12
5051         cmd="$LFS find -mtime 0 $dir"
5052         nums=$($cmd | wc -l)
5053         [ $nums -eq $expected ] ||
5054                 error "'$cmd' wrong: found $nums, expected $expected"
5055 }
5056 run_test 56o "check lfs find -mtime for old files"
5057
5058 test_56p() {
5059         [ $RUNAS_ID -eq $UID ] &&
5060                 skip_env "RUNAS_ID = UID = $UID -- skipping"
5061
5062         local dir=$DIR/$tdir
5063
5064         setup_56 $dir $NUMFILES $NUMDIRS
5065         chown $RUNAS_ID $dir/file* || error "chown $DIR/${tdir}g/file$i failed"
5066
5067         local expected=$NUMFILES
5068         local cmd="$LFS find -uid $RUNAS_ID $dir"
5069         local nums=$($cmd | wc -l)
5070
5071         [ $nums -eq $expected ] ||
5072                 error "'$cmd' wrong: found $nums, expected $expected"
5073
5074         expected=$(((NUMFILES + 1) * NUMDIRS + 1))
5075         cmd="$LFS find ! -uid $RUNAS_ID $dir"
5076         nums=$($cmd | wc -l)
5077         [ $nums -eq $expected ] ||
5078                 error "'$cmd' wrong: found $nums, expected $expected"
5079 }
5080 run_test 56p "check lfs find -uid and ! -uid"
5081
5082 test_56q() {
5083         [ $RUNAS_ID -eq $UID ] &&
5084                 skip_env "RUNAS_ID = UID = $UID -- skipping"
5085
5086         local dir=$DIR/$tdir
5087
5088         setup_56 $dir $NUMFILES $NUMDIRS
5089         chgrp $RUNAS_GID $dir/file* || error "chown $dir/file$i failed"
5090
5091         local expected=$NUMFILES
5092         local cmd="$LFS find -gid $RUNAS_GID $dir"
5093         local nums=$($cmd | wc -l)
5094
5095         [ $nums -eq $expected ] ||
5096                 error "'$cmd' wrong: found $nums, expected $expected"
5097
5098         expected=$(( ($NUMFILES+1) * $NUMDIRS + 1))
5099         cmd="$LFS find ! -gid $RUNAS_GID $dir"
5100         nums=$($cmd | wc -l)
5101         [ $nums -eq $expected ] ||
5102                 error "'$cmd' wrong: found $nums, expected $expected"
5103 }
5104 run_test 56q "check lfs find -gid and ! -gid"
5105
5106 test_56r() {
5107         local dir=$DIR/$tdir
5108
5109         setup_56 $dir $NUMFILES $NUMDIRS
5110
5111         local expected=12
5112         local cmd="$LFS find -size 0 -type f $dir"
5113         local nums=$($cmd | wc -l)
5114
5115         [ $nums -eq $expected ] ||
5116                 error "'$cmd' wrong: found $nums, expected $expected"
5117         expected=0
5118         cmd="$LFS find ! -size 0 -type f $dir"
5119         nums=$($cmd | wc -l)
5120         [ $nums -eq $expected ] ||
5121                 error "'$cmd' wrong: found $nums, expected $expected"
5122         echo "test" > $dir/$tfile
5123         echo "test2" > $dir/$tfile.2 && sync
5124         expected=1
5125         cmd="$LFS find -size 5 -type f $dir"
5126         nums=$($cmd | wc -l)
5127         [ $nums -eq $expected ] ||
5128                 error "'$cmd' wrong: found $nums, expected $expected"
5129         expected=1
5130         cmd="$LFS find -size +5 -type f $dir"
5131         nums=$($cmd | wc -l)
5132         [ $nums -eq $expected ] ||
5133                 error "'$cmd' wrong: found $nums, expected $expected"
5134         expected=2
5135         cmd="$LFS find -size +0 -type f $dir"
5136         nums=$($cmd | wc -l)
5137         [ $nums -eq $expected ] ||
5138                 error "'$cmd' wrong: found $nums, expected $expected"
5139         expected=2
5140         cmd="$LFS find ! -size -5 -type f $dir"
5141         nums=$($cmd | wc -l)
5142         [ $nums -eq $expected ] ||
5143                 error "'$cmd' wrong: found $nums, expected $expected"
5144         expected=12
5145         cmd="$LFS find -size -5 -type f $dir"
5146         nums=$($cmd | wc -l)
5147         [ $nums -eq $expected ] ||
5148                 error "'$cmd' wrong: found $nums, expected $expected"
5149 }
5150 run_test 56r "check lfs find -size works"
5151
5152 test_56s() { # LU-611 #LU-9369
5153         [[ $OSTCOUNT -lt 2 ]] && skip_env "need at least 2 OSTs"
5154
5155         local dir=$DIR/$tdir
5156         local onestripe=$(((NUMDIRS + 1) * NUMFILES))
5157
5158         setup_56 $dir $NUMFILES $NUMDIRS "-c 1"
5159         for i in $(seq $NUMDIRS); do
5160                 $LFS setstripe -c $((OSTCOUNT + 1)) $dir/dir$i/$tfile
5161         done
5162
5163         local expected=$NUMDIRS
5164         local cmd="$LFS find -c $OSTCOUNT $dir"
5165         local nums=$($cmd | wc -l)
5166
5167         [ $nums -eq $expected ] || {
5168                 $LFS getstripe -R $dir
5169                 error "'$cmd' wrong: found $nums, expected $expected"
5170         }
5171
5172         expected=$((NUMDIRS + onestripe))
5173         cmd="$LFS find -stripe-count +0 -type f $dir"
5174         nums=$($cmd | wc -l)
5175         [ $nums -eq $expected ] || {
5176                 $LFS getstripe -R $dir
5177                 error "'$cmd' wrong: found $nums, expected $expected"
5178         }
5179
5180         expected=$onestripe
5181         cmd="$LFS find -stripe-count 1 -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         cmd="$LFS find -stripe-count -2 -type f $dir"
5189         nums=$($cmd | wc -l)
5190         [ $nums -eq $expected ] || {
5191                 $LFS getstripe -R $dir
5192                 error "'$cmd' wrong: found $nums, expected $expected"
5193         }
5194
5195         expected=0
5196         cmd="$LFS find -stripe-count $((OSTCOUNT + 1)) -type f $dir"
5197         nums=$($cmd | wc -l)
5198         [ $nums -eq $expected ] || {
5199                 $LFS getstripe -R $dir
5200                 error "'$cmd' wrong: found $nums, expected $expected"
5201         }
5202 }
5203 run_test 56s "check lfs find -stripe-count works"
5204
5205 test_56t() { # LU-611 #LU-9369
5206         local dir=$DIR/$tdir
5207
5208         setup_56 $dir 0 $NUMDIRS
5209         for i in $(seq $NUMDIRS); do
5210                 $LFS setstripe -S 8M $dir/dir$i/$tfile
5211         done
5212
5213         local expected=$NUMDIRS
5214         local cmd="$LFS find -S 8M $dir"
5215         local nums=$($cmd | wc -l)
5216
5217         [ $nums -eq $expected ] || {
5218                 $LFS getstripe -R $dir
5219                 error "'$cmd' wrong: found $nums, expected $expected"
5220         }
5221         rm -rf $dir
5222
5223         setup_56 $dir $NUMFILES $NUMDIRS "--stripe-size 512k"
5224
5225         $LFS setstripe -S 256k $dir/$tfile.{0,1,2,3}
5226
5227         expected=$(((NUMDIRS + 1) * NUMFILES))
5228         cmd="$LFS find -stripe-size 512k -type f $dir"
5229         nums=$($cmd | wc -l)
5230         [ $nums -eq $expected ] ||
5231                 error "'$cmd' wrong: found $nums, expected $expected"
5232
5233         cmd="$LFS find -stripe-size +320k -type f $dir"
5234         nums=$($cmd | wc -l)
5235         [ $nums -eq $expected ] ||
5236                 error "'$cmd' wrong: found $nums, expected $expected"
5237
5238         expected=$(((NUMDIRS + 1) * NUMFILES + 4))
5239         cmd="$LFS find -stripe-size +200k -type f $dir"
5240         nums=$($cmd | wc -l)
5241         [ $nums -eq $expected ] ||
5242                 error "'$cmd' wrong: found $nums, expected $expected"
5243
5244         cmd="$LFS find -stripe-size -640k -type f $dir"
5245         nums=$($cmd | wc -l)
5246         [ $nums -eq $expected ] ||
5247                 error "'$cmd' wrong: found $nums, expected $expected"
5248
5249         expected=4
5250         cmd="$LFS find -stripe-size 256k -type f $dir"
5251         nums=$($cmd | wc -l)
5252         [ $nums -eq $expected ] ||
5253                 error "'$cmd' wrong: found $nums, expected $expected"
5254
5255         cmd="$LFS find -stripe-size -320k -type f $dir"
5256         nums=$($cmd | wc -l)
5257         [ $nums -eq $expected ] ||
5258                 error "'$cmd' wrong: found $nums, expected $expected"
5259
5260         expected=0
5261         cmd="$LFS find -stripe-size 1024k -type f $dir"
5262         nums=$($cmd | wc -l)
5263         [ $nums -eq $expected ] ||
5264                 error "'$cmd' wrong: found $nums, expected $expected"
5265 }
5266 run_test 56t "check lfs find -stripe-size works"
5267
5268 test_56u() { # LU-611
5269         local dir=$DIR/$tdir
5270
5271         setup_56 $dir $NUMFILES $NUMDIRS "-i 0 -c 1"
5272
5273         if [[ $OSTCOUNT -gt 1 ]]; then
5274                 $LFS setstripe -i 1 -c 1 $dir/$tfile.{0,1,2,3}
5275                 onestripe=4
5276         else
5277                 onestripe=0
5278         fi
5279
5280         local expected=$(((NUMDIRS + 1) * NUMFILES))
5281         local cmd="$LFS find -stripe-index 0 -type f $dir"
5282         local nums=$($cmd | wc -l)
5283
5284         [ $nums -eq $expected ] ||
5285                 error "'$cmd' wrong: found $nums, expected $expected"
5286
5287         expected=$onestripe
5288         cmd="$LFS find -stripe-index 1 -type f $dir"
5289         nums=$($cmd | wc -l)
5290         [ $nums -eq $expected ] ||
5291                 error "'$cmd' wrong: found $nums, expected $expected"
5292
5293         cmd="$LFS find ! -stripe-index 0 -type f $dir"
5294         nums=$($cmd | wc -l)
5295         [ $nums -eq $expected ] ||
5296                 error "'$cmd' wrong: found $nums, expected $expected"
5297
5298         expected=0
5299         # This should produce an error and not return any files
5300         cmd="$LFS find -stripe-index $OSTCOUNT -type f $dir"
5301         nums=$($cmd 2>/dev/null | wc -l)
5302         [ $nums -eq $expected ] ||
5303                 error "'$cmd' wrong: found $nums, expected $expected"
5304
5305         if [[ $OSTCOUNT -gt 1 ]]; then
5306                 expected=$(((NUMDIRS + 1) * NUMFILES + onestripe))
5307                 cmd="$LFS find -stripe-index 0,1 -type f $dir"
5308                 nums=$($cmd | wc -l)
5309                 [ $nums -eq $expected ] ||
5310                         error "'$cmd' wrong: found $nums, expected $expected"
5311         fi
5312 }
5313 run_test 56u "check lfs find -stripe-index works"
5314
5315 test_56v() {
5316         local mdt_idx=0
5317         local dir=$DIR/$tdir
5318
5319         setup_56 $dir $NUMFILES $NUMDIRS
5320
5321         UUID=$(mdtuuid_from_index $mdt_idx $dir)
5322         [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT $mdt_idx"
5323
5324         for file in $($LFS find -m $UUID $dir); do
5325                 file_midx=$($LFS getstripe -m $file)
5326                 [ $file_midx -eq $mdt_idx ] ||
5327                         error "lfs find -m $UUID != getstripe -m $file_midx"
5328         done
5329 }
5330 run_test 56v "check 'lfs find -m match with lfs getstripe -m'"
5331
5332 test_56w() {
5333         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5334         [ $PARALLEL == "yes" ] && skip "skip parallel run"
5335
5336         local dir=$DIR/$tdir
5337
5338         setup_56 $dir $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
5339
5340         local stripe_size=$($LFS getstripe -S -d $dir) ||
5341                 error "$LFS getstripe -S -d $dir failed"
5342         stripe_size=${stripe_size%% *}
5343
5344         local file_size=$((stripe_size * OSTCOUNT))
5345         local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
5346         local required_space=$((file_num * file_size))
5347         local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
5348                            head -n1)
5349         [[ $free_space -le $((required_space / 1024)) ]] &&
5350                 skip_env "need $required_space, have $free_space kbytes"
5351
5352         local dd_bs=65536
5353         local dd_count=$((file_size / dd_bs))
5354
5355         # write data into the files
5356         local i
5357         local j
5358         local file
5359
5360         for i in $(seq $NUMFILES); do
5361                 file=$dir/file$i
5362                 yes | dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5363                         error "write data into $file failed"
5364         done
5365         for i in $(seq $NUMDIRS); do
5366                 for j in $(seq $NUMFILES); do
5367                         file=$dir/dir$i/file$j
5368                         yes|dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5369                                 error "write data into $file failed"
5370                 done
5371         done
5372
5373         # $LFS_MIGRATE will fail if hard link migration is unsupported
5374         if [[ $(lustre_version_code mds1) -gt $(version_code 2.5.55) ]]; then
5375                 createmany -l$dir/dir1/file1 $dir/dir1/link 200 ||
5376                         error "creating links to $dir/dir1/file1 failed"
5377         fi
5378
5379         local expected=-1
5380
5381         [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
5382
5383         # lfs_migrate file
5384         local cmd="$LFS_MIGRATE -y -c $expected $dir/file1"
5385
5386         echo "$cmd"
5387         eval $cmd || error "$cmd failed"
5388
5389         check_stripe_count $dir/file1 $expected
5390
5391         if [ $MDS1_VERSION -ge $(version_code 2.6.90) ];
5392         then
5393                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
5394                 # OST 1 if it is on OST 0. This file is small enough to
5395                 # be on only one stripe.
5396                 file=$dir/migr_1_ost
5397                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
5398                         error "write data into $file failed"
5399                 local obdidx=$($LFS getstripe -i $file)
5400                 local oldmd5=$(md5sum $file)
5401                 local newobdidx=0
5402
5403                 [[ $obdidx -eq 0 ]] && newobdidx=1
5404                 cmd="$LFS migrate -i $newobdidx $file"
5405                 echo $cmd
5406                 eval $cmd || error "$cmd failed"
5407
5408                 local realobdix=$($LFS getstripe -i $file)
5409                 local newmd5=$(md5sum $file)
5410
5411                 [[ $newobdidx -ne $realobdix ]] &&
5412                         error "new OST is different (was=$obdidx, "\
5413                               "wanted=$newobdidx, got=$realobdix)"
5414                 [[ "$oldmd5" != "$newmd5" ]] &&
5415                         error "md5sum differ: $oldmd5, $newmd5"
5416         fi
5417
5418         # lfs_migrate dir
5419         cmd="$LFS_MIGRATE -y -c $expected $dir/dir1"
5420         echo "$cmd"
5421         eval $cmd || error "$cmd failed"
5422
5423         for j in $(seq $NUMFILES); do
5424                 check_stripe_count $dir/dir1/file$j $expected
5425         done
5426
5427         # lfs_migrate works with lfs find
5428         cmd="$LFS find -stripe_count $OSTCOUNT -type f $dir |
5429              $LFS_MIGRATE -y -c $expected"
5430         echo "$cmd"
5431         eval $cmd || error "$cmd failed"
5432
5433         for i in $(seq 2 $NUMFILES); do
5434                 check_stripe_count $dir/file$i $expected
5435         done
5436         for i in $(seq 2 $NUMDIRS); do
5437                 for j in $(seq $NUMFILES); do
5438                 check_stripe_count $dir/dir$i/file$j $expected
5439                 done
5440         done
5441 }
5442 run_test 56w "check lfs_migrate -c stripe_count works"
5443
5444 test_56wb() {
5445         local file1=$DIR/$tdir/file1
5446         local create_pool=false
5447         local initial_pool=$($LFS getstripe -p $DIR)
5448         local pool_list=()
5449         local pool=""
5450
5451         echo -n "Creating test dir..."
5452         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
5453         echo "done."
5454
5455         echo -n "Creating test file..."
5456         touch $file1 || error "cannot create file"
5457         echo "done."
5458
5459         echo -n "Detecting existing pools..."
5460         pool_list=($($LFS pool_list $FSNAME | grep "$FSNAME\." | cut -d. -f2))
5461
5462         if [ ${#pool_list[@]} -gt 0 ]; then
5463                 echo "${pool_list[@]}"
5464                 for thispool in "${pool_list[@]}"; do
5465                         if [[ -z "$initial_pool" ||
5466                               "$initial_pool" != "$thispool" ]]; then
5467                                 pool="$thispool"
5468                                 echo "Using existing pool '$pool'"
5469                                 break
5470                         fi
5471                 done
5472         else
5473                 echo "none detected."
5474         fi
5475         if [ -z "$pool" ]; then
5476                 pool=${POOL:-testpool}
5477                 [ "$initial_pool" = "$pool" ] && pool="testpool2"
5478                 echo -n "Creating pool '$pool'..."
5479                 create_pool=true
5480                 pool_add $pool &> /dev/null ||
5481                         error "pool_add failed"
5482                 echo "done."
5483
5484                 echo -n "Adding target to pool..."
5485                 pool_add_targets $pool 0 0 1 &> /dev/null ||
5486                         error "pool_add_targets failed"
5487                 echo "done."
5488         fi
5489
5490         echo -n "Setting pool using -p option..."
5491         $LFS_MIGRATE -y -q --no-rsync -p $pool $file1 &> /dev/null ||
5492                 error "migrate failed rc = $?"
5493         echo "done."
5494
5495         echo -n "Verifying test file is in pool after migrating..."
5496         [ "$($LFS getstripe -p $file1)" = $pool ] ||
5497                 error "file was not migrated to pool $pool"
5498         echo "done."
5499
5500         echo -n "Removing test file from pool '$pool'..."
5501         $LFS migrate $file1 &> /dev/null ||
5502                 error "cannot remove from pool"
5503         [ "$($LFS getstripe -p $file1)" ] &&
5504                 error "pool still set"
5505         echo "done."
5506
5507         echo -n "Setting pool using --pool option..."
5508         $LFS_MIGRATE -y -q --no-rsync --pool $pool $file1 &> /dev/null ||
5509                 error "migrate failed rc = $?"
5510         echo "done."
5511
5512         # Clean up
5513         rm -f $file1
5514         if $create_pool; then
5515                 destroy_test_pools 2> /dev/null ||
5516                         error "destroy test pools failed"
5517         fi
5518 }
5519 run_test 56wb "check lfs_migrate pool support"
5520
5521 test_56wc() {
5522         local file1="$DIR/$tdir/file1"
5523
5524         echo -n "Creating test dir..."
5525         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
5526         local def_stripe_size=$($LFS getstripe -S $DIR/$tdir 2>/dev/null)
5527         $LFS setstripe -S 1M -c 1 "$DIR/$tdir" &> /dev/null ||
5528                 error "cannot set stripe"
5529         echo "done"
5530
5531         echo -n "Setting initial stripe for test file..."
5532         $LFS setstripe -S 512K -c 1 "$file1" &> /dev/null ||
5533                 error "cannot set stripe"
5534         [ $($LFS getstripe -S "$file1") -eq 524288 ] ||
5535                 error "stripe size not set"
5536         echo "done."
5537
5538         # File currently set to -S 512K -c 1
5539
5540         # Ensure -c and -S options are rejected when -R is set
5541         echo -n "Verifying incompatible options are detected..."
5542         $LFS_MIGRATE -y -R -c 1 "$file1" &> /dev/null &&
5543                 error "incompatible -c and -R options not detected"
5544         $LFS_MIGRATE -y -R -S 1M "$file1" &> /dev/null &&
5545                 error "incompatible -S and -R options not detected"
5546         echo "done."
5547
5548         # Ensure unrecognized options are passed through to 'lfs migrate'
5549         echo -n "Verifying -S option is passed through to lfs migrate..."
5550         $LFS_MIGRATE -y -S 1M "$file1" &> /dev/null ||
5551                 error "migration failed"
5552         [ $($LFS getstripe -S "$file1") -eq 1048576 ] ||
5553                 error "file was not restriped"
5554         echo "done."
5555
5556         # File currently set to -S 1M -c 1
5557
5558         # Ensure long options are supported
5559         echo -n "Verifying long options supported..."
5560         $LFS_MIGRATE -y --non-block "$file1" &> /dev/null ||
5561                 error "long option without argument not supported"
5562         $LFS_MIGRATE -y --stripe-size 512K "$file1" &> /dev/null ||
5563                 error "long option with argument not supported"
5564         [ $($LFS getstripe -S "$file1") -eq 524288 ] ||
5565                 error "file not restriped with --stripe-size option"
5566         echo "done."
5567
5568         # File currently set to -S 512K -c 1
5569
5570         if [ "$OSTCOUNT" -gt 1 ]; then
5571                 echo -n "Verifying explicit stripe count can be set..."
5572                 $LFS_MIGRATE -y -c 2 "$file1" &> /dev/null ||
5573                         error "migrate failed"
5574                 [ $($LFS getstripe -c "$file1") -eq 2 ] ||
5575                         error "file not restriped to explicit count"
5576                 echo "done."
5577         fi
5578
5579         # File currently set to -S 512K -c 1 or -S 512K -c 2
5580
5581         # Ensure parent striping is used if -R is set, and no stripe
5582         # count or size is specified
5583         echo -n "Setting stripe for parent directory..."
5584         $LFS setstripe -S 1M -c 1 "$DIR/$tdir" &> /dev/null ||
5585                 error "cannot set stripe"
5586         echo "done."
5587
5588         echo -n "Verifying restripe option uses parent stripe settings..."
5589         $LFS_MIGRATE -y -R "$file1" &> /dev/null ||
5590                 error "migrate failed"
5591         [ $($LFS getstripe -S "$file1") -eq $def_stripe_size ] ||
5592                 error "file not restriped to parent settings"
5593         [ $($LFS getstripe -c "$file1") -eq 1 ] ||
5594                 error "file not restriped to parent settings"
5595         echo "done."
5596
5597         # File currently set to -S 1M -c 1
5598
5599         # Ensure striping is preserved if -R is not set, and no stripe
5600         # count or size is specified
5601         echo -n "Verifying striping size preserved when not specified..."
5602         local orig_stripe_size=$($LFS getstripe -S "$file1" 2>/dev/null)
5603         $LFS setstripe -S 2M -c 1 "$DIR/$tdir" &> /dev/null ||
5604                 error "cannot set stripe on parent directory"
5605         $LFS_MIGRATE -y "$file1" &> /dev/null ||
5606                 error "migrate failed"
5607         [ $($LFS getstripe -S "$file1") -eq $orig_stripe_size ] ||
5608                 error "file was restriped"
5609         echo "done."
5610
5611         # Ensure file name properly detected when final option has no argument
5612         echo -n "Verifying file name properly detected..."
5613         $LFS_MIGRATE -y "$file1" &> /dev/null ||
5614                 error "file name interpreted as option argument"
5615         echo "done."
5616
5617         # Clean up
5618         rm -f "$file1"
5619 }
5620 run_test 56wc "check unrecognized options for lfs_migrate are passed through"
5621
5622 test_56wd() {
5623         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5624
5625         local file1=$DIR/$tdir/file1
5626
5627         echo -n "Creating test dir..."
5628         test_mkdir $DIR/$tdir || error "cannot create dir"
5629         echo "done."
5630
5631         echo -n "Creating test file..."
5632         touch $file1
5633         echo "done."
5634
5635         # Ensure 'lfs migrate' will fail by using a non-existent option,
5636         # and make sure rsync is not called to recover
5637         echo -n "Make sure --no-rsync option works..."
5638         $LFS_MIGRATE -y --no-rsync --invalid-opt $file1 2>&1 |
5639                 grep -q 'refusing to fall back to rsync' ||
5640                 error "rsync was called with --no-rsync set"
5641         echo "done."
5642
5643         # Ensure rsync is called without trying 'lfs migrate' first
5644         echo -n "Make sure --rsync option works..."
5645         $LFS_MIGRATE -y --rsync --invalid-opt $file1 2>&1 |
5646                 grep -q 'falling back to rsync' &&
5647                 error "lfs migrate was called with --rsync set"
5648         echo "done."
5649
5650         echo -n "Make sure --rsync and --no-rsync options are exclusive..."
5651         $LFS_MIGRATE -y --rsync --no-rsync $file1 2>&1 |
5652                 grep -q 'at the same time' ||
5653                 error "--rsync and --no-rsync accepted concurrently"
5654         echo "done."
5655
5656         # Clean up
5657         rm -f $file1
5658 }
5659 run_test 56wd "check lfs_migrate --rsync and --no-rsync work"
5660
5661 test_56x() {
5662         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5663         check_swap_layouts_support
5664
5665         local dir=$DIR/$tdir
5666         local ref1=/etc/passwd
5667         local file1=$dir/file1
5668
5669         test_mkdir $dir || error "creating dir $dir"
5670         $LFS setstripe -c 2 $file1
5671         cp $ref1 $file1
5672         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
5673         stripe=$($LFS getstripe -c $file1)
5674         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5675         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5676
5677         # clean up
5678         rm -f $file1
5679 }
5680 run_test 56x "lfs migration support"
5681
5682 test_56xa() {
5683         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5684         check_swap_layouts_support
5685
5686         local dir=$DIR/$tdir/$testnum
5687
5688         test_mkdir -p $dir
5689
5690         local ref1=/etc/passwd
5691         local file1=$dir/file1
5692
5693         $LFS setstripe -c 2 $file1
5694         cp $ref1 $file1
5695         $LFS migrate --block -c 1 $file1 || error "migrate failed rc = $?"
5696
5697         local stripe=$($LFS getstripe -c $file1)
5698
5699         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5700         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5701
5702         # clean up
5703         rm -f $file1
5704 }
5705 run_test 56xa "lfs migration --block support"
5706
5707 check_migrate_links() {
5708         local dir="$1"
5709         local file1="$dir/file1"
5710         local begin="$2"
5711         local count="$3"
5712         local total_count=$(($begin + $count - 1))
5713         local symlink_count=10
5714         local uniq_count=10
5715
5716         if [ ! -f "$file1" ]; then
5717                 echo -n "creating initial file..."
5718                 $LFS setstripe -c 1 -S "512k" "$file1" ||
5719                         error "cannot setstripe initial file"
5720                 echo "done"
5721
5722                 echo -n "creating symlinks..."
5723                 for s in $(seq 1 $symlink_count); do
5724                         ln -s "$file1" "$dir/slink$s" ||
5725                                 error "cannot create symlinks"
5726                 done
5727                 echo "done"
5728
5729                 echo -n "creating nonlinked files..."
5730                 createmany -o "$dir/uniq" 1 10 &> /dev/null ||
5731                         error "cannot create nonlinked files"
5732                 echo "done"
5733         fi
5734
5735         # create hard links
5736         if [ ! -f "$dir/file$total_count" ]; then
5737                 echo -n "creating hard links $begin:$total_count..."
5738                 createmany -l"$file1" "$dir/file" "$begin" "$count" &>  \
5739                         /dev/null || error "cannot create hard links"
5740                 echo "done"
5741         fi
5742
5743         echo -n "checking number of hard links listed in xattrs..."
5744         local fid=$($LFS getstripe -F "$file1")
5745         local paths=($($LFS fid2path "$MOUNT" "$fid" 2> /dev/null))
5746
5747         echo "${#paths[*]}"
5748         if [ ${#paths[*]} -lt $total_count -a "$begin" -eq 2  ]; then
5749                         skip "hard link list has unexpected size, skipping test"
5750         fi
5751         if [ ${#paths[*]} -ge $total_count -a "$begin" -ne 2  ]; then
5752                         error "link names should exceed xattrs size"
5753         fi
5754
5755         echo -n "migrating files..."
5756         local migrate_out=$($LFS_MIGRATE -y -S '1m' $dir)
5757         local rc=$?
5758         [ $rc -eq 0 ] || error "migrate failed rc = $rc"
5759         echo "done"
5760
5761         # make sure all links have been properly migrated
5762         echo -n "verifying files..."
5763         fid=$($LFS getstripe -F "$file1") ||
5764                 error "cannot get fid for file $file1"
5765         for i in $(seq 2 $total_count); do
5766                 local fid2=$($LFS getstripe -F $dir/file$i)
5767
5768                 [ "$fid2" == "$fid" ] ||
5769                         error "migrated hard link has mismatched FID"
5770         done
5771
5772         # make sure hard links were properly detected, and migration was
5773         # performed only once for the entire link set; nonlinked files should
5774         # also be migrated
5775         local actual=$(grep -c 'done migrate' <<< "$migrate_out")
5776         local expected=$(($uniq_count + 1))
5777
5778         [ "$actual" -eq  "$expected" ] ||
5779                 error "hard links individually migrated ($actual != $expected)"
5780
5781         # make sure the correct number of hard links are present
5782         local hardlinks=$(stat -c '%h' "$file1")
5783
5784         [ $hardlinks -eq $total_count ] ||
5785                 error "num hard links $hardlinks != $total_count"
5786         echo "done"
5787
5788         return 0
5789 }
5790
5791 test_56xb() {
5792         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
5793                 skip "Need MDS version at least 2.10.55"
5794
5795         local dir="$DIR/$tdir"
5796
5797         test_mkdir "$dir" || error "cannot create dir $dir"
5798
5799         echo "testing lfs migrate mode when all links fit within xattrs"
5800         LFS_MIGRATE_RSYNC=false check_migrate_links "$dir" 2 99
5801
5802         echo "testing rsync mode when all links fit within xattrs"
5803         LFS_MIGRATE_RSYNC=true check_migrate_links "$dir" 2 99
5804
5805         echo "testing lfs migrate mode when all links do not fit within xattrs"
5806         LFS_MIGRATE_RSYNC=false check_migrate_links "$dir" 101 100
5807
5808         echo "testing rsync mode when all links do not fit within xattrs"
5809         LFS_MIGRATE_RSYNC=true check_migrate_links "$dir" 101 100
5810
5811         # clean up
5812         rm -rf $dir
5813 }
5814 run_test 56xb "lfs migration hard link support"
5815
5816 test_56y() {
5817         [ $MDS1_VERSION -lt $(version_code 2.4.53) ] &&
5818                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53"
5819
5820         local res=""
5821         local dir=$DIR/$tdir
5822         local f1=$dir/file1
5823         local f2=$dir/file2
5824
5825         test_mkdir -p $dir || error "creating dir $dir"
5826         touch $f1 || error "creating std file $f1"
5827         $MULTIOP $f2 H2c || error "creating released file $f2"
5828
5829         # a directory can be raid0, so ask only for files
5830         res=$($LFS find $dir -L raid0 -type f | wc -l)
5831         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
5832
5833         res=$($LFS find $dir \! -L raid0 -type f | wc -l)
5834         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
5835
5836         # only files can be released, so no need to force file search
5837         res=$($LFS find $dir -L released)
5838         [[ $res == $f2 ]] || error "search released: found $res != $f2"
5839
5840         res=$($LFS find $dir -type f \! -L released)
5841         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
5842 }
5843 run_test 56y "lfs find -L raid0|released"
5844
5845 test_56z() { # LU-4824
5846         # This checks to make sure 'lfs find' continues after errors
5847         # There are two classes of errors that should be caught:
5848         # - If multiple paths are provided, all should be searched even if one
5849         #   errors out
5850         # - If errors are encountered during the search, it should not terminate
5851         #   early
5852         local dir=$DIR/$tdir
5853         local i
5854
5855         test_mkdir $dir
5856         for i in d{0..9}; do
5857                 test_mkdir $dir/$i
5858         done
5859         touch $dir/d{0..9}/$tfile
5860         $LFS find $DIR/non_existent_dir $dir &&
5861                 error "$LFS find did not return an error"
5862         # Make a directory unsearchable. This should NOT be the last entry in
5863         # directory order.  Arbitrarily pick the 6th entry
5864         chmod 700 $($LFS find $dir -type d | sed '6!d')
5865
5866         local count=$($RUNAS $LFS find $DIR/non_existent $dir | wc -l)
5867
5868         # The user should be able to see 10 directories and 9 files
5869         [ $count == 19 ] || error "$LFS find did not continue after error"
5870 }
5871 run_test 56z "lfs find should continue after an error"
5872
5873 test_56aa() { # LU-5937
5874         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
5875
5876         local dir=$DIR/$tdir
5877
5878         mkdir $dir
5879         $LFS setdirstripe -c$MDSCOUNT $dir/striped_dir
5880
5881         createmany -o $dir/striped_dir/${tfile}- 1024
5882         local dirs=$($LFS find --size +8k $dir/)
5883
5884         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
5885 }
5886 run_test 56aa "lfs find --size under striped dir"
5887
5888 test_56ab() { # LU-10705
5889         test_mkdir $DIR/$tdir
5890         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=8k count=1 seek=2k
5891         dd if=/dev/zero of=$DIR/$tdir/$tfile.2 bs=4k count=1 seek=4k
5892         dd if=/dev/zero of=$DIR/$tdir/$tfile.3 bs=1M count=2 seek=16
5893         # Flush writes to ensure valid blocks.  Need to be more thorough for
5894         # ZFS, since blocks are not allocated/returned to client immediately.
5895         sync_all_data
5896         wait_zfs_commit ost1 2
5897         cancel_lru_locks osc
5898         ls -ls $DIR/$tdir
5899
5900         local files=$($LFS find --size +16M $DIR/$tdir | wc -l)
5901
5902         [[ $files == 3 ]] || error ">16M size files $files isn't 3 as expected"
5903
5904         files=$($LFS find --blocks +1M $DIR/$tdir | wc -l)
5905         [[ $files == 1 ]] || error ">1M blocks files $files isn't 1 as expected"
5906
5907         rm -f $DIR/$tdir/$tfile.[123]
5908 }
5909 run_test 56ab "lfs find --blocks"
5910
5911 test_56ba() {
5912         [ $MDS1_VERSION -lt $(version_code 2.10.50) ] &&
5913                 skip "Need MDS version at least 2.10.50"
5914
5915         # Create composite files with one component
5916         local dir=$DIR/$tdir
5917
5918         setup_56 $dir/1Mfiles 5 1 "-S 1M --component-end 1M"
5919         # Create composite files with three components
5920         setup_56 $dir/2Mfiles 5 2 "-E 2M -S 1M -E 4M -E 6M"
5921         # Create non-composite files
5922         createmany -o $dir/${tfile}- 10
5923
5924         local nfiles=$($LFS find --component-end 1M --type f $dir | wc -l)
5925
5926         [[ $nfiles == 10 ]] ||
5927                 error "lfs find -E 1M found $nfiles != 10 files"
5928
5929         nfiles=$($LFS find ! -E 1M --type f $dir | wc -l)
5930         [[ $nfiles == 25 ]] ||
5931                 error "lfs find ! -E 1M found $nfiles != 25 files"
5932
5933         # All files have a component that starts at 0
5934         nfiles=$($LFS find --component-start 0 --type f $dir | wc -l)
5935         [[ $nfiles == 35 ]] ||
5936                 error "lfs find --component-start 0 - $nfiles != 35 files"
5937
5938         nfiles=$($LFS find --component-start 2M --type f $dir | wc -l)
5939         [[ $nfiles == 15 ]] ||
5940                 error "lfs find --component-start 2M - $nfiles != 15 files"
5941
5942         # All files created here have a componenet that does not starts at 2M
5943         nfiles=$($LFS find ! --component-start 2M --type f $dir | wc -l)
5944         [[ $nfiles == 35 ]] ||
5945                 error "lfs find ! --component-start 2M - $nfiles != 35 files"
5946
5947         # Find files with a specified number of components
5948         local nfiles=$($LFS find --component-count 3 --type f $dir | wc -l)
5949         [[ $nfiles == 15 ]] ||
5950                 error "lfs find --component-count 3 - $nfiles != 15 files"
5951
5952         # Remember non-composite files have a component count of zero
5953         local nfiles=$($LFS find --component-count 0 --type f $dir | wc -l)
5954         [[ $nfiles == 10 ]] ||
5955                 error "lfs find --component-count 0 - $nfiles != 10 files"
5956
5957         nfiles=$($LFS find ! --component-count 3 --type f $dir | wc -l)
5958         [[ $nfiles == 20 ]] ||
5959                 error "lfs find ! --component-count 3 - $nfiles != 20 files"
5960
5961         # All files have a flag called "init"
5962         local nfiles=$($LFS find --component-flags init --type f $dir | wc -l)
5963         [[ $nfiles == 35 ]] ||
5964                 error "lfs find --component-flags init - $nfiles != 35 files"
5965
5966         # Multi-component files will have a component not initialized
5967         local nfiles=$($LFS find ! --component-flags init --type f $dir | wc -l)
5968         [[ $nfiles == 15 ]] ||
5969                 error "lfs find !--component-flags init - $nfiles != 15 files"
5970
5971         rm -rf $dir
5972
5973 }
5974 run_test 56ba "test lfs find --component-end, -start, -count, and -flags"
5975
5976 test_56ca() {
5977         [[ $MDS1_VERSION -ge $(version_code 2.10.57) ]] ||
5978                 skip "Need MDS version at least 2.10.57"
5979
5980         local td=$DIR/$tdir
5981         local tf=$td/$tfile
5982         local dir
5983         local nfiles
5984         local cmd
5985         local i
5986         local j
5987
5988         # create mirrored directories and mirrored files
5989         mkdir $td || error "mkdir $td failed"
5990         $LFS mirror create -N3 $td || error "create mirrored dir $td failed"
5991         createmany -o $tf- 10 || error "create $tf- failed"
5992
5993         for i in $(seq 2); do
5994                 dir=$td/dir$i
5995                 mkdir $dir || error "mkdir $dir failed"
5996                 $LFS mirror create -N$((3 + i)) $dir ||
5997                         error "create mirrored dir $dir failed"
5998                 createmany -o $dir/$tfile- 10 ||
5999                         error "create $dir/$tfile- failed"
6000         done
6001
6002         # change the states of some mirrored files
6003         echo foo > $tf-6
6004         for i in $(seq 2); do
6005                 dir=$td/dir$i
6006                 for j in $(seq 4 9); do
6007                         echo foo > $dir/$tfile-$j
6008                 done
6009         done
6010
6011         # find mirrored files with specific mirror count
6012         cmd="$LFS find --mirror-count 3 --type f $td"
6013         nfiles=$($cmd | wc -l)
6014         [[ $nfiles = 10 ]] || error "$cmd: $nfiles != 10 files"
6015
6016         cmd="$LFS find ! --mirror-count 3 --type f $td"
6017         nfiles=$($cmd | wc -l)
6018         [[ $nfiles = 20 ]] || error "$cmd: $nfiles != 20 files"
6019
6020         cmd="$LFS find --mirror-count +2 --type f $td"
6021         nfiles=$($cmd | wc -l)
6022         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
6023
6024         cmd="$LFS find --mirror-count -6 --type f $td"
6025         nfiles=$($cmd | wc -l)
6026         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
6027
6028         # find mirrored files with specific file state
6029         cmd="$LFS find --maxdepth 1 --mirror-state=^ro --type f $td"
6030         [[ $($cmd) = $tf-6 ]] || error "$cmd: didn't return $tf-6"
6031
6032         cmd="$LFS find --mirror-state=ro --type f $td"
6033         nfiles=$($cmd | wc -l)
6034         [[ $nfiles = 17 ]] || error "$cmd: $nfiles != 17 files"
6035
6036         cmd="$LFS find ! --mirror-state=ro --type f $td"
6037         nfiles=$($cmd | wc -l)
6038         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
6039
6040         cmd="$LFS find --mirror-state=wp --type f $td"
6041         nfiles=$($cmd | wc -l)
6042         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
6043
6044         cmd="$LFS find ! --mirror-state=sp --type f $td"
6045         nfiles=$($cmd | wc -l)
6046         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
6047 }
6048 run_test 56ca "check lfs find --mirror-count|-N and --mirror-state"
6049
6050 test_57a() {
6051         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6052         # note test will not do anything if MDS is not local
6053         if [ "$mds1_FSTYPE" != ldiskfs ]; then
6054                 skip_env "ldiskfs only test"
6055         fi
6056         remote_mds_nodsh && skip "remote MDS with nodsh"
6057
6058         local MNTDEV="osd*.*MDT*.mntdev"
6059         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
6060         [ -z "$DEV" ] && error "can't access $MNTDEV"
6061         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
6062                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
6063                         error "can't access $DEV"
6064                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
6065                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
6066                 rm $TMP/t57a.dump
6067         done
6068 }
6069 run_test 57a "verify MDS filesystem created with large inodes =="
6070
6071 test_57b() {
6072         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6073         if [ "$mds1_FSTYPE" != ldiskfs ]; then
6074                 skip_env "ldiskfs only test"
6075         fi
6076         remote_mds_nodsh && skip "remote MDS with nodsh"
6077
6078         local dir=$DIR/$tdir
6079         local filecount=100
6080         local file1=$dir/f1
6081         local fileN=$dir/f$filecount
6082
6083         rm -rf $dir || error "removing $dir"
6084         test_mkdir -c1 $dir
6085         local mdtidx=$($LFS getstripe -m $dir)
6086         local mdtname=MDT$(printf %04x $mdtidx)
6087         local facet=mds$((mdtidx + 1))
6088
6089         echo "mcreating $filecount files"
6090         createmany -m $dir/f 1 $filecount || error "creating files in $dir"
6091
6092         # verify that files do not have EAs yet
6093         $LFS getstripe $file1 2>&1 | grep -q "no stripe" ||
6094                 error "$file1 has an EA"
6095         $LFS getstripe $fileN 2>&1 | grep -q "no stripe" ||
6096                 error "$fileN has an EA"
6097
6098         sync
6099         sleep 1
6100         df $dir  #make sure we get new statfs data
6101         local mdsfree=$(do_facet $facet \
6102                         lctl get_param -n osd*.*$mdtname.kbytesfree)
6103         local mdcfree=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
6104         local file
6105
6106         echo "opening files to create objects/EAs"
6107         for file in $(seq -f $dir/f%g 1 $filecount); do
6108                 $OPENFILE -f O_RDWR $file > /dev/null 2>&1 ||
6109                         error "opening $file"
6110         done
6111
6112         # verify that files have EAs now
6113         $LFS getstripe $file1 | grep -q "obdidx" || error "$file1 missing EA"
6114         $LFS getstripe $fileN | grep -q "obdidx" || error "$fileN missing EA"
6115
6116         sleep 1  #make sure we get new statfs data
6117         df $dir
6118         local mdsfree2=$(do_facet $facet \
6119                          lctl get_param -n osd*.*$mdtname.kbytesfree)
6120         local mdcfree2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
6121
6122         if [[ $mdcfree2 -lt $((mdcfree - 16)) ]]; then
6123                 if [ "$mdsfree" != "$mdsfree2" ]; then
6124                         error "MDC before $mdcfree != after $mdcfree2"
6125                 else
6126                         echo "MDC before $mdcfree != after $mdcfree2"
6127                         echo "unable to confirm if MDS has large inodes"
6128                 fi
6129         fi
6130         rm -rf $dir
6131 }
6132 run_test 57b "default LOV EAs are stored inside large inodes ==="
6133
6134 test_58() {
6135         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6136         [ -z "$(which wiretest 2>/dev/null)" ] &&
6137                         skip_env "could not find wiretest"
6138
6139         wiretest
6140 }
6141 run_test 58 "verify cross-platform wire constants =============="
6142
6143 test_59() {
6144         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6145
6146         echo "touch 130 files"
6147         createmany -o $DIR/f59- 130
6148         echo "rm 130 files"
6149         unlinkmany $DIR/f59- 130
6150         sync
6151         # wait for commitment of removal
6152         wait_delete_completed
6153 }
6154 run_test 59 "verify cancellation of llog records async ========="
6155
6156 TEST60_HEAD="test_60 run $RANDOM"
6157 test_60a() {
6158         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6159         remote_mgs_nodsh && skip "remote MGS with nodsh"
6160         do_facet mgs "! which run-llog.sh &> /dev/null" &&
6161                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
6162                         skip_env "missing subtest run-llog.sh"
6163
6164         log "$TEST60_HEAD - from kernel mode"
6165         do_facet mgs "$LCTL set_param debug=warning; $LCTL dk > /dev/null"
6166         do_facet mgs "bash run-llog.sh" || error "run-llog.sh failed"
6167         do_facet mgs $LCTL dk > $TMP/$tfile
6168
6169         # LU-6388: test llog_reader
6170         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
6171         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
6172         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
6173                         skip_env "missing llog_reader"
6174         local fstype=$(facet_fstype mgs)
6175         [ $fstype != ldiskfs -a $fstype != zfs ] &&
6176                 skip_env "Only for ldiskfs or zfs type mgs"
6177
6178         local mntpt=$(facet_mntpt mgs)
6179         local mgsdev=$(mgsdevname 1)
6180         local fid_list
6181         local fid
6182         local rec_list
6183         local rec
6184         local rec_type
6185         local obj_file
6186         local path
6187         local seq
6188         local oid
6189         local pass=true
6190
6191         #get fid and record list
6192         fid_list=($(awk '/9_sub.*record/ { print $NF }' /$TMP/$tfile |
6193                 tail -n 4))
6194         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' /$TMP/$tfile |
6195                 tail -n 4))
6196         #remount mgs as ldiskfs or zfs type
6197         stop mgs || error "stop mgs failed"
6198         mount_fstype mgs || error "remount mgs failed"
6199         for ((i = 0; i < ${#fid_list[@]}; i++)); do
6200                 fid=${fid_list[i]}
6201                 rec=${rec_list[i]}
6202                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
6203                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
6204                 oid=$((16#$oid))
6205
6206                 case $fstype in
6207                         ldiskfs )
6208                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
6209                         zfs )
6210                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
6211                 esac
6212                 echo "obj_file is $obj_file"
6213                 do_facet mgs $llog_reader $obj_file
6214
6215                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
6216                         awk '{ print $3 }' | sed -e "s/^type=//g")
6217                 if [ $rec_type != $rec ]; then
6218                         echo "FAILED test_60a wrong record type $rec_type," \
6219                               "should be $rec"
6220                         pass=false
6221                         break
6222                 fi
6223
6224                 #check obj path if record type is LLOG_LOGID_MAGIC
6225                 if [ "$rec" == "1064553b" ]; then
6226                         path=$(do_facet mgs $llog_reader $obj_file |
6227                                 grep "path=" | awk '{ print $NF }' |
6228                                 sed -e "s/^path=//g")
6229                         if [ $obj_file != $mntpt/$path ]; then
6230                                 echo "FAILED test_60a wrong obj path" \
6231                                       "$montpt/$path, should be $obj_file"
6232                                 pass=false
6233                                 break
6234                         fi
6235                 fi
6236         done
6237         rm -f $TMP/$tfile
6238         #restart mgs before "error", otherwise it will block the next test
6239         stop mgs || error "stop mgs failed"
6240         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
6241         $pass || error "test failed, see FAILED test_60a messages for specifics"
6242 }
6243 run_test 60a "llog_test run from kernel module and test llog_reader"
6244
6245 test_60b() { # bug 6411
6246         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6247
6248         dmesg > $DIR/$tfile
6249         LLOG_COUNT=$(do_facet mgs dmesg |
6250                      awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
6251                           /llog_[a-z]*.c:[0-9]/ {
6252                                 if (marker)
6253                                         from_marker++
6254                                 from_begin++
6255                           }
6256                           END {
6257                                 if (marker)
6258                                         print from_marker
6259                                 else
6260                                         print from_begin
6261                           }")
6262
6263         [[ $LLOG_COUNT -gt 120 ]] &&
6264                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
6265 }
6266 run_test 60b "limit repeated messages from CERROR/CWARN"
6267
6268 test_60c() {
6269         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6270
6271         echo "create 5000 files"
6272         createmany -o $DIR/f60c- 5000
6273 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
6274         lctl set_param fail_loc=0x80000137
6275         unlinkmany $DIR/f60c- 5000
6276         lctl set_param fail_loc=0
6277 }
6278 run_test 60c "unlink file when mds full"
6279
6280 test_60d() {
6281         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6282
6283         SAVEPRINTK=$(lctl get_param -n printk)
6284         # verify "lctl mark" is even working"
6285         MESSAGE="test message ID $RANDOM $$"
6286         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
6287         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
6288
6289         lctl set_param printk=0 || error "set lnet.printk failed"
6290         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
6291         MESSAGE="new test message ID $RANDOM $$"
6292         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
6293         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
6294         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
6295
6296         lctl set_param -n printk="$SAVEPRINTK"
6297 }
6298 run_test 60d "test printk console message masking"
6299
6300 test_60e() {
6301         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6302         remote_mds_nodsh && skip "remote MDS with nodsh"
6303
6304         touch $DIR/$tfile
6305 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
6306         do_facet mds1 lctl set_param fail_loc=0x15b
6307         rm $DIR/$tfile
6308 }
6309 run_test 60e "no space while new llog is being created"
6310
6311 test_60g() {
6312         local pid
6313
6314         test_mkdir -c $MDSCOUNT $DIR/$tdir
6315         $LFS setdirstripe -D -i -1 -c $MDSCOUNT $DIR/$tdir
6316
6317         (
6318                 local index=0
6319                 while true; do
6320                         mkdir $DIR/$tdir/subdir$index 2>/dev/null
6321                         rmdir $DIR/$tdir/subdir$index 2>/dev/null
6322                         index=$((index + 1))
6323                 done
6324         ) &
6325
6326         pid=$!
6327
6328         for i in $(seq 100); do 
6329                 # define OBD_FAIL_OSD_TXN_START    0x19a
6330                 do_facet mds1 lctl set_param fail_loc=0x8000019a
6331                 usleep 100
6332         done
6333
6334         kill -9 $pid
6335
6336         mkdir $DIR/$tdir/new || error "mkdir failed"
6337         rmdir $DIR/$tdir/new || error "rmdir failed"
6338 }
6339 run_test 60g "transaction abort won't cause MDT hung"
6340
6341 test_61() {
6342         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6343
6344         f="$DIR/f61"
6345         dd if=/dev/zero of=$f bs=$PAGE_SIZE count=1 || error "dd $f failed"
6346         cancel_lru_locks osc
6347         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
6348         sync
6349 }
6350 run_test 61 "mmap() writes don't make sync hang ================"
6351
6352 # bug 2330 - insufficient obd_match error checking causes LBUG
6353 test_62() {
6354         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6355
6356         f="$DIR/f62"
6357         echo foo > $f
6358         cancel_lru_locks osc
6359         lctl set_param fail_loc=0x405
6360         cat $f && error "cat succeeded, expect -EIO"
6361         lctl set_param fail_loc=0
6362 }
6363 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
6364 # match every page all of the time.
6365 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
6366
6367 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
6368 # Though this test is irrelevant anymore, it helped to reveal some
6369 # other grant bugs (LU-4482), let's keep it.
6370 test_63a() {   # was test_63
6371         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6372
6373         MAX_DIRTY_MB=$(lctl get_param -n osc.*.max_dirty_mb | head -n 1)
6374
6375         for i in `seq 10` ; do
6376                 dd if=/dev/zero of=$DIR/f63 bs=8k &
6377                 sleep 5
6378                 kill $!
6379                 sleep 1
6380         done
6381
6382         rm -f $DIR/f63 || true
6383 }
6384 run_test 63a "Verify oig_wait interruption does not crash ======="
6385
6386 # bug 2248 - async write errors didn't return to application on sync
6387 # bug 3677 - async write errors left page locked
6388 test_63b() {
6389         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6390
6391         debugsave
6392         lctl set_param debug=-1
6393
6394         # ensure we have a grant to do async writes
6395         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
6396         rm $DIR/$tfile
6397
6398         sync    # sync lest earlier test intercept the fail_loc
6399
6400         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
6401         lctl set_param fail_loc=0x80000406
6402         $MULTIOP $DIR/$tfile Owy && \
6403                 error "sync didn't return ENOMEM"
6404         sync; sleep 2; sync     # do a real sync this time to flush page
6405         lctl get_param -n llite.*.dump_page_cache | grep locked && \
6406                 error "locked page left in cache after async error" || true
6407         debugrestore
6408 }
6409 run_test 63b "async write errors should be returned to fsync ==="
6410
6411 test_64a () {
6412         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6413
6414         df $DIR
6415         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
6416 }
6417 run_test 64a "verify filter grant calculations (in kernel) ====="
6418
6419 test_64b () {
6420         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6421
6422         sh oos.sh $MOUNT || error "oos.sh failed: $?"
6423 }
6424 run_test 64b "check out-of-space detection on client"
6425
6426 test_64c() {
6427         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
6428 }
6429 run_test 64c "verify grant shrink"
6430
6431 # this does exactly what osc_request.c:osc_announce_cached() does in
6432 # order to calculate max amount of grants to ask from server
6433 want_grant() {
6434         local tgt=$1
6435
6436         local nrpages=$($LCTL get_param -n osc.${tgt}.max_pages_per_rpc)
6437         local rpc_in_flight=$($LCTL get_param -n osc.${tgt}.max_rpcs_in_flight)
6438
6439         ((rpc_in_flight ++));
6440         nrpages=$((nrpages * rpc_in_flight))
6441
6442         local dirty_max_pages=$($LCTL get_param -n osc.${tgt}.max_dirty_mb)
6443
6444         dirty_max_pages=$((dirty_max_pages * 1024 * 1024 / PAGE_SIZE))
6445
6446         [[ $dirty_max_pages -gt $nrpages ]] && nrpages=$dirty_max_pages
6447         local undirty=$((nrpages * PAGE_SIZE))
6448
6449         local max_extent_pages
6450         max_extent_pages=$($LCTL get_param osc.${tgt}.import |
6451             grep grant_max_extent_size | awk '{print $2}')
6452         max_extent_pages=$((max_extent_pages / PAGE_SIZE))
6453         local nrextents=$(((nrpages + max_extent_pages - 1) / max_extent_pages))
6454         local grant_extent_tax
6455         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6456             grep grant_extent_tax | awk '{print $2}')
6457
6458         undirty=$((undirty + nrextents * grant_extent_tax))
6459
6460         echo $undirty
6461 }
6462
6463 # this is size of unit for grant allocation. It should be equal to
6464 # what tgt_grant.c:tgt_grant_chunk() calculates
6465 grant_chunk() {
6466         local tgt=$1
6467         local max_brw_size
6468         local grant_extent_tax
6469
6470         max_brw_size=$($LCTL get_param osc.${tgt}.import |
6471             grep max_brw_size | awk '{print $2}')
6472
6473         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6474             grep grant_extent_tax | awk '{print $2}')
6475
6476         echo $(((max_brw_size + grant_extent_tax) * 2))
6477 }
6478
6479 test_64d() {
6480         [ $OST1_VERSION -lt $(version_code 2.10.56) ] &&
6481                 skip "OST < 2.10.55 doesn't limit grants enough"
6482
6483         local tgt=$($LCTL dl | grep "0000-osc-[^mM]" | awk '{print $4}')
6484         local file=$DIR/$tfile
6485
6486         [[ $($LCTL get_param osc.${tgt}.import |
6487              grep "connect_flags:.*grant_param") ]] ||
6488                 skip "no grant_param connect flag"
6489
6490         local olddebug=$($LCTL get_param -n debug 2> /dev/null)
6491
6492         $LCTL set_param debug="$OLDDEBUG" 2> /dev/null || true
6493
6494         local max_cur_granted=$(($(want_grant $tgt) + $(grant_chunk $tgt)))
6495         stack_trap "rm -f $file" EXIT
6496
6497         $LFS setstripe $file -i 0 -c 1
6498         dd if=/dev/zero of=$file bs=1M count=1000 &
6499         ddpid=$!
6500
6501         while true
6502         do
6503                 local cur_grant=$($LCTL get_param -n osc.${tgt}.cur_grant_bytes)
6504                 if [[ $cur_grant -gt $max_cur_granted ]]
6505                 then
6506                         kill $ddpid
6507                         error "cur_grant $cur_grant > $max_cur_granted"
6508                 fi
6509                 kill -0 $ddpid
6510                 [[ $? -ne 0 ]] && break;
6511                 sleep 2
6512         done
6513
6514         rm -f $DIR/$tfile
6515         wait_delete_completed
6516         $LCTL set_param debug="$olddebug" 2> /dev/null || true
6517 }
6518 run_test 64d "check grant limit exceed"
6519
6520 # bug 1414 - set/get directories' stripe info
6521 test_65a() {
6522         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6523
6524         test_mkdir $DIR/$tdir
6525         touch $DIR/$tdir/f1
6526         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
6527 }
6528 run_test 65a "directory with no stripe info"
6529
6530 test_65b() {
6531         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6532
6533         test_mkdir $DIR/$tdir
6534         local STRIPESIZE=$($LFS getstripe -S $DIR/$tdir)
6535
6536         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6537                                                 error "setstripe"
6538         touch $DIR/$tdir/f2
6539         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
6540 }
6541 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
6542
6543 test_65c() {
6544         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6545         [ $OSTCOUNT -lt 2 ] && skip_env "need at least 2 OSTs"
6546
6547         test_mkdir $DIR/$tdir
6548         local stripesize=$($LFS getstripe -S $DIR/$tdir)
6549
6550         $LFS setstripe -S $((stripesize * 4)) -i 1 \
6551                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
6552         touch $DIR/$tdir/f3
6553         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
6554 }
6555 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
6556
6557 test_65d() {
6558         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6559
6560         test_mkdir $DIR/$tdir
6561         local STRIPECOUNT=$($LFS getstripe -c $DIR/$tdir)
6562         local STRIPESIZE=$($LFS getstripe -S $DIR/$tdir)
6563
6564         if [[ $STRIPECOUNT -le 0 ]]; then
6565                 sc=1
6566         elif [[ $STRIPECOUNT -gt 2000 ]]; then
6567 #LOV_MAX_STRIPE_COUNT is 2000
6568                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
6569         else
6570                 sc=$(($STRIPECOUNT - 1))
6571         fi
6572         $LFS setstripe -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
6573         touch $DIR/$tdir/f4 $DIR/$tdir/f5
6574         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
6575                 error "lverify failed"
6576 }
6577 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
6578
6579 test_65e() {
6580         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6581
6582         test_mkdir $DIR/$tdir
6583
6584         $LFS setstripe $DIR/$tdir || error "setstripe"
6585         $LFS getstripe -v $DIR/$tdir | grep "Default" ||
6586                                         error "no stripe info failed"
6587         touch $DIR/$tdir/f6
6588         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
6589 }
6590 run_test 65e "directory setstripe defaults"
6591
6592 test_65f() {
6593         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6594
6595         test_mkdir $DIR/${tdir}f
6596         $RUNAS $LFS setstripe $DIR/${tdir}f &&
6597                 error "setstripe succeeded" || true
6598 }
6599 run_test 65f "dir setstripe permission (should return error) ==="
6600
6601 test_65g() {
6602         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6603
6604         test_mkdir $DIR/$tdir
6605         local STRIPESIZE=$($LFS getstripe -S $DIR/$tdir)
6606
6607         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6608                 error "setstripe -S failed"
6609         $LFS setstripe -d $DIR/$tdir || error "setstripe -d failed"
6610         $LFS getstripe -v $DIR/$tdir | grep "Default" ||
6611                 error "delete default stripe failed"
6612 }
6613 run_test 65g "directory setstripe -d"
6614
6615 test_65h() {
6616         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6617
6618         test_mkdir $DIR/$tdir
6619         local STRIPESIZE=$($LFS getstripe -S $DIR/$tdir)
6620
6621         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6622                 error "setstripe -S failed"
6623         test_mkdir $DIR/$tdir/dd1
6624         [ $($LFS getstripe -c $DIR/$tdir) = $($LFS getstripe -c $DIR/$tdir/dd1) ] ||
6625                 error "stripe info inherit failed"
6626 }
6627 run_test 65h "directory stripe info inherit ===================="
6628
6629 test_65i() {
6630         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6631
6632         save_layout_restore_at_exit $MOUNT
6633
6634         # bug6367: set non-default striping on root directory
6635         $LFS setstripe -S 65536 -c -1 $MOUNT || error "error setting stripe"
6636
6637         # bug12836: getstripe on -1 default directory striping
6638         $LFS getstripe $MOUNT || error "getstripe $MOUNT failed"
6639
6640         # bug12836: getstripe -v on -1 default directory striping
6641         $LFS getstripe -v $MOUNT || error "getstripe -v $MOUNT failed"
6642
6643         # bug12836: new find on -1 default directory striping
6644         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
6645 }
6646 run_test 65i "various tests to set root directory striping"
6647
6648 test_65j() { # bug6367
6649         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6650
6651         sync; sleep 1
6652
6653         # if we aren't already remounting for each test, do so for this test
6654         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
6655                 cleanup || error "failed to unmount"
6656                 setup
6657         fi
6658
6659         save_layout_restore_at_exit $MOUNT
6660
6661         $LFS setstripe -d $MOUNT || error "setstripe failed"
6662 }
6663 run_test 65j "set default striping on root directory (bug 6367)="
6664
6665 cleaup_65k() {
6666         rm -rf $DIR/$tdir
6667         wait_delete_completed
6668         do_facet $SINGLEMDS "lctl set_param -n \
6669                 osp.$ost*MDT0000.max_create_count=$max_count"
6670         do_facet $SINGLEMDS "lctl set_param -n \
6671                 osp.$ost*MDT0000.create_count=$count"
6672         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
6673         echo $INACTIVE_OSC "is Activate"
6674
6675         wait_osc_import_state mds ost$ostnum FULL
6676 }
6677
6678 test_65k() { # bug11679
6679         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6680         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
6681         remote_mds_nodsh && skip "remote MDS with nodsh"
6682
6683         local disable_precreate=true
6684         [ $MDS1_VERSION -le $(version_code 2.8.54) ] &&
6685                 disable_precreate=false
6686
6687         echo "Check OST status: "
6688         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
6689                 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
6690
6691         for OSC in $MDS_OSCS; do
6692                 echo $OSC "is active"
6693                 do_facet $SINGLEMDS lctl --device %$OSC activate
6694         done
6695
6696         for INACTIVE_OSC in $MDS_OSCS; do
6697                 local ost=$(osc_to_ost $INACTIVE_OSC)
6698                 local ostnum=$(do_facet $SINGLEMDS lctl get_param -n \
6699                                lov.*md*.target_obd |
6700                                awk -F: /$ost/'{ print $1 }' | head -n 1)
6701
6702                 mkdir -p $DIR/$tdir
6703                 $LFS setstripe -i $ostnum -c 1 $DIR/$tdir
6704                 createmany -o $DIR/$tdir/$tfile.$ostnum. 1000
6705
6706                 echo "Deactivate: " $INACTIVE_OSC
6707                 do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
6708
6709                 local count=$(do_facet $SINGLEMDS "lctl get_param -n \
6710                               osp.$ost*MDT0000.create_count")
6711                 local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
6712                                   osp.$ost*MDT0000.max_create_count")
6713                 $disable_precreate &&
6714                         do_facet $SINGLEMDS "lctl set_param -n \
6715                                 osp.$ost*MDT0000.max_create_count=0"
6716
6717                 for idx in $(seq 0 $((OSTCOUNT - 1))); do
6718                         [ -f $DIR/$tdir/$idx ] && continue
6719                         echo "$LFS setstripe -i $idx -c 1 $DIR/$tdir/$idx"
6720                         $LFS setstripe -i $idx -c 1 $DIR/$tdir/$idx ||
6721                                 { cleanup_65k;
6722                                   error "setstripe $idx should succeed"; }
6723                         rm -f $DIR/$tdir/$idx || error "rm $idx failed"
6724                 done
6725                 unlinkmany $DIR/$tdir/$tfile.$ostnum. 1000
6726                 rmdir $DIR/$tdir
6727
6728                 do_facet $SINGLEMDS "lctl set_param -n \
6729                         osp.$ost*MDT0000.max_create_count=$max_count"
6730                 do_facet $SINGLEMDS "lctl set_param -n \
6731                         osp.$ost*MDT0000.create_count=$count"
6732                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
6733                 echo $INACTIVE_OSC "is Activate"
6734
6735                 wait_osc_import_state mds ost$ostnum FULL
6736         done
6737 }
6738 run_test 65k "validate manual striping works properly with deactivated OSCs"
6739
6740 test_65l() { # bug 12836
6741         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6742
6743         test_mkdir -p $DIR/$tdir/test_dir
6744         $LFS setstripe -c -1 $DIR/$tdir/test_dir
6745         $LFS find -mtime -1 $DIR/$tdir >/dev/null
6746 }
6747 run_test 65l "lfs find on -1 stripe dir ========================"
6748
6749 test_65m() {
6750         local layout=$(save_layout $MOUNT)
6751         $RUNAS $LFS setstripe -c 2 $MOUNT && {
6752                 restore_layout $MOUNT $layout
6753                 error "setstripe should fail by non-root users"
6754         }
6755         true
6756 }
6757 run_test 65m "normal user can't set filesystem default stripe"
6758
6759 # bug 2543 - update blocks count on client
6760 test_66() {
6761         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6762
6763         COUNT=${COUNT:-8}
6764         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
6765         sync; sync_all_data; sync; sync_all_data
6766         cancel_lru_locks osc
6767         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
6768         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
6769 }
6770 run_test 66 "update inode blocks count on client ==============="
6771
6772 meminfo() {
6773         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
6774 }
6775
6776 swap_used() {
6777         swapon -s | awk '($1 == "'$1'") { print $4 }'
6778 }
6779
6780 # bug5265, obdfilter oa2dentry return -ENOENT
6781 # #define OBD_FAIL_SRV_ENOENT 0x217
6782 test_69() {
6783         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6784         remote_ost_nodsh && skip "remote OST with nodsh"
6785
6786         f="$DIR/$tfile"
6787         $LFS setstripe -c 1 -i 0 $f
6788
6789         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
6790
6791         do_facet ost1 lctl set_param fail_loc=0x217
6792         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
6793         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
6794
6795         do_facet ost1 lctl set_param fail_loc=0
6796         $DIRECTIO write $f 0 2 || error "write error"
6797
6798         cancel_lru_locks osc
6799         $DIRECTIO read $f 0 1 || error "read error"
6800
6801         do_facet ost1 lctl set_param fail_loc=0x217
6802         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
6803
6804         do_facet ost1 lctl set_param fail_loc=0
6805         rm -f $f
6806 }
6807 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
6808
6809 test_71() {
6810         test_mkdir $DIR/$tdir
6811         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
6812         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
6813 }
6814 run_test 71 "Running dbench on lustre (don't segment fault) ===="
6815
6816 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
6817         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6818         [ "$RUNAS_ID" = "$UID" ] &&
6819                 skip_env "RUNAS_ID = UID = $UID -- skipping"
6820         # Check that testing environment is properly set up. Skip if not
6821         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS ||
6822                 skip_env "User $RUNAS_ID does not exist - skipping"
6823
6824         touch $DIR/$tfile
6825         chmod 777 $DIR/$tfile
6826         chmod ug+s $DIR/$tfile
6827         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
6828                 error "$RUNAS dd $DIR/$tfile failed"
6829         # See if we are still setuid/sgid
6830         test -u $DIR/$tfile -o -g $DIR/$tfile &&
6831                 error "S/gid is not dropped on write"
6832         # Now test that MDS is updated too
6833         cancel_lru_locks mdc
6834         test -u $DIR/$tfile -o -g $DIR/$tfile &&
6835                 error "S/gid is not dropped on MDS"
6836         rm -f $DIR/$tfile
6837 }
6838 run_test 72a "Test that remove suid works properly (bug5695) ===="
6839
6840 test_72b() { # bug 24226 -- keep mode setting when size is not changing
6841         local perm
6842
6843         [ "$RUNAS_ID" = "$UID" ] &&
6844                 skip_env "RUNAS_ID = UID = $UID -- skipping"
6845         [ "$RUNAS_ID" -eq 0 ] &&
6846                 skip_env "RUNAS_ID = 0 -- skipping"
6847         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6848         # Check that testing environment is properly set up. Skip if not
6849         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS ||
6850                 skip_env "User $RUNAS_ID does not exist - skipping"
6851
6852         touch $DIR/${tfile}-f{g,u}
6853         test_mkdir $DIR/${tfile}-dg
6854         test_mkdir $DIR/${tfile}-du
6855         chmod 770 $DIR/${tfile}-{f,d}{g,u}
6856         chmod g+s $DIR/${tfile}-{f,d}g
6857         chmod u+s $DIR/${tfile}-{f,d}u
6858         for perm in 777 2777 4777; do
6859                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
6860                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
6861                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
6862                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
6863         done
6864         true
6865 }
6866 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
6867
6868 # bug 3462 - multiple simultaneous MDC requests
6869 test_73() {
6870         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6871
6872         test_mkdir $DIR/d73-1
6873         test_mkdir $DIR/d73-2
6874         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
6875         pid1=$!
6876
6877         lctl set_param fail_loc=0x80000129
6878         $MULTIOP $DIR/d73-1/f73-2 Oc &
6879         sleep 1
6880         lctl set_param fail_loc=0
6881
6882         $MULTIOP $DIR/d73-2/f73-3 Oc &
6883         pid3=$!
6884
6885         kill -USR1 $pid1
6886         wait $pid1 || return 1
6887
6888         sleep 25
6889
6890         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
6891         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
6892         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
6893
6894         rm -rf $DIR/d73-*
6895 }
6896 run_test 73 "multiple MDC requests (should not deadlock)"
6897
6898 test_74a() { # bug 6149, 6184
6899         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6900
6901         touch $DIR/f74a
6902         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
6903         #
6904         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
6905         # will spin in a tight reconnection loop
6906         $LCTL set_param fail_loc=0x8000030e
6907         # get any lock that won't be difficult - lookup works.
6908         ls $DIR/f74a
6909         $LCTL set_param fail_loc=0
6910         rm -f $DIR/f74a
6911         true
6912 }
6913 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
6914
6915 test_74b() { # bug 13310
6916         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6917
6918         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
6919         #
6920         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
6921         # will spin in a tight reconnection loop
6922         $LCTL set_param fail_loc=0x8000030e
6923         # get a "difficult" lock
6924         touch $DIR/f74b
6925         $LCTL set_param fail_loc=0
6926         rm -f $DIR/f74b
6927         true
6928 }
6929 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
6930
6931 test_74c() {
6932         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6933
6934         #define OBD_FAIL_LDLM_NEW_LOCK
6935         $LCTL set_param fail_loc=0x319
6936         touch $DIR/$tfile && error "touch successful"
6937         $LCTL set_param fail_loc=0
6938         true
6939 }
6940 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
6941
6942 num_inodes() {
6943         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
6944 }
6945
6946 test_76() { # Now for bug 20433, added originally in bug 1443
6947         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6948
6949         local CPUS=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
6950
6951         cancel_lru_locks osc
6952         BEFORE_INODES=$(num_inodes)
6953         echo "before inodes: $BEFORE_INODES"
6954         local COUNT=1000
6955         [ "$SLOW" = "no" ] && COUNT=100
6956         for i in $(seq $COUNT); do
6957                 touch $DIR/$tfile
6958                 rm -f $DIR/$tfile
6959         done
6960         cancel_lru_locks osc
6961         AFTER_INODES=$(num_inodes)
6962         echo "after inodes: $AFTER_INODES"
6963         local wait=0
6964         while [[ $((AFTER_INODES-1*${CPUS:-1})) -gt $BEFORE_INODES ]]; do
6965                 sleep 2
6966                 AFTER_INODES=$(num_inodes)
6967                 wait=$((wait+2))
6968                 echo "wait $wait seconds inodes: $AFTER_INODES"
6969                 if [ $wait -gt 30 ]; then
6970                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
6971                 fi
6972         done
6973 }
6974 run_test 76 "confirm clients recycle inodes properly ===="
6975
6976
6977 export ORIG_CSUM=""
6978 set_checksums()
6979 {
6980         # Note: in sptlrpc modes which enable its own bulk checksum, the
6981         # original crc32_le bulk checksum will be automatically disabled,
6982         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
6983         # will be checked by sptlrpc code against sptlrpc bulk checksum.
6984         # In this case set_checksums() will not be no-op, because sptlrpc
6985         # bulk checksum will be enabled all through the test.
6986
6987         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
6988         lctl set_param -n osc.*.checksums $1
6989         return 0
6990 }
6991
6992 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
6993                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
6994 CKSUM_TYPES=${CKSUM_TYPES:-$(lctl get_param -n osc.*osc-[^mM]*.checksum_type |
6995                              tr -d [] | head -n1)}
6996 set_checksum_type()
6997 {
6998         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
6999         log "set checksum type to $1"
7000         return 0
7001 }
7002 F77_TMP=$TMP/f77-temp
7003 F77SZ=8
7004 setup_f77() {
7005         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
7006                 error "error writing to $F77_TMP"
7007 }
7008
7009 test_77a() { # bug 10889
7010         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7011         $GSS && skip_env "could not run with gss"
7012
7013         [ ! -f $F77_TMP ] && setup_f77
7014         set_checksums 1
7015         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
7016         set_checksums 0
7017         rm -f $DIR/$tfile
7018 }
7019 run_test 77a "normal checksum read/write operation"
7020
7021 test_77b() { # bug 10889
7022         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7023         $GSS && skip_env "could not run with gss"
7024
7025         [ ! -f $F77_TMP ] && setup_f77
7026         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7027         $LCTL set_param fail_loc=0x80000409
7028         set_checksums 1
7029
7030         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
7031                 error "dd error: $?"
7032         $LCTL set_param fail_loc=0
7033
7034         for algo in $CKSUM_TYPES; do
7035                 cancel_lru_locks osc
7036                 set_checksum_type $algo
7037                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
7038                 $LCTL set_param fail_loc=0x80000408
7039                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
7040                 $LCTL set_param fail_loc=0
7041         done
7042         set_checksums 0
7043         set_checksum_type $ORIG_CSUM_TYPE
7044         rm -f $DIR/$tfile
7045 }
7046 run_test 77b "checksum error on client write, read"
7047
7048 cleanup_77c() {
7049         trap 0
7050         set_checksums 0
7051         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=0
7052         $check_ost &&
7053                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=0
7054         [ -n "$osc_file_prefix" ] && rm -f ${osc_file_prefix}*
7055         $check_ost && [ -n "$ost_file_prefix" ] &&
7056                 do_facet ost1 rm -f ${ost_file_prefix}\*
7057 }
7058
7059 test_77c() {
7060         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7061         $GSS && skip_env "could not run with gss"
7062         remote_ost_nodsh && skip "remote OST with nodsh"
7063
7064         local bad1
7065         local osc_file_prefix
7066         local osc_file
7067         local check_ost=false
7068         local ost_file_prefix
7069         local ost_file
7070         local orig_cksum
7071         local dump_cksum
7072         local fid
7073
7074         # ensure corruption will occur on first OSS/OST
7075         $LFS setstripe -i 0 $DIR/$tfile
7076
7077         [ ! -f $F77_TMP ] && setup_f77
7078         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
7079                 error "dd write error: $?"
7080         fid=$($LFS path2fid $DIR/$tfile)
7081
7082         if [ $OST1_VERSION -ge $(version_code 2.9.57) ]
7083         then
7084                 check_ost=true
7085                 ost_file_prefix=$(do_facet ost1 $LCTL get_param -n debug_path)
7086                 ost_file_prefix=${ost_file_prefix}-checksum_dump-ost-\\${fid}
7087         else
7088                 echo "OSS do not support bulk pages dump upon error"
7089         fi
7090
7091         osc_file_prefix=$($LCTL get_param -n debug_path)
7092         osc_file_prefix=${osc_file_prefix}-checksum_dump-osc-\\${fid}
7093
7094         trap cleanup_77c EXIT
7095
7096         set_checksums 1
7097         # enable bulk pages dump upon error on Client
7098         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=1
7099         # enable bulk pages dump upon error on OSS
7100         $check_ost &&
7101                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=1
7102
7103         # flush Client cache to allow next read to reach OSS
7104         cancel_lru_locks osc
7105
7106         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE       0x408
7107         $LCTL set_param fail_loc=0x80000408
7108         dd if=$DIR/$tfile of=/dev/null bs=1M || error "dd read error: $?"
7109         $LCTL set_param fail_loc=0
7110
7111         rm -f $DIR/$tfile
7112
7113         # check cksum dump on Client
7114         osc_file=$(ls ${osc_file_prefix}*)
7115         [ -n "$osc_file" ] || error "no checksum dump file on Client"
7116         # OBD_FAIL_OSC_CHECKSUM_RECEIVE corrupts with "bad1" at start of file
7117         bad1=$(dd if=$osc_file bs=1 count=4 2>/dev/null) || error "dd error: $?"
7118         [ $bad1 == "bad1" ] || error "unexpected corrupt pattern"
7119         orig_cksum=$(dd if=$F77_TMP bs=1 skip=4 count=1048572 2>/dev/null |
7120                      cksum)
7121         dump_cksum=$(dd if=$osc_file bs=1 skip=4 2>/dev/null | cksum)
7122         [[ "$orig_cksum" == "$dump_cksum" ]] ||
7123                 error "dump content does not match on Client"
7124
7125         $check_ost || skip "No need to check cksum dump on OSS"
7126
7127         # check cksum dump on OSS
7128         ost_file=$(do_facet ost1 ls ${ost_file_prefix}\*)
7129         [ -n "$ost_file" ] || error "no checksum dump file on OSS"
7130         orig_cksum=$(dd if=$F77_TMP bs=1048576 count=1 2>/dev/null | cksum)
7131         dump_cksum=$(do_facet ost1 dd if=$ost_file 2>/dev/null \| cksum)
7132         [[ "$orig_cksum" == "$dump_cksum" ]] ||
7133                 error "dump content does not match on OSS"
7134
7135         cleanup_77c
7136 }
7137 run_test 77c "checksum error on client read with debug"
7138
7139 test_77d() { # bug 10889
7140         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7141         $GSS && skip_env "could not run with gss"
7142
7143         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7144         $LCTL set_param fail_loc=0x80000409
7145         set_checksums 1
7146         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
7147                 error "direct write: rc=$?"
7148         $LCTL set_param fail_loc=0
7149         set_checksums 0
7150
7151         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
7152         $LCTL set_param fail_loc=0x80000408
7153         set_checksums 1
7154         cancel_lru_locks osc
7155         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
7156                 error "direct read: rc=$?"
7157         $LCTL set_param fail_loc=0
7158         set_checksums 0
7159 }
7160 run_test 77d "checksum error on OST direct write, read"
7161
7162 test_77f() { # bug 10889
7163         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7164         $GSS && skip_env "could not run with gss"
7165
7166         set_checksums 1
7167         for algo in $CKSUM_TYPES; do
7168                 cancel_lru_locks osc
7169                 set_checksum_type $algo
7170                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7171                 $LCTL set_param fail_loc=0x409
7172                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
7173                         error "direct write succeeded"
7174                 $LCTL set_param fail_loc=0
7175         done
7176         set_checksum_type $ORIG_CSUM_TYPE
7177         set_checksums 0
7178 }
7179 run_test 77f "repeat checksum error on write (expect error)"
7180
7181 test_77g() { # bug 10889
7182         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7183         $GSS && skip_env "could not run with gss"
7184         remote_ost_nodsh && skip "remote OST with nodsh"
7185
7186         [ ! -f $F77_TMP ] && setup_f77
7187
7188         local file=$DIR/$tfile
7189         stack_trap "rm -f $file" EXIT
7190
7191         $LFS setstripe -c 1 -i 0 $file
7192         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
7193         do_facet ost1 lctl set_param fail_loc=0x8000021a
7194         set_checksums 1
7195         dd if=$F77_TMP of=$file bs=1M count=$F77SZ ||
7196                 error "write error: rc=$?"
7197         do_facet ost1 lctl set_param fail_loc=0
7198         set_checksums 0
7199
7200         cancel_lru_locks osc
7201         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
7202         do_facet ost1 lctl set_param fail_loc=0x8000021b
7203         set_checksums 1
7204         cmp $F77_TMP $file || error "file compare failed"
7205         do_facet ost1 lctl set_param fail_loc=0
7206         set_checksums 0
7207 }
7208 run_test 77g "checksum error on OST write, read"
7209
7210 test_77k() { # LU-10906
7211         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7212         $GSS && skip_env "could not run with gss"
7213
7214         local cksum_param="osc.$FSNAME*.checksums"
7215         local get_checksum="$LCTL get_param -n $cksum_param | head -n1"
7216         local checksum
7217         local i
7218
7219         [ "$ORIG_CSUM" ] || ORIG_CSUM=$(eval $get_checksum)
7220         stack_trap "wait_update $HOSTNAME '$get_checksum' $ORIG_CSUM" EXIT
7221         stack_trap "do_facet mgs $LCTL set_param -P $cksum_param=$ORIG_CSUM" \
7222                 EXIT
7223
7224         for i in 0 1; do
7225                 do_facet mgs $LCTL set_param -P $cksum_param=$i ||
7226                         error "failed to set checksum=$i on MGS"
7227                 wait_update $HOSTNAME "$get_checksum" $i
7228                 #remount
7229                 echo "remount client, checksum should be $i"
7230                 remount_client $MOUNT || "failed to remount client"
7231                 checksum=$(eval $get_checksum)
7232                 [ $checksum -eq $i ] || error "checksum($checksum) != $i"
7233         done
7234
7235         for opt in "checksum" "nochecksum"; do
7236                 #remount with mount option
7237                 echo "remount client with option $opt, checksum should be $i"
7238                 umount_client $MOUNT || "failed to umount client"
7239                 mount_client $MOUNT "$MOUNT_OPTS,$opt" ||
7240                         "failed to mount client with option '$opt'"
7241                 checksum=$(eval $get_checksum)
7242                 [ $checksum -eq $i ] || error "checksum($checksum) != $i"
7243                 i=$((i - 1))
7244         done
7245
7246         remount_client $MOUNT || "failed to remount client"
7247 }
7248 run_test 77k "enable/disable checksum correctly"
7249
7250 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
7251 rm -f $F77_TMP
7252 unset F77_TMP
7253
7254 cleanup_test_78() {
7255         trap 0
7256         rm -f $DIR/$tfile
7257 }
7258
7259 test_78() { # bug 10901
7260         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7261         remote_ost || skip_env "local OST"
7262
7263         NSEQ=5
7264         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
7265         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
7266         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
7267         echo "MemTotal: $MEMTOTAL"
7268
7269         # reserve 256MB of memory for the kernel and other running processes,
7270         # and then take 1/2 of the remaining memory for the read/write buffers.
7271         if [ $MEMTOTAL -gt 512 ] ;then
7272                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
7273         else
7274                 # for those poor memory-starved high-end clusters...
7275                 MEMTOTAL=$((MEMTOTAL / 2))
7276         fi
7277         echo "Mem to use for directio: $MEMTOTAL"
7278
7279         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
7280         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
7281         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
7282         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
7283                 head -n1)
7284         echo "Smallest OST: $SMALLESTOST"
7285         [[ $SMALLESTOST -lt 10240 ]] &&
7286                 skip "too small OSTSIZE, useless to run large O_DIRECT test"
7287
7288         trap cleanup_test_78 EXIT
7289
7290         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
7291                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
7292
7293         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
7294         echo "File size: $F78SIZE"
7295         $LFS setstripe -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
7296         for i in $(seq 1 $NSEQ); do
7297                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
7298                 echo directIO rdwr round $i of $NSEQ
7299                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
7300         done
7301
7302         cleanup_test_78
7303 }
7304 run_test 78 "handle large O_DIRECT writes correctly ============"
7305
7306 test_79() { # bug 12743
7307         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7308
7309         wait_delete_completed
7310
7311         BKTOTAL=$(calc_osc_kbytes kbytestotal)
7312         BKFREE=$(calc_osc_kbytes kbytesfree)
7313         BKAVAIL=$(calc_osc_kbytes kbytesavail)
7314
7315         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
7316         DFTOTAL=`echo $STRING | cut -d, -f1`
7317         DFUSED=`echo $STRING  | cut -d, -f2`
7318         DFAVAIL=`echo $STRING | cut -d, -f3`
7319         DFFREE=$(($DFTOTAL - $DFUSED))
7320
7321         ALLOWANCE=$((64 * $OSTCOUNT))
7322
7323         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
7324            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
7325                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
7326         fi
7327         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
7328            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
7329                 error "df free($DFFREE) mismatch OST free($BKFREE)"
7330         fi
7331         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
7332            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
7333                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
7334         fi
7335 }
7336 run_test 79 "df report consistency check ======================="
7337
7338 test_80() { # bug 10718
7339         remote_ost_nodsh && skip "remote OST with nodsh"
7340         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7341
7342         # relax strong synchronous semantics for slow backends like ZFS
7343         local soc="obdfilter.*.sync_on_lock_cancel"
7344         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
7345         local hosts=
7346         if [ "$soc_old" != "never" ] &&
7347                 [ "$ost1_FSTYPE" != "ldiskfs" ]; then
7348                         hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
7349                                 facet_active_host $host; done | sort -u)
7350                         do_nodes $hosts lctl set_param $soc=never
7351         fi
7352
7353         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
7354         sync; sleep 1; sync
7355         local BEFORE=`date +%s`
7356         cancel_lru_locks osc
7357         local AFTER=`date +%s`
7358         local DIFF=$((AFTER-BEFORE))
7359         if [ $DIFF -gt 1 ] ; then
7360                 error "elapsed for 1M@1T = $DIFF"
7361         fi
7362
7363         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
7364
7365         rm -f $DIR/$tfile
7366 }
7367 run_test 80 "Page eviction is equally fast at high offsets too  ===="
7368
7369 test_81a() { # LU-456
7370         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7371         remote_ost_nodsh && skip "remote OST with nodsh"
7372
7373         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
7374         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
7375         do_facet ost1 lctl set_param fail_loc=0x80000228
7376
7377         # write should trigger a retry and success
7378         $LFS setstripe -i 0 -c 1 $DIR/$tfile
7379         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7380         RC=$?
7381         if [ $RC -ne 0 ] ; then
7382                 error "write should success, but failed for $RC"
7383         fi
7384 }
7385 run_test 81a "OST should retry write when get -ENOSPC ==============="
7386
7387 test_81b() { # LU-456
7388         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7389         remote_ost_nodsh && skip "remote OST with nodsh"
7390
7391         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
7392         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
7393         do_facet ost1 lctl set_param fail_loc=0x228
7394
7395         # write should retry several times and return -ENOSPC finally
7396         $LFS setstripe -i 0 -c 1 $DIR/$tfile
7397         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7398         RC=$?
7399         ENOSPC=28
7400         if [ $RC -ne $ENOSPC ] ; then
7401                 error "dd should fail for -ENOSPC, but succeed."
7402         fi
7403 }
7404 run_test 81b "OST should return -ENOSPC when retry still fails ======="
7405
7406 test_82() { # LU-1031
7407         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
7408         local gid1=14091995
7409         local gid2=16022000
7410
7411         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
7412         local MULTIPID1=$!
7413         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
7414         local MULTIPID2=$!
7415         kill -USR1 $MULTIPID2
7416         sleep 2
7417         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
7418                 error "First grouplock does not block second one"
7419         else
7420                 echo "Second grouplock blocks first one"
7421         fi
7422         kill -USR1 $MULTIPID1
7423         wait $MULTIPID1
7424         wait $MULTIPID2
7425 }
7426 run_test 82 "Basic grouplock test"
7427
7428 test_99() {
7429         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs"
7430
7431         test_mkdir $DIR/$tdir.cvsroot
7432         chown $RUNAS_ID $DIR/$tdir.cvsroot
7433
7434         cd $TMP
7435         $RUNAS cvs -d $DIR/$tdir.cvsroot init || error "cvs init failed"
7436
7437         cd /etc/init.d
7438         # some versions of cvs import exit(1) when asked to import links or
7439         # files they can't read.  ignore those files.
7440         local toignore=$(find . -type l -printf '-I %f\n' -o \
7441                          ! -perm /4 -printf '-I %f\n')
7442         $RUNAS cvs -d $DIR/$tdir.cvsroot import -m "nomesg" $toignore \
7443                 $tdir.reposname vtag rtag
7444
7445         cd $DIR
7446         test_mkdir $DIR/$tdir.reposname
7447         chown $RUNAS_ID $DIR/$tdir.reposname
7448         $RUNAS cvs -d $DIR/$tdir.cvsroot co $tdir.reposname
7449
7450         cd $DIR/$tdir.reposname
7451         $RUNAS touch foo99
7452         $RUNAS cvs add -m 'addmsg' foo99
7453         $RUNAS cvs update
7454         $RUNAS cvs commit -m 'nomsg' foo99
7455         rm -fr $DIR/$tdir.cvsroot
7456 }
7457 run_test 99 "cvs strange file/directory operations"
7458
7459 test_100() {
7460         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7461         [[ "$NETTYPE" =~ tcp ]] ||
7462                 skip_env "TCP secure port test, not useful for NETTYPE=$NETTYPE"
7463         remote_ost_nodsh && skip "remote OST with nodsh"
7464         remote_mds_nodsh && skip "remote MDS with nodsh"
7465         remote_servers ||
7466                 skip "useless for local single node setup"
7467
7468         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
7469                 [ "$PROT" != "tcp" ] && continue
7470                 RPORT=$(echo $REMOTE | cut -d: -f2)
7471                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
7472
7473                 rc=0
7474                 LPORT=`echo $LOCAL | cut -d: -f2`
7475                 if [ $LPORT -ge 1024 ]; then
7476                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
7477                         netstat -tna
7478                         error_exit "local: $LPORT > 1024, remote: $RPORT"
7479                 fi
7480         done
7481         [ "$rc" = 0 ] || error_exit "privileged port not found" )
7482 }
7483 run_test 100 "check local port using privileged port ==========="
7484
7485 function get_named_value()
7486 {
7487     local tag
7488
7489     tag=$1
7490     while read ;do
7491         line=$REPLY
7492         case $line in
7493         $tag*)
7494             echo $line | sed "s/^$tag[ ]*//"
7495             break
7496             ;;
7497         esac
7498     done
7499 }
7500
7501 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
7502                    awk '/^max_cached_mb/ { print $2 }')
7503
7504 cleanup_101a() {
7505         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
7506         trap 0
7507 }
7508
7509 test_101a() {
7510         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7511         [ $MDSCOUNT -ge 2 ] && skip_env "needs < 2 MDTs" #LU-4322
7512
7513         local s
7514         local discard
7515         local nreads=10000
7516         local cache_limit=32
7517
7518         $LCTL set_param -n osc.*-osc*.rpc_stats 0
7519         trap cleanup_101a EXIT
7520         $LCTL set_param -n llite.*.read_ahead_stats 0
7521         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
7522
7523         #
7524         # randomly read 10000 of 64K chunks from file 3x 32MB in size
7525         #
7526         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
7527         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
7528
7529         discard=0
7530         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
7531                 get_named_value 'read but discarded' | cut -d" " -f1); do
7532                         discard=$(($discard + $s))
7533         done
7534         cleanup_101a
7535
7536         if [[ $(($discard * 10)) -gt $nreads ]]; then
7537                 $LCTL get_param osc.*-osc*.rpc_stats
7538                 $LCTL get_param llite.*.read_ahead_stats
7539                 error "too many ($discard) discarded pages"
7540         fi
7541         rm -f $DIR/$tfile || true
7542 }
7543 run_test 101a "check read-ahead for random reads"
7544
7545 setup_test101bc() {
7546         test_mkdir $DIR/$tdir
7547         local ssize=$1
7548         local FILE_LENGTH=$2
7549         STRIPE_OFFSET=0
7550
7551         local FILE_SIZE_MB=$((FILE_LENGTH / ssize))
7552
7553         local list=$(comma_list $(osts_nodes))
7554         set_osd_param $list '' read_cache_enable 0
7555         set_osd_param $list '' writethrough_cache_enable 0
7556
7557         trap cleanup_test101bc EXIT
7558         # prepare the read-ahead file
7559         $LFS setstripe -S $ssize -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
7560
7561         dd if=/dev/zero of=$DIR/$tfile bs=$ssize \
7562                                 count=$FILE_SIZE_MB 2> /dev/null
7563
7564 }
7565
7566 cleanup_test101bc() {
7567         trap 0
7568         rm -rf $DIR/$tdir
7569         rm -f $DIR/$tfile
7570
7571         local list=$(comma_list $(osts_nodes))
7572         set_osd_param $list '' read_cache_enable 1
7573         set_osd_param $list '' writethrough_cache_enable 1
7574 }
7575
7576 calc_total() {
7577         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
7578 }
7579
7580 ra_check_101() {
7581         local READ_SIZE=$1
7582         local STRIPE_SIZE=$2
7583         local FILE_LENGTH=$3
7584         local RA_INC=1048576
7585         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
7586         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
7587                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
7588         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
7589                         get_named_value 'read but discarded' |
7590                         cut -d" " -f1 | calc_total)
7591         if [[ $DISCARD -gt $discard_limit ]]; then
7592                 $LCTL get_param llite.*.read_ahead_stats
7593                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
7594         else
7595                 echo "Read-ahead success for size ${READ_SIZE}"
7596         fi
7597 }
7598
7599 test_101b() {
7600         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7601         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
7602
7603         local STRIPE_SIZE=1048576
7604         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
7605
7606         if [ $SLOW == "yes" ]; then
7607                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
7608         else
7609                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
7610         fi
7611
7612         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
7613
7614         # prepare the read-ahead file
7615         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
7616         cancel_lru_locks osc
7617         for BIDX in 2 4 8 16 32 64 128 256
7618         do
7619                 local BSIZE=$((BIDX*4096))
7620                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
7621                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
7622                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
7623                 $LCTL set_param -n llite.*.read_ahead_stats 0
7624                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
7625                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
7626                 cancel_lru_locks osc
7627                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
7628         done
7629         cleanup_test101bc
7630         true
7631 }
7632 run_test 101b "check stride-io mode read-ahead ================="
7633
7634 test_101c() {
7635         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7636
7637         local STRIPE_SIZE=1048576
7638         local FILE_LENGTH=$((STRIPE_SIZE*100))
7639         local nreads=10000
7640         local rsize=65536
7641         local osc_rpc_stats
7642
7643         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
7644
7645         cancel_lru_locks osc
7646         $LCTL set_param osc.*.rpc_stats 0
7647         $READS -f $DIR/$tfile -s$FILE_LENGTH -b$rsize -n$nreads -t 180
7648         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
7649                 local stats=$($LCTL get_param -n $osc_rpc_stats)
7650                 local lines=$(echo "$stats" | awk 'END {print NR;}')
7651                 local size
7652
7653                 if [ $lines -le 20 ]; then
7654                         continue
7655                 fi
7656                 for size in 1 2 4 8; do
7657                         local rpc=$(echo "$stats" |
7658                                     awk '($1 == "'$size':") {print $2; exit; }')
7659                         [ $rpc != 0 ] && ((size * PAGE_SIZE < rsize)) &&
7660                                 error "Small $((size*PAGE_SIZE)) read IO $rpc!"
7661                 done
7662                 echo "$osc_rpc_stats check passed!"
7663         done
7664         cleanup_test101bc
7665         true
7666 }
7667 run_test 101c "check stripe_size aligned read-ahead ================="
7668
7669 set_read_ahead() {
7670         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
7671         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
7672 }
7673
7674 test_101d() {
7675         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7676
7677         local file=$DIR/$tfile
7678         local sz_MB=${FILESIZE_101d:-500}
7679         local ra_MB=${READAHEAD_MB:-40}
7680
7681         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
7682         [ $free_MB -lt $sz_MB ] &&
7683                 skip "Need free space ${sz_MB}M, have ${free_MB}M"
7684
7685         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
7686         $LFS setstripe -c -1 $file || error "setstripe failed"
7687
7688         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
7689         echo Cancel LRU locks on lustre client to flush the client cache
7690         cancel_lru_locks osc
7691
7692         echo Disable read-ahead
7693         local old_READAHEAD=$(set_read_ahead 0)
7694
7695         echo Reading the test file $file with read-ahead disabled
7696         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
7697
7698         echo Cancel LRU locks on lustre client to flush the client cache
7699         cancel_lru_locks osc
7700         echo Enable read-ahead with ${ra_MB}MB
7701         set_read_ahead $ra_MB
7702
7703         echo Reading the test file $file with read-ahead enabled
7704         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
7705
7706         echo "read-ahead disabled time read $raOFF"
7707         echo "read-ahead enabled  time read $raON"
7708
7709         set_read_ahead $old_READAHEAD
7710         rm -f $file
7711         wait_delete_completed
7712
7713         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
7714                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
7715 }
7716 run_test 101d "file read with and without read-ahead enabled"
7717
7718 test_101e() {
7719         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7720
7721         local file=$DIR/$tfile
7722         local size_KB=500  #KB
7723         local count=100
7724         local bsize=1024
7725
7726         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
7727         local need_KB=$((count * size_KB))
7728         [[ $free_KB -le $need_KB ]] &&
7729                 skip_env "Need free space $need_KB, have $free_KB"
7730
7731         echo "Creating $count ${size_KB}K test files"
7732         for ((i = 0; i < $count; i++)); do
7733                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
7734         done
7735
7736         echo "Cancel LRU locks on lustre client to flush the client cache"
7737         cancel_lru_locks $OSC
7738
7739         echo "Reset readahead stats"
7740         $LCTL set_param -n llite.*.read_ahead_stats 0
7741
7742         for ((i = 0; i < $count; i++)); do
7743                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
7744         done
7745
7746         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
7747                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
7748
7749         for ((i = 0; i < $count; i++)); do
7750                 rm -rf $file.$i 2>/dev/null
7751         done
7752
7753         #10000 means 20% reads are missing in readahead
7754         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
7755 }
7756 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
7757
7758 test_101f() {
7759         which iozone || skip_env "no iozone installed"
7760
7761         local old_debug=$($LCTL get_param debug)
7762         old_debug=${old_debug#*=}
7763         $LCTL set_param debug="reada mmap"
7764
7765         # create a test file
7766         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
7767
7768         echo Cancel LRU locks on lustre client to flush the client cache
7769         cancel_lru_locks osc
7770
7771         echo Reset readahead stats
7772         $LCTL set_param -n llite.*.read_ahead_stats 0
7773
7774         echo mmap read the file with small block size
7775         iozone -i 1 -u 1 -l 1 -+n -r 32k -s 128m -B -f $DIR/$tfile \
7776                 > /dev/null 2>&1
7777
7778         echo checking missing pages
7779         $LCTL get_param llite.*.read_ahead_stats
7780         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
7781                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
7782
7783         $LCTL set_param debug="$old_debug"
7784         [ $miss -lt 3 ] || error "misses too much pages ('$miss')!"
7785         rm -f $DIR/$tfile
7786 }
7787 run_test 101f "check mmap read performance"
7788
7789 test_101g_brw_size_test() {
7790         local mb=$1
7791         local pages=$((mb * 1048576 / PAGE_SIZE))
7792         local file=$DIR/$tfile
7793
7794         $LCTL set_param osc.*.max_pages_per_rpc=${mb}M ||
7795                 { error "unable to set max_pages_per_rpc=${mb}M"; return 1; }
7796         for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
7797                 [ $mp -ne $pages ] && error "max_pages_per_rpc $mp != $pages" &&
7798                         return 2
7799         done
7800
7801         stack_trap "rm -f $file" EXIT
7802         $LCTL set_param -n osc.*.rpc_stats=0
7803
7804         # 10 RPCs should be enough for the test
7805         local count=10
7806         dd if=/dev/zero of=$file bs=${mb}M count=$count ||
7807                 { error "dd write ${mb} MB blocks failed"; return 3; }
7808         cancel_lru_locks osc
7809         dd of=/dev/null if=$file bs=${mb}M count=$count ||
7810                 { error "dd write ${mb} MB blocks failed"; return 4; }
7811
7812         # calculate number of full-sized read and write RPCs
7813         rpcs=($($LCTL get_param -n 'osc.*.rpc_stats' |
7814                 sed -n '/pages per rpc/,/^$/p' |
7815                 awk '/'$pages':/ { reads += $2; writes += $6 }; \
7816                 END { print reads,writes }'))
7817         [ ${rpcs[0]} -ne $count ] && error "${rpcs[0]} != $count read RPCs" &&
7818                 return 5
7819         [ ${rpcs[1]} -ne $count ] && error "${rpcs[1]} != $count write RPCs" &&
7820                 return 6
7821
7822         return 0
7823 }
7824
7825 test_101g() {
7826         remote_ost_nodsh && skip "remote OST with nodsh"
7827
7828         local rpcs
7829         local osts=$(get_facets OST)
7830         local list=$(comma_list $(osts_nodes))
7831         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
7832         local brw_size="obdfilter.*.brw_size"
7833
7834         $LFS setstripe -i 0 -c 1 $DIR/$tfile
7835
7836         local orig_mb=$(do_facet ost1 $LCTL get_param -n $brw_size | head -n 1)
7837         if [ $OST1_VERSION -ge $(version_code 2.8.52) -o \
7838              \( $OST1_VERSION -ge $(version_code 2.7.17) -a \
7839                 $OST1_VERSION -lt $(version_code 2.7.50) \) ] &&
7840            [ $CLIENT_VERSION -ge $(version_code 2.8.52) -o \
7841              \( $CLIENT_VERSION -ge $(version_code 2.7.17) -a \
7842                 $CLIENT_VERSION -lt $(version_code 2.7.50) \) ]; then
7843                 [ $OST1_VERSION -ge $(version_code 2.9.52) ] && suffix="M"
7844                 if [[ $orig_mb -lt 16 ]]; then
7845                         save_lustre_params $osts "$brw_size" > $p
7846                         do_nodes $list $LCTL set_param -n $brw_size=16$suffix ||
7847                                 error "set 16MB RPC size failed"
7848
7849                         echo "remount client to enable new RPC size"
7850                         remount_client $MOUNT || error "remount_client failed"
7851                 fi
7852
7853                 test_101g_brw_size_test 16 || error "16MB RPC test failed"
7854                 # should be able to set brw_size=12, but no rpc_stats for that
7855                 test_101g_brw_size_test 8 || error "8MB RPC test failed"
7856         fi
7857
7858         test_101g_brw_size_test 4 || error "4MB RPC test failed"
7859
7860         if [[ $orig_mb -lt 16 ]]; then
7861                 restore_lustre_params < $p
7862                 remount_client $MOUNT || error "remount_client restore failed"
7863         fi
7864
7865         rm -f $p $DIR/$tfile
7866 }
7867 run_test 101g "Big bulk(4/16 MiB) readahead"
7868
7869 setup_test102() {
7870         test_mkdir $DIR/$tdir
7871         chown $RUNAS_ID $DIR/$tdir
7872         STRIPE_SIZE=65536
7873         STRIPE_OFFSET=1
7874         STRIPE_COUNT=$OSTCOUNT
7875         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
7876
7877         trap cleanup_test102 EXIT
7878         cd $DIR
7879         $1 $LFS setstripe -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
7880         cd $DIR/$tdir
7881         for num in 1 2 3 4; do
7882                 for count in $(seq 1 $STRIPE_COUNT); do
7883                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
7884                                 local size=`expr $STRIPE_SIZE \* $num`
7885                                 local file=file"$num-$idx-$count"
7886                                 $1 $LFS setstripe -S $size -i $idx -c $count $file
7887                         done
7888                 done
7889         done
7890
7891         cd $DIR
7892         $1 tar cf $TMP/f102.tar $tdir --xattrs
7893 }
7894
7895 cleanup_test102() {
7896         trap 0
7897         rm -f $TMP/f102.tar
7898         rm -rf $DIR/d0.sanity/d102
7899 }
7900
7901 test_102a() {
7902         [ "$UID" != 0 ] && skip "must run as root"
7903         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
7904                 skip_env "must have user_xattr"
7905
7906         [ -z "$(which setfattr 2>/dev/null)" ] &&
7907                 skip_env "could not find setfattr"
7908
7909         local testfile=$DIR/$tfile
7910
7911         touch $testfile
7912         echo "set/get xattr..."
7913         setfattr -n trusted.name1 -v value1 $testfile ||
7914                 error "setfattr -n trusted.name1=value1 $testfile failed"
7915         getfattr -n trusted.name1 $testfile 2> /dev/null |
7916           grep "trusted.name1=.value1" ||
7917                 error "$testfile missing trusted.name1=value1"
7918
7919         setfattr -n user.author1 -v author1 $testfile ||
7920                 error "setfattr -n user.author1=author1 $testfile failed"
7921         getfattr -n user.author1 $testfile 2> /dev/null |
7922           grep "user.author1=.author1" ||
7923                 error "$testfile missing trusted.author1=author1"
7924
7925         echo "listxattr..."
7926         setfattr -n trusted.name2 -v value2 $testfile ||
7927                 error "$testfile unable to set trusted.name2"
7928         setfattr -n trusted.name3 -v value3 $testfile ||
7929                 error "$testfile unable to set trusted.name3"
7930         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
7931             grep "trusted.name" | wc -l) -eq 3 ] ||
7932                 error "$testfile missing 3 trusted.name xattrs"
7933
7934         setfattr -n user.author2 -v author2 $testfile ||
7935                 error "$testfile unable to set user.author2"
7936         setfattr -n user.author3 -v author3 $testfile ||
7937                 error "$testfile unable to set user.author3"
7938         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
7939             grep "user.author" | wc -l) -eq 3 ] ||
7940                 error "$testfile missing 3 user.author xattrs"
7941
7942         echo "remove xattr..."
7943         setfattr -x trusted.name1 $testfile ||
7944                 error "$testfile error deleting trusted.name1"
7945         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
7946                 error "$testfile did not delete trusted.name1 xattr"
7947
7948         setfattr -x user.author1 $testfile ||
7949                 error "$testfile error deleting user.author1"
7950         echo "set lustre special xattr ..."
7951         $LFS setstripe -c1 $testfile
7952         local lovea=$(getfattr -n "trusted.lov" -e hex $testfile |
7953                 awk -F "=" '/trusted.lov/ { print $2 }' )
7954         setfattr -n "trusted.lov" -v $lovea $testfile ||
7955                 error "$testfile doesn't ignore setting trusted.lov again"
7956         setfattr -n "trusted.lov" -v "invalid_value" $testfile &&
7957                 error "$testfile allow setting invalid trusted.lov"
7958         rm -f $testfile
7959 }
7960 run_test 102a "user xattr test =================================="
7961
7962 test_102b() {
7963         [ -z "$(which setfattr 2>/dev/null)" ] &&
7964                 skip_env "could not find setfattr"
7965         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
7966
7967         # b10930: get/set/list trusted.lov xattr
7968         echo "get/set/list trusted.lov xattr ..."
7969         local testfile=$DIR/$tfile
7970         $LFS setstripe -S 65536 -i 1 -c $OSTCOUNT $testfile ||
7971                 error "setstripe failed"
7972         local STRIPECOUNT=$($LFS getstripe -c $testfile) ||
7973                 error "getstripe failed"
7974         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
7975                 error "can't get trusted.lov from $testfile"
7976
7977         local testfile2=${testfile}2
7978         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
7979                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
7980
7981         $MCREATE $testfile2
7982         setfattr -n trusted.lov -v $value $testfile2
7983         local stripe_size=$($LFS getstripe -S $testfile2)
7984         local stripe_count=$($LFS getstripe -c $testfile2)
7985         [[ $stripe_size -eq 65536 ]] ||
7986                 error "stripe size $stripe_size != 65536"
7987         [[ $stripe_count -eq $STRIPECOUNT ]] ||
7988                 error "stripe count $stripe_count != $STRIPECOUNT"
7989         rm -f $DIR/$tfile
7990 }
7991 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
7992
7993 test_102c() {
7994         [ -z "$(which setfattr 2>/dev/null)" ] &&
7995                 skip_env "could not find setfattr"
7996         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
7997
7998         # b10930: get/set/list lustre.lov xattr
7999         echo "get/set/list lustre.lov xattr ..."
8000         test_mkdir $DIR/$tdir
8001         chown $RUNAS_ID $DIR/$tdir
8002         local testfile=$DIR/$tdir/$tfile
8003         $RUNAS $LFS setstripe -S 65536 -i 1 -c $OSTCOUNT $testfile ||
8004                 error "setstripe failed"
8005         local STRIPECOUNT=$($RUNAS $LFS getstripe -c $testfile) ||
8006                 error "getstripe failed"
8007         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
8008         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
8009
8010         local testfile2=${testfile}2
8011         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
8012                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
8013
8014         $RUNAS $MCREATE $testfile2
8015         $RUNAS setfattr -n lustre.lov -v $value $testfile2
8016         local stripe_size=$($RUNAS $LFS getstripe -S $testfile2)
8017         local stripe_count=$($RUNAS $LFS getstripe -c $testfile2)
8018         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
8019         [ $stripe_count -eq $STRIPECOUNT ] ||
8020                 error "stripe count $stripe_count != $STRIPECOUNT"
8021 }
8022 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
8023
8024 compare_stripe_info1() {
8025         local stripe_index_all_zero=true
8026
8027         for num in 1 2 3 4; do
8028                 for count in $(seq 1 $STRIPE_COUNT); do
8029                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
8030                                 local size=$((STRIPE_SIZE * num))
8031                                 local file=file"$num-$offset-$count"
8032                                 stripe_size=$($LFS getstripe -S $PWD/$file)
8033                                 [[ $stripe_size -ne $size ]] &&
8034                                     error "$file: size $stripe_size != $size"
8035                                 stripe_count=$($LFS getstripe -c $PWD/$file)
8036                                 # allow fewer stripes to be created, ORI-601
8037                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
8038                                     error "$file: count $stripe_count != $count"
8039                                 stripe_index=$($LFS getstripe -i $PWD/$file)
8040                                 [[ $stripe_index -ne 0 ]] &&
8041                                         stripe_index_all_zero=false
8042                         done
8043                 done
8044         done
8045         $stripe_index_all_zero &&
8046                 error "all files are being extracted starting from OST index 0"
8047         return 0
8048 }
8049
8050 have_xattrs_include() {
8051         tar --help | grep -q xattrs-include &&
8052                 echo --xattrs-include="lustre.*"
8053 }
8054
8055 test_102d() {
8056         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8057         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8058
8059         XINC=$(have_xattrs_include)
8060         setup_test102
8061         tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
8062         cd $DIR/$tdir/$tdir
8063         compare_stripe_info1
8064 }
8065 run_test 102d "tar restore stripe info from tarfile,not keep osts"
8066
8067 test_102f() {
8068         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8069         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8070
8071         XINC=$(have_xattrs_include)
8072         setup_test102
8073         test_mkdir $DIR/$tdir.restore
8074         cd $DIR
8075         tar cf - --xattrs $tdir | tar xf - \
8076                 -C $DIR/$tdir.restore --xattrs $XINC
8077         cd $DIR/$tdir.restore/$tdir
8078         compare_stripe_info1
8079 }
8080 run_test 102f "tar copy files, not keep osts"
8081
8082 grow_xattr() {
8083         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
8084                 skip "must have user_xattr"
8085         [ -z "$(which setfattr 2>/dev/null)" ] &&
8086                 skip_env "could not find setfattr"
8087         [ -z "$(which getfattr 2>/dev/null)" ] &&
8088                 skip_env "could not find getfattr"
8089
8090         local xsize=${1:-1024}  # in bytes
8091         local file=$DIR/$tfile
8092         local value="$(generate_string $xsize)"
8093         local xbig=trusted.big
8094
8095         touch $file
8096         log "save $xbig on $file"
8097         setfattr -n $xbig -v $value $file ||
8098                 error "saving $xbig on $file failed"
8099
8100         local orig=$(get_xattr_value $xbig $file)
8101         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
8102
8103         local xsml=trusted.sml
8104         log "save $xsml on $file"
8105         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
8106
8107         local new=$(get_xattr_value $xbig $file)
8108         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
8109
8110         log "grow $xsml on $file"
8111         setfattr -n $xsml -v "$value" $file ||
8112                 error "growing $xsml on $file failed"
8113
8114         new=$(get_xattr_value $xbig $file)
8115         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
8116         log "$xbig still valid after growing $xsml"
8117
8118         rm -f $file
8119 }
8120
8121 test_102h() { # bug 15777
8122         grow_xattr 1024
8123 }
8124 run_test 102h "grow xattr from inside inode to external block"
8125
8126 test_102ha() {
8127         large_xattr_enabled || skip_env "ea_inode feature disabled"
8128
8129         grow_xattr $(max_xattr_size)
8130 }
8131 run_test 102ha "grow xattr from inside inode to external inode"
8132
8133 test_102i() { # bug 17038
8134         [ -z "$(which getfattr 2>/dev/null)" ] &&
8135                 skip "could not find getfattr"
8136
8137         touch $DIR/$tfile
8138         ln -s $DIR/$tfile $DIR/${tfile}link
8139         getfattr -n trusted.lov $DIR/$tfile ||
8140                 error "lgetxattr on $DIR/$tfile failed"
8141         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
8142                 grep -i "no such attr" ||
8143                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
8144         rm -f $DIR/$tfile $DIR/${tfile}link
8145 }
8146 run_test 102i "lgetxattr test on symbolic link ============"
8147
8148 test_102j() {
8149         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8150         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8151
8152         XINC=$(have_xattrs_include)
8153         setup_test102 "$RUNAS"
8154         chown $RUNAS_ID $DIR/$tdir
8155         $RUNAS tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
8156         cd $DIR/$tdir/$tdir
8157         compare_stripe_info1 "$RUNAS"
8158 }
8159 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
8160
8161 test_102k() {
8162         [ -z "$(which setfattr 2>/dev/null)" ] &&
8163                 skip "could not find setfattr"
8164
8165         touch $DIR/$tfile
8166         # b22187 just check that does not crash for regular file.
8167         setfattr -n trusted.lov $DIR/$tfile
8168         # b22187 'setfattr -n trusted.lov' should remove LOV EA for directories
8169         local test_kdir=$DIR/$tdir
8170         test_mkdir $test_kdir
8171         local default_size=$($LFS getstripe -S $test_kdir)
8172         local default_count=$($LFS getstripe -c $test_kdir)
8173         local default_offset=$($LFS getstripe -i $test_kdir)
8174         $LFS setstripe -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
8175                 error 'dir setstripe failed'
8176         setfattr -n trusted.lov $test_kdir
8177         local stripe_size=$($LFS getstripe -S $test_kdir)
8178         local stripe_count=$($LFS getstripe -c $test_kdir)
8179         local stripe_offset=$($LFS getstripe -i $test_kdir)
8180         [ $stripe_size -eq $default_size ] ||
8181                 error "stripe size $stripe_size != $default_size"
8182         [ $stripe_count -eq $default_count ] ||
8183                 error "stripe count $stripe_count != $default_count"
8184         [ $stripe_offset -eq $default_offset ] ||
8185                 error "stripe offset $stripe_offset != $default_offset"
8186         rm -rf $DIR/$tfile $test_kdir
8187 }
8188 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
8189
8190 test_102l() {
8191         [ -z "$(which getfattr 2>/dev/null)" ] &&
8192                 skip "could not find getfattr"
8193
8194         # LU-532 trusted. xattr is invisible to non-root
8195         local testfile=$DIR/$tfile
8196
8197         touch $testfile
8198
8199         echo "listxattr as user..."
8200         chown $RUNAS_ID $testfile
8201         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
8202             grep -q "trusted" &&
8203                 error "$testfile trusted xattrs are user visible"
8204
8205         return 0;
8206 }
8207 run_test 102l "listxattr size test =================================="
8208
8209 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
8210         local path=$DIR/$tfile
8211         touch $path
8212
8213         listxattr_size_check $path || error "listattr_size_check $path failed"
8214 }
8215 run_test 102m "Ensure listxattr fails on small bufffer ========"
8216
8217 cleanup_test102
8218
8219 getxattr() { # getxattr path name
8220         # Return the base64 encoding of the value of xattr name on path.
8221         local path=$1
8222         local name=$2
8223
8224         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
8225         # file: $path
8226         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
8227         #
8228         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
8229
8230         getfattr --absolute-names --encoding=base64 --name=$name $path |
8231                 awk -F= -v name=$name '$1 == name {
8232                         print substr($0, index($0, "=") + 1);
8233         }'
8234 }
8235
8236 test_102n() { # LU-4101 mdt: protect internal xattrs
8237         [ -z "$(which setfattr 2>/dev/null)" ] &&
8238                 skip "could not find setfattr"
8239         if [ $MDS1_VERSION -lt $(version_code 2.5.50) ]
8240         then
8241                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
8242         fi
8243
8244         local file0=$DIR/$tfile.0
8245         local file1=$DIR/$tfile.1
8246         local xattr0=$TMP/$tfile.0
8247         local xattr1=$TMP/$tfile.1
8248         local namelist="lov lma lmv link fid version som hsm"
8249         local name
8250         local value
8251
8252         rm -rf $file0 $file1 $xattr0 $xattr1
8253         touch $file0 $file1
8254
8255         # Get 'before' xattrs of $file1.
8256         getfattr --absolute-names --dump --match=- $file1 > $xattr0
8257
8258         [ $MDS1_VERSION -lt $(version_code 2.8.53) ] &&
8259                 namelist+=" lfsck_namespace"
8260         for name in $namelist; do
8261                 # Try to copy xattr from $file0 to $file1.
8262                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
8263
8264                 setfattr --name=trusted.$name --value="$value" $file1 ||
8265                         error "setxattr 'trusted.$name' failed"
8266
8267                 # Try to set a garbage xattr.
8268                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
8269
8270                 if [[ x$name == "xlov" ]]; then
8271                         setfattr --name=trusted.lov --value="$value" $file1 &&
8272                         error "setxattr invalid 'trusted.lov' success"
8273                 else
8274                         setfattr --name=trusted.$name --value="$value" $file1 ||
8275                                 error "setxattr invalid 'trusted.$name' failed"
8276                 fi
8277
8278                 # Try to remove the xattr from $file1. We don't care if this
8279                 # appears to succeed or fail, we just don't want there to be
8280                 # any changes or crashes.
8281                 setfattr --remove=$trusted.$name $file1 2> /dev/null
8282         done
8283
8284         if [ $MDS1_VERSION -gt $(version_code 2.6.50) ]
8285         then
8286                 name="lfsck_ns"
8287                 # Try to copy xattr from $file0 to $file1.
8288                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
8289
8290                 setfattr --name=trusted.$name --value="$value" $file1 ||
8291                         error "setxattr 'trusted.$name' failed"
8292
8293                 # Try to set a garbage xattr.
8294                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
8295
8296                 setfattr --name=trusted.$name --value="$value" $file1 ||
8297                         error "setxattr 'trusted.$name' failed"
8298
8299                 # Try to remove the xattr from $file1. We don't care if this
8300                 # appears to succeed or fail, we just don't want there to be
8301                 # any changes or crashes.
8302                 setfattr --remove=$trusted.$name $file1 2> /dev/null
8303         fi
8304
8305         # Get 'after' xattrs of file1.
8306         getfattr --absolute-names --dump --match=- $file1 > $xattr1
8307
8308         if ! diff $xattr0 $xattr1; then
8309                 error "before and after xattrs of '$file1' differ"
8310         fi
8311
8312         rm -rf $file0 $file1 $xattr0 $xattr1
8313
8314         return 0
8315 }
8316 run_test 102n "silently ignore setxattr on internal trusted xattrs"
8317
8318 test_102p() { # LU-4703 setxattr did not check ownership
8319         [ $MDS1_VERSION -lt $(version_code 2.5.56) ] &&
8320                 skip "MDS needs to be at least 2.5.56"
8321
8322         local testfile=$DIR/$tfile
8323
8324         touch $testfile
8325
8326         echo "setfacl as user..."
8327         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
8328         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
8329
8330         echo "setfattr as user..."
8331         setfacl -m "u:$RUNAS_ID:---" $testfile
8332         $RUNAS setfattr -x system.posix_acl_access $testfile
8333         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
8334 }
8335 run_test 102p "check setxattr(2) correctly fails without permission"
8336
8337 test_102q() {
8338         [ $MDS1_VERSION -lt $(version_code 2.6.92) ] &&
8339                 skip "MDS needs to be at least 2.6.92"
8340
8341         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
8342 }
8343 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
8344
8345 test_102r() {
8346         [ $MDS1_VERSION -lt $(version_code 2.6.93) ] &&
8347                 skip "MDS needs to be at least 2.6.93"
8348
8349         touch $DIR/$tfile || error "touch"
8350         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
8351         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
8352         rm $DIR/$tfile || error "rm"
8353
8354         #normal directory
8355         mkdir -p $DIR/$tdir || error "mkdir"
8356         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
8357         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
8358         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
8359                 error "$testfile error deleting user.author1"
8360         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
8361                 grep "user.$(basename $tdir)" &&
8362                 error "$tdir did not delete user.$(basename $tdir)"
8363         rmdir $DIR/$tdir || error "rmdir"
8364
8365         #striped directory
8366         test_mkdir $DIR/$tdir
8367         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
8368         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
8369         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
8370                 error "$testfile error deleting user.author1"
8371         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
8372                 grep "user.$(basename $tdir)" &&
8373                 error "$tdir did not delete user.$(basename $tdir)"
8374         rmdir $DIR/$tdir || error "rm striped dir"
8375 }
8376 run_test 102r "set EAs with empty values"
8377
8378 test_102s() {
8379         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
8380                 skip "MDS needs to be at least 2.11.52"
8381
8382         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
8383
8384         save_lustre_params client "llite.*.xattr_cache" > $save
8385
8386         for cache in 0 1; do
8387                 lctl set_param llite.*.xattr_cache=$cache
8388
8389                 rm -f $DIR/$tfile
8390                 touch $DIR/$tfile || error "touch"
8391                 for prefix in lustre security system trusted user; do
8392                         # Note getxattr() may fail with 'Operation not
8393                         # supported' or 'No such attribute' depending
8394                         # on prefix and cache.
8395                         getfattr -n $prefix.n102s $DIR/$tfile &&
8396                                 error "getxattr '$prefix.n102s' should fail (cache = $cache)"
8397                 done
8398         done
8399
8400         restore_lustre_params < $save
8401 }
8402 run_test 102s "getting nonexistent xattrs should fail"
8403
8404 test_102t() {
8405         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
8406                 skip "MDS needs to be at least 2.11.52"
8407
8408         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
8409
8410         save_lustre_params client "llite.*.xattr_cache" > $save
8411
8412         for cache in 0 1; do
8413                 lctl set_param llite.*.xattr_cache=$cache
8414
8415                 for buf_size in 0 256; do
8416                         rm -f $DIR/$tfile
8417                         touch $DIR/$tfile || error "touch"
8418                         setfattr -n user.multiop $DIR/$tfile
8419                         $MULTIOP $DIR/$tfile oa$buf_size ||
8420                                 error "cannot get zero length xattr value (buf_size = $buf_size)"
8421                 done
8422         done
8423
8424         restore_lustre_params < $save
8425 }
8426 run_test 102t "zero length xattr values handled correctly"
8427
8428 run_acl_subtest()
8429 {
8430     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
8431     return $?
8432 }
8433
8434 test_103a() {
8435         [ "$UID" != 0 ] && skip "must run as root"
8436         $GSS && skip_env "could not run under gss"
8437         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
8438                 skip_env "must have acl enabled"
8439         [ -z "$(which setfacl 2>/dev/null)" ] &&
8440                 skip_env "could not find setfacl"
8441         remote_mds_nodsh && skip "remote MDS with nodsh"
8442
8443         gpasswd -a daemon bin                           # LU-5641
8444         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
8445
8446         declare -a identity_old
8447
8448         for num in $(seq $MDSCOUNT); do
8449                 switch_identity $num true || identity_old[$num]=$?
8450         done
8451
8452         SAVE_UMASK=$(umask)
8453         umask 0022
8454         mkdir -p $DIR/$tdir
8455         cd $DIR/$tdir
8456
8457         echo "performing cp ..."
8458         run_acl_subtest cp || error "run_acl_subtest cp failed"
8459         echo "performing getfacl-noacl..."
8460         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
8461         echo "performing misc..."
8462         run_acl_subtest misc || error  "misc test failed"
8463         echo "performing permissions..."
8464         run_acl_subtest permissions || error "permissions failed"
8465         # LU-1482 mdd: Setting xattr are properly checked with and without ACLs
8466         if [ $MDS1_VERSION -gt $(version_code 2.8.55) -o \
8467              \( $MDS1_VERSION -lt $(version_code 2.6) -a \
8468              $MDS1_VERSION -ge $(version_code 2.5.29) \) ]
8469         then
8470                 echo "performing permissions xattr..."
8471                 run_acl_subtest permissions_xattr ||
8472                         error "permissions_xattr failed"
8473         fi
8474         echo "performing setfacl..."
8475         run_acl_subtest setfacl || error  "setfacl test failed"
8476
8477         # inheritance test got from HP
8478         echo "performing inheritance..."
8479         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
8480         chmod +x make-tree || error "chmod +x failed"
8481         run_acl_subtest inheritance || error "inheritance test failed"
8482         rm -f make-tree
8483
8484         echo "LU-974 ignore umask when acl is enabled..."
8485         run_acl_subtest 974 || error "LU-974 umask test failed"
8486         if [ $MDSCOUNT -ge 2 ]; then
8487                 run_acl_subtest 974_remote ||
8488                         error "LU-974 umask test failed under remote dir"
8489         fi
8490
8491         echo "LU-2561 newly created file is same size as directory..."
8492         if [ "$mds1_FSTYPE" != "zfs" ]; then
8493                 run_acl_subtest 2561 || error "LU-2561 test failed"
8494         else
8495                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
8496         fi
8497
8498         run_acl_subtest 4924 || error "LU-4924 test failed"
8499
8500         cd $SAVE_PWD
8501         umask $SAVE_UMASK
8502
8503         for num in $(seq $MDSCOUNT); do
8504                 if [ "${identity_old[$num]}" = 1 ]; then
8505                         switch_identity $num false || identity_old[$num]=$?
8506                 fi
8507         done
8508 }
8509 run_test 103a "acl test"
8510
8511 test_103b() {
8512         local U
8513
8514         for U in {0..511}; do
8515                 {
8516                 local O=$(printf "%04o" $U)
8517
8518                 umask $(printf "%04o" $((511 ^ $O)))
8519                 $LFS setstripe -c 1 $DIR/$tfile.s$O
8520                 local S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.s$O))
8521
8522                 (( $S == ($O & 0666) )) ||
8523                         error "lfs setstripe $DIR/$tfile.s$O '$S' != '$O'"
8524
8525                 $LFS setstripe -E16M -c 1 -E1G -S4M $DIR/$tfile.p$O
8526                 S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.p$O))
8527                 (( $S == ($O & 0666) )) ||
8528                         error "lfs setstripe -E $DIR/$tfile.p$O '$S' != '$O'"
8529
8530                 $LFS setstripe -N2 -c 1 $DIR/$tfile.m$O
8531                 S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.m$O))
8532                 (( $S == ($O & 0666) )) ||
8533                         error "lfs setstripe -N2 $DIR/$tfile.m$O '$S' != '$O'"
8534                 rm -f $DIR/$tfile.[smp]$0
8535                 } &
8536         done
8537         wait
8538 }
8539 run_test 103b "umask lfs setstripe"
8540
8541 test_103c() {
8542         mkdir -p $DIR/$tdir
8543         cp -rp $DIR/$tdir $DIR/$tdir.bak
8544
8545         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
8546                 error "$DIR/$tdir shouldn't contain default ACL"
8547         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
8548                 error "$DIR/$tdir.bak shouldn't contain default ACL"
8549         true
8550 }
8551 run_test 103c "'cp -rp' won't set empty acl"
8552
8553 test_104a() {
8554         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8555
8556         touch $DIR/$tfile
8557         lfs df || error "lfs df failed"
8558         lfs df -ih || error "lfs df -ih failed"
8559         lfs df -h $DIR || error "lfs df -h $DIR failed"
8560         lfs df -i $DIR || error "lfs df -i $DIR failed"
8561         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
8562         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
8563
8564         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
8565         lctl --device %$OSC deactivate
8566         lfs df || error "lfs df with deactivated OSC failed"
8567         lctl --device %$OSC activate
8568         # wait the osc back to normal
8569         wait_osc_import_state client ost FULL
8570
8571         lfs df || error "lfs df with reactivated OSC failed"
8572         rm -f $DIR/$tfile
8573 }
8574 run_test 104a "lfs df [-ih] [path] test ========================="
8575
8576 test_104b() {
8577         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8578         [ $RUNAS_ID -eq $UID ] &&
8579                 skip_env "RUNAS_ID = UID = $UID -- skipping"
8580
8581         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
8582                         grep "Permission denied" | wc -l)))
8583         if [ $denied_cnt -ne 0 ]; then
8584                 error "lfs check servers test failed"
8585         fi
8586 }
8587 run_test 104b "$RUNAS lfs check servers test ===================="
8588
8589 test_105a() {
8590         # doesn't work on 2.4 kernels
8591         touch $DIR/$tfile
8592         if $(flock_is_enabled); then
8593                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
8594         else
8595                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
8596         fi
8597         rm -f $DIR/$tfile
8598 }
8599 run_test 105a "flock when mounted without -o flock test ========"
8600
8601 test_105b() {
8602         touch $DIR/$tfile
8603         if $(flock_is_enabled); then
8604                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
8605         else
8606                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
8607         fi
8608         rm -f $DIR/$tfile
8609 }
8610 run_test 105b "fcntl when mounted without -o flock test ========"
8611
8612 test_105c() {
8613         touch $DIR/$tfile
8614         if $(flock_is_enabled); then
8615                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
8616         else
8617                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
8618         fi
8619         rm -f $DIR/$tfile
8620 }
8621 run_test 105c "lockf when mounted without -o flock test"
8622
8623 test_105d() { # bug 15924
8624         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8625
8626         test_mkdir $DIR/$tdir
8627         flock_is_enabled || skip_env "mount w/o flock enabled"
8628         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
8629         $LCTL set_param fail_loc=0x80000315
8630         flocks_test 2 $DIR/$tdir
8631 }
8632 run_test 105d "flock race (should not freeze) ========"
8633
8634 test_105e() { # bug 22660 && 22040
8635         flock_is_enabled || skip_env "mount w/o flock enabled"
8636
8637         touch $DIR/$tfile
8638         flocks_test 3 $DIR/$tfile
8639 }
8640 run_test 105e "Two conflicting flocks from same process"
8641
8642 test_106() { #bug 10921
8643         test_mkdir $DIR/$tdir
8644         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
8645         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
8646 }
8647 run_test 106 "attempt exec of dir followed by chown of that dir"
8648
8649 test_107() {
8650         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8651
8652         CDIR=`pwd`
8653         local file=core
8654
8655         cd $DIR
8656         rm -f $file
8657
8658         local save_pattern=$(sysctl -n kernel.core_pattern)
8659         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
8660         sysctl -w kernel.core_pattern=$file
8661         sysctl -w kernel.core_uses_pid=0
8662
8663         ulimit -c unlimited
8664         sleep 60 &
8665         SLEEPPID=$!
8666
8667         sleep 1
8668
8669         kill -s 11 $SLEEPPID
8670         wait $SLEEPPID
8671         if [ -e $file ]; then
8672                 size=`stat -c%s $file`
8673                 [ $size -eq 0 ] && error "Fail to create core file $file"
8674         else
8675                 error "Fail to create core file $file"
8676         fi
8677         rm -f $file
8678         sysctl -w kernel.core_pattern=$save_pattern
8679         sysctl -w kernel.core_uses_pid=$save_uses_pid
8680         cd $CDIR
8681 }
8682 run_test 107 "Coredump on SIG"
8683
8684 test_110() {
8685         test_mkdir $DIR/$tdir
8686         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255)
8687         $LFS mkdir -c $MDSCOUNT $DIR/$tdir/$(str_repeat 'b' 256) &&
8688                 error "mkdir with 256 char should fail, but did not"
8689         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
8690                 error "create with 255 char failed"
8691         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
8692                 error "create with 256 char should fail, but did not"
8693
8694         ls -l $DIR/$tdir
8695         rm -rf $DIR/$tdir
8696 }
8697 run_test 110 "filename length checking"
8698
8699 #
8700 # Purpose: To verify dynamic thread (OSS) creation.
8701 #
8702 test_115() {
8703         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8704         remote_ost_nodsh && skip "remote OST with nodsh"
8705
8706         # Lustre does not stop service threads once they are started.
8707         # Reset number of running threads to default.
8708         stopall
8709         setupall
8710
8711         local OSTIO_pre
8712         local save_params="$TMP/sanity-$TESTNAME.parameters"
8713
8714         # Get ll_ost_io count before I/O
8715         OSTIO_pre=$(do_facet ost1 \
8716                 "$LCTL get_param ost.OSS.ost_io.threads_started | cut -d= -f2")
8717         # Exit if lustre is not running (ll_ost_io not running).
8718         [ -z "$OSTIO_pre" ] && error "no OSS threads"
8719
8720         echo "Starting with $OSTIO_pre threads"
8721         local thread_max=$((OSTIO_pre * 2))
8722         local rpc_in_flight=$((thread_max * 2))
8723         # Number of I/O Process proposed to be started.
8724         local nfiles
8725         local facets=$(get_facets OST)
8726
8727         save_lustre_params client "osc.*OST*.max_rpcs_in_flight" > $save_params
8728         save_lustre_params $facets "ost.OSS.ost_io.threads_max" >> $save_params
8729
8730         # Set in_flight to $rpc_in_flight
8731         $LCTL set_param osc.*OST*.max_rpcs_in_flight=$rpc_in_flight ||
8732                 error "Failed to set max_rpcs_in_flight to $rpc_in_flight"
8733         nfiles=${rpc_in_flight}
8734         # Set ost thread_max to $thread_max
8735         do_facet ost1 "$LCTL set_param ost.OSS.ost_io.threads_max=$thread_max"
8736
8737         # 5 Minutes should be sufficient for max number of OSS
8738         # threads(thread_max) to be created.
8739         local timeout=300
8740
8741         # Start I/O.
8742         local WTL=${WTL:-"$LUSTRE/tests/write_time_limit"}
8743         test_mkdir $DIR/$tdir
8744         for i in $(seq $nfiles); do
8745                 local file=$DIR/$tdir/${tfile}-$i
8746                 $LFS setstripe -c -1 -i 0 $file
8747                 ($WTL $file $timeout)&
8748         done
8749
8750         # I/O Started - Wait for thread_started to reach thread_max or report
8751         # error if thread_started is more than thread_max.
8752         echo "Waiting for thread_started to reach thread_max"
8753         local thread_started=0
8754         local end_time=$((SECONDS + timeout))
8755
8756         while [ $SECONDS -le $end_time ] ; do
8757                 echo -n "."
8758                 # Get ost i/o thread_started count.
8759                 thread_started=$(do_facet ost1 \
8760                         "$LCTL get_param \
8761                         ost.OSS.ost_io.threads_started | cut -d= -f2")
8762                 # Break out if thread_started is equal/greater than thread_max
8763                 if [[ $thread_started -ge $thread_max ]]; then
8764                         echo ll_ost_io thread_started $thread_started, \
8765                                 equal/greater than thread_max $thread_max
8766                         break
8767                 fi
8768                 sleep 1
8769         done
8770
8771         # Cleanup - We have the numbers, Kill i/o jobs if running.
8772         jobcount=($(jobs -p))
8773         for i in $(seq 0 $((${#jobcount[@]}-1)))
8774         do
8775                 kill -9 ${jobcount[$i]}
8776                 if [ $? -ne 0 ] ; then
8777                         echo Warning: \
8778                         Failed to Kill \'WTL\(I/O\)\' with pid ${jobcount[$i]}
8779                 fi
8780         done
8781
8782         # Cleanup files left by WTL binary.
8783         for i in $(seq $nfiles); do
8784                 local file=$DIR/$tdir/${tfile}-$i
8785                 rm -rf $file
8786                 if [ $? -ne 0 ] ; then
8787                         echo "Warning: Failed to delete file $file"
8788                 fi
8789         done
8790
8791         restore_lustre_params <$save_params
8792         rm -f $save_params || echo "Warning: delete file '$save_params' failed"
8793
8794         # Error out if no new thread has started or Thread started is greater
8795         # than thread max.
8796         if [[ $thread_started -le $OSTIO_pre ||
8797                         $thread_started -gt $thread_max ]]; then
8798                 error "ll_ost_io: thread_started $thread_started" \
8799                       "OSTIO_pre $OSTIO_pre, thread_max $thread_max." \
8800                       "No new thread started or thread started greater " \
8801                       "than thread_max."
8802         fi
8803 }
8804 run_test 115 "verify dynamic thread creation===================="
8805
8806 free_min_max () {
8807         wait_delete_completed
8808         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
8809         echo "OST kbytes available: ${AVAIL[@]}"
8810         MAXV=${AVAIL[0]}
8811         MAXI=0
8812         MINV=${AVAIL[0]}
8813         MINI=0
8814         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
8815                 #echo OST $i: ${AVAIL[i]}kb
8816                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
8817                         MAXV=${AVAIL[i]}
8818                         MAXI=$i
8819                 fi
8820                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
8821                         MINV=${AVAIL[i]}
8822                         MINI=$i
8823                 fi
8824         done
8825         echo "Min free space: OST $MINI: $MINV"
8826         echo "Max free space: OST $MAXI: $MAXV"
8827 }
8828
8829 test_116a() { # was previously test_116()
8830         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8831         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8832         remote_mds_nodsh && skip "remote MDS with nodsh"
8833
8834         echo -n "Free space priority "
8835         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
8836                 head -n1
8837         declare -a AVAIL
8838         free_min_max
8839
8840         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip"
8841         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip"
8842         trap simple_cleanup_common EXIT
8843
8844         # Check if we need to generate uneven OSTs
8845         test_mkdir -p $DIR/$tdir/OST${MINI}
8846         local FILL=$((MINV / 4))
8847         local DIFF=$((MAXV - MINV))
8848         local DIFF2=$((DIFF * 100 / MINV))
8849
8850         local threshold=$(do_facet $SINGLEMDS \
8851                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
8852         threshold=${threshold%%%}
8853         echo -n "Check for uneven OSTs: "
8854         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
8855
8856         if [[ $DIFF2 -gt $threshold ]]; then
8857                 echo "ok"
8858                 echo "Don't need to fill OST$MINI"
8859         else
8860                 # generate uneven OSTs. Write 2% over the QOS threshold value
8861                 echo "no"
8862                 DIFF=$((threshold - DIFF2 + 2))
8863                 DIFF2=$((MINV * DIFF / 100))
8864                 echo "Fill $DIFF% remaining space in OST$MINI with ${DIFF2}KB"
8865                 $LFS setstripe -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
8866                         error "setstripe failed"
8867                 DIFF=$((DIFF2 / 2048))
8868                 i=0
8869                 while [ $i -lt $DIFF ]; do
8870                         i=$((i + 1))
8871                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
8872                                 bs=2M count=1 2>/dev/null
8873                         echo -n .
8874                 done
8875                 echo .
8876                 sync
8877                 sleep_maxage
8878                 free_min_max
8879         fi
8880
8881         DIFF=$((MAXV - MINV))
8882         DIFF2=$((DIFF * 100 / MINV))
8883         echo -n "diff=$DIFF=$DIFF2% must be > $threshold% for QOS mode..."
8884         if [ $DIFF2 -gt $threshold ]; then
8885                 echo "ok"
8886         else
8887                 echo "failed - QOS mode won't be used"
8888                 simple_cleanup_common
8889                 skip "QOS imbalance criteria not met"
8890         fi
8891
8892         MINI1=$MINI
8893         MINV1=$MINV
8894         MAXI1=$MAXI
8895         MAXV1=$MAXV
8896
8897         # now fill using QOS
8898         $LFS setstripe -c 1 $DIR/$tdir
8899         FILL=$((FILL / 200))
8900         if [ $FILL -gt 600 ]; then
8901                 FILL=600
8902         fi
8903         echo "writing $FILL files to QOS-assigned OSTs"
8904         i=0
8905         while [ $i -lt $FILL ]; do
8906                 i=$((i + 1))
8907                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
8908                         count=1 2>/dev/null
8909                 echo -n .
8910         done
8911         echo "wrote $i 200k files"
8912         sync
8913         sleep_maxage
8914
8915         echo "Note: free space may not be updated, so measurements might be off"
8916         free_min_max
8917         DIFF2=$((MAXV - MINV))
8918         echo "free space delta: orig $DIFF final $DIFF2"
8919         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
8920         DIFF=$((MINV1 - ${AVAIL[$MINI1]}))
8921         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
8922         DIFF2=$((MAXV1 - ${AVAIL[$MAXI1]}))
8923         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
8924         if [[ $DIFF -gt 0 ]]; then
8925                 FILL=$((DIFF2 * 100 / DIFF - 100))
8926                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
8927         fi
8928
8929         # Figure out which files were written where
8930         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
8931                awk '/'$MINI1': / {print $2; exit}')
8932         echo $UUID
8933         MINC=$($LFS getstripe --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
8934         echo "$MINC files created on smaller OST $MINI1"
8935         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
8936                awk '/'$MAXI1': / {print $2; exit}')
8937         echo $UUID
8938         MAXC=$($LFS getstripe --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
8939         echo "$MAXC files created on larger OST $MAXI1"
8940         if [[ $MINC -gt 0 ]]; then
8941                 FILL=$((MAXC * 100 / MINC - 100))
8942                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
8943         fi
8944         [[ $MAXC -gt $MINC ]] ||
8945                 error_ignore LU-9 "stripe QOS didn't balance free space"
8946         simple_cleanup_common
8947 }
8948 run_test 116a "stripe QOS: free space balance ==================="
8949
8950 test_116b() { # LU-2093
8951         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8952         remote_mds_nodsh && skip "remote MDS with nodsh"
8953
8954 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
8955         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
8956                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
8957         [ -z "$old_rr" ] && skip "no QOS"
8958         do_facet $SINGLEMDS lctl set_param \
8959                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
8960         mkdir -p $DIR/$tdir
8961         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
8962         createmany -o $DIR/$tdir/f- 20 || error "can't create"
8963         do_facet $SINGLEMDS lctl set_param fail_loc=0
8964         rm -rf $DIR/$tdir
8965         do_facet $SINGLEMDS lctl set_param \
8966                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
8967 }
8968 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
8969
8970 test_117() # bug 10891
8971 {
8972         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8973
8974         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
8975         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
8976         lctl set_param fail_loc=0x21e
8977         > $DIR/$tfile || error "truncate failed"
8978         lctl set_param fail_loc=0
8979         echo "Truncate succeeded."
8980         rm -f $DIR/$tfile
8981 }
8982 run_test 117 "verify osd extend =========="
8983
8984 NO_SLOW_RESENDCOUNT=4
8985 export OLD_RESENDCOUNT=""
8986 set_resend_count () {
8987         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
8988         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
8989         lctl set_param -n $PROC_RESENDCOUNT $1
8990         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
8991 }
8992
8993 # for reduce test_118* time (b=14842)
8994 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
8995
8996 # Reset async IO behavior after error case
8997 reset_async() {
8998         FILE=$DIR/reset_async
8999
9000         # Ensure all OSCs are cleared
9001         $LFS setstripe -c -1 $FILE
9002         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
9003         sync
9004         rm $FILE
9005 }
9006
9007 test_118a() #bug 11710
9008 {
9009         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9010
9011         reset_async
9012
9013         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9014         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9015         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9016
9017         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9018                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9019                 return 1;
9020         fi
9021         rm -f $DIR/$tfile
9022 }
9023 run_test 118a "verify O_SYNC works =========="
9024
9025 test_118b()
9026 {
9027         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9028         remote_ost_nodsh && skip "remote OST with nodsh"
9029
9030         reset_async
9031
9032         #define OBD_FAIL_SRV_ENOENT 0x217
9033         set_nodes_failloc "$(osts_nodes)" 0x217
9034         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9035         RC=$?
9036         set_nodes_failloc "$(osts_nodes)" 0
9037         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9038         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9039                     grep -c writeback)
9040
9041         if [[ $RC -eq 0 ]]; then
9042                 error "Must return error due to dropped pages, rc=$RC"
9043                 return 1;
9044         fi
9045
9046         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9047                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9048                 return 1;
9049         fi
9050
9051         echo "Dirty pages not leaked on ENOENT"
9052
9053         # Due to the above error the OSC will issue all RPCs syncronously
9054         # until a subsequent RPC completes successfully without error.
9055         $MULTIOP $DIR/$tfile Ow4096yc
9056         rm -f $DIR/$tfile
9057
9058         return 0
9059 }
9060 run_test 118b "Reclaim dirty pages on fatal error =========="
9061
9062 test_118c()
9063 {
9064         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9065
9066         # for 118c, restore the original resend count, LU-1940
9067         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
9068                                 set_resend_count $OLD_RESENDCOUNT
9069         remote_ost_nodsh && skip "remote OST with nodsh"
9070
9071         reset_async
9072
9073         #define OBD_FAIL_OST_EROFS               0x216
9074         set_nodes_failloc "$(osts_nodes)" 0x216
9075
9076         # multiop should block due to fsync until pages are written
9077         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9078         MULTIPID=$!
9079         sleep 1
9080
9081         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
9082                 error "Multiop failed to block on fsync, pid=$MULTIPID"
9083         fi
9084
9085         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9086                     grep -c writeback)
9087         if [[ $WRITEBACK -eq 0 ]]; then
9088                 error "No page in writeback, writeback=$WRITEBACK"
9089         fi
9090
9091         set_nodes_failloc "$(osts_nodes)" 0
9092         wait $MULTIPID
9093         RC=$?
9094         if [[ $RC -ne 0 ]]; then
9095                 error "Multiop fsync failed, rc=$RC"
9096         fi
9097
9098         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9099         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9100                     grep -c writeback)
9101         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9102                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9103         fi
9104
9105         rm -f $DIR/$tfile
9106         echo "Dirty pages flushed via fsync on EROFS"
9107         return 0
9108 }
9109 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
9110
9111 # continue to use small resend count to reduce test_118* time (b=14842)
9112 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
9113
9114 test_118d()
9115 {
9116         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9117         remote_ost_nodsh && skip "remote OST with nodsh"
9118
9119         reset_async
9120
9121         #define OBD_FAIL_OST_BRW_PAUSE_BULK
9122         set_nodes_failloc "$(osts_nodes)" 0x214
9123         # multiop should block due to fsync until pages are written
9124         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9125         MULTIPID=$!
9126         sleep 1
9127
9128         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
9129                 error "Multiop failed to block on fsync, pid=$MULTIPID"
9130         fi
9131
9132         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9133                     grep -c writeback)
9134         if [[ $WRITEBACK -eq 0 ]]; then
9135                 error "No page in writeback, writeback=$WRITEBACK"
9136         fi
9137
9138         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
9139         set_nodes_failloc "$(osts_nodes)" 0
9140
9141         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9142         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9143                     grep -c writeback)
9144         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9145                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9146         fi
9147
9148         rm -f $DIR/$tfile
9149         echo "Dirty pages gaurenteed flushed via fsync"
9150         return 0
9151 }
9152 run_test 118d "Fsync validation inject a delay of the bulk =========="
9153
9154 test_118f() {
9155         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9156
9157         reset_async
9158
9159         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
9160         lctl set_param fail_loc=0x8000040a
9161
9162         # Should simulate EINVAL error which is fatal
9163         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9164         RC=$?
9165         if [[ $RC -eq 0 ]]; then
9166                 error "Must return error due to dropped pages, rc=$RC"
9167         fi
9168
9169         lctl set_param fail_loc=0x0
9170
9171         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9172         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9173         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9174                     grep -c writeback)
9175         if [[ $LOCKED -ne 0 ]]; then
9176                 error "Locked pages remain in cache, locked=$LOCKED"
9177         fi
9178
9179         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9180                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9181         fi
9182
9183         rm -f $DIR/$tfile
9184         echo "No pages locked after fsync"
9185
9186         reset_async
9187         return 0
9188 }
9189 run_test 118f "Simulate unrecoverable OSC side error =========="
9190
9191 test_118g() {
9192         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9193
9194         reset_async
9195
9196         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
9197         lctl set_param fail_loc=0x406
9198
9199         # simulate local -ENOMEM
9200         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9201         RC=$?
9202
9203         lctl set_param fail_loc=0
9204         if [[ $RC -eq 0 ]]; then
9205                 error "Must return error due to dropped pages, rc=$RC"
9206         fi
9207
9208         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9209         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9210         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9211                         grep -c writeback)
9212         if [[ $LOCKED -ne 0 ]]; then
9213                 error "Locked pages remain in cache, locked=$LOCKED"
9214         fi
9215
9216         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9217                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9218         fi
9219
9220         rm -f $DIR/$tfile
9221         echo "No pages locked after fsync"
9222
9223         reset_async
9224         return 0
9225 }
9226 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
9227
9228 test_118h() {
9229         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9230         remote_ost_nodsh && skip "remote OST with nodsh"
9231
9232         reset_async
9233
9234         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9235         set_nodes_failloc "$(osts_nodes)" 0x20e
9236         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
9237         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9238         RC=$?
9239
9240         set_nodes_failloc "$(osts_nodes)" 0
9241         if [[ $RC -eq 0 ]]; then
9242                 error "Must return error due to dropped pages, rc=$RC"
9243         fi
9244
9245         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9246         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9247         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9248                     grep -c writeback)
9249         if [[ $LOCKED -ne 0 ]]; then
9250                 error "Locked pages remain in cache, locked=$LOCKED"
9251         fi
9252
9253         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9254                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9255         fi
9256
9257         rm -f $DIR/$tfile
9258         echo "No pages locked after fsync"
9259
9260         return 0
9261 }
9262 run_test 118h "Verify timeout in handling recoverables errors  =========="
9263
9264 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
9265
9266 test_118i() {
9267         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9268         remote_ost_nodsh && skip "remote OST with nodsh"
9269
9270         reset_async
9271
9272         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9273         set_nodes_failloc "$(osts_nodes)" 0x20e
9274
9275         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
9276         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9277         PID=$!
9278         sleep 5
9279         set_nodes_failloc "$(osts_nodes)" 0
9280
9281         wait $PID
9282         RC=$?
9283         if [[ $RC -ne 0 ]]; then
9284                 error "got error, but should be not, rc=$RC"
9285         fi
9286
9287         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9288         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9289         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9290         if [[ $LOCKED -ne 0 ]]; then
9291                 error "Locked pages remain in cache, locked=$LOCKED"
9292         fi
9293
9294         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9295                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9296         fi
9297
9298         rm -f $DIR/$tfile
9299         echo "No pages locked after fsync"
9300
9301         return 0
9302 }
9303 run_test 118i "Fix error before timeout in recoverable error  =========="
9304
9305 [ "$SLOW" = "no" ] && set_resend_count 4
9306
9307 test_118j() {
9308         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9309         remote_ost_nodsh && skip "remote OST with nodsh"
9310
9311         reset_async
9312
9313         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
9314         set_nodes_failloc "$(osts_nodes)" 0x220
9315
9316         # return -EIO from OST
9317         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9318         RC=$?
9319         set_nodes_failloc "$(osts_nodes)" 0x0
9320         if [[ $RC -eq 0 ]]; then
9321                 error "Must return error due to dropped pages, rc=$RC"
9322         fi
9323
9324         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9325         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9326         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9327         if [[ $LOCKED -ne 0 ]]; then
9328                 error "Locked pages remain in cache, locked=$LOCKED"
9329         fi
9330
9331         # in recoverable error on OST we want resend and stay until it finished
9332         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9333                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9334         fi
9335
9336         rm -f $DIR/$tfile
9337         echo "No pages locked after fsync"
9338
9339         return 0
9340 }
9341 run_test 118j "Simulate unrecoverable OST side error =========="
9342
9343 test_118k()
9344 {
9345         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9346         remote_ost_nodsh && skip "remote OSTs with nodsh"
9347
9348         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9349         set_nodes_failloc "$(osts_nodes)" 0x20e
9350         test_mkdir $DIR/$tdir
9351
9352         for ((i=0;i<10;i++)); do
9353                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
9354                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
9355                 SLEEPPID=$!
9356                 sleep 0.500s
9357                 kill $SLEEPPID
9358                 wait $SLEEPPID
9359         done
9360
9361         set_nodes_failloc "$(osts_nodes)" 0
9362         rm -rf $DIR/$tdir
9363 }
9364 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
9365
9366 test_118l() # LU-646
9367 {
9368         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9369
9370         test_mkdir $DIR/$tdir
9371         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
9372         rm -rf $DIR/$tdir
9373 }
9374 run_test 118l "fsync dir"
9375
9376 test_118m() # LU-3066
9377 {
9378         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9379
9380         test_mkdir $DIR/$tdir
9381         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
9382         rm -rf $DIR/$tdir
9383 }
9384 run_test 118m "fdatasync dir ========="
9385
9386 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
9387
9388 test_118n()
9389 {
9390         local begin
9391         local end
9392
9393         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9394         remote_ost_nodsh && skip "remote OSTs with nodsh"
9395
9396         # Sleep to avoid a cached response.
9397         #define OBD_STATFS_CACHE_SECONDS 1
9398         sleep 2
9399
9400         # Inject a 10 second delay in the OST_STATFS handler.
9401         #define OBD_FAIL_OST_STATFS_DELAY 0x242
9402         set_nodes_failloc "$(osts_nodes)" 0x242
9403
9404         begin=$SECONDS
9405         stat --file-system $MOUNT > /dev/null
9406         end=$SECONDS
9407
9408         set_nodes_failloc "$(osts_nodes)" 0
9409
9410         if ((end - begin > 20)); then
9411             error "statfs took $((end - begin)) seconds, expected 10"
9412         fi
9413 }
9414 run_test 118n "statfs() sends OST_STATFS requests in parallel"
9415
9416 test_119a() # bug 11737
9417 {
9418         BSIZE=$((512 * 1024))
9419         directio write $DIR/$tfile 0 1 $BSIZE
9420         # We ask to read two blocks, which is more than a file size.
9421         # directio will indicate an error when requested and actual
9422         # sizes aren't equeal (a normal situation in this case) and
9423         # print actual read amount.
9424         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
9425         if [ "$NOB" != "$BSIZE" ]; then
9426                 error "read $NOB bytes instead of $BSIZE"
9427         fi
9428         rm -f $DIR/$tfile
9429 }
9430 run_test 119a "Short directIO read must return actual read amount"
9431
9432 test_119b() # bug 11737
9433 {
9434         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
9435
9436         $LFS setstripe -c 2 $DIR/$tfile || error "setstripe failed"
9437         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
9438         sync
9439         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) ||
9440                 error "direct read failed"
9441         rm -f $DIR/$tfile
9442 }
9443 run_test 119b "Sparse directIO read must return actual read amount"
9444
9445 test_119c() # bug 13099
9446 {
9447         BSIZE=1048576
9448         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
9449         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
9450         rm -f $DIR/$tfile
9451 }
9452 run_test 119c "Testing for direct read hitting hole"
9453
9454 test_119d() # bug 15950
9455 {
9456         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9457
9458         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
9459         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
9460         BSIZE=1048576
9461         $LFS setstripe $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
9462         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
9463         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
9464         lctl set_param fail_loc=0x40d
9465         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
9466         pid_dio=$!
9467         sleep 1
9468         cat $DIR/$tfile > /dev/null &
9469         lctl set_param fail_loc=0
9470         pid_reads=$!
9471         wait $pid_dio
9472         log "the DIO writes have completed, now wait for the reads (should not block very long)"
9473         sleep 2
9474         [ -n "`ps h -p $pid_reads -o comm`" ] && \
9475         error "the read rpcs have not completed in 2s"
9476         rm -f $DIR/$tfile
9477         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
9478 }
9479 run_test 119d "The DIO path should try to send a new rpc once one is completed"
9480
9481 test_120a() {
9482         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9483         remote_mds_nodsh && skip "remote MDS with nodsh"
9484         test_mkdir $DIR/$tdir
9485         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9486                 skip_env "no early lock cancel on server"
9487
9488         lru_resize_disable mdc
9489         lru_resize_disable osc
9490         cancel_lru_locks mdc
9491         # asynchronous object destroy at MDT could cause bl ast to client
9492         cancel_lru_locks osc
9493
9494         stat $DIR/$tdir > /dev/null
9495         can1=$(do_facet $SINGLEMDS \
9496                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9497                awk '/ldlm_cancel/ {print $2}')
9498         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9499                awk '/ldlm_bl_callback/ {print $2}')
9500         test_mkdir -c1 $DIR/$tdir/d1
9501         can2=$(do_facet $SINGLEMDS \
9502                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9503                awk '/ldlm_cancel/ {print $2}')
9504         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9505                awk '/ldlm_bl_callback/ {print $2}')
9506         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9507         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9508         lru_resize_enable mdc
9509         lru_resize_enable osc
9510 }
9511 run_test 120a "Early Lock Cancel: mkdir test"
9512
9513 test_120b() {
9514         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9515         remote_mds_nodsh && skip "remote MDS with nodsh"
9516         test_mkdir $DIR/$tdir
9517         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9518                 skip_env "no early lock cancel on server"
9519
9520         lru_resize_disable mdc
9521         lru_resize_disable osc
9522         cancel_lru_locks mdc
9523         stat $DIR/$tdir > /dev/null
9524         can1=$(do_facet $SINGLEMDS \
9525                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9526                awk '/ldlm_cancel/ {print $2}')
9527         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9528                awk '/ldlm_bl_callback/ {print $2}')
9529         touch $DIR/$tdir/f1
9530         can2=$(do_facet $SINGLEMDS \
9531                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9532                awk '/ldlm_cancel/ {print $2}')
9533         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9534                awk '/ldlm_bl_callback/ {print $2}')
9535         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9536         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9537         lru_resize_enable mdc
9538         lru_resize_enable osc
9539 }
9540 run_test 120b "Early Lock Cancel: create test"
9541
9542 test_120c() {
9543         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9544         remote_mds_nodsh && skip "remote MDS with nodsh"
9545         test_mkdir -c1 $DIR/$tdir
9546         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9547                 skip "no early lock cancel on server"
9548
9549         lru_resize_disable mdc
9550         lru_resize_disable osc
9551         test_mkdir -c1 $DIR/$tdir/d1
9552         test_mkdir -c1 $DIR/$tdir/d2
9553         touch $DIR/$tdir/d1/f1
9554         cancel_lru_locks mdc
9555         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
9556         can1=$(do_facet $SINGLEMDS \
9557                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9558                awk '/ldlm_cancel/ {print $2}')
9559         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9560                awk '/ldlm_bl_callback/ {print $2}')
9561         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
9562         can2=$(do_facet $SINGLEMDS \
9563                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9564                awk '/ldlm_cancel/ {print $2}')
9565         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9566                awk '/ldlm_bl_callback/ {print $2}')
9567         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9568         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9569         lru_resize_enable mdc
9570         lru_resize_enable osc
9571 }
9572 run_test 120c "Early Lock Cancel: link test"
9573
9574 test_120d() {
9575         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9576         remote_mds_nodsh && skip "remote MDS with nodsh"
9577         test_mkdir -c1 $DIR/$tdir
9578         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9579                 skip_env "no early lock cancel on server"
9580
9581         lru_resize_disable mdc
9582         lru_resize_disable osc
9583         touch $DIR/$tdir
9584         cancel_lru_locks mdc
9585         stat $DIR/$tdir > /dev/null
9586         can1=$(do_facet $SINGLEMDS \
9587                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9588                awk '/ldlm_cancel/ {print $2}')
9589         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9590                awk '/ldlm_bl_callback/ {print $2}')
9591         chmod a+x $DIR/$tdir
9592         can2=$(do_facet $SINGLEMDS \
9593                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9594                awk '/ldlm_cancel/ {print $2}')
9595         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9596                awk '/ldlm_bl_callback/ {print $2}')
9597         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9598         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9599         lru_resize_enable mdc
9600         lru_resize_enable osc
9601 }
9602 run_test 120d "Early Lock Cancel: setattr test"
9603
9604 test_120e() {
9605         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9606         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9607                 skip_env "no early lock cancel on server"
9608         remote_mds_nodsh && skip "remote MDS with nodsh"
9609
9610         local dlmtrace_set=false
9611
9612         test_mkdir -c1 $DIR/$tdir
9613         lru_resize_disable mdc
9614         lru_resize_disable osc
9615         ! $LCTL get_param debug | grep -q dlmtrace &&
9616                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
9617         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
9618         cancel_lru_locks mdc
9619         cancel_lru_locks osc
9620         dd if=$DIR/$tdir/f1 of=/dev/null
9621         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
9622         # XXX client can not do early lock cancel of OST lock
9623         # during unlink (LU-4206), so cancel osc lock now.
9624         sleep 2
9625         cancel_lru_locks osc
9626         can1=$(do_facet $SINGLEMDS \
9627                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9628                awk '/ldlm_cancel/ {print $2}')
9629         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9630                awk '/ldlm_bl_callback/ {print $2}')
9631         unlink $DIR/$tdir/f1
9632         sleep 5
9633         can2=$(do_facet $SINGLEMDS \
9634                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9635                awk '/ldlm_cancel/ {print $2}')
9636         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9637                awk '/ldlm_bl_callback/ {print $2}')
9638         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
9639                 $LCTL dk $TMP/cancel.debug.txt
9640         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
9641                 $LCTL dk $TMP/blocking.debug.txt
9642         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
9643         lru_resize_enable mdc
9644         lru_resize_enable osc
9645 }
9646 run_test 120e "Early Lock Cancel: unlink test"
9647
9648 test_120f() {
9649         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9650         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9651                 skip_env "no early lock cancel on server"
9652         remote_mds_nodsh && skip "remote MDS with nodsh"
9653
9654         test_mkdir -c1 $DIR/$tdir
9655         lru_resize_disable mdc
9656         lru_resize_disable osc
9657         test_mkdir -c1 $DIR/$tdir/d1
9658         test_mkdir -c1 $DIR/$tdir/d2
9659         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
9660         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
9661         cancel_lru_locks mdc
9662         cancel_lru_locks osc
9663         dd if=$DIR/$tdir/d1/f1 of=/dev/null
9664         dd if=$DIR/$tdir/d2/f2 of=/dev/null
9665         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
9666         # XXX client can not do early lock cancel of OST lock
9667         # during rename (LU-4206), so cancel osc lock now.
9668         sleep 2
9669         cancel_lru_locks osc
9670         can1=$(do_facet $SINGLEMDS \
9671                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9672                awk '/ldlm_cancel/ {print $2}')
9673         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9674                awk '/ldlm_bl_callback/ {print $2}')
9675         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
9676         sleep 5
9677         can2=$(do_facet $SINGLEMDS \
9678                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9679                awk '/ldlm_cancel/ {print $2}')
9680         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9681                awk '/ldlm_bl_callback/ {print $2}')
9682         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9683         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9684         lru_resize_enable mdc
9685         lru_resize_enable osc
9686 }
9687 run_test 120f "Early Lock Cancel: rename test"
9688
9689 test_120g() {
9690         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9691         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9692                 skip_env "no early lock cancel on server"
9693         remote_mds_nodsh && skip "remote MDS with nodsh"
9694
9695         lru_resize_disable mdc
9696         lru_resize_disable osc
9697         count=10000
9698         echo create $count files
9699         test_mkdir $DIR/$tdir
9700         cancel_lru_locks mdc
9701         cancel_lru_locks osc
9702         t0=$(date +%s)
9703
9704         can0=$(do_facet $SINGLEMDS \
9705                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9706                awk '/ldlm_cancel/ {print $2}')
9707         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9708                awk '/ldlm_bl_callback/ {print $2}')
9709         createmany -o $DIR/$tdir/f $count
9710         sync
9711         can1=$(do_facet $SINGLEMDS \
9712                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9713                awk '/ldlm_cancel/ {print $2}')
9714         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9715                awk '/ldlm_bl_callback/ {print $2}')
9716         t1=$(date +%s)
9717         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
9718         echo rm $count files
9719         rm -r $DIR/$tdir
9720         sync
9721         can2=$(do_facet $SINGLEMDS \
9722                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9723                awk '/ldlm_cancel/ {print $2}')
9724         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9725                awk '/ldlm_bl_callback/ {print $2}')
9726         t2=$(date +%s)
9727         echo total: $count removes in $((t2-t1))
9728         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
9729         sleep 2
9730         # wait for commitment of removal
9731         lru_resize_enable mdc
9732         lru_resize_enable osc
9733 }
9734 run_test 120g "Early Lock Cancel: performance test"
9735
9736 test_121() { #bug #10589
9737         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9738
9739         rm -rf $DIR/$tfile
9740         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
9741 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
9742         lctl set_param fail_loc=0x310
9743         cancel_lru_locks osc > /dev/null
9744         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
9745         lctl set_param fail_loc=0
9746         [[ $reads -eq $writes ]] ||
9747                 error "read $reads blocks, must be $writes blocks"
9748 }
9749 run_test 121 "read cancel race ========="
9750
9751 test_123a() { # was test 123, statahead(bug 11401)
9752         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9753
9754         SLOWOK=0
9755         if ! grep -q "processor.*: 1" /proc/cpuinfo; then
9756                 log "testing UP system. Performance may be lower than expected."
9757                 SLOWOK=1
9758         fi
9759
9760         rm -rf $DIR/$tdir
9761         test_mkdir $DIR/$tdir
9762         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
9763         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
9764         MULT=10
9765         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
9766                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
9767
9768                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
9769                 lctl set_param -n llite.*.statahead_max 0
9770                 lctl get_param llite.*.statahead_max
9771                 cancel_lru_locks mdc
9772                 cancel_lru_locks osc
9773                 stime=`date +%s`
9774                 time ls -l $DIR/$tdir | wc -l
9775                 etime=`date +%s`
9776                 delta=$((etime - stime))
9777                 log "ls $i files without statahead: $delta sec"
9778                 lctl set_param llite.*.statahead_max=$max
9779
9780                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
9781                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
9782                 cancel_lru_locks mdc
9783                 cancel_lru_locks osc
9784                 stime=`date +%s`
9785                 time ls -l $DIR/$tdir | wc -l
9786                 etime=`date +%s`
9787                 delta_sa=$((etime - stime))
9788                 log "ls $i files with statahead: $delta_sa sec"
9789                 lctl get_param -n llite.*.statahead_stats
9790                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
9791
9792                 [[ $swrong -lt $ewrong ]] &&
9793                         log "statahead was stopped, maybe too many locks held!"
9794                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
9795
9796                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
9797                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
9798                     lctl set_param -n llite.*.statahead_max 0
9799                     lctl get_param llite.*.statahead_max
9800                     cancel_lru_locks mdc
9801                     cancel_lru_locks osc
9802                     stime=`date +%s`
9803                     time ls -l $DIR/$tdir | wc -l
9804                     etime=`date +%s`
9805                     delta=$((etime - stime))
9806                     log "ls $i files again without statahead: $delta sec"
9807                     lctl set_param llite.*.statahead_max=$max
9808                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
9809                         if [  $SLOWOK -eq 0 ]; then
9810                                 error "ls $i files is slower with statahead!"
9811                         else
9812                                 log "ls $i files is slower with statahead!"
9813                         fi
9814                         break
9815                     fi
9816                 fi
9817
9818                 [ $delta -gt 20 ] && break
9819                 [ $delta -gt 8 ] && MULT=$((50 / delta))
9820                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
9821         done
9822         log "ls done"
9823
9824         stime=`date +%s`
9825         rm -r $DIR/$tdir
9826         sync
9827         etime=`date +%s`
9828         delta=$((etime - stime))
9829         log "rm -r $DIR/$tdir/: $delta seconds"
9830         log "rm done"
9831         lctl get_param -n llite.*.statahead_stats
9832 }
9833 run_test 123a "verify statahead work"
9834
9835 test_123b () { # statahead(bug 15027)
9836         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9837
9838         test_mkdir $DIR/$tdir
9839         createmany -o $DIR/$tdir/$tfile-%d 1000
9840
9841         cancel_lru_locks mdc
9842         cancel_lru_locks osc
9843
9844 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
9845         lctl set_param fail_loc=0x80000803
9846         ls -lR $DIR/$tdir > /dev/null
9847         log "ls done"
9848         lctl set_param fail_loc=0x0
9849         lctl get_param -n llite.*.statahead_stats
9850         rm -r $DIR/$tdir
9851         sync
9852
9853 }
9854 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
9855
9856 test_124a() {
9857         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9858         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
9859                 skip_env "no lru resize on server"
9860
9861         local NR=2000
9862
9863         test_mkdir $DIR/$tdir
9864
9865         log "create $NR files at $DIR/$tdir"
9866         createmany -o $DIR/$tdir/f $NR ||
9867                 error "failed to create $NR files in $DIR/$tdir"
9868
9869         cancel_lru_locks mdc
9870         ls -l $DIR/$tdir > /dev/null
9871
9872         local NSDIR=""
9873         local LRU_SIZE=0
9874         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
9875                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
9876                 LRU_SIZE=$($LCTL get_param -n $PARAM)
9877                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
9878                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
9879                         log "NSDIR=$NSDIR"
9880                         log "NS=$(basename $NSDIR)"
9881                         break
9882                 fi
9883         done
9884
9885         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
9886                 skip "Not enough cached locks created!"
9887         fi
9888         log "LRU=$LRU_SIZE"
9889
9890         local SLEEP=30
9891
9892         # We know that lru resize allows one client to hold $LIMIT locks
9893         # for 10h. After that locks begin to be killed by client.
9894         local MAX_HRS=10
9895         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
9896         log "LIMIT=$LIMIT"
9897         if [ $LIMIT -lt $LRU_SIZE ]; then
9898                 skip "Limit is too small $LIMIT"
9899         fi
9900
9901         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
9902         # killing locks. Some time was spent for creating locks. This means
9903         # that up to the moment of sleep finish we must have killed some of
9904         # them (10-100 locks). This depends on how fast ther were created.
9905         # Many of them were touched in almost the same moment and thus will
9906         # be killed in groups.
9907         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
9908
9909         # Use $LRU_SIZE_B here to take into account real number of locks
9910         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
9911         local LRU_SIZE_B=$LRU_SIZE
9912         log "LVF=$LVF"
9913         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
9914         log "OLD_LVF=$OLD_LVF"
9915         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
9916
9917         # Let's make sure that we really have some margin. Client checks
9918         # cached locks every 10 sec.
9919         SLEEP=$((SLEEP+20))
9920         log "Sleep ${SLEEP} sec"
9921         local SEC=0
9922         while ((SEC<$SLEEP)); do
9923                 echo -n "..."
9924                 sleep 5
9925                 SEC=$((SEC+5))
9926                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
9927                 echo -n "$LRU_SIZE"
9928         done
9929         echo ""
9930         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
9931         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
9932
9933         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
9934                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
9935                 unlinkmany $DIR/$tdir/f $NR
9936                 return
9937         }
9938
9939         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
9940         log "unlink $NR files at $DIR/$tdir"
9941         unlinkmany $DIR/$tdir/f $NR
9942 }
9943 run_test 124a "lru resize ======================================="
9944
9945 get_max_pool_limit()
9946 {
9947         local limit=$($LCTL get_param \
9948                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
9949         local max=0
9950         for l in $limit; do
9951                 if [[ $l -gt $max ]]; then
9952                         max=$l
9953                 fi
9954         done
9955         echo $max
9956 }
9957
9958 test_124b() {
9959         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9960         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
9961                 skip_env "no lru resize on server"
9962
9963         LIMIT=$(get_max_pool_limit)
9964
9965         NR=$(($(default_lru_size)*20))
9966         if [[ $NR -gt $LIMIT ]]; then
9967                 log "Limit lock number by $LIMIT locks"
9968                 NR=$LIMIT
9969         fi
9970
9971         IFree=$(mdsrate_inodes_available)
9972         if [ $IFree -lt $NR ]; then
9973                 log "Limit lock number by $IFree inodes"
9974                 NR=$IFree
9975         fi
9976
9977         lru_resize_disable mdc
9978         test_mkdir -p $DIR/$tdir/disable_lru_resize
9979
9980         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
9981         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
9982         cancel_lru_locks mdc
9983         stime=`date +%s`
9984         PID=""
9985         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
9986         PID="$PID $!"
9987         sleep 2
9988         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
9989         PID="$PID $!"
9990         sleep 2
9991         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
9992         PID="$PID $!"
9993         wait $PID
9994         etime=`date +%s`
9995         nolruresize_delta=$((etime-stime))
9996         log "ls -la time: $nolruresize_delta seconds"
9997         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
9998         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
9999
10000         lru_resize_enable mdc
10001         test_mkdir -p $DIR/$tdir/enable_lru_resize
10002
10003         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
10004         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
10005         cancel_lru_locks mdc
10006         stime=`date +%s`
10007         PID=""
10008         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10009         PID="$PID $!"
10010         sleep 2
10011         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10012         PID="$PID $!"
10013         sleep 2
10014         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10015         PID="$PID $!"
10016         wait $PID
10017         etime=`date +%s`
10018         lruresize_delta=$((etime-stime))
10019         log "ls -la time: $lruresize_delta seconds"
10020         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
10021
10022         if [ $lruresize_delta -gt $nolruresize_delta ]; then
10023                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
10024         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
10025                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
10026         else
10027                 log "lru resize performs the same with no lru resize"
10028         fi
10029         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
10030 }
10031 run_test 124b "lru resize (performance test) ======================="
10032
10033 test_124c() {
10034         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10035         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
10036                 skip_env "no lru resize on server"
10037
10038         # cache ununsed locks on client
10039         local nr=100
10040         cancel_lru_locks mdc
10041         test_mkdir $DIR/$tdir
10042         createmany -o $DIR/$tdir/f $nr ||
10043                 error "failed to create $nr files in $DIR/$tdir"
10044         ls -l $DIR/$tdir > /dev/null
10045
10046         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
10047         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
10048         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
10049         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
10050         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
10051
10052         # set lru_max_age to 1 sec
10053         $LCTL set_param $nsdir.lru_max_age=1000 # milliseconds
10054         echo "sleep $((recalc_p * 2)) seconds..."
10055         sleep $((recalc_p * 2))
10056
10057         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
10058         # restore lru_max_age
10059         $LCTL set_param -n $nsdir.lru_max_age $max_age
10060         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
10061         unlinkmany $DIR/$tdir/f $nr
10062 }
10063 run_test 124c "LRUR cancel very aged locks"
10064
10065 test_125() { # 13358
10066         $LCTL get_param -n llite.*.client_type | grep -q local ||
10067                 skip "must run as local client"
10068         $LCTL get_param -n mdc.*-mdc-*.connect_flags | grep -q acl ||
10069                 skip_env "must have acl enabled"
10070         [ -z "$(which setfacl)" ] && skip_env "must have setfacl tool"
10071
10072         test_mkdir $DIR/$tdir
10073         $LFS setstripe -S 65536 -c -1 $DIR/$tdir || error "setstripe failed"
10074         setfacl -R -m u:bin:rwx $DIR/$tdir || error "setfacl $DIR/$tdir failed"
10075         ls -ld $DIR/$tdir || error "cannot access $DIR/$tdir"
10076 }
10077 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
10078
10079 test_126() { # bug 12829/13455
10080         $GSS && skip_env "must run as gss disabled"
10081         $LCTL get_param -n llite.*.client_type | grep -q local ||
10082                 skip "must run as local client"
10083         [ "$UID" != 0 ] && skip "must run as root, not UID $UID"
10084
10085         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
10086         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
10087         rm -f $DIR/$tfile
10088         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
10089 }
10090 run_test 126 "check that the fsgid provided by the client is taken into account"
10091
10092 test_127a() { # bug 15521
10093         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10094
10095         $LFS setstripe -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
10096         $LCTL set_param osc.*.stats=0
10097         FSIZE=$((2048 * 1024))
10098         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
10099         cancel_lru_locks osc
10100         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
10101
10102         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
10103         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
10104                 echo "got $COUNT $NAME"
10105                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
10106                 eval $NAME=$COUNT || error "Wrong proc format"
10107
10108                 case $NAME in
10109                         read_bytes|write_bytes)
10110                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
10111                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
10112                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
10113                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
10114                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
10115                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
10116                                 error "sumsquare is too small: $SUMSQ"
10117                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
10118                                 error "sumsquare is too big: $SUMSQ"
10119                         ;;
10120                         *) ;;
10121                 esac
10122         done < $DIR/${tfile}.tmp
10123
10124         #check that we actually got some stats
10125         [ "$read_bytes" ] || error "Missing read_bytes stats"
10126         [ "$write_bytes" ] || error "Missing write_bytes stats"
10127         [ "$read_bytes" != 0 ] || error "no read done"
10128         [ "$write_bytes" != 0 ] || error "no write done"
10129 }
10130 run_test 127a "verify the client stats are sane"
10131
10132 test_127b() { # bug LU-333
10133         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10134         local name count samp unit min max sum sumsq
10135
10136         $LCTL set_param llite.*.stats=0
10137
10138         # perform 2 reads and writes so MAX is different from SUM.
10139         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1
10140         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1
10141         cancel_lru_locks osc
10142         dd if=$DIR/$tfile of=/dev/null bs=$PAGE_SIZE count=1
10143         dd if=$DIR/$tfile of=/dev/null bs=$PAGE_SIZE count=1
10144
10145         $LCTL get_param llite.*.stats | grep samples > $TMP/$tfile.tmp
10146         while read name count samp unit min max sum sumsq; do
10147                 echo "got $count $name"
10148                 eval $name=$count || error "Wrong proc format"
10149
10150                 case $name in
10151                 read_bytes)
10152                         [ $count -ne 2 ] && error "count is not 2: $count"
10153                         [ $min -ne $PAGE_SIZE ] &&
10154                                 error "min is not $PAGE_SIZE: $min"
10155                         [ $max -ne $PAGE_SIZE ] &&
10156                                 error "max is incorrect: $max"
10157                         [ $sum -ne $((PAGE_SIZE * 2)) ] &&
10158                                 error "sum is wrong: $sum"
10159                         ;;
10160                 write_bytes)
10161                         [ $count -ne 2 ] && error "count is not 2: $count"
10162                         [ $min -ne $PAGE_SIZE ] &&
10163                                 error "min is not $PAGE_SIZE: $min"
10164                         [ $max -ne $PAGE_SIZE ] &&
10165                                 error "max is incorrect: $max"
10166                         [ $sum -ne $((PAGE_SIZE * 2)) ] &&
10167                                 error "sum is wrong: $sum"
10168                         ;;
10169                 *) ;;
10170                 esac
10171         done < $TMP/$tfile.tmp
10172
10173         #check that we actually got some stats
10174         [ "$read_bytes" ] || error "Missing read_bytes stats"
10175         [ "$write_bytes" ] || error "Missing write_bytes stats"
10176         [ "$read_bytes" != 0 ] || error "no read done"
10177         [ "$write_bytes" != 0 ] || error "no write done"
10178
10179         rm -f $TMP/${tfile}.tmp
10180 }
10181 run_test 127b "verify the llite client stats are sane"
10182
10183 test_128() { # bug 15212
10184         touch $DIR/$tfile
10185         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
10186                 find $DIR/$tfile
10187                 find $DIR/$tfile
10188         EOF
10189
10190         result=$(grep error $TMP/$tfile.log)
10191         rm -f $DIR/$tfile $TMP/$tfile.log
10192         [ -z "$result" ] ||
10193                 error "consecutive find's under interactive lfs failed"
10194 }
10195 run_test 128 "interactive lfs for 2 consecutive find's"
10196
10197 set_dir_limits () {
10198         local mntdev
10199         local canondev
10200         local node
10201
10202         local ldproc=/proc/fs/ldiskfs
10203         local facets=$(get_facets MDS)
10204
10205         for facet in ${facets//,/ }; do
10206                 canondev=$(ldiskfs_canon \
10207                            *.$(convert_facet2label $facet).mntdev $facet)
10208                 do_facet $facet "test -e $ldproc/$canondev/max_dir_size" ||
10209                         ldproc=/sys/fs/ldiskfs
10210                 do_facet $facet "echo $1 >$ldproc/$canondev/max_dir_size"
10211                 do_facet $facet "echo $2 >$ldproc/$canondev/warning_dir_size"
10212         done
10213 }
10214
10215 check_mds_dmesg() {
10216         local facets=$(get_facets MDS)
10217         for facet in ${facets//,/ }; do
10218                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
10219         done
10220         return 1
10221 }
10222
10223 test_129() {
10224         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10225         [[ $MDS1_VERSION -ge $(version_code 2.5.56) ]] ||
10226                 skip "Need MDS version with at least 2.5.56"
10227         if [ "$mds1_FSTYPE" != ldiskfs ]; then
10228                 skip_env "ldiskfs only test"
10229         fi
10230         remote_mds_nodsh && skip "remote MDS with nodsh"
10231
10232         local ENOSPC=28
10233         local EFBIG=27
10234         local has_warning=false
10235
10236         rm -rf $DIR/$tdir
10237         mkdir -p $DIR/$tdir
10238
10239         # block size of mds1
10240         local maxsize=$(($($LCTL get_param -n mdc.*MDT0000*.blocksize) * 5))
10241         set_dir_limits $maxsize $maxsize
10242         local dirsize=$(stat -c%s "$DIR/$tdir")
10243         local nfiles=0
10244         while [[ $dirsize -le $maxsize ]]; do
10245                 $MULTIOP $DIR/$tdir/file_base_$nfiles Oc
10246                 rc=$?
10247                 if ! $has_warning; then
10248                         check_mds_dmesg '"is approaching"' && has_warning=true
10249                 fi
10250                 # check two errors:
10251                 # ENOSPC for new ext4 max_dir_size (kernel commit df981d03ee)
10252                 # EFBIG for previous versions included in ldiskfs series
10253                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
10254                         set_dir_limits 0 0
10255                         echo "return code $rc received as expected"
10256
10257                         createmany -o $DIR/$tdir/file_extra_$nfiles. 5 ||
10258                                 error_exit "create failed w/o dir size limit"
10259
10260                         check_mds_dmesg '"has reached"' ||
10261                                 error_exit "reached message should be output"
10262
10263                         [ $has_warning = "false" ] &&
10264                                 error_exit "warning message should be output"
10265
10266                         dirsize=$(stat -c%s "$DIR/$tdir")
10267
10268                         [[ $dirsize -ge $maxsize ]] && return 0
10269                         error_exit "current dir size $dirsize, " \
10270                                    "previous limit $maxsize"
10271                 elif [ $rc -ne 0 ]; then
10272                         set_dir_limits 0 0
10273                         error_exit "return $rc received instead of expected " \
10274                                    "$EFBIG or $ENOSPC, files in dir $dirsize"
10275                 fi
10276                 nfiles=$((nfiles + 1))
10277                 dirsize=$(stat -c%s "$DIR/$tdir")
10278         done
10279
10280         set_dir_limits 0 0
10281         error "exceeded dir size limit $maxsize($MDSCOUNT) : $dirsize bytes"
10282 }
10283 run_test 129 "test directory size limit ========================"
10284
10285 OLDIFS="$IFS"
10286 cleanup_130() {
10287         trap 0
10288         IFS="$OLDIFS"
10289 }
10290
10291 test_130a() {
10292         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10293         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10294
10295         trap cleanup_130 EXIT RETURN
10296
10297         local fm_file=$DIR/$tfile
10298         $LFS setstripe -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
10299         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
10300                 error "dd failed for $fm_file"
10301
10302         # LU-1795: test filefrag/FIEMAP once, even if unsupported
10303         filefrag -ves $fm_file
10304         RC=$?
10305         [ "$(facet_fstype ost$(($($LFS getstripe -i $fm_file) + 1)))" = "zfs" ] &&
10306                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10307         [ $RC != 0 ] && error "filefrag $fm_file failed"
10308
10309         filefrag_op=$(filefrag -ve -k $fm_file |
10310                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10311         lun=$($LFS getstripe -i $fm_file)
10312
10313         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
10314         IFS=$'\n'
10315         tot_len=0
10316         for line in $filefrag_op
10317         do
10318                 frag_lun=`echo $line | cut -d: -f5`
10319                 ext_len=`echo $line | cut -d: -f4`
10320                 if (( $frag_lun != $lun )); then
10321                         cleanup_130
10322                         error "FIEMAP on 1-stripe file($fm_file) failed"
10323                         return
10324                 fi
10325                 (( tot_len += ext_len ))
10326         done
10327
10328         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
10329                 cleanup_130
10330                 error "FIEMAP on 1-stripe file($fm_file) failed;"
10331                 return
10332         fi
10333
10334         cleanup_130
10335
10336         echo "FIEMAP on single striped file succeeded"
10337 }
10338 run_test 130a "FIEMAP (1-stripe file)"
10339
10340 test_130b() {
10341         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >= 2 OSTs"
10342
10343         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10344         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10345
10346         trap cleanup_130 EXIT RETURN
10347
10348         local fm_file=$DIR/$tfile
10349         $LFS setstripe -S 65536 -c $OSTCOUNT $fm_file ||
10350                         error "setstripe on $fm_file"
10351         [ "$(facet_fstype ost$(($($LFS getstripe -i $fm_file) + 1)))" = "zfs" ] &&
10352                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10353
10354         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
10355                 error "dd failed on $fm_file"
10356
10357         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10358         filefrag_op=$(filefrag -ve -k $fm_file |
10359                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10360
10361         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10362                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10363
10364         IFS=$'\n'
10365         tot_len=0
10366         num_luns=1
10367         for line in $filefrag_op
10368         do
10369                 frag_lun=$(echo $line | cut -d: -f5 |
10370                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10371                 ext_len=$(echo $line | cut -d: -f4)
10372                 if (( $frag_lun != $last_lun )); then
10373                         if (( tot_len != 1024 )); then
10374                                 cleanup_130
10375                                 error "FIEMAP on $fm_file failed; returned " \
10376                                 "len $tot_len for OST $last_lun instead of 1024"
10377                                 return
10378                         else
10379                                 (( num_luns += 1 ))
10380                                 tot_len=0
10381                         fi
10382                 fi
10383                 (( tot_len += ext_len ))
10384                 last_lun=$frag_lun
10385         done
10386         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
10387                 cleanup_130
10388                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10389                         "luns or wrong len for OST $last_lun"
10390                 return
10391         fi
10392
10393         cleanup_130
10394
10395         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
10396 }
10397 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
10398
10399 test_130c() {
10400         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
10401
10402         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10403         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10404
10405         trap cleanup_130 EXIT RETURN
10406
10407         local fm_file=$DIR/$tfile
10408         $LFS setstripe -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
10409         [ "$(facet_fstype ost$(($($LFS getstripe -i $fm_file) + 1)))" = "zfs" ] &&
10410                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10411
10412         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
10413                         error "dd failed on $fm_file"
10414
10415         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10416         filefrag_op=$(filefrag -ve -k $fm_file |
10417                 sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10418
10419         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10420                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10421
10422         IFS=$'\n'
10423         tot_len=0
10424         num_luns=1
10425         for line in $filefrag_op
10426         do
10427                 frag_lun=$(echo $line | cut -d: -f5 |
10428                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10429                 ext_len=$(echo $line | cut -d: -f4)
10430                 if (( $frag_lun != $last_lun )); then
10431                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
10432                         if (( logical != 512 )); then
10433                                 cleanup_130
10434                                 error "FIEMAP on $fm_file failed; returned " \
10435                                 "logical start for lun $logical instead of 512"
10436                                 return
10437                         fi
10438                         if (( tot_len != 512 )); then
10439                                 cleanup_130
10440                                 error "FIEMAP on $fm_file failed; returned " \
10441                                 "len $tot_len for OST $last_lun instead of 1024"
10442                                 return
10443                         else
10444                                 (( num_luns += 1 ))
10445                                 tot_len=0
10446                         fi
10447                 fi
10448                 (( tot_len += ext_len ))
10449                 last_lun=$frag_lun
10450         done
10451         if (( num_luns != 2 || tot_len != 512 )); then
10452                 cleanup_130
10453                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10454                         "luns or wrong len for OST $last_lun"
10455                 return
10456         fi
10457
10458         cleanup_130
10459
10460         echo "FIEMAP on 2-stripe file with hole succeeded"
10461 }
10462 run_test 130c "FIEMAP (2-stripe file with hole)"
10463
10464 test_130d() {
10465         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
10466
10467         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10468         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10469
10470         trap cleanup_130 EXIT RETURN
10471
10472         local fm_file=$DIR/$tfile
10473         $LFS setstripe -S 65536 -c $OSTCOUNT $fm_file ||
10474                         error "setstripe on $fm_file"
10475         [ "$(facet_fstype ost$(($($LFS getstripe -i $fm_file) + 1)))" = "zfs" ] &&
10476                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10477
10478         local actual_stripe_count=$($LFS getstripe -c $fm_file)
10479         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripe_count ||
10480                 error "dd failed on $fm_file"
10481
10482         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10483         filefrag_op=$(filefrag -ve -k $fm_file |
10484                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10485
10486         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10487                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10488
10489         IFS=$'\n'
10490         tot_len=0
10491         num_luns=1
10492         for line in $filefrag_op
10493         do
10494                 frag_lun=$(echo $line | cut -d: -f5 |
10495                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10496                 ext_len=$(echo $line | cut -d: -f4)
10497                 if (( $frag_lun != $last_lun )); then
10498                         if (( tot_len != 1024 )); then
10499                                 cleanup_130
10500                                 error "FIEMAP on $fm_file failed; returned " \
10501                                 "len $tot_len for OST $last_lun instead of 1024"
10502                                 return
10503                         else
10504                                 (( num_luns += 1 ))
10505                                 tot_len=0
10506                         fi
10507                 fi
10508                 (( tot_len += ext_len ))
10509                 last_lun=$frag_lun
10510         done
10511         if (( num_luns != actual_stripe_count || tot_len != 1024 )); then
10512                 cleanup_130
10513                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10514                         "luns or wrong len for OST $last_lun"
10515                 return
10516         fi
10517
10518         cleanup_130
10519
10520         echo "FIEMAP on N-stripe file succeeded"
10521 }
10522 run_test 130d "FIEMAP (N-stripe file)"
10523
10524 test_130e() {
10525         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
10526
10527         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10528         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10529
10530         trap cleanup_130 EXIT RETURN
10531
10532         local fm_file=$DIR/$tfile
10533         $LFS setstripe -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
10534         [ "$(facet_fstype ost$(($($LFS getstripe -i $fm_file) + 1)))" = "zfs" ] &&
10535                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10536
10537         NUM_BLKS=512
10538         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
10539         for ((i = 0; i < $NUM_BLKS; i++))
10540         do
10541                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
10542         done
10543
10544         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10545         filefrag_op=$(filefrag -ve -k $fm_file |
10546                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10547
10548         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10549                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10550
10551         IFS=$'\n'
10552         tot_len=0
10553         num_luns=1
10554         for line in $filefrag_op
10555         do
10556                 frag_lun=$(echo $line | cut -d: -f5 |
10557                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10558                 ext_len=$(echo $line | cut -d: -f4)
10559                 if (( $frag_lun != $last_lun )); then
10560                         if (( tot_len != $EXPECTED_LEN )); then
10561                                 cleanup_130
10562                                 error "FIEMAP on $fm_file failed; returned " \
10563                                 "len $tot_len for OST $last_lun instead " \
10564                                 "of $EXPECTED_LEN"
10565                                 return
10566                         else
10567                                 (( num_luns += 1 ))
10568                                 tot_len=0
10569                         fi
10570                 fi
10571                 (( tot_len += ext_len ))
10572                 last_lun=$frag_lun
10573         done
10574         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
10575                 cleanup_130
10576                 error "FIEMAP on $fm_file failed; returned wrong number " \
10577                         "of luns or wrong len for OST $last_lun"
10578                 return
10579         fi
10580
10581         cleanup_130
10582
10583         echo "FIEMAP with continuation calls succeeded"
10584 }
10585 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
10586
10587 test_130f() {
10588         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10589         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10590
10591         local fm_file=$DIR/$tfile
10592         $MULTIOP $fm_file oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T33554432c ||
10593                 error "multiop create with lov_delay_create on $fm_file"
10594
10595         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10596         filefrag_extents=$(filefrag -vek $fm_file |
10597                            awk '/extents? found/ { print $2 }')
10598         if [[ "$filefrag_extents" != "0" ]]; then
10599                 error "FIEMAP on $fm_file failed; " \
10600                       "returned $filefrag_extents expected 0"
10601         fi
10602
10603         rm -f $fm_file
10604 }
10605 run_test 130f "FIEMAP (unstriped file)"
10606
10607 # Test for writev/readv
10608 test_131a() {
10609         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 ||
10610                 error "writev test failed"
10611         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 ||
10612                 error "readv failed"
10613         rm -f $DIR/$tfile
10614 }
10615 run_test 131a "test iov's crossing stripe boundary for writev/readv"
10616
10617 test_131b() {
10618         local fsize=$((524288 + 1048576 + 1572864))
10619         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 &&
10620                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
10621                         error "append writev test failed"
10622
10623         ((fsize += 1572864 + 1048576))
10624         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 &&
10625                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
10626                         error "append writev test failed"
10627         rm -f $DIR/$tfile
10628 }
10629 run_test 131b "test append writev"
10630
10631 test_131c() {
10632         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
10633         error "NOT PASS"
10634 }
10635 run_test 131c "test read/write on file w/o objects"
10636
10637 test_131d() {
10638         rwv -f $DIR/$tfile -w -n 1 1572864
10639         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
10640         if [ "$NOB" != 1572864 ]; then
10641                 error "Short read filed: read $NOB bytes instead of 1572864"
10642         fi
10643         rm -f $DIR/$tfile
10644 }
10645 run_test 131d "test short read"
10646
10647 test_131e() {
10648         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
10649         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
10650         error "read hitting hole failed"
10651         rm -f $DIR/$tfile
10652 }
10653 run_test 131e "test read hitting hole"
10654
10655 check_stats() {
10656         local facet=$1
10657         local op=$2
10658         local want=${3:-0}
10659         local res
10660
10661         case $facet in
10662         mds*) res=$(do_facet $facet \
10663                    $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$op")
10664                  ;;
10665         ost*) res=$(do_facet $facet \
10666                    $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$op")
10667                  ;;
10668         *) error "Wrong facet '$facet'" ;;
10669         esac
10670         [ "$res" ] || error "The counter for $op on $facet was not incremented"
10671         # if the argument $3 is zero, it means any stat increment is ok.
10672         if [[ $want -gt 0 ]]; then
10673                 local count=$(echo $res | awk '{ print $2 }')
10674                 [[ $count -ne $want ]] &&
10675                         error "The $op counter on $facet is $count, not $want"
10676         fi
10677 }
10678
10679 test_133a() {
10680         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10681         remote_ost_nodsh && skip "remote OST with nodsh"
10682         remote_mds_nodsh && skip "remote MDS with nodsh"
10683         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
10684                 skip_env "MDS doesn't support rename stats"
10685
10686         local testdir=$DIR/${tdir}/stats_testdir
10687
10688         mkdir -p $DIR/${tdir}
10689
10690         # clear stats.
10691         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10692         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10693
10694         # verify mdt stats first.
10695         mkdir ${testdir} || error "mkdir failed"
10696         check_stats $SINGLEMDS "mkdir" 1
10697         touch ${testdir}/${tfile} || error "touch failed"
10698         check_stats $SINGLEMDS "open" 1
10699         check_stats $SINGLEMDS "close" 1
10700         [ $MDS1_VERSION -ge $(version_code 2.8.54) ] && {
10701                 mknod ${testdir}/${tfile}-pipe p || error "mknod failed"
10702                 check_stats $SINGLEMDS "mknod" 2
10703         }
10704         rm -f ${testdir}/${tfile}-pipe || error "pipe remove failed"
10705         check_stats $SINGLEMDS "unlink" 1
10706         rm -f ${testdir}/${tfile} || error "file remove failed"
10707         check_stats $SINGLEMDS "unlink" 2
10708
10709         # remove working dir and check mdt stats again.
10710         rmdir ${testdir} || error "rmdir failed"
10711         check_stats $SINGLEMDS "rmdir" 1
10712
10713         local testdir1=$DIR/${tdir}/stats_testdir1
10714         mkdir -p ${testdir}
10715         mkdir -p ${testdir1}
10716         touch ${testdir1}/test1
10717         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
10718         check_stats $SINGLEMDS "crossdir_rename" 1
10719
10720         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
10721         check_stats $SINGLEMDS "samedir_rename" 1
10722
10723         rm -rf $DIR/${tdir}
10724 }
10725 run_test 133a "Verifying MDT stats ========================================"
10726
10727 test_133b() {
10728         local res
10729
10730         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10731         remote_ost_nodsh && skip "remote OST with nodsh"
10732         remote_mds_nodsh && skip "remote MDS with nodsh"
10733
10734         local testdir=$DIR/${tdir}/stats_testdir
10735
10736         mkdir -p ${testdir} || error "mkdir failed"
10737         touch ${testdir}/${tfile} || error "touch failed"
10738         cancel_lru_locks mdc
10739
10740         # clear stats.
10741         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10742         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10743
10744         # extra mdt stats verification.
10745         chmod 444 ${testdir}/${tfile} || error "chmod failed"
10746         check_stats $SINGLEMDS "setattr" 1
10747         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10748         if [ $MDS1_VERSION -ne $(version_code 2.2.0) ]
10749         then            # LU-1740
10750                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
10751                 check_stats $SINGLEMDS "getattr" 1
10752         fi
10753         rm -rf $DIR/${tdir}
10754
10755         # when DNE is enabled, MDT uses STATFS RPC to ping other targets
10756         # so the check below is not reliable
10757         [ $MDSCOUNT -eq 1 ] || return 0
10758
10759         # Sleep to avoid a cached response.
10760         #define OBD_STATFS_CACHE_SECONDS 1
10761         sleep 2
10762         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10763         do_facet ost1 $LCTL set_param obdfilter.*.exports.*.stats=clear
10764         $LFS df || error "lfs failed"
10765         check_stats $SINGLEMDS "statfs" 1
10766
10767         # check aggregated statfs (LU-10018)
10768         [ $MDS1_VERSION -lt $(version_code 2.11.54) ] &&
10769                 return 0
10770         [ $CLIENT_VERSION -lt $(version_code 2.11.54) ] &&
10771                 return 0
10772         sleep 2
10773         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10774         do_facet ost1 $LCTL set_param obdfilter.*.exports.*.stats=clear
10775         df $DIR
10776         check_stats $SINGLEMDS "statfs" 1
10777
10778         # We want to check that the client didn't send OST_STATFS to
10779         # ost1 but the MDT also uses OST_STATFS for precreate. So some
10780         # extra care is needed here.
10781         if remote_mds; then
10782                 local nid=$($LCTL list_nids | head -1 | sed  "s/\./\\\./g")
10783                 local param="obdfilter.$FSNAME-OST0000.exports.'$nid'.stats"
10784
10785                 res=$(do_facet ost1 $LCTL get_param $param | grep statfs)
10786                 [ "$res" ] && error "OST got STATFS"
10787         fi
10788
10789         return 0
10790 }
10791 run_test 133b "Verifying extra MDT stats =================================="
10792
10793 test_133c() {
10794         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10795         remote_ost_nodsh && skip "remote OST with nodsh"
10796         remote_mds_nodsh && skip "remote MDS with nodsh"
10797
10798         local testdir=$DIR/$tdir/stats_testdir
10799
10800         test_mkdir -p $testdir
10801
10802         # verify obdfilter stats.
10803         $LFS setstripe -c 1 -i 0 $testdir/$tfile
10804         sync
10805         cancel_lru_locks osc
10806         wait_delete_completed
10807
10808         # clear stats.
10809         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10810         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10811
10812         dd if=/dev/zero of=$testdir/$tfile conv=notrunc bs=512k count=1 ||
10813                 error "dd failed"
10814         sync
10815         cancel_lru_locks osc
10816         check_stats ost1 "write" 1
10817
10818         dd if=$testdir/$tfile of=/dev/null bs=1k count=1 || error "dd failed"
10819         check_stats ost1 "read" 1
10820
10821         > $testdir/$tfile || error "truncate failed"
10822         check_stats ost1 "punch" 1
10823
10824         rm -f $testdir/$tfile || error "file remove failed"
10825         wait_delete_completed
10826         check_stats ost1 "destroy" 1
10827
10828         rm -rf $DIR/$tdir
10829 }
10830 run_test 133c "Verifying OST stats ========================================"
10831
10832 order_2() {
10833         local value=$1
10834         local orig=$value
10835         local order=1
10836
10837         while [ $value -ge 2 ]; do
10838                 order=$((order*2))
10839                 value=$((value/2))
10840         done
10841
10842         if [ $orig -gt $order ]; then
10843                 order=$((order*2))
10844         fi
10845         echo $order
10846 }
10847
10848 size_in_KMGT() {
10849     local value=$1
10850     local size=('K' 'M' 'G' 'T');
10851     local i=0
10852     local size_string=$value
10853
10854     while [ $value -ge 1024 ]; do
10855         if [ $i -gt 3 ]; then
10856             #T is the biggest unit we get here, if that is bigger,
10857             #just return XXXT
10858             size_string=${value}T
10859             break
10860         fi
10861         value=$((value >> 10))
10862         if [ $value -lt 1024 ]; then
10863             size_string=${value}${size[$i]}
10864             break
10865         fi
10866         i=$((i + 1))
10867     done
10868
10869     echo $size_string
10870 }
10871
10872 get_rename_size() {
10873         local size=$1
10874         local context=${2:-.}
10875         local sample=$(do_facet $SINGLEMDS $LCTL \
10876                 get_param mdt.$FSNAME-MDT0000.rename_stats |
10877                 grep -A1 $context |
10878                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
10879         echo $sample
10880 }
10881
10882 test_133d() {
10883         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10884         remote_ost_nodsh && skip "remote OST with nodsh"
10885         remote_mds_nodsh && skip "remote MDS with nodsh"
10886         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
10887                 skip_env "MDS doesn't support rename stats"
10888
10889         local testdir1=$DIR/${tdir}/stats_testdir1
10890         local testdir2=$DIR/${tdir}/stats_testdir2
10891         mkdir -p $DIR/${tdir}
10892
10893         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
10894
10895         lfs mkdir -i 0 -c 1 ${testdir1} || error "mkdir failed"
10896         lfs mkdir -i 0 -c 1 ${testdir2} || error "mkdir failed"
10897
10898         createmany -o $testdir1/test 512 || error "createmany failed"
10899
10900         # check samedir rename size
10901         mv ${testdir1}/test0 ${testdir1}/test_0
10902
10903         local testdir1_size=$(ls -l $DIR/${tdir} |
10904                 awk '/stats_testdir1/ {print $5}')
10905         local testdir2_size=$(ls -l $DIR/${tdir} |
10906                 awk '/stats_testdir2/ {print $5}')
10907
10908         testdir1_size=$(order_2 $testdir1_size)
10909         testdir2_size=$(order_2 $testdir2_size)
10910
10911         testdir1_size=$(size_in_KMGT $testdir1_size)
10912         testdir2_size=$(size_in_KMGT $testdir2_size)
10913
10914         echo "source rename dir size: ${testdir1_size}"
10915         echo "target rename dir size: ${testdir2_size}"
10916
10917         local cmd="do_facet $SINGLEMDS $LCTL "
10918         cmd+="get_param mdt.$FSNAME-MDT0000.rename_stats"
10919
10920         eval $cmd || error "$cmd failed"
10921         local samedir=$($cmd | grep 'same_dir')
10922         local same_sample=$(get_rename_size $testdir1_size)
10923         [ -z "$samedir" ] && error "samedir_rename_size count error"
10924         [[ $same_sample -eq 1 ]] ||
10925                 error "samedir_rename_size error $same_sample"
10926         echo "Check same dir rename stats success"
10927
10928         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
10929
10930         # check crossdir rename size
10931         mv ${testdir1}/test_0 ${testdir2}/test_0
10932
10933         testdir1_size=$(ls -l $DIR/${tdir} |
10934                 awk '/stats_testdir1/ {print $5}')
10935         testdir2_size=$(ls -l $DIR/${tdir} |
10936                 awk '/stats_testdir2/ {print $5}')
10937
10938         testdir1_size=$(order_2 $testdir1_size)
10939         testdir2_size=$(order_2 $testdir2_size)
10940
10941         testdir1_size=$(size_in_KMGT $testdir1_size)
10942         testdir2_size=$(size_in_KMGT $testdir2_size)
10943
10944         echo "source rename dir size: ${testdir1_size}"
10945         echo "target rename dir size: ${testdir2_size}"
10946
10947         eval $cmd || error "$cmd failed"
10948         local crossdir=$($cmd | grep 'crossdir')
10949         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
10950         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
10951         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
10952         [[ $src_sample -eq 1 ]] ||
10953                 error "crossdir_rename_size error $src_sample"
10954         [[ $tgt_sample -eq 1 ]] ||
10955                 error "crossdir_rename_size error $tgt_sample"
10956         echo "Check cross dir rename stats success"
10957         rm -rf $DIR/${tdir}
10958 }
10959 run_test 133d "Verifying rename_stats ========================================"
10960
10961 test_133e() {
10962         remote_mds_nodsh && skip "remote MDS with nodsh"
10963         remote_ost_nodsh && skip "remote OST with nodsh"
10964         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10965
10966         local testdir=$DIR/${tdir}/stats_testdir
10967         local ctr f0 f1 bs=32768 count=42 sum
10968
10969         mkdir -p ${testdir} || error "mkdir failed"
10970
10971         $LFS setstripe -c 1 -i 0 ${testdir}/${tfile}
10972
10973         for ctr in {write,read}_bytes; do
10974                 sync
10975                 cancel_lru_locks osc
10976
10977                 do_facet ost1 $LCTL set_param -n \
10978                         "obdfilter.*.exports.clear=clear"
10979
10980                 if [ $ctr = write_bytes ]; then
10981                         f0=/dev/zero
10982                         f1=${testdir}/${tfile}
10983                 else
10984                         f0=${testdir}/${tfile}
10985                         f1=/dev/null
10986                 fi
10987
10988                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
10989                         error "dd failed"
10990                 sync
10991                 cancel_lru_locks osc
10992
10993                 sum=$(do_facet ost1 $LCTL get_param \
10994                         "obdfilter.*.exports.*.stats" |
10995                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
10996                                 $1 == ctr { sum += $7 }
10997                                 END { printf("%0.0f", sum) }')
10998
10999                 if ((sum != bs * count)); then
11000                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
11001                 fi
11002         done
11003
11004         rm -rf $DIR/${tdir}
11005 }
11006 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
11007
11008 proc_regexp="/{proc,sys}/{fs,sys,kernel/debug}/{lustre,lnet}/"
11009
11010 # Some versions of find (4.5.11, 4.5.14) included in CentOS 7.3-7.5 do
11011 # not honor the -ignore_readdir_race option correctly. So we call
11012 # error_ignore() rather than error() in these cases. See LU-11152.
11013 error_133() {
11014         if (find --version; do_facet mds1 find --version) |
11015                 grep -q '\b4\.5\.1[1-4]\b'; then
11016                 error_ignore LU-11152 "$@"
11017         else
11018                 error "$@"
11019         fi
11020 }
11021
11022 test_133f() {
11023         # First without trusting modes.
11024         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
11025         echo "proc_dirs='$proc_dirs'"
11026         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
11027         find $proc_dirs -exec cat '{}' \; &> /dev/null
11028
11029         # Second verifying readability.
11030         $LCTL get_param -R '*' &> /dev/null
11031
11032         # Verifing writability with badarea_io.
11033         find $proc_dirs \
11034                 -ignore_readdir_race \
11035                 -type f \
11036                 -not -name force_lbug \
11037                 -not -name changelog_mask \
11038                 -exec badarea_io '{}' \; ||
11039                         error_133 "find $proc_dirs failed"
11040 }
11041 run_test 133f "Check reads/writes of client lustre proc files with bad area io"
11042
11043 test_133g() {
11044         remote_mds_nodsh && skip "remote MDS with nodsh"
11045         remote_ost_nodsh && skip "remote OST with nodsh"
11046
11047         # eventually, this can also be replaced with "lctl get_param -R",
11048         # but not until that option is always available on the server
11049         local facet
11050         for facet in mds1 ost1; do
11051                 [ $(lustre_version_code $facet) -le $(version_code 2.5.54) ] &&
11052                         skip_noexit "Too old lustre on $facet"
11053                 local facet_proc_dirs=$(do_facet $facet \
11054                                         \\\ls -d $proc_regexp 2>/dev/null)
11055                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
11056                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
11057                 do_facet $facet find $facet_proc_dirs \
11058                         ! -name req_history \
11059                         -exec cat '{}' \\\; &> /dev/null
11060
11061                 do_facet $facet find $facet_proc_dirs \
11062                         ! -name req_history \
11063                         -type f \
11064                         -exec cat '{}' \\\; &> /dev/null ||
11065                                 error "proc file read failed"
11066
11067                 do_facet $facet find $facet_proc_dirs \
11068                         -ignore_readdir_race \
11069                         -type f \
11070                         -not -name force_lbug \
11071                         -not -name changelog_mask \
11072                         -exec badarea_io '{}' \\\; ||
11073                                 error_133 "$facet find $facet_proc_dirs failed"
11074         done
11075
11076         # remount the FS in case writes/reads /proc break the FS
11077         cleanup || error "failed to unmount"
11078         setup || error "failed to setup"
11079         true
11080 }
11081 run_test 133g "Check reads/writes of server lustre proc files with bad area io"
11082
11083 test_133h() {
11084         remote_mds_nodsh && skip "remote MDS with nodsh"
11085         remote_ost_nodsh && skip "remote OST with nodsh"
11086         [[ $MDS1_VERSION -lt $(version_code 2.9.54) ]] &&
11087                 skip "Need MDS version at least 2.9.54"
11088
11089         local facet
11090
11091         for facet in client mds1 ost1; do
11092                 local facet_proc_dirs=$(do_facet $facet \
11093                                         \\\ls -d $proc_regexp 2> /dev/null)
11094                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
11095                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
11096                 # Get the list of files that are missing the terminating newline
11097                 local missing=($(do_facet $facet \
11098                         find ${facet_proc_dirs} -type f \|              \
11099                                 while read F\; do                       \
11100                                         awk -v FS='\v' -v RS='\v\v'     \
11101                                         "'END { if(NR>0 &&              \
11102                                         \\\$NF !~ /.*\\\n\$/)           \
11103                                                 print FILENAME}'"       \
11104                                         '\$F'\;                         \
11105                                 done 2>/dev/null))
11106                 [ ${#missing[*]} -eq 0 ] ||
11107                         error "files do not end with newline: ${missing[*]}"
11108         done
11109 }
11110 run_test 133h "Proc files should end with newlines"
11111
11112 test_134a() {
11113         remote_mds_nodsh && skip "remote MDS with nodsh"
11114         [[ $MDS1_VERSION -lt $(version_code 2.7.54) ]] &&
11115                 skip "Need MDS version at least 2.7.54"
11116
11117         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
11118         cancel_lru_locks mdc
11119
11120         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
11121         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
11122         [ $unused -eq 0 ] || error "$unused locks are not cleared"
11123
11124         local nr=1000
11125         createmany -o $DIR/$tdir/f $nr ||
11126                 error "failed to create $nr files in $DIR/$tdir"
11127         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
11128
11129         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
11130         do_facet mds1 $LCTL set_param fail_loc=0x327
11131         do_facet mds1 $LCTL set_param fail_val=500
11132         touch $DIR/$tdir/m
11133
11134         echo "sleep 10 seconds ..."
11135         sleep 10
11136         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
11137
11138         do_facet mds1 $LCTL set_param fail_loc=0
11139         do_facet mds1 $LCTL set_param fail_val=0
11140         [ $lck_cnt -lt $unused ] ||
11141                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
11142
11143         rm $DIR/$tdir/m
11144         unlinkmany $DIR/$tdir/f $nr
11145 }
11146 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
11147
11148 test_134b() {
11149         remote_mds_nodsh && skip "remote MDS with nodsh"
11150         [[ $MDS1_VERSION -lt $(version_code 2.7.54) ]] &&
11151                 skip "Need MDS version at least 2.7.54"
11152
11153         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
11154         cancel_lru_locks mdc
11155
11156         local low_wm=$(do_facet mds1 $LCTL get_param -n \
11157                         ldlm.lock_reclaim_threshold_mb)
11158         # disable reclaim temporarily
11159         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
11160
11161         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
11162         do_facet mds1 $LCTL set_param fail_loc=0x328
11163         do_facet mds1 $LCTL set_param fail_val=500
11164
11165         $LCTL set_param debug=+trace
11166
11167         local nr=600
11168         createmany -o $DIR/$tdir/f $nr &
11169         local create_pid=$!
11170
11171         echo "Sleep $TIMEOUT seconds ..."
11172         sleep $TIMEOUT
11173         if ! ps -p $create_pid  > /dev/null 2>&1; then
11174                 do_facet mds1 $LCTL set_param fail_loc=0
11175                 do_facet mds1 $LCTL set_param fail_val=0
11176                 do_facet mds1 $LCTL set_param \
11177                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
11178                 error "createmany finished incorrectly!"
11179         fi
11180         do_facet mds1 $LCTL set_param fail_loc=0
11181         do_facet mds1 $LCTL set_param fail_val=0
11182         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
11183         wait $create_pid || return 1
11184
11185         unlinkmany $DIR/$tdir/f $nr
11186 }
11187 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
11188
11189 test_140() { #bug-17379
11190         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11191
11192         test_mkdir $DIR/$tdir
11193         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
11194         cp $(which stat) . || error "Copying stat to $DIR/$tdir"
11195
11196         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
11197         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
11198         local i=0
11199         while i=$((i + 1)); do
11200                 test_mkdir $i
11201                 cd $i || error "Changing to $i"
11202                 ln -s ../stat stat || error "Creating stat symlink"
11203                 # Read the symlink until ELOOP present,
11204                 # not LBUGing the system is considered success,
11205                 # we didn't overrun the stack.
11206                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
11207                 if [ $ret -ne 0 ]; then
11208                         if [ $ret -eq 40 ]; then
11209                                 break  # -ELOOP
11210                         else
11211                                 error "Open stat symlink"
11212                                         return
11213                         fi
11214                 fi
11215         done
11216         i=$((i - 1))
11217         echo "The symlink depth = $i"
11218         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
11219                                         error "Invalid symlink depth"
11220
11221         # Test recursive symlink
11222         ln -s symlink_self symlink_self
11223         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
11224         echo "open symlink_self returns $ret"
11225         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
11226 }
11227 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
11228
11229 test_150() {
11230         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11231
11232         local TF="$TMP/$tfile"
11233
11234         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
11235         cp $TF $DIR/$tfile
11236         cancel_lru_locks $OSC
11237         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
11238         remount_client $MOUNT
11239         df -P $MOUNT
11240         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
11241
11242         $TRUNCATE $TF 6000
11243         $TRUNCATE $DIR/$tfile 6000
11244         cancel_lru_locks $OSC
11245         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
11246
11247         echo "12345" >>$TF
11248         echo "12345" >>$DIR/$tfile
11249         cancel_lru_locks $OSC
11250         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
11251
11252         echo "12345" >>$TF
11253         echo "12345" >>$DIR/$tfile
11254         cancel_lru_locks $OSC
11255         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
11256
11257         rm -f $TF
11258         true
11259 }
11260 run_test 150 "truncate/append tests"
11261
11262 #LU-2902 roc_hit was not able to read all values from lproc
11263 function roc_hit_init() {
11264         local list=$(comma_list $(osts_nodes))
11265         local dir=$DIR/$tdir-check
11266         local file=$dir/$tfile
11267         local BEFORE
11268         local AFTER
11269         local idx
11270
11271         test_mkdir $dir
11272         #use setstripe to do a write to every ost
11273         for i in $(seq 0 $((OSTCOUNT-1))); do
11274                 $LFS setstripe -c 1 -i $i $dir || error "$LFS setstripe $file failed"
11275                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
11276                 idx=$(printf %04x $i)
11277                 BEFORE=$(get_osd_param $list *OST*$idx stats |
11278                         awk '$1 == "cache_access" {sum += $7}
11279                                 END { printf("%0.0f", sum) }')
11280
11281                 cancel_lru_locks osc
11282                 cat $file >/dev/null
11283
11284                 AFTER=$(get_osd_param $list *OST*$idx stats |
11285                         awk '$1 == "cache_access" {sum += $7}
11286                                 END { printf("%0.0f", sum) }')
11287
11288                 echo BEFORE:$BEFORE AFTER:$AFTER
11289                 if ! let "AFTER - BEFORE == 4"; then
11290                         rm -rf $dir
11291                         error "roc_hit is not safe to use"
11292                 fi
11293                 rm $file
11294         done
11295
11296         rm -rf $dir
11297 }
11298
11299 function roc_hit() {
11300         local list=$(comma_list $(osts_nodes))
11301         echo $(get_osd_param $list '' stats |
11302                 awk '$1 == "cache_hit" {sum += $7}
11303                         END { printf("%0.0f", sum) }')
11304 }
11305
11306 function set_cache() {
11307         local on=1
11308
11309         if [ "$2" == "off" ]; then
11310                 on=0;
11311         fi
11312         local list=$(comma_list $(osts_nodes))
11313         set_osd_param $list '' $1_cache_enable $on
11314
11315         cancel_lru_locks osc
11316 }
11317
11318 test_151() {
11319         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11320         remote_ost_nodsh && skip "remote OST with nodsh"
11321
11322         local CPAGES=3
11323         local list=$(comma_list $(osts_nodes))
11324
11325         # check whether obdfilter is cache capable at all
11326         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
11327                 skip "not cache-capable obdfilter"
11328         fi
11329
11330         # check cache is enabled on all obdfilters
11331         if get_osd_param $list '' read_cache_enable | grep 0; then
11332                 skip "oss cache is disabled"
11333         fi
11334
11335         set_osd_param $list '' writethrough_cache_enable 1
11336
11337         # check write cache is enabled on all obdfilters
11338         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
11339                 skip "oss write cache is NOT enabled"
11340         fi
11341
11342         roc_hit_init
11343
11344         #define OBD_FAIL_OBD_NO_LRU  0x609
11345         do_nodes $list $LCTL set_param fail_loc=0x609
11346
11347         # pages should be in the case right after write
11348         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
11349                 error "dd failed"
11350
11351         local BEFORE=$(roc_hit)
11352         cancel_lru_locks osc
11353         cat $DIR/$tfile >/dev/null
11354         local AFTER=$(roc_hit)
11355
11356         do_nodes $list $LCTL set_param fail_loc=0
11357
11358         if ! let "AFTER - BEFORE == CPAGES"; then
11359                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11360         fi
11361
11362         # the following read invalidates the cache
11363         cancel_lru_locks osc
11364         set_osd_param $list '' read_cache_enable 0
11365         cat $DIR/$tfile >/dev/null
11366
11367         # now data shouldn't be found in the cache
11368         BEFORE=$(roc_hit)
11369         cancel_lru_locks osc
11370         cat $DIR/$tfile >/dev/null
11371         AFTER=$(roc_hit)
11372         if let "AFTER - BEFORE != 0"; then
11373                 error "IN CACHE: before: $BEFORE, after: $AFTER"
11374         fi
11375
11376         set_osd_param $list '' read_cache_enable 1
11377         rm -f $DIR/$tfile
11378 }
11379 run_test 151 "test cache on oss and controls ==============================="
11380
11381 test_152() {
11382         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11383
11384         local TF="$TMP/$tfile"
11385
11386         # simulate ENOMEM during write
11387 #define OBD_FAIL_OST_NOMEM      0x226
11388         lctl set_param fail_loc=0x80000226
11389         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
11390         cp $TF $DIR/$tfile
11391         sync || error "sync failed"
11392         lctl set_param fail_loc=0
11393
11394         # discard client's cache
11395         cancel_lru_locks osc
11396
11397         # simulate ENOMEM during read
11398         lctl set_param fail_loc=0x80000226
11399         cmp $TF $DIR/$tfile || error "cmp failed"
11400         lctl set_param fail_loc=0
11401
11402         rm -f $TF
11403 }
11404 run_test 152 "test read/write with enomem ============================"
11405
11406 test_153() {
11407         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
11408 }
11409 run_test 153 "test if fdatasync does not crash ======================="
11410
11411 dot_lustre_fid_permission_check() {
11412         local fid=$1
11413         local ffid=$MOUNT/.lustre/fid/$fid
11414         local test_dir=$2
11415
11416         echo "stat fid $fid"
11417         stat $ffid > /dev/null || error "stat $ffid failed."
11418         echo "touch fid $fid"
11419         touch $ffid || error "touch $ffid failed."
11420         echo "write to fid $fid"
11421         cat /etc/hosts > $ffid || error "write $ffid failed."
11422         echo "read fid $fid"
11423         diff /etc/hosts $ffid || error "read $ffid failed."
11424         echo "append write to fid $fid"
11425         cat /etc/hosts >> $ffid || error "append write $ffid failed."
11426         echo "rename fid $fid"
11427         mv $ffid $test_dir/$tfile.1 &&
11428                 error "rename $ffid to $tfile.1 should fail."
11429         touch $test_dir/$tfile.1
11430         mv $test_dir/$tfile.1 $ffid &&
11431                 error "rename $tfile.1 to $ffid should fail."
11432         rm -f $test_dir/$tfile.1
11433         echo "truncate fid $fid"
11434         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
11435         echo "link fid $fid"
11436         ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
11437         if [[ $($LCTL get_param -n mdc.*-mdc-*.connect_flags) =~ acl ]]; then
11438                 echo "setfacl fid $fid"
11439                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
11440                 echo "getfacl fid $fid"
11441                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
11442         fi
11443         echo "unlink fid $fid"
11444         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
11445         echo "mknod fid $fid"
11446         mknod $ffid c 1 3 && error "mknod $ffid should fail."
11447
11448         fid=[0xf00000400:0x1:0x0]
11449         ffid=$MOUNT/.lustre/fid/$fid
11450
11451         echo "stat non-exist fid $fid"
11452         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
11453         echo "write to non-exist fid $fid"
11454         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
11455         echo "link new fid $fid"
11456         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
11457
11458         mkdir -p $test_dir/$tdir
11459         touch $test_dir/$tdir/$tfile
11460         fid=$($LFS path2fid $test_dir/$tdir)
11461         rc=$?
11462         [ $rc -ne 0 ] &&
11463                 error "error: could not get fid for $test_dir/$dir/$tfile."
11464
11465         ffid=$MOUNT/.lustre/fid/$fid
11466
11467         echo "ls $fid"
11468         ls $ffid > /dev/null || error "ls $ffid failed."
11469         echo "touch $fid/$tfile.1"
11470         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
11471
11472         echo "touch $MOUNT/.lustre/fid/$tfile"
11473         touch $MOUNT/.lustre/fid/$tfile && \
11474                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
11475
11476         echo "setxattr to $MOUNT/.lustre/fid"
11477         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
11478
11479         echo "listxattr for $MOUNT/.lustre/fid"
11480         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
11481
11482         echo "delxattr from $MOUNT/.lustre/fid"
11483         setfattr -x trusted.name1 $MOUNT/.lustre/fid
11484
11485         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
11486         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
11487                 error "touch invalid fid should fail."
11488
11489         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
11490         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
11491                 error "touch non-normal fid should fail."
11492
11493         echo "rename $tdir to $MOUNT/.lustre/fid"
11494         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
11495                 error "rename to $MOUNT/.lustre/fid should fail."
11496
11497         if [ $MDS1_VERSION -ge $(version_code 2.3.51) ]
11498         then            # LU-3547
11499                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
11500                 local new_obf_mode=777
11501
11502                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
11503                 chmod $new_obf_mode $DIR/.lustre/fid ||
11504                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
11505
11506                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
11507                 [ $obf_mode -eq $new_obf_mode ] ||
11508                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
11509
11510                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
11511                 chmod $old_obf_mode $DIR/.lustre/fid ||
11512                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
11513         fi
11514
11515         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
11516         fid=$($LFS path2fid $test_dir/$tfile-2)
11517
11518         if [ $MDS1_VERSION -ge $(version_code 2.6.50) ]
11519         then # LU-5424
11520                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
11521                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
11522                         error "create lov data thru .lustre failed"
11523         fi
11524         echo "cp /etc/passwd $test_dir/$tfile-2"
11525         cp /etc/passwd $test_dir/$tfile-2 ||
11526                 error "copy to $test_dir/$tfile-2 failed."
11527         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
11528         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
11529                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
11530
11531         rm -rf $test_dir/tfile.lnk
11532         rm -rf $test_dir/$tfile-2
11533 }
11534
11535 test_154A() {
11536         [[ $MDS1_VERSION -lt $(version_code 2.4.1) ]] &&
11537                 skip "Need MDS version at least 2.4.1"
11538
11539         local tf=$DIR/$tfile
11540         touch $tf
11541
11542         local fid=$($LFS path2fid $tf)
11543         [ -z "$fid" ] && error "path2fid unable to get $tf FID"
11544
11545         # check that we get the same pathname back
11546         local found=$($LFS fid2path $MOUNT "$fid")
11547         [ -z "$found" ] && error "fid2path unable to get '$fid' path"
11548         [ "$found" == "$tf" ] ||
11549                 error "fid2path($fid=path2fid($tf)) = $found != $tf"
11550 }
11551 run_test 154A "lfs path2fid and fid2path basic checks"
11552
11553 test_154B() {
11554         [[ $MDS1_VERSION -lt $(version_code 2.4.1) ]] &&
11555                 skip "Need MDS version at least 2.4.1"
11556
11557         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
11558         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
11559         local linkea=$($LL_DECODE_LINKEA $DIR/$tdir/$tfile | grep 'pfid')
11560         [ -z "$linkea" ] && error "decode linkea $DIR/$tdir/$tfile failed"
11561
11562         local name=$(echo $linkea | awk '/pfid/ {print $5}' | sed -e "s/'//g")
11563         local PFID=$(echo $linkea | awk '/pfid/ {print $3}' | sed -e "s/,//g")
11564
11565         # check that we get the same pathname
11566         echo "PFID: $PFID, name: $name"
11567         local FOUND=$($LFS fid2path $MOUNT "$PFID")
11568         [ -z "$FOUND" ] && error "fid2path unable to get $PFID path"
11569         [ "$FOUND/$name" != "$DIR/$tdir/$tfile" ] &&
11570                 error "ll_decode_linkea has $FOUND/$name != $DIR/$tdir/$tfile"
11571
11572         rm -rf $DIR/$tdir || error "Can not delete directory $DIR/$tdir"
11573 }
11574 run_test 154B "verify the ll_decode_linkea tool"
11575
11576 test_154a() {
11577         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11578         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11579         [[ $MDS1_VERSION -ge $(version_code 2.2.51) ]] ||
11580                 skip "Need MDS version at least 2.2.51"
11581         [ -z "$(which setfacl)" ] && skip_env "must have setfacl tool"
11582
11583         cp /etc/hosts $DIR/$tfile
11584
11585         fid=$($LFS path2fid $DIR/$tfile)
11586         rc=$?
11587         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
11588
11589         dot_lustre_fid_permission_check "$fid" $DIR ||
11590                 error "dot lustre permission check $fid failed"
11591
11592         ls -a $MOUNT | grep "\.lustre" && error ".lustre should not be listed"
11593
11594         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
11595
11596         touch $MOUNT/.lustre/file &&
11597                 error "creation is not allowed under .lustre"
11598
11599         mkdir $MOUNT/.lustre/dir &&
11600                 error "mkdir is not allowed under .lustre"
11601
11602         rm -rf $DIR/$tfile
11603 }
11604 run_test 154a "Open-by-FID"
11605
11606 test_154b() {
11607         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11608         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11609         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
11610         [[ $MDS1_VERSION -ge $(version_code 2.2.51) ]] ||
11611                 skip "Need MDS version at least 2.2.51"
11612
11613         local remote_dir=$DIR/$tdir/remote_dir
11614         local MDTIDX=1
11615         local rc=0
11616
11617         mkdir -p $DIR/$tdir
11618         $LFS mkdir -i $MDTIDX $remote_dir ||
11619                 error "create remote directory failed"
11620
11621         cp /etc/hosts $remote_dir/$tfile
11622
11623         fid=$($LFS path2fid $remote_dir/$tfile)
11624         rc=$?
11625         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
11626
11627         dot_lustre_fid_permission_check "$fid" $remote_dir ||
11628                 error "dot lustre permission check $fid failed"
11629         rm -rf $DIR/$tdir
11630 }
11631 run_test 154b "Open-by-FID for remote directory"
11632
11633 test_154c() {
11634         [[ $MDS1_VERSION -lt $(version_code 2.4.1) ]] &&
11635                 skip "Need MDS version at least 2.4.1"
11636
11637         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
11638         local FID1=$($LFS path2fid $DIR/$tfile.1)
11639         local FID2=$($LFS path2fid $DIR/$tfile.2)
11640         local FID3=$($LFS path2fid $DIR/$tfile.3)
11641
11642         local N=1
11643         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
11644                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
11645                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
11646                 local want=FID$N
11647                 [ "$FID" = "${!want}" ] ||
11648                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
11649                 N=$((N + 1))
11650         done
11651
11652         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
11653         do
11654                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
11655                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
11656                 N=$((N + 1))
11657         done
11658 }
11659 run_test 154c "lfs path2fid and fid2path multiple arguments"
11660
11661 test_154d() {
11662         remote_mds_nodsh && skip "remote MDS with nodsh"
11663         [[ $MDS1_VERSION -lt $(version_code 2.5.53) ]] &&
11664                 skip "Need MDS version at least 2.5.53"
11665
11666         if remote_mds; then
11667                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
11668         else
11669                 nid="0@lo"
11670         fi
11671         local proc_ofile="mdt.*.exports.'$nid'.open_files"
11672         local fd
11673         local cmd
11674
11675         rm -f $DIR/$tfile
11676         touch $DIR/$tfile
11677
11678         local fid=$($LFS path2fid $DIR/$tfile)
11679         # Open the file
11680         fd=$(free_fd)
11681         cmd="exec $fd<$DIR/$tfile"
11682         eval $cmd
11683         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
11684         echo "$fid_list" | grep "$fid"
11685         rc=$?
11686
11687         cmd="exec $fd>/dev/null"
11688         eval $cmd
11689         if [ $rc -ne 0 ]; then
11690                 error "FID $fid not found in open files list $fid_list"
11691         fi
11692 }
11693 run_test 154d "Verify open file fid"
11694
11695 test_154e()
11696 {
11697         [[ $MDS1_VERSION -lt $(version_code 2.6.50) ]] &&
11698                 skip "Need MDS version at least 2.6.50"
11699
11700         if ls -a $MOUNT | grep -q '^\.lustre$'; then
11701                 error ".lustre returned by readdir"
11702         fi
11703 }
11704 run_test 154e ".lustre is not returned by readdir"
11705
11706 test_154f() {
11707         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11708
11709         # create parent directory on a single MDT to avoid cross-MDT hardlinks
11710         test_mkdir -p -c1 $DIR/$tdir/d
11711         # test dirs inherit from its stripe
11712         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
11713         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
11714         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
11715         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
11716         touch $DIR/f
11717
11718         # get fid of parents
11719         local FID0=$($LFS path2fid $DIR/$tdir/d)
11720         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
11721         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
11722         local FID3=$($LFS path2fid $DIR)
11723
11724         # check that path2fid --parents returns expected <parent_fid>/name
11725         # 1) test for a directory (single parent)
11726         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
11727         [ "$parent" == "$FID0/foo1" ] ||
11728                 error "expected parent: $FID0/foo1, got: $parent"
11729
11730         # 2) test for a file with nlink > 1 (multiple parents)
11731         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
11732         echo "$parent" | grep -F "$FID1/$tfile" ||
11733                 error "$FID1/$tfile not returned in parent list"
11734         echo "$parent" | grep -F "$FID2/link" ||
11735                 error "$FID2/link not returned in parent list"
11736
11737         # 3) get parent by fid
11738         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
11739         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11740         echo "$parent" | grep -F "$FID1/$tfile" ||
11741                 error "$FID1/$tfile not returned in parent list (by fid)"
11742         echo "$parent" | grep -F "$FID2/link" ||
11743                 error "$FID2/link not returned in parent list (by fid)"
11744
11745         # 4) test for entry in root directory
11746         parent=$($LFS path2fid --parents $DIR/f)
11747         echo "$parent" | grep -F "$FID3/f" ||
11748                 error "$FID3/f not returned in parent list"
11749
11750         # 5) test it on root directory
11751         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
11752                 error "$MOUNT should not have parents"
11753
11754         # enable xattr caching and check that linkea is correctly updated
11755         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
11756         save_lustre_params client "llite.*.xattr_cache" > $save
11757         lctl set_param llite.*.xattr_cache 1
11758
11759         # 6.1) linkea update on rename
11760         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
11761
11762         # get parents by fid
11763         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11764         # foo1 should no longer be returned in parent list
11765         echo "$parent" | grep -F "$FID1" &&
11766                 error "$FID1 should no longer be in parent list"
11767         # the new path should appear
11768         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
11769                 error "$FID2/$tfile.moved is not in parent list"
11770
11771         # 6.2) linkea update on unlink
11772         rm -f $DIR/$tdir/d/foo2/link
11773         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11774         # foo2/link should no longer be returned in parent list
11775         echo "$parent" | grep -F "$FID2/link" &&
11776                 error "$FID2/link should no longer be in parent list"
11777         true
11778
11779         rm -f $DIR/f
11780         restore_lustre_params < $save
11781         rm -f $save
11782 }
11783 run_test 154f "get parent fids by reading link ea"
11784
11785 test_154g()
11786 {
11787         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11788         [[ $MDS1_VERSION -ge $(version_code 2.6.92) &&
11789            $CLIENT_VERSION -gt $(version_code 2.6.99) ]] ||
11790                 skip "Need MDS version at least 2.6.92"
11791
11792         mkdir -p $DIR/$tdir
11793         llapi_fid_test -d $DIR/$tdir
11794 }
11795 run_test 154g "various llapi FID tests"
11796
11797 test_155_small_load() {
11798     local temp=$TMP/$tfile
11799     local file=$DIR/$tfile
11800
11801     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
11802         error "dd of=$temp bs=6096 count=1 failed"
11803     cp $temp $file
11804     cancel_lru_locks $OSC
11805     cmp $temp $file || error "$temp $file differ"
11806
11807     $TRUNCATE $temp 6000
11808     $TRUNCATE $file 6000
11809     cmp $temp $file || error "$temp $file differ (truncate1)"
11810
11811     echo "12345" >>$temp
11812     echo "12345" >>$file
11813     cmp $temp $file || error "$temp $file differ (append1)"
11814
11815     echo "12345" >>$temp
11816     echo "12345" >>$file
11817     cmp $temp $file || error "$temp $file differ (append2)"
11818
11819     rm -f $temp $file
11820     true
11821 }
11822
11823 test_155_big_load() {
11824         remote_ost_nodsh && skip "remote OST with nodsh"
11825
11826         local temp=$TMP/$tfile
11827         local file=$DIR/$tfile
11828
11829         free_min_max
11830         local cache_size=$(do_facet ost$((MAXI+1)) \
11831                 "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
11832         local large_file_size=$((cache_size * 2))
11833
11834         echo "OSS cache size: $cache_size KB"
11835         echo "Large file size: $large_file_size KB"
11836
11837         [ $MAXV -le $large_file_size ] &&
11838                 skip_env "max available OST size needs > $large_file_size KB"
11839
11840         $LFS setstripe $file -c 1 -i $MAXI || error "$LFS setstripe $file failed"
11841
11842         dd if=/dev/urandom of=$temp bs=$large_file_size count=1k ||
11843                 error "dd of=$temp bs=$large_file_size count=1k failed"
11844         cp $temp $file
11845         ls -lh $temp $file
11846         cancel_lru_locks osc
11847         cmp $temp $file || error "$temp $file differ"
11848
11849         rm -f $temp $file
11850         true
11851 }
11852
11853 save_writethrough() {
11854         local facets=$(get_facets OST)
11855
11856         save_lustre_params $facets "osd-*.*.writethrough_cache_enable" > $1
11857 }
11858
11859 test_155a() {
11860         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11861
11862         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11863
11864         save_writethrough $p
11865
11866         set_cache read on
11867         set_cache writethrough on
11868         test_155_small_load
11869         restore_lustre_params < $p
11870         rm -f $p
11871 }
11872 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
11873
11874 test_155b() {
11875         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11876
11877         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11878
11879         save_writethrough $p
11880
11881         set_cache read on
11882         set_cache writethrough off
11883         test_155_small_load
11884         restore_lustre_params < $p
11885         rm -f $p
11886 }
11887 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
11888
11889 test_155c() {
11890         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11891
11892         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11893
11894         save_writethrough $p
11895
11896         set_cache read off
11897         set_cache writethrough on
11898         test_155_small_load
11899         restore_lustre_params < $p
11900         rm -f $p
11901 }
11902 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
11903
11904 test_155d() {
11905         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11906
11907         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11908
11909         save_writethrough $p
11910
11911         set_cache read off
11912         set_cache writethrough off
11913         test_155_small_load
11914         restore_lustre_params < $p
11915         rm -f $p
11916 }
11917 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
11918
11919 test_155e() {
11920         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11921
11922         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11923
11924         save_writethrough $p
11925
11926         set_cache read on
11927         set_cache writethrough on
11928         test_155_big_load
11929         restore_lustre_params < $p
11930         rm -f $p
11931 }
11932 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
11933
11934 test_155f() {
11935         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11936
11937         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11938
11939         save_writethrough $p
11940
11941         set_cache read on
11942         set_cache writethrough off
11943         test_155_big_load
11944         restore_lustre_params < $p
11945         rm -f $p
11946 }
11947 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
11948
11949 test_155g() {
11950         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11951
11952         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11953
11954         save_writethrough $p
11955
11956         set_cache read off
11957         set_cache writethrough on
11958         test_155_big_load
11959         restore_lustre_params < $p
11960         rm -f $p
11961 }
11962 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
11963
11964 test_155h() {
11965         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11966
11967         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11968
11969         save_writethrough $p
11970
11971         set_cache read off
11972         set_cache writethrough off
11973         test_155_big_load
11974         restore_lustre_params < $p
11975         rm -f $p
11976 }
11977 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
11978
11979 test_156() {
11980         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11981         remote_ost_nodsh && skip "remote OST with nodsh"
11982         [ $OST1_VERSION -lt $(version_code 2.6.93) ] &&
11983                 skip "stats not implemented on old servers"
11984         [ "$ost1_FSTYPE" = "zfs" ] &&
11985                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS"
11986
11987         local CPAGES=3
11988         local BEFORE
11989         local AFTER
11990         local file="$DIR/$tfile"
11991         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11992
11993         save_writethrough $p
11994         roc_hit_init
11995
11996         log "Turn on read and write cache"
11997         set_cache read on
11998         set_cache writethrough on
11999
12000         log "Write data and read it back."
12001         log "Read should be satisfied from the cache."
12002         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12003         BEFORE=$(roc_hit)
12004         cancel_lru_locks osc
12005         cat $file >/dev/null
12006         AFTER=$(roc_hit)
12007         if ! let "AFTER - BEFORE == CPAGES"; then
12008                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12009         else
12010                 log "cache hits:: before: $BEFORE, after: $AFTER"
12011         fi
12012
12013         log "Read again; it should be satisfied from the cache."
12014         BEFORE=$AFTER
12015         cancel_lru_locks osc
12016         cat $file >/dev/null
12017         AFTER=$(roc_hit)
12018         if ! let "AFTER - BEFORE == CPAGES"; then
12019                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12020         else
12021                 log "cache hits:: before: $BEFORE, after: $AFTER"
12022         fi
12023
12024         log "Turn off the read cache and turn on the write cache"
12025         set_cache read off
12026         set_cache writethrough on
12027
12028         log "Read again; it should be satisfied from the cache."
12029         BEFORE=$(roc_hit)
12030         cancel_lru_locks osc
12031         cat $file >/dev/null
12032         AFTER=$(roc_hit)
12033         if ! let "AFTER - BEFORE == CPAGES"; then
12034                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12035         else
12036                 log "cache hits:: before: $BEFORE, after: $AFTER"
12037         fi
12038
12039         log "Read again; it should not be satisfied from the cache."
12040         BEFORE=$AFTER
12041         cancel_lru_locks osc
12042         cat $file >/dev/null
12043         AFTER=$(roc_hit)
12044         if ! let "AFTER - BEFORE == 0"; then
12045                 error "IN CACHE: before: $BEFORE, after: $AFTER"
12046         else
12047                 log "cache hits:: before: $BEFORE, after: $AFTER"
12048         fi
12049
12050         log "Write data and read it back."
12051         log "Read should be satisfied from the cache."
12052         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12053         BEFORE=$(roc_hit)
12054         cancel_lru_locks osc
12055         cat $file >/dev/null
12056         AFTER=$(roc_hit)
12057         if ! let "AFTER - BEFORE == CPAGES"; then
12058                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12059         else
12060                 log "cache hits:: before: $BEFORE, after: $AFTER"
12061         fi
12062
12063         log "Read again; it should not be satisfied from the cache."
12064         BEFORE=$AFTER
12065         cancel_lru_locks osc
12066         cat $file >/dev/null
12067         AFTER=$(roc_hit)
12068         if ! let "AFTER - BEFORE == 0"; then
12069                 error "IN CACHE: before: $BEFORE, after: $AFTER"
12070         else
12071                 log "cache hits:: before: $BEFORE, after: $AFTER"
12072         fi
12073
12074         log "Turn off read and write cache"
12075         set_cache read off
12076         set_cache writethrough off
12077
12078         log "Write data and read it back"
12079         log "It should not be satisfied from the cache."
12080         rm -f $file
12081         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12082         cancel_lru_locks osc
12083         BEFORE=$(roc_hit)
12084         cat $file >/dev/null
12085         AFTER=$(roc_hit)
12086         if ! let "AFTER - BEFORE == 0"; then
12087                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
12088         else
12089                 log "cache hits:: before: $BEFORE, after: $AFTER"
12090         fi
12091
12092         log "Turn on the read cache and turn off the write cache"
12093         set_cache read on
12094         set_cache writethrough off
12095
12096         log "Write data and read it back"
12097         log "It should not be satisfied from the cache."
12098         rm -f $file
12099         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12100         BEFORE=$(roc_hit)
12101         cancel_lru_locks osc
12102         cat $file >/dev/null
12103         AFTER=$(roc_hit)
12104         if ! let "AFTER - BEFORE == 0"; then
12105                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
12106         else
12107                 log "cache hits:: before: $BEFORE, after: $AFTER"
12108         fi
12109
12110         log "Read again; it should be satisfied from the cache."
12111         BEFORE=$(roc_hit)
12112         cancel_lru_locks osc
12113         cat $file >/dev/null
12114         AFTER=$(roc_hit)
12115         if ! let "AFTER - BEFORE == CPAGES"; then
12116                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12117         else
12118                 log "cache hits:: before: $BEFORE, after: $AFTER"
12119         fi
12120
12121         restore_lustre_params < $p
12122         rm -f $p $file
12123 }
12124 run_test 156 "Verification of tunables"
12125
12126 test_160a() {
12127         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12128         remote_mds_nodsh && skip "remote MDS with nodsh"
12129         [ $MDS1_VERSION -ge $(version_code 2.2.0) ] ||
12130                 skip "Need MDS version at least 2.2.0"
12131
12132         changelog_register || error "changelog_register failed"
12133         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
12134         changelog_users $SINGLEMDS | grep -q $cl_user ||
12135                 error "User $cl_user not found in changelog_users"
12136
12137         # change something
12138         test_mkdir -p $DIR/$tdir/pics/2008/zachy
12139         changelog_clear 0 || error "changelog_clear failed"
12140         touch $DIR/$tdir/pics/2008/zachy/$tfile                 # open 1
12141         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg       # open 2
12142         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
12143         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
12144         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
12145         rm $DIR/$tdir/pics/desktop.jpg
12146
12147         changelog_dump | tail -10
12148
12149         echo "verifying changelog mask"
12150         changelog_chmask "-MKDIR"
12151         changelog_chmask "-CLOSE"
12152
12153         test_mkdir -p $DIR/$tdir/pics/zach/sofia                # not logged
12154         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # not logged
12155
12156         changelog_chmask "+MKDIR"
12157         changelog_chmask "+CLOSE"
12158
12159         test_mkdir -p $DIR/$tdir/pics/2008/sofia                # mkdir 1
12160         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # open 3
12161
12162         changelog_dump | tail -10
12163         MKDIRS=$(changelog_dump | grep -c "MKDIR")
12164         CLOSES=$(changelog_dump | grep -c "CLOSE")
12165         [ $MKDIRS -eq 1 ] || error "MKDIR changelog mask count $MKDIRS != 1"
12166         [ $CLOSES -eq 3 ] || error "CLOSE changelog mask count $CLOSES != 3"
12167
12168         # verify contents
12169         echo "verifying target fid"
12170         local fidc=$(changelog_extract_field "CREAT" "$tfile" "t=")
12171         local fidf=$($LFS path2fid $DIR/$tdir/pics/zach/$tfile)
12172         [ "$fidc" == "$fidf" ] ||
12173                 error "changelog '$tfile' fid $fidc != file fid $fidf"
12174         echo "verifying parent fid"
12175         # The FID returned from the Changelog may be the directory shard on
12176         # a different MDT, and not the FID returned by path2fid on the parent.
12177         # Instead of comparing FIDs, verify that fid2path(fidp) is correct,
12178         # since this is what will matter when recreating this file in the tree.
12179         local fidp=$(changelog_extract_field "CREAT" "$tfile" "p=")
12180         local pathp=$($LFS fid2path $MOUNT "$fidp")
12181         [ "${pathp%/}" == "$DIR/$tdir/pics/zach" ] ||
12182                 error "changelog fid2path($fidc) $pathp != $DIR/$tdir/pics/zach"
12183
12184         echo "getting records for $cl_user"
12185         changelog_users $SINGLEMDS
12186         local user_rec1=$(changelog_user_rec $SINGLEMDS $cl_user)
12187         local nclr=3
12188         __changelog_clear $SINGLEMDS $cl_user +$nclr ||
12189                 error "changelog_clear failed"
12190         local user_rec2=$(changelog_user_rec $SINGLEMDS $cl_user)
12191         echo "verifying user clear: $user_rec1 + $nclr == $user_rec2"
12192         [ $user_rec2 == $((user_rec1 + nclr)) ] ||
12193                 error "user index expect $user_rec1 + $nclr != $user_rec2"
12194
12195         local min0_rec=$(changelog_users $SINGLEMDS |
12196                 awk 'min == "" || $2 < min { min = $2 }; END { print min }')
12197         local first_rec=$($LFS changelog $(facet_svc $SINGLEMDS) |
12198                           awk '{ print $1; exit; }')
12199
12200         changelog_dump | tail -n 5
12201         echo "verifying user min purge: $min0_rec + 1 == $first_rec"
12202         [ $first_rec == $((min0_rec + 1)) ] ||
12203                 error "first index should be $min0_rec + 1 not $first_rec"
12204
12205         # LU-3446 changelog index reset on MDT restart
12206         local cur_rec1=$(changelog_users $SINGLEMDS |
12207                          awk '/^current.index:/ { print $NF }')
12208         changelog_clear 0 ||
12209                 error "clear all changelog records for $cl_user failed"
12210         stop $SINGLEMDS || error "Fail to stop $SINGLEMDS"
12211         start $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) $MDS_MOUNT_OPTS ||
12212                 error "Fail to start $SINGLEMDS"
12213         local cur_rec2=$(changelog_users $SINGLEMDS |
12214                          awk '/^current.index:/ { print $NF }')
12215         echo "verifying index survives MDT restart: $cur_rec1 == $cur_rec2"
12216         [ $cur_rec1 == $cur_rec2 ] ||
12217                 error "current index should be $cur_rec1 not $cur_rec2"
12218
12219         echo "verifying users from this test are deregistered"
12220         changelog_deregister || error "changelog_deregister failed"
12221         changelog_users $SINGLEMDS | grep -q $cl_user &&
12222                 error "User '$cl_user' still in changelog_users"
12223
12224         # lctl get_param -n mdd.*.changelog_users
12225         # current index: 144
12226         # ID    index (idle seconds)
12227         # cl3   144 (2)
12228         if ! changelog_users $SINGLEMDS | grep "^cl"; then
12229                 # this is the normal case where all users were deregistered
12230                 # make sure no new records are added when no users are present
12231                 local last_rec1=$(changelog_users $SINGLEMDS |
12232                                   awk '/^current.index:/ { print $NF }')
12233                 touch $DIR/$tdir/chloe
12234                 local last_rec2=$(changelog_users $SINGLEMDS |
12235                                   awk '/^current.index:/ { print $NF }')
12236                 echo "verify changelogs are off: $last_rec1 == $last_rec2"
12237                 [ $last_rec1 == $last_rec2 ] || error "changelogs not off"
12238         else
12239                 # any changelog users must be leftovers from a previous test
12240                 changelog_users $SINGLEMDS
12241                 echo "other changelog users; can't verify off"
12242         fi
12243 }
12244 run_test 160a "changelog sanity"
12245
12246 test_160b() { # LU-3587
12247         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12248         remote_mds_nodsh && skip "remote MDS with nodsh"
12249         [ $MDS1_VERSION -ge $(version_code 2.2.0) ] ||
12250                 skip "Need MDS version at least 2.2.0"
12251
12252         changelog_register || error "changelog_register failed"
12253         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
12254         changelog_users $SINGLEMDS | grep -q $cl_user ||
12255                 error "User '$cl_user' not found in changelog_users"
12256
12257         local longname1=$(str_repeat a 255)
12258         local longname2=$(str_repeat b 255)
12259
12260         cd $DIR
12261         echo "creating very long named file"
12262         touch $longname1 || error "create of '$longname1' failed"
12263         echo "renaming very long named file"
12264         mv $longname1 $longname2
12265
12266         changelog_dump | grep RENME | tail -n 5
12267         rm -f $longname2
12268 }
12269 run_test 160b "Verify that very long rename doesn't crash in changelog"
12270
12271 test_160c() {
12272         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12273         remote_mds_nodsh && skip "remote MDS with nodsh"
12274
12275         [[ $MDS1_VERSION -gt $(version_code 2.5.57) ]] ||
12276                 [[ $MDS1_VERSION -gt $(version_code 2.5.1) &&
12277                    $MDS1_VERSION -lt $(version_code 2.5.50) ]] ||
12278                 skip "Need MDS version at least 2.5.58 or 2.5.2+"
12279
12280         local rc=0
12281
12282         # Registration step
12283         changelog_register || error "changelog_register failed"
12284
12285         rm -rf $DIR/$tdir
12286         mkdir -p $DIR/$tdir
12287         $MCREATE $DIR/$tdir/foo_160c
12288         changelog_chmask "-TRUNC"
12289         $TRUNCATE $DIR/$tdir/foo_160c 200
12290         changelog_chmask "+TRUNC"
12291         $TRUNCATE $DIR/$tdir/foo_160c 199
12292         changelog_dump | tail -n 5
12293         local truncs=$(changelog_dump | tail -n 5 | grep -c TRUNC)
12294         [ $truncs -eq 1 ] || error "TRUNC changelog mask count $truncs != 1"
12295 }
12296 run_test 160c "verify that changelog log catch the truncate event"
12297
12298 test_160d() {
12299         remote_mds_nodsh && skip "remote MDS with nodsh"
12300         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
12301         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12302         [[ $MDS1_VERSION -ge $(version_code 2.7.60) ]] ||
12303                 skip "Need MDS version at least 2.7.60"
12304
12305         # Registration step
12306         changelog_register || error "changelog_register failed"
12307
12308         mkdir -p $DIR/$tdir/migrate_dir
12309         changelog_clear 0 || error "changelog_clear failed"
12310
12311         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
12312         changelog_dump | tail -n 5
12313         local migrates=$(changelog_dump | grep -c "MIGRT")
12314         [ $migrates -eq 1 ] || error "MIGRATE changelog count $migrates != 1"
12315 }
12316 run_test 160d "verify that changelog log catch the migrate event"
12317
12318 test_160e() {
12319         remote_mds_nodsh && skip "remote MDS with nodsh"
12320
12321         # Create a user
12322         changelog_register || error "changelog_register failed"
12323
12324         # Delete a future user (expect fail)
12325         local MDT0=$(facet_svc $SINGLEMDS)
12326         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister "cl77"
12327         local rc=$?
12328
12329         if [ $rc -eq 0 ]; then
12330                 error "Deleted non-existant user cl77"
12331         elif [ $rc -ne 2 ]; then
12332                 error "changelog_deregister failed with $rc, expect 2 (ENOENT)"
12333         fi
12334
12335         # Clear to a bad index (1 billion should be safe)
12336         $LFS changelog_clear $MDT0 "${CL_USERS[$SINGLEMDS]%% *}" 1000000000
12337         rc=$?
12338
12339         if [ $rc -eq 0 ]; then
12340                 error "Successfully cleared to invalid CL index"
12341         elif [ $rc -ne 22 ]; then
12342                 error "changelog_clear failed with $rc, expected 22 (EINVAL)"
12343         fi
12344 }
12345 run_test 160e "changelog negative testing (should return errors)"
12346
12347 test_160f() {
12348         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12349         [[ $MDS1_VERSION -ge $(version_code 2.10.56) ]] ||
12350                 skip "Need MDS version at least 2.10.56"
12351
12352         local mdts=$(comma_list $(mdts_nodes))
12353
12354         # Create a user
12355         changelog_register || error "first changelog_register failed"
12356         changelog_register || error "second changelog_register failed"
12357         local cl_users
12358         declare -A cl_user1
12359         declare -A cl_user2
12360         local user_rec1
12361         local user_rec2
12362         local i
12363
12364         # generate some changelog records to accumulate on each MDT
12365         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "test_mkdir $tdir failed"
12366         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12367                 error "create $DIR/$tdir/$tfile failed"
12368
12369         # check changelogs have been generated
12370         local nbcl=$(changelog_dump | wc -l)
12371         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12372
12373         for param in "changelog_max_idle_time=10" \
12374                      "changelog_gc=1" \
12375                      "changelog_min_gc_interval=2" \
12376                      "changelog_min_free_cat_entries=3"; do
12377                 local MDT0=$(facet_svc $SINGLEMDS)
12378                 local var="${param%=*}"
12379                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12380
12381                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12382                 do_nodes $mdts $LCTL set_param mdd.*.$param
12383         done
12384
12385         # force cl_user2 to be idle (1st part)
12386         sleep 9
12387
12388         # simulate changelog catalog almost full
12389         #define OBD_FAIL_CAT_FREE_RECORDS       0x1313
12390         do_nodes $mdts $LCTL set_param fail_loc=0x1313 fail_val=3
12391
12392         for i in $(seq $MDSCOUNT); do
12393                 cl_users=(${CL_USERS[mds$i]})
12394                 cl_user1[mds$i]="${cl_users[0]}"
12395                 cl_user2[mds$i]="${cl_users[1]}"
12396
12397                 [ -n "${cl_user1[mds$i]}" ] ||
12398                         error "mds$i: no user registered"
12399                 [ -n "${cl_user2[mds$i]}" ] ||
12400                         error "mds$i: only ${cl_user2[mds$i]} is registered"
12401
12402                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12403                 [ -n "$user_rec1" ] ||
12404                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12405                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12406                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12407                 [ -n "$user_rec2" ] ||
12408                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12409                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12410                      "$user_rec1 + 2 == $user_rec2"
12411                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12412                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12413                               "$user_rec1 + 2, but is $user_rec2"
12414                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12415                 [ -n "$user_rec2" ] ||
12416                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12417                 [ $user_rec1 == $user_rec2 ] ||
12418                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12419                               "$user_rec1, but is $user_rec2"
12420         done
12421
12422         # force cl_user2 to be idle (2nd part) and to reach
12423         # changelog_max_idle_time
12424         sleep 2
12425
12426         # generate one more changelog to trigger fail_loc
12427         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12428                 error "create $DIR/$tdir/${tfile}bis failed"
12429
12430         # ensure gc thread is done
12431         for i in $(mdts_nodes); do
12432                 wait_update $i \
12433                         "ps -e -o comm= | grep chlg_gc_thread" "" 20 ||
12434                         error "$i: GC-thread not done"
12435         done
12436
12437         local first_rec
12438         for i in $(seq $MDSCOUNT); do
12439                 # check cl_user1 still registered
12440                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12441                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12442                 # check cl_user2 unregistered
12443                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12444                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12445
12446                 # check changelogs are present and starting at $user_rec1 + 1
12447                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12448                 [ -n "$user_rec1" ] ||
12449                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12450                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12451                             awk '{ print $1; exit; }')
12452
12453                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12454                 [ $((user_rec1 + 1)) == $first_rec ] ||
12455                         error "mds$i: first index should be $user_rec1 + 1, " \
12456                               "but is $first_rec"
12457         done
12458 }
12459 run_test 160f "changelog garbage collect (timestamped users)"
12460
12461 test_160g() {
12462         remote_mds_nodsh && skip "remote MDS with nodsh"
12463         [[ $MDS1_VERSION -ge $(version_code 2.10.56) ]] ||
12464                 skip "Need MDS version at least 2.10.56"
12465
12466         local mdts=$(comma_list $(mdts_nodes))
12467
12468         #define OBD_FAIL_TIME_IN_CHLOG_USER     0x1314
12469         do_nodes $mdts $LCTL set_param fail_loc=0x1314
12470
12471         # Create a user
12472         changelog_register || error "first changelog_register failed"
12473         changelog_register || error "second changelog_register failed"
12474         local cl_users
12475         declare -A cl_user1
12476         declare -A cl_user2
12477         local user_rec1
12478         local user_rec2
12479         local i
12480
12481         # generate some changelog records to accumulate on each MDT
12482         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
12483         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12484                 error "create $DIR/$tdir/$tfile failed"
12485
12486         # check changelogs have been generated
12487         local nbcl=$(changelog_dump | wc -l)
12488         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12489
12490         for param in "changelog_max_idle_indexes=$((nbcl / 2))" \
12491                      "changelog_gc=1" \
12492                      "changelog_min_gc_interval=2" \
12493                      "changelog_min_free_cat_entries=3"; do
12494                 local MDT0=$(facet_svc $SINGLEMDS)
12495                 local var="${param%=*}"
12496                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12497
12498                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12499                 do_nodes $mdts $LCTL set_param mdd.*.$param ||
12500                         error "unable to set mdd.*.$param"
12501         done
12502
12503         # simulate changelog catalog almost full
12504         #define OBD_FAIL_CAT_FREE_RECORDS       0x1313
12505         do_nodes $mdts $LCTL set_param fail_loc=0x1313 fail_val=3
12506
12507         for i in $(seq $MDSCOUNT); do
12508                 cl_users=(${CL_USERS[mds$i]})
12509                 cl_user1[mds$i]="${cl_users[0]}"
12510                 cl_user2[mds$i]="${cl_users[1]}"
12511
12512                 [ -n "${cl_user1[mds$i]}" ] ||
12513                         error "mds$i: no user registered"
12514                 [ -n "${cl_user2[mds$i]}" ] ||
12515                         error "mds$i: only ${cl_user1[mds$i]} is registered"
12516
12517                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12518                 [ -n "$user_rec1" ] ||
12519                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12520                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12521                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12522                 [ -n "$user_rec2" ] ||
12523                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12524                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12525                      "$user_rec1 + 2 == $user_rec2"
12526                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12527                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12528                               "$user_rec1 + 2, but is $user_rec2"
12529                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12530                 [ -n "$user_rec2" ] ||
12531                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12532                 [ $user_rec1 == $user_rec2 ] ||
12533                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12534                               "$user_rec1, but is $user_rec2"
12535         done
12536
12537         # ensure we are past the previous changelog_min_gc_interval set above
12538         sleep 2
12539
12540         # generate one more changelog to trigger fail_loc
12541         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12542                 error "create $DIR/$tdir/${tfile}bis failed"
12543
12544         # ensure gc thread is done
12545         for i in $(mdts_nodes); do
12546                 wait_update $i \
12547                         "ps -e -o comm= | grep chlg_gc_thread" "" 20 ||
12548                         error "$i: GC-thread not done"
12549         done
12550
12551         local first_rec
12552         for i in $(seq $MDSCOUNT); do
12553                 # check cl_user1 still registered
12554                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12555                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12556                 # check cl_user2 unregistered
12557                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12558                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12559
12560                 # check changelogs are present and starting at $user_rec1 + 1
12561                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12562                 [ -n "$user_rec1" ] ||
12563                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12564                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12565                             awk '{ print $1; exit; }')
12566
12567                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12568                 [ $((user_rec1 + 1)) == $first_rec ] ||
12569                         error "mds$i: first index should be $user_rec1 + 1, " \
12570                               "but is $first_rec"
12571         done
12572 }
12573 run_test 160g "changelog garbage collect (old users)"
12574
12575 test_160h() {
12576         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12577         [[ $MDS1_VERSION -ge $(version_code 2.10.56) ]] ||
12578                 skip "Need MDS version at least 2.10.56"
12579
12580         local mdts=$(comma_list $(mdts_nodes))
12581
12582         # Create a user
12583         changelog_register || error "first changelog_register failed"
12584         changelog_register || error "second changelog_register failed"
12585         local cl_users
12586         declare -A cl_user1
12587         declare -A cl_user2
12588         local user_rec1
12589         local user_rec2
12590         local i
12591
12592         # generate some changelog records to accumulate on each MDT
12593         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "test_mkdir $tdir failed"
12594         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12595                 error "create $DIR/$tdir/$tfile failed"
12596
12597         # check changelogs have been generated
12598         local nbcl=$(changelog_dump | wc -l)
12599         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12600
12601         for param in "changelog_max_idle_time=10" \
12602                      "changelog_gc=1" \
12603                      "changelog_min_gc_interval=2"; do
12604                 local MDT0=$(facet_svc $SINGLEMDS)
12605                 local var="${param%=*}"
12606                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12607
12608                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12609                 do_nodes $mdts $LCTL set_param mdd.*.$param
12610         done
12611
12612         # force cl_user2 to be idle (1st part)
12613         sleep 9
12614
12615         for i in $(seq $MDSCOUNT); do
12616                 cl_users=(${CL_USERS[mds$i]})
12617                 cl_user1[mds$i]="${cl_users[0]}"
12618                 cl_user2[mds$i]="${cl_users[1]}"
12619
12620                 [ -n "${cl_user1[mds$i]}" ] ||
12621                         error "mds$i: no user registered"
12622                 [ -n "${cl_user2[mds$i]}" ] ||
12623                         error "mds$i: only ${cl_user2[mds$i]} is registered"
12624
12625                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12626                 [ -n "$user_rec1" ] ||
12627                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12628                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12629                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12630                 [ -n "$user_rec2" ] ||
12631                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12632                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12633                      "$user_rec1 + 2 == $user_rec2"
12634                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12635                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12636                               "$user_rec1 + 2, but is $user_rec2"
12637                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12638                 [ -n "$user_rec2" ] ||
12639                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12640                 [ $user_rec1 == $user_rec2 ] ||
12641                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12642                               "$user_rec1, but is $user_rec2"
12643         done
12644
12645         # force cl_user2 to be idle (2nd part) and to reach
12646         # changelog_max_idle_time
12647         sleep 2
12648
12649         # force each GC-thread start and block then
12650         # one per MDT/MDD, set fail_val accordingly
12651         #define OBD_FAIL_FORCE_GC_THREAD 0x1316
12652         do_nodes $mdts $LCTL set_param fail_loc=0x1316
12653
12654         # generate more changelogs to trigger fail_loc
12655         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12656                 error "create $DIR/$tdir/${tfile}bis failed"
12657
12658         # stop MDT to stop GC-thread, should be done in back-ground as it will
12659         # block waiting for the thread to be released and exit
12660         declare -A stop_pids
12661         for i in $(seq $MDSCOUNT); do
12662                 stop mds$i &
12663                 stop_pids[mds$i]=$!
12664         done
12665
12666         for i in $(mdts_nodes); do
12667                 local facet
12668                 local nb=0
12669                 local facets=$(facets_up_on_host $i)
12670
12671                 for facet in ${facets//,/ }; do
12672                         if [[ $facet == mds* ]]; then
12673                                 nb=$((nb + 1))
12674                         fi
12675                 done
12676                 # ensure each MDS's gc threads are still present and all in "R"
12677                 # state (OBD_FAIL_FORCE_GC_THREAD effect!)
12678                 [[ $(do_node $i pgrep chlg_gc_thread | wc -l) -eq $nb ]] ||
12679                         error "$i: expected $nb GC-thread"
12680                 wait_update $i \
12681                         "ps -C chlg_gc_thread -o state --no-headers | uniq" \
12682                         "R" 20 ||
12683                         error "$i: GC-thread not found in R-state"
12684                 # check umounts of each MDT on MDS have reached kthread_stop()
12685                 [[ $(do_node $i pgrep umount | wc -l) -eq $nb ]] ||
12686                         error "$i: expected $nb umount"
12687                 wait_update $i \
12688                         "ps -C umount -o state --no-headers | uniq" "D" 20 ||
12689                         error "$i: umount not found in D-state"
12690         done
12691
12692         # release all GC-threads
12693         do_nodes $mdts $LCTL set_param fail_loc=0
12694
12695         # wait for MDT stop to complete
12696         for i in $(seq $MDSCOUNT); do
12697                 wait ${stop_pids[mds$i]} || error "mds$i: stop failed"
12698         done
12699
12700         # XXX
12701         # may try to check if any orphan changelog records are present
12702         # via ldiskfs/zfs and llog_reader...
12703
12704         # re-start/mount MDTs
12705         for i in $(seq $MDSCOUNT); do
12706                 start mds$i $(mdsdevname $i) $MDS_MOUNT_OPTS ||
12707                         error "Fail to start mds$i"
12708         done
12709
12710         local first_rec
12711         for i in $(seq $MDSCOUNT); do
12712                 # check cl_user1 still registered
12713                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12714                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12715                 # check cl_user2 unregistered
12716                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12717                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12718
12719                 # check changelogs are present and starting at $user_rec1 + 1
12720                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12721                 [ -n "$user_rec1" ] ||
12722                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12723                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12724                             awk '{ print $1; exit; }')
12725
12726                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12727                 [ $((user_rec1 + 1)) == $first_rec ] ||
12728                         error "mds$i: first index should be $user_rec1 + 1, " \
12729                               "but is $first_rec"
12730         done
12731 }
12732 run_test 160h "changelog gc thread stop upon umount, orphan records delete " \
12733               "during mount"
12734
12735 test_160i() {
12736
12737         local mdts=$(comma_list $(mdts_nodes))
12738
12739         changelog_register || error "first changelog_register failed"
12740
12741         # generate some changelog records to accumulate on each MDT
12742         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
12743         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12744                 error "create $DIR/$tdir/$tfile failed"
12745
12746         # check changelogs have been generated
12747         local nbcl=$(changelog_dump | wc -l)
12748         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12749
12750         # simulate race between register and unregister
12751         # XXX as fail_loc is set per-MDS, with DNE configs the race
12752         # simulation will only occur for one MDT per MDS and for the
12753         # others the normal race scenario will take place
12754         #define CFS_FAIL_CHLOG_USER_REG_UNREG_RACE          0x1315
12755         do_nodes $mdts $LCTL set_param fail_loc=0x10001315
12756         do_nodes $mdts $LCTL set_param fail_val=1
12757
12758         # unregister 1st user
12759         changelog_deregister &
12760         local pid1=$!
12761         # wait some time for deregister work to reach race rdv
12762         sleep 2
12763         # register 2nd user
12764         changelog_register || error "2nd user register failed"
12765
12766         wait $pid1 || error "1st user deregister failed"
12767
12768         local i
12769         local last_rec
12770         declare -A LAST_REC
12771         for i in $(seq $MDSCOUNT); do
12772                 if changelog_users mds$i | grep "^cl"; then
12773                         # make sure new records are added with one user present
12774                         LAST_REC[mds$i]=$(changelog_users $SINGLEMDS |
12775                                           awk '/^current.index:/ { print $NF }')
12776                 else
12777                         error "mds$i has no user registered"
12778                 fi
12779         done
12780
12781         # generate more changelog records to accumulate on each MDT
12782         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12783                 error "create $DIR/$tdir/${tfile}bis failed"
12784
12785         for i in $(seq $MDSCOUNT); do
12786                 last_rec=$(changelog_users $SINGLEMDS |
12787                            awk '/^current.index:/ { print $NF }')
12788                 echo "verify changelogs are on: $last_rec != ${LAST_REC[mds$i]}"
12789                 [ $last_rec != ${LAST_REC[mds$i]} ] ||
12790                         error "changelogs are off on mds$i"
12791         done
12792 }
12793 run_test 160i "changelog user register/unregister race"
12794
12795 test_161a() {
12796         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12797
12798         test_mkdir -c1 $DIR/$tdir
12799         cp /etc/hosts $DIR/$tdir/$tfile
12800         test_mkdir -c1 $DIR/$tdir/foo1
12801         test_mkdir -c1 $DIR/$tdir/foo2
12802         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
12803         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
12804         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
12805         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
12806         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
12807         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
12808                 $LFS fid2path $DIR $FID
12809                 error "bad link ea"
12810         fi
12811         # middle
12812         rm $DIR/$tdir/foo2/zachary
12813         # last
12814         rm $DIR/$tdir/foo2/thor
12815         # first
12816         rm $DIR/$tdir/$tfile
12817         # rename
12818         mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
12819         [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ] &&
12820                 { $LFS fid2path $DIR $FID; error "bad link rename"; }
12821         rm $DIR/$tdir/foo2/maggie
12822
12823         # overflow the EA
12824         local longname=$tfile.avg_len_is_thirty_two_
12825         stack_trap "unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
12826                 error_noexit 'failed to unlink many hardlinks'" EXIT
12827         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
12828                 error "failed to hardlink many files"
12829         links=$($LFS fid2path $DIR $FID | wc -l)
12830         echo -n "${links}/1000 links in link EA"
12831         [[ $links -gt 60 ]] || error "expected at least 60 links in link EA"
12832 }
12833 run_test 161a "link ea sanity"
12834
12835 test_161b() {
12836         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12837         [ $MDSCOUNT -lt 2 ] && skip_env "skipping remote directory test"
12838
12839         local MDTIDX=1
12840         local remote_dir=$DIR/$tdir/remote_dir
12841
12842         mkdir -p $DIR/$tdir
12843         $LFS mkdir -i $MDTIDX $remote_dir ||
12844                 error "create remote directory failed"
12845
12846         cp /etc/hosts $remote_dir/$tfile
12847         mkdir -p $remote_dir/foo1
12848         mkdir -p $remote_dir/foo2
12849         ln $remote_dir/$tfile $remote_dir/foo1/sofia
12850         ln $remote_dir/$tfile $remote_dir/foo2/zachary
12851         ln $remote_dir/$tfile $remote_dir/foo1/luna
12852         ln $remote_dir/$tfile $remote_dir/foo2/thor
12853
12854         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
12855                      tr -d ']')
12856         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
12857                 $LFS fid2path $DIR $FID
12858                 error "bad link ea"
12859         fi
12860         # middle
12861         rm $remote_dir/foo2/zachary
12862         # last
12863         rm $remote_dir/foo2/thor
12864         # first
12865         rm $remote_dir/$tfile
12866         # rename
12867         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
12868         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
12869         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
12870                 $LFS fid2path $DIR $FID
12871                 error "bad link rename"
12872         fi
12873         rm $remote_dir/foo2/maggie
12874
12875         # overflow the EA
12876         local longname=filename_avg_len_is_thirty_two_
12877         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
12878                 error "failed to hardlink many files"
12879         links=$($LFS fid2path $DIR $FID | wc -l)
12880         echo -n "${links}/1000 links in link EA"
12881         [[ ${links} -gt 60 ]] ||
12882                 error "expected at least 60 links in link EA"
12883         unlinkmany $remote_dir/foo2/$longname 1000 ||
12884         error "failed to unlink many hardlinks"
12885 }
12886 run_test 161b "link ea sanity under remote directory"
12887
12888 test_161c() {
12889         remote_mds_nodsh && skip "remote MDS with nodsh"
12890         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12891         [[ $MDS1_VERSION -lt $(version_code 2.1.5) ]] &&
12892                 skip "Need MDS version at least 2.1.5"
12893
12894         # define CLF_RENAME_LAST 0x0001
12895         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
12896         changelog_register || error "changelog_register failed"
12897
12898         rm -rf $DIR/$tdir
12899         test_mkdir -i $((MDSCOUNT - 1)) $DIR/$tdir
12900         touch $DIR/$tdir/foo_161c
12901         touch $DIR/$tdir/bar_161c
12902         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
12903         changelog_dump | grep RENME | tail -n 5
12904         local flags=$(changelog_dump | grep "RENME.*bar_161c" | cut -f5 -d' ')
12905         changelog_clear 0 || error "changelog_clear failed"
12906         if [ x$flags != "x0x1" ]; then
12907                 error "flag $flags is not 0x1"
12908         fi
12909
12910         echo "rename overwrite target with nlink = 1, changelog flags=$flags"
12911         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
12912         touch $DIR/$tdir/foo_161c
12913         touch $DIR/$tdir/bar_161c
12914         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
12915         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
12916         changelog_dump | grep RENME | tail -n 5
12917         flags=$(changelog_dump | grep "RENME.*bar_161c" | cut -f5 -d' ')
12918         changelog_clear 0 || error "changelog_clear failed"
12919         if [ x$flags != "x0x0" ]; then
12920                 error "flag $flags is not 0x0"
12921         fi
12922         echo "rename overwrite a target having nlink > 1," \
12923                 "changelog record has flags of $flags"
12924
12925         # rename doesn't overwrite a target (changelog flag 0x0)
12926         touch $DIR/$tdir/foo_161c
12927         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
12928         changelog_dump | grep RENME | tail -n 5
12929         flags=$(changelog_dump | grep RENME | tail -1 | cut -f5 -d' ')
12930         changelog_clear 0 || error "changelog_clear failed"
12931         if [ x$flags != "x0x0" ]; then
12932                 error "flag $flags is not 0x0"
12933         fi
12934         echo "rename doesn't overwrite a target," \
12935                 "changelog record has flags of $flags"
12936
12937         # define CLF_UNLINK_LAST 0x0001
12938         # unlink a file having nlink = 1 (changelog flag 0x1)
12939         rm -f $DIR/$tdir/foo2_161c
12940         changelog_dump | grep UNLNK | tail -n 5
12941         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
12942         changelog_clear 0 || error "changelog_clear failed"
12943         if [ x$flags != "x0x1" ]; then
12944                 error "flag $flags is not 0x1"
12945         fi
12946         echo "unlink a file having nlink = 1," \
12947                 "changelog record has flags of $flags"
12948
12949         # unlink a file having nlink > 1 (changelog flag 0x0)
12950         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
12951         rm -f $DIR/$tdir/foobar_161c
12952         changelog_dump | grep UNLNK | tail -n 5
12953         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
12954         changelog_clear 0 || error "changelog_clear failed"
12955         if [ x$flags != "x0x0" ]; then
12956                 error "flag $flags is not 0x0"
12957         fi
12958         echo "unlink a file having nlink > 1, changelog record flags '$flags'"
12959 }
12960 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
12961
12962 test_161d() {
12963         remote_mds_nodsh && skip "remote MDS with nodsh"
12964
12965         local pid
12966         local fid
12967
12968         changelog_register || error "changelog_register failed"
12969
12970         # work in a standalone dir to avoid locking on $DIR/$MOUNT to
12971         # interfer with $MOUNT/.lustre/fid/ access
12972         mkdir $DIR/$tdir
12973         [[ $? -eq 0 ]] || error "mkdir failed"
12974
12975         #define OBD_FAIL_LLITE_CREATE_NODE_PAUSE 0x140c | OBD_FAIL_ONCE
12976         $LCTL set_param fail_loc=0x8000140c
12977         # 5s pause
12978         $LCTL set_param fail_val=5
12979
12980         # create file
12981         echo foofoo > $DIR/$tdir/$tfile &
12982         pid=$!
12983
12984         # wait for create to be delayed
12985         sleep 2
12986
12987         ps -p $pid
12988         [[ $? -eq 0 ]] || error "create should be blocked"
12989
12990         local tempfile=$(mktemp)
12991         fid=$(changelog_extract_field "CREAT" "$tfile" "t=")
12992         cat $MOUNT/.lustre/fid/$fid 2>/dev/null >$tempfile || error "cat failed"
12993         # some delay may occur during ChangeLog publishing and file read just
12994         # above, that could allow file write to happen finally
12995         [[ -s $tempfile ]] && echo "file should be empty"
12996
12997         $LCTL set_param fail_loc=0
12998
12999         wait $pid
13000         [[ $? -eq 0 ]] || error "create failed"
13001 }
13002 run_test 161d "create with concurrent .lustre/fid access"
13003
13004 check_path() {
13005         local expected="$1"
13006         shift
13007         local fid="$2"
13008
13009         local path
13010         path=$($LFS fid2path "$@")
13011         local rc=$?
13012
13013         if [ $rc -ne 0 ]; then
13014                 error "path looked up of '$expected' failed: rc=$rc"
13015         elif [ "$path" != "$expected" ]; then
13016                 error "path looked up '$path' instead of '$expected'"
13017         else
13018                 echo "FID '$fid' resolves to path '$path' as expected"
13019         fi
13020 }
13021
13022 test_162a() { # was test_162
13023         test_mkdir -p -c1 $DIR/$tdir/d2
13024         touch $DIR/$tdir/d2/$tfile
13025         touch $DIR/$tdir/d2/x1
13026         touch $DIR/$tdir/d2/x2
13027         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
13028         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
13029         # regular file
13030         local fid=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
13031         check_path "$tdir/d2/$tfile" $FSNAME "$fid" --link 0
13032
13033         # softlink
13034         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
13035         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
13036         check_path "$tdir/d2/p/q/r/slink" $FSNAME "$fid" --link 0
13037
13038         # softlink to wrong file
13039         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
13040         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
13041         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME "$fid" --link 0
13042
13043         # hardlink
13044         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
13045         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
13046         fid=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
13047         # fid2path dir/fsname should both work
13048         check_path "$tdir/d2/a/b/c/new_file" $FSNAME "$fid" --link 1
13049         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR "$fid" --link 0
13050
13051         # hardlink count: check that there are 2 links
13052         local nlinks=$($LFS fid2path $DIR "$fid" | wc -l)
13053         [ $nlinks -eq 2 ] || error "expect 2 links, found $nlinks"
13054
13055         # hardlink indexing: remove the first link
13056         rm $DIR/$tdir/d2/p/q/r/hlink
13057         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $fid --link 0
13058 }
13059 run_test 162a "path lookup sanity"
13060
13061 test_162b() {
13062         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13063         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
13064
13065         mkdir $DIR/$tdir
13066         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
13067                                 error "create striped dir failed"
13068
13069         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
13070                                         tail -n 1 | awk '{print $2}')
13071         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
13072
13073         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
13074         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
13075
13076         # regular file
13077         for ((i=0;i<5;i++)); do
13078                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
13079                         error "get fid for f$i failed"
13080                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0
13081
13082                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
13083                         error "get fid for d$i failed"
13084                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0
13085         done
13086
13087         return 0
13088 }
13089 run_test 162b "striped directory path lookup sanity"
13090
13091 # LU-4239: Verify fid2path works with paths 100 or more directories deep
13092 test_162c() {
13093         [[ $MDS1_VERSION -lt $(version_code 2.7.51) ]] &&
13094                 skip "Need MDS version at least 2.7.51"
13095
13096         local lpath=$tdir.local
13097         local rpath=$tdir.remote
13098
13099         test_mkdir $DIR/$lpath
13100         test_mkdir $DIR/$rpath
13101
13102         for ((i = 0; i <= 101; i++)); do
13103                 lpath="$lpath/$i"
13104                 mkdir $DIR/$lpath
13105                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
13106                         error "get fid for local directory $DIR/$lpath failed"
13107                 check_path "$DIR/$lpath" $MOUNT $FID --link 0
13108
13109                 rpath="$rpath/$i"
13110                 test_mkdir $DIR/$rpath
13111                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
13112                         error "get fid for remote directory $DIR/$rpath failed"
13113                 check_path "$DIR/$rpath" $MOUNT $FID --link 0
13114         done
13115
13116         return 0
13117 }
13118 run_test 162c "fid2path works with paths 100 or more directories deep"
13119
13120 test_169() {
13121         # do directio so as not to populate the page cache
13122         log "creating a 10 Mb file"
13123         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
13124         log "starting reads"
13125         dd if=$DIR/$tfile of=/dev/null bs=4096 &
13126         log "truncating the file"
13127         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
13128         log "killing dd"
13129         kill %+ || true # reads might have finished
13130         echo "wait until dd is finished"
13131         wait
13132         log "removing the temporary file"
13133         rm -rf $DIR/$tfile || error "tmp file removal failed"
13134 }
13135 run_test 169 "parallel read and truncate should not deadlock"
13136
13137 test_170() {
13138         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13139
13140         $LCTL clear     # bug 18514
13141         $LCTL debug_daemon start $TMP/${tfile}_log_good
13142         touch $DIR/$tfile
13143         $LCTL debug_daemon stop
13144         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
13145                 error "sed failed to read log_good"
13146
13147         $LCTL debug_daemon start $TMP/${tfile}_log_good
13148         rm -rf $DIR/$tfile
13149         $LCTL debug_daemon stop
13150
13151         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
13152                error "lctl df log_bad failed"
13153
13154         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
13155         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
13156
13157         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
13158         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
13159
13160         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
13161                 error "bad_line good_line1 good_line2 are empty"
13162
13163         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
13164         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
13165         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
13166
13167         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
13168         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
13169         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
13170
13171         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
13172                 error "bad_line_new good_line_new are empty"
13173
13174         local expected_good=$((good_line1 + good_line2*2))
13175
13176         rm -f $TMP/${tfile}*
13177         # LU-231, short malformed line may not be counted into bad lines
13178         if [ $bad_line -ne $bad_line_new ] &&
13179                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
13180                 error "expected $bad_line bad lines, but got $bad_line_new"
13181                 return 1
13182         fi
13183
13184         if [ $expected_good -ne $good_line_new ]; then
13185                 error "expected $expected_good good lines, but got $good_line_new"
13186                 return 2
13187         fi
13188         true
13189 }
13190 run_test 170 "test lctl df to handle corrupted log ====================="
13191
13192 test_171() { # bug20592
13193         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13194
13195         #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
13196         $LCTL set_param fail_loc=0x50e
13197         $LCTL set_param fail_val=3000
13198         multiop_bg_pause $DIR/$tfile O_s || true
13199         local MULTIPID=$!
13200         kill -USR1 $MULTIPID
13201         # cause log dump
13202         sleep 3
13203         wait $MULTIPID
13204         if dmesg | grep "recursive fault"; then
13205                 error "caught a recursive fault"
13206         fi
13207         $LCTL set_param fail_loc=0
13208         true
13209 }
13210 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
13211
13212 # it would be good to share it with obdfilter-survey/iokit-libecho code
13213 setup_obdecho_osc () {
13214         local rc=0
13215         local ost_nid=$1
13216         local obdfilter_name=$2
13217         echo "Creating new osc for $obdfilter_name on $ost_nid"
13218         # make sure we can find loopback nid
13219         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
13220
13221         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
13222                            ${obdfilter_name}_osc_UUID || rc=2; }
13223         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
13224                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
13225         return $rc
13226 }
13227
13228 cleanup_obdecho_osc () {
13229         local obdfilter_name=$1
13230         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
13231         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
13232         return 0
13233 }
13234
13235 obdecho_test() {
13236         local OBD=$1
13237         local node=$2
13238         local pages=${3:-64}
13239         local rc=0
13240         local id
13241
13242         local count=10
13243         local obd_size=$(get_obd_size $node $OBD)
13244         local page_size=$(get_page_size $node)
13245         if [[ -n "$obd_size" ]]; then
13246                 local new_count=$((obd_size / (pages * page_size / 1024)))
13247                 [[ $new_count -ge $count ]] || count=$new_count
13248         fi
13249
13250         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
13251         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
13252                            rc=2; }
13253         if [ $rc -eq 0 ]; then
13254             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
13255             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
13256         fi
13257         echo "New object id is $id"
13258         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
13259                            rc=4; }
13260         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
13261                            "test_brw $count w v $pages $id" || rc=4; }
13262         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
13263                            rc=4; }
13264         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
13265                                         "cleanup" || rc=5; }
13266         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
13267                                         "detach" || rc=6; }
13268         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
13269         return $rc
13270 }
13271
13272 test_180a() {
13273         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13274
13275         if ! module_loaded obdecho; then
13276                 load_module obdecho/obdecho &&
13277                         stack_trap "rmmod obdecho" EXIT ||
13278                         error "unable to load obdecho on client"
13279         fi
13280
13281         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
13282         local host=$($LCTL get_param -n osc.$osc.import |
13283                      awk '/current_connection:/ { print $2 }' )
13284         local target=$($LCTL get_param -n osc.$osc.import |
13285                        awk '/target:/ { print $2 }' )
13286         target=${target%_UUID}
13287
13288         if [ -n "$target" ]; then
13289                 setup_obdecho_osc $host $target &&
13290                         stack_trap "cleanup_obdecho_osc $target" EXIT ||
13291                         { error "obdecho setup failed with $?"; return; }
13292
13293                 obdecho_test ${target}_osc client ||
13294                         error "obdecho_test failed on ${target}_osc"
13295         else
13296                 $LCTL get_param osc.$osc.import
13297                 error "there is no osc.$osc.import target"
13298         fi
13299 }
13300 run_test 180a "test obdecho on osc"
13301
13302 test_180b() {
13303         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13304         remote_ost_nodsh && skip "remote OST with nodsh"
13305
13306         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
13307                 stack_trap "do_facet ost1 rmmod obdecho" EXIT ||
13308                 error "failed to load module obdecho"
13309
13310         local target=$(do_facet ost1 $LCTL dl |
13311                        awk '/obdfilter/ { print $4; exit; }')
13312
13313         if [ -n "$target" ]; then
13314                 obdecho_test $target ost1 || error "obdecho_test failed with $?"
13315         else
13316                 do_facet ost1 $LCTL dl
13317                 error "there is no obdfilter target on ost1"
13318         fi
13319 }
13320 run_test 180b "test obdecho directly on obdfilter"
13321
13322 test_180c() { # LU-2598
13323         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13324         remote_ost_nodsh && skip "remote OST with nodsh"
13325         [[ $MDS1_VERSION -lt $(version_code 2.4.0) ]] &&
13326                 skip "Need MDS version at least 2.4.0"
13327
13328         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
13329                 stack_trap "do_facet ost1 rmmod obdecho" EXIT ||
13330                 error "failed to load module obdecho"
13331
13332         local target=$(do_facet ost1 $LCTL dl |
13333                        awk '/obdfilter/ { print $4; exit; }')
13334
13335         if [ -n "$target" ]; then
13336                 local pages=16384 # 64MB bulk I/O RPC size
13337
13338                 obdecho_test "$target" ost1 "$pages" ||
13339                         error "obdecho_test with pages=$pages failed with $?"
13340         else
13341                 do_facet ost1 $LCTL dl
13342                 error "there is no obdfilter target on ost1"
13343         fi
13344 }
13345 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
13346
13347 test_181() { # bug 22177
13348         test_mkdir $DIR/$tdir
13349         # create enough files to index the directory
13350         createmany -o $DIR/$tdir/foobar 4000
13351         # print attributes for debug purpose
13352         lsattr -d .
13353         # open dir
13354         multiop_bg_pause $DIR/$tdir D_Sc || return 1
13355         MULTIPID=$!
13356         # remove the files & current working dir
13357         unlinkmany $DIR/$tdir/foobar 4000
13358         rmdir $DIR/$tdir
13359         kill -USR1 $MULTIPID
13360         wait $MULTIPID
13361         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
13362         return 0
13363 }
13364 run_test 181 "Test open-unlinked dir ========================"
13365
13366 test_182() {
13367         local fcount=1000
13368         local tcount=10
13369
13370         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13371
13372         $LCTL set_param mdc.*.rpc_stats=clear
13373
13374         for (( i = 0; i < $tcount; i++ )) ; do
13375                 mkdir $DIR/$tdir/$i
13376         done
13377
13378         for (( i = 0; i < $tcount; i++ )) ; do
13379                 createmany -o $DIR/$tdir/$i/f- $fcount &
13380         done
13381         wait
13382
13383         for (( i = 0; i < $tcount; i++ )) ; do
13384                 unlinkmany $DIR/$tdir/$i/f- $fcount &
13385         done
13386         wait
13387
13388         $LCTL get_param mdc.*.rpc_stats
13389
13390         rm -rf $DIR/$tdir
13391 }
13392 run_test 182 "Test parallel modify metadata operations ================"
13393
13394 test_183() { # LU-2275
13395         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13396         remote_mds_nodsh && skip "remote MDS with nodsh"
13397         [[ $MDS1_VERSION -lt $(version_code 2.3.56) ]] &&
13398                 skip "Need MDS version at least 2.3.56"
13399
13400         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13401         echo aaa > $DIR/$tdir/$tfile
13402
13403 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
13404         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
13405
13406         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
13407         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
13408
13409         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
13410
13411         # Flush negative dentry cache
13412         touch $DIR/$tdir/$tfile
13413
13414         # We are not checking for any leaked references here, they'll
13415         # become evident next time we do cleanup with module unload.
13416         rm -rf $DIR/$tdir
13417 }
13418 run_test 183 "No crash or request leak in case of strange dispositions ========"
13419
13420 # test suite 184 is for LU-2016, LU-2017
13421 test_184a() {
13422         check_swap_layouts_support
13423
13424         dir0=$DIR/$tdir/$testnum
13425         test_mkdir -p -c1 $dir0
13426         ref1=/etc/passwd
13427         ref2=/etc/group
13428         file1=$dir0/f1
13429         file2=$dir0/f2
13430         $LFS setstripe -c1 $file1
13431         cp $ref1 $file1
13432         $LFS setstripe -c2 $file2
13433         cp $ref2 $file2
13434         gen1=$($LFS getstripe -g $file1)
13435         gen2=$($LFS getstripe -g $file2)
13436
13437         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
13438         gen=$($LFS getstripe -g $file1)
13439         [[ $gen1 != $gen ]] ||
13440                 "Layout generation on $file1 does not change"
13441         gen=$($LFS getstripe -g $file2)
13442         [[ $gen2 != $gen ]] ||
13443                 "Layout generation on $file2 does not change"
13444
13445         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
13446         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
13447
13448         lfsck_verify_pfid $file1 $file2 || error "PFID are not transferred"
13449 }
13450 run_test 184a "Basic layout swap"
13451
13452 test_184b() {
13453         check_swap_layouts_support
13454
13455         dir0=$DIR/$tdir/$testnum
13456         mkdir -p $dir0 || error "creating dir $dir0"
13457         file1=$dir0/f1
13458         file2=$dir0/f2
13459         file3=$dir0/f3
13460         dir1=$dir0/d1
13461         dir2=$dir0/d2
13462         mkdir $dir1 $dir2
13463         $LFS setstripe -c1 $file1
13464         $LFS setstripe -c2 $file2
13465         $LFS setstripe -c1 $file3
13466         chown $RUNAS_ID $file3
13467         gen1=$($LFS getstripe -g $file1)
13468         gen2=$($LFS getstripe -g $file2)
13469
13470         $LFS swap_layouts $dir1 $dir2 &&
13471                 error "swap of directories layouts should fail"
13472         $LFS swap_layouts $dir1 $file1 &&
13473                 error "swap of directory and file layouts should fail"
13474         $RUNAS $LFS swap_layouts $file1 $file2 &&
13475                 error "swap of file we cannot write should fail"
13476         $LFS swap_layouts $file1 $file3 &&
13477                 error "swap of file with different owner should fail"
13478         /bin/true # to clear error code
13479 }
13480 run_test 184b "Forbidden layout swap (will generate errors)"
13481
13482 test_184c() {
13483         local cmpn_arg=$(cmp -n 2>&1 | grep "invalid option")
13484         [ -n "$cmpn_arg" ] && skip_env "cmp does not support -n"
13485         check_swap_layouts_support
13486
13487         local dir0=$DIR/$tdir/$testnum
13488         mkdir -p $dir0 || error "creating dir $dir0"
13489
13490         local ref1=$dir0/ref1
13491         local ref2=$dir0/ref2
13492         local file1=$dir0/file1
13493         local file2=$dir0/file2
13494         # create a file large enough for the concurrent test
13495         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
13496         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
13497         echo "ref file size: ref1($(stat -c %s $ref1))," \
13498              "ref2($(stat -c %s $ref2))"
13499
13500         cp $ref2 $file2
13501         dd if=$ref1 of=$file1 bs=16k &
13502         local DD_PID=$!
13503
13504         # Make sure dd starts to copy file
13505         while [ ! -f $file1 ]; do sleep 0.1; done
13506
13507         $LFS swap_layouts $file1 $file2
13508         local rc=$?
13509         wait $DD_PID
13510         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
13511         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
13512
13513         # how many bytes copied before swapping layout
13514         local copied=$(stat -c %s $file2)
13515         local remaining=$(stat -c %s $ref1)
13516         remaining=$((remaining - copied))
13517         echo "Copied $copied bytes before swapping layout..."
13518
13519         cmp -n $copied $file1 $ref2 | grep differ &&
13520                 error "Content mismatch [0, $copied) of ref2 and file1"
13521         cmp -n $copied $file2 $ref1 ||
13522                 error "Content mismatch [0, $copied) of ref1 and file2"
13523         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
13524                 error "Content mismatch [$copied, EOF) of ref1 and file1"
13525
13526         # clean up
13527         rm -f $ref1 $ref2 $file1 $file2
13528 }
13529 run_test 184c "Concurrent write and layout swap"
13530
13531 test_184d() {
13532         check_swap_layouts_support
13533         [ -z "$(which getfattr 2>/dev/null)" ] &&
13534                 skip_env "no getfattr command"
13535
13536         local file1=$DIR/$tdir/$tfile-1
13537         local file2=$DIR/$tdir/$tfile-2
13538         local file3=$DIR/$tdir/$tfile-3
13539         local lovea1
13540         local lovea2
13541
13542         mkdir -p $DIR/$tdir
13543         touch $file1 || error "create $file1 failed"
13544         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
13545                 error "create $file2 failed"
13546         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
13547                 error "create $file3 failed"
13548         lovea1=$(get_layout_param $file1)
13549
13550         $LFS swap_layouts $file2 $file3 ||
13551                 error "swap $file2 $file3 layouts failed"
13552         $LFS swap_layouts $file1 $file2 ||
13553                 error "swap $file1 $file2 layouts failed"
13554
13555         lovea2=$(get_layout_param $file2)
13556         echo "$lovea1"
13557         echo "$lovea2"
13558         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
13559
13560         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
13561         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
13562 }
13563 run_test 184d "allow stripeless layouts swap"
13564
13565 test_184e() {
13566         [[ $MDS1_VERSION -ge $(version_code 2.6.94) ]] ||
13567                 skip "Need MDS version at least 2.6.94"
13568         check_swap_layouts_support
13569         [ -z "$(which getfattr 2>/dev/null)" ] &&
13570                 skip_env "no getfattr command"
13571
13572         local file1=$DIR/$tdir/$tfile-1
13573         local file2=$DIR/$tdir/$tfile-2
13574         local file3=$DIR/$tdir/$tfile-3
13575         local lovea
13576
13577         mkdir -p $DIR/$tdir
13578         touch $file1 || error "create $file1 failed"
13579         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
13580                 error "create $file2 failed"
13581         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
13582                 error "create $file3 failed"
13583
13584         $LFS swap_layouts $file1 $file2 ||
13585                 error "swap $file1 $file2 layouts failed"
13586
13587         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
13588         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
13589
13590         echo 123 > $file1 || error "Should be able to write into $file1"
13591
13592         $LFS swap_layouts $file1 $file3 ||
13593                 error "swap $file1 $file3 layouts failed"
13594
13595         echo 123 > $file1 || error "Should be able to write into $file1"
13596
13597         rm -rf $file1 $file2 $file3
13598 }
13599 run_test 184e "Recreate layout after stripeless layout swaps"
13600
13601 test_184f() {
13602         # Create a file with name longer than sizeof(struct stat) ==
13603         # 144 to see if we can get chars from the file name to appear
13604         # in the returned striping. Note that 'f' == 0x66.
13605         local file=$(for ((i = 0; i < 200; i++)); do echo -n f; done)
13606
13607         mkdir -p $DIR/$tdir
13608         mcreate $DIR/$tdir/$file
13609         if lfs find --stripe-count 0x6666 $DIR/$tdir | grep $file; then
13610                 error "IOC_MDC_GETFILEINFO returned garbage striping"
13611         fi
13612 }
13613 run_test 184f "IOC_MDC_GETFILEINFO for files with long names but no striping"
13614
13615 test_185() { # LU-2441
13616         # LU-3553 - no volatile file support in old servers
13617         [[ $MDS1_VERSION -ge $(version_code 2.3.60) ]] ||
13618                 skip "Need MDS version at least 2.3.60"
13619
13620         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13621         touch $DIR/$tdir/spoo
13622         local mtime1=$(stat -c "%Y" $DIR/$tdir)
13623         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
13624                 error "cannot create/write a volatile file"
13625         [ "$FILESET" == "" ] &&
13626         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
13627                 error "FID is still valid after close"
13628
13629         multiop_bg_pause $DIR/$tdir vVw4096_c
13630         local multi_pid=$!
13631
13632         local OLD_IFS=$IFS
13633         IFS=":"
13634         local fidv=($fid)
13635         IFS=$OLD_IFS
13636         # assume that the next FID for this client is sequential, since stdout
13637         # is unfortunately eaten by multiop_bg_pause
13638         local n=$((${fidv[1]} + 1))
13639         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
13640         if [ "$FILESET" == "" ]; then
13641                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
13642                         error "FID is missing before close"
13643         fi
13644         kill -USR1 $multi_pid
13645         # 1 second delay, so if mtime change we will see it
13646         sleep 1
13647         local mtime2=$(stat -c "%Y" $DIR/$tdir)
13648         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
13649 }
13650 run_test 185 "Volatile file support"
13651
13652 test_187a() {
13653         remote_mds_nodsh && skip "remote MDS with nodsh"
13654         [ $MDS1_VERSION -lt $(version_code 2.3.0) ] &&
13655                 skip "Need MDS version at least 2.3.0"
13656
13657         local dir0=$DIR/$tdir/$testnum
13658         mkdir -p $dir0 || error "creating dir $dir0"
13659
13660         local file=$dir0/file1
13661         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
13662         local dv1=$($LFS data_version $file)
13663         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
13664         local dv2=$($LFS data_version $file)
13665         [[ $dv1 != $dv2 ]] ||
13666                 error "data version did not change on write $dv1 == $dv2"
13667
13668         # clean up
13669         rm -f $file1
13670 }
13671 run_test 187a "Test data version change"
13672
13673 test_187b() {
13674         remote_mds_nodsh && skip "remote MDS with nodsh"
13675         [ $MDS1_VERSION -lt $(version_code 2.3.0) ] &&
13676                 skip "Need MDS version at least 2.3.0"
13677
13678         local dir0=$DIR/$tdir/$testnum
13679         mkdir -p $dir0 || error "creating dir $dir0"
13680
13681         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
13682         [[ ${DV[0]} != ${DV[1]} ]] ||
13683                 error "data version did not change on write"\
13684                       " ${DV[0]} == ${DV[1]}"
13685
13686         # clean up
13687         rm -f $file1
13688 }
13689 run_test 187b "Test data version change on volatile file"
13690
13691 test_200() {
13692         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13693         remote_mgs_nodsh && skip "remote MGS with nodsh"
13694         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
13695
13696         local POOL=${POOL:-cea1}
13697         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
13698         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
13699         # Pool OST targets
13700         local first_ost=0
13701         local last_ost=$(($OSTCOUNT - 1))
13702         local ost_step=2
13703         local ost_list=$(seq $first_ost $ost_step $last_ost)
13704         local ost_range="$first_ost $last_ost $ost_step"
13705         local test_path=$POOL_ROOT/$POOL_DIR_NAME
13706         local file_dir=$POOL_ROOT/file_tst
13707         local subdir=$test_path/subdir
13708         local rc=0
13709
13710         if ! combined_mgs_mds ; then
13711                 mount_mgs_client
13712         fi
13713
13714         while : ; do
13715                 # former test_200a test_200b
13716                 pool_add $POOL                          || { rc=$? ; break; }
13717                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
13718                 # former test_200c test_200d
13719                 mkdir -p $test_path
13720                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
13721                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
13722                 mkdir -p $subdir
13723                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
13724                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
13725                                                         || { rc=$? ; break; }
13726                 # former test_200e test_200f
13727                 local files=$((OSTCOUNT*3))
13728                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
13729                                                         || { rc=$? ; break; }
13730                 pool_create_files $POOL $file_dir $files "$ost_list" \
13731                                                         || { rc=$? ; break; }
13732                 # former test_200g test_200h
13733                 pool_lfs_df $POOL                       || { rc=$? ; break; }
13734                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
13735
13736                 # former test_201a test_201b test_201c
13737                 pool_remove_first_target $POOL          || { rc=$? ; break; }
13738
13739                 local f=$test_path/$tfile
13740                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
13741                 pool_remove $POOL $f                    || { rc=$? ; break; }
13742                 break
13743         done
13744
13745         destroy_test_pools
13746
13747         if ! combined_mgs_mds ; then
13748                 umount_mgs_client
13749         fi
13750         return $rc
13751 }
13752 run_test 200 "OST pools"
13753
13754 # usage: default_attr <count | size | offset>
13755 default_attr() {
13756         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
13757 }
13758
13759 # usage: check_default_stripe_attr
13760 check_default_stripe_attr() {
13761         ACTUAL=$($LFS getstripe $* $DIR/$tdir)
13762         case $1 in
13763         --stripe-count|-c)
13764                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
13765         --stripe-size|-S)
13766                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
13767         --stripe-index|-i)
13768                 EXPECTED=-1;;
13769         *)
13770                 error "unknown getstripe attr '$1'"
13771         esac
13772
13773         [ $ACTUAL == $EXPECTED ] ||
13774                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
13775 }
13776
13777 test_204a() {
13778         test_mkdir $DIR/$tdir
13779         $LFS setstripe --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
13780
13781         check_default_stripe_attr --stripe-count
13782         check_default_stripe_attr --stripe-size
13783         check_default_stripe_attr --stripe-index
13784 }
13785 run_test 204a "Print default stripe attributes"
13786
13787 test_204b() {
13788         test_mkdir $DIR/$tdir
13789         $LFS setstripe --stripe-count 1 $DIR/$tdir
13790
13791         check_default_stripe_attr --stripe-size
13792         check_default_stripe_attr --stripe-index
13793 }
13794 run_test 204b "Print default stripe size and offset"
13795
13796 test_204c() {
13797         test_mkdir $DIR/$tdir
13798         $LFS setstripe --stripe-size 65536 $DIR/$tdir
13799
13800         check_default_stripe_attr --stripe-count
13801         check_default_stripe_attr --stripe-index
13802 }
13803 run_test 204c "Print default stripe count and offset"
13804
13805 test_204d() {
13806         test_mkdir $DIR/$tdir
13807         $LFS setstripe --stripe-index 0 $DIR/$tdir
13808
13809         check_default_stripe_attr --stripe-count
13810         check_default_stripe_attr --stripe-size
13811 }
13812 run_test 204d "Print default stripe count and size"
13813
13814 test_204e() {
13815         test_mkdir $DIR/$tdir
13816         $LFS setstripe -d $DIR/$tdir
13817
13818         check_default_stripe_attr --stripe-count --raw
13819         check_default_stripe_attr --stripe-size --raw
13820         check_default_stripe_attr --stripe-index --raw
13821 }
13822 run_test 204e "Print raw stripe attributes"
13823
13824 test_204f() {
13825         test_mkdir $DIR/$tdir
13826         $LFS setstripe --stripe-count 1 $DIR/$tdir
13827
13828         check_default_stripe_attr --stripe-size --raw
13829         check_default_stripe_attr --stripe-index --raw
13830 }
13831 run_test 204f "Print raw stripe size and offset"
13832
13833 test_204g() {
13834         test_mkdir $DIR/$tdir
13835         $LFS setstripe --stripe-size 65536 $DIR/$tdir
13836
13837         check_default_stripe_attr --stripe-count --raw
13838         check_default_stripe_attr --stripe-index --raw
13839 }
13840 run_test 204g "Print raw stripe count and offset"
13841
13842 test_204h() {
13843         test_mkdir $DIR/$tdir
13844         $LFS setstripe --stripe-index 0 $DIR/$tdir
13845
13846         check_default_stripe_attr --stripe-count --raw
13847         check_default_stripe_attr --stripe-size --raw
13848 }
13849 run_test 204h "Print raw stripe count and size"
13850
13851 # Figure out which job scheduler is being used, if any,
13852 # or use a fake one
13853 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
13854         JOBENV=SLURM_JOB_ID
13855 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
13856         JOBENV=LSB_JOBID
13857 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
13858         JOBENV=PBS_JOBID
13859 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
13860         JOBENV=LOADL_STEP_ID
13861 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
13862         JOBENV=JOB_ID
13863 else
13864         $LCTL list_param jobid_name > /dev/null 2>&1
13865         if [ $? -eq 0 ]; then
13866                 JOBENV=nodelocal
13867         else
13868                 JOBENV=FAKE_JOBID
13869         fi
13870 fi
13871 LUSTRE_JOBID_SIZE=31 # plus NUL terminator
13872
13873 verify_jobstats() {
13874         local cmd=($1)
13875         shift
13876         local facets="$@"
13877
13878 # we don't really need to clear the stats for this test to work, since each
13879 # command has a unique jobid, but it makes debugging easier if needed.
13880 #       for facet in $facets; do
13881 #               local dev=$(convert_facet2label $facet)
13882 #               # clear old jobstats
13883 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
13884 #       done
13885
13886         # use a new JobID for each test, or we might see an old one
13887         [ "$JOBENV" = "FAKE_JOBID" ] &&
13888                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
13889
13890         JOBVAL=${!JOBENV:0:$LUSTRE_JOBID_SIZE}
13891
13892         [ "$JOBENV" = "nodelocal" ] && {
13893                 FAKE_JOBID=id.$testnum.%e.$RANDOM
13894                 $LCTL set_param jobid_name=$FAKE_JOBID
13895                 JOBVAL=${FAKE_JOBID/\%e/$(basename ${cmd[0]})}
13896         }
13897
13898         log "Test: ${cmd[*]}"
13899         log "Using JobID environment $($LCTL get_param -n jobid_var)=$JOBVAL"
13900
13901         if [ $JOBENV = "FAKE_JOBID" ]; then
13902                 FAKE_JOBID=$JOBVAL ${cmd[*]}
13903         else
13904                 ${cmd[*]}
13905         fi
13906
13907         # all files are created on OST0000
13908         for facet in $facets; do
13909                 local stats="*.$(convert_facet2label $facet).job_stats"
13910
13911                 # strip out libtool wrappers for in-tree executables
13912                 if [ $(do_facet $facet lctl get_param $stats |
13913                        sed -e 's/\.lt-/./' | grep -c $JOBVAL) -ne 1 ]; then
13914                         do_facet $facet lctl get_param $stats
13915                         error "No jobstats for $JOBVAL found on $facet::$stats"
13916                 fi
13917         done
13918 }
13919
13920 jobstats_set() {
13921         local new_jobenv=$1
13922
13923         set_persistent_param_and_check client "jobid_var" \
13924                 "$FSNAME.sys.jobid_var" $new_jobenv
13925 }
13926
13927 test_205() { # Job stats
13928         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13929         [[ $MDS1_VERSION -ge $(version_code 2.7.1) ]] ||
13930                 skip "Need MDS version with at least 2.7.1"
13931         remote_mgs_nodsh && skip "remote MGS with nodsh"
13932         remote_mds_nodsh && skip "remote MDS with nodsh"
13933         remote_ost_nodsh && skip "remote OST with nodsh"
13934         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
13935                 skip "Server doesn't support jobstats"
13936         [[ $JOBID_VAR = disable ]] && skip_env "jobstats is disabled"
13937
13938         local old_jobenv=$($LCTL get_param -n jobid_var)
13939         [ $old_jobenv != $JOBENV ] && jobstats_set $JOBENV
13940
13941         if [[ $PERM_CMD == *"set_param -P"* ]]; then
13942                 stack_trap "do_facet mgs $PERM_CMD jobid_var=$old_jobenv" EXIT
13943         else
13944                 stack_trap "do_facet mgs $PERM_CMD \
13945                         $FSNAME.sys.jobid_var=$old_jobenv" EXIT
13946         fi
13947         changelog_register
13948
13949         local old_interval=$(do_facet $SINGLEMDS lctl get_param -n \
13950                                 mdt.*.job_cleanup_interval | head -n 1)
13951         local new_interval=5
13952         do_facet $SINGLEMDS \
13953                 $LCTL set_param mdt.*.job_cleanup_interval=$new_interval
13954         stack_trap "do_facet $SINGLEMDS \
13955                 $LCTL set_param mdt.*.job_cleanup_interval=$old_interval" EXIT
13956         local start=$SECONDS
13957
13958         local cmd
13959         # mkdir
13960         cmd="mkdir $DIR/$tdir"
13961         verify_jobstats "$cmd" "$SINGLEMDS"
13962         # rmdir
13963         cmd="rmdir $DIR/$tdir"
13964         verify_jobstats "$cmd" "$SINGLEMDS"
13965         # mkdir on secondary MDT
13966         if [ $MDSCOUNT -gt 1 ]; then
13967                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
13968                 verify_jobstats "$cmd" "mds2"
13969         fi
13970         # mknod
13971         cmd="mknod $DIR/$tfile c 1 3"
13972         verify_jobstats "$cmd" "$SINGLEMDS"
13973         # unlink
13974         cmd="rm -f $DIR/$tfile"
13975         verify_jobstats "$cmd" "$SINGLEMDS"
13976         # create all files on OST0000 so verify_jobstats can find OST stats
13977         # open & close
13978         cmd="$LFS setstripe -i 0 -c 1 $DIR/$tfile"
13979         verify_jobstats "$cmd" "$SINGLEMDS"
13980         # setattr
13981         cmd="touch $DIR/$tfile"
13982         verify_jobstats "$cmd" "$SINGLEMDS ost1"
13983         # write
13984         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
13985         verify_jobstats "$cmd" "ost1"
13986         # read
13987         cancel_lru_locks osc
13988         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
13989         verify_jobstats "$cmd" "ost1"
13990         # truncate
13991         cmd="$TRUNCATE $DIR/$tfile 0"
13992         verify_jobstats "$cmd" "$SINGLEMDS ost1"
13993         # rename
13994         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
13995         verify_jobstats "$cmd" "$SINGLEMDS"
13996         # jobstats expiry - sleep until old stats should be expired
13997         local left=$((new_interval + 5 - (SECONDS - start)))
13998         [ $left -ge 0 ] && wait_update_facet $SINGLEMDS \
13999                 "lctl get_param *.*.job_stats | grep -c 'job_id.*mkdir'" \
14000                         "0" $left
14001         cmd="mkdir $DIR/$tdir.expire"
14002         verify_jobstats "$cmd" "$SINGLEMDS"
14003         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
14004             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
14005
14006         # Ensure that jobid are present in changelog (if supported by MDS)
14007         if [ $MDS1_VERSION -ge $(version_code 2.6.52) ];then
14008                 changelog_dump | tail -10
14009                 jobids=$(changelog_dump | tail -9 | grep -c "j=")
14010                 [ $jobids -eq 9 ] ||
14011                         error "Wrong changelog jobid count $jobids != 9"
14012
14013                 # LU-5862
14014                 JOBENV="disable"
14015                 jobstats_set $JOBENV
14016                 touch $DIR/$tfile
14017                 changelog_dump | grep $tfile
14018                 jobids=$(changelog_dump | grep $tfile | tail -1 | grep -c "j=")
14019                 [ $jobids -eq 0 ] ||
14020                         error "Unexpected jobids when jobid_var=$JOBENV"
14021         fi
14022
14023         lctl set_param jobid_var=USER jobid_name="S.%j.%e.%u.%h.E"
14024         JOBENV="JOBCOMPLEX"
14025         JOBCOMPLEX="S.$USER.touch.$(id -u).$(hostname).E"
14026
14027         verify_jobstats "touch $DIR/$tfile" $SINGLEMDS
14028 }
14029 run_test 205 "Verify job stats"
14030
14031 # LU-1480, LU-1773 and LU-1657
14032 test_206() {
14033         mkdir -p $DIR/$tdir
14034         $LFS setstripe -c -1 $DIR/$tdir
14035 #define OBD_FAIL_LOV_INIT 0x1403
14036         $LCTL set_param fail_loc=0xa0001403
14037         $LCTL set_param fail_val=1
14038         touch $DIR/$tdir/$tfile || true
14039 }
14040 run_test 206 "fail lov_init_raid0() doesn't lbug"
14041
14042 test_207a() {
14043         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
14044         local fsz=`stat -c %s $DIR/$tfile`
14045         cancel_lru_locks mdc
14046
14047         # do not return layout in getattr intent
14048 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
14049         $LCTL set_param fail_loc=0x170
14050         local sz=`stat -c %s $DIR/$tfile`
14051
14052         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
14053
14054         rm -rf $DIR/$tfile
14055 }
14056 run_test 207a "can refresh layout at glimpse"
14057
14058 test_207b() {
14059         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
14060         local cksum=`md5sum $DIR/$tfile`
14061         local fsz=`stat -c %s $DIR/$tfile`
14062         cancel_lru_locks mdc
14063         cancel_lru_locks osc
14064
14065         # do not return layout in getattr intent
14066 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
14067         $LCTL set_param fail_loc=0x171
14068
14069         # it will refresh layout after the file is opened but before read issues
14070         echo checksum is "$cksum"
14071         echo "$cksum" |md5sum -c --quiet || error "file differs"
14072
14073         rm -rf $DIR/$tfile
14074 }
14075 run_test 207b "can refresh layout at open"
14076
14077 test_208() {
14078         # FIXME: in this test suite, only RD lease is used. This is okay
14079         # for now as only exclusive open is supported. After generic lease
14080         # is done, this test suite should be revised. - Jinshan
14081
14082         remote_mds_nodsh && skip "remote MDS with nodsh"
14083         [[ $MDS1_VERSION -ge $(version_code 2.4.52) ]] ||
14084                 skip "Need MDS version at least 2.4.52"
14085
14086         echo "==== test 1: verify get lease work"
14087         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
14088
14089         echo "==== test 2: verify lease can be broken by upcoming open"
14090         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
14091         local PID=$!
14092         sleep 1
14093
14094         $MULTIOP $DIR/$tfile oO_RDONLY:c
14095         kill -USR1 $PID && wait $PID || error "break lease error"
14096
14097         echo "==== test 3: verify lease can't be granted if an open already exists"
14098         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
14099         local PID=$!
14100         sleep 1
14101
14102         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
14103         kill -USR1 $PID && wait $PID || error "open file error"
14104
14105         echo "==== test 4: lease can sustain over recovery"
14106         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
14107         PID=$!
14108         sleep 1
14109
14110         fail mds1
14111
14112         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
14113
14114         echo "==== test 5: lease broken can't be regained by replay"
14115         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
14116         PID=$!
14117         sleep 1
14118
14119         # open file to break lease and then recovery
14120         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
14121         fail mds1
14122
14123         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
14124
14125         rm -f $DIR/$tfile
14126 }
14127 run_test 208 "Exclusive open"
14128
14129 test_209() {
14130         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
14131                 skip_env "must have disp_stripe"
14132
14133         touch $DIR/$tfile
14134         sync; sleep 5; sync;
14135
14136         echo 3 > /proc/sys/vm/drop_caches
14137         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
14138
14139         # open/close 500 times
14140         for i in $(seq 500); do
14141                 cat $DIR/$tfile
14142         done
14143
14144         echo 3 > /proc/sys/vm/drop_caches
14145         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
14146
14147         echo "before: $req_before, after: $req_after"
14148         [ $((req_after - req_before)) -ge 300 ] &&
14149                 error "open/close requests are not freed"
14150         return 0
14151 }
14152 run_test 209 "read-only open/close requests should be freed promptly"
14153
14154 test_212() {
14155         size=`date +%s`
14156         size=$((size % 8192 + 1))
14157         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
14158         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
14159         rm -f $DIR/f212 $DIR/f212.xyz
14160 }
14161 run_test 212 "Sendfile test ============================================"
14162
14163 test_213() {
14164         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
14165         cancel_lru_locks osc
14166         lctl set_param fail_loc=0x8000040f
14167         # generate a read lock
14168         cat $DIR/$tfile > /dev/null
14169         # write to the file, it will try to cancel the above read lock.
14170         cat /etc/hosts >> $DIR/$tfile
14171 }
14172 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
14173
14174 test_214() { # for bug 20133
14175         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
14176         for (( i=0; i < 340; i++ )) ; do
14177                 touch $DIR/$tdir/d214c/a$i
14178         done
14179
14180         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
14181         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
14182         ls $DIR/d214c || error "ls $DIR/d214c failed"
14183         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
14184         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
14185 }
14186 run_test 214 "hash-indexed directory test - bug 20133"
14187
14188 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
14189 create_lnet_proc_files() {
14190         lctl get_param -n $1 >$TMP/lnet_$1.sys || error "cannot read lnet.$1"
14191 }
14192
14193 # counterpart of create_lnet_proc_files
14194 remove_lnet_proc_files() {
14195         rm -f $TMP/lnet_$1.sys
14196 }
14197
14198 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
14199 # 3rd arg as regexp for body
14200 check_lnet_proc_stats() {
14201         local l=$(cat "$TMP/lnet_$1" |wc -l)
14202         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
14203
14204         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
14205 }
14206
14207 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
14208 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
14209 # optional and can be regexp for 2nd line (lnet.routes case)
14210 check_lnet_proc_entry() {
14211         local blp=2          # blp stands for 'position of 1st line of body'
14212         [ -z "$5" ] || blp=3 # lnet.routes case
14213
14214         local l=$(cat "$TMP/lnet_$1" |wc -l)
14215         # subtracting one from $blp because the body can be empty
14216         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
14217
14218         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
14219                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
14220
14221         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
14222                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
14223
14224         # bail out if any unexpected line happened
14225         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
14226         [ "$?" != 0 ] || error "$2 misformatted"
14227 }
14228
14229 test_215() { # for bugs 18102, 21079, 21517
14230         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14231
14232         local N='(0|[1-9][0-9]*)'       # non-negative numeric
14233         local P='[1-9][0-9]*'           # positive numeric
14234         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
14235         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
14236         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
14237         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
14238
14239         local L1 # regexp for 1st line
14240         local L2 # regexp for 2nd line (optional)
14241         local BR # regexp for the rest (body)
14242
14243         # lnet.stats should look as 11 space-separated non-negative numerics
14244         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
14245         create_lnet_proc_files "stats"
14246         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
14247         remove_lnet_proc_files "stats"
14248
14249         # lnet.routes should look like this:
14250         # Routing disabled/enabled
14251         # net hops priority state router
14252         # where net is a string like tcp0, hops > 0, priority >= 0,
14253         # state is up/down,
14254         # router is a string like 192.168.1.1@tcp2
14255         L1="^Routing (disabled|enabled)$"
14256         L2="^net +hops +priority +state +router$"
14257         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
14258         create_lnet_proc_files "routes"
14259         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
14260         remove_lnet_proc_files "routes"
14261
14262         # lnet.routers should look like this:
14263         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
14264         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
14265         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
14266         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
14267         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
14268         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
14269         create_lnet_proc_files "routers"
14270         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
14271         remove_lnet_proc_files "routers"
14272
14273         # lnet.peers should look like this:
14274         # nid refs state last max rtr min tx min queue
14275         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
14276         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
14277         # numeric (0 or >0 or <0), queue >= 0.
14278         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
14279         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
14280         create_lnet_proc_files "peers"
14281         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
14282         remove_lnet_proc_files "peers"
14283
14284         # lnet.buffers  should look like this:
14285         # pages count credits min
14286         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
14287         L1="^pages +count +credits +min$"
14288         BR="^ +$N +$N +$I +$I$"
14289         create_lnet_proc_files "buffers"
14290         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
14291         remove_lnet_proc_files "buffers"
14292
14293         # lnet.nis should look like this:
14294         # nid status alive refs peer rtr max tx min
14295         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
14296         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
14297         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
14298         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
14299         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
14300         create_lnet_proc_files "nis"
14301         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
14302         remove_lnet_proc_files "nis"
14303
14304         # can we successfully write to lnet.stats?
14305         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
14306 }
14307 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
14308
14309 test_216() { # bug 20317
14310         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14311         remote_ost_nodsh && skip "remote OST with nodsh"
14312
14313         local node
14314         local facets=$(get_facets OST)
14315         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
14316
14317         save_lustre_params client "osc.*.contention_seconds" > $p
14318         save_lustre_params $facets \
14319                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
14320         save_lustre_params $facets \
14321                 "ldlm.namespaces.filter-*.contended_locks" >> $p
14322         save_lustre_params $facets \
14323                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
14324         clear_stats osc.*.osc_stats
14325
14326         # agressive lockless i/o settings
14327         do_nodes $(comma_list $(osts_nodes)) \
14328                 "lctl set_param -n ldlm.namespaces.*.max_nolock_bytes=2000000 \
14329                         ldlm.namespaces.filter-*.contended_locks=0 \
14330                         ldlm.namespaces.filter-*.contention_seconds=60"
14331         lctl set_param -n osc.*.contention_seconds=60
14332
14333         $DIRECTIO write $DIR/$tfile 0 10 4096
14334         $CHECKSTAT -s 40960 $DIR/$tfile
14335
14336         # disable lockless i/o
14337         do_nodes $(comma_list $(osts_nodes)) \
14338                 "lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes=0 \
14339                         ldlm.namespaces.filter-*.contended_locks=32 \
14340                         ldlm.namespaces.filter-*.contention_seconds=0"
14341         lctl set_param -n osc.*.contention_seconds=0
14342         clear_stats osc.*.osc_stats
14343
14344         dd if=/dev/zero of=$DIR/$tfile count=0
14345         $CHECKSTAT -s 0 $DIR/$tfile
14346
14347         restore_lustre_params <$p
14348         rm -f $p
14349         rm $DIR/$tfile
14350 }
14351 run_test 216 "check lockless direct write updates file size and kms correctly"
14352
14353 test_217() { # bug 22430
14354         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14355
14356         local node
14357         local nid
14358
14359         for node in $(nodes_list); do
14360                 nid=$(host_nids_address $node $NETTYPE)
14361                 if [[ $nid = *-* ]] ; then
14362                         echo "lctl ping $(h2nettype $nid)"
14363                         lctl ping $(h2nettype $nid)
14364                 else
14365                         echo "skipping $node (no hyphen detected)"
14366                 fi
14367         done
14368 }
14369 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
14370
14371 test_218() {
14372        # do directio so as not to populate the page cache
14373        log "creating a 10 Mb file"
14374        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
14375        log "starting reads"
14376        dd if=$DIR/$tfile of=/dev/null bs=4096 &
14377        log "truncating the file"
14378        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
14379        log "killing dd"
14380        kill %+ || true # reads might have finished
14381        echo "wait until dd is finished"
14382        wait
14383        log "removing the temporary file"
14384        rm -rf $DIR/$tfile || error "tmp file removal failed"
14385 }
14386 run_test 218 "parallel read and truncate should not deadlock"
14387
14388 test_219() {
14389         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14390
14391         # write one partial page
14392         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
14393         # set no grant so vvp_io_commit_write will do sync write
14394         $LCTL set_param fail_loc=0x411
14395         # write a full page at the end of file
14396         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
14397
14398         $LCTL set_param fail_loc=0
14399         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
14400         $LCTL set_param fail_loc=0x411
14401         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
14402
14403         # LU-4201
14404         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
14405         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
14406 }
14407 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
14408
14409 test_220() { #LU-325
14410         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14411         remote_ost_nodsh && skip "remote OST with nodsh"
14412         remote_mds_nodsh && skip "remote MDS with nodsh"
14413         remote_mgs_nodsh && skip "remote MGS with nodsh"
14414
14415         local OSTIDX=0
14416
14417         # create on MDT0000 so the last_id and next_id are correct
14418         mkdir $DIR/$tdir
14419         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
14420         OST=${OST%_UUID}
14421
14422         # on the mdt's osc
14423         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
14424         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
14425                         osc.$mdtosc_proc1.prealloc_last_id)
14426         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
14427                         osc.$mdtosc_proc1.prealloc_next_id)
14428
14429         $LFS df -i
14430
14431         if ! combined_mgs_mds ; then
14432                 mount_mgs_client
14433         fi
14434
14435         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
14436         #define OBD_FAIL_OST_ENOINO              0x229
14437         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
14438         create_pool $FSNAME.$TESTNAME || return 1
14439         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
14440
14441         $LFS setstripe $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
14442
14443         MDSOBJS=$((last_id - next_id))
14444         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
14445
14446         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
14447         echo "OST still has $count kbytes free"
14448
14449         echo "create $MDSOBJS files @next_id..."
14450         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
14451
14452         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
14453                         osc.$mdtosc_proc1.prealloc_last_id)
14454         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
14455                         osc.$mdtosc_proc1.prealloc_next_id)
14456
14457         echo "after creation, last_id=$last_id2, next_id=$next_id2"
14458         $LFS df -i
14459
14460         echo "cleanup..."
14461
14462         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
14463         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
14464
14465         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST ||
14466                 error "$LCTL pool_remove $FSNAME.$TESTNAME $OST failed"
14467         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
14468                 error "$LCTL pool_destroy $FSNAME.$TESTNAME failed"
14469         echo "unlink $MDSOBJS files @$next_id..."
14470         unlinkmany $DIR/$tdir/f $MDSOBJS || error "unlinkmany failed"
14471
14472         if ! combined_mgs_mds ; then
14473                 umount_mgs_client
14474         fi
14475 }
14476 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
14477
14478 test_221() {
14479         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14480
14481         dd if=`which date` of=$MOUNT/date oflag=sync
14482         chmod +x $MOUNT/date
14483
14484         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
14485         $LCTL set_param fail_loc=0x80001401
14486
14487         $MOUNT/date > /dev/null
14488         rm -f $MOUNT/date
14489 }
14490 run_test 221 "make sure fault and truncate race to not cause OOM"
14491
14492 test_222a () {
14493         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14494
14495         rm -rf $DIR/$tdir
14496         test_mkdir $DIR/$tdir
14497         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14498         createmany -o $DIR/$tdir/$tfile 10
14499         cancel_lru_locks mdc
14500         cancel_lru_locks osc
14501         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
14502         $LCTL set_param fail_loc=0x31a
14503         ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
14504         $LCTL set_param fail_loc=0
14505         rm -r $DIR/$tdir
14506 }
14507 run_test 222a "AGL for ls should not trigger CLIO lock failure"
14508
14509 test_222b () {
14510         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14511
14512         rm -rf $DIR/$tdir
14513         test_mkdir $DIR/$tdir
14514         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14515         createmany -o $DIR/$tdir/$tfile 10
14516         cancel_lru_locks mdc
14517         cancel_lru_locks osc
14518         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
14519         $LCTL set_param fail_loc=0x31a
14520         rm -r $DIR/$tdir || error "AGL for rmdir failed"
14521         $LCTL set_param fail_loc=0
14522 }
14523 run_test 222b "AGL for rmdir should not trigger CLIO lock failure"
14524
14525 test_223 () {
14526         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14527
14528         rm -rf $DIR/$tdir
14529         test_mkdir $DIR/$tdir
14530         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14531         createmany -o $DIR/$tdir/$tfile 10
14532         cancel_lru_locks mdc
14533         cancel_lru_locks osc
14534         #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
14535         $LCTL set_param fail_loc=0x31b
14536         ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
14537         $LCTL set_param fail_loc=0
14538         rm -r $DIR/$tdir
14539 }
14540 run_test 223 "osc reenqueue if without AGL lock granted ======================="
14541
14542 test_224a() { # LU-1039, MRP-303
14543         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14544
14545         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
14546         $LCTL set_param fail_loc=0x508
14547         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
14548         $LCTL set_param fail_loc=0
14549         df $DIR
14550 }
14551 run_test 224a "Don't panic on bulk IO failure"
14552
14553 test_224b() { # LU-1039, MRP-303
14554         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14555
14556         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
14557         cancel_lru_locks osc
14558         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
14559         $LCTL set_param fail_loc=0x515
14560         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
14561         $LCTL set_param fail_loc=0
14562         df $DIR
14563 }
14564 run_test 224b "Don't panic on bulk IO failure"
14565
14566 test_224c() { # LU-6441
14567         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14568         remote_mds_nodsh && skip "remote MDS with nodsh"
14569
14570         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
14571         save_writethrough $p
14572         set_cache writethrough on
14573
14574         local pages_per_rpc=$($LCTL get_param \
14575                                 osc.*.max_pages_per_rpc)
14576         local at_max=$($LCTL get_param -n at_max)
14577         local timeout=$($LCTL get_param -n timeout)
14578         local test_at="at_max"
14579         local param_at="$FSNAME.sys.at_max"
14580         local test_timeout="timeout"
14581         local param_timeout="$FSNAME.sys.timeout"
14582
14583         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
14584
14585         set_persistent_param_and_check client "$test_at" "$param_at" 0
14586         set_persistent_param_and_check client "$test_timeout" "$param_timeout" 5
14587
14588         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3 0x520
14589         do_facet ost1 "$LCTL set_param fail_loc=0x520"
14590         $LFS setstripe -c 1 -i 0 $DIR/$tfile
14591         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
14592         sync
14593         do_facet ost1 "$LCTL set_param fail_loc=0"
14594
14595         set_persistent_param_and_check client "$test_at" "$param_at" $at_max
14596         set_persistent_param_and_check client "$test_timeout" "$param_timeout" \
14597                 $timeout
14598
14599         $LCTL set_param -n $pages_per_rpc
14600         restore_lustre_params < $p
14601         rm -f $p
14602 }
14603 run_test 224c "Don't hang if one of md lost during large bulk RPC"
14604
14605 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
14606 test_225a () {
14607         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14608         if [ -z ${MDSSURVEY} ]; then
14609                 skip_env "mds-survey not found"
14610         fi
14611         [ $MDS1_VERSION -ge $(version_code 2.2.51) ] ||
14612                 skip "Need MDS version at least 2.2.51"
14613
14614         local mds=$(facet_host $SINGLEMDS)
14615         local target=$(do_nodes $mds 'lctl dl' |
14616                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
14617
14618         local cmd1="file_count=1000 thrhi=4"
14619         local cmd2="dir_count=2 layer=mdd stripe_count=0"
14620         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
14621         local cmd="$cmd1 $cmd2 $cmd3"
14622
14623         rm -f ${TMP}/mds_survey*
14624         echo + $cmd
14625         eval $cmd || error "mds-survey with zero-stripe failed"
14626         cat ${TMP}/mds_survey*
14627         rm -f ${TMP}/mds_survey*
14628 }
14629 run_test 225a "Metadata survey sanity with zero-stripe"
14630
14631 test_225b () {
14632         if [ -z ${MDSSURVEY} ]; then
14633                 skip_env "mds-survey not found"
14634         fi
14635         [ $MDS1_VERSION -ge $(version_code 2.2.51) ] ||
14636                 skip "Need MDS version at least 2.2.51"
14637         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14638         remote_mds_nodsh && skip "remote MDS with nodsh"
14639         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
14640                 skip_env "Need to mount OST to test"
14641         fi
14642
14643         local mds=$(facet_host $SINGLEMDS)
14644         local target=$(do_nodes $mds 'lctl dl' |
14645                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
14646
14647         local cmd1="file_count=1000 thrhi=4"
14648         local cmd2="dir_count=2 layer=mdd stripe_count=1"
14649         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
14650         local cmd="$cmd1 $cmd2 $cmd3"
14651
14652         rm -f ${TMP}/mds_survey*
14653         echo + $cmd
14654         eval $cmd || error "mds-survey with stripe_count failed"
14655         cat ${TMP}/mds_survey*
14656         rm -f ${TMP}/mds_survey*
14657 }
14658 run_test 225b "Metadata survey sanity with stripe_count = 1"
14659
14660 mcreate_path2fid () {
14661         local mode=$1
14662         local major=$2
14663         local minor=$3
14664         local name=$4
14665         local desc=$5
14666         local path=$DIR/$tdir/$name
14667         local fid
14668         local rc
14669         local fid_path
14670
14671         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
14672                 error "cannot create $desc"
14673
14674         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
14675         rc=$?
14676         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
14677
14678         fid_path=$($LFS fid2path $MOUNT $fid)
14679         rc=$?
14680         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
14681
14682         [ "$path" == "$fid_path" ] ||
14683                 error "fid2path returned $fid_path, expected $path"
14684
14685         echo "pass with $path and $fid"
14686 }
14687
14688 test_226a () {
14689         rm -rf $DIR/$tdir
14690         mkdir -p $DIR/$tdir
14691
14692         mcreate_path2fid 0010666 0 0 fifo "FIFO"
14693         mcreate_path2fid 0020666 1 3 null "character special file (null)"
14694         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
14695         mcreate_path2fid 0040666 0 0 dir "directory"
14696         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
14697         mcreate_path2fid 0100666 0 0 file "regular file"
14698         mcreate_path2fid 0120666 0 0 link "symbolic link"
14699         mcreate_path2fid 0140666 0 0 sock "socket"
14700 }
14701 run_test 226a "call path2fid and fid2path on files of all type"
14702
14703 test_226b () {
14704         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14705
14706         local MDTIDX=1
14707
14708         rm -rf $DIR/$tdir
14709         mkdir -p $DIR/$tdir
14710         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
14711                 error "create remote directory failed"
14712         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
14713         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
14714                                 "character special file (null)"
14715         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
14716                                 "character special file (no device)"
14717         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
14718         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
14719                                 "block special file (loop)"
14720         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
14721         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
14722         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
14723 }
14724 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
14725
14726 # LU-1299 Executing or running ldd on a truncated executable does not
14727 # cause an out-of-memory condition.
14728 test_227() {
14729         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14730         [ -z "$(which ldd)" ] && skip_env "should have ldd tool"
14731
14732         dd if=$(which date) of=$MOUNT/date bs=1k count=1
14733         chmod +x $MOUNT/date
14734
14735         $MOUNT/date > /dev/null
14736         ldd $MOUNT/date > /dev/null
14737         rm -f $MOUNT/date
14738 }
14739 run_test 227 "running truncated executable does not cause OOM"
14740
14741 # LU-1512 try to reuse idle OI blocks
14742 test_228a() {
14743         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14744         remote_mds_nodsh && skip "remote MDS with nodsh"
14745         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
14746
14747         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14748         local myDIR=$DIR/$tdir
14749
14750         mkdir -p $myDIR
14751         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14752         $LCTL set_param fail_loc=0x80001002
14753         createmany -o $myDIR/t- 10000
14754         $LCTL set_param fail_loc=0
14755         # The guard is current the largest FID holder
14756         touch $myDIR/guard
14757         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14758                     tr -d '[')
14759         local IDX=$(($SEQ % 64))
14760
14761         do_facet $SINGLEMDS sync
14762         # Make sure journal flushed.
14763         sleep 6
14764         local blk1=$(do_facet $SINGLEMDS \
14765                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14766                      grep Blockcount | awk '{print $4}')
14767
14768         # Remove old files, some OI blocks will become idle.
14769         unlinkmany $myDIR/t- 10000
14770         # Create new files, idle OI blocks should be reused.
14771         createmany -o $myDIR/t- 2000
14772         do_facet $SINGLEMDS sync
14773         # Make sure journal flushed.
14774         sleep 6
14775         local blk2=$(do_facet $SINGLEMDS \
14776                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14777                      grep Blockcount | awk '{print $4}')
14778
14779         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14780 }
14781 run_test 228a "try to reuse idle OI blocks"
14782
14783 test_228b() {
14784         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14785         remote_mds_nodsh && skip "remote MDS with nodsh"
14786         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
14787
14788         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14789         local myDIR=$DIR/$tdir
14790
14791         mkdir -p $myDIR
14792         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14793         $LCTL set_param fail_loc=0x80001002
14794         createmany -o $myDIR/t- 10000
14795         $LCTL set_param fail_loc=0
14796         # The guard is current the largest FID holder
14797         touch $myDIR/guard
14798         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14799                     tr -d '[')
14800         local IDX=$(($SEQ % 64))
14801
14802         do_facet $SINGLEMDS sync
14803         # Make sure journal flushed.
14804         sleep 6
14805         local blk1=$(do_facet $SINGLEMDS \
14806                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14807                      grep Blockcount | awk '{print $4}')
14808
14809         # Remove old files, some OI blocks will become idle.
14810         unlinkmany $myDIR/t- 10000
14811
14812         # stop the MDT
14813         stop $SINGLEMDS || error "Fail to stop MDT."
14814         # remount the MDT
14815         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
14816
14817         df $MOUNT || error "Fail to df."
14818         # Create new files, idle OI blocks should be reused.
14819         createmany -o $myDIR/t- 2000
14820         do_facet $SINGLEMDS sync
14821         # Make sure journal flushed.
14822         sleep 6
14823         local blk2=$(do_facet $SINGLEMDS \
14824                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14825                      grep Blockcount | awk '{print $4}')
14826
14827         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14828 }
14829 run_test 228b "idle OI blocks can be reused after MDT restart"
14830
14831 #LU-1881
14832 test_228c() {
14833         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14834         remote_mds_nodsh && skip "remote MDS with nodsh"
14835         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
14836
14837         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14838         local myDIR=$DIR/$tdir
14839
14840         mkdir -p $myDIR
14841         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14842         $LCTL set_param fail_loc=0x80001002
14843         # 20000 files can guarantee there are index nodes in the OI file
14844         createmany -o $myDIR/t- 20000
14845         $LCTL set_param fail_loc=0
14846         # The guard is current the largest FID holder
14847         touch $myDIR/guard
14848         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14849                     tr -d '[')
14850         local IDX=$(($SEQ % 64))
14851
14852         do_facet $SINGLEMDS sync
14853         # Make sure journal flushed.
14854         sleep 6
14855         local blk1=$(do_facet $SINGLEMDS \
14856                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14857                      grep Blockcount | awk '{print $4}')
14858
14859         # Remove old files, some OI blocks will become idle.
14860         unlinkmany $myDIR/t- 20000
14861         rm -f $myDIR/guard
14862         # The OI file should become empty now
14863
14864         # Create new files, idle OI blocks should be reused.
14865         createmany -o $myDIR/t- 2000
14866         do_facet $SINGLEMDS sync
14867         # Make sure journal flushed.
14868         sleep 6
14869         local blk2=$(do_facet $SINGLEMDS \
14870                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14871                      grep Blockcount | awk '{print $4}')
14872
14873         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14874 }
14875 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
14876
14877 test_229() { # LU-2482, LU-3448
14878         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14879         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
14880         [ $MDS1_VERSION -lt $(version_code 2.4.53) ] &&
14881                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53"
14882
14883         rm -f $DIR/$tfile
14884
14885         # Create a file with a released layout and stripe count 2.
14886         $MULTIOP $DIR/$tfile H2c ||
14887                 error "failed to create file with released layout"
14888
14889         $LFS getstripe -v $DIR/$tfile
14890
14891         local pattern=$($LFS getstripe -L $DIR/$tfile)
14892         [ X"$pattern" = X"released" ] || error "pattern error ($pattern)"
14893
14894         local stripe_count=$($LFS getstripe -c $DIR/$tfile) ||
14895                 error "getstripe"
14896         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
14897         stat $DIR/$tfile || error "failed to stat released file"
14898
14899         chown $RUNAS_ID $DIR/$tfile ||
14900                 error "chown $RUNAS_ID $DIR/$tfile failed"
14901
14902         chgrp $RUNAS_ID $DIR/$tfile ||
14903                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
14904
14905         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
14906         rm $DIR/$tfile || error "failed to remove released file"
14907 }
14908 run_test 229 "getstripe/stat/rm/attr changes work on released files"
14909
14910 test_230a() {
14911         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14912         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14913         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
14914                 skip "Need MDS version at least 2.11.52"
14915
14916         local MDTIDX=1
14917
14918         test_mkdir $DIR/$tdir
14919         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
14920         local mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230_local)
14921         [ $mdt_idx -ne 0 ] &&
14922                 error "create local directory on wrong MDT $mdt_idx"
14923
14924         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
14925                         error "create remote directory failed"
14926         local mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230)
14927         [ $mdt_idx -ne $MDTIDX ] &&
14928                 error "create remote directory on wrong MDT $mdt_idx"
14929
14930         createmany -o $DIR/$tdir/test_230/t- 10 ||
14931                 error "create files on remote directory failed"
14932         mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230/t-0)
14933         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
14934         rm -r $DIR/$tdir || error "unlink remote directory failed"
14935 }
14936 run_test 230a "Create remote directory and files under the remote directory"
14937
14938 test_230b() {
14939         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14940         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14941         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
14942                 skip "Need MDS version at least 2.11.52"
14943
14944         local MDTIDX=1
14945         local mdt_index
14946         local i
14947         local file
14948         local pid
14949         local stripe_count
14950         local migrate_dir=$DIR/$tdir/migrate_dir
14951         local other_dir=$DIR/$tdir/other_dir
14952
14953         test_mkdir $DIR/$tdir
14954         test_mkdir -i0 -c1 $migrate_dir
14955         test_mkdir -i0 -c1 $other_dir
14956         for ((i=0; i<10; i++)); do
14957                 mkdir -p $migrate_dir/dir_${i}
14958                 createmany -o $migrate_dir/dir_${i}/f 10 ||
14959                         error "create files under remote dir failed $i"
14960         done
14961
14962         cp /etc/passwd $migrate_dir/$tfile
14963         cp /etc/passwd $other_dir/$tfile
14964         chattr +SAD $migrate_dir
14965         chattr +SAD $migrate_dir/$tfile
14966
14967         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
14968         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
14969         local old_dir_mode=$(stat -c%f $migrate_dir)
14970         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
14971
14972         mkdir -p $migrate_dir/dir_default_stripe2
14973         $LFS setstripe -c 2 $migrate_dir/dir_default_stripe2
14974         $LFS setstripe -c 2 $migrate_dir/${tfile}_stripe2
14975
14976         mkdir -p $other_dir
14977         ln $migrate_dir/$tfile $other_dir/luna
14978         ln $migrate_dir/$tfile $migrate_dir/sofia
14979         ln $other_dir/$tfile $migrate_dir/david
14980         ln -s $migrate_dir/$tfile $other_dir/zachary
14981         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
14982         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
14983
14984         $LFS migrate -m $MDTIDX $migrate_dir ||
14985                 error "fails on migrating remote dir to MDT1"
14986
14987         echo "migratate to MDT1, then checking.."
14988         for ((i = 0; i < 10; i++)); do
14989                 for file in $(find $migrate_dir/dir_${i}); do
14990                         mdt_index=$($LFS getstripe -m $file)
14991                         [ $mdt_index == $MDTIDX ] ||
14992                                 error "$file is not on MDT${MDTIDX}"
14993                 done
14994         done
14995
14996         # the multiple link file should still in MDT0
14997         mdt_index=$($LFS getstripe -m $migrate_dir/$tfile)
14998         [ $mdt_index == 0 ] ||
14999                 error "$file is not on MDT${MDTIDX}"
15000
15001         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
15002         [ "$old_dir_flag" = "$new_dir_flag" ] ||
15003                 error " expect $old_dir_flag get $new_dir_flag"
15004
15005         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
15006         [ "$old_file_flag" = "$new_file_flag" ] ||
15007                 error " expect $old_file_flag get $new_file_flag"
15008
15009         local new_dir_mode=$(stat -c%f $migrate_dir)
15010         [ "$old_dir_mode" = "$new_dir_mode" ] ||
15011                 error "expect mode $old_dir_mode get $new_dir_mode"
15012
15013         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
15014         [ "$old_file_mode" = "$new_file_mode" ] ||
15015                 error "expect mode $old_file_mode get $new_file_mode"
15016
15017         diff /etc/passwd $migrate_dir/$tfile ||
15018                 error "$tfile different after migration"
15019
15020         diff /etc/passwd $other_dir/luna ||
15021                 error "luna different after migration"
15022
15023         diff /etc/passwd $migrate_dir/sofia ||
15024                 error "sofia different after migration"
15025
15026         diff /etc/passwd $migrate_dir/david ||
15027                 error "david different after migration"
15028
15029         diff /etc/passwd $other_dir/zachary ||
15030                 error "zachary different after migration"
15031
15032         diff /etc/passwd $migrate_dir/${tfile}_ln ||
15033                 error "${tfile}_ln different after migration"
15034
15035         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
15036                 error "${tfile}_ln_other different after migration"
15037
15038         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
15039         [ $stripe_count = 2 ] ||
15040                 error "dir strpe_count $d != 2 after migration."
15041
15042         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
15043         [ $stripe_count = 2 ] ||
15044                 error "file strpe_count $d != 2 after migration."
15045
15046         #migrate back to MDT0
15047         MDTIDX=0
15048
15049         $LFS migrate -m $MDTIDX $migrate_dir ||
15050                 error "fails on migrating remote dir to MDT0"
15051
15052         echo "migrate back to MDT0, checking.."
15053         for file in $(find $migrate_dir); do
15054                 mdt_index=$($LFS getstripe -m $file)
15055                 [ $mdt_index == $MDTIDX ] ||
15056                         error "$file is not on MDT${MDTIDX}"
15057         done
15058
15059         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
15060         [ "$old_dir_flag" = "$new_dir_flag" ] ||
15061                 error " expect $old_dir_flag get $new_dir_flag"
15062
15063         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
15064         [ "$old_file_flag" = "$new_file_flag" ] ||
15065                 error " expect $old_file_flag get $new_file_flag"
15066
15067         local new_dir_mode=$(stat -c%f $migrate_dir)
15068         [ "$old_dir_mode" = "$new_dir_mode" ] ||
15069                 error "expect mode $old_dir_mode get $new_dir_mode"
15070
15071         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
15072         [ "$old_file_mode" = "$new_file_mode" ] ||
15073                 error "expect mode $old_file_mode get $new_file_mode"
15074
15075         diff /etc/passwd ${migrate_dir}/$tfile ||
15076                 error "$tfile different after migration"
15077
15078         diff /etc/passwd ${other_dir}/luna ||
15079                 error "luna different after migration"
15080
15081         diff /etc/passwd ${migrate_dir}/sofia ||
15082                 error "sofia different after migration"
15083
15084         diff /etc/passwd ${other_dir}/zachary ||
15085                 error "zachary different after migration"
15086
15087         diff /etc/passwd $migrate_dir/${tfile}_ln ||
15088                 error "${tfile}_ln different after migration"
15089
15090         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
15091                 error "${tfile}_ln_other different after migration"
15092
15093         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
15094         [ $stripe_count = 2 ] ||
15095                 error "dir strpe_count $d != 2 after migration."
15096
15097         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
15098         [ $stripe_count = 2 ] ||
15099                 error "file strpe_count $d != 2 after migration."
15100
15101         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15102 }
15103 run_test 230b "migrate directory"
15104
15105 test_230c() {
15106         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15107         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15108         remote_mds_nodsh && skip "remote MDS with nodsh"
15109         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15110                 skip "Need MDS version at least 2.11.52"
15111
15112         local MDTIDX=1
15113         local total=3
15114         local mdt_index
15115         local file
15116         local migrate_dir=$DIR/$tdir/migrate_dir
15117
15118         #If migrating directory fails in the middle, all entries of
15119         #the directory is still accessiable.
15120         test_mkdir $DIR/$tdir
15121         test_mkdir -i0 -c1 $migrate_dir
15122         test_mkdir -i1 -c1 $DIR/$tdir/remote_dir
15123         stat $migrate_dir
15124         createmany -o $migrate_dir/f $total ||
15125                 error "create files under ${migrate_dir} failed"
15126
15127         # fail after migrating top dir, and this will fail only once, so the
15128         # first sub file migration will fail (currently f3), others succeed.
15129         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
15130         do_facet mds1 lctl set_param fail_loc=0x1801
15131         local t=$(ls $migrate_dir | wc -l)
15132         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
15133                 error "migrate should fail"
15134         local u=$(ls $migrate_dir | wc -l)
15135         [ "$u" == "$t" ] || error "$u != $t during migration"
15136
15137         # add new dir/file should succeed
15138         mkdir $migrate_dir/dir ||
15139                 error "mkdir failed under migrating directory"
15140         touch $migrate_dir/file ||
15141                 error "create file failed under migrating directory"
15142
15143         # add file with existing name should fail
15144         for file in $migrate_dir/f*; do
15145                 stat $file > /dev/null || error "stat $file failed"
15146                 $OPENFILE -f O_CREAT:O_EXCL $file &&
15147                         error "open(O_CREAT|O_EXCL) $file should fail"
15148                 $MULTIOP $file m && error "create $file should fail"
15149                 touch $DIR/$tdir/remote_dir/$tfile ||
15150                         error "touch $tfile failed"
15151                 ln $DIR/$tdir/remote_dir/$tfile $file &&
15152                         error "link $file should fail"
15153                 mdt_index=$($LFS getstripe -m $file)
15154                 if [ $mdt_index == 0 ]; then
15155                         # file failed to migrate is not allowed to rename to
15156                         mv $DIR/$tdir/remote_dir/$tfile $file &&
15157                                 error "rename to $file should fail"
15158                 else
15159                         mv $DIR/$tdir/remote_dir/$tfile $file ||
15160                                 error "rename to $file failed"
15161                 fi
15162                 echo hello >> $file || error "write $file failed"
15163         done
15164
15165         # resume migration with different options should fail
15166         $LFS migrate -m 0 $migrate_dir &&
15167                 error "migrate -m 0 $migrate_dir should fail"
15168
15169         $LFS migrate -m $MDTIDX -c 2 $migrate_dir &&
15170                 error "migrate -c 2 $migrate_dir should fail"
15171
15172         # resume migration should succeed
15173         $LFS migrate -m $MDTIDX $migrate_dir ||
15174                 error "migrate $migrate_dir failed"
15175
15176         echo "Finish migration, then checking.."
15177         for file in $(find $migrate_dir); do
15178                 mdt_index=$($LFS getstripe -m $file)
15179                 [ $mdt_index == $MDTIDX ] ||
15180                         error "$file is not on MDT${MDTIDX}"
15181         done
15182
15183         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15184 }
15185 run_test 230c "check directory accessiblity if migration failed"
15186
15187 test_230d() {
15188         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15189         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15190         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15191                 skip "Need MDS version at least 2.11.52"
15192         # LU-11235
15193         [ "$mds1_FSTYPE" == "zfs" ] && skip "skip ZFS backend"
15194
15195         local migrate_dir=$DIR/$tdir/migrate_dir
15196         local old_index
15197         local new_index
15198         local old_count
15199         local new_count
15200         local new_hash
15201         local mdt_index
15202         local i
15203         local j
15204
15205         old_index=$((RANDOM % MDSCOUNT))
15206         old_count=$((MDSCOUNT - old_index))
15207         new_index=$((RANDOM % MDSCOUNT))
15208         new_count=$((MDSCOUNT - new_index))
15209         new_hash="all_char"
15210
15211         [ $old_count -gt 1 ] && old_count=$((old_count - RANDOM % old_count))
15212         [ $new_count -gt 1 ] && new_count=$((new_count - RANDOM % new_count))
15213
15214         test_mkdir $DIR/$tdir
15215         test_mkdir -i $old_index -c $old_count $migrate_dir
15216
15217         for ((i=0; i<100; i++)); do
15218                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
15219                 createmany -o $migrate_dir/dir_${i}/f 100 ||
15220                         error "create files under remote dir failed $i"
15221         done
15222
15223         echo -n "Migrate from MDT$old_index "
15224         [ $old_count -gt 1 ] && echo -n "... MDT$((old_index + old_count - 1)) "
15225         echo -n "to MDT$new_index"
15226         [ $new_count -gt 1 ] && echo -n " ... MDT$((new_index + new_count - 1))"
15227         echo
15228
15229         echo "$LFS migrate -m$new_index -c$new_count -H $new_hash $migrate_dir"
15230         $LFS migrate -m $new_index -c $new_count -H $new_hash $migrate_dir ||
15231                 error "migrate remote dir error"
15232
15233         echo "Finish migration, then checking.."
15234         for file in $(find $migrate_dir); do
15235                 mdt_index=$($LFS getstripe -m $file)
15236                 if [ $mdt_index -lt $new_index ] ||
15237                    [ $mdt_index -gt $((new_index + new_count - 1)) ]; then
15238                         error "$file is on MDT$mdt_index"
15239                 fi
15240         done
15241
15242         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15243 }
15244 run_test 230d "check migrate big directory"
15245
15246 test_230e() {
15247         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15248         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15249         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15250                 skip "Need MDS version at least 2.11.52"
15251
15252         local i
15253         local j
15254         local a_fid
15255         local b_fid
15256
15257         mkdir -p $DIR/$tdir
15258         mkdir $DIR/$tdir/migrate_dir
15259         mkdir $DIR/$tdir/other_dir
15260         touch $DIR/$tdir/migrate_dir/a
15261         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
15262         ls $DIR/$tdir/other_dir
15263
15264         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15265                 error "migrate dir fails"
15266
15267         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
15268         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
15269
15270         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15271         [ $mdt_index == 0 ] || error "a is not on MDT0"
15272
15273         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
15274                 error "migrate dir fails"
15275
15276         mdt_index=$($LFS getstripe -m $DIR/$tdir/other_dir)
15277         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
15278
15279         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15280         [ $mdt_index == 1 ] || error "a is not on MDT1"
15281
15282         mdt_index=$($LFS getstripe -m $DIR/$tdir/other_dir/b)
15283         [ $mdt_index == 1 ] || error "b is not on MDT1"
15284
15285         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
15286         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
15287
15288         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
15289
15290         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15291 }
15292 run_test 230e "migrate mulitple local link files"
15293
15294 test_230f() {
15295         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15296         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15297         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15298                 skip "Need MDS version at least 2.11.52"
15299
15300         local a_fid
15301         local ln_fid
15302
15303         mkdir -p $DIR/$tdir
15304         mkdir $DIR/$tdir/migrate_dir
15305         $LFS mkdir -i1 $DIR/$tdir/other_dir
15306         touch $DIR/$tdir/migrate_dir/a
15307         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
15308         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
15309         ls $DIR/$tdir/other_dir
15310
15311         # a should be migrated to MDT1, since no other links on MDT0
15312         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15313                 error "#1 migrate dir fails"
15314         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
15315         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
15316         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15317         [ $mdt_index == 1 ] || error "a is not on MDT1"
15318
15319         # a should stay on MDT1, because it is a mulitple link file
15320         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
15321                 error "#2 migrate dir fails"
15322         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15323         [ $mdt_index == 1 ] || error "a is not on MDT1"
15324
15325         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15326                 error "#3 migrate dir fails"
15327
15328         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
15329         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
15330         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
15331
15332         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
15333         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
15334
15335         # a should be migrated to MDT0, since no other links on MDT1
15336         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
15337                 error "#4 migrate dir fails"
15338         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15339         [ $mdt_index == 0 ] || error "a is not on MDT0"
15340
15341         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15342 }
15343 run_test 230f "migrate mulitple remote link files"
15344
15345 test_230g() {
15346         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15347         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15348         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15349                 skip "Need MDS version at least 2.11.52"
15350
15351         mkdir -p $DIR/$tdir/migrate_dir
15352
15353         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
15354                 error "migrating dir to non-exist MDT succeeds"
15355         true
15356 }
15357 run_test 230g "migrate dir to non-exist MDT"
15358
15359 test_230h() {
15360         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15361         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15362         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15363                 skip "Need MDS version at least 2.11.52"
15364
15365         local mdt_index
15366
15367         mkdir -p $DIR/$tdir/migrate_dir
15368
15369         $LFS migrate -m1 $DIR &&
15370                 error "migrating mountpoint1 should fail"
15371
15372         $LFS migrate -m1 $DIR/$tdir/.. &&
15373                 error "migrating mountpoint2 should fail"
15374
15375         # same as mv
15376         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. &&
15377                 error "migrating $tdir/migrate_dir/.. should fail"
15378
15379         true
15380 }
15381 run_test 230h "migrate .. and root"
15382
15383 test_230i() {
15384         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15385         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15386         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15387                 skip "Need MDS version at least 2.11.52"
15388
15389         mkdir -p $DIR/$tdir/migrate_dir
15390
15391         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
15392                 error "migration fails with a tailing slash"
15393
15394         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
15395                 error "migration fails with two tailing slashes"
15396 }
15397 run_test 230i "lfs migrate -m tolerates trailing slashes"
15398
15399 test_230j() {
15400         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
15401         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15402                 skip "Need MDS version at least 2.11.52"
15403
15404         $LFS mkdir -m 0 -c 1 $DIR/$tdir || error "mkdir $tdir failed"
15405         $LFS setstripe -E 1M -L mdt $DIR/$tdir/$tfile ||
15406                 error "create $tfile failed"
15407         cat /etc/passwd > $DIR/$tdir/$tfile
15408
15409         $LFS migrate -m 1 $DIR/$tdir
15410
15411         cmp /etc/passwd $DIR/$tdir/$tfile ||
15412                 error "DoM file mismatch after migration"
15413 }
15414 run_test 230j "DoM file data not changed after dir migration"
15415
15416 test_230k() {
15417         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs"
15418         [ $MDS1_VERSION -lt $(version_code 2.11.56) ] &&
15419                 skip "Need MDS version at least 2.11.56"
15420
15421         local total=20
15422         local files_on_starting_mdt=0
15423
15424         $LFS mkdir -i -1 -c 2 $DIR/$tdir || error "mkdir failed"
15425         $LFS getdirstripe $DIR/$tdir
15426         for i in $(seq $total); do
15427                 echo $((i*i - i)) > $DIR/$tdir/$tfile.$i || error "write failed"
15428                 [[ $($LFS getstripe -m $DIR/$tdir/$tfile.$i) -eq 0 ]] &&
15429                         files_on_starting_mdt=$((files_on_starting_mdt + 1))
15430         done
15431
15432         echo "$files_on_starting_mdt files on MDT0"
15433
15434         $LFS migrate -m 1,3 $DIR/$tdir || error "migrate -m 1,3 failed"
15435         $LFS getdirstripe $DIR/$tdir
15436
15437         files_on_starting_mdt=0
15438         for i in $(seq $total); do
15439                 $(echo $((i*i - i)) | cmp $DIR/$tdir/$tfile.$i -) ||
15440                         error "file $tfile.$i mismatch after migration"
15441                 [[ $($LFS getstripe -m $DIR/$tdir/$tfile.$i) -eq 1 ]] &&
15442                         files_on_starting_mdt=$((files_on_starting_mdt + 1))
15443         done
15444
15445         echo "$files_on_starting_mdt files on MDT1 after migration"
15446         [[ $files_on_starting_mdt -eq $total ]] && error "all files on MDT1"
15447
15448         $LFS migrate -m 0 -c 2 $DIR/$tdir || error "migrate -m 0 -c 2 failed"
15449         $LFS getdirstripe $DIR/$tdir
15450
15451         files_on_starting_mdt=0
15452         for i in $(seq $total); do
15453                 $(echo $((i*i - i)) | cmp $DIR/$tdir/$tfile.$i -) ||
15454                         error "file $tfile.$i mismatch after 2nd migration"
15455                 [[ $($LFS getstripe -m $DIR/$tdir/$tfile.$i) -eq 0 ]] &&
15456                         files_on_starting_mdt=$((files_on_starting_mdt + 1))
15457         done
15458
15459         echo "$files_on_starting_mdt files on MDT0 after 2nd migration"
15460         [[ $files_on_starting_mdt -eq $total ]] && error "all files on MDT0"
15461
15462         true
15463 }
15464 run_test 230k "file data not changed after dir migration"
15465
15466 test_230l() {
15467         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
15468         [ $MDS1_VERSION -lt $(version_code 2.11.56) ] &&
15469                 skip "Need MDS version at least 2.11.56"
15470
15471         $LFS mkdir -i 0 -c 1 $DIR/$tdir || error "mkdir failed"
15472         createmany -o $DIR/$tdir/f___________________________________ 1000 ||
15473                 error "create files under remote dir failed $i"
15474         $LFS migrate -m 1 $DIR/$tdir || error "migrate failed"
15475 }
15476 run_test 230l "readdir between MDTs won't crash"
15477
15478 test_231a()
15479 {
15480         # For simplicity this test assumes that max_pages_per_rpc
15481         # is the same across all OSCs
15482         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
15483         local bulk_size=$((max_pages * PAGE_SIZE))
15484         local brw_size=$(do_facet ost1 $LCTL get_param -n obdfilter.*.brw_size |
15485                                        head -n 1)
15486
15487         mkdir -p $DIR/$tdir
15488         $LFS setstripe -S ${brw_size}M $DIR/$tdir ||
15489                 error "failed to set stripe with -S ${brw_size}M option"
15490
15491         # clear the OSC stats
15492         $LCTL set_param osc.*.stats=0 &>/dev/null
15493         stop_writeback
15494
15495         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
15496         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
15497                 oflag=direct &>/dev/null || error "dd failed"
15498
15499         sync; sleep 1; sync # just to be safe
15500         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
15501         if [ x$nrpcs != "x1" ]; then
15502                 $LCTL get_param osc.*.stats
15503                 error "found $nrpcs ost_write RPCs, not 1 as expected"
15504         fi
15505
15506         start_writeback
15507         # Drop the OSC cache, otherwise we will read from it
15508         cancel_lru_locks osc
15509
15510         # clear the OSC stats
15511         $LCTL set_param osc.*.stats=0 &>/dev/null
15512
15513         # Client reads $bulk_size.
15514         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
15515                 iflag=direct &>/dev/null || error "dd failed"
15516
15517         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
15518         if [ x$nrpcs != "x1" ]; then
15519                 $LCTL get_param osc.*.stats
15520                 error "found $nrpcs ost_read RPCs, not 1 as expected"
15521         fi
15522 }
15523 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
15524
15525 test_231b() {
15526         mkdir -p $DIR/$tdir
15527         local i
15528         for i in {0..1023}; do
15529                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
15530                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
15531                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
15532         done
15533         sync
15534 }
15535 run_test 231b "must not assert on fully utilized OST request buffer"
15536
15537 test_232a() {
15538         mkdir -p $DIR/$tdir
15539         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
15540
15541         #define OBD_FAIL_LDLM_OST_LVB            0x31c
15542         do_facet ost1 $LCTL set_param fail_loc=0x31c
15543
15544         # ignore dd failure
15545         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
15546
15547         do_facet ost1 $LCTL set_param fail_loc=0
15548         umount_client $MOUNT || error "umount failed"
15549         mount_client $MOUNT || error "mount failed"
15550         stop ost1 || error "cannot stop ost1"
15551         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
15552 }
15553 run_test 232a "failed lock should not block umount"
15554
15555 test_232b() {
15556         [ $MDS1_VERSION -ge $(version_code 2.10.58) ] ||
15557                 skip "Need MDS version at least 2.10.58"
15558
15559         mkdir -p $DIR/$tdir
15560         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
15561         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1
15562         sync
15563         cancel_lru_locks osc
15564
15565         #define OBD_FAIL_LDLM_OST_LVB            0x31c
15566         do_facet ost1 $LCTL set_param fail_loc=0x31c
15567
15568         # ignore failure
15569         $LFS data_version $DIR/$tdir/$tfile || true
15570
15571         do_facet ost1 $LCTL set_param fail_loc=0
15572         umount_client $MOUNT || error "umount failed"
15573         mount_client $MOUNT || error "mount failed"
15574         stop ost1 || error "cannot stop ost1"
15575         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
15576 }
15577 run_test 232b "failed data version lock should not block umount"
15578
15579 test_233a() {
15580         [ $MDS1_VERSION -ge $(version_code 2.3.64) ] ||
15581                 skip "Need MDS version at least 2.3.64"
15582         [ -n "$FILESET" ] && skip_env "SKIP due to FILESET set"
15583
15584         local fid=$($LFS path2fid $MOUNT)
15585
15586         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15587                 error "cannot access $MOUNT using its FID '$fid'"
15588 }
15589 run_test 233a "checking that OBF of the FS root succeeds"
15590
15591 test_233b() {
15592         [ $MDS1_VERSION -ge $(version_code 2.5.90) ] ||
15593                 skip "Need MDS version at least 2.5.90"
15594         [ -n "$FILESET" ] && skip_env "SKIP due to FILESET set"
15595
15596         local fid=$($LFS path2fid $MOUNT/.lustre)
15597
15598         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15599                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
15600
15601         fid=$($LFS path2fid $MOUNT/.lustre/fid)
15602         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15603                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
15604 }
15605 run_test 233b "checking that OBF of the FS .lustre succeeds"
15606
15607 test_234() {
15608         local p="$TMP/sanityN-$TESTNAME.parameters"
15609         save_lustre_params client "llite.*.xattr_cache" > $p
15610         lctl set_param llite.*.xattr_cache 1 ||
15611                 skip_env "xattr cache is not supported"
15612
15613         mkdir -p $DIR/$tdir || error "mkdir failed"
15614         touch $DIR/$tdir/$tfile || error "touch failed"
15615         # OBD_FAIL_LLITE_XATTR_ENOMEM
15616         $LCTL set_param fail_loc=0x1405
15617         getfattr -n user.attr $DIR/$tdir/$tfile &&
15618                 error "getfattr should have failed with ENOMEM"
15619         $LCTL set_param fail_loc=0x0
15620         rm -rf $DIR/$tdir
15621
15622         restore_lustre_params < $p
15623         rm -f $p
15624 }
15625 run_test 234 "xattr cache should not crash on ENOMEM"
15626
15627 test_235() {
15628         [ $MDS1_VERSION -lt $(version_code 2.4.52) ] &&
15629                 skip "Need MDS version at least 2.4.52"
15630
15631         flock_deadlock $DIR/$tfile
15632         local RC=$?
15633         case $RC in
15634                 0)
15635                 ;;
15636                 124) error "process hangs on a deadlock"
15637                 ;;
15638                 *) error "error executing flock_deadlock $DIR/$tfile"
15639                 ;;
15640         esac
15641 }
15642 run_test 235 "LU-1715: flock deadlock detection does not work properly"
15643
15644 #LU-2935
15645 test_236() {
15646         check_swap_layouts_support
15647
15648         local ref1=/etc/passwd
15649         local ref2=/etc/group
15650         local file1=$DIR/$tdir/f1
15651         local file2=$DIR/$tdir/f2
15652
15653         test_mkdir -c1 $DIR/$tdir
15654         $LFS setstripe -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
15655         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
15656         $LFS setstripe -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
15657         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
15658         local fd=$(free_fd)
15659         local cmd="exec $fd<>$file2"
15660         eval $cmd
15661         rm $file2
15662         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
15663                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
15664         cmd="exec $fd>&-"
15665         eval $cmd
15666         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
15667
15668         #cleanup
15669         rm -rf $DIR/$tdir
15670 }
15671 run_test 236 "Layout swap on open unlinked file"
15672
15673 # LU-4659 linkea consistency
15674 test_238() {
15675         [[ $MDS1_VERSION -gt $(version_code 2.5.57) ]] ||
15676                 [[ $MDS1_VERSION -gt $(version_code 2.5.1) &&
15677                    $MDS1_VERSION -lt $(version_code 2.5.50) ]] ||
15678                 skip "Need MDS version at least 2.5.58 or 2.5.2+"
15679
15680         touch $DIR/$tfile
15681         ln $DIR/$tfile $DIR/$tfile.lnk
15682         touch $DIR/$tfile.new
15683         mv $DIR/$tfile.new $DIR/$tfile
15684         local fid1=$($LFS path2fid $DIR/$tfile)
15685         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
15686         local path1=$($LFS fid2path $FSNAME "$fid1")
15687         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
15688         local path2=$($LFS fid2path $FSNAME "$fid2")
15689         [ $tfile.lnk == $path2 ] ||
15690                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
15691         rm -f $DIR/$tfile*
15692 }
15693 run_test 238 "Verify linkea consistency"
15694
15695 test_239A() { # was test_239
15696         [ $MDS1_VERSION -lt $(version_code 2.5.60) ] &&
15697                 skip "Need MDS version at least 2.5.60"
15698
15699         local list=$(comma_list $(mdts_nodes))
15700
15701         mkdir -p $DIR/$tdir
15702         createmany -o $DIR/$tdir/f- 5000
15703         unlinkmany $DIR/$tdir/f- 5000
15704         [ $MDS1_VERSION -gt $(version_code 2.10.53) ] &&
15705                 do_nodes $list "lctl set_param -n osp.*.force_sync=1"
15706         changes=$(do_nodes $list "lctl get_param -n osp.*MDT*.sync_changes \
15707                         osp.*MDT*.sync_in_flight" | calc_sum)
15708         [ "$changes" -eq 0 ] || error "$changes not synced"
15709 }
15710 run_test 239A "osp_sync test"
15711
15712 test_239a() { #LU-5297
15713         remote_mds_nodsh && skip "remote MDS with nodsh"
15714
15715         touch $DIR/$tfile
15716         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
15717         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
15718         chgrp $RUNAS_GID $DIR/$tfile
15719         wait_delete_completed
15720 }
15721 run_test 239a "process invalid osp sync record correctly"
15722
15723 test_239b() { #LU-5297
15724         remote_mds_nodsh && skip "remote MDS with nodsh"
15725
15726         touch $DIR/$tfile1
15727         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
15728         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
15729         chgrp $RUNAS_GID $DIR/$tfile1
15730         wait_delete_completed
15731         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
15732         touch $DIR/$tfile2
15733         chgrp $RUNAS_GID $DIR/$tfile2
15734         wait_delete_completed
15735 }
15736 run_test 239b "process osp sync record with ENOMEM error correctly"
15737
15738 test_240() {
15739         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15740         remote_mds_nodsh && skip "remote MDS with nodsh"
15741
15742         mkdir -p $DIR/$tdir
15743
15744         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
15745                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
15746         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
15747                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
15748
15749         umount_client $MOUNT || error "umount failed"
15750         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
15751         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
15752         mount_client $MOUNT || error "failed to mount client"
15753
15754         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
15755         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
15756 }
15757 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
15758
15759 test_241_bio() {
15760         local count=$1
15761         local bsize=$2
15762
15763         for LOOP in $(seq $count); do
15764                 dd if=$DIR/$tfile of=/dev/null bs=$bsize count=1 2>/dev/null
15765                 cancel_lru_locks $OSC || true
15766         done
15767 }
15768
15769 test_241_dio() {
15770         local count=$1
15771         local bsize=$2
15772
15773         for LOOP in $(seq $1); do
15774                 dd if=$DIR/$tfile of=/dev/null bs=$bsize count=1 iflag=direct \
15775                         2>/dev/null
15776         done
15777 }
15778
15779 test_241a() { # was test_241
15780         local bsize=$PAGE_SIZE
15781
15782         (( bsize < 40960 )) && bsize=40960
15783         dd if=/dev/zero of=$DIR/$tfile count=1 bs=$bsize
15784         ls -la $DIR/$tfile
15785         cancel_lru_locks $OSC
15786         test_241_bio 1000 $bsize &
15787         PID=$!
15788         test_241_dio 1000 $bsize
15789         wait $PID
15790 }
15791 run_test 241a "bio vs dio"
15792
15793 test_241b() {
15794         local bsize=$PAGE_SIZE
15795
15796         (( bsize < 40960 )) && bsize=40960
15797         dd if=/dev/zero of=$DIR/$tfile count=1 bs=$bsize
15798         ls -la $DIR/$tfile
15799         test_241_dio 1000 $bsize &
15800         PID=$!
15801         test_241_dio 1000 $bsize
15802         wait $PID
15803 }
15804 run_test 241b "dio vs dio"
15805
15806 test_242() {
15807         remote_mds_nodsh && skip "remote MDS with nodsh"
15808
15809         mkdir -p $DIR/$tdir
15810         touch $DIR/$tdir/$tfile
15811
15812         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
15813         do_facet mds1 lctl set_param fail_loc=0x105
15814         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
15815
15816         do_facet mds1 lctl set_param fail_loc=0
15817         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
15818 }
15819 run_test 242 "mdt_readpage failure should not cause directory unreadable"
15820
15821 test_243()
15822 {
15823         test_mkdir $DIR/$tdir
15824         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
15825 }
15826 run_test 243 "various group lock tests"
15827
15828 test_244()
15829 {
15830         test_mkdir $DIR/$tdir
15831         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
15832         sendfile_grouplock $DIR/$tdir/$tfile || \
15833                 error "sendfile+grouplock failed"
15834         rm -rf $DIR/$tdir
15835 }
15836 run_test 244 "sendfile with group lock tests"
15837
15838 test_245() {
15839         local flagname="multi_mod_rpcs"
15840         local connect_data_name="max_mod_rpcs"
15841         local out
15842
15843         # check if multiple modify RPCs flag is set
15844         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
15845                 grep "connect_flags:")
15846         echo "$out"
15847
15848         echo "$out" | grep -qw $flagname
15849         if [ $? -ne 0 ]; then
15850                 echo "connect flag $flagname is not set"
15851                 return
15852         fi
15853
15854         # check if multiple modify RPCs data is set
15855         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
15856         echo "$out"
15857
15858         echo "$out" | grep -qw $connect_data_name ||
15859                 error "import should have connect data $connect_data_name"
15860 }
15861 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
15862
15863 test_246() { # LU-7371
15864         remote_ost_nodsh && skip "remote OST with nodsh"
15865         [ $OST1_VERSION -lt $(version_code 2.7.62) ] &&
15866                 skip "Need OST version >= 2.7.62"
15867
15868         do_facet ost1 $LCTL set_param fail_val=4095
15869 #define OBD_FAIL_OST_READ_SIZE          0x234
15870         do_facet ost1 $LCTL set_param fail_loc=0x234
15871         $LFS setstripe $DIR/$tfile -i 0 -c 1
15872         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
15873         cancel_lru_locks $FSNAME-OST0000
15874         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
15875 }
15876 run_test 246 "Read file of size 4095 should return right length"
15877
15878 cleanup_247() {
15879         local submount=$1
15880
15881         trap 0
15882         umount_client $submount
15883         rmdir $submount
15884 }
15885
15886 test_247a() {
15887         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
15888                 grep -q subtree ||
15889                 skip_env "Fileset feature is not supported"
15890
15891         local submount=${MOUNT}_$tdir
15892
15893         mkdir $MOUNT/$tdir
15894         mkdir -p $submount || error "mkdir $submount failed"
15895         FILESET="$FILESET/$tdir" mount_client $submount ||
15896                 error "mount $submount failed"
15897         trap "cleanup_247 $submount" EXIT
15898         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
15899         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
15900                 error "read $MOUNT/$tdir/$tfile failed"
15901         cleanup_247 $submount
15902 }
15903 run_test 247a "mount subdir as fileset"
15904
15905 test_247b() {
15906         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
15907                 skip_env "Fileset feature is not supported"
15908
15909         local submount=${MOUNT}_$tdir
15910
15911         rm -rf $MOUNT/$tdir
15912         mkdir -p $submount || error "mkdir $submount failed"
15913         SKIP_FILESET=1
15914         FILESET="$FILESET/$tdir" mount_client $submount &&
15915                 error "mount $submount should fail"
15916         rmdir $submount
15917 }
15918 run_test 247b "mount subdir that dose not exist"
15919
15920 test_247c() {
15921         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
15922                 skip_env "Fileset feature is not supported"
15923
15924         local submount=${MOUNT}_$tdir
15925
15926         mkdir -p $MOUNT/$tdir/dir1
15927         mkdir -p $submount || error "mkdir $submount failed"
15928         trap "cleanup_247 $submount" EXIT
15929         FILESET="$FILESET/$tdir" mount_client $submount ||
15930                 error "mount $submount failed"
15931         local fid=$($LFS path2fid $MOUNT/)
15932         $LFS fid2path $submount $fid && error "fid2path should fail"
15933         cleanup_247 $submount
15934 }
15935 run_test 247c "running fid2path outside root"
15936
15937 test_247d() {
15938         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
15939                 skip "Fileset feature is not supported"
15940
15941         local submount=${MOUNT}_$tdir
15942
15943         mkdir -p $MOUNT/$tdir/dir1
15944         mkdir -p $submount || error "mkdir $submount failed"
15945         FILESET="$FILESET/$tdir" mount_client $submount ||
15946                 error "mount $submount failed"
15947         trap "cleanup_247 $submount" EXIT
15948         local fid=$($LFS path2fid $submount/dir1)
15949         $LFS fid2path $submount $fid || error "fid2path should succeed"
15950         cleanup_247 $submount
15951 }
15952 run_test 247d "running fid2path inside root"
15953
15954 # LU-8037
15955 test_247e() {
15956         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
15957                 grep -q subtree ||
15958                 skip "Fileset feature is not supported"
15959
15960         local submount=${MOUNT}_$tdir
15961
15962         mkdir $MOUNT/$tdir
15963         mkdir -p $submount || error "mkdir $submount failed"
15964         FILESET="$FILESET/.." mount_client $submount &&
15965                 error "mount $submount should fail"
15966         rmdir $submount
15967 }
15968 run_test 247e "mount .. as fileset"
15969
15970 test_248() {
15971         local fast_read_sav=$($LCTL get_param -n llite.*.fast_read 2>/dev/null)
15972         [ -z "$fast_read_sav" ] && skip "no fast read support"
15973
15974         # create a large file for fast read verification
15975         dd if=/dev/zero of=$DIR/$tfile bs=1M count=128 > /dev/null 2>&1
15976
15977         # make sure the file is created correctly
15978         $CHECKSTAT -s $((128*1024*1024)) $DIR/$tfile ||
15979                 { rm -f $DIR/$tfile; skip "file creation error"; }
15980
15981         echo "Test 1: verify that fast read is 4 times faster on cache read"
15982
15983         # small read with fast read enabled
15984         $LCTL set_param -n llite.*.fast_read=1
15985         local t_fast=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
15986                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15987                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15988         # small read with fast read disabled
15989         $LCTL set_param -n llite.*.fast_read=0
15990         local t_slow=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
15991                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15992                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15993
15994         # verify that fast read is 4 times faster for cache read
15995         [ $(bc <<< "4 * $t_fast < $t_slow") -eq 1 ] ||
15996                 error_not_in_vm "fast read was not 4 times faster: " \
15997                            "$t_fast vs $t_slow"
15998
15999         echo "Test 2: verify the performance between big and small read"
16000         $LCTL set_param -n llite.*.fast_read=1
16001
16002         # 1k non-cache read
16003         cancel_lru_locks osc
16004         local t_1k=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
16005                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
16006                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
16007
16008         # 1M non-cache read
16009         cancel_lru_locks osc
16010         local t_1m=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
16011                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
16012                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
16013
16014         # verify that big IO is not 4 times faster than small IO
16015         [ $(bc <<< "4 * $t_1k >= $t_1m") -eq 1 ] ||
16016                 error_not_in_vm "bigger IO is way too fast: $t_1k vs $t_1m"
16017
16018         $LCTL set_param -n llite.*.fast_read=$fast_read_sav
16019         rm -f $DIR/$tfile
16020 }
16021 run_test 248 "fast read verification"
16022
16023 test_249() { # LU-7890
16024         [ $MDS1_VERSION -lt $(version_code 2.8.53) ] &&
16025                 skip "Need at least version 2.8.54"
16026
16027         rm -f $DIR/$tfile
16028         $LFS setstripe -c 1 $DIR/$tfile
16029         # Offset 2T == 4k * 512M
16030         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 seek=512M ||
16031                 error "dd to 2T offset failed"
16032 }
16033 run_test 249 "Write above 2T file size"
16034
16035 test_250() {
16036         [ "$(facet_fstype ost$(($($LFS getstripe -i $DIR/$tfile) + 1)))" = "zfs" ] \
16037          && skip "no 16TB file size limit on ZFS"
16038
16039         $LFS setstripe -c 1 $DIR/$tfile
16040         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
16041         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
16042         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
16043         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
16044                 conv=notrunc,fsync && error "append succeeded"
16045         return 0
16046 }
16047 run_test 250 "Write above 16T limit"
16048
16049 test_251() {
16050         $LFS setstripe -c -1 -S 1048576 $DIR/$tfile
16051
16052         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
16053         #Skip once - writing the first stripe will succeed
16054         $LCTL set_param fail_loc=0xa0001407 fail_val=1
16055         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
16056                 error "short write happened"
16057
16058         $LCTL set_param fail_loc=0xa0001407 fail_val=1
16059         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
16060                 error "short read happened"
16061
16062         rm -f $DIR/$tfile
16063 }
16064 run_test 251 "Handling short read and write correctly"
16065
16066 test_252() {
16067         remote_mds_nodsh && skip "remote MDS with nodsh"
16068         remote_ost_nodsh && skip "remote OST with nodsh"
16069         if [ "$ost1_FSTYPE" != "ldiskfs" -o "$mds1_FSTYPE" != "ldiskfs" ]; then
16070                 skip_env "ldiskfs only test"
16071         fi
16072
16073         local tgt
16074         local dev
16075         local out
16076         local uuid
16077         local num
16078         local gen
16079
16080         # check lr_reader on OST0000
16081         tgt=ost1
16082         dev=$(facet_device $tgt)
16083         out=$(do_facet $tgt $LR_READER $dev)
16084         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
16085         echo "$out"
16086         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
16087         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
16088                 error "Invalid uuid returned by $LR_READER on target $tgt"
16089         echo -e "uuid returned by $LR_READER is '$uuid'\n"
16090
16091         # check lr_reader -c on MDT0000
16092         tgt=mds1
16093         dev=$(facet_device $tgt)
16094         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
16095                 skip "$LR_READER does not support additional options"
16096         fi
16097         out=$(do_facet $tgt $LR_READER -c $dev)
16098         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
16099         echo "$out"
16100         num=$(echo "$out" | grep -c "mdtlov")
16101         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
16102                 error "Invalid number of mdtlov clients returned by $LR_READER"
16103         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
16104
16105         # check lr_reader -cr on MDT0000
16106         out=$(do_facet $tgt $LR_READER -cr $dev)
16107         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
16108         echo "$out"
16109         echo "$out" | grep -q "^reply_data:$" ||
16110                 error "$LR_READER should have returned 'reply_data' section"
16111         num=$(echo "$out" | grep -c "client_generation")
16112         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
16113 }
16114 run_test 252 "check lr_reader tool"
16115
16116 test_253_fill_ost() {
16117         local size_mb #how many MB should we write to pass watermark
16118         local lwm=$3  #low watermark
16119         local free_10mb #10% of free space
16120
16121         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
16122         size_mb=$((free_kb / 1024 - lwm))
16123         free_10mb=$((free_kb / 10240))
16124         #If 10% of free space cross low watermark use it
16125         if (( free_10mb > size_mb )); then
16126                 size_mb=$free_10mb
16127         else
16128                 #At least we need to store 1.1 of difference between
16129                 #free space and low watermark
16130                 size_mb=$((size_mb + size_mb / 10))
16131         fi
16132         if (( lwm <= $((free_kb / 1024)) )) || [ ! -f $DIR/$tdir/1 ]; then
16133                 dd if=/dev/zero of=$DIR/$tdir/1 bs=1M count=$size_mb \
16134                          oflag=append conv=notrunc
16135         fi
16136
16137         sleep_maxage
16138
16139         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
16140         echo "OST still has $((free_kb / 1024)) mbytes free"
16141 }
16142
16143 test_253() {
16144         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16145         remote_mds_nodsh && skip "remote MDS with nodsh"
16146         remote_mgs_nodsh && skip "remote MGS with nodsh"
16147
16148         local ostidx=0
16149         local rc=0
16150
16151         local ost_name=$($LFS osts |
16152                 sed -n 's/^'$ostidx': \(.*\)_UUID .*/\1/p')
16153         # on the mdt's osc
16154         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $ost_name)
16155         do_facet $SINGLEMDS $LCTL get_param -n \
16156                 osp.$mdtosc_proc1.reserved_mb_high ||
16157                 skip  "remote MDS does not support reserved_mb_high"
16158
16159         rm -rf $DIR/$tdir
16160         wait_mds_ost_sync
16161         wait_delete_completed
16162         mkdir $DIR/$tdir
16163
16164         local last_wm_h=$(do_facet $SINGLEMDS $LCTL get_param -n \
16165                         osp.$mdtosc_proc1.reserved_mb_high)
16166         local last_wm_l=$(do_facet $SINGLEMDS $LCTL get_param -n \
16167                         osp.$mdtosc_proc1.reserved_mb_low)
16168         echo "prev high watermark $last_wm_h, prev low watermark $last_wm_l"
16169
16170         if ! combined_mgs_mds ; then
16171                 mount_mgs_client
16172         fi
16173         create_pool $FSNAME.$TESTNAME || error "Pool creation failed"
16174         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $ost_name ||
16175                 error "Adding $ost_name to pool failed"
16176
16177         # Wait for client to see a OST at pool
16178         wait_update $HOSTNAME "$LCTL get_param -n
16179                 lov.$FSNAME-*.pools.$TESTNAME | sort -u |
16180                 grep $ost_name" "$ost_name""_UUID" $((TIMEOUT/2)) ||
16181                 error "Client can not see the pool"
16182         $LFS setstripe $DIR/$tdir -i $ostidx -c 1 -p $FSNAME.$TESTNAME ||
16183                 error "Setstripe failed"
16184
16185         dd if=/dev/zero of=$DIR/$tdir/0 bs=1M count=10
16186         local blocks=$($LFS df $MOUNT | grep $ost_name | awk '{ print $4 }')
16187         echo "OST still has $((blocks/1024)) mbytes free"
16188
16189         local new_lwm=$((blocks/1024-10))
16190         do_facet $SINGLEMDS $LCTL set_param \
16191                         osp.$mdtosc_proc1.reserved_mb_high=$((new_lwm+5))
16192         do_facet $SINGLEMDS $LCTL set_param \
16193                         osp.$mdtosc_proc1.reserved_mb_low=$new_lwm
16194
16195         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
16196
16197         #First enospc could execute orphan deletion so repeat.
16198         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
16199
16200         local oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
16201                         osp.$mdtosc_proc1.prealloc_status)
16202         echo "prealloc_status $oa_status"
16203
16204         dd if=/dev/zero of=$DIR/$tdir/2 bs=1M count=1 &&
16205                 error "File creation should fail"
16206         #object allocation was stopped, but we still able to append files
16207         dd if=/dev/zero of=$DIR/$tdir/1 bs=1M seek=6 count=5 oflag=append ||
16208                 error "Append failed"
16209         rm -f $DIR/$tdir/1 $DIR/$tdir/0 $DIR/$tdir/r*
16210
16211         wait_delete_completed
16212
16213         sleep_maxage
16214
16215         for i in $(seq 10 12); do
16216                 dd if=/dev/zero of=$DIR/$tdir/$i bs=1M count=1 2>/dev/null ||
16217                         error "File creation failed after rm";
16218         done
16219
16220         oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
16221                         osp.$mdtosc_proc1.prealloc_status)
16222         echo "prealloc_status $oa_status"
16223
16224         if (( oa_status != 0 )); then
16225                 error "Object allocation still disable after rm"
16226         fi
16227         do_facet $SINGLEMDS $LCTL set_param \
16228                         osp.$mdtosc_proc1.reserved_mb_high=$last_wm_h
16229         do_facet $SINGLEMDS $LCTL set_param \
16230                         osp.$mdtosc_proc1.reserved_mb_low=$last_wm_l
16231
16232
16233         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $ost_name ||
16234                 error "Remove $ost_name from pool failed"
16235         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
16236                 error "Pool destroy fialed"
16237
16238         if ! combined_mgs_mds ; then
16239                 umount_mgs_client
16240         fi
16241 }
16242 run_test 253 "Check object allocation limit"
16243
16244 test_254() {
16245         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16246         remote_mds_nodsh && skip "remote MDS with nodsh"
16247         do_facet $SINGLEMDS $LCTL get_param -n mdd.$MDT0.changelog_size ||
16248                 skip "MDS does not support changelog_size"
16249
16250         local cl_user
16251         local MDT0=$(facet_svc $SINGLEMDS)
16252
16253         changelog_register || error "changelog_register failed"
16254
16255         changelog_clear 0 || error "changelog_clear failed"
16256
16257         local size1=$(do_facet $SINGLEMDS \
16258                       $LCTL get_param -n mdd.$MDT0.changelog_size)
16259         echo "Changelog size $size1"
16260
16261         rm -rf $DIR/$tdir
16262         $LFS mkdir -i 0 $DIR/$tdir
16263         # change something
16264         mkdir -p $DIR/$tdir/pics/2008/zachy
16265         touch $DIR/$tdir/pics/2008/zachy/timestamp
16266         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
16267         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
16268         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
16269         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
16270         rm $DIR/$tdir/pics/desktop.jpg
16271
16272         local size2=$(do_facet $SINGLEMDS \
16273                       $LCTL get_param -n mdd.$MDT0.changelog_size)
16274         echo "Changelog size after work $size2"
16275
16276         (( $size2 > $size1 )) ||
16277                 error "new Changelog size=$size2 less than old size=$size1"
16278 }
16279 run_test 254 "Check changelog size"
16280
16281 ladvise_no_type()
16282 {
16283         local type=$1
16284         local file=$2
16285
16286         lfs ladvise -a invalid $file 2>&1 | grep "Valid types" |
16287                 awk -F: '{print $2}' | grep $type > /dev/null
16288         if [ $? -ne 0 ]; then
16289                 return 0
16290         fi
16291         return 1
16292 }
16293
16294 ladvise_no_ioctl()
16295 {
16296         local file=$1
16297
16298         lfs ladvise -a willread $file > /dev/null 2>&1
16299         if [ $? -eq 0 ]; then
16300                 return 1
16301         fi
16302
16303         lfs ladvise -a willread $file 2>&1 |
16304                 grep "Inappropriate ioctl for device" > /dev/null
16305         if [ $? -eq 0 ]; then
16306                 return 0
16307         fi
16308         return 1
16309 }
16310
16311 percent() {
16312         bc <<<"scale=2; ($1 - $2) * 100 / $2"
16313 }
16314
16315 # run a random read IO workload
16316 # usage: random_read_iops <filename> <filesize> <iosize>
16317 random_read_iops() {
16318         local file=$1
16319         local fsize=$2
16320         local iosize=${3:-4096}
16321
16322         $READS -f $file -s $fsize -b $iosize -n $((fsize / iosize)) -t 60 |
16323                 sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##'
16324 }
16325
16326 drop_file_oss_cache() {
16327         local file="$1"
16328         local nodes="$2"
16329
16330         $LFS ladvise -a dontneed $file 2>/dev/null ||
16331                 do_nodes $nodes "echo 3 > /proc/sys/vm/drop_caches"
16332 }
16333
16334 ladvise_willread_performance()
16335 {
16336         local repeat=10
16337         local average_origin=0
16338         local average_cache=0
16339         local average_ladvise=0
16340
16341         for ((i = 1; i <= $repeat; i++)); do
16342                 echo "Iter $i/$repeat: reading without willread hint"
16343                 cancel_lru_locks osc
16344                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
16345                 local speed_origin=$(random_read_iops $DIR/$tfile $size)
16346                 echo "Iter $i/$repeat: uncached speed: $speed_origin"
16347                 average_origin=$(bc <<<"$average_origin + $speed_origin")
16348
16349                 cancel_lru_locks osc
16350                 local speed_cache=$(random_read_iops $DIR/$tfile $size)
16351                 echo "Iter $i/$repeat: OSS cache speed: $speed_cache"
16352                 average_cache=$(bc <<<"$average_cache + $speed_cache")
16353
16354                 cancel_lru_locks osc
16355                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
16356                 $LFS ladvise -a willread $DIR/$tfile || error "ladvise failed"
16357                 local speed_ladvise=$(random_read_iops $DIR/$tfile $size)
16358                 echo "Iter $i/$repeat: ladvise speed: $speed_ladvise"
16359                 average_ladvise=$(bc <<<"$average_ladvise + $speed_ladvise")
16360         done
16361         average_origin=$(bc <<<"scale=2; $average_origin / $repeat")
16362         average_cache=$(bc <<<"scale=2; $average_cache / $repeat")
16363         average_ladvise=$(bc <<<"scale=2; $average_ladvise / $repeat")
16364
16365         speedup_cache=$(percent $average_cache $average_origin)
16366         speedup_ladvise=$(percent $average_ladvise $average_origin)
16367
16368         echo "Average uncached read: $average_origin"
16369         echo "Average speedup with OSS cached read: " \
16370                 "$average_cache = +$speedup_cache%"
16371         echo "Average speedup with ladvise willread: " \
16372                 "$average_ladvise = +$speedup_ladvise%"
16373
16374         local lowest_speedup=20
16375         if [ ${average_cache%.*} -lt $lowest_speedup ]; then
16376                 echo "Speedup with OSS cached read less than $lowest_speedup%," \
16377                         "got $average_cache%. Skipping ladvise willread check."
16378                 return 0
16379         fi
16380
16381         # the test won't work on ZFS until it supports 'ladvise dontneed', but
16382         # it is still good to run until then to exercise 'ladvise willread'
16383         ! $LFS ladvise -a dontneed $DIR/$tfile &&
16384                 [ "$ost1_FSTYPE" = "zfs" ] &&
16385                 echo "osd-zfs does not support dontneed or drop_caches" &&
16386                 return 0
16387
16388         lowest_speedup=$(bc <<<"scale=2; $average_cache / 2")
16389         [ ${average_ladvise%.*} -gt $lowest_speedup ] ||
16390                 error_not_in_vm "Speedup with willread is less than " \
16391                         "$lowest_speedup%, got $average_ladvise%"
16392 }
16393
16394 test_255a() {
16395         [ $OST1_VERSION -lt $(version_code 2.8.54) ] &&
16396                 skip "lustre < 2.8.54 does not support ladvise "
16397         remote_ost_nodsh && skip "remote OST with nodsh"
16398
16399         lfs setstripe -c -1 -i 0 $DIR/$tfile || error "$tfile failed"
16400
16401         ladvise_no_type willread $DIR/$tfile &&
16402                 skip "willread ladvise is not supported"
16403
16404         ladvise_no_ioctl $DIR/$tfile &&
16405                 skip "ladvise ioctl is not supported"
16406
16407         local size_mb=100
16408         local size=$((size_mb * 1048576))
16409         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
16410                 error "dd to $DIR/$tfile failed"
16411
16412         lfs ladvise -a willread $DIR/$tfile ||
16413                 error "Ladvise failed with no range argument"
16414
16415         lfs ladvise -a willread -s 0 $DIR/$tfile ||
16416                 error "Ladvise failed with no -l or -e argument"
16417
16418         lfs ladvise -a willread -e 1 $DIR/$tfile ||
16419                 error "Ladvise failed with only -e argument"
16420
16421         lfs ladvise -a willread -l 1 $DIR/$tfile ||
16422                 error "Ladvise failed with only -l argument"
16423
16424         lfs ladvise -a willread -s 2 -e 1 $DIR/$tfile &&
16425                 error "End offset should not be smaller than start offset"
16426
16427         lfs ladvise -a willread -s 2 -e 2 $DIR/$tfile &&
16428                 error "End offset should not be equal to start offset"
16429
16430         lfs ladvise -a willread -s $size -l 1 $DIR/$tfile ||
16431                 error "Ladvise failed with overflowing -s argument"
16432
16433         lfs ladvise -a willread -s 1 -e $((size + 1)) $DIR/$tfile ||
16434                 error "Ladvise failed with overflowing -e argument"
16435
16436         lfs ladvise -a willread -s 1 -l $size $DIR/$tfile ||
16437                 error "Ladvise failed with overflowing -l argument"
16438
16439         lfs ladvise -a willread -l 1 -e 2 $DIR/$tfile &&
16440                 error "Ladvise succeeded with conflicting -l and -e arguments"
16441
16442         echo "Synchronous ladvise should wait"
16443         local delay=4
16444 #define OBD_FAIL_OST_LADVISE_PAUSE       0x237
16445         do_nodes $(comma_list $(osts_nodes)) \
16446                 $LCTL set_param fail_val=$delay fail_loc=0x237
16447
16448         local start_ts=$SECONDS
16449         lfs ladvise -a willread $DIR/$tfile ||
16450                 error "Ladvise failed with no range argument"
16451         local end_ts=$SECONDS
16452         local inteval_ts=$((end_ts - start_ts))
16453
16454         if [ $inteval_ts -lt $(($delay - 1)) ]; then
16455                 error "Synchronous advice didn't wait reply"
16456         fi
16457
16458         echo "Asynchronous ladvise shouldn't wait"
16459         local start_ts=$SECONDS
16460         lfs ladvise -a willread -b $DIR/$tfile ||
16461                 error "Ladvise failed with no range argument"
16462         local end_ts=$SECONDS
16463         local inteval_ts=$((end_ts - start_ts))
16464
16465         if [ $inteval_ts -gt $(($delay / 2)) ]; then
16466                 error "Asynchronous advice blocked"
16467         fi
16468
16469         do_nodes $(comma_list $(osts_nodes)) $LCTL set_param fail_loc=0
16470         ladvise_willread_performance
16471 }
16472 run_test 255a "check 'lfs ladvise -a willread'"
16473
16474 facet_meminfo() {
16475         local facet=$1
16476         local info=$2
16477
16478         do_facet $facet "cat /proc/meminfo | grep ^${info}:" | awk '{print $2}'
16479 }
16480
16481 test_255b() {
16482         [ $OST1_VERSION -lt $(version_code 2.8.54) ] &&
16483                 skip "lustre < 2.8.54 does not support ladvise "
16484         remote_ost_nodsh && skip "remote OST with nodsh"
16485
16486         lfs setstripe -c 1 -i 0 $DIR/$tfile
16487
16488         ladvise_no_type dontneed $DIR/$tfile &&
16489                 skip "dontneed ladvise is not supported"
16490
16491         ladvise_no_ioctl $DIR/$tfile &&
16492                 skip "ladvise ioctl is not supported"
16493
16494         ! $LFS ladvise -a dontneed $DIR/$tfile &&
16495                 [ "$ost1_FSTYPE" = "zfs" ] &&
16496                 skip "zfs-osd does not support 'ladvise dontneed'"
16497
16498         local size_mb=100
16499         local size=$((size_mb * 1048576))
16500         # In order to prevent disturbance of other processes, only check 3/4
16501         # of the memory usage
16502         local kibibytes=$((size_mb * 1024 * 3 / 4))
16503
16504         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
16505                 error "dd to $DIR/$tfile failed"
16506
16507         #force write to complete before dropping OST cache & checking memory
16508         sync
16509
16510         local total=$(facet_meminfo ost1 MemTotal)
16511         echo "Total memory: $total KiB"
16512
16513         do_facet ost1 "sync && echo 3 > /proc/sys/vm/drop_caches"
16514         local before_read=$(facet_meminfo ost1 Cached)
16515         echo "Cache used before read: $before_read KiB"
16516
16517         lfs ladvise -a willread $DIR/$tfile ||
16518                 error "Ladvise willread failed"
16519         local after_read=$(facet_meminfo ost1 Cached)
16520         echo "Cache used after read: $after_read KiB"
16521
16522         lfs ladvise -a dontneed $DIR/$tfile ||
16523                 error "Ladvise dontneed again failed"
16524         local no_read=$(facet_meminfo ost1 Cached)
16525         echo "Cache used after dontneed ladvise: $no_read KiB"
16526
16527         if [ $total -lt $((before_read + kibibytes)) ]; then
16528                 echo "Memory is too small, abort checking"
16529                 return 0
16530         fi
16531
16532         if [ $((before_read + kibibytes)) -gt $after_read ]; then
16533                 error "Ladvise willread should use more memory" \
16534                         "than $kibibytes KiB"
16535         fi
16536
16537         if [ $((no_read + kibibytes)) -gt $after_read ]; then
16538                 error "Ladvise dontneed should release more memory" \
16539                         "than $kibibytes KiB"
16540         fi
16541 }
16542 run_test 255b "check 'lfs ladvise -a dontneed'"
16543
16544 test_255c() {
16545         [ $OST1_VERSION -lt $(version_code 2.10.50) ] &&
16546                 skip "lustre < 2.10.53 does not support lockahead"
16547
16548         local count
16549         local new_count
16550         local difference
16551         local i
16552         local rc
16553
16554         test_mkdir -p $DIR/$tdir
16555         $LFS setstripe -i 0 $DIR/$tdir
16556
16557         #test 10 returns only success/failure
16558         i=10
16559         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16560         rc=$?
16561         if [ $rc -eq 255 ]; then
16562                 error "Ladvise test${i} failed, ${rc}"
16563         fi
16564
16565         #test 11 counts lock enqueue requests, all others count new locks
16566         i=11
16567         count=$(do_facet ost1 \
16568                 $LCTL get_param -n ost.OSS.ost.stats)
16569         count=$(echo "$count" | grep ldlm_extent_enqueue | awk '{ print $2 }')
16570
16571         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16572         rc=$?
16573         if [ $rc -eq 255 ]; then
16574                 error "Ladvise test${i} failed, ${rc}"
16575         fi
16576
16577         new_count=$(do_facet ost1 \
16578                 $LCTL get_param -n ost.OSS.ost.stats)
16579         new_count=$(echo "$new_count" | grep ldlm_extent_enqueue | \
16580                    awk '{ print $2 }')
16581
16582         difference="$((new_count - count))"
16583         if [ $difference -ne $rc ]; then
16584                 error "Ladvise test${i}, bad enqueue count, returned " \
16585                       "${rc}, actual ${difference}"
16586         fi
16587
16588         for i in $(seq 12 21); do
16589                 # If we do not do this, we run the risk of having too many
16590                 # locks and starting lock cancellation while we are checking
16591                 # lock counts.
16592                 cancel_lru_locks osc
16593
16594                 count=$($LCTL get_param -n \
16595                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
16596
16597                 lockahead_test -d $DIR/$tdir -t $i -f $tfile
16598                 rc=$?
16599                 if [ $rc -eq 255 ]; then
16600                         error "Ladvise test ${i} failed, ${rc}"
16601                 fi
16602
16603                 new_count=$($LCTL get_param -n \
16604                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
16605                 difference="$((new_count - count))"
16606
16607                 # Test 15 output is divided by 100 to map down to valid return
16608                 if [ $i -eq 15 ]; then
16609                         rc="$((rc * 100))"
16610                 fi
16611
16612                 if [ $difference -ne $rc ]; then
16613                         error "Ladvise test ${i}, bad lock count, returned " \
16614                               "${rc}, actual ${difference}"
16615                 fi
16616         done
16617
16618         #test 22 returns only success/failure
16619         i=22
16620         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16621         rc=$?
16622         if [ $rc -eq 255 ]; then
16623                 error "Ladvise test${i} failed, ${rc}"
16624         fi
16625 }
16626 run_test 255c "suite of ladvise lockahead tests"
16627
16628 test_256() {
16629         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16630         remote_mds_nodsh && skip "remote MDS with nodsh"
16631         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip "ldiskfs only test"
16632         changelog_users $SINGLEMDS | grep "^cl" &&
16633                 skip "active changelog user"
16634
16635         local cl_user
16636         local cat_sl
16637         local mdt_dev
16638
16639         mdt_dev=$(mdsdevname 1)
16640         echo $mdt_dev
16641
16642         changelog_register || error "changelog_register failed"
16643
16644         rm -rf $DIR/$tdir
16645         mkdir -p $DIR/$tdir
16646
16647         changelog_clear 0 || error "changelog_clear failed"
16648
16649         # change something
16650         touch $DIR/$tdir/{1..10}
16651
16652         # stop the MDT
16653         stop $SINGLEMDS || error "Fail to stop MDT"
16654
16655         # remount the MDT
16656
16657         start $SINGLEMDS $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT"
16658
16659         #after mount new plainllog is used
16660         touch $DIR/$tdir/{11..19}
16661         local tmpfile=$(mktemp -u $tfile.XXXXXX)
16662         cat_sl=$(do_facet $SINGLEMDS "sync; \
16663                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
16664                  llog_reader $tmpfile | grep -c type=1064553b")
16665         do_facet $SINGLEMDS llog_reader $tmpfile
16666
16667         [ $cat_sl != 2 ] && error "Changelog catalog has $cat_sl != 2 slots"
16668
16669         changelog_clear 0 || error "changelog_clear failed"
16670
16671         cat_sl=$(do_facet $SINGLEMDS "sync; \
16672                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
16673                  llog_reader $tmpfile | grep -c type=1064553b; rm -f $tmpfile")
16674
16675         if (( cat_sl == 2 )); then
16676                 error "Empty plain llog was not deleted from changelog catalog"
16677         elif (( cat_sl != 1 )); then
16678                 error "Active plain llog shouldn't be deleted from catalog"
16679         fi
16680 }
16681 run_test 256 "Check llog delete for empty and not full state"
16682
16683 test_257() {
16684         remote_mds_nodsh && skip "remote MDS with nodsh"
16685         [[ $MDS1_VERSION -lt $(version_code 2.8.55) ]] &&
16686                 skip "Need MDS version at least 2.8.55"
16687
16688         test_mkdir $DIR/$tdir
16689
16690         setfattr -n trusted.name1 -v value1 $DIR/$tdir ||
16691                 error "setfattr -n trusted.name1=value1 $DIR/$tdir failed"
16692         stat $DIR/$tdir
16693
16694 #define OBD_FAIL_MDS_XATTR_REP                  0x161
16695         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
16696         local facet=mds$((mdtidx + 1))
16697         set_nodes_failloc $(facet_active_host $facet) 0x80000161
16698         getfattr -n trusted.name1 $DIR/$tdir 2> /dev/null
16699
16700         stop $facet || error "stop MDS failed"
16701         start $facet $(mdsdevname $((mdtidx + 1))) $MDS_MOUNT_OPTS ||
16702                 error "start MDS fail"
16703 }
16704 run_test 257 "xattr locks are not lost"
16705
16706 # Verify we take the i_mutex when security requires it
16707 test_258a() {
16708 #define OBD_FAIL_IMUTEX_SEC 0x141c
16709         $LCTL set_param fail_loc=0x141c
16710         touch $DIR/$tfile
16711         chmod u+s $DIR/$tfile
16712         chmod a+rwx $DIR/$tfile
16713         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
16714         RC=$?
16715         if [ $RC -ne 0 ]; then
16716                 error "error, failed to take i_mutex, rc=$?"
16717         fi
16718         rm -f $DIR/$tfile
16719 }
16720 run_test 258a
16721
16722 # Verify we do NOT take the i_mutex in the normal case
16723 test_258b() {
16724 #define OBD_FAIL_IMUTEX_NOSEC 0x141d
16725         $LCTL set_param fail_loc=0x141d
16726         touch $DIR/$tfile
16727         chmod a+rwx $DIR
16728         chmod a+rw $DIR/$tfile
16729         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
16730         RC=$?
16731         if [ $RC -ne 0 ]; then
16732                 error "error, took i_mutex unnecessarily, rc=$?"
16733         fi
16734         rm -f $DIR/$tfile
16735
16736 }
16737 run_test 258b "verify i_mutex security behavior"
16738
16739 test_259() {
16740         local file=$DIR/$tfile
16741         local before
16742         local after
16743
16744         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip "ldiskfs only test"
16745
16746         stack_trap "rm -f $file" EXIT
16747
16748         wait_delete_completed
16749         before=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16750         echo "before: $before"
16751
16752         $LFS setstripe -i 0 -c 1 $file
16753         dd if=/dev/zero of=$file bs=1M count=10 || error "couldn't write"
16754         sync_all_data
16755         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16756         echo "after write: $after"
16757
16758 #define OBD_FAIL_OSD_FAIL_AT_TRUNCATE          0x2301
16759         do_facet ost1 $LCTL set_param fail_loc=0x2301
16760         $TRUNCATE $file 0
16761         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16762         echo "after truncate: $after"
16763
16764         stop ost1
16765         do_facet ost1 $LCTL set_param fail_loc=0
16766         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
16767         sleep 2
16768         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16769         echo "after restart: $after"
16770         [ $((after - before)) -ge $(fs_log_size ost1) ] &&
16771                 error "missing truncate?"
16772
16773         return 0
16774 }
16775 run_test 259 "crash at delayed truncate"
16776
16777 test_260() {
16778 #define OBD_FAIL_MDC_CLOSE               0x806
16779         $LCTL set_param fail_loc=0x80000806
16780         touch $DIR/$tfile
16781
16782 }
16783 run_test 260 "Check mdc_close fail"
16784
16785 ### Data-on-MDT sanity tests ###
16786 test_270a() {
16787         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
16788                 skip "Need MDS version at least 2.10.55 for DoM"
16789
16790         # create DoM file
16791         local dom=$DIR/$tdir/dom_file
16792         local tmp=$DIR/$tdir/tmp_file
16793
16794         mkdir -p $DIR/$tdir
16795
16796         # basic checks for DoM component creation
16797         $LFS setstripe -E 1024K -E 2048K -L mdt $dom 2>/dev/null &&
16798                 error "Can set MDT layout to non-first entry"
16799
16800         $LFS setstripe -E 1024K -L mdt -E 2048K -L mdt $dom 2>/dev/null &&
16801                 error "Can define multiple entries as MDT layout"
16802
16803         $LFS setstripe -E 1M -L mdt $dom || error "Can't create DoM layout"
16804
16805         [ $($LFS getstripe -L $dom) == "mdt" ] || error "bad pattern"
16806         [ $($LFS getstripe -c $dom) == 0 ] || error "bad stripe count"
16807         [ $($LFS getstripe -S $dom) == 1048576 ] || error "bad stripe size"
16808
16809         local mdtidx=$($LFS getstripe -m $dom)
16810         local mdtname=MDT$(printf %04x $mdtidx)
16811         local facet=mds$((mdtidx + 1))
16812         local space_check=1
16813
16814         # Skip free space checks with ZFS
16815         [ "$(facet_fstype $facet)" == "zfs" ] && space_check=0
16816
16817         # write
16818         sync
16819         local size_tmp=$((65536 * 3))
16820         local mdtfree1=$(do_facet $facet \
16821                          lctl get_param -n osd*.*$mdtname.kbytesfree)
16822
16823         dd if=/dev/urandom of=$tmp bs=1024 count=$((size_tmp / 1024))
16824         # check also direct IO along write
16825         # IO size must be a multiple of PAGE_SIZE on all platforms (ARM=64KB)
16826         dd if=$tmp of=$dom bs=65536 count=$((size_tmp / 65536)) oflag=direct
16827         sync
16828         cmp $tmp $dom || error "file data is different"
16829         [ $(stat -c%s $dom) == $size_tmp ] ||
16830                 error "bad size after write: $(stat -c%s $dom) != $size_tmp"
16831         if [ $space_check == 1 ]; then
16832                 local mdtfree2=$(do_facet $facet \
16833                                  lctl get_param -n osd*.*$mdtname.kbytesfree)
16834
16835                 # increase in usage from by $size_tmp
16836                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_tmp / 1024)) ] ||
16837                         error "MDT free space wrong after write: " \
16838                               "$mdtfree1 >= $mdtfree2 + $size_tmp/1024"
16839         fi
16840
16841         # truncate
16842         local size_dom=10000
16843
16844         $TRUNCATE $dom $size_dom
16845         [ $(stat -c%s $dom) == $size_dom ] ||
16846                 error "bad size after truncate: $(stat -c%s $dom) != $size_dom"
16847         if [ $space_check == 1 ]; then
16848                 mdtfree1=$(do_facet $facet \
16849                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16850                 # decrease in usage from $size_tmp to new $size_dom
16851                 [ $(($mdtfree1 - $mdtfree2)) -ge \
16852                   $(((size_tmp - size_dom) / 1024)) ] ||
16853                         error "MDT free space is wrong after truncate: " \
16854                               "$mdtfree1 >= $mdtfree2 + ($size_tmp - $size_dom) / 1024"
16855         fi
16856
16857         # append
16858         cat $tmp >> $dom
16859         sync
16860         size_dom=$((size_dom + size_tmp))
16861         [ $(stat -c%s $dom) == $size_dom ] ||
16862                 error "bad size after append: $(stat -c%s $dom) != $size_dom"
16863         if [ $space_check == 1 ]; then
16864                 mdtfree2=$(do_facet $facet \
16865                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16866                 # increase in usage by $size_tmp from previous
16867                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_tmp / 1024)) ] ||
16868                         error "MDT free space is wrong after append: " \
16869                               "$mdtfree1 >= $mdtfree2 + $size_tmp/1024"
16870         fi
16871
16872         # delete
16873         rm $dom
16874         if [ $space_check == 1 ]; then
16875                 mdtfree1=$(do_facet $facet \
16876                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16877                 # decrease in usage by $size_dom from previous
16878                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_dom / 1024)) ] ||
16879                         error "MDT free space is wrong after removal: " \
16880                               "$mdtfree1 >= $mdtfree2 + $size_dom/1024"
16881         fi
16882
16883         # combined striping
16884         $LFS setstripe -E 1024K -L mdt -E EOF $dom ||
16885                 error "Can't create DoM + OST striping"
16886
16887         size_tmp=2031616 # must be a multiple of PAGE_SIZE=65536 on ARM
16888         dd if=/dev/urandom of=$tmp bs=1024 count=$((size_tmp / 1024))
16889         # check also direct IO along write
16890         dd if=$tmp of=$dom bs=65536 count=$((size_tmp / 65536)) oflag=direct
16891         sync
16892         cmp $tmp $dom || error "file data is different"
16893         [ $(stat -c%s $dom) == $size_tmp ] ||
16894                 error "bad size after write: $(stat -c%s $dom) != $size_tmp"
16895         rm $dom $tmp
16896
16897         return 0
16898 }
16899 run_test 270a "DoM: basic functionality tests"
16900
16901 test_270b() {
16902         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
16903                 skip "Need MDS version at least 2.10.55"
16904
16905         local dom=$DIR/$tdir/dom_file
16906         local max_size=1048576
16907
16908         mkdir -p $DIR/$tdir
16909         $LFS setstripe -E $max_size -L mdt $dom
16910
16911         # truncate over the limit
16912         $TRUNCATE $dom $(($max_size + 1)) &&
16913                 error "successful truncate over the maximum size"
16914         # write over the limit
16915         dd if=/dev/zero of=$dom bs=$max_size seek=1 count=1 &&
16916                 error "successful write over the maximum size"
16917         # append over the limit
16918         dd if=/dev/zero of=$dom bs=$(($max_size - 3)) count=1
16919         echo "12345" >> $dom && error "successful append over the maximum size"
16920         rm $dom
16921
16922         return 0
16923 }
16924 run_test 270b "DoM: maximum size overflow checks for DoM-only file"
16925
16926 test_270c() {
16927         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
16928                 skip "Need MDS version at least 2.10.55"
16929
16930         mkdir -p $DIR/$tdir
16931         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
16932
16933         # check files inherit DoM EA
16934         touch $DIR/$tdir/first
16935         [ $($LFS getstripe -L $DIR/$tdir/first) == "mdt" ] ||
16936                 error "bad pattern"
16937         [ $($LFS getstripe -c $DIR/$tdir/first) == 0 ] ||
16938                 error "bad stripe count"
16939         [ $($LFS getstripe -S $DIR/$tdir/first) == 1048576 ] ||
16940                 error "bad stripe size"
16941
16942         # check directory inherits DoM EA and uses it as default
16943         mkdir $DIR/$tdir/subdir
16944         touch $DIR/$tdir/subdir/second
16945         [ $($LFS getstripe -L $DIR/$tdir/subdir/second) == "mdt" ] ||
16946                 error "bad pattern in sub-directory"
16947         [ $($LFS getstripe -c $DIR/$tdir/subdir/second) == 0 ] ||
16948                 error "bad stripe count in sub-directory"
16949         [ $($LFS getstripe -S $DIR/$tdir/subdir/second) == 1048576 ] ||
16950                 error "bad stripe size in sub-directory"
16951         return 0
16952 }
16953 run_test 270c "DoM: DoM EA inheritance tests"
16954
16955 test_270d() {
16956         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
16957                 skip "Need MDS version at least 2.10.55"
16958
16959         mkdir -p $DIR/$tdir
16960         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
16961
16962         # inherit default DoM striping
16963         mkdir $DIR/$tdir/subdir
16964         touch $DIR/$tdir/subdir/f1
16965
16966         # change default directory striping
16967         $LFS setstripe -c 1 $DIR/$tdir/subdir
16968         touch $DIR/$tdir/subdir/f2
16969         [ $($LFS getstripe -c $DIR/$tdir/subdir/f2) == 1 ] ||
16970                 error "wrong default striping in file 2"
16971         [ $($LFS getstripe -L $DIR/$tdir/subdir/f2) == "raid0" ] ||
16972                 error "bad pattern in file 2"
16973         return 0
16974 }
16975 run_test 270d "DoM: change striping from DoM to RAID0"
16976
16977 test_270e() {
16978         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
16979                 skip "Need MDS version at least 2.10.55"
16980
16981         mkdir -p $DIR/$tdir/dom
16982         mkdir -p $DIR/$tdir/norm
16983         DOMFILES=20
16984         NORMFILES=10
16985         $LFS setstripe -E 1M -L mdt $DIR/$tdir/dom
16986         $LFS setstripe -i 0 -S 2M $DIR/$tdir/norm
16987
16988         createmany -o $DIR/$tdir/dom/dom- $DOMFILES
16989         createmany -o $DIR/$tdir/norm/norm- $NORMFILES
16990
16991         # find DoM files by layout
16992         NUM=$($LFS find -L mdt -type f $DIR/$tdir 2>/dev/null | wc -l)
16993         [ $NUM -eq  $DOMFILES ] ||
16994                 error "lfs find -L: found $NUM, expected $DOMFILES"
16995         echo "Test 1: lfs find 20 DOM files by layout: OK"
16996
16997         # there should be 1 dir with default DOM striping
16998         NUM=$($LFS find -L mdt -type d $DIR/$tdir 2>/dev/null | wc -l)
16999         [ $NUM -eq  1 ] ||
17000                 error "lfs find -L: found $NUM, expected 1 dir"
17001         echo "Test 2: lfs find 1 DOM dir by layout: OK"
17002
17003         # find DoM files by stripe size
17004         NUM=$($LFS find -S -1200K -type f $DIR/$tdir 2>/dev/null | wc -l)
17005         [ $NUM -eq  $DOMFILES ] ||
17006                 error "lfs find -S: found $NUM, expected $DOMFILES"
17007         echo "Test 4: lfs find 20 DOM files by stripe size: OK"
17008
17009         # find files by stripe offset except DoM files
17010         NUM=$($LFS find -i 0 -type f $DIR/$tdir 2>/dev/null | wc -l)
17011         [ $NUM -eq  $NORMFILES ] ||
17012                 error "lfs find -i: found $NUM, expected $NORMFILES"
17013         echo "Test 5: lfs find no DOM files by stripe index: OK"
17014         return 0
17015 }
17016 run_test 270e "DoM: lfs find with DoM files test"
17017
17018 test_270f() {
17019         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17020                 skip "Need MDS version at least 2.10.55"
17021
17022         local mdtname=${FSNAME}-MDT0000-mdtlov
17023         local dom=$DIR/$tdir/dom_file
17024         local dom_limit_saved=$(do_facet mds1 $LCTL get_param -n \
17025                                                 lod.$mdtname.dom_stripesize)
17026         local dom_limit=131072
17027
17028         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=$dom_limit
17029         local dom_current=$(do_facet mds1 $LCTL get_param -n \
17030                                                 lod.$mdtname.dom_stripesize)
17031         [ ${dom_limit} -eq ${dom_current} ] ||
17032                 error "Cannot change per-MDT DoM stripe limit to $dom_limit"
17033
17034         $LFS mkdir -i 0 -c 1 $DIR/$tdir
17035         $LFS setstripe -d $DIR/$tdir
17036         $LFS setstripe -E $dom_limit -L mdt $DIR/$tdir ||
17037                 error "Can't set directory default striping"
17038
17039         # exceed maximum stripe size
17040         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
17041                 error "Can't create file with $((dom_limit * 2)) DoM stripe"
17042         [ $($LFS getstripe -S $dom) -eq $((dom_limit * 2)) ] &&
17043                 error "Able to create DoM component size more than LOD limit"
17044
17045         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=0
17046         dom_current=$(do_facet mds1 $LCTL get_param -n \
17047                                                 lod.$mdtname.dom_stripesize)
17048         [ 0 -eq ${dom_current} ] ||
17049                 error "Can't set zero DoM stripe limit"
17050         rm $dom
17051
17052         # attempt to create DoM file on server with disabled DoM should
17053         # remove DoM entry from layout and be succeed
17054         $LFS setstripe -E $dom_limit -L mdt -E -1 $dom ||
17055                 error "Can't create DoM file (DoM is disabled)"
17056         [ $($LFS getstripe -L $dom) == "mdt" ] &&
17057                 error "File has DoM component while DoM is disabled"
17058         rm $dom
17059
17060         # attempt to create DoM file with only DoM stripe should return error
17061         $LFS setstripe -E $dom_limit -L mdt $dom &&
17062                 error "Able to create DoM-only file while DoM is disabled"
17063
17064         # too low values to be aligned with smallest stripe size 64K
17065         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=30000
17066         dom_current=$(do_facet mds1 $LCTL get_param -n \
17067                                                 lod.$mdtname.dom_stripesize)
17068         [ 30000 -eq ${dom_current} ] &&
17069                 error "Can set too small DoM stripe limit"
17070
17071         # 64K is a minimal stripe size in Lustre, expect limit of that size
17072         [ 65536 -eq ${dom_current} ] ||
17073                 error "Limit is not set to 64K but ${dom_current}"
17074
17075         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=2147483648
17076         dom_current=$(do_facet mds1 $LCTL get_param -n \
17077                                                 lod.$mdtname.dom_stripesize)
17078         echo $dom_current
17079         [ 2147483648 -eq ${dom_current} ] &&
17080                 error "Can set too large DoM stripe limit"
17081
17082         do_facet mds1 $LCTL set_param -n \
17083                                 lod.$mdtname.dom_stripesize=$((dom_limit * 2))
17084         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
17085                 error "Can't create DoM component size after limit change"
17086         do_facet mds1 $LCTL set_param -n \
17087                                 lod.$mdtname.dom_stripesize=$((dom_limit / 2))
17088         $LFS setstripe -E $dom_limit -L mdt ${dom}_big ||
17089                 error "Can't create DoM file after limit decrease"
17090         [ $($LFS getstripe -S ${dom}_big) -eq $((dom_limit / 2)) ] ||
17091                 error "Can create big DoM component after limit decrease"
17092         touch ${dom}_def ||
17093                 error "Can't create file with old default layout"
17094
17095         do_facet mds1 $LCTL set_param -n lod.*.dom_stripesize=$dom_limit_saved
17096         return 0
17097 }
17098 run_test 270f "DoM: maximum DoM stripe size checks"
17099
17100 test_271a() {
17101         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17102                 skip "Need MDS version at least 2.10.55"
17103
17104         local dom=$DIR/$tdir/dom
17105
17106         mkdir -p $DIR/$tdir
17107
17108         $LFS setstripe -E 1024K -L mdt $dom
17109
17110         lctl set_param -n mdc.*.stats=clear
17111         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
17112         cat $dom > /dev/null
17113         local reads=$(lctl get_param -n mdc.*.stats | grep -c ost_read)
17114         [ $reads -eq 0 ] || error "Unexpected $reads READ RPCs"
17115         ls $dom
17116         rm -f $dom
17117 }
17118 run_test 271a "DoM: data is cached for read after write"
17119
17120 test_271b() {
17121         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17122                 skip "Need MDS version at least 2.10.55"
17123
17124         local dom=$DIR/$tdir/dom
17125
17126         mkdir -p $DIR/$tdir
17127
17128         $LFS setstripe -E 1024K -L mdt -E EOF $dom
17129
17130         lctl set_param -n mdc.*.stats=clear
17131         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
17132         cancel_lru_locks mdc
17133         $CHECKSTAT -t file -s 4096 $dom || error "stat #1 fails"
17134         # second stat to check size is cached on client
17135         $CHECKSTAT -t file -s 4096 $dom || error "stat #2 fails"
17136         local gls=$(lctl get_param -n mdc.*.stats | grep -c ldlm_glimpse)
17137         [ $gls -eq 0 ] || error "Unexpected $gls glimpse RPCs"
17138         rm -f $dom
17139 }
17140 run_test 271b "DoM: no glimpse RPC for stat (DoM only file)"
17141
17142 test_271ba() {
17143         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17144                 skip "Need MDS version at least 2.10.55"
17145
17146         local dom=$DIR/$tdir/dom
17147
17148         mkdir -p $DIR/$tdir
17149
17150         $LFS setstripe -E 1024K -L mdt -E EOF $dom
17151
17152         lctl set_param -n mdc.*.stats=clear
17153         lctl set_param -n osc.*.stats=clear
17154         dd if=/dev/zero of=$dom bs=2048K count=1 || return 1
17155         cancel_lru_locks mdc
17156         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
17157         # second stat to check size is cached on client
17158         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
17159         local gls=$(lctl get_param -n mdc.*.stats | grep -c ldlm_glimpse)
17160         [ $gls == 0 ] || error "Unexpected $gls glimpse RPCs"
17161         local gls=$(lctl get_param -n osc.*.stats | grep -c ldlm_glimpse)
17162         [ $gls == 0 ] || error "Unexpected $gls OSC glimpse RPCs"
17163         rm -f $dom
17164 }
17165 run_test 271ba "DoM: no glimpse RPC for stat (combined file)"
17166
17167
17168 get_mdc_stats() {
17169         local mdtidx=$1
17170         local param=$2
17171         local mdt=MDT$(printf %04x $mdtidx)
17172
17173         if [ -z $param ]; then
17174                 lctl get_param -n mdc.*$mdt*.stats
17175         else
17176                 lctl get_param -n mdc.*$mdt*.stats | awk "/$param/"'{print $2}'
17177         fi
17178 }
17179
17180 test_271c() {
17181         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17182                 skip "Need MDS version at least 2.10.55"
17183
17184         local dom=$DIR/$tdir/dom
17185
17186         mkdir -p $DIR/$tdir
17187
17188         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17189
17190         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
17191         local facet=mds$((mdtidx + 1))
17192
17193         cancel_lru_locks mdc
17194         do_facet $facet lctl set_param -n mdt.*.dom_lock=0
17195         createmany -o $dom 1000
17196         lctl set_param -n mdc.*.stats=clear
17197         smalliomany -w $dom 1000 200
17198         get_mdc_stats $mdtidx
17199         local enq=$(get_mdc_stats $mdtidx ldlm_ibits_enqueue)
17200         # Each file has 1 open, 1 IO enqueues, total 2000
17201         # but now we have also +1 getxattr for security.capability, total 3000
17202         [ $enq -ge 2000 ] || error "Too few enqueues $enq, expected > 2000"
17203         unlinkmany $dom 1000
17204
17205         cancel_lru_locks mdc
17206         do_facet $facet lctl set_param -n mdt.*.dom_lock=1
17207         createmany -o $dom 1000
17208         lctl set_param -n mdc.*.stats=clear
17209         smalliomany -w $dom 1000 200
17210         local enq_2=$(get_mdc_stats $mdtidx ldlm_ibits_enqueue)
17211         # Expect to see reduced amount of RPCs by 1000 due to single enqueue
17212         # for OPEN and IO lock.
17213         [ $((enq - enq_2)) -ge 1000 ] ||
17214                 error "Too many enqueues $enq_2, expected about $((enq - 1000))"
17215         unlinkmany $dom 1000
17216         return 0
17217 }
17218 run_test 271c "DoM: IO lock at open saves enqueue RPCs"
17219
17220 cleanup_271def_tests() {
17221         trap 0
17222         rm -f $1
17223 }
17224
17225 test_271d() {
17226         [ $MDS1_VERSION -lt $(version_code 2.10.57) ] &&
17227                 skip "Need MDS version at least 2.10.57"
17228
17229         local dom=$DIR/$tdir/dom
17230         local tmp=$TMP/$tfile
17231         trap "cleanup_271def_tests $tmp" EXIT
17232
17233         mkdir -p $DIR/$tdir
17234
17235         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17236
17237         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
17238
17239         cancel_lru_locks mdc
17240         dd if=/dev/urandom of=$tmp bs=1000 count=1
17241         dd if=$tmp of=$dom bs=1000 count=1
17242         cancel_lru_locks mdc
17243
17244         cat /etc/hosts >> $tmp
17245         lctl set_param -n mdc.*.stats=clear
17246
17247         # append data to the same file it should update local page
17248         echo "Append to the same page"
17249         cat /etc/hosts >> $dom
17250         local num=$(get_mdc_stats $mdtidx ost_read)
17251         local ra=$(get_mdc_stats $mdtidx req_active)
17252         local rw=$(get_mdc_stats $mdtidx req_waittime)
17253
17254         [ -z $num ] || error "$num READ RPC occured"
17255         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17256         echo "... DONE"
17257
17258         # compare content
17259         cmp $tmp $dom || error "file miscompare"
17260
17261         cancel_lru_locks mdc
17262         lctl set_param -n mdc.*.stats=clear
17263
17264         echo "Open and read file"
17265         cat $dom > /dev/null
17266         local num=$(get_mdc_stats $mdtidx ost_read)
17267         local ra=$(get_mdc_stats $mdtidx req_active)
17268         local rw=$(get_mdc_stats $mdtidx req_waittime)
17269
17270         [ -z $num ] || error "$num READ RPC occured"
17271         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17272         echo "... DONE"
17273
17274         # compare content
17275         cmp $tmp $dom || error "file miscompare"
17276
17277         return 0
17278 }
17279 run_test 271d "DoM: read on open (1K file in reply buffer)"
17280
17281 test_271e() {
17282         [ $MDS1_VERSION -lt $(version_code 2.10.57) ] &&
17283                 skip "Need MDS version at least 2.10.57"
17284
17285         local dom=$DIR/$tdir/dom
17286         local tmp=$TMP/${tfile}.data
17287         trap "cleanup_271def_tests $tmp" EXIT
17288
17289         mkdir -p $DIR/$tdir
17290
17291         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17292
17293         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
17294
17295         cancel_lru_locks mdc
17296         dd if=/dev/urandom of=$tmp bs=30K count=1
17297         dd if=$tmp of=$dom bs=30K count=1
17298         cancel_lru_locks mdc
17299         cat /etc/hosts >> $tmp
17300         lctl set_param -n mdc.*.stats=clear
17301
17302         echo "Append to the same page"
17303         cat /etc/hosts >> $dom
17304
17305         local num=$(get_mdc_stats $mdtidx ost_read)
17306         local ra=$(get_mdc_stats $mdtidx req_active)
17307         local rw=$(get_mdc_stats $mdtidx req_waittime)
17308
17309         [ -z $num ] || error "$num READ RPC occured"
17310         # Reply buffer can be adjusted for larger buffer by resend
17311         echo "... DONE with $((ra - rw)) resends"
17312
17313         # compare content
17314         cmp $tmp $dom || error "file miscompare"
17315
17316         cancel_lru_locks mdc
17317         lctl set_param -n mdc.*.stats=clear
17318
17319         echo "Open and read file"
17320         cat $dom > /dev/null
17321         local num=$(get_mdc_stats $mdtidx ost_read)
17322         local ra=$(get_mdc_stats $mdtidx req_active)
17323         local rw=$(get_mdc_stats $mdtidx req_waittime)
17324
17325         [ -z $num ] || error "$num READ RPC occured"
17326         # Reply buffer can be adjusted for larger buffer by resend
17327         echo "... DONE with $((ra - rw)) resends"
17328
17329         # compare content
17330         cmp $tmp $dom || error "file miscompare"
17331
17332         return 0
17333 }
17334 run_test 271e "DoM: read on open (30K file with reply buffer adjusting)"
17335
17336 test_271f() {
17337         [ $MDS1_VERSION -lt $(version_code 2.10.57) ] &&
17338                 skip "Need MDS version at least 2.10.57"
17339
17340         local dom=$DIR/$tdir/dom
17341         local tmp=$TMP/$tfile
17342         trap "cleanup_271def_tests $tmp" EXIT
17343
17344         mkdir -p $DIR/$tdir
17345
17346         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17347
17348         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
17349
17350         cancel_lru_locks mdc
17351         dd if=/dev/urandom of=$tmp bs=200000 count=1
17352         dd if=$tmp of=$dom bs=200000 count=1
17353         cancel_lru_locks mdc
17354         cat /etc/hosts >> $tmp
17355         lctl set_param -n mdc.*.stats=clear
17356
17357         echo "Append to the same page"
17358         cat /etc/hosts >> $dom
17359         local num=$(get_mdc_stats $mdtidx ost_read)
17360         local ra=$(get_mdc_stats $mdtidx req_active)
17361         local rw=$(get_mdc_stats $mdtidx req_waittime)
17362
17363         [ -z $num ] || error "$num READ RPC occured"
17364         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17365         echo "... DONE"
17366
17367         # compare content
17368         cmp $tmp $dom || error "file miscompare"
17369
17370         cancel_lru_locks mdc
17371         lctl set_param -n mdc.*.stats=clear
17372
17373         echo "Open and read file"
17374         cat $dom > /dev/null
17375         local num=$(get_mdc_stats $mdtidx ost_read)
17376         local ra=$(get_mdc_stats $mdtidx req_active)
17377         local rw=$(get_mdc_stats $mdtidx req_waittime)
17378
17379         [ $num -eq 1 ] || error "expect 1 READ RPC, $num occured"
17380         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17381         echo "... DONE"
17382
17383         # compare content
17384         cmp $tmp $dom || error "file miscompare"
17385
17386         return 0
17387 }
17388 run_test 271f "DoM: read on open (200K file and read tail)"
17389
17390 test_272a() {
17391         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
17392                 skip "Need MDS version at least 2.11.50"
17393
17394         local dom=$DIR/$tdir/dom
17395         mkdir -p $DIR/$tdir
17396
17397         $LFS setstripe -E 256K -L mdt -E -1 -c1 $dom
17398         dd if=/dev/urandom of=$dom bs=512K count=1 ||
17399                 error "failed to write data into $dom"
17400         local old_md5=$(md5sum $dom)
17401
17402         $LFS migrate -E 256K -L mdt -E -1 -c2 $dom ||
17403                 error "failed to migrate to the same DoM component"
17404
17405         [ $($LFS getstripe -c $dom) -eq 2 ] ||
17406                 error "layout was not changed silently"
17407
17408         local new_md5=$(md5sum $dom)
17409
17410         [ "$old_md5" != "$new_md5" ] &&
17411                 error "md5sum differ: $old_md5, $new_md5"
17412         return 0
17413 }
17414 run_test 272a "DoM migration: new layout with the same DOM component"
17415
17416 test_272b() {
17417         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
17418                 skip "Need MDS version at least 2.11.50"
17419
17420         local dom=$DIR/$tdir/dom
17421         mkdir -p $DIR/$tdir
17422         $LFS setstripe -E 1M -L mdt -E -1 -c1 $dom
17423
17424         local mdtidx=$($LFS getstripe -m $dom)
17425         local mdtname=MDT$(printf %04x $mdtidx)
17426         local facet=mds$((mdtidx + 1))
17427
17428         local mdtfree1=$(do_facet $facet \
17429                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17430         dd if=/dev/urandom of=$dom bs=2M count=1 ||
17431                 error "failed to write data into $dom"
17432         local old_md5=$(md5sum $dom)
17433         cancel_lru_locks mdc
17434         local mdtfree1=$(do_facet $facet \
17435                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17436
17437         $LFS migrate -c2 $dom ||
17438                 error "failed to migrate to the new composite layout"
17439         [ $($LFS getstripe -L $dom) == 'mdt' ] &&
17440                 error "MDT stripe was not removed"
17441
17442         cancel_lru_locks mdc
17443         local new_md5=$(md5sum $dom)
17444         [ "$old_md5" != "$new_md5" ] &&
17445                 error "$old_md5 != $new_md5"
17446
17447         # Skip free space checks with ZFS
17448         if [ "$(facet_fstype $facet)" != "zfs" ]; then
17449                 local mdtfree2=$(do_facet $facet \
17450                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17451                 [ $mdtfree2 -gt $mdtfree1 ] ||
17452                         error "MDT space is not freed after migration"
17453         fi
17454         return 0
17455 }
17456 run_test 272b "DoM migration: DOM file to the OST-striped file (plain)"
17457
17458 test_272c() {
17459         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
17460                 skip "Need MDS version at least 2.11.50"
17461
17462         local dom=$DIR/$tdir/$tfile
17463         mkdir -p $DIR/$tdir
17464         $LFS setstripe -E 1M -L mdt -E -1 -c1 $dom
17465
17466         local mdtidx=$($LFS getstripe -m $dom)
17467         local mdtname=MDT$(printf %04x $mdtidx)
17468         local facet=mds$((mdtidx + 1))
17469
17470         dd if=/dev/urandom of=$dom bs=2M count=1 oflag=direct ||
17471                 error "failed to write data into $dom"
17472         local old_md5=$(md5sum $dom)
17473         cancel_lru_locks mdc
17474         local mdtfree1=$(do_facet $facet \
17475                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17476
17477         $LFS migrate -E 2M -c1 -E -1 -c2 $dom ||
17478                 error "failed to migrate to the new composite layout"
17479         [ $($LFS getstripe -L $dom) == 'mdt' ] &&
17480                 error "MDT stripe was not removed"
17481
17482         cancel_lru_locks mdc
17483         local new_md5=$(md5sum $dom)
17484         [ "$old_md5" != "$new_md5" ] &&
17485                 error "$old_md5 != $new_md5"
17486
17487         # Skip free space checks with ZFS
17488         if [ "$(facet_fstype $facet)" != "zfs" ]; then
17489                 local mdtfree2=$(do_facet $facet \
17490                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17491                 [ $mdtfree2 -gt $mdtfree1 ] ||
17492                         error "MDS space is not freed after migration"
17493         fi
17494         return 0
17495 }
17496 run_test 272c "DoM migration: DOM file to the OST-striped file (composite)"
17497
17498 test_273a() {
17499         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
17500                 skip "Need MDS version at least 2.11.50"
17501
17502         # Layout swap cannot be done if either file has DOM component,
17503         # this will never be supported, migration should be used instead
17504
17505         local dom=$DIR/$tdir/$tfile
17506         mkdir -p $DIR/$tdir
17507
17508         $LFS setstripe -c2 ${dom}_plain
17509         $LFS setstripe -E 1M -L mdt -E -1 -c2 ${dom}_dom
17510         $LFS swap_layouts ${dom}_plain ${dom}_dom &&
17511                 error "can swap layout with DoM component"
17512         $LFS swap_layouts ${dom}_dom ${dom}_plain &&
17513                 error "can swap layout with DoM component"
17514
17515         $LFS setstripe -E 1M -c1 -E -1 -c2 ${dom}_comp
17516         $LFS swap_layouts ${dom}_comp ${dom}_dom &&
17517                 error "can swap layout with DoM component"
17518         $LFS swap_layouts ${dom}_dom ${dom}_comp &&
17519                 error "can swap layout with DoM component"
17520         return 0
17521 }
17522 run_test 273a "DoM: layout swapping should fail with DOM"
17523
17524 test_275() {
17525         remote_ost_nodsh && skip "remote OST with nodsh"
17526         [ $OST1_VERSION -lt $(version_code 2.10.57) ] &&
17527                 skip "Need OST version >= 2.10.57"
17528
17529         local file=$DIR/$tfile
17530         local oss
17531
17532         oss=$(comma_list $(osts_nodes))
17533
17534         dd if=/dev/urandom of=$file bs=1M count=2 ||
17535                 error "failed to create a file"
17536         cancel_lru_locks osc
17537
17538         #lock 1
17539         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
17540                 error "failed to read a file"
17541
17542 #define OBD_FAIL_LDLM_PAUSE_CANCEL2      0x31f
17543         $LCTL set_param fail_loc=0x8000031f
17544
17545         cancel_lru_locks osc &
17546         sleep 1
17547
17548 #define OBD_FAIL_LDLM_PROLONG_PAUSE      0x32b
17549         do_nodes $oss $LCTL set_param fail_loc=0x8000032b
17550         #IO takes another lock, but matches the PENDING one
17551         #and places it to the IO RPC
17552         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
17553                 error "failed to read a file with PENDING lock"
17554 }
17555 run_test 275 "Read on a canceled duplicate lock"
17556
17557 test_276() {
17558         remote_ost_nodsh && skip "remote OST with nodsh"
17559         local pid
17560
17561         do_facet ost1 "(while true; do \
17562                 $LCTL get_param obdfilter.*.filesfree > /dev/null 2>&1; \
17563                 done) & pid=\\\$!; echo \\\$pid > $TMP/sanity_276_pid" &
17564         pid=$!
17565
17566         for LOOP in $(seq 20); do
17567                 stop ost1
17568                 start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
17569         done
17570         kill -9 $pid
17571         do_facet ost1 "pid=\\\$(cat $TMP/sanity_276_pid); kill -9 \\\$pid; \
17572                 rm $TMP/sanity_276_pid"
17573 }
17574 run_test 276 "Race between mount and obd_statfs"
17575
17576 cleanup_test_300() {
17577         trap 0
17578         umask $SAVE_UMASK
17579 }
17580 test_striped_dir() {
17581         local mdt_index=$1
17582         local stripe_count
17583         local stripe_index
17584
17585         mkdir -p $DIR/$tdir
17586
17587         SAVE_UMASK=$(umask)
17588         trap cleanup_test_300 RETURN EXIT
17589
17590         $LFS setdirstripe -i $mdt_index -c 2 -H all_char -o 755 \
17591                                                 $DIR/$tdir/striped_dir ||
17592                 error "set striped dir error"
17593
17594         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
17595         [ "$mode" = "755" ] || error "expect 755 got $mode"
17596
17597         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
17598                 error "getdirstripe failed"
17599         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
17600         if [ "$stripe_count" != "2" ]; then
17601                 error "1:stripe_count is $stripe_count, expect 2"
17602         fi
17603         stripe_count=$($LFS getdirstripe -T $DIR/$tdir/striped_dir)
17604         if [ "$stripe_count" != "2" ]; then
17605                 error "2:stripe_count is $stripe_count, expect 2"
17606         fi
17607
17608         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
17609         if [ "$stripe_index" != "$mdt_index" ]; then
17610                 error "stripe_index is $stripe_index, expect $mdt_index"
17611         fi
17612
17613         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
17614                 error "nlink error after create striped dir"
17615
17616         mkdir $DIR/$tdir/striped_dir/a
17617         mkdir $DIR/$tdir/striped_dir/b
17618
17619         stat $DIR/$tdir/striped_dir/a ||
17620                 error "create dir under striped dir failed"
17621         stat $DIR/$tdir/striped_dir/b ||
17622                 error "create dir under striped dir failed"
17623
17624         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
17625                 error "nlink error after mkdir"
17626
17627         rmdir $DIR/$tdir/striped_dir/a
17628         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
17629                 error "nlink error after rmdir"
17630
17631         rmdir $DIR/$tdir/striped_dir/b
17632         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
17633                 error "nlink error after rmdir"
17634
17635         chattr +i $DIR/$tdir/striped_dir
17636         createmany -o $DIR/$tdir/striped_dir/f 10 &&
17637                 error "immutable flags not working under striped dir!"
17638         chattr -i $DIR/$tdir/striped_dir
17639
17640         rmdir $DIR/$tdir/striped_dir ||
17641                 error "rmdir striped dir error"
17642
17643         cleanup_test_300
17644
17645         true
17646 }
17647
17648 test_300a() {
17649         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
17650                 skip "skipped for lustre < 2.7.0"
17651         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17652         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17653
17654         test_striped_dir 0 || error "failed on striped dir on MDT0"
17655         test_striped_dir 1 || error "failed on striped dir on MDT0"
17656 }
17657 run_test 300a "basic striped dir sanity test"
17658
17659 test_300b() {
17660         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
17661                 skip "skipped for lustre < 2.7.0"
17662         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17663         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17664
17665         local i
17666         local mtime1
17667         local mtime2
17668         local mtime3
17669
17670         test_mkdir $DIR/$tdir || error "mkdir fail"
17671         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17672                 error "set striped dir error"
17673         for i in {0..9}; do
17674                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
17675                 sleep 1
17676                 touch $DIR/$tdir/striped_dir/file_$i || error "touch error $i"
17677                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
17678                 [ $mtime1 -eq $mtime2 ] && error "mtime unchanged after create"
17679                 sleep 1
17680                 rm -f $DIR/$tdir/striped_dir/file_$i || error "unlink error $i"
17681                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
17682                 [ $mtime2 -eq $mtime3 ] && error "mtime unchanged after unlink"
17683         done
17684         true
17685 }
17686 run_test 300b "check ctime/mtime for striped dir"
17687
17688 test_300c() {
17689         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
17690                 skip "skipped for lustre < 2.7.0"
17691         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17692         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17693
17694         local file_count
17695
17696         mkdir -p $DIR/$tdir
17697         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
17698                 error "set striped dir error"
17699
17700         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
17701                 error "chown striped dir failed"
17702
17703         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
17704                 error "create 5k files failed"
17705
17706         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
17707
17708         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
17709
17710         rm -rf $DIR/$tdir
17711 }
17712 run_test 300c "chown && check ls under striped directory"
17713
17714 test_300d() {
17715         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
17716                 skip "skipped for lustre < 2.7.0"
17717         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17718         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17719
17720         local stripe_count
17721         local file
17722
17723         mkdir -p $DIR/$tdir
17724         $LFS setstripe -c 2 $DIR/$tdir
17725
17726         #local striped directory
17727         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17728                 error "set striped dir error"
17729         createmany -o $DIR/$tdir/striped_dir/f 10 ||
17730                 error "create 10 files failed"
17731
17732         #remote striped directory
17733         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
17734                 error "set striped dir error"
17735         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
17736                 error "create 10 files failed"
17737
17738         for file in $(find $DIR/$tdir); do
17739                 stripe_count=$($LFS getstripe -c $file)
17740                 [ $stripe_count -eq 2 ] ||
17741                         error "wrong stripe $stripe_count for $file"
17742         done
17743
17744         rm -rf $DIR/$tdir
17745 }
17746 run_test 300d "check default stripe under striped directory"
17747
17748 test_300e() {
17749         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
17750                 skip "Need MDS version at least 2.7.55"
17751         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17752         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17753
17754         local stripe_count
17755         local file
17756
17757         mkdir -p $DIR/$tdir
17758
17759         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17760                 error "set striped dir error"
17761
17762         touch $DIR/$tdir/striped_dir/a
17763         touch $DIR/$tdir/striped_dir/b
17764         touch $DIR/$tdir/striped_dir/c
17765
17766         mkdir $DIR/$tdir/striped_dir/dir_a
17767         mkdir $DIR/$tdir/striped_dir/dir_b
17768         mkdir $DIR/$tdir/striped_dir/dir_c
17769
17770         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_a ||
17771                 error "set striped adir under striped dir error"
17772
17773         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_b ||
17774                 error "set striped bdir under striped dir error"
17775
17776         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_c ||
17777                 error "set striped cdir under striped dir error"
17778
17779         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
17780                 error "rename dir under striped dir fails"
17781
17782         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
17783                 error "rename dir under different stripes fails"
17784
17785         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
17786                 error "rename file under striped dir should succeed"
17787
17788         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
17789                 error "rename dir under striped dir should succeed"
17790
17791         rm -rf $DIR/$tdir
17792 }
17793 run_test 300e "check rename under striped directory"
17794
17795 test_300f() {
17796         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17797         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17798         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
17799                 skip "Need MDS version at least 2.7.55"
17800
17801         local stripe_count
17802         local file
17803
17804         rm -rf $DIR/$tdir
17805         mkdir -p $DIR/$tdir
17806
17807         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17808                 error "set striped dir error"
17809
17810         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir1 ||
17811                 error "set striped dir error"
17812
17813         touch $DIR/$tdir/striped_dir/a
17814         mkdir $DIR/$tdir/striped_dir/dir_a
17815         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
17816                 error "create striped dir under striped dir fails"
17817
17818         touch $DIR/$tdir/striped_dir1/b
17819         mkdir $DIR/$tdir/striped_dir1/dir_b
17820         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
17821                 error "create striped dir under striped dir fails"
17822
17823         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
17824                 error "rename dir under different striped dir should fail"
17825
17826         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
17827                 error "rename striped dir under diff striped dir should fail"
17828
17829         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
17830                 error "rename file under diff striped dirs fails"
17831
17832         rm -rf $DIR/$tdir
17833 }
17834 run_test 300f "check rename cross striped directory"
17835
17836 test_300_check_default_striped_dir()
17837 {
17838         local dirname=$1
17839         local default_count=$2
17840         local default_index=$3
17841         local stripe_count
17842         local stripe_index
17843         local dir_stripe_index
17844         local dir
17845
17846         echo "checking $dirname $default_count $default_index"
17847         $LFS setdirstripe -D -c $default_count -i $default_index \
17848                                 -t all_char $DIR/$tdir/$dirname ||
17849                 error "set default stripe on striped dir error"
17850         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
17851         [ $stripe_count -eq $default_count ] ||
17852                 error "expect $default_count get $stripe_count for $dirname"
17853
17854         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
17855         [ $stripe_index -eq $default_index ] ||
17856                 error "expect $default_index get $stripe_index for $dirname"
17857
17858         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
17859                                                 error "create dirs failed"
17860
17861         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
17862         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
17863         for dir in $(find $DIR/$tdir/$dirname/*); do
17864                 stripe_count=$($LFS getdirstripe -c $dir)
17865                 [ $stripe_count -eq $default_count ] ||
17866                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
17867                 error "stripe count $default_count != $stripe_count for $dir"
17868
17869                 stripe_index=$($LFS getdirstripe -i $dir)
17870                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
17871                         error "$stripe_index != $default_index for $dir"
17872
17873                 #check default stripe
17874                 stripe_count=$($LFS getdirstripe -D -c $dir)
17875                 [ $stripe_count -eq $default_count ] ||
17876                 error "default count $default_count != $stripe_count for $dir"
17877
17878                 stripe_index=$($LFS getdirstripe -D -i $dir)
17879                 [ $stripe_index -eq $default_index ] ||
17880                 error "default index $default_index != $stripe_index for $dir"
17881         done
17882         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
17883 }
17884
17885 test_300g() {
17886         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17887         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
17888                 skip "Need MDS version at least 2.7.55"
17889
17890         local dir
17891         local stripe_count
17892         local stripe_index
17893
17894         mkdir $DIR/$tdir
17895         mkdir $DIR/$tdir/normal_dir
17896
17897         #Checking when client cache stripe index
17898         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
17899         $LFS setdirstripe -D -i1 $DIR/$tdir/striped_dir ||
17900                 error "create striped_dir failed"
17901
17902         $LFS setdirstripe -i0 $DIR/$tdir/striped_dir/dir0 ||
17903                 error "create dir0 fails"
17904         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir0)
17905         [ $stripe_index -eq 0 ] ||
17906                 error "dir0 expect index 0 got $stripe_index"
17907
17908         mkdir $DIR/$tdir/striped_dir/dir1 ||
17909                 error "create dir1 fails"
17910         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir1)
17911         [ $stripe_index -eq 1 ] ||
17912                 error "dir1 expect index 1 got $stripe_index"
17913
17914         #check default stripe count/stripe index
17915         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
17916         test_300_check_default_striped_dir normal_dir 1 0
17917         test_300_check_default_striped_dir normal_dir 2 1
17918         test_300_check_default_striped_dir normal_dir 2 -1
17919
17920         #delete default stripe information
17921         echo "delete default stripeEA"
17922         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
17923                 error "set default stripe on striped dir error"
17924
17925         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
17926         for dir in $(find $DIR/$tdir/normal_dir/*); do
17927                 stripe_count=$($LFS getdirstripe -c $dir)
17928                 [ $stripe_count -eq 0 ] ||
17929                         error "expect 1 get $stripe_count for $dir"
17930                 stripe_index=$($LFS getdirstripe -i $dir)
17931                 [ $stripe_index -eq 0 ] ||
17932                         error "expect 0 get $stripe_index for $dir"
17933         done
17934 }
17935 run_test 300g "check default striped directory for normal directory"
17936
17937 test_300h() {
17938         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17939         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
17940                 skip "Need MDS version at least 2.7.55"
17941
17942         local dir
17943         local stripe_count
17944
17945         mkdir $DIR/$tdir
17946         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
17947                 error "set striped dir error"
17948
17949         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
17950         test_300_check_default_striped_dir striped_dir 1 0
17951         test_300_check_default_striped_dir striped_dir 2 1
17952         test_300_check_default_striped_dir striped_dir 2 -1
17953
17954         #delete default stripe information
17955         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
17956                 error "set default stripe on striped dir error"
17957
17958         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
17959         for dir in $(find $DIR/$tdir/striped_dir/*); do
17960                 stripe_count=$($LFS getdirstripe -c $dir)
17961                 [ $stripe_count -eq 0 ] ||
17962                         error "expect 1 get $stripe_count for $dir"
17963         done
17964 }
17965 run_test 300h "check default striped directory for striped directory"
17966
17967 test_300i() {
17968         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17969         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17970         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
17971                 skip "Need MDS version at least 2.7.55"
17972
17973         local stripe_count
17974         local file
17975
17976         mkdir $DIR/$tdir
17977
17978         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
17979                 error "set striped dir error"
17980
17981         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
17982                 error "create files under striped dir failed"
17983
17984         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir ||
17985                 error "set striped hashdir error"
17986
17987         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir/d0 ||
17988                 error "create dir0 under hash dir failed"
17989         $LFS setdirstripe -i0 -c$MDSCOUNT -H fnv_1a_64 $DIR/$tdir/hashdir/d1 ||
17990                 error "create dir1 under hash dir failed"
17991
17992         # unfortunately, we need to umount to clear dir layout cache for now
17993         # once we fully implement dir layout, we can drop this
17994         umount_client $MOUNT || error "umount failed"
17995         mount_client $MOUNT || error "mount failed"
17996
17997         $LFS find -H fnv_1a_64 $DIR/$tdir/hashdir
17998         local dircnt=$($LFS find -H fnv_1a_64 $DIR/$tdir/hashdir | wc -l)
17999         [ $dircnt -eq 1 ] || error "lfs find striped dir got:$dircnt,except:1"
18000
18001         #set the stripe to be unknown hash type
18002         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
18003         $LCTL set_param fail_loc=0x1901
18004         for ((i = 0; i < 10; i++)); do
18005                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
18006                         error "stat f-$i failed"
18007                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
18008         done
18009
18010         touch $DIR/$tdir/striped_dir/f0 &&
18011                 error "create under striped dir with unknown hash should fail"
18012
18013         $LCTL set_param fail_loc=0
18014
18015         umount_client $MOUNT || error "umount failed"
18016         mount_client $MOUNT || error "mount failed"
18017
18018         return 0
18019 }
18020 run_test 300i "client handle unknown hash type striped directory"
18021
18022 test_300j() {
18023         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18024         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18025         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18026                 skip "Need MDS version at least 2.7.55"
18027
18028         local stripe_count
18029         local file
18030
18031         mkdir $DIR/$tdir
18032
18033         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
18034         $LCTL set_param fail_loc=0x1702
18035         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
18036                 error "set striped dir error"
18037
18038         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
18039                 error "create files under striped dir failed"
18040
18041         $LCTL set_param fail_loc=0
18042
18043         rm -rf $DIR/$tdir || error "unlink striped dir fails"
18044
18045         return 0
18046 }
18047 run_test 300j "test large update record"
18048
18049 test_300k() {
18050         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18051         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18052         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18053                 skip "Need MDS version at least 2.7.55"
18054
18055         # this test needs a huge transaction
18056         local kb
18057         kb=$(do_facet $SINGLEMDS lctl get_param -n osd*.lustre-MDT0000.kbytestotal)
18058         [ $kb -lt $((1024*1024)) ] && skip "too small mds: $kb"
18059
18060         local stripe_count
18061         local file
18062
18063         mkdir $DIR/$tdir
18064
18065         #define OBD_FAIL_LARGE_STRIPE   0x1703
18066         $LCTL set_param fail_loc=0x1703
18067         $LFS setdirstripe -i 0 -c192 $DIR/$tdir/striped_dir ||
18068                 error "set striped dir error"
18069         $LCTL set_param fail_loc=0
18070
18071         $LFS getdirstripe $DIR/$tdir/striped_dir ||
18072                 error "getstripeddir fails"
18073         rm -rf $DIR/$tdir/striped_dir ||
18074                 error "unlink striped dir fails"
18075
18076         return 0
18077 }
18078 run_test 300k "test large striped directory"
18079
18080 test_300l() {
18081         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18082         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18083         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18084                 skip "Need MDS version at least 2.7.55"
18085
18086         local stripe_index
18087
18088         test_mkdir -p $DIR/$tdir/striped_dir
18089         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
18090                         error "chown $RUNAS_ID failed"
18091         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
18092                 error "set default striped dir failed"
18093
18094         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
18095         $LCTL set_param fail_loc=0x80000158
18096         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
18097
18098         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
18099         [ $stripe_index -eq 1 ] ||
18100                 error "expect 1 get $stripe_index for $dir"
18101 }
18102 run_test 300l "non-root user to create dir under striped dir with stale layout"
18103
18104 test_300m() {
18105         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18106         [ $MDSCOUNT -ge 2 ] && skip_env "Only for single MDT"
18107         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18108                 skip "Need MDS version at least 2.7.55"
18109
18110         mkdir -p $DIR/$tdir/striped_dir
18111         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
18112                 error "set default stripes dir error"
18113
18114         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
18115
18116         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
18117         [ $stripe_count -eq 0 ] ||
18118                         error "expect 0 get $stripe_count for a"
18119
18120         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
18121                 error "set default stripes dir error"
18122
18123         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
18124
18125         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
18126         [ $stripe_count -eq 0 ] ||
18127                         error "expect 0 get $stripe_count for b"
18128
18129         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
18130                 error "set default stripes dir error"
18131
18132         mkdir $DIR/$tdir/striped_dir/c &&
18133                 error "default stripe_index is invalid, mkdir c should fails"
18134
18135         rm -rf $DIR/$tdir || error "rmdir fails"
18136 }
18137 run_test 300m "setstriped directory on single MDT FS"
18138
18139 cleanup_300n() {
18140         local list=$(comma_list $(mdts_nodes))
18141
18142         trap 0
18143         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
18144 }
18145
18146 test_300n() {
18147         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18148         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18149         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18150                 skip "Need MDS version at least 2.7.55"
18151         remote_mds_nodsh && skip "remote MDS with nodsh"
18152
18153         local stripe_index
18154         local list=$(comma_list $(mdts_nodes))
18155
18156         trap cleanup_300n RETURN EXIT
18157         mkdir -p $DIR/$tdir
18158         chmod 777 $DIR/$tdir
18159         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
18160                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
18161                 error "create striped dir succeeds with gid=0"
18162
18163         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
18164         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
18165                 error "create striped dir fails with gid=-1"
18166
18167         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
18168         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
18169                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
18170                 error "set default striped dir succeeds with gid=0"
18171
18172
18173         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
18174         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
18175                 error "set default striped dir fails with gid=-1"
18176
18177
18178         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
18179         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
18180                                         error "create test_dir fails"
18181         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
18182                                         error "create test_dir1 fails"
18183         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
18184                                         error "create test_dir2 fails"
18185         cleanup_300n
18186 }
18187 run_test 300n "non-root user to create dir under striped dir with default EA"
18188
18189 test_300o() {
18190         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18191         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18192         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18193                 skip "Need MDS version at least 2.7.55"
18194
18195         local numfree1
18196         local numfree2
18197
18198         mkdir -p $DIR/$tdir
18199
18200         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
18201         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
18202         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
18203                 skip "not enough free inodes $numfree1 $numfree2"
18204         fi
18205
18206         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
18207         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
18208         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
18209                 skip "not enough free space $numfree1 $numfree2"
18210         fi
18211
18212         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
18213                 error "setdirstripe fails"
18214
18215         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
18216                 error "create dirs fails"
18217
18218         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
18219         ls $DIR/$tdir/striped_dir > /dev/null ||
18220                 error "ls striped dir fails"
18221         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
18222                 error "unlink big striped dir fails"
18223 }
18224 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
18225
18226 test_300p() {
18227         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18228         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18229         remote_mds_nodsh && skip "remote MDS with nodsh"
18230
18231         mkdir -p $DIR/$tdir
18232
18233         #define OBD_FAIL_OUT_ENOSPC     0x1704
18234         do_facet mds2 lctl set_param fail_loc=0x80001704
18235         $LFS setdirstripe -i 0 -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 \
18236                  && error "create striped directory should fail"
18237
18238         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
18239
18240         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
18241         true
18242 }
18243 run_test 300p "create striped directory without space"
18244
18245 test_300q() {
18246         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18247         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18248
18249         local fd=$(free_fd)
18250         local cmd="exec $fd<$tdir"
18251         cd $DIR
18252         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
18253         eval $cmd
18254         cmd="exec $fd<&-"
18255         trap "eval $cmd" EXIT
18256         cd $tdir || error "cd $tdir fails"
18257         rmdir  ../$tdir || error "rmdir $tdir fails"
18258         mkdir local_dir && error "create dir succeeds"
18259         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
18260         eval $cmd
18261         return 0
18262 }
18263 run_test 300q "create remote directory under orphan directory"
18264
18265 test_300r() {
18266         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
18267                 skip "Need MDS version at least 2.7.55" && return
18268         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
18269
18270         mkdir $DIR/$tdir
18271
18272         $LFS setdirstripe -i 0 -c -1 $DIR/$tdir/striped_dir ||
18273                 error "set striped dir error"
18274
18275         $LFS getdirstripe $DIR/$tdir/striped_dir ||
18276                 error "getstripeddir fails"
18277
18278         local stripe_count
18279         stripe_count=$($LFS getdirstripe $DIR/$tdir/striped_dir |
18280                       awk '/lmv_stripe_count:/ { print $2 }')
18281
18282         [ $MDSCOUNT -ne $stripe_count ] &&
18283                 error "wrong stripe count $stripe_count expected $MDSCOUNT"
18284
18285         rm -rf $DIR/$tdir/striped_dir ||
18286                 error "unlink striped dir fails"
18287 }
18288 run_test 300r "test -1 striped directory"
18289
18290 prepare_remote_file() {
18291         mkdir $DIR/$tdir/src_dir ||
18292                 error "create remote source failed"
18293
18294         cp /etc/hosts $DIR/$tdir/src_dir/a ||
18295                  error "cp to remote source failed"
18296         touch $DIR/$tdir/src_dir/a
18297
18298         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
18299                 error "create remote target dir failed"
18300
18301         touch $DIR/$tdir/tgt_dir/b
18302
18303         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
18304                 error "rename dir cross MDT failed!"
18305
18306         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
18307                 error "src_child still exists after rename"
18308
18309         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
18310                 error "missing file(a) after rename"
18311
18312         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
18313                 error "diff after rename"
18314 }
18315
18316 test_310a() {
18317         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 4 MDTs"
18318         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18319
18320         local remote_file=$DIR/$tdir/tgt_dir/b
18321
18322         mkdir -p $DIR/$tdir
18323
18324         prepare_remote_file || error "prepare remote file failed"
18325
18326         #open-unlink file
18327         $OPENUNLINK $remote_file $remote_file ||
18328                 error "openunlink $remote_file failed"
18329         $CHECKSTAT -a $remote_file || error "$remote_file exists"
18330 }
18331 run_test 310a "open unlink remote file"
18332
18333 test_310b() {
18334         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 4 MDTs"
18335         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18336
18337         local remote_file=$DIR/$tdir/tgt_dir/b
18338
18339         mkdir -p $DIR/$tdir
18340
18341         prepare_remote_file || error "prepare remote file failed"
18342
18343         ln $remote_file $DIR/$tfile || error "link failed for remote file"
18344         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
18345         $CHECKSTAT -t file $remote_file || error "check file failed"
18346 }
18347 run_test 310b "unlink remote file with multiple links while open"
18348
18349 test_310c() {
18350         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18351         [[ $MDSCOUNT -lt 4 ]] && skip_env "needs >= 4 MDTs"
18352
18353         local remote_file=$DIR/$tdir/tgt_dir/b
18354
18355         mkdir -p $DIR/$tdir
18356
18357         prepare_remote_file || error "prepare remote file failed"
18358
18359         ln $remote_file $DIR/$tfile || error "link failed for remote file"
18360         multiop_bg_pause $remote_file O_uc ||
18361                         error "mulitop failed for remote file"
18362         MULTIPID=$!
18363         $MULTIOP $DIR/$tfile Ouc
18364         kill -USR1 $MULTIPID
18365         wait $MULTIPID
18366 }
18367 run_test 310c "open-unlink remote file with multiple links"
18368
18369 #LU-4825
18370 test_311() {
18371         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18372         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
18373         [ $MDS1_VERSION -lt $(version_code 2.8.54) ] &&
18374                 skip "lustre < 2.8.54 does not contain LU-4825 fix"
18375         remote_mds_nodsh && skip "remote MDS with nodsh"
18376
18377         local old_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
18378
18379         mkdir -p $DIR/$tdir
18380         $LFS setstripe -i 0 -c 1 $DIR/$tdir
18381         createmany -o $DIR/$tdir/$tfile. 1000
18382
18383         # statfs data is not real time, let's just calculate it
18384         old_iused=$((old_iused + 1000))
18385
18386         local count=$(do_facet $SINGLEMDS "lctl get_param -n \
18387                         osp.*OST0000*MDT0000.create_count")
18388         local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
18389                                 osp.*OST0000*MDT0000.max_create_count")
18390         for idx in $(seq $MDSCOUNT); do
18391                 do_facet mds$idx "lctl set_param -n \
18392                         osp.*OST0000*MDT000?.max_create_count=0"
18393         done
18394
18395         $LFS setstripe -i 0 $DIR/$tdir/$tfile || error "setstripe failed"
18396         local index=$($LFS getstripe -i $DIR/$tdir/$tfile)
18397         [ $index -ne 0 ] || error "$tfile stripe index is 0"
18398
18399         unlinkmany $DIR/$tdir/$tfile. 1000
18400
18401         for idx in $(seq $MDSCOUNT); do
18402                 do_facet mds$idx "lctl set_param -n \
18403                         osp.*OST0000*MDT000?.max_create_count=$max_count"
18404                 do_facet mds$idx "lctl set_param -n \
18405                         osp.*OST0000*MDT000?.create_count=$count"
18406         done
18407
18408         local new_iused
18409         for i in $(seq 120); do
18410                 new_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
18411                 # system may be too busy to destroy all objs in time, use
18412                 # a somewhat small value to not fail autotest
18413                 [ $((old_iused - new_iused)) -gt 400 ] && break
18414                 sleep 1
18415         done
18416
18417         echo "waited $i sec, old Iused $old_iused, new Iused $new_iused"
18418         [ $((old_iused - new_iused)) -gt 400 ] ||
18419                 error "objs not destroyed after unlink"
18420 }
18421 run_test 311 "disable OSP precreate, and unlink should destroy objs"
18422
18423 zfs_oid_to_objid()
18424 {
18425         local ost=$1
18426         local objid=$2
18427
18428         local vdevdir=$(dirname $(facet_vdevice $ost))
18429         local cmd="$ZDB -e -p $vdevdir -ddddd $(facet_device $ost)"
18430         local zfs_zapid=$(do_facet $ost $cmd |
18431                           grep -w "/O/0/d$((objid%32))" -C 5 |
18432                           awk '/Object/{getline; print $1}')
18433         local zfs_objid=$(do_facet $ost $cmd $zfs_zapid |
18434                           awk "/$objid = /"'{printf $3}')
18435
18436         echo $zfs_objid
18437 }
18438
18439 zfs_object_blksz() {
18440         local ost=$1
18441         local objid=$2
18442
18443         local vdevdir=$(dirname $(facet_vdevice $ost))
18444         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
18445         local blksz=$(do_facet $ost $cmd $objid |
18446                       awk '/dblk/{getline; printf $4}')
18447
18448         case "${blksz: -1}" in
18449                 k|K) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024)) ;;
18450                 m|M) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024*1024)) ;;
18451                 *) ;;
18452         esac
18453
18454         echo $blksz
18455 }
18456
18457 test_312() { # LU-4856
18458         remote_ost_nodsh && skip "remote OST with nodsh"
18459         [ "$ost1_FSTYPE" = "zfs" ] ||
18460                 skip_env "the test only applies to zfs"
18461
18462         local max_blksz=$(do_facet ost1 \
18463                           $ZFS get -p recordsize $(facet_device ost1) |
18464                           awk '!/VALUE/{print $3}')
18465
18466         # to make life a little bit easier
18467         $LFS mkdir -c 1 -i 0 $DIR/$tdir
18468         $LFS setstripe -c 1 -i 0 $DIR/$tdir
18469
18470         local tf=$DIR/$tdir/$tfile
18471         touch $tf
18472         local oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18473
18474         # Get ZFS object id
18475         local zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18476         # block size change by sequential overwrite
18477         local bs
18478
18479         for ((bs=$PAGE_SIZE; bs <= max_blksz; bs *= 4)) ; do
18480                 dd if=/dev/zero of=$tf bs=$bs count=1 oflag=sync conv=notrunc
18481
18482                 local blksz=$(zfs_object_blksz ost1 $zfs_objid)
18483                 [ $blksz -eq $bs ] || error "blksz error: $blksz, expected: $bs"
18484         done
18485         rm -f $tf
18486
18487         # block size change by sequential append write
18488         dd if=/dev/zero of=$tf bs=$PAGE_SIZE count=1 oflag=sync conv=notrunc
18489         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18490         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18491         local count
18492
18493         for ((count = 1; count < $((max_blksz / PAGE_SIZE)); count *= 2)); do
18494                 dd if=/dev/zero of=$tf bs=$PAGE_SIZE count=$count seek=$count \
18495                         oflag=sync conv=notrunc
18496
18497                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
18498                 [ $blksz -eq $((2 * count * PAGE_SIZE)) ] ||
18499                         error "blksz error, actual $blksz, " \
18500                                 "expected: 2 * $count * $PAGE_SIZE"
18501         done
18502         rm -f $tf
18503
18504         # random write
18505         touch $tf
18506         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18507         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18508
18509         dd if=/dev/zero of=$tf bs=1K count=1 oflag=sync conv=notrunc
18510         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18511         [ $blksz -eq $PAGE_SIZE ] ||
18512                 error "blksz error: $blksz, expected: $PAGE_SIZE"
18513
18514         dd if=/dev/zero of=$tf bs=64K count=1 oflag=sync conv=notrunc seek=128
18515         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18516         [ $blksz -eq 65536 ] || error "blksz error: $blksz, expected: 64k"
18517
18518         dd if=/dev/zero of=$tf bs=1M count=1 oflag=sync conv=notrunc
18519         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18520         [ $blksz -eq 65536 ] || error "rewrite error: $blksz, expected: 64k"
18521 }
18522 run_test 312 "make sure ZFS adjusts its block size by write pattern"
18523
18524 test_313() {
18525         remote_ost_nodsh && skip "remote OST with nodsh"
18526
18527         local file=$DIR/$tfile
18528
18529         rm -f $file
18530         $LFS setstripe -c 1 -i 0 $file || error "setstripe failed"
18531
18532         # define OBD_FAIL_TGT_RCVD_EIO           0x720
18533         do_facet ost1 "$LCTL set_param fail_loc=0x720"
18534         dd if=/dev/zero of=$file bs=$PAGE_SIZE oflag=direct count=1 &&
18535                 error "write should failed"
18536         do_facet ost1 "$LCTL set_param fail_loc=0"
18537         rm -f $file
18538 }
18539 run_test 313 "io should fail after last_rcvd update fail"
18540
18541 test_314() {
18542         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
18543
18544         $LFS setstripe -c 2 -i 0 $DIR/$tfile || error "setstripe failed"
18545         do_facet ost1 "$LCTL set_param fail_loc=0x720"
18546         rm -f $DIR/$tfile
18547         wait_delete_completed
18548         do_facet ost1 "$LCTL set_param fail_loc=0"
18549 }
18550 run_test 314 "OSP shouldn't fail after last_rcvd update failure"
18551
18552 test_315() { # LU-618
18553         local file=$DIR/$tfile
18554         rm -f $file
18555
18556         $MULTIOP $file oO_CREAT:O_DIRECT:O_RDWR:w4063232c ||
18557                 error "multiop file write failed"
18558         $MULTIOP $file oO_RDONLY:r4063232_c &
18559         PID=$!
18560
18561         sleep 2
18562
18563         local rbytes=$(awk '/read_bytes/ { print $2 }' /proc/$PID/io)
18564         kill -USR1 $PID
18565
18566         [ $rbytes -gt 4000000 ] || error "read is not accounted ($rbytes)"
18567         rm -f $file
18568 }
18569 run_test 315 "read should be accounted"
18570
18571 test_316() {
18572         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
18573         large_xattr_enabled || skip_env "ea_inode feature disabled"
18574
18575         rm -rf $DIR/$tdir/d
18576         mkdir -p $DIR/$tdir/d
18577         chown nobody $DIR/$tdir/d
18578         touch $DIR/$tdir/d/file
18579
18580         $LFS mv -M1 $DIR/$tdir/d || error "lfs mv failed"
18581 }
18582 run_test 316 "lfs mv"
18583
18584 test_317() {
18585         local trunc_sz
18586         local grant_blk_size
18587
18588         if [ "$(facet_fstype $facet)" == "zfs" ]; then
18589                 skip "LU-10370: no implementation for ZFS" && return
18590         fi
18591
18592         stack_trap "rm -f $DIR/$tfile" EXIT
18593         grant_blk_size=$($LCTL get_param osc.$FSNAME*.import |
18594                         awk '/grant_block_size:/ { print $2; exit; }')
18595         #
18596         # Create File of size 5M. Truncate it to below size's and verify
18597         # blocks count.
18598         #
18599         dd if=/dev/zero of=$DIR/$tfile bs=5M count=1 conv=fsync ||
18600                 error "Create file : $DIR/$tfile"
18601
18602         for trunc_sz in 2097152 4097 4000 509 0; do
18603                 $TRUNCATE $DIR/$tfile $trunc_sz ||
18604                         error "truncate $tfile to $trunc_sz failed"
18605                 local sz=$(stat --format=%s $DIR/$tfile)
18606                 local blk=$(stat --format=%b $DIR/$tfile)
18607                 local trunc_blk=$((((trunc_sz + (grant_blk_size - 1) ) /
18608                                      grant_blk_size) * 8))
18609
18610                 if [[ $blk -ne $trunc_blk ]]; then
18611                         $(which stat) $DIR/$tfile
18612                         error "Expected Block $trunc_blk got $blk for $tfile"
18613                 fi
18614
18615                 $CHECKSTAT -s $trunc_sz $DIR/$tfile ||
18616                         error "Expected Size $trunc_sz got $sz for $tfile"
18617         done
18618
18619         #
18620         # sparse file test
18621         # Create file with a hole and write actual two blocks. Block count
18622         # must be 16.
18623         #
18624         dd if=/dev/zero of=$DIR/$tfile bs=$grant_blk_size count=2 seek=5 \
18625                 conv=fsync || error "Create file : $DIR/$tfile"
18626
18627         # Calculate the final truncate size.
18628         trunc_sz=$(($(stat --format=%s $DIR/$tfile) - (grant_blk_size + 1)))
18629
18630         #
18631         # truncate to size $trunc_sz bytes. Strip the last block
18632         # The block count must drop to 8
18633         #
18634         $TRUNCATE $DIR/$tfile $trunc_sz ||
18635                 error "truncate $tfile to $trunc_sz failed"
18636
18637         local trunc_bsz=$((grant_blk_size / $(stat --format=%B $DIR/$tfile)))
18638         sz=$(stat --format=%s $DIR/$tfile)
18639         blk=$(stat --format=%b $DIR/$tfile)
18640
18641         if [[ $blk -ne $trunc_bsz ]]; then
18642                 $(which stat) $DIR/$tfile
18643                 error "Expected Block $trunc_bsz got $blk for $tfile"
18644         fi
18645
18646         $CHECKSTAT -s $trunc_sz $DIR/$tfile ||
18647                 error "Expected Size $trunc_sz got $sz for $tfile"
18648 }
18649 run_test 317 "Verify blocks get correctly update after truncate"
18650
18651 test_fake_rw() {
18652         local read_write=$1
18653         if [ "$read_write" = "write" ]; then
18654                 local dd_cmd="dd if=/dev/zero of=$DIR/$tfile"
18655         elif [ "$read_write" = "read" ]; then
18656                 local dd_cmd="dd of=/dev/null if=$DIR/$tfile"
18657         else
18658                 error "argument error"
18659         fi
18660
18661         # turn off debug for performance testing
18662         local saved_debug=$($LCTL get_param -n debug)
18663         $LCTL set_param debug=0
18664
18665         $LFS setstripe -c 1 -i 0 $DIR/$tfile
18666
18667         # get ost1 size - lustre-OST0000
18668         local ost1_avail_size=$($LFS df | awk /${ost1_svc}/'{ print $4 }')
18669         local blocks=$((ost1_avail_size/2/1024)) # half avail space by megabytes
18670         [ $blocks -gt 1000 ] && blocks=1000 # 1G in maximum
18671
18672         if [ "$read_write" = "read" ]; then
18673                 truncate -s $(expr 1048576 \* $blocks) $DIR/$tfile
18674         fi
18675
18676         local start_time=$(date +%s.%N)
18677         $dd_cmd bs=1M count=$blocks oflag=sync ||
18678                 error "real dd $read_write error"
18679         local duration=$(bc <<< "$(date +%s.%N) - $start_time")
18680
18681         if [ "$read_write" = "write" ]; then
18682                 rm -f $DIR/$tfile
18683         fi
18684
18685         # define OBD_FAIL_OST_FAKE_RW           0x238
18686         do_facet ost1 $LCTL set_param fail_loc=0x238
18687
18688         local start_time=$(date +%s.%N)
18689         $dd_cmd bs=1M count=$blocks oflag=sync ||
18690                 error "fake dd $read_write error"
18691         local duration_fake=$(bc <<< "$(date +%s.%N) - $start_time")
18692
18693         if [ "$read_write" = "write" ]; then
18694                 # verify file size
18695                 cancel_lru_locks osc
18696                 $CHECKSTAT -t file -s $((blocks * 1024 * 1024)) $DIR/$tfile ||
18697                         error "$tfile size not $blocks MB"
18698         fi
18699         do_facet ost1 $LCTL set_param fail_loc=0
18700
18701         echo "fake $read_write $duration_fake vs. normal $read_write" \
18702                 "$duration in seconds"
18703         [ $(bc <<< "$duration_fake < $duration") -eq 1 ] ||
18704                 error_not_in_vm "fake write is slower"
18705
18706         $LCTL set_param -n debug="$saved_debug"
18707         rm -f $DIR/$tfile
18708 }
18709 test_399a() { # LU-7655 for OST fake write
18710         remote_ost_nodsh && skip "remote OST with nodsh"
18711
18712         test_fake_rw write
18713 }
18714 run_test 399a "fake write should not be slower than normal write"
18715
18716 test_399b() { # LU-8726 for OST fake read
18717         remote_ost_nodsh && skip "remote OST with nodsh"
18718         if [ "$ost1_FSTYPE" != "ldiskfs" ]; then
18719                 skip_env "ldiskfs only test"
18720         fi
18721
18722         test_fake_rw read
18723 }
18724 run_test 399b "fake read should not be slower than normal read"
18725
18726 test_400a() { # LU-1606, was conf-sanity test_74
18727         if ! which $CC > /dev/null 2>&1; then
18728                 skip_env "$CC is not installed"
18729         fi
18730
18731         local extra_flags=''
18732         local out=$TMP/$tfile
18733         local prefix=/usr/include/lustre
18734         local prog
18735
18736         if ! [[ -d $prefix ]]; then
18737                 # Assume we're running in tree and fixup the include path.
18738                 extra_flags+=" -I$LUSTRE/../lnet/include/uapi -I$LUSTRE/include/uapi -I$LUSTRE/include"
18739                 extra_flags+=" -L$LUSTRE/utils/.lib"
18740         fi
18741
18742         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
18743                 $CC -Wall -Werror $extra_flags -o $out $prog -llustreapi ||
18744                         error "client api broken"
18745         done
18746         rm -f $out
18747 }
18748 run_test 400a "Lustre client api program can compile and link"
18749
18750 test_400b() { # LU-1606, LU-5011
18751         local header
18752         local out=$TMP/$tfile
18753         local prefix=/usr/include/linux/lustre
18754
18755         # We use a hard coded prefix so that this test will not fail
18756         # when run in tree. There are headers in lustre/include/lustre/
18757         # that are not packaged (like lustre_idl.h) and have more
18758         # complicated include dependencies (like config.h and lnet/types.h).
18759         # Since this test about correct packaging we just skip them when
18760         # they don't exist (see below) rather than try to fixup cppflags.
18761
18762         if ! which $CC > /dev/null 2>&1; then
18763                 skip_env "$CC is not installed"
18764         fi
18765
18766         for header in $prefix/*.h; do
18767                 if ! [[ -f "$header" ]]; then
18768                         continue
18769                 fi
18770
18771                 if [[ "$(basename $header)" == lustre_ioctl.h ]]; then
18772                         continue # lustre_ioctl.h is internal header
18773                 fi
18774
18775                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
18776                         error "cannot compile '$header'"
18777         done
18778         rm -f $out
18779 }
18780 run_test 400b "packaged headers can be compiled"
18781
18782 test_401a() { #LU-7437
18783         local printf_arg=$(find -printf 2>&1 | grep "unrecognized:")
18784         [ -n "$printf_arg" ] && skip_env "find does not support -printf"
18785
18786         #count the number of parameters by "list_param -R"
18787         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
18788         #count the number of parameters by listing proc files
18789         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
18790         echo "proc_dirs='$proc_dirs'"
18791         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
18792         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
18793                       sort -u | wc -l)
18794
18795         [ $params -eq $procs ] ||
18796                 error "found $params parameters vs. $procs proc files"
18797
18798         # test the list_param -D option only returns directories
18799         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
18800         #count the number of parameters by listing proc directories
18801         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
18802                 sort -u | wc -l)
18803
18804         [ $params -eq $procs ] ||
18805                 error "found $params parameters vs. $procs proc files"
18806 }
18807 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
18808
18809 test_401b() {
18810         local save=$($LCTL get_param -n jobid_var)
18811         local tmp=testing
18812
18813         $LCTL set_param foo=bar jobid_var=$tmp bar=baz &&
18814                 error "no error returned when setting bad parameters"
18815
18816         local jobid_new=$($LCTL get_param -n foe jobid_var baz)
18817         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
18818
18819         $LCTL set_param -n fog=bam jobid_var=$save bat=fog
18820         local jobid_old=$($LCTL get_param -n foe jobid_var bag)
18821         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
18822 }
18823 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
18824
18825 test_401c() {
18826         local jobid_var_old=$($LCTL get_param -n jobid_var)
18827         local jobid_var_new
18828
18829         $LCTL set_param jobid_var= &&
18830                 error "no error returned for 'set_param a='"
18831
18832         jobid_var_new=$($LCTL get_param -n jobid_var)
18833         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
18834                 error "jobid_var was changed by setting without value"
18835
18836         $LCTL set_param jobid_var &&
18837                 error "no error returned for 'set_param a'"
18838
18839         jobid_var_new=$($LCTL get_param -n jobid_var)
18840         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
18841                 error "jobid_var was changed by setting without value"
18842 }
18843 run_test 401c "Verify 'lctl set_param' without value fails in either format."
18844
18845 test_401d() {
18846         local jobid_var_old=$($LCTL get_param -n jobid_var)
18847         local jobid_var_new
18848         local new_value="foo=bar"
18849
18850         $LCTL set_param jobid_var=$new_value ||
18851                 error "'set_param a=b' did not accept a value containing '='"
18852
18853         jobid_var_new=$($LCTL get_param -n jobid_var)
18854         [[ "$jobid_var_new" == "$new_value" ]] ||
18855                 error "'set_param a=b' failed on a value containing '='"
18856
18857         # Reset the jobid_var to test the other format
18858         $LCTL set_param jobid_var=$jobid_var_old
18859         jobid_var_new=$($LCTL get_param -n jobid_var)
18860         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
18861                 error "failed to reset jobid_var"
18862
18863         $LCTL set_param jobid_var $new_value ||
18864                 error "'set_param a b' did not accept a value containing '='"
18865
18866         jobid_var_new=$($LCTL get_param -n jobid_var)
18867         [[ "$jobid_var_new" == "$new_value" ]] ||
18868                 error "'set_param a b' failed on a value containing '='"
18869
18870         $LCTL set_param jobid_var $jobid_var_old
18871         jobid_var_new=$($LCTL get_param -n jobid_var)
18872         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
18873                 error "failed to reset jobid_var"
18874 }
18875 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
18876
18877 test_402() {
18878         [[ $MDS1_VERSION -ge $(version_code 2.7.66) ]] ||
18879         [[ $MDS1_VERSION -ge $(version_code 2.7.18.4) &&
18880                 $MDS1_VERSION -lt $(version_code 2.7.50) ]] ||
18881         [[ $MDS1_VERSION -ge $(version_code 2.7.2) &&
18882                 $MDS1_VERSION -lt $(version_code 2.7.11) ]] ||
18883                 skip "Need MDS version 2.7.2+ or 2.7.18.4+ or 2.7.66+"
18884         remote_mds_nodsh && skip "remote MDS with nodsh"
18885
18886         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
18887 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
18888         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
18889         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
18890                 echo "Touch failed - OK"
18891 }
18892 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
18893
18894 test_403() {
18895         local file1=$DIR/$tfile.1
18896         local file2=$DIR/$tfile.2
18897         local tfile=$TMP/$tfile
18898
18899         rm -f $file1 $file2 $tfile
18900
18901         touch $file1
18902         ln $file1 $file2
18903
18904         # 30 sec OBD_TIMEOUT in ll_getattr()
18905         # right before populating st_nlink
18906         $LCTL set_param fail_loc=0x80001409
18907         stat -c %h $file1 > $tfile &
18908
18909         # create an alias, drop all locks and reclaim the dentry
18910         < $file2
18911         cancel_lru_locks mdc
18912         cancel_lru_locks osc
18913         sysctl -w vm.drop_caches=2
18914
18915         wait
18916
18917         [ $(cat $tfile) -gt 0 ] || error "wrong nlink count: $(cat $tfile)"
18918
18919         rm -f $tfile $file1 $file2
18920 }
18921 run_test 403 "i_nlink should not drop to zero due to aliasing"
18922
18923 test_404() { # LU-6601
18924         [[ $MDS1_VERSION -ge $(version_code 2.8.53) ]] ||
18925                 skip "Need server version newer than 2.8.52"
18926         remote_mds_nodsh && skip "remote MDS with nodsh"
18927
18928         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
18929                 awk '/osp .*-osc-MDT/ { print $4}')
18930
18931         local osp
18932         for osp in $mosps; do
18933                 echo "Deactivate: " $osp
18934                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
18935                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
18936                         awk -vp=$osp '$4 == p { print $2 }')
18937                 [ $stat = IN ] || {
18938                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
18939                         error "deactivate error"
18940                 }
18941                 echo "Activate: " $osp
18942                 do_facet $SINGLEMDS $LCTL --device %$osp activate
18943                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
18944                         awk -vp=$osp '$4 == p { print $2 }')
18945                 [ $stat = UP ] || {
18946                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
18947                         error "activate error"
18948                 }
18949         done
18950 }
18951 run_test 404 "validate manual {de}activated works properly for OSPs"
18952
18953 test_405() {
18954         [ $MDS1_VERSION -lt $(version_code 2.6.92) -o \
18955         [ $CLIENT_VERSION -lt $(version_code 2.6.99) ] &&
18956                 skip "Layout swap lock is not supported"
18957         check_swap_layouts_support
18958
18959         test_mkdir $DIR/$tdir
18960         swap_lock_test -d $DIR/$tdir ||
18961                 error "One layout swap locked test failed"
18962 }
18963 run_test 405 "Various layout swap lock tests"
18964
18965 test_406() {
18966         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18967         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
18968         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
18969         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18970         [ $MDS1_VERSION -lt $(version_code 2.8.50) ] &&
18971                 skip "Need MDS version at least 2.8.50"
18972
18973         local def_stripe_size=$($LFS getstripe -S $MOUNT)
18974         local test_pool=$TESTNAME
18975
18976         if ! combined_mgs_mds ; then
18977                 mount_mgs_client
18978         fi
18979         pool_add $test_pool || error "pool_add failed"
18980         pool_add_targets $test_pool 0 $(($OSTCOUNT - 1)) 1 ||
18981                 error "pool_add_targets failed"
18982
18983         save_layout_restore_at_exit $MOUNT
18984
18985         # parent set default stripe count only, child will stripe from both
18986         # parent and fs default
18987         $LFS setstripe -c 1 -i 1 -S $((def_stripe_size * 2)) -p $test_pool $MOUNT ||
18988                 error "setstripe $MOUNT failed"
18989         $LFS mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
18990         $LFS setstripe -c $OSTCOUNT $DIR/$tdir || error "setstripe $tdir failed"
18991         for i in $(seq 10); do
18992                 local f=$DIR/$tdir/$tfile.$i
18993                 touch $f || error "touch failed"
18994                 local count=$($LFS getstripe -c $f)
18995                 [ $count -eq $OSTCOUNT ] ||
18996                         error "$f stripe count $count != $OSTCOUNT"
18997                 local offset=$($LFS getstripe -i $f)
18998                 [ $offset -eq 1 ] || error "$f stripe offset $offset != 1"
18999                 local size=$($LFS getstripe -S $f)
19000                 [ $size -eq $((def_stripe_size * 2)) ] ||
19001                         error "$f stripe size $size != $((def_stripe_size * 2))"
19002                 local pool=$($LFS getstripe -p $f)
19003                 [ $pool == $test_pool ] || error "$f pool $pool != $test_pool"
19004         done
19005
19006         # change fs default striping, delete parent default striping, now child
19007         # will stripe from new fs default striping only
19008         $LFS setstripe -c 1 -S $def_stripe_size -i 0 $MOUNT ||
19009                 error "change $MOUNT default stripe failed"
19010         $LFS setstripe -c 0 $DIR/$tdir ||
19011                 error "delete $tdir default stripe failed"
19012         for i in $(seq 11 20); do
19013                 local f=$DIR/$tdir/$tfile.$i
19014                 touch $f || error "touch $f failed"
19015                 local count=$($LFS getstripe -c $f)
19016                 [ $count -eq 1 ] || error "$f stripe count $count != 1"
19017                 local offset=$($LFS getstripe -i $f)
19018                 [ $offset -eq 0 ] || error "$f stripe offset $offset != 0"
19019                 local size=$($LFS getstripe -S $f)
19020                 [ $size -eq $def_stripe_size ] ||
19021                         error "$f stripe size $size != $def_stripe_size"
19022                 local pool=$($LFS getstripe -p $f)
19023                 [ $pool == $test_pool ] || error "$f pool $pool isn't set"
19024         done
19025
19026         unlinkmany $DIR/$tdir/$tfile. 1 20
19027
19028         local f=$DIR/$tdir/$tfile
19029         pool_remove_all_targets $test_pool $f
19030         pool_remove $test_pool $f
19031
19032         if ! combined_mgs_mds ; then
19033                 umount_mgs_client
19034         fi
19035 }
19036 run_test 406 "DNE support fs default striping"
19037
19038 test_407() {
19039         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19040         [[ $MDS1_VERSION -lt $(version_code 2.8.55) ]] &&
19041                 skip "Need MDS version at least 2.8.55"
19042         remote_mds_nodsh && skip "remote MDS with nodsh"
19043
19044         $LFS mkdir -i 0 -c 1 $DIR/$tdir.0 ||
19045                 error "$LFS mkdir -i 0 -c 1 $tdir.0 failed"
19046         $LFS mkdir -i 1 -c 1 $DIR/$tdir.1 ||
19047                 error "$LFS mkdir -i 1 -c 1 $tdir.1 failed"
19048         touch $DIR/$tdir.0/$tfile.0 || error "touch $tdir.0/$tfile.0 failed"
19049
19050         #define OBD_FAIL_DT_TXN_STOP    0x2019
19051         for idx in $(seq $MDSCOUNT); do
19052                 do_facet mds$idx "lctl set_param fail_loc=0x2019"
19053         done
19054         $LFS mkdir -c 2 $DIR/$tdir && error "$LFS mkdir -c 2 $tdir should fail"
19055         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1/$tfile.1 &&
19056                 error "mv $tdir.0/$tfile.0 $tdir.1/$tfile.1 should fail"
19057         true
19058 }
19059 run_test 407 "transaction fail should cause operation fail"
19060
19061 test_408() {
19062         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1 oflag=direct
19063
19064         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
19065         lctl set_param fail_loc=0x8000040a
19066         # let ll_prepare_partial_page() fail
19067         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 conv=notrunc || true
19068
19069         rm -f $DIR/$tfile
19070
19071         # create at least 100 unused inodes so that
19072         # shrink_icache_memory(0) should not return 0
19073         touch $DIR/$tfile-{0..100}
19074         rm -f $DIR/$tfile-{0..100}
19075         sync
19076
19077         echo 2 > /proc/sys/vm/drop_caches
19078 }
19079 run_test 408 "drop_caches should not hang due to page leaks"
19080
19081 test_409()
19082 {
19083         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19084         check_mount_and_prep
19085
19086         mkdir -p $DIR/$tdir || error "(0) Fail to mkdir"
19087         $LFS mkdir -i 1 -c 2 $DIR/$tdir/foo || error "(1) Fail to mkdir"
19088         touch $DIR/$tdir/guard || error "(2) Fail to create"
19089
19090         local PREFIX=$(str_repeat 'A' 128)
19091         echo "Create 1K hard links start at $(date)"
19092         createmany -l $DIR/$tdir/guard $DIR/$tdir/foo/${PREFIX}_ 1000 ||
19093                 error "(3) Fail to hard link"
19094
19095         echo "Links count should be right although linkEA overflow"
19096         stat $DIR/$tdir/guard || error "(4) Fail to stat"
19097         local linkcount=$(stat --format=%h $DIR/$tdir/guard)
19098         [ $linkcount -eq 1001 ] ||
19099                 error "(5) Unexpected hard links count: $linkcount"
19100
19101         echo "List all links start at $(date)"
19102         ls -l $DIR/$tdir/foo > /dev/null ||
19103                 error "(6) Fail to list $DIR/$tdir/foo"
19104
19105         echo "Unlink hard links start at $(date)"
19106         unlinkmany $DIR/$tdir/foo/${PREFIX}_ 1000 ||
19107                 error "(7) Fail to unlink"
19108 }
19109 run_test 409 "Large amount of cross-MDTs hard links on the same file"
19110
19111 test_410()
19112 {
19113         [[ $CLIENT_VERSION -lt $(version_code 2.9.59) ]] &&
19114                 skip "Need client version at least 2.9.59"
19115
19116         # Create a file, and stat it from the kernel
19117         local testfile=$DIR/$tfile
19118         touch $testfile
19119
19120         local run_id=$RANDOM
19121         local my_ino=$(stat --format "%i" $testfile)
19122
19123         # Try to insert the module. This will always fail as the
19124         # module is designed to not be inserted.
19125         insmod $LUSTRE/tests/kernel/kinode.ko run_id=$run_id fname=$testfile \
19126             &> /dev/null
19127
19128         # Anything but success is a test failure
19129         dmesg | grep -q \
19130             "lustre_kinode_$run_id: inode numbers are identical: $my_ino" ||
19131             error "no inode match"
19132 }
19133 run_test 410 "Test inode number returned from kernel thread"
19134
19135 cleanup_test411_cgroup() {
19136         trap 0
19137         rmdir "$1"
19138 }
19139
19140 test_411() {
19141         local cg_basedir=/sys/fs/cgroup/memory
19142         # LU-9966
19143         test -f "$cg_basedir/memory.kmem.limit_in_bytes" ||
19144                 skip "no setup for cgroup"
19145
19146         dd if=/dev/zero of=$DIR/$tfile bs=1M count=100 conv=fsync ||
19147                 error "test file creation failed"
19148         cancel_lru_locks osc
19149
19150         # Create a very small memory cgroup to force a slab allocation error
19151         local cgdir=$cg_basedir/osc_slab_alloc
19152         mkdir $cgdir || error "cgroup mkdir '$cgdir' failed"
19153         trap "cleanup_test411_cgroup $cgdir" EXIT
19154         echo 2M > $cgdir/memory.kmem.limit_in_bytes
19155         echo 1M > $cgdir/memory.limit_in_bytes
19156
19157         # Should not LBUG, just be killed by oom-killer
19158         # dd will return 0 even allocation failure in some environment.
19159         # So don't check return value
19160         sh -c "echo \$$ > $cgdir/tasks && dd if=$DIR/$tfile of=/dev/null"
19161         cleanup_test411_cgroup $cgdir
19162
19163         return 0
19164 }
19165 run_test 411 "Slab allocation error with cgroup does not LBUG"
19166
19167 test_412() {
19168         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19169         if [ $(lustre_version_code mds1) -lt $(version_code 2.10.55) ]; then
19170                 skip "Need server version at least 2.10.55"
19171         fi
19172
19173         $LFS mkdir -i $((MDSCOUNT - 1)),$((MDSCOUNT - 2)) $DIR/$tdir ||
19174                 error "mkdir failed"
19175         $LFS getdirstripe $DIR/$tdir
19176         local stripe_index=$($LFS getdirstripe -i $DIR/$tdir)
19177         [ $stripe_index -eq $((MDSCOUNT - 1)) ] ||
19178                 error "expect $((MDSCOUT - 1)) get $stripe_index"
19179         local stripe_count=$($LFS getdirstripe -T $DIR/$tdir)
19180         [ $stripe_count -eq 2 ] ||
19181                 error "expect 2 get $stripe_count"
19182 }
19183 run_test 412 "mkdir on specific MDTs"
19184
19185 test_413() {
19186         [ $MDSCOUNT -lt 2 ] &&
19187                 skip "We need at least 2 MDTs for this test"
19188
19189         if [ $(lustre_version_code mds1) -lt $(version_code 2.10.55) ]; then
19190                 skip "Need server version at least 2.10.55"
19191         fi
19192
19193         mkdir $DIR/$tdir || error "mkdir failed"
19194
19195         # find MDT that is the most full
19196         local max=$($LFS df | grep MDT |
19197                 awk 'BEGIN { a=0 }
19198                         { sub("%", "", $5)
19199                           if (0+$5 >= a)
19200                           {
19201                                 a = $5
19202                                 b = $6
19203                           }
19204                         }
19205                      END { split(b, c, ":")
19206                            sub("]", "", c[2])
19207                            print c[2]
19208                          }')
19209
19210         for i in $(seq $((MDSCOUNT - 1))); do
19211                 $LFS mkdir -c $i $DIR/$tdir/d$i ||
19212                         error "mkdir d$i failed"
19213                 $LFS getdirstripe $DIR/$tdir/d$i
19214                 local stripe_index=$($LFS getdirstripe -i $DIR/$tdir/d$i)
19215                 [ $stripe_index -ne $max ] ||
19216                         error "don't expect $max"
19217         done
19218 }
19219 run_test 413 "mkdir on less full MDTs"
19220
19221 test_414() {
19222 #define OBD_FAIL_PTLRPC_BULK_ATTACH      0x521
19223         $LCTL set_param fail_loc=0x80000521
19224         dd if=/dev/zero of=$DIR/$tfile bs=2M count=1 oflag=sync
19225         rm -f $DIR/$tfile
19226 }
19227 run_test 414 "simulate ENOMEM in ptlrpc_register_bulk()"
19228
19229 test_415() {
19230         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19231         [ $(lustre_version_code mds1) -lt $(version_code 2.11.52) ] &&
19232                 skip "Need server version at least 2.11.52"
19233
19234         # LU-11102
19235         local total
19236         local setattr_pid
19237         local start_time
19238         local end_time
19239         local duration
19240
19241         total=500
19242         # this test may be slow on ZFS
19243         [ "$mds1_FSTYPE" == "zfs" ] && total=100
19244
19245         # though this test is designed for striped directory, let's test normal
19246         # directory too since lock is always saved as CoS lock.
19247         test_mkdir $DIR/$tdir || error "mkdir $tdir"
19248         createmany -o $DIR/$tdir/$tfile. $total || error "createmany"
19249
19250         (
19251                 while true; do
19252                         touch $DIR/$tdir
19253                 done
19254         ) &
19255         setattr_pid=$!
19256
19257         start_time=$(date +%s)
19258         for i in $(seq $total); do
19259                 mrename $DIR/$tdir/$tfile.$i $DIR/$tdir/$tfile-new.$i \
19260                         > /dev/null
19261         done
19262         end_time=$(date +%s)
19263         duration=$((end_time - start_time))
19264
19265         kill -9 $setattr_pid
19266
19267         echo "rename $total files took $duration sec"
19268         [ $duration -lt 100 ] || error "rename took $duration sec"
19269 }
19270 run_test 415 "lock revoke is not missing"
19271
19272 test_416() {
19273         [ $(lustre_version_code mds1) -lt $(version_code 2.11.55) ] &&
19274                 skip "Need server version at least 2.11.55"
19275
19276         # define OBD_FAIL_OSD_TXN_START    0x19a
19277         do_facet mds1 lctl set_param fail_loc=0x19a
19278
19279         lfs mkdir -c $MDSCOUNT $DIR/$tdir
19280
19281         true
19282 }
19283 run_test 416 "transaction start failure won't cause system hung"
19284
19285 cleanup_417() {
19286         trap 0
19287         do_nodes $(comma_list $(mdts_nodes)) \
19288                 "$LCTL set_param -n mdt.*MDT*.enable_dir_migration=1"
19289         do_nodes $(comma_list $(mdts_nodes)) \
19290                 "$LCTL set_param -n mdt.*MDT*.enable_remote_dir=1"
19291         do_nodes $(comma_list $(mdts_nodes)) \
19292                 "$LCTL set_param -n mdt.*MDT*.enable_striped_dir=1"
19293 }
19294
19295 test_417() {
19296         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
19297         [[ $MDS1_VERSION -lt $(version_code 2.11.56) ]] &&
19298                 skip "Need MDS version at least 2.11.56"
19299
19300         trap cleanup_417 RETURN EXIT
19301
19302         $LFS mkdir -i 1 $DIR/$tdir.1 || error "create remote dir $tdir.1 failed"
19303         do_nodes $(comma_list $(mdts_nodes)) \
19304                 "$LCTL set_param -n mdt.*MDT*.enable_dir_migration=0"
19305         $LFS migrate -m 0 $DIR/$tdir.1 &&
19306                 error "migrate dir $tdir.1 should fail"
19307
19308         do_nodes $(comma_list $(mdts_nodes)) \
19309                 "$LCTL set_param -n mdt.*MDT*.enable_remote_dir=0"
19310         $LFS mkdir -i 1 $DIR/$tdir.2 &&
19311                 error "create remote dir $tdir.2 should fail"
19312
19313         do_nodes $(comma_list $(mdts_nodes)) \
19314                 "$LCTL set_param -n mdt.*MDT*.enable_striped_dir=0"
19315         $LFS mkdir -c 2 $DIR/$tdir.3 &&
19316                 error "create striped dir $tdir.3 should fail"
19317         true
19318 }
19319 run_test 417 "disable remote dir, striped dir and dir migration"
19320
19321 # Checks that the outputs of df [-i] and lfs df [-i] match
19322 #
19323 # usage: check_lfs_df <blocks | inodes> <mountpoint>
19324 check_lfs_df() {
19325         local dir=$2
19326         local inodes
19327         local df_out
19328         local lfs_df_out
19329
19330         # blocks or inodes
19331         [ "$1" == "blocks" ] && inodes= || inodes="-i"
19332
19333         # read the lines of interest
19334         df_out=($(df $inodes $dir | tail -n +2)) ||
19335                 error "df $inodes $dir | tail -n +2 failed"
19336         lfs_df_out=($($LFS df $inodes $dir | grep filesystem_summary:)) ||
19337                 error "lfs df $inodes $dir | grep filesystem_summary: failed"
19338
19339         # skip the first substrings of each command output as they are different
19340         # <NID>:/<fsname for df, filesystem_summary: for lfs df
19341         df_out=(${df_out[@]:1})
19342         lfs_df_out=(${lfs_df_out[@]:1})
19343
19344         # compare the two outputs
19345         for i in {0..4}; do
19346                 [ "${df_out[i]}" != "${lfs_df_out[i]}" ] &&
19347                         error "df and lfs df output mismatch:" \
19348                               "df${inodes}: ${df_out[*]}," \
19349                               "lfs df${inodes}: ${lfs_df_out[*]}"
19350         done
19351 }
19352
19353 test_418() {
19354         local dir=$DIR/$tdir
19355         local numfiles=$((RANDOM % 4096 + 2))
19356         local numblocks=$((RANDOM % 256 + 1))
19357
19358         wait_delete_completed
19359         test_mkdir $dir
19360
19361         # check block output
19362         check_lfs_df blocks $dir
19363         # check inode output
19364         check_lfs_df inodes $dir
19365
19366         # create a single file and retest
19367         echo "Creating a single file and testing"
19368         createmany -o $dir/$tfile- 1 &>/dev/null ||
19369                 error "creating 1 file in $dir failed"
19370         cancel_lru_locks osc
19371         sync; sleep 2
19372         check_lfs_df blocks $dir
19373         check_lfs_df inodes $dir
19374
19375         # create a random number of files
19376         echo "Creating $((numfiles - 1)) files and testing"
19377         createmany -o $dir/$tfile- 1 $((numfiles - 1)) &>/dev/null ||
19378                 error "creating $((numfiles - 1)) files in $dir failed"
19379
19380         # write a random number of blocks to the first test file
19381         echo "Writing $numblocks 4K blocks and testing"
19382         dd if=/dev/urandom of=$dir/${tfile}-0 bs=4K conv=fsync \
19383                 count=$numblocks &>/dev/null ||
19384                 error "dd to $dir/${tfile}-0 failed"
19385
19386         # retest
19387         cancel_lru_locks osc
19388         sync; sleep 10
19389         check_lfs_df blocks $dir
19390         check_lfs_df inodes $dir
19391
19392         unlinkmany $dir/$tfile- $numfiles &>/dev/null ||
19393                 error "unlinking $numfiles files in $dir failed"
19394 }
19395 run_test 418 "df and lfs df outputs match"
19396
19397 prep_801() {
19398         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
19399         [[ $OST1_VERSION -lt $(version_code 2.9.55) ]] &&
19400                 skip "Need server version at least 2.9.55"
19401
19402         start_full_debug_logging
19403 }
19404
19405 post_801() {
19406         stop_full_debug_logging
19407 }
19408
19409 barrier_stat() {
19410         if [ $MGS_VERSION -le $(version_code 2.10.0) ]; then
19411                 local st=$(do_facet mgs $LCTL barrier_stat $FSNAME |
19412                            awk '/The barrier for/ { print $7 }')
19413                 echo $st
19414         else
19415                 local st=$(do_facet mgs $LCTL barrier_stat -s $FSNAME)
19416                 echo \'$st\'
19417         fi
19418 }
19419
19420 barrier_expired() {
19421         local expired
19422
19423         if [ $MGS_VERSION -le $(version_code 2.10.0) ]; then
19424                 expired=$(do_facet mgs $LCTL barrier_stat $FSNAME |
19425                           awk '/will be expired/ { print $7 }')
19426         else
19427                 expired=$(do_facet mgs $LCTL barrier_stat -t $FSNAME)
19428         fi
19429
19430         echo $expired
19431 }
19432
19433 test_801a() {
19434         prep_801
19435
19436         echo "Start barrier_freeze at: $(date)"
19437         #define OBD_FAIL_BARRIER_DELAY          0x2202
19438         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
19439         do_facet mgs $LCTL barrier_freeze $FSNAME 10 &
19440
19441         sleep 2
19442         local b_status=$(barrier_stat)
19443         echo "Got barrier status at: $(date)"
19444         [ "$b_status" = "'freezing_p1'" ] ||
19445                 error "(1) unexpected barrier status $b_status"
19446
19447         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
19448         wait
19449         b_status=$(barrier_stat)
19450         [ "$b_status" = "'frozen'" ] ||
19451                 error "(2) unexpected barrier status $b_status"
19452
19453         local expired=$(barrier_expired)
19454         echo "sleep $((expired + 3)) seconds, then the barrier will be expired"
19455         sleep $((expired + 3))
19456
19457         b_status=$(barrier_stat)
19458         [ "$b_status" = "'expired'" ] ||
19459                 error "(3) unexpected barrier status $b_status"
19460
19461         do_facet mgs $LCTL barrier_freeze $FSNAME 10 ||
19462                 error "(4) fail to freeze barrier"
19463
19464         b_status=$(barrier_stat)
19465         [ "$b_status" = "'frozen'" ] ||
19466                 error "(5) unexpected barrier status $b_status"
19467
19468         echo "Start barrier_thaw at: $(date)"
19469         #define OBD_FAIL_BARRIER_DELAY          0x2202
19470         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
19471         do_facet mgs $LCTL barrier_thaw $FSNAME &
19472
19473         sleep 2
19474         b_status=$(barrier_stat)
19475         echo "Got barrier status at: $(date)"
19476         [ "$b_status" = "'thawing'" ] ||
19477                 error "(6) unexpected barrier status $b_status"
19478
19479         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
19480         wait
19481         b_status=$(barrier_stat)
19482         [ "$b_status" = "'thawed'" ] ||
19483                 error "(7) unexpected barrier status $b_status"
19484
19485         #define OBD_FAIL_BARRIER_FAILURE        0x2203
19486         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2203
19487         do_facet mgs $LCTL barrier_freeze $FSNAME
19488
19489         b_status=$(barrier_stat)
19490         [ "$b_status" = "'failed'" ] ||
19491                 error "(8) unexpected barrier status $b_status"
19492
19493         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
19494         do_facet mgs $LCTL barrier_thaw $FSNAME
19495
19496         post_801
19497 }
19498 run_test 801a "write barrier user interfaces and stat machine"
19499
19500 test_801b() {
19501         prep_801
19502
19503         mkdir $DIR/$tdir || error "(1) fail to mkdir"
19504         createmany -d $DIR/$tdir/d 6 || "(2) fail to mkdir"
19505         touch $DIR/$tdir/d2/f10 || error "(3) fail to touch"
19506         touch $DIR/$tdir/d3/f11 || error "(4) fail to touch"
19507         touch $DIR/$tdir/d4/f12 || error "(5) fail to touch"
19508
19509         cancel_lru_locks mdc
19510
19511         # 180 seconds should be long enough
19512         do_facet mgs $LCTL barrier_freeze $FSNAME 180
19513
19514         local b_status=$(barrier_stat)
19515         [ "$b_status" = "'frozen'" ] ||
19516                 error "(6) unexpected barrier status $b_status"
19517
19518         mkdir $DIR/$tdir/d0/d10 &
19519         mkdir_pid=$!
19520
19521         touch $DIR/$tdir/d1/f13 &
19522         touch_pid=$!
19523
19524         ln $DIR/$tdir/d2/f10 $DIR/$tdir/d2/f14 &
19525         ln_pid=$!
19526
19527         mv $DIR/$tdir/d3/f11 $DIR/$tdir/d3/f15 &
19528         mv_pid=$!
19529
19530         rm -f $DIR/$tdir/d4/f12 &
19531         rm_pid=$!
19532
19533         stat $DIR/$tdir/d5 || error "(7) stat should succeed"
19534
19535         # To guarantee taht the 'stat' is not blocked
19536         b_status=$(barrier_stat)
19537         [ "$b_status" = "'frozen'" ] ||
19538                 error "(8) unexpected barrier status $b_status"
19539
19540         # let above commands to run at background
19541         sleep 5
19542
19543         ps -p $mkdir_pid || error "(9) mkdir should be blocked"
19544         ps -p $touch_pid || error "(10) touch should be blocked"
19545         ps -p $ln_pid || error "(11) link should be blocked"
19546         ps -p $mv_pid || error "(12) rename should be blocked"
19547         ps -p $rm_pid || error "(13) unlink should be blocked"
19548
19549         b_status=$(barrier_stat)
19550         [ "$b_status" = "'frozen'" ] ||
19551                 error "(14) unexpected barrier status $b_status"
19552
19553         do_facet mgs $LCTL barrier_thaw $FSNAME
19554         b_status=$(barrier_stat)
19555         [ "$b_status" = "'thawed'" ] ||
19556                 error "(15) unexpected barrier status $b_status"
19557
19558         wait $mkdir_pid || error "(16) mkdir should succeed"
19559         wait $touch_pid || error "(17) touch should succeed"
19560         wait $ln_pid || error "(18) link should succeed"
19561         wait $mv_pid || error "(19) rename should succeed"
19562         wait $rm_pid || error "(20) unlink should succeed"
19563
19564         post_801
19565 }
19566 run_test 801b "modification will be blocked by write barrier"
19567
19568 test_801c() {
19569         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19570
19571         prep_801
19572
19573         stop mds2 || error "(1) Fail to stop mds2"
19574
19575         do_facet mgs $LCTL barrier_freeze $FSNAME 30
19576
19577         local b_status=$(barrier_stat)
19578         [ "$b_status" = "'expired'" -o "$b_status" = "'failed'" ] || {
19579                 do_facet mgs $LCTL barrier_thaw $FSNAME
19580                 error "(2) unexpected barrier status $b_status"
19581         }
19582
19583         do_facet mgs $LCTL barrier_rescan $FSNAME ||
19584                 error "(3) Fail to rescan barrier bitmap"
19585
19586         do_facet mgs $LCTL barrier_freeze $FSNAME 10
19587
19588         b_status=$(barrier_stat)
19589         [ "$b_status" = "'frozen'" ] ||
19590                 error "(4) unexpected barrier status $b_status"
19591
19592         do_facet mgs $LCTL barrier_thaw $FSNAME
19593         b_status=$(barrier_stat)
19594         [ "$b_status" = "'thawed'" ] ||
19595                 error "(5) unexpected barrier status $b_status"
19596
19597         local devname=$(mdsdevname 2)
19598
19599         start mds2 $devname $MDS_MOUNT_OPTS || error "(6) Fail to start mds2"
19600
19601         do_facet mgs $LCTL barrier_rescan $FSNAME ||
19602                 error "(7) Fail to rescan barrier bitmap"
19603
19604         post_801
19605 }
19606 run_test 801c "rescan barrier bitmap"
19607
19608 saved_MGS_MOUNT_OPTS=$MGS_MOUNT_OPTS
19609 saved_MDS_MOUNT_OPTS=$MDS_MOUNT_OPTS
19610 saved_OST_MOUNT_OPTS=$OST_MOUNT_OPTS
19611
19612 cleanup_802() {
19613         trap 0
19614
19615         stopall
19616         MGS_MOUNT_OPTS=$saved_MGS_MOUNT_OPTS
19617         MDS_MOUNT_OPTS=$saved_MDS_MOUNT_OPTS
19618         OST_MOUNT_OPTS=$saved_OST_MOUNT_OPTS
19619         setupall
19620 }
19621
19622 test_802() {
19623
19624         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
19625         [[ $OST1_VERSION -lt $(version_code 2.9.55) ]] &&
19626                 skip "Need server version at least 2.9.55"
19627
19628         [[ $ENABLE_QUOTA ]] && skip "Quota enabled for read-only test"
19629
19630         mkdir $DIR/$tdir || error "(1) fail to mkdir"
19631
19632         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
19633                 error "(2) Fail to copy"
19634
19635         trap cleanup_802 EXIT
19636
19637         # sync by force before remount as readonly
19638         sync; sync_all_data; sleep 3; sync_all_data
19639
19640         stopall
19641
19642         MGS_MOUNT_OPTS=$(csa_add "$MGS_MOUNT_OPTS" -o rdonly_dev)
19643         MDS_MOUNT_OPTS=$(csa_add "$MDS_MOUNT_OPTS" -o rdonly_dev)
19644         OST_MOUNT_OPTS=$(csa_add "$OST_MOUNT_OPTS" -o rdonly_dev)
19645
19646         echo "Mount the server as read only"
19647         setupall server_only || error "(3) Fail to start servers"
19648
19649         echo "Mount client without ro should fail"
19650         mount_client $MOUNT &&
19651                 error "(4) Mount client without 'ro' should fail"
19652
19653         echo "Mount client with ro should succeed"
19654         mount_client $MOUNT ro ||
19655                 error "(5) Mount client with 'ro' should succeed"
19656
19657         echo "Modify should be refused"
19658         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
19659
19660         echo "Read should be allowed"
19661         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
19662                 error "(7) Read should succeed under ro mode"
19663
19664         cleanup_802
19665 }
19666 run_test 802 "simulate readonly device"
19667
19668 test_803() {
19669         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19670         [ $MDS1_VERSION -lt $(version_code 2.10.54) ] &&
19671                 skip "MDS needs to be newer than 2.10.54"
19672
19673         mkdir -p $DIR/$tdir
19674         # Create some objects on all MDTs to trigger related logs objects
19675         for idx in $(seq $MDSCOUNT); do
19676                 $LFS mkdir -c $MDSCOUNT -i $((idx % $MDSCOUNT)) \
19677                         $DIR/$tdir/dir${idx} ||
19678                         error "Fail to create $DIR/$tdir/dir${idx}"
19679         done
19680
19681         sync; sleep 3
19682         wait_delete_completed # ensure old test cleanups are finished
19683         echo "before create:"
19684         $LFS df -i $MOUNT
19685         local before_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19686
19687         for i in {1..10}; do
19688                 $LFS mkdir -c 1 -i 1 $DIR/$tdir/foo$i ||
19689                         error "Fail to create $DIR/$tdir/foo$i"
19690         done
19691
19692         sync; sleep 3
19693         echo "after create:"
19694         $LFS df -i $MOUNT
19695         local after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19696
19697         # allow for an llog to be cleaned up during the test
19698         [ $after_used -ge $((before_used + 10 - 1)) ] ||
19699                 error "before ($before_used) + 10 > after ($after_used)"
19700
19701         for i in {1..10}; do
19702                 rm -rf $DIR/$tdir/foo$i ||
19703                         error "Fail to remove $DIR/$tdir/foo$i"
19704         done
19705
19706         sleep 3 # avoid MDT return cached statfs
19707         wait_delete_completed
19708         echo "after unlink:"
19709         $LFS df -i $MOUNT
19710         after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19711
19712         # allow for an llog to be created during the test
19713         [ $after_used -le $((before_used + 1)) ] ||
19714                 error "after ($after_used) > before ($before_used) + 1"
19715 }
19716 run_test 803 "verify agent object for remote object"
19717
19718 test_804() {
19719         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19720         [ $MDS1_VERSION -lt $(version_code 2.10.54) ] &&
19721                 skip "MDS needs to be newer than 2.10.54"
19722         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
19723
19724         mkdir -p $DIR/$tdir
19725         $LFS mkdir -c 1 -i 1 $DIR/$tdir/dir0 ||
19726                 error "Fail to create $DIR/$tdir/dir0"
19727
19728         local fid=$($LFS path2fid $DIR/$tdir/dir0)
19729         local dev=$(mdsdevname 2)
19730
19731         do_facet mds2 "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19732                 grep ${fid} || error "NOT found agent entry for dir0"
19733
19734         $LFS mkdir -c $MDSCOUNT -i 0 $DIR/$tdir/dir1 ||
19735                 error "Fail to create $DIR/$tdir/dir1"
19736
19737         touch $DIR/$tdir/dir1/foo0 ||
19738                 error "Fail to create $DIR/$tdir/dir1/foo0"
19739         fid=$($LFS path2fid $DIR/$tdir/dir1/foo0)
19740         local rc=0
19741
19742         for idx in $(seq $MDSCOUNT); do
19743                 dev=$(mdsdevname $idx)
19744                 do_facet mds${idx} \
19745                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19746                         grep ${fid} && rc=$idx
19747         done
19748
19749         mv $DIR/$tdir/dir1/foo0 $DIR/$tdir/dir1/foo1 ||
19750                 error "Fail to rename foo0 to foo1"
19751         if [ $rc -eq 0 ]; then
19752                 for idx in $(seq $MDSCOUNT); do
19753                         dev=$(mdsdevname $idx)
19754                         do_facet mds${idx} \
19755                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19756                         grep ${fid} && rc=$idx
19757                 done
19758         fi
19759
19760         mv $DIR/$tdir/dir1/foo1 $DIR/$tdir/dir1/foo2 ||
19761                 error "Fail to rename foo1 to foo2"
19762         if [ $rc -eq 0 ]; then
19763                 for idx in $(seq $MDSCOUNT); do
19764                         dev=$(mdsdevname $idx)
19765                         do_facet mds${idx} \
19766                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19767                         grep ${fid} && rc=$idx
19768                 done
19769         fi
19770
19771         [ $rc -ne 0 ] || error "NOT found agent entry for foo"
19772
19773         ln $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir0/guard ||
19774                 error "Fail to link to $DIR/$tdir/dir1/foo2"
19775         mv $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir1/foo0 ||
19776                 error "Fail to rename foo2 to foo0"
19777         unlink $DIR/$tdir/dir1/foo0 ||
19778                 error "Fail to unlink $DIR/$tdir/dir1/foo0"
19779         rm -rf $DIR/$tdir/dir0 ||
19780                 error "Fail to rm $DIR/$tdir/dir0"
19781
19782         for idx in $(seq $MDSCOUNT); do
19783                 dev=$(mdsdevname $idx)
19784                 rc=0
19785
19786                 stop mds${idx}
19787                 run_e2fsck $(facet_active_host mds$idx) $dev -n ||
19788                         rc=$?
19789                 start mds${idx} $dev $MDS_MOUNT_OPTS ||
19790                         error "mount mds$idx failed"
19791                 df $MOUNT > /dev/null 2>&1
19792
19793                 # e2fsck should not return error
19794                 [ $rc -eq 0 ] ||
19795                         error "e2fsck detected error on MDT${idx}: rc=$rc"
19796         done
19797 }
19798 run_test 804 "verify agent entry for remote entry"
19799
19800 cleanup_805() {
19801         do_facet $SINGLEMDS zfs set quota=$old $fsset
19802         unlinkmany $DIR/$tdir/f- 1000000
19803         trap 0
19804 }
19805
19806 test_805() {
19807         local zfs_version=$(do_node $SINGLEMDS cat /sys/module/zfs/version)
19808         [ "$mds1_FSTYPE" != "zfs" ] && skip "ZFS specific test"
19809         [ $(version_code $zfs_version) -lt $(version_code 0.7.2) ] &&
19810                 skip "netfree not implemented before 0.7"
19811         [[ $MDS1_VERSION -ge $(version_code 2.10.57) ]] ||
19812                 skip "Need MDS version at least 2.10.57"
19813
19814         local fsset
19815         local freekb
19816         local usedkb
19817         local old
19818         local quota
19819         local pref="osd-zfs.lustre-MDT0000."
19820
19821         # limit available space on MDS dataset to meet nospace issue
19822         # quickly. then ZFS 0.7.2 can use reserved space if asked
19823         # properly (using netfree flag in osd_declare_destroy()
19824         fsset=$(do_facet $SINGLEMDS lctl get_param -n $pref.mntdev)
19825         old=$(do_facet $SINGLEMDS zfs get -H quota $fsset | \
19826                 gawk '{print $3}')
19827         freekb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytesfree)
19828         usedkb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytestotal)
19829         let "usedkb=usedkb-freekb"
19830         let "freekb=freekb/2"
19831         if let "freekb > 5000"; then
19832                 let "freekb=5000"
19833         fi
19834         do_facet $SINGLEMDS zfs set quota=$(((usedkb+freekb)*1024)) $fsset
19835         trap cleanup_805 EXIT
19836         mkdir $DIR/$tdir
19837         $LFS setstripe -E 1M -L mdt $DIR/$tdir || error "DoM not working"
19838         createmany -m $DIR/$tdir/f- 1000000 && error "ENOSPC wasn't met"
19839         rm -rf $DIR/$tdir || error "not able to remove"
19840         do_facet $SINGLEMDS zfs set quota=$old $fsset
19841         trap 0
19842 }
19843 run_test 805 "ZFS can remove from full fs"
19844
19845 # Size-on-MDS test
19846 check_lsom_data()
19847 {
19848         local file=$1
19849         local size=$($LFS getsom -s $file)
19850         local expect=$(stat -c %s $file)
19851
19852         [[ $size == $expect ]] ||
19853                 error "$file expected size: $expect, got: $size"
19854
19855         local blocks=$($LFS getsom -b $file)
19856         expect=$(stat -c %b $file)
19857         [[ $blocks == $expect ]] ||
19858                 error "$file expected blocks: $expect, got: $blocks"
19859 }
19860
19861 check_lsom_size()
19862 {
19863         local size=$($LFS getsom -s $1)
19864         local expect=$2
19865
19866         [[ $size == $expect ]] ||
19867                 error "$file expected size: $expect, got: $size"
19868 }
19869
19870 test_806() {
19871         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
19872                 skip "Need MDS version at least 2.11.52"
19873
19874         local bs=1048576
19875
19876         touch $DIR/$tfile || error "touch $tfile failed"
19877
19878         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
19879         save_lustre_params client "llite.*.xattr_cache" > $save
19880         lctl set_param llite.*.xattr_cache=0
19881         stack_trap "restore_lustre_params < $save" EXIT
19882
19883         # single-threaded write
19884         echo "Test SOM for single-threaded write"
19885         dd if=/dev/zero of=$DIR/$tfile bs=$bs count=1 ||
19886                 error "write $tfile failed"
19887         check_lsom_size $DIR/$tfile $bs
19888
19889         local num=32
19890         local size=$(($num * $bs))
19891         local offset=0
19892         local i
19893
19894         echo "Test SOM for single client multi-threaded($num) write"
19895         $TRUNCATE $DIR/$tfile 0
19896         for ((i = 0; i < $num; i++)); do
19897                 $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
19898                 local pids[$i]=$!
19899                 offset=$((offset + $bs))
19900         done
19901         for (( i=0; i < $num; i++ )); do
19902                 wait ${pids[$i]}
19903         done
19904         check_lsom_size $DIR/$tfile $size
19905
19906         $TRUNCATE $DIR/$tfile 0
19907         for ((i = 0; i < $num; i++)); do
19908                 offset=$((offset - $bs))
19909                 $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
19910                 local pids[$i]=$!
19911         done
19912         for (( i=0; i < $num; i++ )); do
19913                 wait ${pids[$i]}
19914         done
19915         check_lsom_size $DIR/$tfile $size
19916
19917         # multi-client wirtes
19918         num=$(get_node_count ${CLIENTS//,/ })
19919         size=$(($num * $bs))
19920         offset=0
19921         i=0
19922
19923         echo "Test SOM for multi-client ($num) writes"
19924         $TRUNCATE $DIR/$tfile 0
19925         for client in ${CLIENTS//,/ }; do
19926                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
19927                 local pids[$i]=$!
19928                 i=$((i + 1))
19929                 offset=$((offset + $bs))
19930         done
19931         for (( i=0; i < $num; i++ )); do
19932                 wait ${pids[$i]}
19933         done
19934         check_lsom_size $DIR/$tfile $offset
19935
19936         i=0
19937         $TRUNCATE $DIR/$tfile 0
19938         for client in ${CLIENTS//,/ }; do
19939                 offset=$((offset - $bs))
19940                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
19941                 local pids[$i]=$!
19942                 i=$((i + 1))
19943         done
19944         for (( i=0; i < $num; i++ )); do
19945                 wait ${pids[$i]}
19946         done
19947         check_lsom_size $DIR/$tfile $size
19948
19949         # verify truncate
19950         echo "Test SOM for truncate"
19951         $TRUNCATE $DIR/$tfile 1048576
19952         check_lsom_size $DIR/$tfile 1048576
19953         $TRUNCATE $DIR/$tfile 1234
19954         check_lsom_size $DIR/$tfile 1234
19955
19956         # verify SOM blocks count
19957         echo "Verify SOM block count"
19958         $TRUNCATE $DIR/$tfile 0
19959         $MULTIOP $DIR/$tfile oO_TRUNC:O_RDWR:w1048576YSc ||
19960                 error "failed to write file $tfile"
19961         check_lsom_data $DIR/$tfile
19962 }
19963 run_test 806 "Verify Lazy Size on MDS"
19964
19965 test_807() {
19966         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
19967                 skip "Need MDS version at least 2.11.52"
19968
19969         # Registration step
19970         changelog_register || error "changelog_register failed"
19971         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
19972         changelog_users $SINGLEMDS | grep -q $cl_user ||
19973                 error "User $cl_user not found in changelog_users"
19974
19975         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
19976         save_lustre_params client "llite.*.xattr_cache" > $save
19977         lctl set_param llite.*.xattr_cache=0
19978         stack_trap "restore_lustre_params < $save" EXIT
19979
19980         rm -rf $DIR/$tdir || error "rm $tdir failed"
19981         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
19982         touch $DIR/$tdir/trunc || error "touch $tdir/trunc failed"
19983         $TRUNCATE $DIR/$tdir/trunc 1024 || error "truncate $tdir/trunc failed"
19984         $TRUNCATE $DIR/$tdir/trunc 1048576 ||
19985                 error "truncate $tdir/trunc failed"
19986
19987         local bs=1048576
19988         dd if=/dev/zero of=$DIR/$tdir/single_dd bs=$bs count=1 ||
19989                 error "write $tfile failed"
19990
19991         # multi-client wirtes
19992         local num=$(get_node_count ${CLIENTS//,/ })
19993         local offset=0
19994         local i=0
19995
19996         echo "Test SOM for multi-client ($num) writes"
19997         touch $DIR/$tfile || error "touch $tfile failed"
19998         $TRUNCATE $DIR/$tfile 0
19999         for client in ${CLIENTS//,/ }; do
20000                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
20001                 local pids[$i]=$!
20002                 i=$((i + 1))
20003                 offset=$((offset + $bs))
20004         done
20005         for (( i=0; i < $num; i++ )); do
20006                 wait ${pids[$i]}
20007         done
20008
20009         sleep 5
20010         $LSOM_SYNC -u $cl_user -m $FSNAME-MDT0000 $MOUNT
20011         check_lsom_data $DIR/$tdir/trunc
20012         check_lsom_data $DIR/$tdir/single_dd
20013         check_lsom_data $DIR/$tfile
20014
20015         rm -rf $DIR/$tdir
20016         # Deregistration step
20017         changelog_deregister || error "changelog_deregister failed"
20018 }
20019 run_test 807 "verify LSOM syncing tool"
20020
20021 check_som_nologged()
20022 {
20023         local lines=$($LFS changelog $FSNAME-MDT0000 |
20024                 grep 'x=trusted.som' | wc -l)
20025         [ $lines -ne 0 ] && error "trusted.som xattr is logged in Changelogs"
20026 }
20027
20028 test_808() {
20029         [ $MDS1_VERSION -lt $(version_code 2.11.55) ] &&
20030                 skip "Need MDS version at least 2.11.55"
20031
20032         # Registration step
20033         changelog_register || error "changelog_register failed"
20034
20035         touch $DIR/$tfile || error "touch $tfile failed"
20036         check_som_nologged
20037
20038         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=1 ||
20039                 error "write $tfile failed"
20040         check_som_nologged
20041
20042         $TRUNCATE $DIR/$tfile 1234
20043         check_som_nologged
20044
20045         $TRUNCATE $DIR/$tfile 1048576
20046         check_som_nologged
20047
20048         # Deregistration step
20049         changelog_deregister || error "changelog_deregister failed"
20050 }
20051 run_test 808 "Check trusted.som xattr not logged in Changelogs"
20052
20053 check_som_nodata()
20054 {
20055         $LFS getsom $1
20056         [[ $? -eq 61 ]] || error "DoM-only file $1 has SOM xattr"
20057 }
20058
20059 test_809() {
20060         [ $MDS1_VERSION -lt $(version_code 2.11.56) ] &&
20061                 skip "Need MDS version at least 2.11.56"
20062
20063         $LFS setstripe -E 1M -L mdt $DIR/$tfile ||
20064                 error "failed to create DoM-only file $DIR/$tfile"
20065         touch $DIR/$tfile || error "touch $tfile failed"
20066         check_som_nodata $DIR/$tfile
20067
20068         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 ||
20069                 error "write $tfile failed"
20070         check_som_nodata $DIR/$tfile
20071
20072         $TRUNCATE $DIR/$tfile 1234
20073         check_som_nodata $DIR/$tfile
20074
20075         $TRUNCATE $DIR/$tfile 4097
20076         check_som_nodata $DIR/$file
20077 }
20078 run_test 809 "Verify no SOM xattr store for DoM-only files"
20079
20080 test_810() {
20081         local ORIG
20082         local CSUM
20083
20084         # t10 seem to dislike partial pages
20085         lctl set_param osc.*.checksum_type=adler
20086         lctl set_param fail_loc=0x411
20087         dd if=/dev/urandom of=$DIR/$tfile bs=10240 count=2
20088         ORIG=$(md5sum $DIR/$tfile)
20089         lctl set_param ldlm.namespaces.*osc*.lru_size=clear
20090         CSUM=$(md5sum $DIR/$tfile)
20091         set_checksum_type adler
20092         if [ "$ORIG" != "$CSUM" ]; then
20093                 error "$ORIG != $CSUM"
20094         fi
20095 }
20096 run_test 810 "partial page writes on ZFS (LU-11663)"
20097
20098 test_811() {
20099         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.56) ] &&
20100                 skip "Need MDS version at least 2.11.56"
20101
20102         #define OBD_FAIL_MDS_ORPHAN_DELETE      0x165
20103         do_facet mds1 $LCTL set_param fail_loc=0x165
20104         $MULTIOP $DIR/$tfile Ouc || error "multiop failed"
20105
20106         stop mds1
20107         start mds1 $(mdsdevname 1) $MDS_MOUNT_OPTS
20108
20109         sleep 5
20110         [[ $(do_facet mds1 pgrep orph_.*-MDD | wc -l) -eq 0 ]] ||
20111                 error "MDD orphan cleanup thread not quit"
20112 }
20113 run_test 811 "orphan name stub can be cleaned up in startup"
20114
20115 #
20116 # tests that do cleanup/setup should be run at the end
20117 #
20118
20119 test_900() {
20120         [ $PARALLEL == "yes" ] && skip "skip parallel run"
20121         local ls
20122
20123         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
20124         $LCTL set_param fail_loc=0x903
20125
20126         cancel_lru_locks MGC
20127
20128         FAIL_ON_ERROR=true cleanup
20129         FAIL_ON_ERROR=true setup
20130 }
20131 run_test 900 "umount should not race with any mgc requeue thread"
20132
20133 complete $SECONDS
20134 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
20135 check_and_cleanup_lustre
20136 if [ "$I_MOUNTED" != "yes" ]; then
20137         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
20138 fi
20139 exit_status