Whamcloud - gitweb
a378f38388089af2167c235d7d6c4b9ed4644f12
[fs/lustre-release.git] / lustre / tests / sanity.sh
1 #!/bin/bash
2 # -*- tab-width: 8; indent-tabs-mode: t; -*-
3 #
4 # Run select tests by setting ONLY, or as arguments to the script.
5 # Skip specific tests by setting EXCEPT.
6 #
7 # e.g. ONLY="22 23" or ONLY="`seq 32 39`" or EXCEPT="31"
8 set -e
9
10 ONLY=${ONLY:-"$*"}
11 # bug number for skipped test: LU-9693 LU-6493 LU-9693 LU-11058
12 ALWAYS_EXCEPT="$SANITY_EXCEPT  42a     42b     42c     77k"
13 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
14
15 # skipped tests: LU-8411 LU-9096 LU-9054 ..
16 ALWAYS_EXCEPT="  407     253     312     $ALWAYS_EXCEPT"
17
18 if $SHARED_KEY; then
19 # bug number for skipped tests: LU-9795 (all below)
20         ALWAYS_EXCEPT="$ALWAYS_EXCEPT   17n     60a     133g    300f"
21 fi
22
23 if [[ $(uname -m) = aarch64 ]]; then
24         # bug number:    LU-11596 (all below)
25         ALWAYS_EXCEPT+=" 42d 42e 63a 63b 64a 64b 64c"
26         # bug number:    LU-11671 LU-11665 LU-11594 LU-11667 LU-11729
27         ALWAYS_EXCEPT+=" 45       101c     103a     317      810"
28 fi
29
30 # Check Grants after these tests
31 GRANT_CHECK_LIST="$GRANT_CHECK_LIST 42a 42b 42c 42d 42e 63a 63b 64a 64b 64c"
32 SRCDIR=$(cd $(dirname $0); echo $PWD)
33 export PATH=$PATH:/sbin
34
35 TMP=${TMP:-/tmp}
36 OSC=${OSC:-"osc"}
37
38 CC=${CC:-cc}
39 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
40 CREATETEST=${CREATETEST:-createtest}
41 LFS=${LFS:-lfs}
42 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
43 LCTL=${LCTL:-lctl}
44 OPENFILE=${OPENFILE:-openfile}
45 OPENUNLINK=${OPENUNLINK:-openunlink}
46 export MULTIOP=${MULTIOP:-multiop}
47 READS=${READS:-"reads"}
48 MUNLINK=${MUNLINK:-munlink}
49 SOCKETSERVER=${SOCKETSERVER:-socketserver}
50 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
51 MEMHOG=${MEMHOG:-memhog}
52 DIRECTIO=${DIRECTIO:-directio}
53 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
54 DEF_STRIPE_COUNT=-1
55 CHECK_GRANT=${CHECK_GRANT:-"yes"}
56 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
57 export PARALLEL=${PARALLEL:-"no"}
58
59 export NAME=${NAME:-local}
60
61 SAVE_PWD=$PWD
62
63 CLEANUP=${CLEANUP:-:}
64 SETUP=${SETUP:-:}
65 TRACE=${TRACE:-""}
66 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
67 LUSTRE_TESTS_API_DIR=${LUSTRE_TESTS_API_DIR:-${LUSTRE}/tests/clientapi}
68 . $LUSTRE/tests/test-framework.sh
69 init_test_env $@
70 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
71 init_logging
72
73 if [[ $MDSCOUNT -gt 1 ]]; then
74         # bug number:    LU-11161
75         ALWAYS_EXCEPT+=" 160g"
76 fi
77
78 #                                  5          12          (min)"
79 [ "$SLOW" = "no" ] && EXCEPT_SLOW="27m 64b 68 71 115 300o"
80
81 if [ $(facet_fstype $SINGLEMDS) = "zfs" ]; then
82         # bug number for skipped test: LU-1957
83         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  180"
84         #                                               13    (min)"
85         [ "$SLOW" = "no" ] && EXCEPT_SLOW="$EXCEPT_SLOW 51b"
86 fi
87
88 # Get the SLES distro version
89 #
90 # Returns a version string that should only be used in comparing
91 # strings returned by version_code()
92 sles_version_code()
93 {
94         local version=$(grep VERSION_ID /etc/os-release | cut -d'"' -f2)
95
96         # All SuSE Linux versions have one decimal. version_code expects two
97         local sles_version=$version.0
98         version_code $sles_version
99 }
100
101 # Check if we are running on Ubuntu or SLES so we can make decisions on
102 # what tests to run
103 if [ -r /etc/SuSE-release ]; then
104         sles_version=$(sles_version_code)
105         [ $sles_version -lt $(version_code 11.4.0) ] &&
106                 # bug number for skipped test: LU-4341
107                 ALWAYS_EXCEPT="$ALWAYS_EXCEPT  170"
108         [ $sles_version -lt $(version_code 12.0.0) ] &&
109                 # bug number for skipped test: LU-3703
110                 ALWAYS_EXCEPT="$ALWAYS_EXCEPT  234"
111 elif [ -r /etc/os-release ]; then
112         if grep -qi ubuntu /etc/os-release; then
113                 ubuntu_version=$(version_code $(sed -n -e 's/"//g' \
114                                                 -e 's/^VERSION=//p' \
115                                                 /etc/os-release |
116                                                 awk '{ print $1 }'))
117
118                 if [[ $ubuntu_version -gt $(version_code 16.0.0) ]]; then
119                         # bug number for skipped test:
120                         #                LU-10334 LU-10366
121                         ALWAYS_EXCEPT+=" 103a     410"
122                 fi
123         fi
124 fi
125
126 FAIL_ON_ERROR=false
127
128 cleanup() {
129         echo -n "cln.."
130         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
131         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
132 }
133 setup() {
134         echo -n "mnt.."
135         load_modules
136         setupall || exit 10
137         echo "done"
138 }
139
140 check_swap_layouts_support()
141 {
142         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
143                 skip "Does not support layout lock."
144 }
145
146 check_and_setup_lustre
147 DIR=${DIR:-$MOUNT}
148 assert_DIR
149
150 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
151
152 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
153 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
154 rm -rf $DIR/[Rdfs][0-9]*
155
156 # $RUNAS_ID may get set incorrectly somewhere else
157 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
158
159 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
160
161 build_test_filter
162
163 if [ "${ONLY}" = "MOUNT" ] ; then
164         echo "Lustre is up, please go on"
165         exit
166 fi
167
168 echo "preparing for tests involving mounts"
169 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
170 touch $EXT2_DEV
171 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
172 echo # add a newline after mke2fs.
173
174 umask 077
175
176 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
177 lctl set_param debug=-1 2> /dev/null || true
178 test_0a() {
179         touch $DIR/$tfile
180         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
181         rm $DIR/$tfile
182         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
183 }
184 run_test 0a "touch; rm ====================="
185
186 test_0b() {
187         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
188         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
189 }
190 run_test 0b "chmod 0755 $DIR ============================="
191
192 test_0c() {
193         $LCTL get_param mdc.*.import | grep "state: FULL" ||
194                 error "import not FULL"
195         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
196                 error "bad target"
197 }
198 run_test 0c "check import proc"
199
200 test_0d() { # LU-3397
201         [ $(lustre_version_code mgs) -lt $(version_code 2.10.57) ] &&
202                 skip "proc exports not supported before 2.10.57"
203
204         local mgs_exp="mgs.MGS.exports"
205         local client_uuid=$($LCTL get_param -n mgc.*.uuid)
206         local exp_client_nid
207         local exp_client_version
208         local exp_val
209         local imp_val
210         local temp_imp=$DIR/$tfile.import
211         local temp_exp=$DIR/$tfile.export
212
213         # save mgc import file to $temp_imp
214         $LCTL get_param mgc.*.import | tee $temp_imp
215         # Check if client uuid is found in MGS export
216         for exp_client_nid in $(do_facet mgs $LCTL get_param -N $mgs_exp.*); do
217                 [ $(do_facet mgs $LCTL get_param -n $exp_client_nid.uuid) == \
218                         $client_uuid ] &&
219                         break;
220         done
221         # save mgs export file to $temp_exp
222         do_facet mgs $LCTL get_param $exp_client_nid.export | tee $temp_exp
223
224         # Compare the value of field "connect_flags"
225         imp_val=$(grep "connect_flags" $temp_imp)
226         exp_val=$(grep "connect_flags" $temp_exp)
227         [ "$exp_val" == "$imp_val" ] ||
228                 error "export flags '$exp_val' != import flags '$imp_val'"
229
230         # Compare the value of client version
231         exp_client_version=$(awk '/target_version:/ { print $2 }' $temp_exp)
232         exp_val=$(version_code $exp_client_version)
233         imp_val=$(lustre_version_code client)
234         [ "$exp_val" == "$imp_val" ] ||
235                 error "export client version '$exp_val' != '$imp_val'"
236 }
237 run_test 0d "check export proc ============================="
238
239 test_1() {
240         test_mkdir $DIR/$tdir
241         test_mkdir $DIR/$tdir/d2
242         mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
243         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
244         rmdir $DIR/$tdir/d2
245         rmdir $DIR/$tdir
246         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
247 }
248 run_test 1 "mkdir; remkdir; rmdir"
249
250 test_2() {
251         test_mkdir $DIR/$tdir
252         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
253         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
254         rm -r $DIR/$tdir
255         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
256 }
257 run_test 2 "mkdir; touch; rmdir; check file"
258
259 test_3() {
260         test_mkdir $DIR/$tdir
261         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
262         touch $DIR/$tdir/$tfile
263         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
264         rm -r $DIR/$tdir
265         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
266 }
267 run_test 3 "mkdir; touch; rmdir; check dir"
268
269 # LU-4471 - failed rmdir on remote directories still removes directory on MDT0
270 test_4() {
271         test_mkdir -i 1 $DIR/$tdir
272
273         touch $DIR/$tdir/$tfile ||
274                 error "Create file under remote directory failed"
275
276         rmdir $DIR/$tdir &&
277                 error "Expect error removing in-use dir $DIR/$tdir"
278
279         test -d $DIR/$tdir || error "Remote directory disappeared"
280
281         rm -rf $DIR/$tdir || error "remove remote dir error"
282 }
283 run_test 4 "mkdir; touch dir/file; rmdir; checkdir (expect error)"
284
285 test_5() {
286         test_mkdir $DIR/$tdir
287         test_mkdir $DIR/$tdir/d2
288         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
289         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
290         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
291 }
292 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2"
293
294 test_6a() {
295         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
296         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
297         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
298                 error "$tfile does not have perm 0666 or UID $UID"
299         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
300         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
301                 error "$tfile should be 0666 and owned by UID $UID"
302 }
303 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
304
305 test_6c() {
306         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
307
308         touch $DIR/$tfile
309         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
310         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
311                 error "$tfile should be owned by UID $RUNAS_ID"
312         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
313         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
314                 error "$tfile should be owned by UID $RUNAS_ID"
315 }
316 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
317
318 test_6e() {
319         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
320
321         touch $DIR/$tfile
322         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
323         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
324                 error "$tfile should be owned by GID $UID"
325         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
326         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
327                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
328 }
329 run_test 6e "touch+chgrp $tfile; $RUNAS chgrp $tfile (should return error)"
330
331 test_6g() {
332         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
333
334         test_mkdir $DIR/$tdir
335         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
336         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
337         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
338         test_mkdir $DIR/$tdir/d/subdir
339         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
340                 error "$tdir/d/subdir should be GID $RUNAS_GID"
341         if [[ $MDSCOUNT -gt 1 ]]; then
342                 # check remote dir sgid inherite
343                 $LFS mkdir -i 0 $DIR/$tdir.local ||
344                         error "mkdir $tdir.local failed"
345                 chmod g+s $DIR/$tdir.local ||
346                         error "chmod $tdir.local failed"
347                 chgrp $RUNAS_GID $DIR/$tdir.local ||
348                         error "chgrp $tdir.local failed"
349                 $LFS mkdir -i 1 $DIR/$tdir.local/$tdir.remote ||
350                         error "mkdir $tdir.remote failed"
351                 $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir.local/$tdir.remote ||
352                         error "$tdir.remote should be owned by $UID.$RUNAS_ID"
353                 $CHECKSTAT -p 02755 $DIR/$tdir.local/$tdir.remote ||
354                         error "$tdir.remote should be mode 02755"
355         fi
356 }
357 run_test 6g "verify new dir in sgid dir inherits group"
358
359 test_6h() { # bug 7331
360         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
361
362         touch $DIR/$tfile || error "touch failed"
363         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
364         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
365                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
366         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
367                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
368 }
369 run_test 6h "$RUNAS chown RUNAS_ID.0 .../$tfile (should return error)"
370
371 test_7a() {
372         test_mkdir $DIR/$tdir
373         $MCREATE $DIR/$tdir/$tfile
374         chmod 0666 $DIR/$tdir/$tfile
375         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
376                 error "$tdir/$tfile should be mode 0666"
377 }
378 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
379
380 test_7b() {
381         if [ ! -d $DIR/$tdir ]; then
382                 test_mkdir $DIR/$tdir
383         fi
384         $MCREATE $DIR/$tdir/$tfile
385         echo -n foo > $DIR/$tdir/$tfile
386         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
387         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
388 }
389 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
390
391 test_8() {
392         test_mkdir $DIR/$tdir
393         touch $DIR/$tdir/$tfile
394         chmod 0666 $DIR/$tdir/$tfile
395         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
396                 error "$tfile mode not 0666"
397 }
398 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
399
400 test_9() {
401         test_mkdir $DIR/$tdir
402         test_mkdir $DIR/$tdir/d2
403         test_mkdir $DIR/$tdir/d2/d3
404         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
405 }
406 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
407
408 test_10() {
409         test_mkdir $DIR/$tdir
410         test_mkdir $DIR/$tdir/d2
411         touch $DIR/$tdir/d2/$tfile
412         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
413                 error "$tdir/d2/$tfile not a file"
414 }
415 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
416
417 test_11() {
418         test_mkdir $DIR/$tdir
419         test_mkdir $DIR/$tdir/d2
420         chmod 0666 $DIR/$tdir/d2
421         chmod 0705 $DIR/$tdir/d2
422         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
423                 error "$tdir/d2 mode not 0705"
424 }
425 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
426
427 test_12() {
428         test_mkdir $DIR/$tdir
429         touch $DIR/$tdir/$tfile
430         chmod 0666 $DIR/$tdir/$tfile
431         chmod 0654 $DIR/$tdir/$tfile
432         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
433                 error "$tdir/d2 mode not 0654"
434 }
435 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
436
437 test_13() {
438         test_mkdir $DIR/$tdir
439         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
440         >  $DIR/$tdir/$tfile
441         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
442                 error "$tdir/$tfile size not 0 after truncate"
443 }
444 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
445
446 test_14() {
447         test_mkdir $DIR/$tdir
448         touch $DIR/$tdir/$tfile
449         rm $DIR/$tdir/$tfile
450         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
451 }
452 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
453
454 test_15() {
455         test_mkdir $DIR/$tdir
456         touch $DIR/$tdir/$tfile
457         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
458         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
459                 error "$tdir/${tfile_2} not a file after rename"
460         rm $DIR/$tdir/${tfile}_2 || error "unlink failed after rename"
461 }
462 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
463
464 test_16() {
465         test_mkdir $DIR/$tdir
466         touch $DIR/$tdir/$tfile
467         rm -rf $DIR/$tdir/$tfile
468         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
469 }
470 run_test 16 "touch .../d16/f; rm -rf .../d16/f"
471
472 test_17a() {
473         test_mkdir $DIR/$tdir
474         touch $DIR/$tdir/$tfile
475         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
476         ls -l $DIR/$tdir
477         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
478                 error "$tdir/l-exist not a symlink"
479         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
480                 error "$tdir/l-exist not referencing a file"
481         rm -f $DIR/$tdir/l-exist
482         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
483 }
484 run_test 17a "symlinks: create, remove (real)"
485
486 test_17b() {
487         test_mkdir $DIR/$tdir
488         ln -s no-such-file $DIR/$tdir/l-dangle
489         ls -l $DIR/$tdir
490         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
491                 error "$tdir/l-dangle not referencing no-such-file"
492         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
493                 error "$tdir/l-dangle not referencing non-existent file"
494         rm -f $DIR/$tdir/l-dangle
495         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
496 }
497 run_test 17b "symlinks: create, remove (dangling)"
498
499 test_17c() { # bug 3440 - don't save failed open RPC for replay
500         test_mkdir $DIR/$tdir
501         ln -s foo $DIR/$tdir/$tfile
502         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
503 }
504 run_test 17c "symlinks: open dangling (should return error)"
505
506 test_17d() {
507         test_mkdir $DIR/$tdir
508         ln -s foo $DIR/$tdir/$tfile
509         touch $DIR/$tdir/$tfile || error "creating to new symlink"
510 }
511 run_test 17d "symlinks: create dangling"
512
513 test_17e() {
514         test_mkdir $DIR/$tdir
515         local foo=$DIR/$tdir/$tfile
516         ln -s $foo $foo || error "create symlink failed"
517         ls -l $foo || error "ls -l failed"
518         ls $foo && error "ls not failed" || true
519 }
520 run_test 17e "symlinks: create recursive symlink (should return error)"
521
522 test_17f() {
523         test_mkdir $DIR/$tdir
524         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/$tdir/111
525         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/$tdir/222
526         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/$tdir/333
527         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/$tdir/444
528         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/$tdir/555
529         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
530         ls -l  $DIR/$tdir
531 }
532 run_test 17f "symlinks: long and very long symlink name"
533
534 # str_repeat(S, N) generate a string that is string S repeated N times
535 str_repeat() {
536         local s=$1
537         local n=$2
538         local ret=''
539         while [ $((n -= 1)) -ge 0 ]; do
540                 ret=$ret$s
541         done
542         echo $ret
543 }
544
545 # Long symlinks and LU-2241
546 test_17g() {
547         test_mkdir $DIR/$tdir
548         local TESTS="59 60 61 4094 4095"
549
550         # Fix for inode size boundary in 2.1.4
551         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
552                 TESTS="4094 4095"
553
554         # Patch not applied to 2.2 or 2.3 branches
555         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
556         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
557                 TESTS="4094 4095"
558
559         # skip long symlink name for rhel6.5.
560         # rhel6.5 has a limit (PATH_MAX - sizeof(struct filename))
561         grep -q '6.5' /etc/redhat-release &>/dev/null &&
562                 TESTS="59 60 61 4062 4063"
563
564         for i in $TESTS; do
565                 local SYMNAME=$(str_repeat 'x' $i)
566                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
567                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
568         done
569 }
570 run_test 17g "symlinks: really long symlink name and inode boundaries"
571
572 test_17h() { #bug 17378
573         [ $PARALLEL == "yes" ] && skip "skip parallel run"
574         remote_mds_nodsh && skip "remote MDS with nodsh"
575
576         local mdt_idx
577
578         test_mkdir $DIR/$tdir
579         mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
580         $LFS setstripe -c -1 $DIR/$tdir
581         #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
582         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
583         touch $DIR/$tdir/$tfile || true
584 }
585 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
586
587 test_17i() { #bug 20018
588         [ $PARALLEL == "yes" ] && skip "skip parallel run"
589         remote_mds_nodsh && skip "remote MDS with nodsh"
590
591         local foo=$DIR/$tdir/$tfile
592         local mdt_idx
593
594         test_mkdir -c1 $DIR/$tdir
595         mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
596         ln -s $foo $foo || error "create symlink failed"
597 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
598         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
599         ls -l $foo && error "error not detected"
600         return 0
601 }
602 run_test 17i "don't panic on short symlink (should return error)"
603
604 test_17k() { #bug 22301
605         [ $PARALLEL == "yes" ] && skip "skip parallel run"
606         [[ -z "$(which rsync 2>/dev/null)" ]] &&
607                 skip "no rsync command"
608         rsync --help | grep -q xattr ||
609                 skip_env "$(rsync --version | head -n1) does not support xattrs"
610         test_mkdir $DIR/$tdir
611         test_mkdir $DIR/$tdir.new
612         touch $DIR/$tdir/$tfile
613         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
614         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
615                 error "rsync failed with xattrs enabled"
616 }
617 run_test 17k "symlinks: rsync with xattrs enabled"
618
619 test_17l() { # LU-279
620         [[ -z "$(which getfattr 2>/dev/null)" ]] &&
621                 skip "no getfattr command"
622
623         test_mkdir $DIR/$tdir
624         touch $DIR/$tdir/$tfile
625         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
626         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
627                 # -h to not follow symlinks. -m '' to list all the xattrs.
628                 # grep to remove first line: '# file: $path'.
629                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
630                 do
631                         lgetxattr_size_check $path $xattr ||
632                                 error "lgetxattr_size_check $path $xattr failed"
633                 done
634         done
635 }
636 run_test 17l "Ensure lgetxattr's returned xattr size is consistent"
637
638 # LU-1540
639 test_17m() {
640         [ $PARALLEL == "yes" ] && skip "skip parallel run"
641         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
642                 skip_env "ldiskfs only test"
643         remote_mds_nodsh && skip "remote MDS with nodsh"
644         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
645         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
646                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks"
647
648         local short_sym="0123456789"
649         local wdir=$DIR/$tdir
650         local i
651
652         test_mkdir $wdir
653         long_sym=$short_sym
654         # create a long symlink file
655         for ((i = 0; i < 4; ++i)); do
656                 long_sym=${long_sym}${long_sym}
657         done
658
659         echo "create 512 short and long symlink files under $wdir"
660         for ((i = 0; i < 256; ++i)); do
661                 ln -sf ${long_sym}"a5a5" $wdir/long-$i
662                 ln -sf ${short_sym}"a5a5" $wdir/short-$i
663         done
664
665         echo "erase them"
666         rm -f $wdir/*
667         sync
668         wait_delete_completed
669
670         echo "recreate the 512 symlink files with a shorter string"
671         for ((i = 0; i < 512; ++i)); do
672                 # rewrite the symlink file with a shorter string
673                 ln -sf ${long_sym} $wdir/long-$i || error "long_sym failed"
674                 ln -sf ${short_sym} $wdir/short-$i || error "short_sym failed"
675         done
676
677         local mds_index=$(($($LFS getstripe -m $wdir) + 1))
678         local devname=$(mdsdevname $mds_index)
679
680         echo "stop and checking mds${mds_index}:"
681         # e2fsck should not return error
682         stop mds${mds_index}
683         run_e2fsck $(facet_active_host mds${mds_index}) $devname -n
684         rc=$?
685
686         start mds${mds_index} $devname $MDS_MOUNT_OPTS ||
687                 error "start mds${mds_index} failed"
688         df $MOUNT > /dev/null 2>&1
689         [ $rc -eq 0 ] ||
690                 error "e2fsck detected error for short/long symlink: rc=$rc"
691         rm -f $wdir/*
692 }
693 run_test 17m "run e2fsck against MDT which contains short/long symlink"
694
695 check_fs_consistency_17n() {
696         local mdt_index
697         local rc=0
698
699         # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
700         # so it only check MDT1/MDT2 instead of all of MDTs.
701         for mdt_index in 1 2; do
702                 local devname=$(mdsdevname $mdt_index)
703                 # e2fsck should not return error
704                 stop mds${mdt_index}
705                 run_e2fsck $(facet_active_host mds$mdt_index) $devname -n ||
706                         rc=$((rc + $?))
707
708                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS ||
709                         error "mount mds$mdt_index failed"
710                 df $MOUNT > /dev/null 2>&1
711         done
712         return $rc
713 }
714
715 test_17n() {
716         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
717         [ $PARALLEL == "yes" ] && skip "skip parallel run"
718         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
719                 skip_env "ldiskfs only test"
720         remote_mds_nodsh && skip "remote MDS with nodsh"
721         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
722         [ $(lustre_version_code $SINGLEMDS) -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         [ $(lustre_version_code $SINGLEMDS) -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         [ $(lustre_version_code $SINGLEMDS) -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         [ $(facet_fstype $SINGLEMDS) = "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         [[ $(lustre_version_code $SINGLEMDS) -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         [[ $(lustre_version_code $SINGLEMDS) -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                 [ $(lustre_version_code client) -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         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ] &&
2190                 skip27D+="-s 29"
2191         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.55) -o \
2192           $(lustre_version_code client) -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         [ $(lustre_version_code client) -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         [[ $(lustre_version_code $SINGLEMDS) -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         [[ $(lustre_version_code $SINGLEMDS) -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         [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
4236         [ $(lustre_version_code $SINGLEMDS) -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 [ "$(facet_fstype $SINGLEMDS)" != 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         [[ $(lustre_version_code $SINGLEMDS) -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 [ $(lustre_version_code $SINGLEMDS) -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         [ $(lustre_version_code $SINGLEMDS) -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         [ $(lustre_version_code $SINGLEMDS) -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         [ $(lustre_version_code $SINGLEMDS) -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         [[ $(lustre_version_code $SINGLEMDS) -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 [ "$(facet_fstype $SINGLEMDS)" != 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 [ "$(facet_fstype $SINGLEMDS)" != 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_60aa() {
6246         remote_mgs_nodsh && skip "remote MGS with nodsh"
6247
6248         # test old logid format
6249         if [ $(lustre_version_code mgs) -le $(version_code 3.1.53) ]; then
6250                 do_facet mgs $LCTL dl | grep MGS
6251                 do_facet mgs "$LCTL --device %MGS llog_print \\\\\\\$$FSNAME-client" ||
6252                         error "old llog_print failed"
6253         fi
6254
6255         # test new logid format
6256         if [ $(lustre_version_code mgs) -ge $(version_code 2.9.53) ]; then
6257                 do_facet mgs "$LCTL --device MGS llog_print $FSNAME-client" ||
6258                         error "new llog_print failed"
6259         fi
6260 }
6261 run_test 60aa "llog_print works with FIDs and simple names"
6262
6263 test_60ab() {
6264         # test llog_print with params
6265
6266         [[ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.11.51) ]] ||
6267                 skip "Need server version greater than 2.11.51"
6268
6269         local yaml
6270         local orig_val
6271
6272         orig_val=$(do_facet mgs $LCTL get_param jobid_name)
6273         do_facet mgs $LCTL set_param -P jobid_name="testname"
6274
6275         yaml=$(do_facet mgs $LCTL --device MGS llog_print params |
6276             grep jobid_name | tail -n 1)
6277
6278         local param=`awk '{ print $10 }' <<< "$yaml"`
6279         local val=`awk '{ print $12 }' <<< "$yaml"`
6280         #return to the default
6281         do_facet mgs $LCTL set_param -P jobid_name=$orig_val
6282         [ $val = "testname" ] || error "bad value: $val"
6283         [ $param = "jobid_name," ] || error "Bad param: $param"
6284 }
6285 run_test 60ab "llog_print params output values from set_param -P"
6286
6287 test_60b() { # bug 6411
6288         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6289
6290         dmesg > $DIR/$tfile
6291         LLOG_COUNT=$(do_facet mgs dmesg |
6292                      awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
6293                           /llog_[a-z]*.c:[0-9]/ {
6294                                 if (marker)
6295                                         from_marker++
6296                                 from_begin++
6297                           }
6298                           END {
6299                                 if (marker)
6300                                         print from_marker
6301                                 else
6302                                         print from_begin
6303                           }")
6304
6305         [[ $LLOG_COUNT -gt 120 ]] &&
6306                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
6307 }
6308 run_test 60b "limit repeated messages from CERROR/CWARN"
6309
6310 test_60c() {
6311         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6312
6313         echo "create 5000 files"
6314         createmany -o $DIR/f60c- 5000
6315 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
6316         lctl set_param fail_loc=0x80000137
6317         unlinkmany $DIR/f60c- 5000
6318         lctl set_param fail_loc=0
6319 }
6320 run_test 60c "unlink file when mds full"
6321
6322 test_60d() {
6323         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6324
6325         SAVEPRINTK=$(lctl get_param -n printk)
6326         # verify "lctl mark" is even working"
6327         MESSAGE="test message ID $RANDOM $$"
6328         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
6329         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
6330
6331         lctl set_param printk=0 || error "set lnet.printk failed"
6332         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
6333         MESSAGE="new test message ID $RANDOM $$"
6334         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
6335         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
6336         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
6337
6338         lctl set_param -n printk="$SAVEPRINTK"
6339 }
6340 run_test 60d "test printk console message masking"
6341
6342 test_60e() {
6343         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6344         remote_mds_nodsh && skip "remote MDS with nodsh"
6345
6346         touch $DIR/$tfile
6347 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
6348         do_facet mds1 lctl set_param fail_loc=0x15b
6349         rm $DIR/$tfile
6350 }
6351 run_test 60e "no space while new llog is being created"
6352
6353 test_60g() {
6354         local pid
6355
6356         test_mkdir -c $MDSCOUNT $DIR/$tdir
6357         $LFS setdirstripe -D -i -1 -c $MDSCOUNT $DIR/$tdir
6358
6359         (
6360                 local index=0
6361                 while true; do
6362                         mkdir $DIR/$tdir/subdir$index 2>/dev/null
6363                         rmdir $DIR/$tdir/subdir$index 2>/dev/null
6364                         index=$((index + 1))
6365                 done
6366         ) &
6367
6368         pid=$!
6369
6370         for i in $(seq 100); do 
6371                 # define OBD_FAIL_OSD_TXN_START    0x19a
6372                 do_facet mds1 lctl set_param fail_loc=0x8000019a
6373                 usleep 100
6374         done
6375
6376         kill -9 $pid
6377
6378         mkdir $DIR/$tdir/new || error "mkdir failed"
6379         rmdir $DIR/$tdir/new || error "rmdir failed"
6380 }
6381 run_test 60g "transaction abort won't cause MDT hung"
6382
6383 test_61() {
6384         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6385
6386         f="$DIR/f61"
6387         dd if=/dev/zero of=$f bs=$PAGE_SIZE count=1 || error "dd $f failed"
6388         cancel_lru_locks osc
6389         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
6390         sync
6391 }
6392 run_test 61 "mmap() writes don't make sync hang ================"
6393
6394 # bug 2330 - insufficient obd_match error checking causes LBUG
6395 test_62() {
6396         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6397
6398         f="$DIR/f62"
6399         echo foo > $f
6400         cancel_lru_locks osc
6401         lctl set_param fail_loc=0x405
6402         cat $f && error "cat succeeded, expect -EIO"
6403         lctl set_param fail_loc=0
6404 }
6405 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
6406 # match every page all of the time.
6407 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
6408
6409 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
6410 # Though this test is irrelevant anymore, it helped to reveal some
6411 # other grant bugs (LU-4482), let's keep it.
6412 test_63a() {   # was test_63
6413         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6414
6415         MAX_DIRTY_MB=$(lctl get_param -n osc.*.max_dirty_mb | head -n 1)
6416
6417         for i in `seq 10` ; do
6418                 dd if=/dev/zero of=$DIR/f63 bs=8k &
6419                 sleep 5
6420                 kill $!
6421                 sleep 1
6422         done
6423
6424         rm -f $DIR/f63 || true
6425 }
6426 run_test 63a "Verify oig_wait interruption does not crash ======="
6427
6428 # bug 2248 - async write errors didn't return to application on sync
6429 # bug 3677 - async write errors left page locked
6430 test_63b() {
6431         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6432
6433         debugsave
6434         lctl set_param debug=-1
6435
6436         # ensure we have a grant to do async writes
6437         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
6438         rm $DIR/$tfile
6439
6440         sync    # sync lest earlier test intercept the fail_loc
6441
6442         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
6443         lctl set_param fail_loc=0x80000406
6444         $MULTIOP $DIR/$tfile Owy && \
6445                 error "sync didn't return ENOMEM"
6446         sync; sleep 2; sync     # do a real sync this time to flush page
6447         lctl get_param -n llite.*.dump_page_cache | grep locked && \
6448                 error "locked page left in cache after async error" || true
6449         debugrestore
6450 }
6451 run_test 63b "async write errors should be returned to fsync ==="
6452
6453 test_64a () {
6454         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6455
6456         df $DIR
6457         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
6458 }
6459 run_test 64a "verify filter grant calculations (in kernel) ====="
6460
6461 test_64b () {
6462         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6463
6464         sh oos.sh $MOUNT || error "oos.sh failed: $?"
6465 }
6466 run_test 64b "check out-of-space detection on client"
6467
6468 test_64c() {
6469         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
6470 }
6471 run_test 64c "verify grant shrink"
6472
6473 # this does exactly what osc_request.c:osc_announce_cached() does in
6474 # order to calculate max amount of grants to ask from server
6475 want_grant() {
6476         local tgt=$1
6477
6478         local nrpages=$($LCTL get_param -n osc.${tgt}.max_pages_per_rpc)
6479         local rpc_in_flight=$($LCTL get_param -n osc.${tgt}.max_rpcs_in_flight)
6480
6481         ((rpc_in_flight ++));
6482         nrpages=$((nrpages * rpc_in_flight))
6483
6484         local dirty_max_pages=$($LCTL get_param -n osc.${tgt}.max_dirty_mb)
6485
6486         dirty_max_pages=$((dirty_max_pages * 1024 * 1024 / PAGE_SIZE))
6487
6488         [[ $dirty_max_pages -gt $nrpages ]] && nrpages=$dirty_max_pages
6489         local undirty=$((nrpages * PAGE_SIZE))
6490
6491         local max_extent_pages
6492         max_extent_pages=$($LCTL get_param osc.${tgt}.import |
6493             grep grant_max_extent_size | awk '{print $2}')
6494         max_extent_pages=$((max_extent_pages / PAGE_SIZE))
6495         local nrextents=$(((nrpages + max_extent_pages - 1) / max_extent_pages))
6496         local grant_extent_tax
6497         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6498             grep grant_extent_tax | awk '{print $2}')
6499
6500         undirty=$((undirty + nrextents * grant_extent_tax))
6501
6502         echo $undirty
6503 }
6504
6505 # this is size of unit for grant allocation. It should be equal to
6506 # what tgt_grant.c:tgt_grant_chunk() calculates
6507 grant_chunk() {
6508         local tgt=$1
6509         local max_brw_size
6510         local grant_extent_tax
6511
6512         max_brw_size=$($LCTL get_param osc.${tgt}.import |
6513             grep max_brw_size | awk '{print $2}')
6514
6515         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6516             grep grant_extent_tax | awk '{print $2}')
6517
6518         echo $(((max_brw_size + grant_extent_tax) * 2))
6519 }
6520
6521 test_64d() {
6522         [ $(lustre_version_code ost1) -lt $(version_code 2.10.56) ] &&
6523                 skip "OST < 2.10.55 doesn't limit grants enough"
6524
6525         local tgt=$($LCTL dl | grep "0000-osc-[^mM]" | awk '{print $4}')
6526         local file=$DIR/$tfile
6527
6528         [[ $($LCTL get_param osc.${tgt}.import |
6529              grep "connect_flags:.*grant_param") ]] ||
6530                 skip "no grant_param connect flag"
6531
6532         local olddebug=$($LCTL get_param -n debug 2> /dev/null)
6533
6534         $LCTL set_param debug="$OLDDEBUG" 2> /dev/null || true
6535
6536         local max_cur_granted=$(($(want_grant $tgt) + $(grant_chunk $tgt)))
6537         stack_trap "rm -f $file" EXIT
6538
6539         $LFS setstripe $file -i 0 -c 1
6540         dd if=/dev/zero of=$file bs=1M count=1000 &
6541         ddpid=$!
6542
6543         while true
6544         do
6545                 local cur_grant=$($LCTL get_param -n osc.${tgt}.cur_grant_bytes)
6546                 if [[ $cur_grant -gt $max_cur_granted ]]
6547                 then
6548                         kill $ddpid
6549                         error "cur_grant $cur_grant > $max_cur_granted"
6550                 fi
6551                 kill -0 $ddpid
6552                 [[ $? -ne 0 ]] && break;
6553                 sleep 2
6554         done
6555
6556         rm -f $DIR/$tfile
6557         wait_delete_completed
6558         $LCTL set_param debug="$olddebug" 2> /dev/null || true
6559 }
6560 run_test 64d "check grant limit exceed"
6561
6562 # bug 1414 - set/get directories' stripe info
6563 test_65a() {
6564         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6565
6566         test_mkdir $DIR/$tdir
6567         touch $DIR/$tdir/f1
6568         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
6569 }
6570 run_test 65a "directory with no stripe info"
6571
6572 test_65b() {
6573         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6574
6575         test_mkdir $DIR/$tdir
6576         local STRIPESIZE=$($LFS getstripe -S $DIR/$tdir)
6577
6578         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6579                                                 error "setstripe"
6580         touch $DIR/$tdir/f2
6581         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
6582 }
6583 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
6584
6585 test_65c() {
6586         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6587         [ $OSTCOUNT -lt 2 ] && skip_env "need at least 2 OSTs"
6588
6589         test_mkdir $DIR/$tdir
6590         local stripesize=$($LFS getstripe -S $DIR/$tdir)
6591
6592         $LFS setstripe -S $((stripesize * 4)) -i 1 \
6593                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
6594         touch $DIR/$tdir/f3
6595         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
6596 }
6597 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
6598
6599 test_65d() {
6600         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6601
6602         test_mkdir $DIR/$tdir
6603         local STRIPECOUNT=$($LFS getstripe -c $DIR/$tdir)
6604         local STRIPESIZE=$($LFS getstripe -S $DIR/$tdir)
6605
6606         if [[ $STRIPECOUNT -le 0 ]]; then
6607                 sc=1
6608         elif [[ $STRIPECOUNT -gt 2000 ]]; then
6609 #LOV_MAX_STRIPE_COUNT is 2000
6610                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
6611         else
6612                 sc=$(($STRIPECOUNT - 1))
6613         fi
6614         $LFS setstripe -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
6615         touch $DIR/$tdir/f4 $DIR/$tdir/f5
6616         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
6617                 error "lverify failed"
6618 }
6619 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
6620
6621 test_65e() {
6622         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6623
6624         test_mkdir $DIR/$tdir
6625
6626         $LFS setstripe $DIR/$tdir || error "setstripe"
6627         $LFS getstripe -v $DIR/$tdir | grep "Default" ||
6628                                         error "no stripe info failed"
6629         touch $DIR/$tdir/f6
6630         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
6631 }
6632 run_test 65e "directory setstripe defaults"
6633
6634 test_65f() {
6635         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6636
6637         test_mkdir $DIR/${tdir}f
6638         $RUNAS $LFS setstripe $DIR/${tdir}f &&
6639                 error "setstripe succeeded" || true
6640 }
6641 run_test 65f "dir setstripe permission (should return error) ==="
6642
6643 test_65g() {
6644         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6645
6646         test_mkdir $DIR/$tdir
6647         local STRIPESIZE=$($LFS getstripe -S $DIR/$tdir)
6648
6649         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6650                 error "setstripe -S failed"
6651         $LFS setstripe -d $DIR/$tdir || error "setstripe -d failed"
6652         $LFS getstripe -v $DIR/$tdir | grep "Default" ||
6653                 error "delete default stripe failed"
6654 }
6655 run_test 65g "directory setstripe -d"
6656
6657 test_65h() {
6658         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6659
6660         test_mkdir $DIR/$tdir
6661         local STRIPESIZE=$($LFS getstripe -S $DIR/$tdir)
6662
6663         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6664                 error "setstripe -S failed"
6665         test_mkdir $DIR/$tdir/dd1
6666         [ $($LFS getstripe -c $DIR/$tdir) = $($LFS getstripe -c $DIR/$tdir/dd1) ] ||
6667                 error "stripe info inherit failed"
6668 }
6669 run_test 65h "directory stripe info inherit ===================="
6670
6671 test_65i() {
6672         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6673
6674         save_layout_restore_at_exit $MOUNT
6675
6676         # bug6367: set non-default striping on root directory
6677         $LFS setstripe -S 65536 -c -1 $MOUNT || error "error setting stripe"
6678
6679         # bug12836: getstripe on -1 default directory striping
6680         $LFS getstripe $MOUNT || error "getstripe $MOUNT failed"
6681
6682         # bug12836: getstripe -v on -1 default directory striping
6683         $LFS getstripe -v $MOUNT || error "getstripe -v $MOUNT failed"
6684
6685         # bug12836: new find on -1 default directory striping
6686         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
6687 }
6688 run_test 65i "various tests to set root directory striping"
6689
6690 test_65j() { # bug6367
6691         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6692
6693         sync; sleep 1
6694
6695         # if we aren't already remounting for each test, do so for this test
6696         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
6697                 cleanup || error "failed to unmount"
6698                 setup
6699         fi
6700
6701         save_layout_restore_at_exit $MOUNT
6702
6703         $LFS setstripe -d $MOUNT || error "setstripe failed"
6704 }
6705 run_test 65j "set default striping on root directory (bug 6367)="
6706
6707 cleaup_65k() {
6708         rm -rf $DIR/$tdir
6709         wait_delete_completed
6710         do_facet $SINGLEMDS "lctl set_param -n \
6711                 osp.$ost*MDT0000.max_create_count=$max_count"
6712         do_facet $SINGLEMDS "lctl set_param -n \
6713                 osp.$ost*MDT0000.create_count=$count"
6714         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
6715         echo $INACTIVE_OSC "is Activate"
6716
6717         wait_osc_import_state mds ost$ostnum FULL
6718 }
6719
6720 test_65k() { # bug11679
6721         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6722         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
6723         remote_mds_nodsh && skip "remote MDS with nodsh"
6724
6725         local disable_precreate=true
6726         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.8.54) ] &&
6727                 disable_precreate=false
6728
6729         echo "Check OST status: "
6730         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
6731                 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
6732
6733         for OSC in $MDS_OSCS; do
6734                 echo $OSC "is active"
6735                 do_facet $SINGLEMDS lctl --device %$OSC activate
6736         done
6737
6738         for INACTIVE_OSC in $MDS_OSCS; do
6739                 local ost=$(osc_to_ost $INACTIVE_OSC)
6740                 local ostnum=$(do_facet $SINGLEMDS lctl get_param -n \
6741                                lov.*md*.target_obd |
6742                                awk -F: /$ost/'{ print $1 }' | head -n 1)
6743
6744                 mkdir -p $DIR/$tdir
6745                 $LFS setstripe -i $ostnum -c 1 $DIR/$tdir
6746                 createmany -o $DIR/$tdir/$tfile.$ostnum. 1000
6747
6748                 echo "Deactivate: " $INACTIVE_OSC
6749                 do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
6750
6751                 local count=$(do_facet $SINGLEMDS "lctl get_param -n \
6752                               osp.$ost*MDT0000.create_count")
6753                 local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
6754                                   osp.$ost*MDT0000.max_create_count")
6755                 $disable_precreate &&
6756                         do_facet $SINGLEMDS "lctl set_param -n \
6757                                 osp.$ost*MDT0000.max_create_count=0"
6758
6759                 for idx in $(seq 0 $((OSTCOUNT - 1))); do
6760                         [ -f $DIR/$tdir/$idx ] && continue
6761                         echo "$LFS setstripe -i $idx -c 1 $DIR/$tdir/$idx"
6762                         $LFS setstripe -i $idx -c 1 $DIR/$tdir/$idx ||
6763                                 { cleanup_65k;
6764                                   error "setstripe $idx should succeed"; }
6765                         rm -f $DIR/$tdir/$idx || error "rm $idx failed"
6766                 done
6767                 unlinkmany $DIR/$tdir/$tfile.$ostnum. 1000
6768                 rmdir $DIR/$tdir
6769
6770                 do_facet $SINGLEMDS "lctl set_param -n \
6771                         osp.$ost*MDT0000.max_create_count=$max_count"
6772                 do_facet $SINGLEMDS "lctl set_param -n \
6773                         osp.$ost*MDT0000.create_count=$count"
6774                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
6775                 echo $INACTIVE_OSC "is Activate"
6776
6777                 wait_osc_import_state mds ost$ostnum FULL
6778         done
6779 }
6780 run_test 65k "validate manual striping works properly with deactivated OSCs"
6781
6782 test_65l() { # bug 12836
6783         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6784
6785         test_mkdir -p $DIR/$tdir/test_dir
6786         $LFS setstripe -c -1 $DIR/$tdir/test_dir
6787         $LFS find -mtime -1 $DIR/$tdir >/dev/null
6788 }
6789 run_test 65l "lfs find on -1 stripe dir ========================"
6790
6791 test_65m() {
6792         local layout=$(save_layout $MOUNT)
6793         $RUNAS $LFS setstripe -c 2 $MOUNT && {
6794                 restore_layout $MOUNT $layout
6795                 error "setstripe should fail by non-root users"
6796         }
6797         true
6798 }
6799 run_test 65m "normal user can't set filesystem default stripe"
6800
6801 # bug 2543 - update blocks count on client
6802 test_66() {
6803         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6804
6805         COUNT=${COUNT:-8}
6806         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
6807         sync; sync_all_data; sync; sync_all_data
6808         cancel_lru_locks osc
6809         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
6810         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
6811 }
6812 run_test 66 "update inode blocks count on client ==============="
6813
6814 meminfo() {
6815         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
6816 }
6817
6818 swap_used() {
6819         swapon -s | awk '($1 == "'$1'") { print $4 }'
6820 }
6821
6822 # bug5265, obdfilter oa2dentry return -ENOENT
6823 # #define OBD_FAIL_SRV_ENOENT 0x217
6824 test_69() {
6825         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6826         remote_ost_nodsh && skip "remote OST with nodsh"
6827
6828         f="$DIR/$tfile"
6829         $LFS setstripe -c 1 -i 0 $f
6830
6831         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
6832
6833         do_facet ost1 lctl set_param fail_loc=0x217
6834         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
6835         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
6836
6837         do_facet ost1 lctl set_param fail_loc=0
6838         $DIRECTIO write $f 0 2 || error "write error"
6839
6840         cancel_lru_locks osc
6841         $DIRECTIO read $f 0 1 || error "read error"
6842
6843         do_facet ost1 lctl set_param fail_loc=0x217
6844         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
6845
6846         do_facet ost1 lctl set_param fail_loc=0
6847         rm -f $f
6848 }
6849 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
6850
6851 test_71() {
6852         test_mkdir $DIR/$tdir
6853         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
6854         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
6855 }
6856 run_test 71 "Running dbench on lustre (don't segment fault) ===="
6857
6858 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
6859         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6860         [ "$RUNAS_ID" = "$UID" ] &&
6861                 skip_env "RUNAS_ID = UID = $UID -- skipping"
6862         # Check that testing environment is properly set up. Skip if not
6863         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS ||
6864                 skip_env "User $RUNAS_ID does not exist - skipping"
6865
6866         touch $DIR/$tfile
6867         chmod 777 $DIR/$tfile
6868         chmod ug+s $DIR/$tfile
6869         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
6870                 error "$RUNAS dd $DIR/$tfile failed"
6871         # See if we are still setuid/sgid
6872         test -u $DIR/$tfile -o -g $DIR/$tfile &&
6873                 error "S/gid is not dropped on write"
6874         # Now test that MDS is updated too
6875         cancel_lru_locks mdc
6876         test -u $DIR/$tfile -o -g $DIR/$tfile &&
6877                 error "S/gid is not dropped on MDS"
6878         rm -f $DIR/$tfile
6879 }
6880 run_test 72a "Test that remove suid works properly (bug5695) ===="
6881
6882 test_72b() { # bug 24226 -- keep mode setting when size is not changing
6883         local perm
6884
6885         [ "$RUNAS_ID" = "$UID" ] &&
6886                 skip_env "RUNAS_ID = UID = $UID -- skipping"
6887         [ "$RUNAS_ID" -eq 0 ] &&
6888                 skip_env "RUNAS_ID = 0 -- skipping"
6889         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6890         # Check that testing environment is properly set up. Skip if not
6891         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS ||
6892                 skip_env "User $RUNAS_ID does not exist - skipping"
6893
6894         touch $DIR/${tfile}-f{g,u}
6895         test_mkdir $DIR/${tfile}-dg
6896         test_mkdir $DIR/${tfile}-du
6897         chmod 770 $DIR/${tfile}-{f,d}{g,u}
6898         chmod g+s $DIR/${tfile}-{f,d}g
6899         chmod u+s $DIR/${tfile}-{f,d}u
6900         for perm in 777 2777 4777; do
6901                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
6902                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
6903                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
6904                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
6905         done
6906         true
6907 }
6908 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
6909
6910 # bug 3462 - multiple simultaneous MDC requests
6911 test_73() {
6912         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6913
6914         test_mkdir $DIR/d73-1
6915         test_mkdir $DIR/d73-2
6916         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
6917         pid1=$!
6918
6919         lctl set_param fail_loc=0x80000129
6920         $MULTIOP $DIR/d73-1/f73-2 Oc &
6921         sleep 1
6922         lctl set_param fail_loc=0
6923
6924         $MULTIOP $DIR/d73-2/f73-3 Oc &
6925         pid3=$!
6926
6927         kill -USR1 $pid1
6928         wait $pid1 || return 1
6929
6930         sleep 25
6931
6932         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
6933         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
6934         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
6935
6936         rm -rf $DIR/d73-*
6937 }
6938 run_test 73 "multiple MDC requests (should not deadlock)"
6939
6940 test_74a() { # bug 6149, 6184
6941         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6942
6943         touch $DIR/f74a
6944         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
6945         #
6946         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
6947         # will spin in a tight reconnection loop
6948         $LCTL set_param fail_loc=0x8000030e
6949         # get any lock that won't be difficult - lookup works.
6950         ls $DIR/f74a
6951         $LCTL set_param fail_loc=0
6952         rm -f $DIR/f74a
6953         true
6954 }
6955 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
6956
6957 test_74b() { # bug 13310
6958         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6959
6960         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
6961         #
6962         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
6963         # will spin in a tight reconnection loop
6964         $LCTL set_param fail_loc=0x8000030e
6965         # get a "difficult" lock
6966         touch $DIR/f74b
6967         $LCTL set_param fail_loc=0
6968         rm -f $DIR/f74b
6969         true
6970 }
6971 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
6972
6973 test_74c() {
6974         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6975
6976         #define OBD_FAIL_LDLM_NEW_LOCK
6977         $LCTL set_param fail_loc=0x319
6978         touch $DIR/$tfile && error "touch successful"
6979         $LCTL set_param fail_loc=0
6980         true
6981 }
6982 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
6983
6984 num_inodes() {
6985         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
6986 }
6987
6988 test_76() { # Now for bug 20433, added originally in bug 1443
6989         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6990
6991         local CPUS=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
6992
6993         cancel_lru_locks osc
6994         BEFORE_INODES=$(num_inodes)
6995         echo "before inodes: $BEFORE_INODES"
6996         local COUNT=1000
6997         [ "$SLOW" = "no" ] && COUNT=100
6998         for i in $(seq $COUNT); do
6999                 touch $DIR/$tfile
7000                 rm -f $DIR/$tfile
7001         done
7002         cancel_lru_locks osc
7003         AFTER_INODES=$(num_inodes)
7004         echo "after inodes: $AFTER_INODES"
7005         local wait=0
7006         while [[ $((AFTER_INODES-1*${CPUS:-1})) -gt $BEFORE_INODES ]]; do
7007                 sleep 2
7008                 AFTER_INODES=$(num_inodes)
7009                 wait=$((wait+2))
7010                 echo "wait $wait seconds inodes: $AFTER_INODES"
7011                 if [ $wait -gt 30 ]; then
7012                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
7013                 fi
7014         done
7015 }
7016 run_test 76 "confirm clients recycle inodes properly ===="
7017
7018
7019 export ORIG_CSUM=""
7020 set_checksums()
7021 {
7022         # Note: in sptlrpc modes which enable its own bulk checksum, the
7023         # original crc32_le bulk checksum will be automatically disabled,
7024         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
7025         # will be checked by sptlrpc code against sptlrpc bulk checksum.
7026         # In this case set_checksums() will not be no-op, because sptlrpc
7027         # bulk checksum will be enabled all through the test.
7028
7029         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
7030         lctl set_param -n osc.*.checksums $1
7031         return 0
7032 }
7033
7034 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
7035                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
7036 CKSUM_TYPES=${CKSUM_TYPES:-$(lctl get_param -n osc.*osc-[^mM]*.checksum_type |
7037                              tr -d [] | head -n1)}
7038 set_checksum_type()
7039 {
7040         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
7041         log "set checksum type to $1"
7042         return 0
7043 }
7044 F77_TMP=$TMP/f77-temp
7045 F77SZ=8
7046 setup_f77() {
7047         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
7048                 error "error writing to $F77_TMP"
7049 }
7050
7051 test_77a() { # bug 10889
7052         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7053         $GSS && skip_env "could not run with gss"
7054
7055         [ ! -f $F77_TMP ] && setup_f77
7056         set_checksums 1
7057         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
7058         set_checksums 0
7059         rm -f $DIR/$tfile
7060 }
7061 run_test 77a "normal checksum read/write operation"
7062
7063 test_77b() { # bug 10889
7064         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7065         $GSS && skip_env "could not run with gss"
7066
7067         [ ! -f $F77_TMP ] && setup_f77
7068         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7069         $LCTL set_param fail_loc=0x80000409
7070         set_checksums 1
7071
7072         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
7073                 error "dd error: $?"
7074         $LCTL set_param fail_loc=0
7075
7076         for algo in $CKSUM_TYPES; do
7077                 cancel_lru_locks osc
7078                 set_checksum_type $algo
7079                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
7080                 $LCTL set_param fail_loc=0x80000408
7081                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
7082                 $LCTL set_param fail_loc=0
7083         done
7084         set_checksums 0
7085         set_checksum_type $ORIG_CSUM_TYPE
7086         rm -f $DIR/$tfile
7087 }
7088 run_test 77b "checksum error on client write, read"
7089
7090 cleanup_77c() {
7091         trap 0
7092         set_checksums 0
7093         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=0
7094         $check_ost &&
7095                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=0
7096         [ -n "$osc_file_prefix" ] && rm -f ${osc_file_prefix}*
7097         $check_ost && [ -n "$ost_file_prefix" ] &&
7098                 do_facet ost1 rm -f ${ost_file_prefix}\*
7099 }
7100
7101 test_77c() {
7102         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7103         $GSS && skip_env "could not run with gss"
7104         remote_ost_nodsh && skip "remote OST with nodsh"
7105
7106         local bad1
7107         local osc_file_prefix
7108         local osc_file
7109         local check_ost=false
7110         local ost_file_prefix
7111         local ost_file
7112         local orig_cksum
7113         local dump_cksum
7114         local fid
7115
7116         # ensure corruption will occur on first OSS/OST
7117         $LFS setstripe -i 0 $DIR/$tfile
7118
7119         [ ! -f $F77_TMP ] && setup_f77
7120         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
7121                 error "dd write error: $?"
7122         fid=$($LFS path2fid $DIR/$tfile)
7123
7124         if [ $(lustre_version_code ost1) -ge $(version_code 2.9.57) ]
7125         then
7126                 check_ost=true
7127                 ost_file_prefix=$(do_facet ost1 $LCTL get_param -n debug_path)
7128                 ost_file_prefix=${ost_file_prefix}-checksum_dump-ost-\\${fid}
7129         else
7130                 echo "OSS do not support bulk pages dump upon error"
7131         fi
7132
7133         osc_file_prefix=$($LCTL get_param -n debug_path)
7134         osc_file_prefix=${osc_file_prefix}-checksum_dump-osc-\\${fid}
7135
7136         trap cleanup_77c EXIT
7137
7138         set_checksums 1
7139         # enable bulk pages dump upon error on Client
7140         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=1
7141         # enable bulk pages dump upon error on OSS
7142         $check_ost &&
7143                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=1
7144
7145         # flush Client cache to allow next read to reach OSS
7146         cancel_lru_locks osc
7147
7148         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE       0x408
7149         $LCTL set_param fail_loc=0x80000408
7150         dd if=$DIR/$tfile of=/dev/null bs=1M || error "dd read error: $?"
7151         $LCTL set_param fail_loc=0
7152
7153         rm -f $DIR/$tfile
7154
7155         # check cksum dump on Client
7156         osc_file=$(ls ${osc_file_prefix}*)
7157         [ -n "$osc_file" ] || error "no checksum dump file on Client"
7158         # OBD_FAIL_OSC_CHECKSUM_RECEIVE corrupts with "bad1" at start of file
7159         bad1=$(dd if=$osc_file bs=1 count=4 2>/dev/null) || error "dd error: $?"
7160         [ $bad1 == "bad1" ] || error "unexpected corrupt pattern"
7161         orig_cksum=$(dd if=$F77_TMP bs=1 skip=4 count=1048572 2>/dev/null |
7162                      cksum)
7163         dump_cksum=$(dd if=$osc_file bs=1 skip=4 2>/dev/null | cksum)
7164         [[ "$orig_cksum" == "$dump_cksum" ]] ||
7165                 error "dump content does not match on Client"
7166
7167         $check_ost || skip "No need to check cksum dump on OSS"
7168
7169         # check cksum dump on OSS
7170         ost_file=$(do_facet ost1 ls ${ost_file_prefix}\*)
7171         [ -n "$ost_file" ] || error "no checksum dump file on OSS"
7172         orig_cksum=$(dd if=$F77_TMP bs=1048576 count=1 2>/dev/null | cksum)
7173         dump_cksum=$(do_facet ost1 dd if=$ost_file 2>/dev/null \| cksum)
7174         [[ "$orig_cksum" == "$dump_cksum" ]] ||
7175                 error "dump content does not match on OSS"
7176
7177         cleanup_77c
7178 }
7179 run_test 77c "checksum error on client read with debug"
7180
7181 test_77d() { # bug 10889
7182         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7183         $GSS && skip_env "could not run with gss"
7184
7185         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7186         $LCTL set_param fail_loc=0x80000409
7187         set_checksums 1
7188         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
7189                 error "direct write: rc=$?"
7190         $LCTL set_param fail_loc=0
7191         set_checksums 0
7192
7193         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
7194         $LCTL set_param fail_loc=0x80000408
7195         set_checksums 1
7196         cancel_lru_locks osc
7197         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
7198                 error "direct read: rc=$?"
7199         $LCTL set_param fail_loc=0
7200         set_checksums 0
7201 }
7202 run_test 77d "checksum error on OST direct write, read"
7203
7204 test_77f() { # bug 10889
7205         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7206         $GSS && skip_env "could not run with gss"
7207
7208         set_checksums 1
7209         for algo in $CKSUM_TYPES; do
7210                 cancel_lru_locks osc
7211                 set_checksum_type $algo
7212                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7213                 $LCTL set_param fail_loc=0x409
7214                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
7215                         error "direct write succeeded"
7216                 $LCTL set_param fail_loc=0
7217         done
7218         set_checksum_type $ORIG_CSUM_TYPE
7219         set_checksums 0
7220 }
7221 run_test 77f "repeat checksum error on write (expect error)"
7222
7223 test_77g() { # bug 10889
7224         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7225         $GSS && skip_env "could not run with gss"
7226         remote_ost_nodsh && skip "remote OST with nodsh"
7227
7228         [ ! -f $F77_TMP ] && setup_f77
7229
7230         local file=$DIR/$tfile
7231         stack_trap "rm -f $file" EXIT
7232
7233         $LFS setstripe -c 1 -i 0 $file
7234         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
7235         do_facet ost1 lctl set_param fail_loc=0x8000021a
7236         set_checksums 1
7237         dd if=$F77_TMP of=$file bs=1M count=$F77SZ ||
7238                 error "write error: rc=$?"
7239         do_facet ost1 lctl set_param fail_loc=0
7240         set_checksums 0
7241
7242         cancel_lru_locks osc
7243         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
7244         do_facet ost1 lctl set_param fail_loc=0x8000021b
7245         set_checksums 1
7246         cmp $F77_TMP $file || error "file compare failed"
7247         do_facet ost1 lctl set_param fail_loc=0
7248         set_checksums 0
7249 }
7250 run_test 77g "checksum error on OST write, read"
7251
7252 test_77k() { # LU-10906
7253         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7254         $GSS && skip_env "could not run with gss"
7255
7256         local cksum_param="osc.$FSNAME*.checksums"
7257         local get_checksum="$LCTL get_param -n $cksum_param | head -n1"
7258         local checksum
7259         local i
7260
7261         [ "$ORIG_CSUM" ] || ORIG_CSUM=$(eval $get_checksum)
7262         stack_trap "wait_update $HOSTNAME '$get_checksum' $ORIG_CSUM" EXIT
7263         stack_trap "do_facet mgs $LCTL set_param -P $cksum_param=$ORIG_CSUM" \
7264                 EXIT
7265
7266         for i in 0 1; do
7267                 do_facet mgs $LCTL set_param -P $cksum_param=$i ||
7268                         error "failed to set checksum=$i on MGS"
7269                 wait_update $HOSTNAME "$get_checksum" $i
7270                 #remount
7271                 echo "remount client, checksum should be $i"
7272                 remount_client $MOUNT || "failed to remount client"
7273                 checksum=$(eval $get_checksum)
7274                 [ $checksum -eq $i ] || error "checksum($checksum) != $i"
7275         done
7276
7277         for opt in "checksum" "nochecksum"; do
7278                 #remount with mount option
7279                 echo "remount client with option $opt, checksum should be $i"
7280                 umount_client $MOUNT || "failed to umount client"
7281                 mount_client $MOUNT "$MOUNT_OPTS,$opt" ||
7282                         "failed to mount client with option '$opt'"
7283                 checksum=$(eval $get_checksum)
7284                 [ $checksum -eq $i ] || error "checksum($checksum) != $i"
7285                 i=$((i - 1))
7286         done
7287
7288         remount_client $MOUNT || "failed to remount client"
7289 }
7290 run_test 77k "enable/disable checksum correctly"
7291
7292 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
7293 rm -f $F77_TMP
7294 unset F77_TMP
7295
7296 cleanup_test_78() {
7297         trap 0
7298         rm -f $DIR/$tfile
7299 }
7300
7301 test_78() { # bug 10901
7302         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7303         remote_ost || skip_env "local OST"
7304
7305         NSEQ=5
7306         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
7307         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
7308         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
7309         echo "MemTotal: $MEMTOTAL"
7310
7311         # reserve 256MB of memory for the kernel and other running processes,
7312         # and then take 1/2 of the remaining memory for the read/write buffers.
7313         if [ $MEMTOTAL -gt 512 ] ;then
7314                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
7315         else
7316                 # for those poor memory-starved high-end clusters...
7317                 MEMTOTAL=$((MEMTOTAL / 2))
7318         fi
7319         echo "Mem to use for directio: $MEMTOTAL"
7320
7321         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
7322         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
7323         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
7324         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
7325                 head -n1)
7326         echo "Smallest OST: $SMALLESTOST"
7327         [[ $SMALLESTOST -lt 10240 ]] &&
7328                 skip "too small OSTSIZE, useless to run large O_DIRECT test"
7329
7330         trap cleanup_test_78 EXIT
7331
7332         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
7333                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
7334
7335         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
7336         echo "File size: $F78SIZE"
7337         $LFS setstripe -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
7338         for i in $(seq 1 $NSEQ); do
7339                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
7340                 echo directIO rdwr round $i of $NSEQ
7341                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
7342         done
7343
7344         cleanup_test_78
7345 }
7346 run_test 78 "handle large O_DIRECT writes correctly ============"
7347
7348 test_79() { # bug 12743
7349         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7350
7351         wait_delete_completed
7352
7353         BKTOTAL=$(calc_osc_kbytes kbytestotal)
7354         BKFREE=$(calc_osc_kbytes kbytesfree)
7355         BKAVAIL=$(calc_osc_kbytes kbytesavail)
7356
7357         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
7358         DFTOTAL=`echo $STRING | cut -d, -f1`
7359         DFUSED=`echo $STRING  | cut -d, -f2`
7360         DFAVAIL=`echo $STRING | cut -d, -f3`
7361         DFFREE=$(($DFTOTAL - $DFUSED))
7362
7363         ALLOWANCE=$((64 * $OSTCOUNT))
7364
7365         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
7366            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
7367                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
7368         fi
7369         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
7370            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
7371                 error "df free($DFFREE) mismatch OST free($BKFREE)"
7372         fi
7373         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
7374            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
7375                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
7376         fi
7377 }
7378 run_test 79 "df report consistency check ======================="
7379
7380 test_80() { # bug 10718
7381         remote_ost_nodsh && skip "remote OST with nodsh"
7382         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7383
7384         # relax strong synchronous semantics for slow backends like ZFS
7385         local soc="obdfilter.*.sync_on_lock_cancel"
7386         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
7387         local hosts=
7388         if [ "$soc_old" != "never" ] &&
7389                 [ "$(facet_fstype ost1)" != "ldiskfs" ]; then
7390                         hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
7391                                 facet_active_host $host; done | sort -u)
7392                         do_nodes $hosts lctl set_param $soc=never
7393         fi
7394
7395         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
7396         sync; sleep 1; sync
7397         local BEFORE=`date +%s`
7398         cancel_lru_locks osc
7399         local AFTER=`date +%s`
7400         local DIFF=$((AFTER-BEFORE))
7401         if [ $DIFF -gt 1 ] ; then
7402                 error "elapsed for 1M@1T = $DIFF"
7403         fi
7404
7405         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
7406
7407         rm -f $DIR/$tfile
7408 }
7409 run_test 80 "Page eviction is equally fast at high offsets too  ===="
7410
7411 test_81a() { # LU-456
7412         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7413         remote_ost_nodsh && skip "remote OST with nodsh"
7414
7415         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
7416         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
7417         do_facet ost1 lctl set_param fail_loc=0x80000228
7418
7419         # write should trigger a retry and success
7420         $LFS setstripe -i 0 -c 1 $DIR/$tfile
7421         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7422         RC=$?
7423         if [ $RC -ne 0 ] ; then
7424                 error "write should success, but failed for $RC"
7425         fi
7426 }
7427 run_test 81a "OST should retry write when get -ENOSPC ==============="
7428
7429 test_81b() { # LU-456
7430         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7431         remote_ost_nodsh && skip "remote OST with nodsh"
7432
7433         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
7434         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
7435         do_facet ost1 lctl set_param fail_loc=0x228
7436
7437         # write should retry several times and return -ENOSPC finally
7438         $LFS setstripe -i 0 -c 1 $DIR/$tfile
7439         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7440         RC=$?
7441         ENOSPC=28
7442         if [ $RC -ne $ENOSPC ] ; then
7443                 error "dd should fail for -ENOSPC, but succeed."
7444         fi
7445 }
7446 run_test 81b "OST should return -ENOSPC when retry still fails ======="
7447
7448 test_82() { # LU-1031
7449         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
7450         local gid1=14091995
7451         local gid2=16022000
7452
7453         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
7454         local MULTIPID1=$!
7455         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
7456         local MULTIPID2=$!
7457         kill -USR1 $MULTIPID2
7458         sleep 2
7459         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
7460                 error "First grouplock does not block second one"
7461         else
7462                 echo "Second grouplock blocks first one"
7463         fi
7464         kill -USR1 $MULTIPID1
7465         wait $MULTIPID1
7466         wait $MULTIPID2
7467 }
7468 run_test 82 "Basic grouplock test"
7469
7470 test_99() {
7471         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs"
7472
7473         test_mkdir $DIR/$tdir.cvsroot
7474         chown $RUNAS_ID $DIR/$tdir.cvsroot
7475
7476         cd $TMP
7477         $RUNAS cvs -d $DIR/$tdir.cvsroot init || error "cvs init failed"
7478
7479         cd /etc/init.d
7480         # some versions of cvs import exit(1) when asked to import links or
7481         # files they can't read.  ignore those files.
7482         local toignore=$(find . -type l -printf '-I %f\n' -o \
7483                          ! -perm /4 -printf '-I %f\n')
7484         $RUNAS cvs -d $DIR/$tdir.cvsroot import -m "nomesg" $toignore \
7485                 $tdir.reposname vtag rtag
7486
7487         cd $DIR
7488         test_mkdir $DIR/$tdir.reposname
7489         chown $RUNAS_ID $DIR/$tdir.reposname
7490         $RUNAS cvs -d $DIR/$tdir.cvsroot co $tdir.reposname
7491
7492         cd $DIR/$tdir.reposname
7493         $RUNAS touch foo99
7494         $RUNAS cvs add -m 'addmsg' foo99
7495         $RUNAS cvs update
7496         $RUNAS cvs commit -m 'nomsg' foo99
7497         rm -fr $DIR/$tdir.cvsroot
7498 }
7499 run_test 99 "cvs strange file/directory operations"
7500
7501 test_100() {
7502         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7503         [[ "$NETTYPE" =~ tcp ]] ||
7504                 skip_env "TCP secure port test, not useful for NETTYPE=$NETTYPE"
7505         remote_ost_nodsh && skip "remote OST with nodsh"
7506         remote_mds_nodsh && skip "remote MDS with nodsh"
7507         remote_servers ||
7508                 skip "useless for local single node setup"
7509
7510         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
7511                 [ "$PROT" != "tcp" ] && continue
7512                 RPORT=$(echo $REMOTE | cut -d: -f2)
7513                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
7514
7515                 rc=0
7516                 LPORT=`echo $LOCAL | cut -d: -f2`
7517                 if [ $LPORT -ge 1024 ]; then
7518                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
7519                         netstat -tna
7520                         error_exit "local: $LPORT > 1024, remote: $RPORT"
7521                 fi
7522         done
7523         [ "$rc" = 0 ] || error_exit "privileged port not found" )
7524 }
7525 run_test 100 "check local port using privileged port ==========="
7526
7527 function get_named_value()
7528 {
7529     local tag
7530
7531     tag=$1
7532     while read ;do
7533         line=$REPLY
7534         case $line in
7535         $tag*)
7536             echo $line | sed "s/^$tag[ ]*//"
7537             break
7538             ;;
7539         esac
7540     done
7541 }
7542
7543 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
7544                    awk '/^max_cached_mb/ { print $2 }')
7545
7546 cleanup_101a() {
7547         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
7548         trap 0
7549 }
7550
7551 test_101a() {
7552         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7553         [ $MDSCOUNT -ge 2 ] && skip_env "needs < 2 MDTs" #LU-4322
7554
7555         local s
7556         local discard
7557         local nreads=10000
7558         local cache_limit=32
7559
7560         $LCTL set_param -n osc.*-osc*.rpc_stats 0
7561         trap cleanup_101a EXIT
7562         $LCTL set_param -n llite.*.read_ahead_stats 0
7563         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
7564
7565         #
7566         # randomly read 10000 of 64K chunks from file 3x 32MB in size
7567         #
7568         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
7569         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
7570
7571         discard=0
7572         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
7573                 get_named_value 'read but discarded' | cut -d" " -f1); do
7574                         discard=$(($discard + $s))
7575         done
7576         cleanup_101a
7577
7578         if [[ $(($discard * 10)) -gt $nreads ]]; then
7579                 $LCTL get_param osc.*-osc*.rpc_stats
7580                 $LCTL get_param llite.*.read_ahead_stats
7581                 error "too many ($discard) discarded pages"
7582         fi
7583         rm -f $DIR/$tfile || true
7584 }
7585 run_test 101a "check read-ahead for random reads"
7586
7587 setup_test101bc() {
7588         test_mkdir $DIR/$tdir
7589         local ssize=$1
7590         local FILE_LENGTH=$2
7591         STRIPE_OFFSET=0
7592
7593         local FILE_SIZE_MB=$((FILE_LENGTH / ssize))
7594
7595         local list=$(comma_list $(osts_nodes))
7596         set_osd_param $list '' read_cache_enable 0
7597         set_osd_param $list '' writethrough_cache_enable 0
7598
7599         trap cleanup_test101bc EXIT
7600         # prepare the read-ahead file
7601         $LFS setstripe -S $ssize -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
7602
7603         dd if=/dev/zero of=$DIR/$tfile bs=$ssize \
7604                                 count=$FILE_SIZE_MB 2> /dev/null
7605
7606 }
7607
7608 cleanup_test101bc() {
7609         trap 0
7610         rm -rf $DIR/$tdir
7611         rm -f $DIR/$tfile
7612
7613         local list=$(comma_list $(osts_nodes))
7614         set_osd_param $list '' read_cache_enable 1
7615         set_osd_param $list '' writethrough_cache_enable 1
7616 }
7617
7618 calc_total() {
7619         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
7620 }
7621
7622 ra_check_101() {
7623         local READ_SIZE=$1
7624         local STRIPE_SIZE=$2
7625         local FILE_LENGTH=$3
7626         local RA_INC=1048576
7627         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
7628         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
7629                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
7630         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
7631                         get_named_value 'read but discarded' |
7632                         cut -d" " -f1 | calc_total)
7633         if [[ $DISCARD -gt $discard_limit ]]; then
7634                 $LCTL get_param llite.*.read_ahead_stats
7635                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
7636         else
7637                 echo "Read-ahead success for size ${READ_SIZE}"
7638         fi
7639 }
7640
7641 test_101b() {
7642         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7643         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
7644
7645         local STRIPE_SIZE=1048576
7646         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
7647
7648         if [ $SLOW == "yes" ]; then
7649                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
7650         else
7651                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
7652         fi
7653
7654         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
7655
7656         # prepare the read-ahead file
7657         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
7658         cancel_lru_locks osc
7659         for BIDX in 2 4 8 16 32 64 128 256
7660         do
7661                 local BSIZE=$((BIDX*4096))
7662                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
7663                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
7664                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
7665                 $LCTL set_param -n llite.*.read_ahead_stats 0
7666                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
7667                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
7668                 cancel_lru_locks osc
7669                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
7670         done
7671         cleanup_test101bc
7672         true
7673 }
7674 run_test 101b "check stride-io mode read-ahead ================="
7675
7676 test_101c() {
7677         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7678
7679         local STRIPE_SIZE=1048576
7680         local FILE_LENGTH=$((STRIPE_SIZE*100))
7681         local nreads=10000
7682         local osc_rpc_stats
7683
7684         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
7685
7686         cancel_lru_locks osc
7687         $LCTL set_param osc.*.rpc_stats 0
7688         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
7689         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
7690                 local stats=$($LCTL get_param -n $osc_rpc_stats)
7691                 local lines=$(echo "$stats" | awk 'END {print NR;}')
7692                 local size
7693
7694                 if [ $lines -le 20 ]; then
7695                         continue
7696                 fi
7697                 for size in 1 2 4 8; do
7698                         local rpc=$(echo "$stats" |
7699                                     awk '($1 == "'$size':") {print $2; exit; }')
7700                         [ $rpc != 0 ] &&
7701                                 error "Small $((size*4))k read IO $rpc !"
7702                 done
7703                 echo "$osc_rpc_stats check passed!"
7704         done
7705         cleanup_test101bc
7706         true
7707 }
7708 run_test 101c "check stripe_size aligned read-ahead ================="
7709
7710 set_read_ahead() {
7711         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
7712         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
7713 }
7714
7715 test_101d() {
7716         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7717
7718         local file=$DIR/$tfile
7719         local sz_MB=${FILESIZE_101d:-500}
7720         local ra_MB=${READAHEAD_MB:-40}
7721
7722         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
7723         [ $free_MB -lt $sz_MB ] &&
7724                 skip "Need free space ${sz_MB}M, have ${free_MB}M"
7725
7726         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
7727         $LFS setstripe -c -1 $file || error "setstripe failed"
7728
7729         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
7730         echo Cancel LRU locks on lustre client to flush the client cache
7731         cancel_lru_locks osc
7732
7733         echo Disable read-ahead
7734         local old_READAHEAD=$(set_read_ahead 0)
7735
7736         echo Reading the test file $file with read-ahead disabled
7737         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
7738
7739         echo Cancel LRU locks on lustre client to flush the client cache
7740         cancel_lru_locks osc
7741         echo Enable read-ahead with ${ra_MB}MB
7742         set_read_ahead $ra_MB
7743
7744         echo Reading the test file $file with read-ahead enabled
7745         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
7746
7747         echo "read-ahead disabled time read $raOFF"
7748         echo "read-ahead enabled  time read $raON"
7749
7750         set_read_ahead $old_READAHEAD
7751         rm -f $file
7752         wait_delete_completed
7753
7754         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
7755                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
7756 }
7757 run_test 101d "file read with and without read-ahead enabled"
7758
7759 test_101e() {
7760         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7761
7762         local file=$DIR/$tfile
7763         local size_KB=500  #KB
7764         local count=100
7765         local bsize=1024
7766
7767         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
7768         local need_KB=$((count * size_KB))
7769         [[ $free_KB -le $need_KB ]] &&
7770                 skip_env "Need free space $need_KB, have $free_KB"
7771
7772         echo "Creating $count ${size_KB}K test files"
7773         for ((i = 0; i < $count; i++)); do
7774                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
7775         done
7776
7777         echo "Cancel LRU locks on lustre client to flush the client cache"
7778         cancel_lru_locks $OSC
7779
7780         echo "Reset readahead stats"
7781         $LCTL set_param -n llite.*.read_ahead_stats 0
7782
7783         for ((i = 0; i < $count; i++)); do
7784                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
7785         done
7786
7787         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
7788                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
7789
7790         for ((i = 0; i < $count; i++)); do
7791                 rm -rf $file.$i 2>/dev/null
7792         done
7793
7794         #10000 means 20% reads are missing in readahead
7795         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
7796 }
7797 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
7798
7799 test_101f() {
7800         which iozone || skip_env "no iozone installed"
7801
7802         local old_debug=$($LCTL get_param debug)
7803         old_debug=${old_debug#*=}
7804         $LCTL set_param debug="reada mmap"
7805
7806         # create a test file
7807         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
7808
7809         echo Cancel LRU locks on lustre client to flush the client cache
7810         cancel_lru_locks osc
7811
7812         echo Reset readahead stats
7813         $LCTL set_param -n llite.*.read_ahead_stats 0
7814
7815         echo mmap read the file with small block size
7816         iozone -i 1 -u 1 -l 1 -+n -r 32k -s 128m -B -f $DIR/$tfile \
7817                 > /dev/null 2>&1
7818
7819         echo checking missing pages
7820         $LCTL get_param llite.*.read_ahead_stats
7821         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
7822                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
7823
7824         $LCTL set_param debug="$old_debug"
7825         [ $miss -lt 3 ] || error "misses too much pages ('$miss')!"
7826         rm -f $DIR/$tfile
7827 }
7828 run_test 101f "check mmap read performance"
7829
7830 test_101g_brw_size_test() {
7831         local mb=$1
7832         local pages=$((mb * 1048576 / PAGE_SIZE))
7833         local file=$DIR/$tfile
7834
7835         $LCTL set_param osc.*.max_pages_per_rpc=${mb}M ||
7836                 { error "unable to set max_pages_per_rpc=${mb}M"; return 1; }
7837         for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
7838                 [ $mp -ne $pages ] && error "max_pages_per_rpc $mp != $pages" &&
7839                         return 2
7840         done
7841
7842         stack_trap "rm -f $file" EXIT
7843         $LCTL set_param -n osc.*.rpc_stats=0
7844
7845         # 10 RPCs should be enough for the test
7846         local count=10
7847         dd if=/dev/zero of=$file bs=${mb}M count=$count ||
7848                 { error "dd write ${mb} MB blocks failed"; return 3; }
7849         cancel_lru_locks osc
7850         dd of=/dev/null if=$file bs=${mb}M count=$count ||
7851                 { error "dd write ${mb} MB blocks failed"; return 4; }
7852
7853         # calculate number of full-sized read and write RPCs
7854         rpcs=($($LCTL get_param -n 'osc.*.rpc_stats' |
7855                 sed -n '/pages per rpc/,/^$/p' |
7856                 awk '/'$pages':/ { reads += $2; writes += $6 }; \
7857                 END { print reads,writes }'))
7858         [ ${rpcs[0]} -ne $count ] && error "${rpcs[0]} != $count read RPCs" &&
7859                 return 5
7860         [ ${rpcs[1]} -ne $count ] && error "${rpcs[1]} != $count write RPCs" &&
7861                 return 6
7862
7863         return 0
7864 }
7865
7866 test_101g() {
7867         remote_ost_nodsh && skip "remote OST with nodsh"
7868
7869         local rpcs
7870         local osts=$(get_facets OST)
7871         local list=$(comma_list $(osts_nodes))
7872         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
7873         local brw_size="obdfilter.*.brw_size"
7874         local ostver=$(lustre_version_code ost1)
7875         local cliver=$(lustre_version_code client)
7876
7877         $LFS setstripe -i 0 -c 1 $DIR/$tfile
7878
7879         local orig_mb=$(do_facet ost1 $LCTL get_param -n $brw_size | head -n 1)
7880         if [ $ostver -ge $(version_code 2.8.52) -o \
7881              \( $ostver -ge $(version_code 2.7.17) -a \
7882                 $ostver -lt $(version_code 2.7.50) \) ] &&
7883            [ $cliver -ge $(version_code 2.8.52) -o \
7884              \( $cliver -ge $(version_code 2.7.17) -a \
7885                 $cliver -lt $(version_code 2.7.50) \) ]; then
7886                 [ $ostver -ge $(version_code 2.9.52) ] && suffix="M"
7887                 if [[ $orig_mb -lt 16 ]]; then
7888                         save_lustre_params $osts "$brw_size" > $p
7889                         do_nodes $list $LCTL set_param -n $brw_size=16$suffix ||
7890                                 error "set 16MB RPC size failed"
7891
7892                         echo "remount client to enable new RPC size"
7893                         remount_client $MOUNT || error "remount_client failed"
7894                 fi
7895
7896                 test_101g_brw_size_test 16 || error "16MB RPC test failed"
7897                 # should be able to set brw_size=12, but no rpc_stats for that
7898                 test_101g_brw_size_test 8 || error "8MB RPC test failed"
7899         fi
7900
7901         test_101g_brw_size_test 4 || error "4MB RPC test failed"
7902
7903         if [[ $orig_mb -lt 16 ]]; then
7904                 restore_lustre_params < $p
7905                 remount_client $MOUNT || error "remount_client restore failed"
7906         fi
7907
7908         rm -f $p $DIR/$tfile
7909 }
7910 run_test 101g "Big bulk(4/16 MiB) readahead"
7911
7912 setup_test102() {
7913         test_mkdir $DIR/$tdir
7914         chown $RUNAS_ID $DIR/$tdir
7915         STRIPE_SIZE=65536
7916         STRIPE_OFFSET=1
7917         STRIPE_COUNT=$OSTCOUNT
7918         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
7919
7920         trap cleanup_test102 EXIT
7921         cd $DIR
7922         $1 $LFS setstripe -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
7923         cd $DIR/$tdir
7924         for num in 1 2 3 4; do
7925                 for count in $(seq 1 $STRIPE_COUNT); do
7926                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
7927                                 local size=`expr $STRIPE_SIZE \* $num`
7928                                 local file=file"$num-$idx-$count"
7929                                 $1 $LFS setstripe -S $size -i $idx -c $count $file
7930                         done
7931                 done
7932         done
7933
7934         cd $DIR
7935         $1 tar cf $TMP/f102.tar $tdir --xattrs
7936 }
7937
7938 cleanup_test102() {
7939         trap 0
7940         rm -f $TMP/f102.tar
7941         rm -rf $DIR/d0.sanity/d102
7942 }
7943
7944 test_102a() {
7945         [ "$UID" != 0 ] && skip "must run as root"
7946         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
7947                 skip_env "must have user_xattr"
7948
7949         [ -z "$(which setfattr 2>/dev/null)" ] &&
7950                 skip_env "could not find setfattr"
7951
7952         local testfile=$DIR/$tfile
7953
7954         touch $testfile
7955         echo "set/get xattr..."
7956         setfattr -n trusted.name1 -v value1 $testfile ||
7957                 error "setfattr -n trusted.name1=value1 $testfile failed"
7958         getfattr -n trusted.name1 $testfile 2> /dev/null |
7959           grep "trusted.name1=.value1" ||
7960                 error "$testfile missing trusted.name1=value1"
7961
7962         setfattr -n user.author1 -v author1 $testfile ||
7963                 error "setfattr -n user.author1=author1 $testfile failed"
7964         getfattr -n user.author1 $testfile 2> /dev/null |
7965           grep "user.author1=.author1" ||
7966                 error "$testfile missing trusted.author1=author1"
7967
7968         echo "listxattr..."
7969         setfattr -n trusted.name2 -v value2 $testfile ||
7970                 error "$testfile unable to set trusted.name2"
7971         setfattr -n trusted.name3 -v value3 $testfile ||
7972                 error "$testfile unable to set trusted.name3"
7973         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
7974             grep "trusted.name" | wc -l) -eq 3 ] ||
7975                 error "$testfile missing 3 trusted.name xattrs"
7976
7977         setfattr -n user.author2 -v author2 $testfile ||
7978                 error "$testfile unable to set user.author2"
7979         setfattr -n user.author3 -v author3 $testfile ||
7980                 error "$testfile unable to set user.author3"
7981         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
7982             grep "user.author" | wc -l) -eq 3 ] ||
7983                 error "$testfile missing 3 user.author xattrs"
7984
7985         echo "remove xattr..."
7986         setfattr -x trusted.name1 $testfile ||
7987                 error "$testfile error deleting trusted.name1"
7988         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
7989                 error "$testfile did not delete trusted.name1 xattr"
7990
7991         setfattr -x user.author1 $testfile ||
7992                 error "$testfile error deleting user.author1"
7993         echo "set lustre special xattr ..."
7994         $LFS setstripe -c1 $testfile
7995         local lovea=$(getfattr -n "trusted.lov" -e hex $testfile |
7996                 awk -F "=" '/trusted.lov/ { print $2 }' )
7997         setfattr -n "trusted.lov" -v $lovea $testfile ||
7998                 error "$testfile doesn't ignore setting trusted.lov again"
7999         setfattr -n "trusted.lov" -v "invalid_value" $testfile &&
8000                 error "$testfile allow setting invalid trusted.lov"
8001         rm -f $testfile
8002 }
8003 run_test 102a "user xattr test =================================="
8004
8005 test_102b() {
8006         [ -z "$(which setfattr 2>/dev/null)" ] &&
8007                 skip_env "could not find setfattr"
8008         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8009
8010         # b10930: get/set/list trusted.lov xattr
8011         echo "get/set/list trusted.lov xattr ..."
8012         local testfile=$DIR/$tfile
8013         $LFS setstripe -S 65536 -i 1 -c $OSTCOUNT $testfile ||
8014                 error "setstripe failed"
8015         local STRIPECOUNT=$($LFS getstripe -c $testfile) ||
8016                 error "getstripe failed"
8017         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
8018                 error "can't get trusted.lov from $testfile"
8019
8020         local testfile2=${testfile}2
8021         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
8022                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
8023
8024         $MCREATE $testfile2
8025         setfattr -n trusted.lov -v $value $testfile2
8026         local stripe_size=$($LFS getstripe -S $testfile2)
8027         local stripe_count=$($LFS getstripe -c $testfile2)
8028         [[ $stripe_size -eq 65536 ]] ||
8029                 error "stripe size $stripe_size != 65536"
8030         [[ $stripe_count -eq $STRIPECOUNT ]] ||
8031                 error "stripe count $stripe_count != $STRIPECOUNT"
8032         rm -f $DIR/$tfile
8033 }
8034 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
8035
8036 test_102c() {
8037         [ -z "$(which setfattr 2>/dev/null)" ] &&
8038                 skip_env "could not find setfattr"
8039         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8040
8041         # b10930: get/set/list lustre.lov xattr
8042         echo "get/set/list lustre.lov xattr ..."
8043         test_mkdir $DIR/$tdir
8044         chown $RUNAS_ID $DIR/$tdir
8045         local testfile=$DIR/$tdir/$tfile
8046         $RUNAS $LFS setstripe -S 65536 -i 1 -c $OSTCOUNT $testfile ||
8047                 error "setstripe failed"
8048         local STRIPECOUNT=$($RUNAS $LFS getstripe -c $testfile) ||
8049                 error "getstripe failed"
8050         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
8051         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
8052
8053         local testfile2=${testfile}2
8054         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
8055                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
8056
8057         $RUNAS $MCREATE $testfile2
8058         $RUNAS setfattr -n lustre.lov -v $value $testfile2
8059         local stripe_size=$($RUNAS $LFS getstripe -S $testfile2)
8060         local stripe_count=$($RUNAS $LFS getstripe -c $testfile2)
8061         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
8062         [ $stripe_count -eq $STRIPECOUNT ] ||
8063                 error "stripe count $stripe_count != $STRIPECOUNT"
8064 }
8065 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
8066
8067 compare_stripe_info1() {
8068         local stripe_index_all_zero=true
8069
8070         for num in 1 2 3 4; do
8071                 for count in $(seq 1 $STRIPE_COUNT); do
8072                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
8073                                 local size=$((STRIPE_SIZE * num))
8074                                 local file=file"$num-$offset-$count"
8075                                 stripe_size=$($LFS getstripe -S $PWD/$file)
8076                                 [[ $stripe_size -ne $size ]] &&
8077                                     error "$file: size $stripe_size != $size"
8078                                 stripe_count=$($LFS getstripe -c $PWD/$file)
8079                                 # allow fewer stripes to be created, ORI-601
8080                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
8081                                     error "$file: count $stripe_count != $count"
8082                                 stripe_index=$($LFS getstripe -i $PWD/$file)
8083                                 [[ $stripe_index -ne 0 ]] &&
8084                                         stripe_index_all_zero=false
8085                         done
8086                 done
8087         done
8088         $stripe_index_all_zero &&
8089                 error "all files are being extracted starting from OST index 0"
8090         return 0
8091 }
8092
8093 have_xattrs_include() {
8094         tar --help | grep -q xattrs-include &&
8095                 echo --xattrs-include="lustre.*"
8096 }
8097
8098 test_102d() {
8099         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8100         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8101
8102         XINC=$(have_xattrs_include)
8103         setup_test102
8104         tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
8105         cd $DIR/$tdir/$tdir
8106         compare_stripe_info1
8107 }
8108 run_test 102d "tar restore stripe info from tarfile,not keep osts"
8109
8110 test_102f() {
8111         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8112         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8113
8114         XINC=$(have_xattrs_include)
8115         setup_test102
8116         test_mkdir $DIR/$tdir.restore
8117         cd $DIR
8118         tar cf - --xattrs $tdir | tar xf - \
8119                 -C $DIR/$tdir.restore --xattrs $XINC
8120         cd $DIR/$tdir.restore/$tdir
8121         compare_stripe_info1
8122 }
8123 run_test 102f "tar copy files, not keep osts"
8124
8125 grow_xattr() {
8126         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
8127                 skip "must have user_xattr"
8128         [ -z "$(which setfattr 2>/dev/null)" ] &&
8129                 skip_env "could not find setfattr"
8130         [ -z "$(which getfattr 2>/dev/null)" ] &&
8131                 skip_env "could not find getfattr"
8132
8133         local xsize=${1:-1024}  # in bytes
8134         local file=$DIR/$tfile
8135         local value="$(generate_string $xsize)"
8136         local xbig=trusted.big
8137
8138         touch $file
8139         log "save $xbig on $file"
8140         setfattr -n $xbig -v $value $file ||
8141                 error "saving $xbig on $file failed"
8142
8143         local orig=$(get_xattr_value $xbig $file)
8144         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
8145
8146         local xsml=trusted.sml
8147         log "save $xsml on $file"
8148         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
8149
8150         local new=$(get_xattr_value $xbig $file)
8151         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
8152
8153         log "grow $xsml on $file"
8154         setfattr -n $xsml -v "$value" $file ||
8155                 error "growing $xsml on $file failed"
8156
8157         new=$(get_xattr_value $xbig $file)
8158         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
8159         log "$xbig still valid after growing $xsml"
8160
8161         rm -f $file
8162 }
8163
8164 test_102h() { # bug 15777
8165         grow_xattr 1024
8166 }
8167 run_test 102h "grow xattr from inside inode to external block"
8168
8169 test_102ha() {
8170         large_xattr_enabled || skip_env "ea_inode feature disabled"
8171
8172         grow_xattr $(max_xattr_size)
8173 }
8174 run_test 102ha "grow xattr from inside inode to external inode"
8175
8176 test_102i() { # bug 17038
8177         [ -z "$(which getfattr 2>/dev/null)" ] &&
8178                 skip "could not find getfattr"
8179
8180         touch $DIR/$tfile
8181         ln -s $DIR/$tfile $DIR/${tfile}link
8182         getfattr -n trusted.lov $DIR/$tfile ||
8183                 error "lgetxattr on $DIR/$tfile failed"
8184         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
8185                 grep -i "no such attr" ||
8186                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
8187         rm -f $DIR/$tfile $DIR/${tfile}link
8188 }
8189 run_test 102i "lgetxattr test on symbolic link ============"
8190
8191 test_102j() {
8192         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8193         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8194
8195         XINC=$(have_xattrs_include)
8196         setup_test102 "$RUNAS"
8197         chown $RUNAS_ID $DIR/$tdir
8198         $RUNAS tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
8199         cd $DIR/$tdir/$tdir
8200         compare_stripe_info1 "$RUNAS"
8201 }
8202 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
8203
8204 test_102k() {
8205         [ -z "$(which setfattr 2>/dev/null)" ] &&
8206                 skip "could not find setfattr"
8207
8208         touch $DIR/$tfile
8209         # b22187 just check that does not crash for regular file.
8210         setfattr -n trusted.lov $DIR/$tfile
8211         # b22187 'setfattr -n trusted.lov' should remove LOV EA for directories
8212         local test_kdir=$DIR/$tdir
8213         test_mkdir $test_kdir
8214         local default_size=$($LFS getstripe -S $test_kdir)
8215         local default_count=$($LFS getstripe -c $test_kdir)
8216         local default_offset=$($LFS getstripe -i $test_kdir)
8217         $LFS setstripe -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
8218                 error 'dir setstripe failed'
8219         setfattr -n trusted.lov $test_kdir
8220         local stripe_size=$($LFS getstripe -S $test_kdir)
8221         local stripe_count=$($LFS getstripe -c $test_kdir)
8222         local stripe_offset=$($LFS getstripe -i $test_kdir)
8223         [ $stripe_size -eq $default_size ] ||
8224                 error "stripe size $stripe_size != $default_size"
8225         [ $stripe_count -eq $default_count ] ||
8226                 error "stripe count $stripe_count != $default_count"
8227         [ $stripe_offset -eq $default_offset ] ||
8228                 error "stripe offset $stripe_offset != $default_offset"
8229         rm -rf $DIR/$tfile $test_kdir
8230 }
8231 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
8232
8233 test_102l() {
8234         [ -z "$(which getfattr 2>/dev/null)" ] &&
8235                 skip "could not find getfattr"
8236
8237         # LU-532 trusted. xattr is invisible to non-root
8238         local testfile=$DIR/$tfile
8239
8240         touch $testfile
8241
8242         echo "listxattr as user..."
8243         chown $RUNAS_ID $testfile
8244         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
8245             grep -q "trusted" &&
8246                 error "$testfile trusted xattrs are user visible"
8247
8248         return 0;
8249 }
8250 run_test 102l "listxattr size test =================================="
8251
8252 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
8253         local path=$DIR/$tfile
8254         touch $path
8255
8256         listxattr_size_check $path || error "listattr_size_check $path failed"
8257 }
8258 run_test 102m "Ensure listxattr fails on small bufffer ========"
8259
8260 cleanup_test102
8261
8262 getxattr() { # getxattr path name
8263         # Return the base64 encoding of the value of xattr name on path.
8264         local path=$1
8265         local name=$2
8266
8267         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
8268         # file: $path
8269         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
8270         #
8271         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
8272
8273         getfattr --absolute-names --encoding=base64 --name=$name $path |
8274                 awk -F= -v name=$name '$1 == name {
8275                         print substr($0, index($0, "=") + 1);
8276         }'
8277 }
8278
8279 test_102n() { # LU-4101 mdt: protect internal xattrs
8280         [ -z "$(which setfattr 2>/dev/null)" ] &&
8281                 skip "could not find setfattr"
8282         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.50) ]
8283         then
8284                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
8285         fi
8286
8287         local file0=$DIR/$tfile.0
8288         local file1=$DIR/$tfile.1
8289         local xattr0=$TMP/$tfile.0
8290         local xattr1=$TMP/$tfile.1
8291         local namelist="lov lma lmv link fid version som hsm"
8292         local name
8293         local value
8294
8295         rm -rf $file0 $file1 $xattr0 $xattr1
8296         touch $file0 $file1
8297
8298         # Get 'before' xattrs of $file1.
8299         getfattr --absolute-names --dump --match=- $file1 > $xattr0
8300
8301         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
8302                 namelist+=" lfsck_namespace"
8303         for name in $namelist; do
8304                 # Try to copy xattr from $file0 to $file1.
8305                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
8306
8307                 setfattr --name=trusted.$name --value="$value" $file1 ||
8308                         error "setxattr 'trusted.$name' failed"
8309
8310                 # Try to set a garbage xattr.
8311                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
8312
8313                 if [[ x$name == "xlov" ]]; then
8314                         setfattr --name=trusted.lov --value="$value" $file1 &&
8315                         error "setxattr invalid 'trusted.lov' success"
8316                 else
8317                         setfattr --name=trusted.$name --value="$value" $file1 ||
8318                                 error "setxattr invalid 'trusted.$name' failed"
8319                 fi
8320
8321                 # Try to remove the xattr from $file1. We don't care if this
8322                 # appears to succeed or fail, we just don't want there to be
8323                 # any changes or crashes.
8324                 setfattr --remove=$trusted.$name $file1 2> /dev/null
8325         done
8326
8327         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.6.50) ]
8328         then
8329                 name="lfsck_ns"
8330                 # Try to copy xattr from $file0 to $file1.
8331                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
8332
8333                 setfattr --name=trusted.$name --value="$value" $file1 ||
8334                         error "setxattr 'trusted.$name' failed"
8335
8336                 # Try to set a garbage xattr.
8337                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
8338
8339                 setfattr --name=trusted.$name --value="$value" $file1 ||
8340                         error "setxattr 'trusted.$name' failed"
8341
8342                 # Try to remove the xattr from $file1. We don't care if this
8343                 # appears to succeed or fail, we just don't want there to be
8344                 # any changes or crashes.
8345                 setfattr --remove=$trusted.$name $file1 2> /dev/null
8346         fi
8347
8348         # Get 'after' xattrs of file1.
8349         getfattr --absolute-names --dump --match=- $file1 > $xattr1
8350
8351         if ! diff $xattr0 $xattr1; then
8352                 error "before and after xattrs of '$file1' differ"
8353         fi
8354
8355         rm -rf $file0 $file1 $xattr0 $xattr1
8356
8357         return 0
8358 }
8359 run_test 102n "silently ignore setxattr on internal trusted xattrs"
8360
8361 test_102p() { # LU-4703 setxattr did not check ownership
8362         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.56) ] &&
8363                 skip "MDS needs to be at least 2.5.56"
8364
8365         local testfile=$DIR/$tfile
8366
8367         touch $testfile
8368
8369         echo "setfacl as user..."
8370         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
8371         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
8372
8373         echo "setfattr as user..."
8374         setfacl -m "u:$RUNAS_ID:---" $testfile
8375         $RUNAS setfattr -x system.posix_acl_access $testfile
8376         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
8377 }
8378 run_test 102p "check setxattr(2) correctly fails without permission"
8379
8380 test_102q() {
8381         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
8382                 skip "MDS needs to be at least 2.6.92"
8383
8384         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
8385 }
8386 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
8387
8388 test_102r() {
8389         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.93) ] &&
8390                 skip "MDS needs to be at least 2.6.93"
8391
8392         touch $DIR/$tfile || error "touch"
8393         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
8394         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
8395         rm $DIR/$tfile || error "rm"
8396
8397         #normal directory
8398         mkdir -p $DIR/$tdir || error "mkdir"
8399         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
8400         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
8401         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
8402                 error "$testfile error deleting user.author1"
8403         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
8404                 grep "user.$(basename $tdir)" &&
8405                 error "$tdir did not delete user.$(basename $tdir)"
8406         rmdir $DIR/$tdir || error "rmdir"
8407
8408         #striped directory
8409         test_mkdir $DIR/$tdir
8410         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
8411         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
8412         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
8413                 error "$testfile error deleting user.author1"
8414         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
8415                 grep "user.$(basename $tdir)" &&
8416                 error "$tdir did not delete user.$(basename $tdir)"
8417         rmdir $DIR/$tdir || error "rm striped dir"
8418 }
8419 run_test 102r "set EAs with empty values"
8420
8421 test_102s() {
8422         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
8423                 skip "MDS needs to be at least 2.11.52"
8424
8425         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
8426
8427         save_lustre_params client "llite.*.xattr_cache" > $save
8428
8429         for cache in 0 1; do
8430                 lctl set_param llite.*.xattr_cache=$cache
8431
8432                 rm -f $DIR/$tfile
8433                 touch $DIR/$tfile || error "touch"
8434                 for prefix in lustre security system trusted user; do
8435                         # Note getxattr() may fail with 'Operation not
8436                         # supported' or 'No such attribute' depending
8437                         # on prefix and cache.
8438                         getfattr -n $prefix.n102s $DIR/$tfile &&
8439                                 error "getxattr '$prefix.n102s' should fail (cache = $cache)"
8440                 done
8441         done
8442
8443         restore_lustre_params < $save
8444 }
8445 run_test 102s "getting nonexistent xattrs should fail"
8446
8447 test_102t() {
8448         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
8449                 skip "MDS needs to be at least 2.11.52"
8450
8451         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
8452
8453         save_lustre_params client "llite.*.xattr_cache" > $save
8454
8455         for cache in 0 1; do
8456                 lctl set_param llite.*.xattr_cache=$cache
8457
8458                 for buf_size in 0 256; do
8459                         rm -f $DIR/$tfile
8460                         touch $DIR/$tfile || error "touch"
8461                         setfattr -n user.multiop $DIR/$tfile
8462                         $MULTIOP $DIR/$tfile oa$buf_size ||
8463                                 error "cannot get zero length xattr value (buf_size = $buf_size)"
8464                 done
8465         done
8466
8467         restore_lustre_params < $save
8468 }
8469 run_test 102t "zero length xattr values handled correctly"
8470
8471 run_acl_subtest()
8472 {
8473     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
8474     return $?
8475 }
8476
8477 test_103a() {
8478         [ "$UID" != 0 ] && skip "must run as root"
8479         $GSS && skip_env "could not run under gss"
8480         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
8481                 skip_env "must have acl enabled"
8482         [ -z "$(which setfacl 2>/dev/null)" ] &&
8483                 skip_env "could not find setfacl"
8484         remote_mds_nodsh && skip "remote MDS with nodsh"
8485
8486         gpasswd -a daemon bin                           # LU-5641
8487         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
8488
8489         declare -a identity_old
8490
8491         for num in $(seq $MDSCOUNT); do
8492                 switch_identity $num true || identity_old[$num]=$?
8493         done
8494
8495         SAVE_UMASK=$(umask)
8496         umask 0022
8497         mkdir -p $DIR/$tdir
8498         cd $DIR/$tdir
8499
8500         echo "performing cp ..."
8501         run_acl_subtest cp || error "run_acl_subtest cp failed"
8502         echo "performing getfacl-noacl..."
8503         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
8504         echo "performing misc..."
8505         run_acl_subtest misc || error  "misc test failed"
8506         echo "performing permissions..."
8507         run_acl_subtest permissions || error "permissions failed"
8508         # LU-1482 mdd: Setting xattr are properly checked with and without ACLs
8509         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.8.55) -o \
8510              \( $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6) -a \
8511              $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.29) \) ]
8512         then
8513                 echo "performing permissions xattr..."
8514                 run_acl_subtest permissions_xattr ||
8515                         error "permissions_xattr failed"
8516         fi
8517         echo "performing setfacl..."
8518         run_acl_subtest setfacl || error  "setfacl test failed"
8519
8520         # inheritance test got from HP
8521         echo "performing inheritance..."
8522         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
8523         chmod +x make-tree || error "chmod +x failed"
8524         run_acl_subtest inheritance || error "inheritance test failed"
8525         rm -f make-tree
8526
8527         echo "LU-974 ignore umask when acl is enabled..."
8528         run_acl_subtest 974 || error "LU-974 umask test failed"
8529         if [ $MDSCOUNT -ge 2 ]; then
8530                 run_acl_subtest 974_remote ||
8531                         error "LU-974 umask test failed under remote dir"
8532         fi
8533
8534         echo "LU-2561 newly created file is same size as directory..."
8535         if [ $(facet_fstype $SINGLEMDS) != "zfs" ]; then
8536                 run_acl_subtest 2561 || error "LU-2561 test failed"
8537         else
8538                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
8539         fi
8540
8541         run_acl_subtest 4924 || error "LU-4924 test failed"
8542
8543         cd $SAVE_PWD
8544         umask $SAVE_UMASK
8545
8546         for num in $(seq $MDSCOUNT); do
8547                 if [ "${identity_old[$num]}" = 1 ]; then
8548                         switch_identity $num false || identity_old[$num]=$?
8549                 fi
8550         done
8551 }
8552 run_test 103a "acl test"
8553
8554 test_103b() {
8555         local U
8556
8557         for U in {0..511}; do
8558                 {
8559                 local O=$(printf "%04o" $U)
8560
8561                 umask $(printf "%04o" $((511 ^ $O)))
8562                 $LFS setstripe -c 1 $DIR/$tfile.s$O
8563                 local S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.s$O))
8564
8565                 (( $S == ($O & 0666) )) ||
8566                         error "lfs setstripe $DIR/$tfile.s$O '$S' != '$O'"
8567
8568                 $LFS setstripe -E16M -c 1 -E1G -S4M $DIR/$tfile.p$O
8569                 S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.p$O))
8570                 (( $S == ($O & 0666) )) ||
8571                         error "lfs setstripe -E $DIR/$tfile.p$O '$S' != '$O'"
8572
8573                 $LFS setstripe -N2 -c 1 $DIR/$tfile.m$O
8574                 S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.m$O))
8575                 (( $S == ($O & 0666) )) ||
8576                         error "lfs setstripe -N2 $DIR/$tfile.m$O '$S' != '$O'"
8577                 rm -f $DIR/$tfile.[smp]$0
8578                 } &
8579         done
8580         wait
8581 }
8582 run_test 103b "umask lfs setstripe"
8583
8584 test_103c() {
8585         mkdir -p $DIR/$tdir
8586         cp -rp $DIR/$tdir $DIR/$tdir.bak
8587
8588         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
8589                 error "$DIR/$tdir shouldn't contain default ACL"
8590         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
8591                 error "$DIR/$tdir.bak shouldn't contain default ACL"
8592         true
8593 }
8594 run_test 103c "'cp -rp' won't set empty acl"
8595
8596 test_104a() {
8597         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8598
8599         touch $DIR/$tfile
8600         lfs df || error "lfs df failed"
8601         lfs df -ih || error "lfs df -ih failed"
8602         lfs df -h $DIR || error "lfs df -h $DIR failed"
8603         lfs df -i $DIR || error "lfs df -i $DIR failed"
8604         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
8605         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
8606
8607         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
8608         lctl --device %$OSC deactivate
8609         lfs df || error "lfs df with deactivated OSC failed"
8610         lctl --device %$OSC activate
8611         # wait the osc back to normal
8612         wait_osc_import_state client ost FULL
8613
8614         lfs df || error "lfs df with reactivated OSC failed"
8615         rm -f $DIR/$tfile
8616 }
8617 run_test 104a "lfs df [-ih] [path] test ========================="
8618
8619 test_104b() {
8620         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8621         [ $RUNAS_ID -eq $UID ] &&
8622                 skip_env "RUNAS_ID = UID = $UID -- skipping"
8623
8624         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
8625                         grep "Permission denied" | wc -l)))
8626         if [ $denied_cnt -ne 0 ]; then
8627                 error "lfs check servers test failed"
8628         fi
8629 }
8630 run_test 104b "$RUNAS lfs check servers test ===================="
8631
8632 test_105a() {
8633         # doesn't work on 2.4 kernels
8634         touch $DIR/$tfile
8635         if $(flock_is_enabled); then
8636                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
8637         else
8638                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
8639         fi
8640         rm -f $DIR/$tfile
8641 }
8642 run_test 105a "flock when mounted without -o flock test ========"
8643
8644 test_105b() {
8645         touch $DIR/$tfile
8646         if $(flock_is_enabled); then
8647                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
8648         else
8649                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
8650         fi
8651         rm -f $DIR/$tfile
8652 }
8653 run_test 105b "fcntl when mounted without -o flock test ========"
8654
8655 test_105c() {
8656         touch $DIR/$tfile
8657         if $(flock_is_enabled); then
8658                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
8659         else
8660                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
8661         fi
8662         rm -f $DIR/$tfile
8663 }
8664 run_test 105c "lockf when mounted without -o flock test"
8665
8666 test_105d() { # bug 15924
8667         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8668
8669         test_mkdir $DIR/$tdir
8670         flock_is_enabled || skip_env "mount w/o flock enabled"
8671         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
8672         $LCTL set_param fail_loc=0x80000315
8673         flocks_test 2 $DIR/$tdir
8674 }
8675 run_test 105d "flock race (should not freeze) ========"
8676
8677 test_105e() { # bug 22660 && 22040
8678         flock_is_enabled || skip_env "mount w/o flock enabled"
8679
8680         touch $DIR/$tfile
8681         flocks_test 3 $DIR/$tfile
8682 }
8683 run_test 105e "Two conflicting flocks from same process"
8684
8685 test_106() { #bug 10921
8686         test_mkdir $DIR/$tdir
8687         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
8688         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
8689 }
8690 run_test 106 "attempt exec of dir followed by chown of that dir"
8691
8692 test_107() {
8693         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8694
8695         CDIR=`pwd`
8696         local file=core
8697
8698         cd $DIR
8699         rm -f $file
8700
8701         local save_pattern=$(sysctl -n kernel.core_pattern)
8702         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
8703         sysctl -w kernel.core_pattern=$file
8704         sysctl -w kernel.core_uses_pid=0
8705
8706         ulimit -c unlimited
8707         sleep 60 &
8708         SLEEPPID=$!
8709
8710         sleep 1
8711
8712         kill -s 11 $SLEEPPID
8713         wait $SLEEPPID
8714         if [ -e $file ]; then
8715                 size=`stat -c%s $file`
8716                 [ $size -eq 0 ] && error "Fail to create core file $file"
8717         else
8718                 error "Fail to create core file $file"
8719         fi
8720         rm -f $file
8721         sysctl -w kernel.core_pattern=$save_pattern
8722         sysctl -w kernel.core_uses_pid=$save_uses_pid
8723         cd $CDIR
8724 }
8725 run_test 107 "Coredump on SIG"
8726
8727 test_110() {
8728         test_mkdir $DIR/$tdir
8729         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255)
8730         $LFS mkdir -c $MDSCOUNT $DIR/$tdir/$(str_repeat 'b' 256) &&
8731                 error "mkdir with 256 char should fail, but did not"
8732         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
8733                 error "create with 255 char failed"
8734         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
8735                 error "create with 256 char should fail, but did not"
8736
8737         ls -l $DIR/$tdir
8738         rm -rf $DIR/$tdir
8739 }
8740 run_test 110 "filename length checking"
8741
8742 #
8743 # Purpose: To verify dynamic thread (OSS) creation.
8744 #
8745 test_115() {
8746         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8747         remote_ost_nodsh && skip "remote OST with nodsh"
8748
8749         # Lustre does not stop service threads once they are started.
8750         # Reset number of running threads to default.
8751         stopall
8752         setupall
8753
8754         local OSTIO_pre
8755         local save_params="$TMP/sanity-$TESTNAME.parameters"
8756
8757         # Get ll_ost_io count before I/O
8758         OSTIO_pre=$(do_facet ost1 \
8759                 "$LCTL get_param ost.OSS.ost_io.threads_started | cut -d= -f2")
8760         # Exit if lustre is not running (ll_ost_io not running).
8761         [ -z "$OSTIO_pre" ] && error "no OSS threads"
8762
8763         echo "Starting with $OSTIO_pre threads"
8764         local thread_max=$((OSTIO_pre * 2))
8765         local rpc_in_flight=$((thread_max * 2))
8766         # Number of I/O Process proposed to be started.
8767         local nfiles
8768         local facets=$(get_facets OST)
8769
8770         save_lustre_params client "osc.*OST*.max_rpcs_in_flight" > $save_params
8771         save_lustre_params $facets "ost.OSS.ost_io.threads_max" >> $save_params
8772
8773         # Set in_flight to $rpc_in_flight
8774         $LCTL set_param osc.*OST*.max_rpcs_in_flight=$rpc_in_flight ||
8775                 error "Failed to set max_rpcs_in_flight to $rpc_in_flight"
8776         nfiles=${rpc_in_flight}
8777         # Set ost thread_max to $thread_max
8778         do_facet ost1 "$LCTL set_param ost.OSS.ost_io.threads_max=$thread_max"
8779
8780         # 5 Minutes should be sufficient for max number of OSS
8781         # threads(thread_max) to be created.
8782         local timeout=300
8783
8784         # Start I/O.
8785         local WTL=${WTL:-"$LUSTRE/tests/write_time_limit"}
8786         test_mkdir $DIR/$tdir
8787         for i in $(seq $nfiles); do
8788                 local file=$DIR/$tdir/${tfile}-$i
8789                 $LFS setstripe -c -1 -i 0 $file
8790                 ($WTL $file $timeout)&
8791         done
8792
8793         # I/O Started - Wait for thread_started to reach thread_max or report
8794         # error if thread_started is more than thread_max.
8795         echo "Waiting for thread_started to reach thread_max"
8796         local thread_started=0
8797         local end_time=$((SECONDS + timeout))
8798
8799         while [ $SECONDS -le $end_time ] ; do
8800                 echo -n "."
8801                 # Get ost i/o thread_started count.
8802                 thread_started=$(do_facet ost1 \
8803                         "$LCTL get_param \
8804                         ost.OSS.ost_io.threads_started | cut -d= -f2")
8805                 # Break out if thread_started is equal/greater than thread_max
8806                 if [[ $thread_started -ge $thread_max ]]; then
8807                         echo ll_ost_io thread_started $thread_started, \
8808                                 equal/greater than thread_max $thread_max
8809                         break
8810                 fi
8811                 sleep 1
8812         done
8813
8814         # Cleanup - We have the numbers, Kill i/o jobs if running.
8815         jobcount=($(jobs -p))
8816         for i in $(seq 0 $((${#jobcount[@]}-1)))
8817         do
8818                 kill -9 ${jobcount[$i]}
8819                 if [ $? -ne 0 ] ; then
8820                         echo Warning: \
8821                         Failed to Kill \'WTL\(I/O\)\' with pid ${jobcount[$i]}
8822                 fi
8823         done
8824
8825         # Cleanup files left by WTL binary.
8826         for i in $(seq $nfiles); do
8827                 local file=$DIR/$tdir/${tfile}-$i
8828                 rm -rf $file
8829                 if [ $? -ne 0 ] ; then
8830                         echo "Warning: Failed to delete file $file"
8831                 fi
8832         done
8833
8834         restore_lustre_params <$save_params
8835         rm -f $save_params || echo "Warning: delete file '$save_params' failed"
8836
8837         # Error out if no new thread has started or Thread started is greater
8838         # than thread max.
8839         if [[ $thread_started -le $OSTIO_pre ||
8840                         $thread_started -gt $thread_max ]]; then
8841                 error "ll_ost_io: thread_started $thread_started" \
8842                       "OSTIO_pre $OSTIO_pre, thread_max $thread_max." \
8843                       "No new thread started or thread started greater " \
8844                       "than thread_max."
8845         fi
8846 }
8847 run_test 115 "verify dynamic thread creation===================="
8848
8849 free_min_max () {
8850         wait_delete_completed
8851         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
8852         echo "OST kbytes available: ${AVAIL[@]}"
8853         MAXV=${AVAIL[0]}
8854         MAXI=0
8855         MINV=${AVAIL[0]}
8856         MINI=0
8857         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
8858                 #echo OST $i: ${AVAIL[i]}kb
8859                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
8860                         MAXV=${AVAIL[i]}
8861                         MAXI=$i
8862                 fi
8863                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
8864                         MINV=${AVAIL[i]}
8865                         MINI=$i
8866                 fi
8867         done
8868         echo "Min free space: OST $MINI: $MINV"
8869         echo "Max free space: OST $MAXI: $MAXV"
8870 }
8871
8872 test_116a() { # was previously test_116()
8873         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8874         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8875         remote_mds_nodsh && skip "remote MDS with nodsh"
8876
8877         echo -n "Free space priority "
8878         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
8879                 head -n1
8880         declare -a AVAIL
8881         free_min_max
8882
8883         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip"
8884         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip"
8885         trap simple_cleanup_common EXIT
8886
8887         # Check if we need to generate uneven OSTs
8888         test_mkdir -p $DIR/$tdir/OST${MINI}
8889         local FILL=$((MINV / 4))
8890         local DIFF=$((MAXV - MINV))
8891         local DIFF2=$((DIFF * 100 / MINV))
8892
8893         local threshold=$(do_facet $SINGLEMDS \
8894                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
8895         threshold=${threshold%%%}
8896         echo -n "Check for uneven OSTs: "
8897         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
8898
8899         if [[ $DIFF2 -gt $threshold ]]; then
8900                 echo "ok"
8901                 echo "Don't need to fill OST$MINI"
8902         else
8903                 # generate uneven OSTs. Write 2% over the QOS threshold value
8904                 echo "no"
8905                 DIFF=$((threshold - DIFF2 + 2))
8906                 DIFF2=$((MINV * DIFF / 100))
8907                 echo "Fill $DIFF% remaining space in OST$MINI with ${DIFF2}KB"
8908                 $LFS setstripe -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
8909                         error "setstripe failed"
8910                 DIFF=$((DIFF2 / 2048))
8911                 i=0
8912                 while [ $i -lt $DIFF ]; do
8913                         i=$((i + 1))
8914                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
8915                                 bs=2M count=1 2>/dev/null
8916                         echo -n .
8917                 done
8918                 echo .
8919                 sync
8920                 sleep_maxage
8921                 free_min_max
8922         fi
8923
8924         DIFF=$((MAXV - MINV))
8925         DIFF2=$((DIFF * 100 / MINV))
8926         echo -n "diff=$DIFF=$DIFF2% must be > $threshold% for QOS mode..."
8927         if [ $DIFF2 -gt $threshold ]; then
8928                 echo "ok"
8929         else
8930                 echo "failed - QOS mode won't be used"
8931                 simple_cleanup_common
8932                 skip "QOS imbalance criteria not met"
8933         fi
8934
8935         MINI1=$MINI
8936         MINV1=$MINV
8937         MAXI1=$MAXI
8938         MAXV1=$MAXV
8939
8940         # now fill using QOS
8941         $LFS setstripe -c 1 $DIR/$tdir
8942         FILL=$((FILL / 200))
8943         if [ $FILL -gt 600 ]; then
8944                 FILL=600
8945         fi
8946         echo "writing $FILL files to QOS-assigned OSTs"
8947         i=0
8948         while [ $i -lt $FILL ]; do
8949                 i=$((i + 1))
8950                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
8951                         count=1 2>/dev/null
8952                 echo -n .
8953         done
8954         echo "wrote $i 200k files"
8955         sync
8956         sleep_maxage
8957
8958         echo "Note: free space may not be updated, so measurements might be off"
8959         free_min_max
8960         DIFF2=$((MAXV - MINV))
8961         echo "free space delta: orig $DIFF final $DIFF2"
8962         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
8963         DIFF=$((MINV1 - ${AVAIL[$MINI1]}))
8964         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
8965         DIFF2=$((MAXV1 - ${AVAIL[$MAXI1]}))
8966         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
8967         if [[ $DIFF -gt 0 ]]; then
8968                 FILL=$((DIFF2 * 100 / DIFF - 100))
8969                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
8970         fi
8971
8972         # Figure out which files were written where
8973         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
8974                awk '/'$MINI1': / {print $2; exit}')
8975         echo $UUID
8976         MINC=$($LFS getstripe --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
8977         echo "$MINC files created on smaller OST $MINI1"
8978         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
8979                awk '/'$MAXI1': / {print $2; exit}')
8980         echo $UUID
8981         MAXC=$($LFS getstripe --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
8982         echo "$MAXC files created on larger OST $MAXI1"
8983         if [[ $MINC -gt 0 ]]; then
8984                 FILL=$((MAXC * 100 / MINC - 100))
8985                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
8986         fi
8987         [[ $MAXC -gt $MINC ]] ||
8988                 error_ignore LU-9 "stripe QOS didn't balance free space"
8989         simple_cleanup_common
8990 }
8991 run_test 116a "stripe QOS: free space balance ==================="
8992
8993 test_116b() { # LU-2093
8994         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8995         remote_mds_nodsh && skip "remote MDS with nodsh"
8996
8997 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
8998         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
8999                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
9000         [ -z "$old_rr" ] && skip "no QOS"
9001         do_facet $SINGLEMDS lctl set_param \
9002                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
9003         mkdir -p $DIR/$tdir
9004         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
9005         createmany -o $DIR/$tdir/f- 20 || error "can't create"
9006         do_facet $SINGLEMDS lctl set_param fail_loc=0
9007         rm -rf $DIR/$tdir
9008         do_facet $SINGLEMDS lctl set_param \
9009                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
9010 }
9011 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
9012
9013 test_117() # bug 10891
9014 {
9015         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9016
9017         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
9018         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
9019         lctl set_param fail_loc=0x21e
9020         > $DIR/$tfile || error "truncate failed"
9021         lctl set_param fail_loc=0
9022         echo "Truncate succeeded."
9023         rm -f $DIR/$tfile
9024 }
9025 run_test 117 "verify osd extend =========="
9026
9027 NO_SLOW_RESENDCOUNT=4
9028 export OLD_RESENDCOUNT=""
9029 set_resend_count () {
9030         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
9031         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
9032         lctl set_param -n $PROC_RESENDCOUNT $1
9033         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
9034 }
9035
9036 # for reduce test_118* time (b=14842)
9037 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
9038
9039 # Reset async IO behavior after error case
9040 reset_async() {
9041         FILE=$DIR/reset_async
9042
9043         # Ensure all OSCs are cleared
9044         $LFS setstripe -c -1 $FILE
9045         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
9046         sync
9047         rm $FILE
9048 }
9049
9050 test_118a() #bug 11710
9051 {
9052         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9053
9054         reset_async
9055
9056         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9057         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9058         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9059
9060         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9061                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9062                 return 1;
9063         fi
9064         rm -f $DIR/$tfile
9065 }
9066 run_test 118a "verify O_SYNC works =========="
9067
9068 test_118b()
9069 {
9070         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9071         remote_ost_nodsh && skip "remote OST with nodsh"
9072
9073         reset_async
9074
9075         #define OBD_FAIL_SRV_ENOENT 0x217
9076         set_nodes_failloc "$(osts_nodes)" 0x217
9077         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9078         RC=$?
9079         set_nodes_failloc "$(osts_nodes)" 0
9080         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9081         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9082                     grep -c writeback)
9083
9084         if [[ $RC -eq 0 ]]; then
9085                 error "Must return error due to dropped pages, rc=$RC"
9086                 return 1;
9087         fi
9088
9089         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9090                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9091                 return 1;
9092         fi
9093
9094         echo "Dirty pages not leaked on ENOENT"
9095
9096         # Due to the above error the OSC will issue all RPCs syncronously
9097         # until a subsequent RPC completes successfully without error.
9098         $MULTIOP $DIR/$tfile Ow4096yc
9099         rm -f $DIR/$tfile
9100
9101         return 0
9102 }
9103 run_test 118b "Reclaim dirty pages on fatal error =========="
9104
9105 test_118c()
9106 {
9107         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9108
9109         # for 118c, restore the original resend count, LU-1940
9110         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
9111                                 set_resend_count $OLD_RESENDCOUNT
9112         remote_ost_nodsh && skip "remote OST with nodsh"
9113
9114         reset_async
9115
9116         #define OBD_FAIL_OST_EROFS               0x216
9117         set_nodes_failloc "$(osts_nodes)" 0x216
9118
9119         # multiop should block due to fsync until pages are written
9120         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9121         MULTIPID=$!
9122         sleep 1
9123
9124         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
9125                 error "Multiop failed to block on fsync, pid=$MULTIPID"
9126         fi
9127
9128         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9129                     grep -c writeback)
9130         if [[ $WRITEBACK -eq 0 ]]; then
9131                 error "No page in writeback, writeback=$WRITEBACK"
9132         fi
9133
9134         set_nodes_failloc "$(osts_nodes)" 0
9135         wait $MULTIPID
9136         RC=$?
9137         if [[ $RC -ne 0 ]]; then
9138                 error "Multiop fsync failed, rc=$RC"
9139         fi
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 flushed via fsync on EROFS"
9150         return 0
9151 }
9152 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
9153
9154 # continue to use small resend count to reduce test_118* time (b=14842)
9155 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
9156
9157 test_118d()
9158 {
9159         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9160         remote_ost_nodsh && skip "remote OST with nodsh"
9161
9162         reset_async
9163
9164         #define OBD_FAIL_OST_BRW_PAUSE_BULK
9165         set_nodes_failloc "$(osts_nodes)" 0x214
9166         # multiop should block due to fsync until pages are written
9167         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9168         MULTIPID=$!
9169         sleep 1
9170
9171         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
9172                 error "Multiop failed to block on fsync, pid=$MULTIPID"
9173         fi
9174
9175         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9176                     grep -c writeback)
9177         if [[ $WRITEBACK -eq 0 ]]; then
9178                 error "No page in writeback, writeback=$WRITEBACK"
9179         fi
9180
9181         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
9182         set_nodes_failloc "$(osts_nodes)" 0
9183
9184         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9185         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9186                     grep -c writeback)
9187         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9188                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9189         fi
9190
9191         rm -f $DIR/$tfile
9192         echo "Dirty pages gaurenteed flushed via fsync"
9193         return 0
9194 }
9195 run_test 118d "Fsync validation inject a delay of the bulk =========="
9196
9197 test_118f() {
9198         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9199
9200         reset_async
9201
9202         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
9203         lctl set_param fail_loc=0x8000040a
9204
9205         # Should simulate EINVAL error which is fatal
9206         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9207         RC=$?
9208         if [[ $RC -eq 0 ]]; then
9209                 error "Must return error due to dropped pages, rc=$RC"
9210         fi
9211
9212         lctl set_param fail_loc=0x0
9213
9214         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9215         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9216         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9217                     grep -c writeback)
9218         if [[ $LOCKED -ne 0 ]]; then
9219                 error "Locked pages remain in cache, locked=$LOCKED"
9220         fi
9221
9222         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9223                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9224         fi
9225
9226         rm -f $DIR/$tfile
9227         echo "No pages locked after fsync"
9228
9229         reset_async
9230         return 0
9231 }
9232 run_test 118f "Simulate unrecoverable OSC side error =========="
9233
9234 test_118g() {
9235         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9236
9237         reset_async
9238
9239         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
9240         lctl set_param fail_loc=0x406
9241
9242         # simulate local -ENOMEM
9243         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9244         RC=$?
9245
9246         lctl set_param fail_loc=0
9247         if [[ $RC -eq 0 ]]; then
9248                 error "Must return error due to dropped pages, rc=$RC"
9249         fi
9250
9251         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9252         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9253         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9254                         grep -c writeback)
9255         if [[ $LOCKED -ne 0 ]]; then
9256                 error "Locked pages remain in cache, locked=$LOCKED"
9257         fi
9258
9259         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9260                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9261         fi
9262
9263         rm -f $DIR/$tfile
9264         echo "No pages locked after fsync"
9265
9266         reset_async
9267         return 0
9268 }
9269 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
9270
9271 test_118h() {
9272         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9273         remote_ost_nodsh && skip "remote OST with nodsh"
9274
9275         reset_async
9276
9277         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9278         set_nodes_failloc "$(osts_nodes)" 0x20e
9279         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
9280         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9281         RC=$?
9282
9283         set_nodes_failloc "$(osts_nodes)" 0
9284         if [[ $RC -eq 0 ]]; then
9285                 error "Must return error due to dropped pages, rc=$RC"
9286         fi
9287
9288         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9289         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9290         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9291                     grep -c writeback)
9292         if [[ $LOCKED -ne 0 ]]; then
9293                 error "Locked pages remain in cache, locked=$LOCKED"
9294         fi
9295
9296         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9297                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9298         fi
9299
9300         rm -f $DIR/$tfile
9301         echo "No pages locked after fsync"
9302
9303         return 0
9304 }
9305 run_test 118h "Verify timeout in handling recoverables errors  =========="
9306
9307 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
9308
9309 test_118i() {
9310         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9311         remote_ost_nodsh && skip "remote OST with nodsh"
9312
9313         reset_async
9314
9315         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9316         set_nodes_failloc "$(osts_nodes)" 0x20e
9317
9318         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
9319         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9320         PID=$!
9321         sleep 5
9322         set_nodes_failloc "$(osts_nodes)" 0
9323
9324         wait $PID
9325         RC=$?
9326         if [[ $RC -ne 0 ]]; then
9327                 error "got error, but should be not, rc=$RC"
9328         fi
9329
9330         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9331         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9332         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9333         if [[ $LOCKED -ne 0 ]]; then
9334                 error "Locked pages remain in cache, locked=$LOCKED"
9335         fi
9336
9337         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9338                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9339         fi
9340
9341         rm -f $DIR/$tfile
9342         echo "No pages locked after fsync"
9343
9344         return 0
9345 }
9346 run_test 118i "Fix error before timeout in recoverable error  =========="
9347
9348 [ "$SLOW" = "no" ] && set_resend_count 4
9349
9350 test_118j() {
9351         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9352         remote_ost_nodsh && skip "remote OST with nodsh"
9353
9354         reset_async
9355
9356         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
9357         set_nodes_failloc "$(osts_nodes)" 0x220
9358
9359         # return -EIO from OST
9360         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9361         RC=$?
9362         set_nodes_failloc "$(osts_nodes)" 0x0
9363         if [[ $RC -eq 0 ]]; then
9364                 error "Must return error due to dropped pages, rc=$RC"
9365         fi
9366
9367         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9368         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9369         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9370         if [[ $LOCKED -ne 0 ]]; then
9371                 error "Locked pages remain in cache, locked=$LOCKED"
9372         fi
9373
9374         # in recoverable error on OST we want resend and stay until it finished
9375         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9376                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9377         fi
9378
9379         rm -f $DIR/$tfile
9380         echo "No pages locked after fsync"
9381
9382         return 0
9383 }
9384 run_test 118j "Simulate unrecoverable OST side error =========="
9385
9386 test_118k()
9387 {
9388         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9389         remote_ost_nodsh && skip "remote OSTs with nodsh"
9390
9391         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9392         set_nodes_failloc "$(osts_nodes)" 0x20e
9393         test_mkdir $DIR/$tdir
9394
9395         for ((i=0;i<10;i++)); do
9396                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
9397                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
9398                 SLEEPPID=$!
9399                 sleep 0.500s
9400                 kill $SLEEPPID
9401                 wait $SLEEPPID
9402         done
9403
9404         set_nodes_failloc "$(osts_nodes)" 0
9405         rm -rf $DIR/$tdir
9406 }
9407 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
9408
9409 test_118l() # LU-646
9410 {
9411         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9412
9413         test_mkdir $DIR/$tdir
9414         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
9415         rm -rf $DIR/$tdir
9416 }
9417 run_test 118l "fsync dir"
9418
9419 test_118m() # LU-3066
9420 {
9421         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9422
9423         test_mkdir $DIR/$tdir
9424         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
9425         rm -rf $DIR/$tdir
9426 }
9427 run_test 118m "fdatasync dir ========="
9428
9429 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
9430
9431 test_118n()
9432 {
9433         local begin
9434         local end
9435
9436         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9437         remote_ost_nodsh && skip "remote OSTs with nodsh"
9438
9439         # Sleep to avoid a cached response.
9440         #define OBD_STATFS_CACHE_SECONDS 1
9441         sleep 2
9442
9443         # Inject a 10 second delay in the OST_STATFS handler.
9444         #define OBD_FAIL_OST_STATFS_DELAY 0x242
9445         set_nodes_failloc "$(osts_nodes)" 0x242
9446
9447         begin=$SECONDS
9448         stat --file-system $MOUNT > /dev/null
9449         end=$SECONDS
9450
9451         set_nodes_failloc "$(osts_nodes)" 0
9452
9453         if ((end - begin > 20)); then
9454             error "statfs took $((end - begin)) seconds, expected 10"
9455         fi
9456 }
9457 run_test 118n "statfs() sends OST_STATFS requests in parallel"
9458
9459 test_119a() # bug 11737
9460 {
9461         BSIZE=$((512 * 1024))
9462         directio write $DIR/$tfile 0 1 $BSIZE
9463         # We ask to read two blocks, which is more than a file size.
9464         # directio will indicate an error when requested and actual
9465         # sizes aren't equeal (a normal situation in this case) and
9466         # print actual read amount.
9467         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
9468         if [ "$NOB" != "$BSIZE" ]; then
9469                 error "read $NOB bytes instead of $BSIZE"
9470         fi
9471         rm -f $DIR/$tfile
9472 }
9473 run_test 119a "Short directIO read must return actual read amount"
9474
9475 test_119b() # bug 11737
9476 {
9477         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
9478
9479         $LFS setstripe -c 2 $DIR/$tfile || error "setstripe failed"
9480         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
9481         sync
9482         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) ||
9483                 error "direct read failed"
9484         rm -f $DIR/$tfile
9485 }
9486 run_test 119b "Sparse directIO read must return actual read amount"
9487
9488 test_119c() # bug 13099
9489 {
9490         BSIZE=1048576
9491         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
9492         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
9493         rm -f $DIR/$tfile
9494 }
9495 run_test 119c "Testing for direct read hitting hole"
9496
9497 test_119d() # bug 15950
9498 {
9499         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9500
9501         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
9502         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
9503         BSIZE=1048576
9504         $LFS setstripe $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
9505         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
9506         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
9507         lctl set_param fail_loc=0x40d
9508         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
9509         pid_dio=$!
9510         sleep 1
9511         cat $DIR/$tfile > /dev/null &
9512         lctl set_param fail_loc=0
9513         pid_reads=$!
9514         wait $pid_dio
9515         log "the DIO writes have completed, now wait for the reads (should not block very long)"
9516         sleep 2
9517         [ -n "`ps h -p $pid_reads -o comm`" ] && \
9518         error "the read rpcs have not completed in 2s"
9519         rm -f $DIR/$tfile
9520         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
9521 }
9522 run_test 119d "The DIO path should try to send a new rpc once one is completed"
9523
9524 test_120a() {
9525         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9526         remote_mds_nodsh && skip "remote MDS with nodsh"
9527         test_mkdir $DIR/$tdir
9528         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9529                 skip_env "no early lock cancel on server"
9530
9531         lru_resize_disable mdc
9532         lru_resize_disable osc
9533         cancel_lru_locks mdc
9534         # asynchronous object destroy at MDT could cause bl ast to client
9535         cancel_lru_locks osc
9536
9537         stat $DIR/$tdir > /dev/null
9538         can1=$(do_facet $SINGLEMDS \
9539                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9540                awk '/ldlm_cancel/ {print $2}')
9541         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9542                awk '/ldlm_bl_callback/ {print $2}')
9543         test_mkdir -c1 $DIR/$tdir/d1
9544         can2=$(do_facet $SINGLEMDS \
9545                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9546                awk '/ldlm_cancel/ {print $2}')
9547         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9548                awk '/ldlm_bl_callback/ {print $2}')
9549         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9550         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9551         lru_resize_enable mdc
9552         lru_resize_enable osc
9553 }
9554 run_test 120a "Early Lock Cancel: mkdir test"
9555
9556 test_120b() {
9557         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9558         remote_mds_nodsh && skip "remote MDS with nodsh"
9559         test_mkdir $DIR/$tdir
9560         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9561                 skip_env "no early lock cancel on server"
9562
9563         lru_resize_disable mdc
9564         lru_resize_disable osc
9565         cancel_lru_locks mdc
9566         stat $DIR/$tdir > /dev/null
9567         can1=$(do_facet $SINGLEMDS \
9568                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9569                awk '/ldlm_cancel/ {print $2}')
9570         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9571                awk '/ldlm_bl_callback/ {print $2}')
9572         touch $DIR/$tdir/f1
9573         can2=$(do_facet $SINGLEMDS \
9574                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9575                awk '/ldlm_cancel/ {print $2}')
9576         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9577                awk '/ldlm_bl_callback/ {print $2}')
9578         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9579         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9580         lru_resize_enable mdc
9581         lru_resize_enable osc
9582 }
9583 run_test 120b "Early Lock Cancel: create test"
9584
9585 test_120c() {
9586         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9587         remote_mds_nodsh && skip "remote MDS with nodsh"
9588         test_mkdir -c1 $DIR/$tdir
9589         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9590                 skip "no early lock cancel on server"
9591
9592         lru_resize_disable mdc
9593         lru_resize_disable osc
9594         test_mkdir -c1 $DIR/$tdir/d1
9595         test_mkdir -c1 $DIR/$tdir/d2
9596         touch $DIR/$tdir/d1/f1
9597         cancel_lru_locks mdc
9598         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
9599         can1=$(do_facet $SINGLEMDS \
9600                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9601                awk '/ldlm_cancel/ {print $2}')
9602         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9603                awk '/ldlm_bl_callback/ {print $2}')
9604         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
9605         can2=$(do_facet $SINGLEMDS \
9606                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9607                awk '/ldlm_cancel/ {print $2}')
9608         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9609                awk '/ldlm_bl_callback/ {print $2}')
9610         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9611         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9612         lru_resize_enable mdc
9613         lru_resize_enable osc
9614 }
9615 run_test 120c "Early Lock Cancel: link test"
9616
9617 test_120d() {
9618         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9619         remote_mds_nodsh && skip "remote MDS with nodsh"
9620         test_mkdir -c1 $DIR/$tdir
9621         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9622                 skip_env "no early lock cancel on server"
9623
9624         lru_resize_disable mdc
9625         lru_resize_disable osc
9626         touch $DIR/$tdir
9627         cancel_lru_locks mdc
9628         stat $DIR/$tdir > /dev/null
9629         can1=$(do_facet $SINGLEMDS \
9630                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9631                awk '/ldlm_cancel/ {print $2}')
9632         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9633                awk '/ldlm_bl_callback/ {print $2}')
9634         chmod a+x $DIR/$tdir
9635         can2=$(do_facet $SINGLEMDS \
9636                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9637                awk '/ldlm_cancel/ {print $2}')
9638         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9639                awk '/ldlm_bl_callback/ {print $2}')
9640         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9641         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9642         lru_resize_enable mdc
9643         lru_resize_enable osc
9644 }
9645 run_test 120d "Early Lock Cancel: setattr test"
9646
9647 test_120e() {
9648         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9649         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9650                 skip_env "no early lock cancel on server"
9651         remote_mds_nodsh && skip "remote MDS with nodsh"
9652
9653         local dlmtrace_set=false
9654
9655         test_mkdir -c1 $DIR/$tdir
9656         lru_resize_disable mdc
9657         lru_resize_disable osc
9658         ! $LCTL get_param debug | grep -q dlmtrace &&
9659                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
9660         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
9661         cancel_lru_locks mdc
9662         cancel_lru_locks osc
9663         dd if=$DIR/$tdir/f1 of=/dev/null
9664         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
9665         # XXX client can not do early lock cancel of OST lock
9666         # during unlink (LU-4206), so cancel osc lock now.
9667         sleep 2
9668         cancel_lru_locks osc
9669         can1=$(do_facet $SINGLEMDS \
9670                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9671                awk '/ldlm_cancel/ {print $2}')
9672         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9673                awk '/ldlm_bl_callback/ {print $2}')
9674         unlink $DIR/$tdir/f1
9675         sleep 5
9676         can2=$(do_facet $SINGLEMDS \
9677                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9678                awk '/ldlm_cancel/ {print $2}')
9679         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9680                awk '/ldlm_bl_callback/ {print $2}')
9681         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
9682                 $LCTL dk $TMP/cancel.debug.txt
9683         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
9684                 $LCTL dk $TMP/blocking.debug.txt
9685         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
9686         lru_resize_enable mdc
9687         lru_resize_enable osc
9688 }
9689 run_test 120e "Early Lock Cancel: unlink test"
9690
9691 test_120f() {
9692         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9693         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9694                 skip_env "no early lock cancel on server"
9695         remote_mds_nodsh && skip "remote MDS with nodsh"
9696
9697         test_mkdir -c1 $DIR/$tdir
9698         lru_resize_disable mdc
9699         lru_resize_disable osc
9700         test_mkdir -c1 $DIR/$tdir/d1
9701         test_mkdir -c1 $DIR/$tdir/d2
9702         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
9703         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
9704         cancel_lru_locks mdc
9705         cancel_lru_locks osc
9706         dd if=$DIR/$tdir/d1/f1 of=/dev/null
9707         dd if=$DIR/$tdir/d2/f2 of=/dev/null
9708         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
9709         # XXX client can not do early lock cancel of OST lock
9710         # during rename (LU-4206), so cancel osc lock now.
9711         sleep 2
9712         cancel_lru_locks osc
9713         can1=$(do_facet $SINGLEMDS \
9714                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9715                awk '/ldlm_cancel/ {print $2}')
9716         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9717                awk '/ldlm_bl_callback/ {print $2}')
9718         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
9719         sleep 5
9720         can2=$(do_facet $SINGLEMDS \
9721                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9722                awk '/ldlm_cancel/ {print $2}')
9723         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9724                awk '/ldlm_bl_callback/ {print $2}')
9725         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9726         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9727         lru_resize_enable mdc
9728         lru_resize_enable osc
9729 }
9730 run_test 120f "Early Lock Cancel: rename test"
9731
9732 test_120g() {
9733         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9734         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9735                 skip_env "no early lock cancel on server"
9736         remote_mds_nodsh && skip "remote MDS with nodsh"
9737
9738         lru_resize_disable mdc
9739         lru_resize_disable osc
9740         count=10000
9741         echo create $count files
9742         test_mkdir $DIR/$tdir
9743         cancel_lru_locks mdc
9744         cancel_lru_locks osc
9745         t0=$(date +%s)
9746
9747         can0=$(do_facet $SINGLEMDS \
9748                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9749                awk '/ldlm_cancel/ {print $2}')
9750         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9751                awk '/ldlm_bl_callback/ {print $2}')
9752         createmany -o $DIR/$tdir/f $count
9753         sync
9754         can1=$(do_facet $SINGLEMDS \
9755                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9756                awk '/ldlm_cancel/ {print $2}')
9757         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9758                awk '/ldlm_bl_callback/ {print $2}')
9759         t1=$(date +%s)
9760         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
9761         echo rm $count files
9762         rm -r $DIR/$tdir
9763         sync
9764         can2=$(do_facet $SINGLEMDS \
9765                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9766                awk '/ldlm_cancel/ {print $2}')
9767         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9768                awk '/ldlm_bl_callback/ {print $2}')
9769         t2=$(date +%s)
9770         echo total: $count removes in $((t2-t1))
9771         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
9772         sleep 2
9773         # wait for commitment of removal
9774         lru_resize_enable mdc
9775         lru_resize_enable osc
9776 }
9777 run_test 120g "Early Lock Cancel: performance test"
9778
9779 test_121() { #bug #10589
9780         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9781
9782         rm -rf $DIR/$tfile
9783         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
9784 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
9785         lctl set_param fail_loc=0x310
9786         cancel_lru_locks osc > /dev/null
9787         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
9788         lctl set_param fail_loc=0
9789         [[ $reads -eq $writes ]] ||
9790                 error "read $reads blocks, must be $writes blocks"
9791 }
9792 run_test 121 "read cancel race ========="
9793
9794 test_123a() { # was test 123, statahead(bug 11401)
9795         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9796
9797         SLOWOK=0
9798         if ! grep -q "processor.*: 1" /proc/cpuinfo; then
9799                 log "testing UP system. Performance may be lower than expected."
9800                 SLOWOK=1
9801         fi
9802
9803         rm -rf $DIR/$tdir
9804         test_mkdir $DIR/$tdir
9805         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
9806         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
9807         MULT=10
9808         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
9809                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
9810
9811                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
9812                 lctl set_param -n llite.*.statahead_max 0
9813                 lctl get_param llite.*.statahead_max
9814                 cancel_lru_locks mdc
9815                 cancel_lru_locks osc
9816                 stime=`date +%s`
9817                 time ls -l $DIR/$tdir | wc -l
9818                 etime=`date +%s`
9819                 delta=$((etime - stime))
9820                 log "ls $i files without statahead: $delta sec"
9821                 lctl set_param llite.*.statahead_max=$max
9822
9823                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
9824                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
9825                 cancel_lru_locks mdc
9826                 cancel_lru_locks osc
9827                 stime=`date +%s`
9828                 time ls -l $DIR/$tdir | wc -l
9829                 etime=`date +%s`
9830                 delta_sa=$((etime - stime))
9831                 log "ls $i files with statahead: $delta_sa sec"
9832                 lctl get_param -n llite.*.statahead_stats
9833                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
9834
9835                 [[ $swrong -lt $ewrong ]] &&
9836                         log "statahead was stopped, maybe too many locks held!"
9837                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
9838
9839                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
9840                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
9841                     lctl set_param -n llite.*.statahead_max 0
9842                     lctl get_param llite.*.statahead_max
9843                     cancel_lru_locks mdc
9844                     cancel_lru_locks osc
9845                     stime=`date +%s`
9846                     time ls -l $DIR/$tdir | wc -l
9847                     etime=`date +%s`
9848                     delta=$((etime - stime))
9849                     log "ls $i files again without statahead: $delta sec"
9850                     lctl set_param llite.*.statahead_max=$max
9851                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
9852                         if [  $SLOWOK -eq 0 ]; then
9853                                 error "ls $i files is slower with statahead!"
9854                         else
9855                                 log "ls $i files is slower with statahead!"
9856                         fi
9857                         break
9858                     fi
9859                 fi
9860
9861                 [ $delta -gt 20 ] && break
9862                 [ $delta -gt 8 ] && MULT=$((50 / delta))
9863                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
9864         done
9865         log "ls done"
9866
9867         stime=`date +%s`
9868         rm -r $DIR/$tdir
9869         sync
9870         etime=`date +%s`
9871         delta=$((etime - stime))
9872         log "rm -r $DIR/$tdir/: $delta seconds"
9873         log "rm done"
9874         lctl get_param -n llite.*.statahead_stats
9875 }
9876 run_test 123a "verify statahead work"
9877
9878 test_123b () { # statahead(bug 15027)
9879         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9880
9881         test_mkdir $DIR/$tdir
9882         createmany -o $DIR/$tdir/$tfile-%d 1000
9883
9884         cancel_lru_locks mdc
9885         cancel_lru_locks osc
9886
9887 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
9888         lctl set_param fail_loc=0x80000803
9889         ls -lR $DIR/$tdir > /dev/null
9890         log "ls done"
9891         lctl set_param fail_loc=0x0
9892         lctl get_param -n llite.*.statahead_stats
9893         rm -r $DIR/$tdir
9894         sync
9895
9896 }
9897 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
9898
9899 test_124a() {
9900         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9901         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
9902                 skip_env "no lru resize on server"
9903
9904         local NR=2000
9905
9906         test_mkdir $DIR/$tdir
9907
9908         log "create $NR files at $DIR/$tdir"
9909         createmany -o $DIR/$tdir/f $NR ||
9910                 error "failed to create $NR files in $DIR/$tdir"
9911
9912         cancel_lru_locks mdc
9913         ls -l $DIR/$tdir > /dev/null
9914
9915         local NSDIR=""
9916         local LRU_SIZE=0
9917         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
9918                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
9919                 LRU_SIZE=$($LCTL get_param -n $PARAM)
9920                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
9921                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
9922                         log "NSDIR=$NSDIR"
9923                         log "NS=$(basename $NSDIR)"
9924                         break
9925                 fi
9926         done
9927
9928         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
9929                 skip "Not enough cached locks created!"
9930         fi
9931         log "LRU=$LRU_SIZE"
9932
9933         local SLEEP=30
9934
9935         # We know that lru resize allows one client to hold $LIMIT locks
9936         # for 10h. After that locks begin to be killed by client.
9937         local MAX_HRS=10
9938         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
9939         log "LIMIT=$LIMIT"
9940         if [ $LIMIT -lt $LRU_SIZE ]; then
9941                 skip "Limit is too small $LIMIT"
9942         fi
9943
9944         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
9945         # killing locks. Some time was spent for creating locks. This means
9946         # that up to the moment of sleep finish we must have killed some of
9947         # them (10-100 locks). This depends on how fast ther were created.
9948         # Many of them were touched in almost the same moment and thus will
9949         # be killed in groups.
9950         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
9951
9952         # Use $LRU_SIZE_B here to take into account real number of locks
9953         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
9954         local LRU_SIZE_B=$LRU_SIZE
9955         log "LVF=$LVF"
9956         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
9957         log "OLD_LVF=$OLD_LVF"
9958         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
9959
9960         # Let's make sure that we really have some margin. Client checks
9961         # cached locks every 10 sec.
9962         SLEEP=$((SLEEP+20))
9963         log "Sleep ${SLEEP} sec"
9964         local SEC=0
9965         while ((SEC<$SLEEP)); do
9966                 echo -n "..."
9967                 sleep 5
9968                 SEC=$((SEC+5))
9969                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
9970                 echo -n "$LRU_SIZE"
9971         done
9972         echo ""
9973         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
9974         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
9975
9976         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
9977                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
9978                 unlinkmany $DIR/$tdir/f $NR
9979                 return
9980         }
9981
9982         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
9983         log "unlink $NR files at $DIR/$tdir"
9984         unlinkmany $DIR/$tdir/f $NR
9985 }
9986 run_test 124a "lru resize ======================================="
9987
9988 get_max_pool_limit()
9989 {
9990         local limit=$($LCTL get_param \
9991                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
9992         local max=0
9993         for l in $limit; do
9994                 if [[ $l -gt $max ]]; then
9995                         max=$l
9996                 fi
9997         done
9998         echo $max
9999 }
10000
10001 test_124b() {
10002         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10003         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
10004                 skip_env "no lru resize on server"
10005
10006         LIMIT=$(get_max_pool_limit)
10007
10008         NR=$(($(default_lru_size)*20))
10009         if [[ $NR -gt $LIMIT ]]; then
10010                 log "Limit lock number by $LIMIT locks"
10011                 NR=$LIMIT
10012         fi
10013
10014         IFree=$(mdsrate_inodes_available)
10015         if [ $IFree -lt $NR ]; then
10016                 log "Limit lock number by $IFree inodes"
10017                 NR=$IFree
10018         fi
10019
10020         lru_resize_disable mdc
10021         test_mkdir -p $DIR/$tdir/disable_lru_resize
10022
10023         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
10024         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
10025         cancel_lru_locks mdc
10026         stime=`date +%s`
10027         PID=""
10028         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
10029         PID="$PID $!"
10030         sleep 2
10031         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
10032         PID="$PID $!"
10033         sleep 2
10034         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
10035         PID="$PID $!"
10036         wait $PID
10037         etime=`date +%s`
10038         nolruresize_delta=$((etime-stime))
10039         log "ls -la time: $nolruresize_delta seconds"
10040         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
10041         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
10042
10043         lru_resize_enable mdc
10044         test_mkdir -p $DIR/$tdir/enable_lru_resize
10045
10046         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
10047         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
10048         cancel_lru_locks mdc
10049         stime=`date +%s`
10050         PID=""
10051         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10052         PID="$PID $!"
10053         sleep 2
10054         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10055         PID="$PID $!"
10056         sleep 2
10057         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10058         PID="$PID $!"
10059         wait $PID
10060         etime=`date +%s`
10061         lruresize_delta=$((etime-stime))
10062         log "ls -la time: $lruresize_delta seconds"
10063         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
10064
10065         if [ $lruresize_delta -gt $nolruresize_delta ]; then
10066                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
10067         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
10068                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
10069         else
10070                 log "lru resize performs the same with no lru resize"
10071         fi
10072         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
10073 }
10074 run_test 124b "lru resize (performance test) ======================="
10075
10076 test_124c() {
10077         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10078         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
10079                 skip_env "no lru resize on server"
10080
10081         # cache ununsed locks on client
10082         local nr=100
10083         cancel_lru_locks mdc
10084         test_mkdir $DIR/$tdir
10085         createmany -o $DIR/$tdir/f $nr ||
10086                 error "failed to create $nr files in $DIR/$tdir"
10087         ls -l $DIR/$tdir > /dev/null
10088
10089         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
10090         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
10091         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
10092         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
10093         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
10094
10095         # set lru_max_age to 1 sec
10096         $LCTL set_param $nsdir.lru_max_age=1000 # milliseconds
10097         echo "sleep $((recalc_p * 2)) seconds..."
10098         sleep $((recalc_p * 2))
10099
10100         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
10101         # restore lru_max_age
10102         $LCTL set_param -n $nsdir.lru_max_age $max_age
10103         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
10104         unlinkmany $DIR/$tdir/f $nr
10105 }
10106 run_test 124c "LRUR cancel very aged locks"
10107
10108 test_125() { # 13358
10109         $LCTL get_param -n llite.*.client_type | grep -q local ||
10110                 skip "must run as local client"
10111         $LCTL get_param -n mdc.*-mdc-*.connect_flags | grep -q acl ||
10112                 skip_env "must have acl enabled"
10113         [ -z "$(which setfacl)" ] && skip_env "must have setfacl tool"
10114
10115         test_mkdir $DIR/$tdir
10116         $LFS setstripe -S 65536 -c -1 $DIR/$tdir || error "setstripe failed"
10117         setfacl -R -m u:bin:rwx $DIR/$tdir || error "setfacl $DIR/$tdir failed"
10118         ls -ld $DIR/$tdir || error "cannot access $DIR/$tdir"
10119 }
10120 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
10121
10122 test_126() { # bug 12829/13455
10123         $GSS && skip_env "must run as gss disabled"
10124         $LCTL get_param -n llite.*.client_type | grep -q local ||
10125                 skip "must run as local client"
10126         [ "$UID" != 0 ] && skip "must run as root, not UID $UID"
10127
10128         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
10129         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
10130         rm -f $DIR/$tfile
10131         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
10132 }
10133 run_test 126 "check that the fsgid provided by the client is taken into account"
10134
10135 test_127a() { # bug 15521
10136         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10137
10138         $LFS setstripe -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
10139         $LCTL set_param osc.*.stats=0
10140         FSIZE=$((2048 * 1024))
10141         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
10142         cancel_lru_locks osc
10143         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
10144
10145         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
10146         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
10147                 echo "got $COUNT $NAME"
10148                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
10149                 eval $NAME=$COUNT || error "Wrong proc format"
10150
10151                 case $NAME in
10152                         read_bytes|write_bytes)
10153                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
10154                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
10155                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
10156                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
10157                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
10158                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
10159                                 error "sumsquare is too small: $SUMSQ"
10160                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
10161                                 error "sumsquare is too big: $SUMSQ"
10162                         ;;
10163                         *) ;;
10164                 esac
10165         done < $DIR/${tfile}.tmp
10166
10167         #check that we actually got some stats
10168         [ "$read_bytes" ] || error "Missing read_bytes stats"
10169         [ "$write_bytes" ] || error "Missing write_bytes stats"
10170         [ "$read_bytes" != 0 ] || error "no read done"
10171         [ "$write_bytes" != 0 ] || error "no write done"
10172 }
10173 run_test 127a "verify the client stats are sane"
10174
10175 test_127b() { # bug LU-333
10176         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10177         local name count samp unit min max sum sumsq
10178
10179         $LCTL set_param llite.*.stats=0
10180
10181         # perform 2 reads and writes so MAX is different from SUM.
10182         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1
10183         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1
10184         cancel_lru_locks osc
10185         dd if=$DIR/$tfile of=/dev/null bs=$PAGE_SIZE count=1
10186         dd if=$DIR/$tfile of=/dev/null bs=$PAGE_SIZE count=1
10187
10188         $LCTL get_param llite.*.stats | grep samples > $TMP/$tfile.tmp
10189         while read name count samp unit min max sum sumsq; do
10190                 echo "got $count $name"
10191                 eval $name=$count || error "Wrong proc format"
10192
10193                 case $name in
10194                 read_bytes)
10195                         [ $count -ne 2 ] && error "count is not 2: $count"
10196                         [ $min -ne $PAGE_SIZE ] &&
10197                                 error "min is not $PAGE_SIZE: $min"
10198                         [ $max -ne $PAGE_SIZE ] &&
10199                                 error "max is incorrect: $max"
10200                         [ $sum -ne $((PAGE_SIZE * 2)) ] &&
10201                                 error "sum is wrong: $sum"
10202                         ;;
10203                 write_bytes)
10204                         [ $count -ne 2 ] && error "count is not 2: $count"
10205                         [ $min -ne $PAGE_SIZE ] &&
10206                                 error "min is not $PAGE_SIZE: $min"
10207                         [ $max -ne $PAGE_SIZE ] &&
10208                                 error "max is incorrect: $max"
10209                         [ $sum -ne $((PAGE_SIZE * 2)) ] &&
10210                                 error "sum is wrong: $sum"
10211                         ;;
10212                 *) ;;
10213                 esac
10214         done < $TMP/$tfile.tmp
10215
10216         #check that we actually got some stats
10217         [ "$read_bytes" ] || error "Missing read_bytes stats"
10218         [ "$write_bytes" ] || error "Missing write_bytes stats"
10219         [ "$read_bytes" != 0 ] || error "no read done"
10220         [ "$write_bytes" != 0 ] || error "no write done"
10221
10222         rm -f $TMP/${tfile}.tmp
10223 }
10224 run_test 127b "verify the llite client stats are sane"
10225
10226 test_128() { # bug 15212
10227         touch $DIR/$tfile
10228         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
10229                 find $DIR/$tfile
10230                 find $DIR/$tfile
10231         EOF
10232
10233         result=$(grep error $TMP/$tfile.log)
10234         rm -f $DIR/$tfile $TMP/$tfile.log
10235         [ -z "$result" ] ||
10236                 error "consecutive find's under interactive lfs failed"
10237 }
10238 run_test 128 "interactive lfs for 2 consecutive find's"
10239
10240 set_dir_limits () {
10241         local mntdev
10242         local canondev
10243         local node
10244
10245         local ldproc=/proc/fs/ldiskfs
10246         local facets=$(get_facets MDS)
10247
10248         for facet in ${facets//,/ }; do
10249                 canondev=$(ldiskfs_canon \
10250                            *.$(convert_facet2label $facet).mntdev $facet)
10251                 do_facet $facet "test -e $ldproc/$canondev/max_dir_size" ||
10252                         ldproc=/sys/fs/ldiskfs
10253                 do_facet $facet "echo $1 >$ldproc/$canondev/max_dir_size"
10254                 do_facet $facet "echo $2 >$ldproc/$canondev/warning_dir_size"
10255         done
10256 }
10257
10258 check_mds_dmesg() {
10259         local facets=$(get_facets MDS)
10260         for facet in ${facets//,/ }; do
10261                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
10262         done
10263         return 1
10264 }
10265
10266 test_129() {
10267         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10268         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.56) ]] ||
10269                 skip "Need MDS version with at least 2.5.56"
10270         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
10271                 skip_env "ldiskfs only test"
10272         fi
10273         remote_mds_nodsh && skip "remote MDS with nodsh"
10274
10275         local ENOSPC=28
10276         local EFBIG=27
10277         local has_warning=false
10278
10279         rm -rf $DIR/$tdir
10280         mkdir -p $DIR/$tdir
10281
10282         # block size of mds1
10283         local maxsize=$(($($LCTL get_param -n mdc.*MDT0000*.blocksize) * 5))
10284         set_dir_limits $maxsize $maxsize
10285         local dirsize=$(stat -c%s "$DIR/$tdir")
10286         local nfiles=0
10287         while [[ $dirsize -le $maxsize ]]; do
10288                 $MULTIOP $DIR/$tdir/file_base_$nfiles Oc
10289                 rc=$?
10290                 if ! $has_warning; then
10291                         check_mds_dmesg '"is approaching"' && has_warning=true
10292                 fi
10293                 # check two errors:
10294                 # ENOSPC for new ext4 max_dir_size (kernel commit df981d03ee)
10295                 # EFBIG for previous versions included in ldiskfs series
10296                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
10297                         set_dir_limits 0 0
10298                         echo "return code $rc received as expected"
10299
10300                         createmany -o $DIR/$tdir/file_extra_$nfiles. 5 ||
10301                                 error_exit "create failed w/o dir size limit"
10302
10303                         check_mds_dmesg '"has reached"' ||
10304                                 error_exit "reached message should be output"
10305
10306                         [ $has_warning = "false" ] &&
10307                                 error_exit "warning message should be output"
10308
10309                         dirsize=$(stat -c%s "$DIR/$tdir")
10310
10311                         [[ $dirsize -ge $maxsize ]] && return 0
10312                         error_exit "current dir size $dirsize, " \
10313                                    "previous limit $maxsize"
10314                 elif [ $rc -ne 0 ]; then
10315                         set_dir_limits 0 0
10316                         error_exit "return $rc received instead of expected " \
10317                                    "$EFBIG or $ENOSPC, files in dir $dirsize"
10318                 fi
10319                 nfiles=$((nfiles + 1))
10320                 dirsize=$(stat -c%s "$DIR/$tdir")
10321         done
10322
10323         set_dir_limits 0 0
10324         error "exceeded dir size limit $maxsize($MDSCOUNT) : $dirsize bytes"
10325 }
10326 run_test 129 "test directory size limit ========================"
10327
10328 OLDIFS="$IFS"
10329 cleanup_130() {
10330         trap 0
10331         IFS="$OLDIFS"
10332 }
10333
10334 test_130a() {
10335         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10336         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10337
10338         trap cleanup_130 EXIT RETURN
10339
10340         local fm_file=$DIR/$tfile
10341         $LFS setstripe -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
10342         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
10343                 error "dd failed for $fm_file"
10344
10345         # LU-1795: test filefrag/FIEMAP once, even if unsupported
10346         filefrag -ves $fm_file
10347         RC=$?
10348         [ "$(facet_fstype ost$(($($LFS getstripe -i $fm_file) + 1)))" = "zfs" ] &&
10349                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10350         [ $RC != 0 ] && error "filefrag $fm_file failed"
10351
10352         filefrag_op=$(filefrag -ve -k $fm_file |
10353                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10354         lun=$($LFS getstripe -i $fm_file)
10355
10356         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
10357         IFS=$'\n'
10358         tot_len=0
10359         for line in $filefrag_op
10360         do
10361                 frag_lun=`echo $line | cut -d: -f5`
10362                 ext_len=`echo $line | cut -d: -f4`
10363                 if (( $frag_lun != $lun )); then
10364                         cleanup_130
10365                         error "FIEMAP on 1-stripe file($fm_file) failed"
10366                         return
10367                 fi
10368                 (( tot_len += ext_len ))
10369         done
10370
10371         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
10372                 cleanup_130
10373                 error "FIEMAP on 1-stripe file($fm_file) failed;"
10374                 return
10375         fi
10376
10377         cleanup_130
10378
10379         echo "FIEMAP on single striped file succeeded"
10380 }
10381 run_test 130a "FIEMAP (1-stripe file)"
10382
10383 test_130b() {
10384         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >= 2 OSTs"
10385
10386         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10387         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10388
10389         trap cleanup_130 EXIT RETURN
10390
10391         local fm_file=$DIR/$tfile
10392         $LFS setstripe -S 65536 -c $OSTCOUNT $fm_file ||
10393                         error "setstripe on $fm_file"
10394         [ "$(facet_fstype ost$(($($LFS getstripe -i $fm_file) + 1)))" = "zfs" ] &&
10395                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10396
10397         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
10398                 error "dd failed on $fm_file"
10399
10400         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10401         filefrag_op=$(filefrag -ve -k $fm_file |
10402                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10403
10404         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10405                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10406
10407         IFS=$'\n'
10408         tot_len=0
10409         num_luns=1
10410         for line in $filefrag_op
10411         do
10412                 frag_lun=$(echo $line | cut -d: -f5 |
10413                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10414                 ext_len=$(echo $line | cut -d: -f4)
10415                 if (( $frag_lun != $last_lun )); then
10416                         if (( tot_len != 1024 )); then
10417                                 cleanup_130
10418                                 error "FIEMAP on $fm_file failed; returned " \
10419                                 "len $tot_len for OST $last_lun instead of 1024"
10420                                 return
10421                         else
10422                                 (( num_luns += 1 ))
10423                                 tot_len=0
10424                         fi
10425                 fi
10426                 (( tot_len += ext_len ))
10427                 last_lun=$frag_lun
10428         done
10429         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
10430                 cleanup_130
10431                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10432                         "luns or wrong len for OST $last_lun"
10433                 return
10434         fi
10435
10436         cleanup_130
10437
10438         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
10439 }
10440 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
10441
10442 test_130c() {
10443         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
10444
10445         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10446         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10447
10448         trap cleanup_130 EXIT RETURN
10449
10450         local fm_file=$DIR/$tfile
10451         $LFS setstripe -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
10452         [ "$(facet_fstype ost$(($($LFS getstripe -i $fm_file) + 1)))" = "zfs" ] &&
10453                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10454
10455         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
10456                         error "dd failed on $fm_file"
10457
10458         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10459         filefrag_op=$(filefrag -ve -k $fm_file |
10460                 sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10461
10462         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10463                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10464
10465         IFS=$'\n'
10466         tot_len=0
10467         num_luns=1
10468         for line in $filefrag_op
10469         do
10470                 frag_lun=$(echo $line | cut -d: -f5 |
10471                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10472                 ext_len=$(echo $line | cut -d: -f4)
10473                 if (( $frag_lun != $last_lun )); then
10474                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
10475                         if (( logical != 512 )); then
10476                                 cleanup_130
10477                                 error "FIEMAP on $fm_file failed; returned " \
10478                                 "logical start for lun $logical instead of 512"
10479                                 return
10480                         fi
10481                         if (( tot_len != 512 )); then
10482                                 cleanup_130
10483                                 error "FIEMAP on $fm_file failed; returned " \
10484                                 "len $tot_len for OST $last_lun instead of 1024"
10485                                 return
10486                         else
10487                                 (( num_luns += 1 ))
10488                                 tot_len=0
10489                         fi
10490                 fi
10491                 (( tot_len += ext_len ))
10492                 last_lun=$frag_lun
10493         done
10494         if (( num_luns != 2 || tot_len != 512 )); then
10495                 cleanup_130
10496                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10497                         "luns or wrong len for OST $last_lun"
10498                 return
10499         fi
10500
10501         cleanup_130
10502
10503         echo "FIEMAP on 2-stripe file with hole succeeded"
10504 }
10505 run_test 130c "FIEMAP (2-stripe file with hole)"
10506
10507 test_130d() {
10508         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
10509
10510         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10511         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10512
10513         trap cleanup_130 EXIT RETURN
10514
10515         local fm_file=$DIR/$tfile
10516         $LFS setstripe -S 65536 -c $OSTCOUNT $fm_file ||
10517                         error "setstripe on $fm_file"
10518         [ "$(facet_fstype ost$(($($LFS getstripe -i $fm_file) + 1)))" = "zfs" ] &&
10519                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10520
10521         local actual_stripe_count=$($LFS getstripe -c $fm_file)
10522         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripe_count ||
10523                 error "dd failed on $fm_file"
10524
10525         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10526         filefrag_op=$(filefrag -ve -k $fm_file |
10527                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10528
10529         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10530                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10531
10532         IFS=$'\n'
10533         tot_len=0
10534         num_luns=1
10535         for line in $filefrag_op
10536         do
10537                 frag_lun=$(echo $line | cut -d: -f5 |
10538                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10539                 ext_len=$(echo $line | cut -d: -f4)
10540                 if (( $frag_lun != $last_lun )); then
10541                         if (( tot_len != 1024 )); then
10542                                 cleanup_130
10543                                 error "FIEMAP on $fm_file failed; returned " \
10544                                 "len $tot_len for OST $last_lun instead of 1024"
10545                                 return
10546                         else
10547                                 (( num_luns += 1 ))
10548                                 tot_len=0
10549                         fi
10550                 fi
10551                 (( tot_len += ext_len ))
10552                 last_lun=$frag_lun
10553         done
10554         if (( num_luns != actual_stripe_count || tot_len != 1024 )); then
10555                 cleanup_130
10556                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10557                         "luns or wrong len for OST $last_lun"
10558                 return
10559         fi
10560
10561         cleanup_130
10562
10563         echo "FIEMAP on N-stripe file succeeded"
10564 }
10565 run_test 130d "FIEMAP (N-stripe file)"
10566
10567 test_130e() {
10568         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
10569
10570         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10571         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10572
10573         trap cleanup_130 EXIT RETURN
10574
10575         local fm_file=$DIR/$tfile
10576         $LFS setstripe -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
10577         [ "$(facet_fstype ost$(($($LFS getstripe -i $fm_file) + 1)))" = "zfs" ] &&
10578                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10579
10580         NUM_BLKS=512
10581         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
10582         for ((i = 0; i < $NUM_BLKS; i++))
10583         do
10584                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
10585         done
10586
10587         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10588         filefrag_op=$(filefrag -ve -k $fm_file |
10589                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10590
10591         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10592                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10593
10594         IFS=$'\n'
10595         tot_len=0
10596         num_luns=1
10597         for line in $filefrag_op
10598         do
10599                 frag_lun=$(echo $line | cut -d: -f5 |
10600                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10601                 ext_len=$(echo $line | cut -d: -f4)
10602                 if (( $frag_lun != $last_lun )); then
10603                         if (( tot_len != $EXPECTED_LEN )); then
10604                                 cleanup_130
10605                                 error "FIEMAP on $fm_file failed; returned " \
10606                                 "len $tot_len for OST $last_lun instead " \
10607                                 "of $EXPECTED_LEN"
10608                                 return
10609                         else
10610                                 (( num_luns += 1 ))
10611                                 tot_len=0
10612                         fi
10613                 fi
10614                 (( tot_len += ext_len ))
10615                 last_lun=$frag_lun
10616         done
10617         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
10618                 cleanup_130
10619                 error "FIEMAP on $fm_file failed; returned wrong number " \
10620                         "of luns or wrong len for OST $last_lun"
10621                 return
10622         fi
10623
10624         cleanup_130
10625
10626         echo "FIEMAP with continuation calls succeeded"
10627 }
10628 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
10629
10630 test_130f() {
10631         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10632         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10633
10634         local fm_file=$DIR/$tfile
10635         $MULTIOP $fm_file oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T33554432c ||
10636                 error "multiop create with lov_delay_create on $fm_file"
10637
10638         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10639         filefrag_extents=$(filefrag -vek $fm_file |
10640                            awk '/extents? found/ { print $2 }')
10641         if [[ "$filefrag_extents" != "0" ]]; then
10642                 error "FIEMAP on $fm_file failed; " \
10643                       "returned $filefrag_extents expected 0"
10644         fi
10645
10646         rm -f $fm_file
10647 }
10648 run_test 130f "FIEMAP (unstriped file)"
10649
10650 # Test for writev/readv
10651 test_131a() {
10652         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 ||
10653                 error "writev test failed"
10654         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 ||
10655                 error "readv failed"
10656         rm -f $DIR/$tfile
10657 }
10658 run_test 131a "test iov's crossing stripe boundary for writev/readv"
10659
10660 test_131b() {
10661         local fsize=$((524288 + 1048576 + 1572864))
10662         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 &&
10663                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
10664                         error "append writev test failed"
10665
10666         ((fsize += 1572864 + 1048576))
10667         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 &&
10668                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
10669                         error "append writev test failed"
10670         rm -f $DIR/$tfile
10671 }
10672 run_test 131b "test append writev"
10673
10674 test_131c() {
10675         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
10676         error "NOT PASS"
10677 }
10678 run_test 131c "test read/write on file w/o objects"
10679
10680 test_131d() {
10681         rwv -f $DIR/$tfile -w -n 1 1572864
10682         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
10683         if [ "$NOB" != 1572864 ]; then
10684                 error "Short read filed: read $NOB bytes instead of 1572864"
10685         fi
10686         rm -f $DIR/$tfile
10687 }
10688 run_test 131d "test short read"
10689
10690 test_131e() {
10691         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
10692         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
10693         error "read hitting hole failed"
10694         rm -f $DIR/$tfile
10695 }
10696 run_test 131e "test read hitting hole"
10697
10698 check_stats() {
10699         local facet=$1
10700         local op=$2
10701         local want=${3:-0}
10702         local res
10703
10704         case $facet in
10705         mds*) res=$(do_facet $facet \
10706                    $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$op")
10707                  ;;
10708         ost*) res=$(do_facet $facet \
10709                    $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$op")
10710                  ;;
10711         *) error "Wrong facet '$facet'" ;;
10712         esac
10713         [ "$res" ] || error "The counter for $op on $facet was not incremented"
10714         # if the argument $3 is zero, it means any stat increment is ok.
10715         if [[ $want -gt 0 ]]; then
10716                 local count=$(echo $res | awk '{ print $2 }')
10717                 [[ $count -ne $want ]] &&
10718                         error "The $op counter on $facet is $count, not $want"
10719         fi
10720 }
10721
10722 test_133a() {
10723         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10724         remote_ost_nodsh && skip "remote OST with nodsh"
10725         remote_mds_nodsh && skip "remote MDS with nodsh"
10726         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
10727                 skip_env "MDS doesn't support rename stats"
10728
10729         local testdir=$DIR/${tdir}/stats_testdir
10730
10731         mkdir -p $DIR/${tdir}
10732
10733         # clear stats.
10734         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10735         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10736
10737         # verify mdt stats first.
10738         mkdir ${testdir} || error "mkdir failed"
10739         check_stats $SINGLEMDS "mkdir" 1
10740         touch ${testdir}/${tfile} || error "touch failed"
10741         check_stats $SINGLEMDS "open" 1
10742         check_stats $SINGLEMDS "close" 1
10743         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.8.54) ] && {
10744                 mknod ${testdir}/${tfile}-pipe p || error "mknod failed"
10745                 check_stats $SINGLEMDS "mknod" 2
10746         }
10747         rm -f ${testdir}/${tfile}-pipe || error "pipe remove failed"
10748         check_stats $SINGLEMDS "unlink" 1
10749         rm -f ${testdir}/${tfile} || error "file remove failed"
10750         check_stats $SINGLEMDS "unlink" 2
10751
10752         # remove working dir and check mdt stats again.
10753         rmdir ${testdir} || error "rmdir failed"
10754         check_stats $SINGLEMDS "rmdir" 1
10755
10756         local testdir1=$DIR/${tdir}/stats_testdir1
10757         mkdir -p ${testdir}
10758         mkdir -p ${testdir1}
10759         touch ${testdir1}/test1
10760         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
10761         check_stats $SINGLEMDS "crossdir_rename" 1
10762
10763         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
10764         check_stats $SINGLEMDS "samedir_rename" 1
10765
10766         rm -rf $DIR/${tdir}
10767 }
10768 run_test 133a "Verifying MDT stats ========================================"
10769
10770 test_133b() {
10771         local res
10772
10773         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10774         remote_ost_nodsh && skip "remote OST with nodsh"
10775         remote_mds_nodsh && skip "remote MDS with nodsh"
10776
10777         local testdir=$DIR/${tdir}/stats_testdir
10778
10779         mkdir -p ${testdir} || error "mkdir failed"
10780         touch ${testdir}/${tfile} || error "touch failed"
10781         cancel_lru_locks mdc
10782
10783         # clear stats.
10784         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10785         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10786
10787         # extra mdt stats verification.
10788         chmod 444 ${testdir}/${tfile} || error "chmod failed"
10789         check_stats $SINGLEMDS "setattr" 1
10790         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10791         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
10792         then            # LU-1740
10793                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
10794                 check_stats $SINGLEMDS "getattr" 1
10795         fi
10796         rm -rf $DIR/${tdir}
10797
10798         # when DNE is enabled, MDT uses STATFS RPC to ping other targets
10799         # so the check below is not reliable
10800         [ $MDSCOUNT -eq 1 ] || return 0
10801
10802         # Sleep to avoid a cached response.
10803         #define OBD_STATFS_CACHE_SECONDS 1
10804         sleep 2
10805         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10806         do_facet ost1 $LCTL set_param obdfilter.*.exports.*.stats=clear
10807         $LFS df || error "lfs failed"
10808         check_stats $SINGLEMDS "statfs" 1
10809
10810         # check aggregated statfs (LU-10018)
10811         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.54) ] &&
10812                 return 0
10813         [ $(lustre_version_code client) -lt $(version_code 2.11.54) ] &&
10814                 return 0
10815         sleep 2
10816         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10817         do_facet ost1 $LCTL set_param obdfilter.*.exports.*.stats=clear
10818         df $DIR
10819         check_stats $SINGLEMDS "statfs" 1
10820
10821         # We want to check that the client didn't send OST_STATFS to
10822         # ost1 but the MDT also uses OST_STATFS for precreate. So some
10823         # extra care is needed here.
10824         if remote_mds; then
10825                 local nid=$($LCTL list_nids | head -1 | sed  "s/\./\\\./g")
10826                 local param="obdfilter.$FSNAME-OST0000.exports.'$nid'.stats"
10827
10828                 res=$(do_facet ost1 $LCTL get_param $param | grep statfs)
10829                 [ "$res" ] && error "OST got STATFS"
10830         fi
10831
10832         return 0
10833 }
10834 run_test 133b "Verifying extra MDT stats =================================="
10835
10836 test_133c() {
10837         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10838         remote_ost_nodsh && skip "remote OST with nodsh"
10839         remote_mds_nodsh && skip "remote MDS with nodsh"
10840
10841         local testdir=$DIR/$tdir/stats_testdir
10842
10843         test_mkdir -p $testdir
10844
10845         # verify obdfilter stats.
10846         $LFS setstripe -c 1 -i 0 $testdir/$tfile
10847         sync
10848         cancel_lru_locks osc
10849         wait_delete_completed
10850
10851         # clear stats.
10852         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10853         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10854
10855         dd if=/dev/zero of=$testdir/$tfile conv=notrunc bs=512k count=1 ||
10856                 error "dd failed"
10857         sync
10858         cancel_lru_locks osc
10859         check_stats ost1 "write" 1
10860
10861         dd if=$testdir/$tfile of=/dev/null bs=1k count=1 || error "dd failed"
10862         check_stats ost1 "read" 1
10863
10864         > $testdir/$tfile || error "truncate failed"
10865         check_stats ost1 "punch" 1
10866
10867         rm -f $testdir/$tfile || error "file remove failed"
10868         wait_delete_completed
10869         check_stats ost1 "destroy" 1
10870
10871         rm -rf $DIR/$tdir
10872 }
10873 run_test 133c "Verifying OST stats ========================================"
10874
10875 order_2() {
10876         local value=$1
10877         local orig=$value
10878         local order=1
10879
10880         while [ $value -ge 2 ]; do
10881                 order=$((order*2))
10882                 value=$((value/2))
10883         done
10884
10885         if [ $orig -gt $order ]; then
10886                 order=$((order*2))
10887         fi
10888         echo $order
10889 }
10890
10891 size_in_KMGT() {
10892     local value=$1
10893     local size=('K' 'M' 'G' 'T');
10894     local i=0
10895     local size_string=$value
10896
10897     while [ $value -ge 1024 ]; do
10898         if [ $i -gt 3 ]; then
10899             #T is the biggest unit we get here, if that is bigger,
10900             #just return XXXT
10901             size_string=${value}T
10902             break
10903         fi
10904         value=$((value >> 10))
10905         if [ $value -lt 1024 ]; then
10906             size_string=${value}${size[$i]}
10907             break
10908         fi
10909         i=$((i + 1))
10910     done
10911
10912     echo $size_string
10913 }
10914
10915 get_rename_size() {
10916         local size=$1
10917         local context=${2:-.}
10918         local sample=$(do_facet $SINGLEMDS $LCTL \
10919                 get_param mdt.$FSNAME-MDT0000.rename_stats |
10920                 grep -A1 $context |
10921                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
10922         echo $sample
10923 }
10924
10925 test_133d() {
10926         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10927         remote_ost_nodsh && skip "remote OST with nodsh"
10928         remote_mds_nodsh && skip "remote MDS with nodsh"
10929         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
10930                 skip_env "MDS doesn't support rename stats"
10931
10932         local testdir1=$DIR/${tdir}/stats_testdir1
10933         local testdir2=$DIR/${tdir}/stats_testdir2
10934         mkdir -p $DIR/${tdir}
10935
10936         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
10937
10938         lfs mkdir -i 0 -c 1 ${testdir1} || error "mkdir failed"
10939         lfs mkdir -i 0 -c 1 ${testdir2} || error "mkdir failed"
10940
10941         createmany -o $testdir1/test 512 || error "createmany failed"
10942
10943         # check samedir rename size
10944         mv ${testdir1}/test0 ${testdir1}/test_0
10945
10946         local testdir1_size=$(ls -l $DIR/${tdir} |
10947                 awk '/stats_testdir1/ {print $5}')
10948         local testdir2_size=$(ls -l $DIR/${tdir} |
10949                 awk '/stats_testdir2/ {print $5}')
10950
10951         testdir1_size=$(order_2 $testdir1_size)
10952         testdir2_size=$(order_2 $testdir2_size)
10953
10954         testdir1_size=$(size_in_KMGT $testdir1_size)
10955         testdir2_size=$(size_in_KMGT $testdir2_size)
10956
10957         echo "source rename dir size: ${testdir1_size}"
10958         echo "target rename dir size: ${testdir2_size}"
10959
10960         local cmd="do_facet $SINGLEMDS $LCTL "
10961         cmd+="get_param mdt.$FSNAME-MDT0000.rename_stats"
10962
10963         eval $cmd || error "$cmd failed"
10964         local samedir=$($cmd | grep 'same_dir')
10965         local same_sample=$(get_rename_size $testdir1_size)
10966         [ -z "$samedir" ] && error "samedir_rename_size count error"
10967         [[ $same_sample -eq 1 ]] ||
10968                 error "samedir_rename_size error $same_sample"
10969         echo "Check same dir rename stats success"
10970
10971         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
10972
10973         # check crossdir rename size
10974         mv ${testdir1}/test_0 ${testdir2}/test_0
10975
10976         testdir1_size=$(ls -l $DIR/${tdir} |
10977                 awk '/stats_testdir1/ {print $5}')
10978         testdir2_size=$(ls -l $DIR/${tdir} |
10979                 awk '/stats_testdir2/ {print $5}')
10980
10981         testdir1_size=$(order_2 $testdir1_size)
10982         testdir2_size=$(order_2 $testdir2_size)
10983
10984         testdir1_size=$(size_in_KMGT $testdir1_size)
10985         testdir2_size=$(size_in_KMGT $testdir2_size)
10986
10987         echo "source rename dir size: ${testdir1_size}"
10988         echo "target rename dir size: ${testdir2_size}"
10989
10990         eval $cmd || error "$cmd failed"
10991         local crossdir=$($cmd | grep 'crossdir')
10992         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
10993         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
10994         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
10995         [[ $src_sample -eq 1 ]] ||
10996                 error "crossdir_rename_size error $src_sample"
10997         [[ $tgt_sample -eq 1 ]] ||
10998                 error "crossdir_rename_size error $tgt_sample"
10999         echo "Check cross dir rename stats success"
11000         rm -rf $DIR/${tdir}
11001 }
11002 run_test 133d "Verifying rename_stats ========================================"
11003
11004 test_133e() {
11005         remote_mds_nodsh && skip "remote MDS with nodsh"
11006         remote_ost_nodsh && skip "remote OST with nodsh"
11007         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11008
11009         local testdir=$DIR/${tdir}/stats_testdir
11010         local ctr f0 f1 bs=32768 count=42 sum
11011
11012         mkdir -p ${testdir} || error "mkdir failed"
11013
11014         $LFS setstripe -c 1 -i 0 ${testdir}/${tfile}
11015
11016         for ctr in {write,read}_bytes; do
11017                 sync
11018                 cancel_lru_locks osc
11019
11020                 do_facet ost1 $LCTL set_param -n \
11021                         "obdfilter.*.exports.clear=clear"
11022
11023                 if [ $ctr = write_bytes ]; then
11024                         f0=/dev/zero
11025                         f1=${testdir}/${tfile}
11026                 else
11027                         f0=${testdir}/${tfile}
11028                         f1=/dev/null
11029                 fi
11030
11031                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
11032                         error "dd failed"
11033                 sync
11034                 cancel_lru_locks osc
11035
11036                 sum=$(do_facet ost1 $LCTL get_param \
11037                         "obdfilter.*.exports.*.stats" |
11038                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
11039                                 $1 == ctr { sum += $7 }
11040                                 END { printf("%0.0f", sum) }')
11041
11042                 if ((sum != bs * count)); then
11043                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
11044                 fi
11045         done
11046
11047         rm -rf $DIR/${tdir}
11048 }
11049 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
11050
11051 proc_regexp="/{proc,sys}/{fs,sys,kernel/debug}/{lustre,lnet}/"
11052
11053 # Some versions of find (4.5.11, 4.5.14) included in CentOS 7.3-7.5 do
11054 # not honor the -ignore_readdir_race option correctly. So we call
11055 # error_ignore() rather than error() in these cases. See LU-11152.
11056 error_133() {
11057         if (find --version; do_facet mds1 find --version) |
11058                 grep -q '\b4\.5\.1[1-4]\b'; then
11059                 error_ignore LU-11152 "$@"
11060         else
11061                 error "$@"
11062         fi
11063 }
11064
11065 test_133f() {
11066         # First without trusting modes.
11067         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
11068         echo "proc_dirs='$proc_dirs'"
11069         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
11070         find $proc_dirs -exec cat '{}' \; &> /dev/null
11071
11072         # Second verifying readability.
11073         $LCTL get_param -R '*' &> /dev/null
11074
11075         # Verifing writability with badarea_io.
11076         find $proc_dirs \
11077                 -ignore_readdir_race \
11078                 -type f \
11079                 -not -name force_lbug \
11080                 -not -name changelog_mask \
11081                 -exec badarea_io '{}' \; ||
11082                         error_133 "find $proc_dirs failed"
11083 }
11084 run_test 133f "Check reads/writes of client lustre proc files with bad area io"
11085
11086 test_133g() {
11087         remote_mds_nodsh && skip "remote MDS with nodsh"
11088         remote_ost_nodsh && skip "remote OST with nodsh"
11089
11090         # eventually, this can also be replaced with "lctl get_param -R",
11091         # but not until that option is always available on the server
11092         local facet
11093         for facet in mds1 ost1; do
11094                 [ $(lustre_version_code $facet) -le $(version_code 2.5.54) ] &&
11095                         skip_noexit "Too old lustre on $facet"
11096                 local facet_proc_dirs=$(do_facet $facet \
11097                                         \\\ls -d $proc_regexp 2>/dev/null)
11098                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
11099                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
11100                 do_facet $facet find $facet_proc_dirs \
11101                         ! -name req_history \
11102                         -exec cat '{}' \\\; &> /dev/null
11103
11104                 do_facet $facet find $facet_proc_dirs \
11105                         ! -name req_history \
11106                         -type f \
11107                         -exec cat '{}' \\\; &> /dev/null ||
11108                                 error "proc file read failed"
11109
11110                 do_facet $facet find $facet_proc_dirs \
11111                         -ignore_readdir_race \
11112                         -type f \
11113                         -not -name force_lbug \
11114                         -not -name changelog_mask \
11115                         -exec badarea_io '{}' \\\; ||
11116                                 error_133 "$facet find $facet_proc_dirs failed"
11117         done
11118
11119         # remount the FS in case writes/reads /proc break the FS
11120         cleanup || error "failed to unmount"
11121         setup || error "failed to setup"
11122         true
11123 }
11124 run_test 133g "Check reads/writes of server lustre proc files with bad area io"
11125
11126 test_133h() {
11127         remote_mds_nodsh && skip "remote MDS with nodsh"
11128         remote_ost_nodsh && skip "remote OST with nodsh"
11129         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.54) ]] &&
11130                 skip "Need MDS version at least 2.9.54"
11131
11132         local facet
11133
11134         for facet in client mds1 ost1; do
11135                 local facet_proc_dirs=$(do_facet $facet \
11136                                         \\\ls -d $proc_regexp 2> /dev/null)
11137                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
11138                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
11139                 # Get the list of files that are missing the terminating newline
11140                 local missing=($(do_facet $facet \
11141                         find ${facet_proc_dirs} -type f \|              \
11142                                 while read F\; do                       \
11143                                         awk -v FS='\v' -v RS='\v\v'     \
11144                                         "'END { if(NR>0 &&              \
11145                                         \\\$NF !~ /.*\\\n\$/)           \
11146                                                 print FILENAME}'"       \
11147                                         '\$F'\;                         \
11148                                 done 2>/dev/null))
11149                 [ ${#missing[*]} -eq 0 ] ||
11150                         error "files do not end with newline: ${missing[*]}"
11151         done
11152 }
11153 run_test 133h "Proc files should end with newlines"
11154
11155 test_134a() {
11156         remote_mds_nodsh && skip "remote MDS with nodsh"
11157         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
11158                 skip "Need MDS version at least 2.7.54"
11159
11160         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
11161         cancel_lru_locks mdc
11162
11163         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
11164         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
11165         [ $unused -eq 0 ] || error "$unused locks are not cleared"
11166
11167         local nr=1000
11168         createmany -o $DIR/$tdir/f $nr ||
11169                 error "failed to create $nr files in $DIR/$tdir"
11170         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
11171
11172         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
11173         do_facet mds1 $LCTL set_param fail_loc=0x327
11174         do_facet mds1 $LCTL set_param fail_val=500
11175         touch $DIR/$tdir/m
11176
11177         echo "sleep 10 seconds ..."
11178         sleep 10
11179         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
11180
11181         do_facet mds1 $LCTL set_param fail_loc=0
11182         do_facet mds1 $LCTL set_param fail_val=0
11183         [ $lck_cnt -lt $unused ] ||
11184                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
11185
11186         rm $DIR/$tdir/m
11187         unlinkmany $DIR/$tdir/f $nr
11188 }
11189 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
11190
11191 test_134b() {
11192         remote_mds_nodsh && skip "remote MDS with nodsh"
11193         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
11194                 skip "Need MDS version at least 2.7.54"
11195
11196         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
11197         cancel_lru_locks mdc
11198
11199         local low_wm=$(do_facet mds1 $LCTL get_param -n \
11200                         ldlm.lock_reclaim_threshold_mb)
11201         # disable reclaim temporarily
11202         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
11203
11204         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
11205         do_facet mds1 $LCTL set_param fail_loc=0x328
11206         do_facet mds1 $LCTL set_param fail_val=500
11207
11208         $LCTL set_param debug=+trace
11209
11210         local nr=600
11211         createmany -o $DIR/$tdir/f $nr &
11212         local create_pid=$!
11213
11214         echo "Sleep $TIMEOUT seconds ..."
11215         sleep $TIMEOUT
11216         if ! ps -p $create_pid  > /dev/null 2>&1; then
11217                 do_facet mds1 $LCTL set_param fail_loc=0
11218                 do_facet mds1 $LCTL set_param fail_val=0
11219                 do_facet mds1 $LCTL set_param \
11220                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
11221                 error "createmany finished incorrectly!"
11222         fi
11223         do_facet mds1 $LCTL set_param fail_loc=0
11224         do_facet mds1 $LCTL set_param fail_val=0
11225         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
11226         wait $create_pid || return 1
11227
11228         unlinkmany $DIR/$tdir/f $nr
11229 }
11230 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
11231
11232 test_140() { #bug-17379
11233         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11234
11235         test_mkdir $DIR/$tdir
11236         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
11237         cp $(which stat) . || error "Copying stat to $DIR/$tdir"
11238
11239         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
11240         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
11241         local i=0
11242         while i=$((i + 1)); do
11243                 test_mkdir $i
11244                 cd $i || error "Changing to $i"
11245                 ln -s ../stat stat || error "Creating stat symlink"
11246                 # Read the symlink until ELOOP present,
11247                 # not LBUGing the system is considered success,
11248                 # we didn't overrun the stack.
11249                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
11250                 if [ $ret -ne 0 ]; then
11251                         if [ $ret -eq 40 ]; then
11252                                 break  # -ELOOP
11253                         else
11254                                 error "Open stat symlink"
11255                                         return
11256                         fi
11257                 fi
11258         done
11259         i=$((i - 1))
11260         echo "The symlink depth = $i"
11261         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
11262                                         error "Invalid symlink depth"
11263
11264         # Test recursive symlink
11265         ln -s symlink_self symlink_self
11266         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
11267         echo "open symlink_self returns $ret"
11268         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
11269 }
11270 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
11271
11272 test_150() {
11273         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11274
11275         local TF="$TMP/$tfile"
11276
11277         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
11278         cp $TF $DIR/$tfile
11279         cancel_lru_locks $OSC
11280         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
11281         remount_client $MOUNT
11282         df -P $MOUNT
11283         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
11284
11285         $TRUNCATE $TF 6000
11286         $TRUNCATE $DIR/$tfile 6000
11287         cancel_lru_locks $OSC
11288         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
11289
11290         echo "12345" >>$TF
11291         echo "12345" >>$DIR/$tfile
11292         cancel_lru_locks $OSC
11293         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
11294
11295         echo "12345" >>$TF
11296         echo "12345" >>$DIR/$tfile
11297         cancel_lru_locks $OSC
11298         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
11299
11300         rm -f $TF
11301         true
11302 }
11303 run_test 150 "truncate/append tests"
11304
11305 #LU-2902 roc_hit was not able to read all values from lproc
11306 function roc_hit_init() {
11307         local list=$(comma_list $(osts_nodes))
11308         local dir=$DIR/$tdir-check
11309         local file=$dir/$tfile
11310         local BEFORE
11311         local AFTER
11312         local idx
11313
11314         test_mkdir $dir
11315         #use setstripe to do a write to every ost
11316         for i in $(seq 0 $((OSTCOUNT-1))); do
11317                 $LFS setstripe -c 1 -i $i $dir || error "$LFS setstripe $file failed"
11318                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
11319                 idx=$(printf %04x $i)
11320                 BEFORE=$(get_osd_param $list *OST*$idx stats |
11321                         awk '$1 == "cache_access" {sum += $7}
11322                                 END { printf("%0.0f", sum) }')
11323
11324                 cancel_lru_locks osc
11325                 cat $file >/dev/null
11326
11327                 AFTER=$(get_osd_param $list *OST*$idx stats |
11328                         awk '$1 == "cache_access" {sum += $7}
11329                                 END { printf("%0.0f", sum) }')
11330
11331                 echo BEFORE:$BEFORE AFTER:$AFTER
11332                 if ! let "AFTER - BEFORE == 4"; then
11333                         rm -rf $dir
11334                         error "roc_hit is not safe to use"
11335                 fi
11336                 rm $file
11337         done
11338
11339         rm -rf $dir
11340 }
11341
11342 function roc_hit() {
11343         local list=$(comma_list $(osts_nodes))
11344         echo $(get_osd_param $list '' stats |
11345                 awk '$1 == "cache_hit" {sum += $7}
11346                         END { printf("%0.0f", sum) }')
11347 }
11348
11349 function set_cache() {
11350         local on=1
11351
11352         if [ "$2" == "off" ]; then
11353                 on=0;
11354         fi
11355         local list=$(comma_list $(osts_nodes))
11356         set_osd_param $list '' $1_cache_enable $on
11357
11358         cancel_lru_locks osc
11359 }
11360
11361 test_151() {
11362         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11363         remote_ost_nodsh && skip "remote OST with nodsh"
11364
11365         local CPAGES=3
11366         local list=$(comma_list $(osts_nodes))
11367
11368         # check whether obdfilter is cache capable at all
11369         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
11370                 skip "not cache-capable obdfilter"
11371         fi
11372
11373         # check cache is enabled on all obdfilters
11374         if get_osd_param $list '' read_cache_enable | grep 0; then
11375                 skip "oss cache is disabled"
11376         fi
11377
11378         set_osd_param $list '' writethrough_cache_enable 1
11379
11380         # check write cache is enabled on all obdfilters
11381         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
11382                 skip "oss write cache is NOT enabled"
11383         fi
11384
11385         roc_hit_init
11386
11387         #define OBD_FAIL_OBD_NO_LRU  0x609
11388         do_nodes $list $LCTL set_param fail_loc=0x609
11389
11390         # pages should be in the case right after write
11391         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
11392                 error "dd failed"
11393
11394         local BEFORE=$(roc_hit)
11395         cancel_lru_locks osc
11396         cat $DIR/$tfile >/dev/null
11397         local AFTER=$(roc_hit)
11398
11399         do_nodes $list $LCTL set_param fail_loc=0
11400
11401         if ! let "AFTER - BEFORE == CPAGES"; then
11402                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11403         fi
11404
11405         # the following read invalidates the cache
11406         cancel_lru_locks osc
11407         set_osd_param $list '' read_cache_enable 0
11408         cat $DIR/$tfile >/dev/null
11409
11410         # now data shouldn't be found in the cache
11411         BEFORE=$(roc_hit)
11412         cancel_lru_locks osc
11413         cat $DIR/$tfile >/dev/null
11414         AFTER=$(roc_hit)
11415         if let "AFTER - BEFORE != 0"; then
11416                 error "IN CACHE: before: $BEFORE, after: $AFTER"
11417         fi
11418
11419         set_osd_param $list '' read_cache_enable 1
11420         rm -f $DIR/$tfile
11421 }
11422 run_test 151 "test cache on oss and controls ==============================="
11423
11424 test_152() {
11425         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11426
11427         local TF="$TMP/$tfile"
11428
11429         # simulate ENOMEM during write
11430 #define OBD_FAIL_OST_NOMEM      0x226
11431         lctl set_param fail_loc=0x80000226
11432         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
11433         cp $TF $DIR/$tfile
11434         sync || error "sync failed"
11435         lctl set_param fail_loc=0
11436
11437         # discard client's cache
11438         cancel_lru_locks osc
11439
11440         # simulate ENOMEM during read
11441         lctl set_param fail_loc=0x80000226
11442         cmp $TF $DIR/$tfile || error "cmp failed"
11443         lctl set_param fail_loc=0
11444
11445         rm -f $TF
11446 }
11447 run_test 152 "test read/write with enomem ============================"
11448
11449 test_153() {
11450         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
11451 }
11452 run_test 153 "test if fdatasync does not crash ======================="
11453
11454 dot_lustre_fid_permission_check() {
11455         local fid=$1
11456         local ffid=$MOUNT/.lustre/fid/$fid
11457         local test_dir=$2
11458
11459         echo "stat fid $fid"
11460         stat $ffid > /dev/null || error "stat $ffid failed."
11461         echo "touch fid $fid"
11462         touch $ffid || error "touch $ffid failed."
11463         echo "write to fid $fid"
11464         cat /etc/hosts > $ffid || error "write $ffid failed."
11465         echo "read fid $fid"
11466         diff /etc/hosts $ffid || error "read $ffid failed."
11467         echo "append write to fid $fid"
11468         cat /etc/hosts >> $ffid || error "append write $ffid failed."
11469         echo "rename fid $fid"
11470         mv $ffid $test_dir/$tfile.1 &&
11471                 error "rename $ffid to $tfile.1 should fail."
11472         touch $test_dir/$tfile.1
11473         mv $test_dir/$tfile.1 $ffid &&
11474                 error "rename $tfile.1 to $ffid should fail."
11475         rm -f $test_dir/$tfile.1
11476         echo "truncate fid $fid"
11477         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
11478         echo "link fid $fid"
11479         ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
11480         if [[ $($LCTL get_param -n mdc.*-mdc-*.connect_flags) =~ acl ]]; then
11481                 echo "setfacl fid $fid"
11482                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
11483                 echo "getfacl fid $fid"
11484                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
11485         fi
11486         echo "unlink fid $fid"
11487         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
11488         echo "mknod fid $fid"
11489         mknod $ffid c 1 3 && error "mknod $ffid should fail."
11490
11491         fid=[0xf00000400:0x1:0x0]
11492         ffid=$MOUNT/.lustre/fid/$fid
11493
11494         echo "stat non-exist fid $fid"
11495         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
11496         echo "write to non-exist fid $fid"
11497         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
11498         echo "link new fid $fid"
11499         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
11500
11501         mkdir -p $test_dir/$tdir
11502         touch $test_dir/$tdir/$tfile
11503         fid=$($LFS path2fid $test_dir/$tdir)
11504         rc=$?
11505         [ $rc -ne 0 ] &&
11506                 error "error: could not get fid for $test_dir/$dir/$tfile."
11507
11508         ffid=$MOUNT/.lustre/fid/$fid
11509
11510         echo "ls $fid"
11511         ls $ffid > /dev/null || error "ls $ffid failed."
11512         echo "touch $fid/$tfile.1"
11513         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
11514
11515         echo "touch $MOUNT/.lustre/fid/$tfile"
11516         touch $MOUNT/.lustre/fid/$tfile && \
11517                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
11518
11519         echo "setxattr to $MOUNT/.lustre/fid"
11520         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
11521
11522         echo "listxattr for $MOUNT/.lustre/fid"
11523         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
11524
11525         echo "delxattr from $MOUNT/.lustre/fid"
11526         setfattr -x trusted.name1 $MOUNT/.lustre/fid
11527
11528         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
11529         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
11530                 error "touch invalid fid should fail."
11531
11532         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
11533         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
11534                 error "touch non-normal fid should fail."
11535
11536         echo "rename $tdir to $MOUNT/.lustre/fid"
11537         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
11538                 error "rename to $MOUNT/.lustre/fid should fail."
11539
11540         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
11541         then            # LU-3547
11542                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
11543                 local new_obf_mode=777
11544
11545                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
11546                 chmod $new_obf_mode $DIR/.lustre/fid ||
11547                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
11548
11549                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
11550                 [ $obf_mode -eq $new_obf_mode ] ||
11551                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
11552
11553                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
11554                 chmod $old_obf_mode $DIR/.lustre/fid ||
11555                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
11556         fi
11557
11558         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
11559         fid=$($LFS path2fid $test_dir/$tfile-2)
11560
11561         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.50) ]
11562         then # LU-5424
11563                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
11564                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
11565                         error "create lov data thru .lustre failed"
11566         fi
11567         echo "cp /etc/passwd $test_dir/$tfile-2"
11568         cp /etc/passwd $test_dir/$tfile-2 ||
11569                 error "copy to $test_dir/$tfile-2 failed."
11570         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
11571         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
11572                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
11573
11574         rm -rf $test_dir/tfile.lnk
11575         rm -rf $test_dir/$tfile-2
11576 }
11577
11578 test_154A() {
11579         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
11580                 skip "Need MDS version at least 2.4.1"
11581
11582         local tf=$DIR/$tfile
11583         touch $tf
11584
11585         local fid=$($LFS path2fid $tf)
11586         [ -z "$fid" ] && error "path2fid unable to get $tf FID"
11587
11588         # check that we get the same pathname back
11589         local found=$($LFS fid2path $MOUNT "$fid")
11590         [ -z "$found" ] && error "fid2path unable to get '$fid' path"
11591         [ "$found" == "$tf" ] ||
11592                 error "fid2path($fid=path2fid($tf)) = $found != $tf"
11593 }
11594 run_test 154A "lfs path2fid and fid2path basic checks"
11595
11596 test_154B() {
11597         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
11598                 skip "Need MDS version at least 2.4.1"
11599
11600         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
11601         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
11602         local linkea=$($LL_DECODE_LINKEA $DIR/$tdir/$tfile | grep 'pfid')
11603         [ -z "$linkea" ] && error "decode linkea $DIR/$tdir/$tfile failed"
11604
11605         local name=$(echo $linkea | awk '/pfid/ {print $5}' | sed -e "s/'//g")
11606         local PFID=$(echo $linkea | awk '/pfid/ {print $3}' | sed -e "s/,//g")
11607
11608         # check that we get the same pathname
11609         echo "PFID: $PFID, name: $name"
11610         local FOUND=$($LFS fid2path $MOUNT "$PFID")
11611         [ -z "$FOUND" ] && error "fid2path unable to get $PFID path"
11612         [ "$FOUND/$name" != "$DIR/$tdir/$tfile" ] &&
11613                 error "ll_decode_linkea has $FOUND/$name != $DIR/$tdir/$tfile"
11614
11615         rm -rf $DIR/$tdir || error "Can not delete directory $DIR/$tdir"
11616 }
11617 run_test 154B "verify the ll_decode_linkea tool"
11618
11619 test_154a() {
11620         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11621         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11622         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
11623                 skip "Need MDS version at least 2.2.51"
11624         [ -z "$(which setfacl)" ] && skip_env "must have setfacl tool"
11625
11626         cp /etc/hosts $DIR/$tfile
11627
11628         fid=$($LFS path2fid $DIR/$tfile)
11629         rc=$?
11630         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
11631
11632         dot_lustre_fid_permission_check "$fid" $DIR ||
11633                 error "dot lustre permission check $fid failed"
11634
11635         ls -a $MOUNT | grep "\.lustre" && error ".lustre should not be listed"
11636
11637         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
11638
11639         touch $MOUNT/.lustre/file &&
11640                 error "creation is not allowed under .lustre"
11641
11642         mkdir $MOUNT/.lustre/dir &&
11643                 error "mkdir is not allowed under .lustre"
11644
11645         rm -rf $DIR/$tfile
11646 }
11647 run_test 154a "Open-by-FID"
11648
11649 test_154b() {
11650         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11651         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11652         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
11653         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
11654                 skip "Need MDS version at least 2.2.51"
11655
11656         local remote_dir=$DIR/$tdir/remote_dir
11657         local MDTIDX=1
11658         local rc=0
11659
11660         mkdir -p $DIR/$tdir
11661         $LFS mkdir -i $MDTIDX $remote_dir ||
11662                 error "create remote directory failed"
11663
11664         cp /etc/hosts $remote_dir/$tfile
11665
11666         fid=$($LFS path2fid $remote_dir/$tfile)
11667         rc=$?
11668         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
11669
11670         dot_lustre_fid_permission_check "$fid" $remote_dir ||
11671                 error "dot lustre permission check $fid failed"
11672         rm -rf $DIR/$tdir
11673 }
11674 run_test 154b "Open-by-FID for remote directory"
11675
11676 test_154c() {
11677         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
11678                 skip "Need MDS version at least 2.4.1"
11679
11680         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
11681         local FID1=$($LFS path2fid $DIR/$tfile.1)
11682         local FID2=$($LFS path2fid $DIR/$tfile.2)
11683         local FID3=$($LFS path2fid $DIR/$tfile.3)
11684
11685         local N=1
11686         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
11687                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
11688                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
11689                 local want=FID$N
11690                 [ "$FID" = "${!want}" ] ||
11691                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
11692                 N=$((N + 1))
11693         done
11694
11695         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
11696         do
11697                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
11698                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
11699                 N=$((N + 1))
11700         done
11701 }
11702 run_test 154c "lfs path2fid and fid2path multiple arguments"
11703
11704 test_154d() {
11705         remote_mds_nodsh && skip "remote MDS with nodsh"
11706         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.53) ]] &&
11707                 skip "Need MDS version at least 2.5.53"
11708
11709         if remote_mds; then
11710                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
11711         else
11712                 nid="0@lo"
11713         fi
11714         local proc_ofile="mdt.*.exports.'$nid'.open_files"
11715         local fd
11716         local cmd
11717
11718         rm -f $DIR/$tfile
11719         touch $DIR/$tfile
11720
11721         local fid=$($LFS path2fid $DIR/$tfile)
11722         # Open the file
11723         fd=$(free_fd)
11724         cmd="exec $fd<$DIR/$tfile"
11725         eval $cmd
11726         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
11727         echo "$fid_list" | grep "$fid"
11728         rc=$?
11729
11730         cmd="exec $fd>/dev/null"
11731         eval $cmd
11732         if [ $rc -ne 0 ]; then
11733                 error "FID $fid not found in open files list $fid_list"
11734         fi
11735 }
11736 run_test 154d "Verify open file fid"
11737
11738 test_154e()
11739 {
11740         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.50) ]] &&
11741                 skip "Need MDS version at least 2.6.50"
11742
11743         if ls -a $MOUNT | grep -q '^\.lustre$'; then
11744                 error ".lustre returned by readdir"
11745         fi
11746 }
11747 run_test 154e ".lustre is not returned by readdir"
11748
11749 test_154f() {
11750         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11751
11752         # create parent directory on a single MDT to avoid cross-MDT hardlinks
11753         test_mkdir -p -c1 $DIR/$tdir/d
11754         # test dirs inherit from its stripe
11755         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
11756         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
11757         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
11758         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
11759         touch $DIR/f
11760
11761         # get fid of parents
11762         local FID0=$($LFS path2fid $DIR/$tdir/d)
11763         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
11764         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
11765         local FID3=$($LFS path2fid $DIR)
11766
11767         # check that path2fid --parents returns expected <parent_fid>/name
11768         # 1) test for a directory (single parent)
11769         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
11770         [ "$parent" == "$FID0/foo1" ] ||
11771                 error "expected parent: $FID0/foo1, got: $parent"
11772
11773         # 2) test for a file with nlink > 1 (multiple parents)
11774         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
11775         echo "$parent" | grep -F "$FID1/$tfile" ||
11776                 error "$FID1/$tfile not returned in parent list"
11777         echo "$parent" | grep -F "$FID2/link" ||
11778                 error "$FID2/link not returned in parent list"
11779
11780         # 3) get parent by fid
11781         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
11782         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11783         echo "$parent" | grep -F "$FID1/$tfile" ||
11784                 error "$FID1/$tfile not returned in parent list (by fid)"
11785         echo "$parent" | grep -F "$FID2/link" ||
11786                 error "$FID2/link not returned in parent list (by fid)"
11787
11788         # 4) test for entry in root directory
11789         parent=$($LFS path2fid --parents $DIR/f)
11790         echo "$parent" | grep -F "$FID3/f" ||
11791                 error "$FID3/f not returned in parent list"
11792
11793         # 5) test it on root directory
11794         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
11795                 error "$MOUNT should not have parents"
11796
11797         # enable xattr caching and check that linkea is correctly updated
11798         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
11799         save_lustre_params client "llite.*.xattr_cache" > $save
11800         lctl set_param llite.*.xattr_cache 1
11801
11802         # 6.1) linkea update on rename
11803         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
11804
11805         # get parents by fid
11806         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11807         # foo1 should no longer be returned in parent list
11808         echo "$parent" | grep -F "$FID1" &&
11809                 error "$FID1 should no longer be in parent list"
11810         # the new path should appear
11811         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
11812                 error "$FID2/$tfile.moved is not in parent list"
11813
11814         # 6.2) linkea update on unlink
11815         rm -f $DIR/$tdir/d/foo2/link
11816         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11817         # foo2/link should no longer be returned in parent list
11818         echo "$parent" | grep -F "$FID2/link" &&
11819                 error "$FID2/link should no longer be in parent list"
11820         true
11821
11822         rm -f $DIR/f
11823         restore_lustre_params < $save
11824         rm -f $save
11825 }
11826 run_test 154f "get parent fids by reading link ea"
11827
11828 test_154g()
11829 {
11830         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11831         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.92) && \
11832            $(lustre_version_code client) -gt $(version_code 2.6.99) ]] ||
11833                 skip "Need MDS version at least 2.6.92"
11834
11835         mkdir -p $DIR/$tdir
11836         llapi_fid_test -d $DIR/$tdir
11837 }
11838 run_test 154g "various llapi FID tests"
11839
11840 test_155_small_load() {
11841     local temp=$TMP/$tfile
11842     local file=$DIR/$tfile
11843
11844     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
11845         error "dd of=$temp bs=6096 count=1 failed"
11846     cp $temp $file
11847     cancel_lru_locks $OSC
11848     cmp $temp $file || error "$temp $file differ"
11849
11850     $TRUNCATE $temp 6000
11851     $TRUNCATE $file 6000
11852     cmp $temp $file || error "$temp $file differ (truncate1)"
11853
11854     echo "12345" >>$temp
11855     echo "12345" >>$file
11856     cmp $temp $file || error "$temp $file differ (append1)"
11857
11858     echo "12345" >>$temp
11859     echo "12345" >>$file
11860     cmp $temp $file || error "$temp $file differ (append2)"
11861
11862     rm -f $temp $file
11863     true
11864 }
11865
11866 test_155_big_load() {
11867         remote_ost_nodsh && skip "remote OST with nodsh"
11868
11869         local temp=$TMP/$tfile
11870         local file=$DIR/$tfile
11871
11872         free_min_max
11873         local cache_size=$(do_facet ost$((MAXI+1)) \
11874                 "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
11875         local large_file_size=$((cache_size * 2))
11876
11877         echo "OSS cache size: $cache_size KB"
11878         echo "Large file size: $large_file_size KB"
11879
11880         [ $MAXV -le $large_file_size ] &&
11881                 skip_env "max available OST size needs > $large_file_size KB"
11882
11883         $LFS setstripe $file -c 1 -i $MAXI || error "$LFS setstripe $file failed"
11884
11885         dd if=/dev/urandom of=$temp bs=$large_file_size count=1k ||
11886                 error "dd of=$temp bs=$large_file_size count=1k failed"
11887         cp $temp $file
11888         ls -lh $temp $file
11889         cancel_lru_locks osc
11890         cmp $temp $file || error "$temp $file differ"
11891
11892         rm -f $temp $file
11893         true
11894 }
11895
11896 save_writethrough() {
11897         local facets=$(get_facets OST)
11898
11899         save_lustre_params $facets "osd-*.*.writethrough_cache_enable" > $1
11900 }
11901
11902 test_155a() {
11903         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11904
11905         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11906
11907         save_writethrough $p
11908
11909         set_cache read on
11910         set_cache writethrough on
11911         test_155_small_load
11912         restore_lustre_params < $p
11913         rm -f $p
11914 }
11915 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
11916
11917 test_155b() {
11918         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11919
11920         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11921
11922         save_writethrough $p
11923
11924         set_cache read on
11925         set_cache writethrough off
11926         test_155_small_load
11927         restore_lustre_params < $p
11928         rm -f $p
11929 }
11930 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
11931
11932 test_155c() {
11933         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11934
11935         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11936
11937         save_writethrough $p
11938
11939         set_cache read off
11940         set_cache writethrough on
11941         test_155_small_load
11942         restore_lustre_params < $p
11943         rm -f $p
11944 }
11945 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
11946
11947 test_155d() {
11948         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11949
11950         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11951
11952         save_writethrough $p
11953
11954         set_cache read off
11955         set_cache writethrough off
11956         test_155_small_load
11957         restore_lustre_params < $p
11958         rm -f $p
11959 }
11960 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
11961
11962 test_155e() {
11963         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11964
11965         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11966
11967         save_writethrough $p
11968
11969         set_cache read on
11970         set_cache writethrough on
11971         test_155_big_load
11972         restore_lustre_params < $p
11973         rm -f $p
11974 }
11975 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
11976
11977 test_155f() {
11978         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11979
11980         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11981
11982         save_writethrough $p
11983
11984         set_cache read on
11985         set_cache writethrough off
11986         test_155_big_load
11987         restore_lustre_params < $p
11988         rm -f $p
11989 }
11990 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
11991
11992 test_155g() {
11993         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11994
11995         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11996
11997         save_writethrough $p
11998
11999         set_cache read off
12000         set_cache writethrough on
12001         test_155_big_load
12002         restore_lustre_params < $p
12003         rm -f $p
12004 }
12005 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
12006
12007 test_155h() {
12008         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12009
12010         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12011
12012         save_writethrough $p
12013
12014         set_cache read off
12015         set_cache writethrough off
12016         test_155_big_load
12017         restore_lustre_params < $p
12018         rm -f $p
12019 }
12020 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
12021
12022 test_156() {
12023         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12024         remote_ost_nodsh && skip "remote OST with nodsh"
12025         [ "$(facet_fstype ost1)" = "zfs" -a \
12026            $(lustre_version_code ost1 -lt $(version_code 2.6.93)) ] &&
12027                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS"
12028
12029         local CPAGES=3
12030         local BEFORE
12031         local AFTER
12032         local file="$DIR/$tfile"
12033         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12034
12035         save_writethrough $p
12036         roc_hit_init
12037
12038         log "Turn on read and write cache"
12039         set_cache read on
12040         set_cache writethrough on
12041
12042         log "Write data and read it back."
12043         log "Read should be satisfied from the cache."
12044         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12045         BEFORE=$(roc_hit)
12046         cancel_lru_locks osc
12047         cat $file >/dev/null
12048         AFTER=$(roc_hit)
12049         if ! let "AFTER - BEFORE == CPAGES"; then
12050                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12051         else
12052                 log "cache hits:: before: $BEFORE, after: $AFTER"
12053         fi
12054
12055         log "Read again; it should be satisfied from the cache."
12056         BEFORE=$AFTER
12057         cancel_lru_locks osc
12058         cat $file >/dev/null
12059         AFTER=$(roc_hit)
12060         if ! let "AFTER - BEFORE == CPAGES"; then
12061                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12062         else
12063                 log "cache hits:: before: $BEFORE, after: $AFTER"
12064         fi
12065
12066         log "Turn off the read cache and turn on the write cache"
12067         set_cache read off
12068         set_cache writethrough on
12069
12070         log "Read again; it should be satisfied from the cache."
12071         BEFORE=$(roc_hit)
12072         cancel_lru_locks osc
12073         cat $file >/dev/null
12074         AFTER=$(roc_hit)
12075         if ! let "AFTER - BEFORE == CPAGES"; then
12076                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12077         else
12078                 log "cache hits:: before: $BEFORE, after: $AFTER"
12079         fi
12080
12081         log "Read again; it should not be satisfied from the cache."
12082         BEFORE=$AFTER
12083         cancel_lru_locks osc
12084         cat $file >/dev/null
12085         AFTER=$(roc_hit)
12086         if ! let "AFTER - BEFORE == 0"; then
12087                 error "IN CACHE: before: $BEFORE, after: $AFTER"
12088         else
12089                 log "cache hits:: before: $BEFORE, after: $AFTER"
12090         fi
12091
12092         log "Write data and read it back."
12093         log "Read should be satisfied from the cache."
12094         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12095         BEFORE=$(roc_hit)
12096         cancel_lru_locks osc
12097         cat $file >/dev/null
12098         AFTER=$(roc_hit)
12099         if ! let "AFTER - BEFORE == CPAGES"; then
12100                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12101         else
12102                 log "cache hits:: before: $BEFORE, after: $AFTER"
12103         fi
12104
12105         log "Read again; it should not be satisfied from the cache."
12106         BEFORE=$AFTER
12107         cancel_lru_locks osc
12108         cat $file >/dev/null
12109         AFTER=$(roc_hit)
12110         if ! let "AFTER - BEFORE == 0"; then
12111                 error "IN CACHE: before: $BEFORE, after: $AFTER"
12112         else
12113                 log "cache hits:: before: $BEFORE, after: $AFTER"
12114         fi
12115
12116         log "Turn off read and write cache"
12117         set_cache read off
12118         set_cache writethrough off
12119
12120         log "Write data and read it back"
12121         log "It should not be satisfied from the cache."
12122         rm -f $file
12123         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12124         cancel_lru_locks osc
12125         BEFORE=$(roc_hit)
12126         cat $file >/dev/null
12127         AFTER=$(roc_hit)
12128         if ! let "AFTER - BEFORE == 0"; then
12129                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
12130         else
12131                 log "cache hits:: before: $BEFORE, after: $AFTER"
12132         fi
12133
12134         log "Turn on the read cache and turn off the write cache"
12135         set_cache read on
12136         set_cache writethrough off
12137
12138         log "Write data and read it back"
12139         log "It should not be satisfied from the cache."
12140         rm -f $file
12141         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12142         BEFORE=$(roc_hit)
12143         cancel_lru_locks osc
12144         cat $file >/dev/null
12145         AFTER=$(roc_hit)
12146         if ! let "AFTER - BEFORE == 0"; then
12147                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
12148         else
12149                 log "cache hits:: before: $BEFORE, after: $AFTER"
12150         fi
12151
12152         log "Read again; it should be satisfied from the cache."
12153         BEFORE=$(roc_hit)
12154         cancel_lru_locks osc
12155         cat $file >/dev/null
12156         AFTER=$(roc_hit)
12157         if ! let "AFTER - BEFORE == CPAGES"; then
12158                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12159         else
12160                 log "cache hits:: before: $BEFORE, after: $AFTER"
12161         fi
12162
12163         restore_lustre_params < $p
12164         rm -f $p $file
12165 }
12166 run_test 156 "Verification of tunables"
12167
12168 test_160a() {
12169         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12170         remote_mds_nodsh && skip "remote MDS with nodsh"
12171         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
12172                 skip "Need MDS version at least 2.2.0"
12173
12174         changelog_register || error "changelog_register failed"
12175         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
12176         changelog_users $SINGLEMDS | grep -q $cl_user ||
12177                 error "User $cl_user not found in changelog_users"
12178
12179         # change something
12180         test_mkdir -p $DIR/$tdir/pics/2008/zachy
12181         changelog_clear 0 || error "changelog_clear failed"
12182         touch $DIR/$tdir/pics/2008/zachy/$tfile                 # open 1
12183         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg       # open 2
12184         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
12185         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
12186         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
12187         rm $DIR/$tdir/pics/desktop.jpg
12188
12189         changelog_dump | tail -10
12190
12191         echo "verifying changelog mask"
12192         changelog_chmask "-MKDIR"
12193         changelog_chmask "-CLOSE"
12194
12195         test_mkdir -p $DIR/$tdir/pics/zach/sofia                # not logged
12196         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # not logged
12197
12198         changelog_chmask "+MKDIR"
12199         changelog_chmask "+CLOSE"
12200
12201         test_mkdir -p $DIR/$tdir/pics/2008/sofia                # mkdir 1
12202         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # open 3
12203
12204         changelog_dump | tail -10
12205         MKDIRS=$(changelog_dump | grep -c "MKDIR")
12206         CLOSES=$(changelog_dump | grep -c "CLOSE")
12207         [ $MKDIRS -eq 1 ] || error "MKDIR changelog mask count $MKDIRS != 1"
12208         [ $CLOSES -eq 3 ] || error "CLOSE changelog mask count $CLOSES != 3"
12209
12210         # verify contents
12211         echo "verifying target fid"
12212         local fidc=$(changelog_extract_field "CREAT" "$tfile" "t=")
12213         local fidf=$($LFS path2fid $DIR/$tdir/pics/zach/$tfile)
12214         [ "$fidc" == "$fidf" ] ||
12215                 error "changelog '$tfile' fid $fidc != file fid $fidf"
12216         echo "verifying parent fid"
12217         # The FID returned from the Changelog may be the directory shard on
12218         # a different MDT, and not the FID returned by path2fid on the parent.
12219         # Instead of comparing FIDs, verify that fid2path(fidp) is correct,
12220         # since this is what will matter when recreating this file in the tree.
12221         local fidp=$(changelog_extract_field "CREAT" "$tfile" "p=")
12222         local pathp=$($LFS fid2path $MOUNT "$fidp")
12223         [ "${pathp%/}" == "$DIR/$tdir/pics/zach" ] ||
12224                 error "changelog fid2path($fidc) $pathp != $DIR/$tdir/pics/zach"
12225
12226         echo "getting records for $cl_user"
12227         changelog_users $SINGLEMDS
12228         local user_rec1=$(changelog_user_rec $SINGLEMDS $cl_user)
12229         local nclr=3
12230         __changelog_clear $SINGLEMDS $cl_user +$nclr ||
12231                 error "changelog_clear failed"
12232         local user_rec2=$(changelog_user_rec $SINGLEMDS $cl_user)
12233         echo "verifying user clear: $user_rec1 + $nclr == $user_rec2"
12234         [ $user_rec2 == $((user_rec1 + nclr)) ] ||
12235                 error "user index expect $user_rec1 + $nclr != $user_rec2"
12236
12237         local min0_rec=$(changelog_users $SINGLEMDS |
12238                 awk 'min == "" || $2 < min { min = $2 }; END { print min }')
12239         local first_rec=$($LFS changelog $(facet_svc $SINGLEMDS) |
12240                           awk '{ print $1; exit; }')
12241
12242         changelog_dump | tail -n 5
12243         echo "verifying user min purge: $min0_rec + 1 == $first_rec"
12244         [ $first_rec == $((min0_rec + 1)) ] ||
12245                 error "first index should be $min0_rec + 1 not $first_rec"
12246
12247         # LU-3446 changelog index reset on MDT restart
12248         local cur_rec1=$(changelog_users $SINGLEMDS |
12249                          awk '/^current.index:/ { print $NF }')
12250         changelog_clear 0 ||
12251                 error "clear all changelog records for $cl_user failed"
12252         stop $SINGLEMDS || error "Fail to stop $SINGLEMDS"
12253         start $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) $MDS_MOUNT_OPTS ||
12254                 error "Fail to start $SINGLEMDS"
12255         local cur_rec2=$(changelog_users $SINGLEMDS |
12256                          awk '/^current.index:/ { print $NF }')
12257         echo "verifying index survives MDT restart: $cur_rec1 == $cur_rec2"
12258         [ $cur_rec1 == $cur_rec2 ] ||
12259                 error "current index should be $cur_rec1 not $cur_rec2"
12260
12261         echo "verifying users from this test are deregistered"
12262         changelog_deregister || error "changelog_deregister failed"
12263         changelog_users $SINGLEMDS | grep -q $cl_user &&
12264                 error "User '$cl_user' still in changelog_users"
12265
12266         # lctl get_param -n mdd.*.changelog_users
12267         # current index: 144
12268         # ID    index (idle seconds)
12269         # cl3   144 (2)
12270         if ! changelog_users $SINGLEMDS | grep "^cl"; then
12271                 # this is the normal case where all users were deregistered
12272                 # make sure no new records are added when no users are present
12273                 local last_rec1=$(changelog_users $SINGLEMDS |
12274                                   awk '/^current.index:/ { print $NF }')
12275                 touch $DIR/$tdir/chloe
12276                 local last_rec2=$(changelog_users $SINGLEMDS |
12277                                   awk '/^current.index:/ { print $NF }')
12278                 echo "verify changelogs are off: $last_rec1 == $last_rec2"
12279                 [ $last_rec1 == $last_rec2 ] || error "changelogs not off"
12280         else
12281                 # any changelog users must be leftovers from a previous test
12282                 changelog_users $SINGLEMDS
12283                 echo "other changelog users; can't verify off"
12284         fi
12285 }
12286 run_test 160a "changelog sanity"
12287
12288 test_160b() { # LU-3587
12289         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12290         remote_mds_nodsh && skip "remote MDS with nodsh"
12291         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
12292                 skip "Need MDS version at least 2.2.0"
12293
12294         changelog_register || error "changelog_register failed"
12295         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
12296         changelog_users $SINGLEMDS | grep -q $cl_user ||
12297                 error "User '$cl_user' not found in changelog_users"
12298
12299         local longname1=$(str_repeat a 255)
12300         local longname2=$(str_repeat b 255)
12301
12302         cd $DIR
12303         echo "creating very long named file"
12304         touch $longname1 || error "create of '$longname1' failed"
12305         echo "renaming very long named file"
12306         mv $longname1 $longname2
12307
12308         changelog_dump | grep RENME | tail -n 5
12309         rm -f $longname2
12310 }
12311 run_test 160b "Verify that very long rename doesn't crash in changelog"
12312
12313 test_160c() {
12314         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12315         remote_mds_nodsh && skip "remote MDS with nodsh"
12316
12317         local rc=0
12318         local server_version=$(lustre_version_code $SINGLEMDS)
12319
12320         [[ $server_version -gt $(version_code 2.5.57) ]] ||
12321                 [[ $server_version -gt $(version_code 2.5.1) &&
12322                    $server_version -lt $(version_code 2.5.50) ]] ||
12323                 skip "Need MDS version at least 2.5.58 or 2.5.2+"
12324
12325         # Registration step
12326         changelog_register || error "changelog_register failed"
12327
12328         rm -rf $DIR/$tdir
12329         mkdir -p $DIR/$tdir
12330         $MCREATE $DIR/$tdir/foo_160c
12331         changelog_chmask "-TRUNC"
12332         $TRUNCATE $DIR/$tdir/foo_160c 200
12333         changelog_chmask "+TRUNC"
12334         $TRUNCATE $DIR/$tdir/foo_160c 199
12335         changelog_dump | tail -n 5
12336         local truncs=$(changelog_dump | tail -n 5 | grep -c TRUNC)
12337         [ $truncs -eq 1 ] || error "TRUNC changelog mask count $truncs != 1"
12338 }
12339 run_test 160c "verify that changelog log catch the truncate event"
12340
12341 test_160d() {
12342         remote_mds_nodsh && skip "remote MDS with nodsh"
12343         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
12344         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12345         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.60) ]] ||
12346                 skip "Need MDS version at least 2.7.60"
12347
12348         # Registration step
12349         changelog_register || error "changelog_register failed"
12350
12351         mkdir -p $DIR/$tdir/migrate_dir
12352         changelog_clear 0 || error "changelog_clear failed"
12353
12354         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
12355         changelog_dump | tail -n 5
12356         local migrates=$(changelog_dump | grep -c "MIGRT")
12357         [ $migrates -eq 1 ] || error "MIGRATE changelog count $migrates != 1"
12358 }
12359 run_test 160d "verify that changelog log catch the migrate event"
12360
12361 test_160e() {
12362         remote_mds_nodsh && skip "remote MDS with nodsh"
12363
12364         # Create a user
12365         changelog_register || error "changelog_register failed"
12366
12367         # Delete a future user (expect fail)
12368         local MDT0=$(facet_svc $SINGLEMDS)
12369         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister "cl77"
12370         local rc=$?
12371
12372         if [ $rc -eq 0 ]; then
12373                 error "Deleted non-existant user cl77"
12374         elif [ $rc -ne 2 ]; then
12375                 error "changelog_deregister failed with $rc, expect 2 (ENOENT)"
12376         fi
12377
12378         # Clear to a bad index (1 billion should be safe)
12379         $LFS changelog_clear $MDT0 "${CL_USERS[$SINGLEMDS]%% *}" 1000000000
12380         rc=$?
12381
12382         if [ $rc -eq 0 ]; then
12383                 error "Successfully cleared to invalid CL index"
12384         elif [ $rc -ne 22 ]; then
12385                 error "changelog_clear failed with $rc, expected 22 (EINVAL)"
12386         fi
12387 }
12388 run_test 160e "changelog negative testing (should return errors)"
12389
12390 test_160f() {
12391         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12392         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.56) ]] ||
12393                 { skip "Need MDS version at least 2.10.56"; return 0; }
12394
12395         local mdts=$(comma_list $(mdts_nodes))
12396
12397         # Create a user
12398         changelog_register || error "first changelog_register failed"
12399         changelog_register || error "second changelog_register failed"
12400         local cl_users
12401         declare -A cl_user1
12402         declare -A cl_user2
12403         local user_rec1
12404         local user_rec2
12405         local i
12406
12407         # generate some changelog records to accumulate on each MDT
12408         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "test_mkdir $tdir failed"
12409         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12410                 error "create $DIR/$tdir/$tfile failed"
12411
12412         # check changelogs have been generated
12413         local nbcl=$(changelog_dump | wc -l)
12414         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12415
12416         for param in "changelog_max_idle_time=10" \
12417                      "changelog_gc=1" \
12418                      "changelog_min_gc_interval=2" \
12419                      "changelog_min_free_cat_entries=3"; do
12420                 local MDT0=$(facet_svc $SINGLEMDS)
12421                 local var="${param%=*}"
12422                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12423
12424                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12425                 do_nodes $mdts $LCTL set_param mdd.*.$param
12426         done
12427
12428         # force cl_user2 to be idle (1st part)
12429         sleep 9
12430
12431         # simulate changelog catalog almost full
12432         #define OBD_FAIL_CAT_FREE_RECORDS       0x1313
12433         do_nodes $mdts $LCTL set_param fail_loc=0x1313 fail_val=3
12434
12435         for i in $(seq $MDSCOUNT); do
12436                 cl_users=(${CL_USERS[mds$i]})
12437                 cl_user1[mds$i]="${cl_users[0]}"
12438                 cl_user2[mds$i]="${cl_users[1]}"
12439
12440                 [ -n "${cl_user1[mds$i]}" ] ||
12441                         error "mds$i: no user registered"
12442                 [ -n "${cl_user2[mds$i]}" ] ||
12443                         error "mds$i: only ${cl_user2[mds$i]} is registered"
12444
12445                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12446                 [ -n "$user_rec1" ] ||
12447                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12448                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12449                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12450                 [ -n "$user_rec2" ] ||
12451                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12452                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12453                      "$user_rec1 + 2 == $user_rec2"
12454                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12455                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12456                               "$user_rec1 + 2, but is $user_rec2"
12457                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12458                 [ -n "$user_rec2" ] ||
12459                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12460                 [ $user_rec1 == $user_rec2 ] ||
12461                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12462                               "$user_rec1, but is $user_rec2"
12463         done
12464
12465         # force cl_user2 to be idle (2nd part) and to reach
12466         # changelog_max_idle_time
12467         sleep 2
12468
12469         # generate one more changelog to trigger fail_loc
12470         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12471                 error "create $DIR/$tdir/${tfile}bis failed"
12472
12473         # ensure gc thread is done
12474         for i in $(mdts_nodes); do
12475                 wait_update $i \
12476                         "ps -e -o comm= | grep chlg_gc_thread" "" 20 ||
12477                         error "$i: GC-thread not done"
12478         done
12479
12480         local first_rec
12481         for i in $(seq $MDSCOUNT); do
12482                 # check cl_user1 still registered
12483                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12484                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12485                 # check cl_user2 unregistered
12486                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12487                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12488
12489                 # check changelogs are present and starting at $user_rec1 + 1
12490                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12491                 [ -n "$user_rec1" ] ||
12492                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12493                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12494                             awk '{ print $1; exit; }')
12495
12496                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12497                 [ $((user_rec1 + 1)) == $first_rec ] ||
12498                         error "mds$i: first index should be $user_rec1 + 1, " \
12499                               "but is $first_rec"
12500         done
12501 }
12502 run_test 160f "changelog garbage collect (timestamped users)"
12503
12504 test_160g() {
12505         remote_mds_nodsh && skip "remote MDS with nodsh"
12506         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.56) ]] ||
12507                 skip "Need MDS version at least 2.10.56"
12508
12509         local mdts=$(comma_list $(mdts_nodes))
12510
12511         #define OBD_FAIL_TIME_IN_CHLOG_USER     0x1314
12512         do_nodes $mdts $LCTL set_param fail_loc=0x1314
12513
12514         # Create a user
12515         changelog_register || error "first changelog_register failed"
12516         changelog_register || error "second changelog_register failed"
12517         local cl_users
12518         declare -A cl_user1
12519         declare -A cl_user2
12520         local user_rec1
12521         local user_rec2
12522         local i
12523
12524         # generate some changelog records to accumulate on each MDT
12525         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
12526         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12527                 error "create $DIR/$tdir/$tfile failed"
12528
12529         # check changelogs have been generated
12530         local nbcl=$(changelog_dump | wc -l)
12531         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12532
12533         for param in "changelog_max_idle_indexes=$((nbcl / 2))" \
12534                      "changelog_gc=1" \
12535                      "changelog_min_gc_interval=2" \
12536                      "changelog_min_free_cat_entries=3"; do
12537                 local MDT0=$(facet_svc $SINGLEMDS)
12538                 local var="${param%=*}"
12539                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12540
12541                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12542                 do_nodes $mdts $LCTL set_param mdd.*.$param ||
12543                         error "unable to set mdd.*.$param"
12544         done
12545
12546         # simulate changelog catalog almost full
12547         #define OBD_FAIL_CAT_FREE_RECORDS       0x1313
12548         do_nodes $mdts $LCTL set_param fail_loc=0x1313 fail_val=3
12549
12550         for i in $(seq $MDSCOUNT); do
12551                 cl_users=(${CL_USERS[mds$i]})
12552                 cl_user1[mds$i]="${cl_users[0]}"
12553                 cl_user2[mds$i]="${cl_users[1]}"
12554
12555                 [ -n "${cl_user1[mds$i]}" ] ||
12556                         error "mds$i: no user registered"
12557                 [ -n "${cl_user2[mds$i]}" ] ||
12558                         error "mds$i: only ${cl_user1[mds$i]} is registered"
12559
12560                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12561                 [ -n "$user_rec1" ] ||
12562                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12563                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12564                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12565                 [ -n "$user_rec2" ] ||
12566                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12567                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12568                      "$user_rec1 + 2 == $user_rec2"
12569                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12570                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12571                               "$user_rec1 + 2, but is $user_rec2"
12572                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12573                 [ -n "$user_rec2" ] ||
12574                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12575                 [ $user_rec1 == $user_rec2 ] ||
12576                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12577                               "$user_rec1, but is $user_rec2"
12578         done
12579
12580         # ensure we are past the previous changelog_min_gc_interval set above
12581         sleep 2
12582
12583         # generate one more changelog to trigger fail_loc
12584         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12585                 error "create $DIR/$tdir/${tfile}bis failed"
12586
12587         # ensure gc thread is done
12588         for i in $(mdts_nodes); do
12589                 wait_update $i \
12590                         "ps -e -o comm= | grep chlg_gc_thread" "" 20 ||
12591                         error "$i: GC-thread not done"
12592         done
12593
12594         local first_rec
12595         for i in $(seq $MDSCOUNT); do
12596                 # check cl_user1 still registered
12597                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12598                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12599                 # check cl_user2 unregistered
12600                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12601                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12602
12603                 # check changelogs are present and starting at $user_rec1 + 1
12604                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12605                 [ -n "$user_rec1" ] ||
12606                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12607                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12608                             awk '{ print $1; exit; }')
12609
12610                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12611                 [ $((user_rec1 + 1)) == $first_rec ] ||
12612                         error "mds$i: first index should be $user_rec1 + 1, " \
12613                               "but is $first_rec"
12614         done
12615 }
12616 run_test 160g "changelog garbage collect (old users)"
12617
12618 test_160h() {
12619         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12620         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.56) ]] ||
12621                 { skip "Need MDS version at least 2.10.56"; return 0; }
12622
12623         local mdts=$(comma_list $(mdts_nodes))
12624
12625         # Create a user
12626         changelog_register || error "first changelog_register failed"
12627         changelog_register || error "second changelog_register failed"
12628         local cl_users
12629         declare -A cl_user1
12630         declare -A cl_user2
12631         local user_rec1
12632         local user_rec2
12633         local i
12634
12635         # generate some changelog records to accumulate on each MDT
12636         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "test_mkdir $tdir failed"
12637         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12638                 error "create $DIR/$tdir/$tfile failed"
12639
12640         # check changelogs have been generated
12641         local nbcl=$(changelog_dump | wc -l)
12642         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12643
12644         for param in "changelog_max_idle_time=10" \
12645                      "changelog_gc=1" \
12646                      "changelog_min_gc_interval=2"; do
12647                 local MDT0=$(facet_svc $SINGLEMDS)
12648                 local var="${param%=*}"
12649                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12650
12651                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12652                 do_nodes $mdts $LCTL set_param mdd.*.$param
12653         done
12654
12655         # force cl_user2 to be idle (1st part)
12656         sleep 9
12657
12658         for i in $(seq $MDSCOUNT); do
12659                 cl_users=(${CL_USERS[mds$i]})
12660                 cl_user1[mds$i]="${cl_users[0]}"
12661                 cl_user2[mds$i]="${cl_users[1]}"
12662
12663                 [ -n "${cl_user1[mds$i]}" ] ||
12664                         error "mds$i: no user registered"
12665                 [ -n "${cl_user2[mds$i]}" ] ||
12666                         error "mds$i: only ${cl_user2[mds$i]} is registered"
12667
12668                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12669                 [ -n "$user_rec1" ] ||
12670                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12671                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12672                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12673                 [ -n "$user_rec2" ] ||
12674                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12675                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12676                      "$user_rec1 + 2 == $user_rec2"
12677                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12678                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12679                               "$user_rec1 + 2, but is $user_rec2"
12680                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12681                 [ -n "$user_rec2" ] ||
12682                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12683                 [ $user_rec1 == $user_rec2 ] ||
12684                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12685                               "$user_rec1, but is $user_rec2"
12686         done
12687
12688         # force cl_user2 to be idle (2nd part) and to reach
12689         # changelog_max_idle_time
12690         sleep 2
12691
12692         # force each GC-thread start and block then
12693         # one per MDT/MDD, set fail_val accordingly
12694         #define OBD_FAIL_FORCE_GC_THREAD 0x1316
12695         do_nodes $mdts $LCTL set_param fail_loc=0x1316
12696
12697         # generate more changelogs to trigger fail_loc
12698         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12699                 error "create $DIR/$tdir/${tfile}bis failed"
12700
12701         # stop MDT to stop GC-thread, should be done in back-ground as it will
12702         # block waiting for the thread to be released and exit
12703         declare -A stop_pids
12704         for i in $(seq $MDSCOUNT); do
12705                 stop mds$i &
12706                 stop_pids[mds$i]=$!
12707         done
12708
12709         for i in $(mdts_nodes); do
12710                 local facet
12711                 local nb=0
12712                 local facets=$(facets_up_on_host $i)
12713
12714                 for facet in ${facets//,/ }; do
12715                         if [[ $facet == mds* ]]; then
12716                                 nb=$((nb + 1))
12717                         fi
12718                 done
12719                 # ensure each MDS's gc threads are still present and all in "R"
12720                 # state (OBD_FAIL_FORCE_GC_THREAD effect!)
12721                 [[ $(do_node $i pgrep chlg_gc_thread | wc -l) -eq $nb ]] ||
12722                         error "$i: expected $nb GC-thread"
12723                 wait_update $i \
12724                         "ps -C chlg_gc_thread -o state --no-headers | uniq" \
12725                         "R" 20 ||
12726                         error "$i: GC-thread not found in R-state"
12727                 # check umounts of each MDT on MDS have reached kthread_stop()
12728                 [[ $(do_node $i pgrep umount | wc -l) -eq $nb ]] ||
12729                         error "$i: expected $nb umount"
12730                 wait_update $i \
12731                         "ps -C umount -o state --no-headers | uniq" "D" 20 ||
12732                         error "$i: umount not found in D-state"
12733         done
12734
12735         # release all GC-threads
12736         do_nodes $mdts $LCTL set_param fail_loc=0
12737
12738         # wait for MDT stop to complete
12739         for i in $(seq $MDSCOUNT); do
12740                 wait ${stop_pids[mds$i]} || error "mds$i: stop failed"
12741         done
12742
12743         # XXX
12744         # may try to check if any orphan changelog records are present
12745         # via ldiskfs/zfs and llog_reader...
12746
12747         # re-start/mount MDTs
12748         for i in $(seq $MDSCOUNT); do
12749                 start mds$i $(mdsdevname $i) $MDS_MOUNT_OPTS ||
12750                         error "Fail to start mds$i"
12751         done
12752
12753         local first_rec
12754         for i in $(seq $MDSCOUNT); do
12755                 # check cl_user1 still registered
12756                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12757                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12758                 # check cl_user2 unregistered
12759                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12760                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12761
12762                 # check changelogs are present and starting at $user_rec1 + 1
12763                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12764                 [ -n "$user_rec1" ] ||
12765                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12766                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12767                             awk '{ print $1; exit; }')
12768
12769                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12770                 [ $((user_rec1 + 1)) == $first_rec ] ||
12771                         error "mds$i: first index should be $user_rec1 + 1, " \
12772                               "but is $first_rec"
12773         done
12774 }
12775 run_test 160h "changelog gc thread stop upon umount, orphan records delete " \
12776               "during mount"
12777
12778 test_160i() {
12779
12780         local mdts=$(comma_list $(mdts_nodes))
12781
12782         changelog_register || error "first changelog_register failed"
12783
12784         # generate some changelog records to accumulate on each MDT
12785         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
12786         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12787                 error "create $DIR/$tdir/$tfile failed"
12788
12789         # check changelogs have been generated
12790         local nbcl=$(changelog_dump | wc -l)
12791         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12792
12793         # simulate race between register and unregister
12794         # XXX as fail_loc is set per-MDS, with DNE configs the race
12795         # simulation will only occur for one MDT per MDS and for the
12796         # others the normal race scenario will take place
12797         #define CFS_FAIL_CHLOG_USER_REG_UNREG_RACE          0x1315
12798         do_nodes $mdts $LCTL set_param fail_loc=0x10001315
12799         do_nodes $mdts $LCTL set_param fail_val=1
12800
12801         # unregister 1st user
12802         changelog_deregister &
12803         local pid1=$!
12804         # wait some time for deregister work to reach race rdv
12805         sleep 2
12806         # register 2nd user
12807         changelog_register || error "2nd user register failed"
12808
12809         wait $pid1 || error "1st user deregister failed"
12810
12811         local i
12812         local last_rec
12813         declare -A LAST_REC
12814         for i in $(seq $MDSCOUNT); do
12815                 if changelog_users mds$i | grep "^cl"; then
12816                         # make sure new records are added with one user present
12817                         LAST_REC[mds$i]=$(changelog_users $SINGLEMDS |
12818                                           awk '/^current.index:/ { print $NF }')
12819                 else
12820                         error "mds$i has no user registered"
12821                 fi
12822         done
12823
12824         # generate more changelog records to accumulate on each MDT
12825         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12826                 error "create $DIR/$tdir/${tfile}bis failed"
12827
12828         for i in $(seq $MDSCOUNT); do
12829                 last_rec=$(changelog_users $SINGLEMDS |
12830                            awk '/^current.index:/ { print $NF }')
12831                 echo "verify changelogs are on: $last_rec != ${LAST_REC[mds$i]}"
12832                 [ $last_rec != ${LAST_REC[mds$i]} ] ||
12833                         error "changelogs are off on mds$i"
12834         done
12835 }
12836 run_test 160i "changelog user register/unregister race"
12837
12838 test_161a() {
12839         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12840
12841         test_mkdir -c1 $DIR/$tdir
12842         cp /etc/hosts $DIR/$tdir/$tfile
12843         test_mkdir -c1 $DIR/$tdir/foo1
12844         test_mkdir -c1 $DIR/$tdir/foo2
12845         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
12846         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
12847         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
12848         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
12849         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
12850         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
12851                 $LFS fid2path $DIR $FID
12852                 error "bad link ea"
12853         fi
12854         # middle
12855         rm $DIR/$tdir/foo2/zachary
12856         # last
12857         rm $DIR/$tdir/foo2/thor
12858         # first
12859         rm $DIR/$tdir/$tfile
12860         # rename
12861         mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
12862         [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ] &&
12863                 { $LFS fid2path $DIR $FID; error "bad link rename"; }
12864         rm $DIR/$tdir/foo2/maggie
12865
12866         # overflow the EA
12867         local longname=$tfile.avg_len_is_thirty_two_
12868         stack_trap "unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
12869                 error_noexit 'failed to unlink many hardlinks'" EXIT
12870         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
12871                 error "failed to hardlink many files"
12872         links=$($LFS fid2path $DIR $FID | wc -l)
12873         echo -n "${links}/1000 links in link EA"
12874         [[ $links -gt 60 ]] || error "expected at least 60 links in link EA"
12875 }
12876 run_test 161a "link ea sanity"
12877
12878 test_161b() {
12879         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12880         [ $MDSCOUNT -lt 2 ] && skip_env "skipping remote directory test"
12881
12882         local MDTIDX=1
12883         local remote_dir=$DIR/$tdir/remote_dir
12884
12885         mkdir -p $DIR/$tdir
12886         $LFS mkdir -i $MDTIDX $remote_dir ||
12887                 error "create remote directory failed"
12888
12889         cp /etc/hosts $remote_dir/$tfile
12890         mkdir -p $remote_dir/foo1
12891         mkdir -p $remote_dir/foo2
12892         ln $remote_dir/$tfile $remote_dir/foo1/sofia
12893         ln $remote_dir/$tfile $remote_dir/foo2/zachary
12894         ln $remote_dir/$tfile $remote_dir/foo1/luna
12895         ln $remote_dir/$tfile $remote_dir/foo2/thor
12896
12897         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
12898                      tr -d ']')
12899         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
12900                 $LFS fid2path $DIR $FID
12901                 error "bad link ea"
12902         fi
12903         # middle
12904         rm $remote_dir/foo2/zachary
12905         # last
12906         rm $remote_dir/foo2/thor
12907         # first
12908         rm $remote_dir/$tfile
12909         # rename
12910         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
12911         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
12912         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
12913                 $LFS fid2path $DIR $FID
12914                 error "bad link rename"
12915         fi
12916         rm $remote_dir/foo2/maggie
12917
12918         # overflow the EA
12919         local longname=filename_avg_len_is_thirty_two_
12920         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
12921                 error "failed to hardlink many files"
12922         links=$($LFS fid2path $DIR $FID | wc -l)
12923         echo -n "${links}/1000 links in link EA"
12924         [[ ${links} -gt 60 ]] ||
12925                 error "expected at least 60 links in link EA"
12926         unlinkmany $remote_dir/foo2/$longname 1000 ||
12927         error "failed to unlink many hardlinks"
12928 }
12929 run_test 161b "link ea sanity under remote directory"
12930
12931 test_161c() {
12932         remote_mds_nodsh && skip "remote MDS with nodsh"
12933         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12934         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
12935                 skip "Need MDS version at least 2.1.5"
12936
12937         # define CLF_RENAME_LAST 0x0001
12938         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
12939         changelog_register || error "changelog_register failed"
12940
12941         rm -rf $DIR/$tdir
12942         test_mkdir -i $((MDSCOUNT - 1)) $DIR/$tdir
12943         touch $DIR/$tdir/foo_161c
12944         touch $DIR/$tdir/bar_161c
12945         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
12946         changelog_dump | grep RENME | tail -n 5
12947         local flags=$(changelog_dump | grep "RENME.*bar_161c" | cut -f5 -d' ')
12948         changelog_clear 0 || error "changelog_clear failed"
12949         if [ x$flags != "x0x1" ]; then
12950                 error "flag $flags is not 0x1"
12951         fi
12952
12953         echo "rename overwrite target with nlink = 1, changelog flags=$flags"
12954         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
12955         touch $DIR/$tdir/foo_161c
12956         touch $DIR/$tdir/bar_161c
12957         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
12958         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
12959         changelog_dump | grep RENME | tail -n 5
12960         flags=$(changelog_dump | grep "RENME.*bar_161c" | cut -f5 -d' ')
12961         changelog_clear 0 || error "changelog_clear failed"
12962         if [ x$flags != "x0x0" ]; then
12963                 error "flag $flags is not 0x0"
12964         fi
12965         echo "rename overwrite a target having nlink > 1," \
12966                 "changelog record has flags of $flags"
12967
12968         # rename doesn't overwrite a target (changelog flag 0x0)
12969         touch $DIR/$tdir/foo_161c
12970         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
12971         changelog_dump | grep RENME | tail -n 5
12972         flags=$(changelog_dump | grep RENME | tail -1 | cut -f5 -d' ')
12973         changelog_clear 0 || error "changelog_clear failed"
12974         if [ x$flags != "x0x0" ]; then
12975                 error "flag $flags is not 0x0"
12976         fi
12977         echo "rename doesn't overwrite a target," \
12978                 "changelog record has flags of $flags"
12979
12980         # define CLF_UNLINK_LAST 0x0001
12981         # unlink a file having nlink = 1 (changelog flag 0x1)
12982         rm -f $DIR/$tdir/foo2_161c
12983         changelog_dump | grep UNLNK | tail -n 5
12984         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
12985         changelog_clear 0 || error "changelog_clear failed"
12986         if [ x$flags != "x0x1" ]; then
12987                 error "flag $flags is not 0x1"
12988         fi
12989         echo "unlink a file having nlink = 1," \
12990                 "changelog record has flags of $flags"
12991
12992         # unlink a file having nlink > 1 (changelog flag 0x0)
12993         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
12994         rm -f $DIR/$tdir/foobar_161c
12995         changelog_dump | grep UNLNK | tail -n 5
12996         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
12997         changelog_clear 0 || error "changelog_clear failed"
12998         if [ x$flags != "x0x0" ]; then
12999                 error "flag $flags is not 0x0"
13000         fi
13001         echo "unlink a file having nlink > 1, changelog record flags '$flags'"
13002 }
13003 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
13004
13005 test_161d() {
13006         remote_mds_nodsh && skip "remote MDS with nodsh"
13007
13008         local pid
13009         local fid
13010
13011         changelog_register || error "changelog_register failed"
13012
13013         # work in a standalone dir to avoid locking on $DIR/$MOUNT to
13014         # interfer with $MOUNT/.lustre/fid/ access
13015         mkdir $DIR/$tdir
13016         [[ $? -eq 0 ]] || error "mkdir failed"
13017
13018         #define OBD_FAIL_LLITE_CREATE_NODE_PAUSE 0x140c | OBD_FAIL_ONCE
13019         $LCTL set_param fail_loc=0x8000140c
13020         # 5s pause
13021         $LCTL set_param fail_val=5
13022
13023         # create file
13024         echo foofoo > $DIR/$tdir/$tfile &
13025         pid=$!
13026
13027         # wait for create to be delayed
13028         sleep 2
13029
13030         ps -p $pid
13031         [[ $? -eq 0 ]] || error "create should be blocked"
13032
13033         local tempfile=$(mktemp)
13034         fid=$(changelog_extract_field "CREAT" "$tfile" "t=")
13035         cat $MOUNT/.lustre/fid/$fid 2>/dev/null >$tempfile || error "cat failed"
13036         # some delay may occur during ChangeLog publishing and file read just
13037         # above, that could allow file write to happen finally
13038         [[ -s $tempfile ]] && echo "file should be empty"
13039
13040         $LCTL set_param fail_loc=0
13041
13042         wait $pid
13043         [[ $? -eq 0 ]] || error "create failed"
13044 }
13045 run_test 161d "create with concurrent .lustre/fid access"
13046
13047 check_path() {
13048         local expected="$1"
13049         shift
13050         local fid="$2"
13051
13052         local path
13053         path=$($LFS fid2path "$@")
13054         local rc=$?
13055
13056         if [ $rc -ne 0 ]; then
13057                 error "path looked up of '$expected' failed: rc=$rc"
13058         elif [ "$path" != "$expected" ]; then
13059                 error "path looked up '$path' instead of '$expected'"
13060         else
13061                 echo "FID '$fid' resolves to path '$path' as expected"
13062         fi
13063 }
13064
13065 test_162a() { # was test_162
13066         test_mkdir -p -c1 $DIR/$tdir/d2
13067         touch $DIR/$tdir/d2/$tfile
13068         touch $DIR/$tdir/d2/x1
13069         touch $DIR/$tdir/d2/x2
13070         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
13071         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
13072         # regular file
13073         local fid=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
13074         check_path "$tdir/d2/$tfile" $FSNAME "$fid" --link 0
13075
13076         # softlink
13077         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
13078         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
13079         check_path "$tdir/d2/p/q/r/slink" $FSNAME "$fid" --link 0
13080
13081         # softlink to wrong file
13082         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
13083         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
13084         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME "$fid" --link 0
13085
13086         # hardlink
13087         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
13088         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
13089         fid=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
13090         # fid2path dir/fsname should both work
13091         check_path "$tdir/d2/a/b/c/new_file" $FSNAME "$fid" --link 1
13092         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR "$fid" --link 0
13093
13094         # hardlink count: check that there are 2 links
13095         local nlinks=$($LFS fid2path $DIR "$fid" | wc -l)
13096         [ $nlinks -eq 2 ] || error "expect 2 links, found $nlinks"
13097
13098         # hardlink indexing: remove the first link
13099         rm $DIR/$tdir/d2/p/q/r/hlink
13100         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $fid --link 0
13101 }
13102 run_test 162a "path lookup sanity"
13103
13104 test_162b() {
13105         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13106         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
13107
13108         mkdir $DIR/$tdir
13109         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
13110                                 error "create striped dir failed"
13111
13112         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
13113                                         tail -n 1 | awk '{print $2}')
13114         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
13115
13116         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
13117         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
13118
13119         # regular file
13120         for ((i=0;i<5;i++)); do
13121                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
13122                         error "get fid for f$i failed"
13123                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0
13124
13125                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
13126                         error "get fid for d$i failed"
13127                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0
13128         done
13129
13130         return 0
13131 }
13132 run_test 162b "striped directory path lookup sanity"
13133
13134 # LU-4239: Verify fid2path works with paths 100 or more directories deep
13135 test_162c() {
13136         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.51) ]] &&
13137                 skip "Need MDS version at least 2.7.51"
13138
13139         local lpath=$tdir.local
13140         local rpath=$tdir.remote
13141
13142         test_mkdir $DIR/$lpath
13143         test_mkdir $DIR/$rpath
13144
13145         for ((i = 0; i <= 101; i++)); do
13146                 lpath="$lpath/$i"
13147                 mkdir $DIR/$lpath
13148                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
13149                         error "get fid for local directory $DIR/$lpath failed"
13150                 check_path "$DIR/$lpath" $MOUNT $FID --link 0
13151
13152                 rpath="$rpath/$i"
13153                 test_mkdir $DIR/$rpath
13154                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
13155                         error "get fid for remote directory $DIR/$rpath failed"
13156                 check_path "$DIR/$rpath" $MOUNT $FID --link 0
13157         done
13158
13159         return 0
13160 }
13161 run_test 162c "fid2path works with paths 100 or more directories deep"
13162
13163 test_169() {
13164         # do directio so as not to populate the page cache
13165         log "creating a 10 Mb file"
13166         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
13167         log "starting reads"
13168         dd if=$DIR/$tfile of=/dev/null bs=4096 &
13169         log "truncating the file"
13170         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
13171         log "killing dd"
13172         kill %+ || true # reads might have finished
13173         echo "wait until dd is finished"
13174         wait
13175         log "removing the temporary file"
13176         rm -rf $DIR/$tfile || error "tmp file removal failed"
13177 }
13178 run_test 169 "parallel read and truncate should not deadlock"
13179
13180 test_170() {
13181         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13182
13183         $LCTL clear     # bug 18514
13184         $LCTL debug_daemon start $TMP/${tfile}_log_good
13185         touch $DIR/$tfile
13186         $LCTL debug_daemon stop
13187         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
13188                 error "sed failed to read log_good"
13189
13190         $LCTL debug_daemon start $TMP/${tfile}_log_good
13191         rm -rf $DIR/$tfile
13192         $LCTL debug_daemon stop
13193
13194         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
13195                error "lctl df log_bad failed"
13196
13197         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
13198         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
13199
13200         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
13201         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
13202
13203         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
13204                 error "bad_line good_line1 good_line2 are empty"
13205
13206         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
13207         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
13208         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
13209
13210         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
13211         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
13212         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
13213
13214         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
13215                 error "bad_line_new good_line_new are empty"
13216
13217         local expected_good=$((good_line1 + good_line2*2))
13218
13219         rm -f $TMP/${tfile}*
13220         # LU-231, short malformed line may not be counted into bad lines
13221         if [ $bad_line -ne $bad_line_new ] &&
13222                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
13223                 error "expected $bad_line bad lines, but got $bad_line_new"
13224                 return 1
13225         fi
13226
13227         if [ $expected_good -ne $good_line_new ]; then
13228                 error "expected $expected_good good lines, but got $good_line_new"
13229                 return 2
13230         fi
13231         true
13232 }
13233 run_test 170 "test lctl df to handle corrupted log ====================="
13234
13235 test_171() { # bug20592
13236         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13237
13238         #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
13239         $LCTL set_param fail_loc=0x50e
13240         $LCTL set_param fail_val=3000
13241         multiop_bg_pause $DIR/$tfile O_s || true
13242         local MULTIPID=$!
13243         kill -USR1 $MULTIPID
13244         # cause log dump
13245         sleep 3
13246         wait $MULTIPID
13247         if dmesg | grep "recursive fault"; then
13248                 error "caught a recursive fault"
13249         fi
13250         $LCTL set_param fail_loc=0
13251         true
13252 }
13253 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
13254
13255 # it would be good to share it with obdfilter-survey/iokit-libecho code
13256 setup_obdecho_osc () {
13257         local rc=0
13258         local ost_nid=$1
13259         local obdfilter_name=$2
13260         echo "Creating new osc for $obdfilter_name on $ost_nid"
13261         # make sure we can find loopback nid
13262         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
13263
13264         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
13265                            ${obdfilter_name}_osc_UUID || rc=2; }
13266         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
13267                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
13268         return $rc
13269 }
13270
13271 cleanup_obdecho_osc () {
13272         local obdfilter_name=$1
13273         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
13274         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
13275         return 0
13276 }
13277
13278 obdecho_test() {
13279         local OBD=$1
13280         local node=$2
13281         local pages=${3:-64}
13282         local rc=0
13283         local id
13284
13285         local count=10
13286         local obd_size=$(get_obd_size $node $OBD)
13287         local page_size=$(get_page_size $node)
13288         if [[ -n "$obd_size" ]]; then
13289                 local new_count=$((obd_size / (pages * page_size / 1024)))
13290                 [[ $new_count -ge $count ]] || count=$new_count
13291         fi
13292
13293         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
13294         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
13295                            rc=2; }
13296         if [ $rc -eq 0 ]; then
13297             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
13298             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
13299         fi
13300         echo "New object id is $id"
13301         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
13302                            rc=4; }
13303         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
13304                            "test_brw $count w v $pages $id" || rc=4; }
13305         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
13306                            rc=4; }
13307         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
13308                                         "cleanup" || rc=5; }
13309         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
13310                                         "detach" || rc=6; }
13311         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
13312         return $rc
13313 }
13314
13315 test_180a() {
13316         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13317
13318         if ! module_loaded obdecho; then
13319                 load_module obdecho/obdecho &&
13320                         stack_trap "rmmod obdecho" EXIT ||
13321                         error "unable to load obdecho on client"
13322         fi
13323
13324         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
13325         local host=$($LCTL get_param -n osc.$osc.import |
13326                      awk '/current_connection:/ { print $2 }' )
13327         local target=$($LCTL get_param -n osc.$osc.import |
13328                        awk '/target:/ { print $2 }' )
13329         target=${target%_UUID}
13330
13331         if [ -n "$target" ]; then
13332                 setup_obdecho_osc $host $target &&
13333                         stack_trap "cleanup_obdecho_osc $target" EXIT ||
13334                         { error "obdecho setup failed with $?"; return; }
13335
13336                 obdecho_test ${target}_osc client ||
13337                         error "obdecho_test failed on ${target}_osc"
13338         else
13339                 $LCTL get_param osc.$osc.import
13340                 error "there is no osc.$osc.import target"
13341         fi
13342 }
13343 run_test 180a "test obdecho on osc"
13344
13345 test_180b() {
13346         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13347         remote_ost_nodsh && skip "remote OST with nodsh"
13348
13349         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
13350                 stack_trap "do_facet ost1 rmmod obdecho" EXIT ||
13351                 error "failed to load module obdecho"
13352
13353         local target=$(do_facet ost1 $LCTL dl |
13354                        awk '/obdfilter/ { print $4; exit; }')
13355
13356         if [ -n "$target" ]; then
13357                 obdecho_test $target ost1 || error "obdecho_test failed with $?"
13358         else
13359                 do_facet ost1 $LCTL dl
13360                 error "there is no obdfilter target on ost1"
13361         fi
13362 }
13363 run_test 180b "test obdecho directly on obdfilter"
13364
13365 test_180c() { # LU-2598
13366         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13367         remote_ost_nodsh && skip "remote OST with nodsh"
13368         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
13369                 skip "Need MDS version at least 2.4.0"
13370
13371         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
13372                 stack_trap "do_facet ost1 rmmod obdecho" EXIT ||
13373                 error "failed to load module obdecho"
13374
13375         local target=$(do_facet ost1 $LCTL dl |
13376                        awk '/obdfilter/ { print $4; exit; }')
13377
13378         if [ -n "$target" ]; then
13379                 local pages=16384 # 64MB bulk I/O RPC size
13380
13381                 obdecho_test "$target" ost1 "$pages" ||
13382                         error "obdecho_test with pages=$pages failed with $?"
13383         else
13384                 do_facet ost1 $LCTL dl
13385                 error "there is no obdfilter target on ost1"
13386         fi
13387 }
13388 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
13389
13390 test_181() { # bug 22177
13391         test_mkdir $DIR/$tdir
13392         # create enough files to index the directory
13393         createmany -o $DIR/$tdir/foobar 4000
13394         # print attributes for debug purpose
13395         lsattr -d .
13396         # open dir
13397         multiop_bg_pause $DIR/$tdir D_Sc || return 1
13398         MULTIPID=$!
13399         # remove the files & current working dir
13400         unlinkmany $DIR/$tdir/foobar 4000
13401         rmdir $DIR/$tdir
13402         kill -USR1 $MULTIPID
13403         wait $MULTIPID
13404         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
13405         return 0
13406 }
13407 run_test 181 "Test open-unlinked dir ========================"
13408
13409 test_182() {
13410         local fcount=1000
13411         local tcount=10
13412
13413         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13414
13415         $LCTL set_param mdc.*.rpc_stats=clear
13416
13417         for (( i = 0; i < $tcount; i++ )) ; do
13418                 mkdir $DIR/$tdir/$i
13419         done
13420
13421         for (( i = 0; i < $tcount; i++ )) ; do
13422                 createmany -o $DIR/$tdir/$i/f- $fcount &
13423         done
13424         wait
13425
13426         for (( i = 0; i < $tcount; i++ )) ; do
13427                 unlinkmany $DIR/$tdir/$i/f- $fcount &
13428         done
13429         wait
13430
13431         $LCTL get_param mdc.*.rpc_stats
13432
13433         rm -rf $DIR/$tdir
13434 }
13435 run_test 182 "Test parallel modify metadata operations ================"
13436
13437 test_183() { # LU-2275
13438         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13439         remote_mds_nodsh && skip "remote MDS with nodsh"
13440         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
13441                 skip "Need MDS version at least 2.3.56"
13442
13443         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13444         echo aaa > $DIR/$tdir/$tfile
13445
13446 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
13447         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
13448
13449         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
13450         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
13451
13452         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
13453
13454         # Flush negative dentry cache
13455         touch $DIR/$tdir/$tfile
13456
13457         # We are not checking for any leaked references here, they'll
13458         # become evident next time we do cleanup with module unload.
13459         rm -rf $DIR/$tdir
13460 }
13461 run_test 183 "No crash or request leak in case of strange dispositions ========"
13462
13463 # test suite 184 is for LU-2016, LU-2017
13464 test_184a() {
13465         check_swap_layouts_support
13466
13467         dir0=$DIR/$tdir/$testnum
13468         test_mkdir -p -c1 $dir0
13469         ref1=/etc/passwd
13470         ref2=/etc/group
13471         file1=$dir0/f1
13472         file2=$dir0/f2
13473         $LFS setstripe -c1 $file1
13474         cp $ref1 $file1
13475         $LFS setstripe -c2 $file2
13476         cp $ref2 $file2
13477         gen1=$($LFS getstripe -g $file1)
13478         gen2=$($LFS getstripe -g $file2)
13479
13480         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
13481         gen=$($LFS getstripe -g $file1)
13482         [[ $gen1 != $gen ]] ||
13483                 "Layout generation on $file1 does not change"
13484         gen=$($LFS getstripe -g $file2)
13485         [[ $gen2 != $gen ]] ||
13486                 "Layout generation on $file2 does not change"
13487
13488         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
13489         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
13490
13491         lfsck_verify_pfid $file1 $file2 || error "PFID are not transferred"
13492 }
13493 run_test 184a "Basic layout swap"
13494
13495 test_184b() {
13496         check_swap_layouts_support
13497
13498         dir0=$DIR/$tdir/$testnum
13499         mkdir -p $dir0 || error "creating dir $dir0"
13500         file1=$dir0/f1
13501         file2=$dir0/f2
13502         file3=$dir0/f3
13503         dir1=$dir0/d1
13504         dir2=$dir0/d2
13505         mkdir $dir1 $dir2
13506         $LFS setstripe -c1 $file1
13507         $LFS setstripe -c2 $file2
13508         $LFS setstripe -c1 $file3
13509         chown $RUNAS_ID $file3
13510         gen1=$($LFS getstripe -g $file1)
13511         gen2=$($LFS getstripe -g $file2)
13512
13513         $LFS swap_layouts $dir1 $dir2 &&
13514                 error "swap of directories layouts should fail"
13515         $LFS swap_layouts $dir1 $file1 &&
13516                 error "swap of directory and file layouts should fail"
13517         $RUNAS $LFS swap_layouts $file1 $file2 &&
13518                 error "swap of file we cannot write should fail"
13519         $LFS swap_layouts $file1 $file3 &&
13520                 error "swap of file with different owner should fail"
13521         /bin/true # to clear error code
13522 }
13523 run_test 184b "Forbidden layout swap (will generate errors)"
13524
13525 test_184c() {
13526         local cmpn_arg=$(cmp -n 2>&1 | grep "invalid option")
13527         [ -n "$cmpn_arg" ] && skip_env "cmp does not support -n"
13528         check_swap_layouts_support
13529
13530         local dir0=$DIR/$tdir/$testnum
13531         mkdir -p $dir0 || error "creating dir $dir0"
13532
13533         local ref1=$dir0/ref1
13534         local ref2=$dir0/ref2
13535         local file1=$dir0/file1
13536         local file2=$dir0/file2
13537         # create a file large enough for the concurrent test
13538         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
13539         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
13540         echo "ref file size: ref1($(stat -c %s $ref1))," \
13541              "ref2($(stat -c %s $ref2))"
13542
13543         cp $ref2 $file2
13544         dd if=$ref1 of=$file1 bs=16k &
13545         local DD_PID=$!
13546
13547         # Make sure dd starts to copy file
13548         while [ ! -f $file1 ]; do sleep 0.1; done
13549
13550         $LFS swap_layouts $file1 $file2
13551         local rc=$?
13552         wait $DD_PID
13553         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
13554         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
13555
13556         # how many bytes copied before swapping layout
13557         local copied=$(stat -c %s $file2)
13558         local remaining=$(stat -c %s $ref1)
13559         remaining=$((remaining - copied))
13560         echo "Copied $copied bytes before swapping layout..."
13561
13562         cmp -n $copied $file1 $ref2 | grep differ &&
13563                 error "Content mismatch [0, $copied) of ref2 and file1"
13564         cmp -n $copied $file2 $ref1 ||
13565                 error "Content mismatch [0, $copied) of ref1 and file2"
13566         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
13567                 error "Content mismatch [$copied, EOF) of ref1 and file1"
13568
13569         # clean up
13570         rm -f $ref1 $ref2 $file1 $file2
13571 }
13572 run_test 184c "Concurrent write and layout swap"
13573
13574 test_184d() {
13575         check_swap_layouts_support
13576         [ -z "$(which getfattr 2>/dev/null)" ] &&
13577                 skip_env "no getfattr command"
13578
13579         local file1=$DIR/$tdir/$tfile-1
13580         local file2=$DIR/$tdir/$tfile-2
13581         local file3=$DIR/$tdir/$tfile-3
13582         local lovea1
13583         local lovea2
13584
13585         mkdir -p $DIR/$tdir
13586         touch $file1 || error "create $file1 failed"
13587         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
13588                 error "create $file2 failed"
13589         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
13590                 error "create $file3 failed"
13591         lovea1=$(get_layout_param $file1)
13592
13593         $LFS swap_layouts $file2 $file3 ||
13594                 error "swap $file2 $file3 layouts failed"
13595         $LFS swap_layouts $file1 $file2 ||
13596                 error "swap $file1 $file2 layouts failed"
13597
13598         lovea2=$(get_layout_param $file2)
13599         echo "$lovea1"
13600         echo "$lovea2"
13601         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
13602
13603         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
13604         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
13605 }
13606 run_test 184d "allow stripeless layouts swap"
13607
13608 test_184e() {
13609         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.94) ]] ||
13610                 skip "Need MDS version at least 2.6.94"
13611         check_swap_layouts_support
13612         [ -z "$(which getfattr 2>/dev/null)" ] &&
13613                 skip_env "no getfattr command"
13614
13615         local file1=$DIR/$tdir/$tfile-1
13616         local file2=$DIR/$tdir/$tfile-2
13617         local file3=$DIR/$tdir/$tfile-3
13618         local lovea
13619
13620         mkdir -p $DIR/$tdir
13621         touch $file1 || error "create $file1 failed"
13622         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
13623                 error "create $file2 failed"
13624         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
13625                 error "create $file3 failed"
13626
13627         $LFS swap_layouts $file1 $file2 ||
13628                 error "swap $file1 $file2 layouts failed"
13629
13630         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
13631         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
13632
13633         echo 123 > $file1 || error "Should be able to write into $file1"
13634
13635         $LFS swap_layouts $file1 $file3 ||
13636                 error "swap $file1 $file3 layouts failed"
13637
13638         echo 123 > $file1 || error "Should be able to write into $file1"
13639
13640         rm -rf $file1 $file2 $file3
13641 }
13642 run_test 184e "Recreate layout after stripeless layout swaps"
13643
13644 test_184f() {
13645         # Create a file with name longer than sizeof(struct stat) ==
13646         # 144 to see if we can get chars from the file name to appear
13647         # in the returned striping. Note that 'f' == 0x66.
13648         local file=$(for ((i = 0; i < 200; i++)); do echo -n f; done)
13649
13650         mkdir -p $DIR/$tdir
13651         mcreate $DIR/$tdir/$file
13652         if lfs find --stripe-count 0x6666 $DIR/$tdir | grep $file; then
13653                 error "IOC_MDC_GETFILEINFO returned garbage striping"
13654         fi
13655 }
13656 run_test 184f "IOC_MDC_GETFILEINFO for files with long names but no striping"
13657
13658 test_185() { # LU-2441
13659         # LU-3553 - no volatile file support in old servers
13660         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
13661                 skip "Need MDS version at least 2.3.60"
13662
13663         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13664         touch $DIR/$tdir/spoo
13665         local mtime1=$(stat -c "%Y" $DIR/$tdir)
13666         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
13667                 error "cannot create/write a volatile file"
13668         [ "$FILESET" == "" ] &&
13669         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
13670                 error "FID is still valid after close"
13671
13672         multiop_bg_pause $DIR/$tdir vVw4096_c
13673         local multi_pid=$!
13674
13675         local OLD_IFS=$IFS
13676         IFS=":"
13677         local fidv=($fid)
13678         IFS=$OLD_IFS
13679         # assume that the next FID for this client is sequential, since stdout
13680         # is unfortunately eaten by multiop_bg_pause
13681         local n=$((${fidv[1]} + 1))
13682         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
13683         if [ "$FILESET" == "" ]; then
13684                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
13685                         error "FID is missing before close"
13686         fi
13687         kill -USR1 $multi_pid
13688         # 1 second delay, so if mtime change we will see it
13689         sleep 1
13690         local mtime2=$(stat -c "%Y" $DIR/$tdir)
13691         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
13692 }
13693 run_test 185 "Volatile file support"
13694
13695 test_187a() {
13696         remote_mds_nodsh && skip "remote MDS with nodsh"
13697         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
13698                 skip "Need MDS version at least 2.3.0"
13699
13700         local dir0=$DIR/$tdir/$testnum
13701         mkdir -p $dir0 || error "creating dir $dir0"
13702
13703         local file=$dir0/file1
13704         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
13705         local dv1=$($LFS data_version $file)
13706         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
13707         local dv2=$($LFS data_version $file)
13708         [[ $dv1 != $dv2 ]] ||
13709                 error "data version did not change on write $dv1 == $dv2"
13710
13711         # clean up
13712         rm -f $file1
13713 }
13714 run_test 187a "Test data version change"
13715
13716 test_187b() {
13717         remote_mds_nodsh && skip "remote MDS with nodsh"
13718         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
13719                 skip "Need MDS version at least 2.3.0"
13720
13721         local dir0=$DIR/$tdir/$testnum
13722         mkdir -p $dir0 || error "creating dir $dir0"
13723
13724         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
13725         [[ ${DV[0]} != ${DV[1]} ]] ||
13726                 error "data version did not change on write"\
13727                       " ${DV[0]} == ${DV[1]}"
13728
13729         # clean up
13730         rm -f $file1
13731 }
13732 run_test 187b "Test data version change on volatile file"
13733
13734 test_200() {
13735         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13736         remote_mgs_nodsh && skip "remote MGS with nodsh"
13737         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
13738
13739         local POOL=${POOL:-cea1}
13740         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
13741         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
13742         # Pool OST targets
13743         local first_ost=0
13744         local last_ost=$(($OSTCOUNT - 1))
13745         local ost_step=2
13746         local ost_list=$(seq $first_ost $ost_step $last_ost)
13747         local ost_range="$first_ost $last_ost $ost_step"
13748         local test_path=$POOL_ROOT/$POOL_DIR_NAME
13749         local file_dir=$POOL_ROOT/file_tst
13750         local subdir=$test_path/subdir
13751         local rc=0
13752
13753         if ! combined_mgs_mds ; then
13754                 mount_mgs_client
13755         fi
13756
13757         while : ; do
13758                 # former test_200a test_200b
13759                 pool_add $POOL                          || { rc=$? ; break; }
13760                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
13761                 # former test_200c test_200d
13762                 mkdir -p $test_path
13763                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
13764                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
13765                 mkdir -p $subdir
13766                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
13767                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
13768                                                         || { rc=$? ; break; }
13769                 # former test_200e test_200f
13770                 local files=$((OSTCOUNT*3))
13771                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
13772                                                         || { rc=$? ; break; }
13773                 pool_create_files $POOL $file_dir $files "$ost_list" \
13774                                                         || { rc=$? ; break; }
13775                 # former test_200g test_200h
13776                 pool_lfs_df $POOL                       || { rc=$? ; break; }
13777                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
13778
13779                 # former test_201a test_201b test_201c
13780                 pool_remove_first_target $POOL          || { rc=$? ; break; }
13781
13782                 local f=$test_path/$tfile
13783                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
13784                 pool_remove $POOL $f                    || { rc=$? ; break; }
13785                 break
13786         done
13787
13788         destroy_test_pools
13789
13790         if ! combined_mgs_mds ; then
13791                 umount_mgs_client
13792         fi
13793         return $rc
13794 }
13795 run_test 200 "OST pools"
13796
13797 # usage: default_attr <count | size | offset>
13798 default_attr() {
13799         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
13800 }
13801
13802 # usage: check_default_stripe_attr
13803 check_default_stripe_attr() {
13804         ACTUAL=$($LFS getstripe $* $DIR/$tdir)
13805         case $1 in
13806         --stripe-count|-c)
13807                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
13808         --stripe-size|-S)
13809                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
13810         --stripe-index|-i)
13811                 EXPECTED=-1;;
13812         *)
13813                 error "unknown getstripe attr '$1'"
13814         esac
13815
13816         [ $ACTUAL == $EXPECTED ] ||
13817                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
13818 }
13819
13820 test_204a() {
13821         test_mkdir $DIR/$tdir
13822         $LFS setstripe --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
13823
13824         check_default_stripe_attr --stripe-count
13825         check_default_stripe_attr --stripe-size
13826         check_default_stripe_attr --stripe-index
13827 }
13828 run_test 204a "Print default stripe attributes"
13829
13830 test_204b() {
13831         test_mkdir $DIR/$tdir
13832         $LFS setstripe --stripe-count 1 $DIR/$tdir
13833
13834         check_default_stripe_attr --stripe-size
13835         check_default_stripe_attr --stripe-index
13836 }
13837 run_test 204b "Print default stripe size and offset"
13838
13839 test_204c() {
13840         test_mkdir $DIR/$tdir
13841         $LFS setstripe --stripe-size 65536 $DIR/$tdir
13842
13843         check_default_stripe_attr --stripe-count
13844         check_default_stripe_attr --stripe-index
13845 }
13846 run_test 204c "Print default stripe count and offset"
13847
13848 test_204d() {
13849         test_mkdir $DIR/$tdir
13850         $LFS setstripe --stripe-index 0 $DIR/$tdir
13851
13852         check_default_stripe_attr --stripe-count
13853         check_default_stripe_attr --stripe-size
13854 }
13855 run_test 204d "Print default stripe count and size"
13856
13857 test_204e() {
13858         test_mkdir $DIR/$tdir
13859         $LFS setstripe -d $DIR/$tdir
13860
13861         check_default_stripe_attr --stripe-count --raw
13862         check_default_stripe_attr --stripe-size --raw
13863         check_default_stripe_attr --stripe-index --raw
13864 }
13865 run_test 204e "Print raw stripe attributes"
13866
13867 test_204f() {
13868         test_mkdir $DIR/$tdir
13869         $LFS setstripe --stripe-count 1 $DIR/$tdir
13870
13871         check_default_stripe_attr --stripe-size --raw
13872         check_default_stripe_attr --stripe-index --raw
13873 }
13874 run_test 204f "Print raw stripe size and offset"
13875
13876 test_204g() {
13877         test_mkdir $DIR/$tdir
13878         $LFS setstripe --stripe-size 65536 $DIR/$tdir
13879
13880         check_default_stripe_attr --stripe-count --raw
13881         check_default_stripe_attr --stripe-index --raw
13882 }
13883 run_test 204g "Print raw stripe count and offset"
13884
13885 test_204h() {
13886         test_mkdir $DIR/$tdir
13887         $LFS setstripe --stripe-index 0 $DIR/$tdir
13888
13889         check_default_stripe_attr --stripe-count --raw
13890         check_default_stripe_attr --stripe-size --raw
13891 }
13892 run_test 204h "Print raw stripe count and size"
13893
13894 # Figure out which job scheduler is being used, if any,
13895 # or use a fake one
13896 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
13897         JOBENV=SLURM_JOB_ID
13898 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
13899         JOBENV=LSB_JOBID
13900 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
13901         JOBENV=PBS_JOBID
13902 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
13903         JOBENV=LOADL_STEP_ID
13904 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
13905         JOBENV=JOB_ID
13906 else
13907         $LCTL list_param jobid_name > /dev/null 2>&1
13908         if [ $? -eq 0 ]; then
13909                 JOBENV=nodelocal
13910         else
13911                 JOBENV=FAKE_JOBID
13912         fi
13913 fi
13914 LUSTRE_JOBID_SIZE=31 # plus NUL terminator
13915
13916 verify_jobstats() {
13917         local cmd=($1)
13918         shift
13919         local facets="$@"
13920
13921 # we don't really need to clear the stats for this test to work, since each
13922 # command has a unique jobid, but it makes debugging easier if needed.
13923 #       for facet in $facets; do
13924 #               local dev=$(convert_facet2label $facet)
13925 #               # clear old jobstats
13926 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
13927 #       done
13928
13929         # use a new JobID for each test, or we might see an old one
13930         [ "$JOBENV" = "FAKE_JOBID" ] &&
13931                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
13932
13933         JOBVAL=${!JOBENV:0:$LUSTRE_JOBID_SIZE}
13934
13935         [ "$JOBENV" = "nodelocal" ] && {
13936                 FAKE_JOBID=id.$testnum.%e.$RANDOM
13937                 $LCTL set_param jobid_name=$FAKE_JOBID
13938                 JOBVAL=${FAKE_JOBID/\%e/$(basename ${cmd[0]})}
13939         }
13940
13941         log "Test: ${cmd[*]}"
13942         log "Using JobID environment $($LCTL get_param -n jobid_var)=$JOBVAL"
13943
13944         if [ $JOBENV = "FAKE_JOBID" ]; then
13945                 FAKE_JOBID=$JOBVAL ${cmd[*]}
13946         else
13947                 ${cmd[*]}
13948         fi
13949
13950         # all files are created on OST0000
13951         for facet in $facets; do
13952                 local stats="*.$(convert_facet2label $facet).job_stats"
13953
13954                 # strip out libtool wrappers for in-tree executables
13955                 if [ $(do_facet $facet lctl get_param $stats |
13956                        sed -e 's/\.lt-/./' | grep -c $JOBVAL) -ne 1 ]; then
13957                         do_facet $facet lctl get_param $stats
13958                         error "No jobstats for $JOBVAL found on $facet::$stats"
13959                 fi
13960         done
13961 }
13962
13963 jobstats_set() {
13964         local new_jobenv=$1
13965
13966         set_persistent_param_and_check client "jobid_var" \
13967                 "$FSNAME.sys.jobid_var" $new_jobenv
13968 }
13969
13970 test_205() { # Job stats
13971         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13972         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.1) ]] ||
13973                 skip "Need MDS version with at least 2.7.1"
13974         remote_mgs_nodsh && skip "remote MGS with nodsh"
13975         remote_mds_nodsh && skip "remote MDS with nodsh"
13976         remote_ost_nodsh && skip "remote OST with nodsh"
13977         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
13978                 skip "Server doesn't support jobstats"
13979         [[ $JOBID_VAR = disable ]] && skip_env "jobstats is disabled"
13980
13981         local old_jobenv=$($LCTL get_param -n jobid_var)
13982         [ $old_jobenv != $JOBENV ] && jobstats_set $JOBENV
13983
13984         if [[ $PERM_CMD == *"set_param -P"* ]]; then
13985                 stack_trap "do_facet mgs $PERM_CMD jobid_var=$old_jobenv" EXIT
13986         else
13987                 stack_trap "do_facet mgs $PERM_CMD \
13988                         $FSNAME.sys.jobid_var=$old_jobenv" EXIT
13989         fi
13990         changelog_register
13991
13992         local old_interval=$(do_facet $SINGLEMDS lctl get_param -n \
13993                                 mdt.*.job_cleanup_interval | head -n 1)
13994         local new_interval=5
13995         do_facet $SINGLEMDS \
13996                 $LCTL set_param mdt.*.job_cleanup_interval=$new_interval
13997         stack_trap "do_facet $SINGLEMDS \
13998                 $LCTL set_param mdt.*.job_cleanup_interval=$old_interval" EXIT
13999         local start=$SECONDS
14000
14001         local cmd
14002         # mkdir
14003         cmd="mkdir $DIR/$tdir"
14004         verify_jobstats "$cmd" "$SINGLEMDS"
14005         # rmdir
14006         cmd="rmdir $DIR/$tdir"
14007         verify_jobstats "$cmd" "$SINGLEMDS"
14008         # mkdir on secondary MDT
14009         if [ $MDSCOUNT -gt 1 ]; then
14010                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
14011                 verify_jobstats "$cmd" "mds2"
14012         fi
14013         # mknod
14014         cmd="mknod $DIR/$tfile c 1 3"
14015         verify_jobstats "$cmd" "$SINGLEMDS"
14016         # unlink
14017         cmd="rm -f $DIR/$tfile"
14018         verify_jobstats "$cmd" "$SINGLEMDS"
14019         # create all files on OST0000 so verify_jobstats can find OST stats
14020         # open & close
14021         cmd="$LFS setstripe -i 0 -c 1 $DIR/$tfile"
14022         verify_jobstats "$cmd" "$SINGLEMDS"
14023         # setattr
14024         cmd="touch $DIR/$tfile"
14025         verify_jobstats "$cmd" "$SINGLEMDS ost1"
14026         # write
14027         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
14028         verify_jobstats "$cmd" "ost1"
14029         # read
14030         cancel_lru_locks osc
14031         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
14032         verify_jobstats "$cmd" "ost1"
14033         # truncate
14034         cmd="$TRUNCATE $DIR/$tfile 0"
14035         verify_jobstats "$cmd" "$SINGLEMDS ost1"
14036         # rename
14037         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
14038         verify_jobstats "$cmd" "$SINGLEMDS"
14039         # jobstats expiry - sleep until old stats should be expired
14040         local left=$((new_interval + 5 - (SECONDS - start)))
14041         [ $left -ge 0 ] && wait_update_facet $SINGLEMDS \
14042                 "lctl get_param *.*.job_stats | grep -c 'job_id.*mkdir'" \
14043                         "0" $left
14044         cmd="mkdir $DIR/$tdir.expire"
14045         verify_jobstats "$cmd" "$SINGLEMDS"
14046         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
14047             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
14048
14049         # Ensure that jobid are present in changelog (if supported by MDS)
14050         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.52) ];then
14051                 changelog_dump | tail -10
14052                 jobids=$(changelog_dump | tail -9 | grep -c "j=")
14053                 [ $jobids -eq 9 ] ||
14054                         error "Wrong changelog jobid count $jobids != 9"
14055
14056                 # LU-5862
14057                 JOBENV="disable"
14058                 jobstats_set $JOBENV
14059                 touch $DIR/$tfile
14060                 changelog_dump | grep $tfile
14061                 jobids=$(changelog_dump | grep $tfile | tail -1 | grep -c "j=")
14062                 [ $jobids -eq 0 ] ||
14063                         error "Unexpected jobids when jobid_var=$JOBENV"
14064         fi
14065
14066         lctl set_param jobid_var=USER jobid_name="S.%j.%e.%u.%h.E"
14067         JOBENV="JOBCOMPLEX"
14068         JOBCOMPLEX="S.$USER.touch.$(id -u).$(hostname).E"
14069
14070         verify_jobstats "touch $DIR/$tfile" $SINGLEMDS
14071 }
14072 run_test 205 "Verify job stats"
14073
14074 # LU-1480, LU-1773 and LU-1657
14075 test_206() {
14076         mkdir -p $DIR/$tdir
14077         $LFS setstripe -c -1 $DIR/$tdir
14078 #define OBD_FAIL_LOV_INIT 0x1403
14079         $LCTL set_param fail_loc=0xa0001403
14080         $LCTL set_param fail_val=1
14081         touch $DIR/$tdir/$tfile || true
14082 }
14083 run_test 206 "fail lov_init_raid0() doesn't lbug"
14084
14085 test_207a() {
14086         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
14087         local fsz=`stat -c %s $DIR/$tfile`
14088         cancel_lru_locks mdc
14089
14090         # do not return layout in getattr intent
14091 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
14092         $LCTL set_param fail_loc=0x170
14093         local sz=`stat -c %s $DIR/$tfile`
14094
14095         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
14096
14097         rm -rf $DIR/$tfile
14098 }
14099 run_test 207a "can refresh layout at glimpse"
14100
14101 test_207b() {
14102         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
14103         local cksum=`md5sum $DIR/$tfile`
14104         local fsz=`stat -c %s $DIR/$tfile`
14105         cancel_lru_locks mdc
14106         cancel_lru_locks osc
14107
14108         # do not return layout in getattr intent
14109 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
14110         $LCTL set_param fail_loc=0x171
14111
14112         # it will refresh layout after the file is opened but before read issues
14113         echo checksum is "$cksum"
14114         echo "$cksum" |md5sum -c --quiet || error "file differs"
14115
14116         rm -rf $DIR/$tfile
14117 }
14118 run_test 207b "can refresh layout at open"
14119
14120 test_208() {
14121         # FIXME: in this test suite, only RD lease is used. This is okay
14122         # for now as only exclusive open is supported. After generic lease
14123         # is done, this test suite should be revised. - Jinshan
14124
14125         remote_mds_nodsh && skip "remote MDS with nodsh"
14126         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
14127                 skip "Need MDS version at least 2.4.52"
14128
14129         echo "==== test 1: verify get lease work"
14130         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
14131
14132         echo "==== test 2: verify lease can be broken by upcoming open"
14133         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
14134         local PID=$!
14135         sleep 1
14136
14137         $MULTIOP $DIR/$tfile oO_RDONLY:c
14138         kill -USR1 $PID && wait $PID || error "break lease error"
14139
14140         echo "==== test 3: verify lease can't be granted if an open already exists"
14141         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
14142         local PID=$!
14143         sleep 1
14144
14145         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
14146         kill -USR1 $PID && wait $PID || error "open file error"
14147
14148         echo "==== test 4: lease can sustain over recovery"
14149         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
14150         PID=$!
14151         sleep 1
14152
14153         fail mds1
14154
14155         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
14156
14157         echo "==== test 5: lease broken can't be regained by replay"
14158         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
14159         PID=$!
14160         sleep 1
14161
14162         # open file to break lease and then recovery
14163         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
14164         fail mds1
14165
14166         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
14167
14168         rm -f $DIR/$tfile
14169 }
14170 run_test 208 "Exclusive open"
14171
14172 test_209() {
14173         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
14174                 skip_env "must have disp_stripe"
14175
14176         touch $DIR/$tfile
14177         sync; sleep 5; sync;
14178
14179         echo 3 > /proc/sys/vm/drop_caches
14180         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
14181
14182         # open/close 500 times
14183         for i in $(seq 500); do
14184                 cat $DIR/$tfile
14185         done
14186
14187         echo 3 > /proc/sys/vm/drop_caches
14188         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
14189
14190         echo "before: $req_before, after: $req_after"
14191         [ $((req_after - req_before)) -ge 300 ] &&
14192                 error "open/close requests are not freed"
14193         return 0
14194 }
14195 run_test 209 "read-only open/close requests should be freed promptly"
14196
14197 test_212() {
14198         size=`date +%s`
14199         size=$((size % 8192 + 1))
14200         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
14201         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
14202         rm -f $DIR/f212 $DIR/f212.xyz
14203 }
14204 run_test 212 "Sendfile test ============================================"
14205
14206 test_213() {
14207         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
14208         cancel_lru_locks osc
14209         lctl set_param fail_loc=0x8000040f
14210         # generate a read lock
14211         cat $DIR/$tfile > /dev/null
14212         # write to the file, it will try to cancel the above read lock.
14213         cat /etc/hosts >> $DIR/$tfile
14214 }
14215 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
14216
14217 test_214() { # for bug 20133
14218         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
14219         for (( i=0; i < 340; i++ )) ; do
14220                 touch $DIR/$tdir/d214c/a$i
14221         done
14222
14223         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
14224         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
14225         ls $DIR/d214c || error "ls $DIR/d214c failed"
14226         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
14227         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
14228 }
14229 run_test 214 "hash-indexed directory test - bug 20133"
14230
14231 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
14232 create_lnet_proc_files() {
14233         lctl get_param -n $1 >$TMP/lnet_$1.sys || error "cannot read lnet.$1"
14234 }
14235
14236 # counterpart of create_lnet_proc_files
14237 remove_lnet_proc_files() {
14238         rm -f $TMP/lnet_$1.sys
14239 }
14240
14241 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
14242 # 3rd arg as regexp for body
14243 check_lnet_proc_stats() {
14244         local l=$(cat "$TMP/lnet_$1" |wc -l)
14245         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
14246
14247         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
14248 }
14249
14250 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
14251 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
14252 # optional and can be regexp for 2nd line (lnet.routes case)
14253 check_lnet_proc_entry() {
14254         local blp=2          # blp stands for 'position of 1st line of body'
14255         [ -z "$5" ] || blp=3 # lnet.routes case
14256
14257         local l=$(cat "$TMP/lnet_$1" |wc -l)
14258         # subtracting one from $blp because the body can be empty
14259         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
14260
14261         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
14262                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
14263
14264         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
14265                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
14266
14267         # bail out if any unexpected line happened
14268         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
14269         [ "$?" != 0 ] || error "$2 misformatted"
14270 }
14271
14272 test_215() { # for bugs 18102, 21079, 21517
14273         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14274
14275         local N='(0|[1-9][0-9]*)'       # non-negative numeric
14276         local P='[1-9][0-9]*'           # positive numeric
14277         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
14278         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
14279         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
14280         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
14281
14282         local L1 # regexp for 1st line
14283         local L2 # regexp for 2nd line (optional)
14284         local BR # regexp for the rest (body)
14285
14286         # lnet.stats should look as 11 space-separated non-negative numerics
14287         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
14288         create_lnet_proc_files "stats"
14289         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
14290         remove_lnet_proc_files "stats"
14291
14292         # lnet.routes should look like this:
14293         # Routing disabled/enabled
14294         # net hops priority state router
14295         # where net is a string like tcp0, hops > 0, priority >= 0,
14296         # state is up/down,
14297         # router is a string like 192.168.1.1@tcp2
14298         L1="^Routing (disabled|enabled)$"
14299         L2="^net +hops +priority +state +router$"
14300         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
14301         create_lnet_proc_files "routes"
14302         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
14303         remove_lnet_proc_files "routes"
14304
14305         # lnet.routers should look like this:
14306         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
14307         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
14308         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
14309         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
14310         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
14311         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
14312         create_lnet_proc_files "routers"
14313         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
14314         remove_lnet_proc_files "routers"
14315
14316         # lnet.peers should look like this:
14317         # nid refs state last max rtr min tx min queue
14318         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
14319         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
14320         # numeric (0 or >0 or <0), queue >= 0.
14321         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
14322         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
14323         create_lnet_proc_files "peers"
14324         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
14325         remove_lnet_proc_files "peers"
14326
14327         # lnet.buffers  should look like this:
14328         # pages count credits min
14329         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
14330         L1="^pages +count +credits +min$"
14331         BR="^ +$N +$N +$I +$I$"
14332         create_lnet_proc_files "buffers"
14333         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
14334         remove_lnet_proc_files "buffers"
14335
14336         # lnet.nis should look like this:
14337         # nid status alive refs peer rtr max tx min
14338         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
14339         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
14340         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
14341         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
14342         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
14343         create_lnet_proc_files "nis"
14344         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
14345         remove_lnet_proc_files "nis"
14346
14347         # can we successfully write to lnet.stats?
14348         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
14349 }
14350 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
14351
14352 test_216() { # bug 20317
14353         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14354         remote_ost_nodsh && skip "remote OST with nodsh"
14355
14356         local node
14357         local facets=$(get_facets OST)
14358         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
14359
14360         save_lustre_params client "osc.*.contention_seconds" > $p
14361         save_lustre_params $facets \
14362                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
14363         save_lustre_params $facets \
14364                 "ldlm.namespaces.filter-*.contended_locks" >> $p
14365         save_lustre_params $facets \
14366                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
14367         clear_stats osc.*.osc_stats
14368
14369         # agressive lockless i/o settings
14370         do_nodes $(comma_list $(osts_nodes)) \
14371                 "lctl set_param -n ldlm.namespaces.*.max_nolock_bytes=2000000 \
14372                         ldlm.namespaces.filter-*.contended_locks=0 \
14373                         ldlm.namespaces.filter-*.contention_seconds=60"
14374         lctl set_param -n osc.*.contention_seconds=60
14375
14376         $DIRECTIO write $DIR/$tfile 0 10 4096
14377         $CHECKSTAT -s 40960 $DIR/$tfile
14378
14379         # disable lockless i/o
14380         do_nodes $(comma_list $(osts_nodes)) \
14381                 "lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes=0 \
14382                         ldlm.namespaces.filter-*.contended_locks=32 \
14383                         ldlm.namespaces.filter-*.contention_seconds=0"
14384         lctl set_param -n osc.*.contention_seconds=0
14385         clear_stats osc.*.osc_stats
14386
14387         dd if=/dev/zero of=$DIR/$tfile count=0
14388         $CHECKSTAT -s 0 $DIR/$tfile
14389
14390         restore_lustre_params <$p
14391         rm -f $p
14392         rm $DIR/$tfile
14393 }
14394 run_test 216 "check lockless direct write updates file size and kms correctly"
14395
14396 test_217() { # bug 22430
14397         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14398
14399         local node
14400         local nid
14401
14402         for node in $(nodes_list); do
14403                 nid=$(host_nids_address $node $NETTYPE)
14404                 if [[ $nid = *-* ]] ; then
14405                         echo "lctl ping $(h2nettype $nid)"
14406                         lctl ping $(h2nettype $nid)
14407                 else
14408                         echo "skipping $node (no hyphen detected)"
14409                 fi
14410         done
14411 }
14412 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
14413
14414 test_218() {
14415        # do directio so as not to populate the page cache
14416        log "creating a 10 Mb file"
14417        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
14418        log "starting reads"
14419        dd if=$DIR/$tfile of=/dev/null bs=4096 &
14420        log "truncating the file"
14421        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
14422        log "killing dd"
14423        kill %+ || true # reads might have finished
14424        echo "wait until dd is finished"
14425        wait
14426        log "removing the temporary file"
14427        rm -rf $DIR/$tfile || error "tmp file removal failed"
14428 }
14429 run_test 218 "parallel read and truncate should not deadlock"
14430
14431 test_219() {
14432         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14433
14434         # write one partial page
14435         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
14436         # set no grant so vvp_io_commit_write will do sync write
14437         $LCTL set_param fail_loc=0x411
14438         # write a full page at the end of file
14439         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
14440
14441         $LCTL set_param fail_loc=0
14442         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
14443         $LCTL set_param fail_loc=0x411
14444         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
14445
14446         # LU-4201
14447         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
14448         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
14449 }
14450 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
14451
14452 test_220() { #LU-325
14453         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14454         remote_ost_nodsh && skip "remote OST with nodsh"
14455         remote_mds_nodsh && skip "remote MDS with nodsh"
14456         remote_mgs_nodsh && skip "remote MGS with nodsh"
14457
14458         local OSTIDX=0
14459
14460         # create on MDT0000 so the last_id and next_id are correct
14461         mkdir $DIR/$tdir
14462         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
14463         OST=${OST%_UUID}
14464
14465         # on the mdt's osc
14466         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
14467         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
14468                         osc.$mdtosc_proc1.prealloc_last_id)
14469         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
14470                         osc.$mdtosc_proc1.prealloc_next_id)
14471
14472         $LFS df -i
14473
14474         if ! combined_mgs_mds ; then
14475                 mount_mgs_client
14476         fi
14477
14478         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
14479         #define OBD_FAIL_OST_ENOINO              0x229
14480         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
14481         create_pool $FSNAME.$TESTNAME || return 1
14482         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
14483
14484         $LFS setstripe $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
14485
14486         MDSOBJS=$((last_id - next_id))
14487         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
14488
14489         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
14490         echo "OST still has $count kbytes free"
14491
14492         echo "create $MDSOBJS files @next_id..."
14493         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
14494
14495         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
14496                         osc.$mdtosc_proc1.prealloc_last_id)
14497         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
14498                         osc.$mdtosc_proc1.prealloc_next_id)
14499
14500         echo "after creation, last_id=$last_id2, next_id=$next_id2"
14501         $LFS df -i
14502
14503         echo "cleanup..."
14504
14505         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
14506         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
14507
14508         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST ||
14509                 error "$LCTL pool_remove $FSNAME.$TESTNAME $OST failed"
14510         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
14511                 error "$LCTL pool_destroy $FSNAME.$TESTNAME failed"
14512         echo "unlink $MDSOBJS files @$next_id..."
14513         unlinkmany $DIR/$tdir/f $MDSOBJS || error "unlinkmany failed"
14514
14515         if ! combined_mgs_mds ; then
14516                 umount_mgs_client
14517         fi
14518 }
14519 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
14520
14521 test_221() {
14522         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14523
14524         dd if=`which date` of=$MOUNT/date oflag=sync
14525         chmod +x $MOUNT/date
14526
14527         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
14528         $LCTL set_param fail_loc=0x80001401
14529
14530         $MOUNT/date > /dev/null
14531         rm -f $MOUNT/date
14532 }
14533 run_test 221 "make sure fault and truncate race to not cause OOM"
14534
14535 test_222a () {
14536         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14537
14538         rm -rf $DIR/$tdir
14539         test_mkdir $DIR/$tdir
14540         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14541         createmany -o $DIR/$tdir/$tfile 10
14542         cancel_lru_locks mdc
14543         cancel_lru_locks osc
14544         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
14545         $LCTL set_param fail_loc=0x31a
14546         ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
14547         $LCTL set_param fail_loc=0
14548         rm -r $DIR/$tdir
14549 }
14550 run_test 222a "AGL for ls should not trigger CLIO lock failure"
14551
14552 test_222b () {
14553         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14554
14555         rm -rf $DIR/$tdir
14556         test_mkdir $DIR/$tdir
14557         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14558         createmany -o $DIR/$tdir/$tfile 10
14559         cancel_lru_locks mdc
14560         cancel_lru_locks osc
14561         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
14562         $LCTL set_param fail_loc=0x31a
14563         rm -r $DIR/$tdir || error "AGL for rmdir failed"
14564         $LCTL set_param fail_loc=0
14565 }
14566 run_test 222b "AGL for rmdir should not trigger CLIO lock failure"
14567
14568 test_223 () {
14569         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14570
14571         rm -rf $DIR/$tdir
14572         test_mkdir $DIR/$tdir
14573         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14574         createmany -o $DIR/$tdir/$tfile 10
14575         cancel_lru_locks mdc
14576         cancel_lru_locks osc
14577         #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
14578         $LCTL set_param fail_loc=0x31b
14579         ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
14580         $LCTL set_param fail_loc=0
14581         rm -r $DIR/$tdir
14582 }
14583 run_test 223 "osc reenqueue if without AGL lock granted ======================="
14584
14585 test_224a() { # LU-1039, MRP-303
14586         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14587
14588         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
14589         $LCTL set_param fail_loc=0x508
14590         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
14591         $LCTL set_param fail_loc=0
14592         df $DIR
14593 }
14594 run_test 224a "Don't panic on bulk IO failure"
14595
14596 test_224b() { # LU-1039, MRP-303
14597         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14598
14599         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
14600         cancel_lru_locks osc
14601         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
14602         $LCTL set_param fail_loc=0x515
14603         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
14604         $LCTL set_param fail_loc=0
14605         df $DIR
14606 }
14607 run_test 224b "Don't panic on bulk IO failure"
14608
14609 test_224c() { # LU-6441
14610         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14611         remote_mds_nodsh && skip "remote MDS with nodsh"
14612
14613         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
14614         save_writethrough $p
14615         set_cache writethrough on
14616
14617         local pages_per_rpc=$($LCTL get_param \
14618                                 osc.*.max_pages_per_rpc)
14619         local at_max=$($LCTL get_param -n at_max)
14620         local timeout=$($LCTL get_param -n timeout)
14621         local test_at="at_max"
14622         local param_at="$FSNAME.sys.at_max"
14623         local test_timeout="timeout"
14624         local param_timeout="$FSNAME.sys.timeout"
14625
14626         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
14627
14628         set_persistent_param_and_check client "$test_at" "$param_at" 0
14629         set_persistent_param_and_check client "$test_timeout" "$param_timeout" 5
14630
14631         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3   0x520
14632         do_facet ost1 $LCTL set_param fail_loc=0x520
14633         $LFS setstripe -c 1 -i 0 $DIR/$tfile
14634         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
14635         sync
14636         do_facet ost1 $LCTL set_param fail_loc=0
14637
14638         set_persistent_param_and_check client "$test_at" "$param_at" $at_max
14639         set_persistent_param_and_check client "$test_timeout" "$param_timeout" \
14640                 $timeout
14641
14642         $LCTL set_param -n $pages_per_rpc
14643         restore_lustre_params < $p
14644         rm -f $p
14645 }
14646 run_test 224c "Don't hang if one of md lost during large bulk RPC"
14647
14648 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
14649 test_225a () {
14650         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14651         if [ -z ${MDSSURVEY} ]; then
14652                 skip_env "mds-survey not found"
14653         fi
14654         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
14655                 skip "Need MDS version at least 2.2.51"
14656
14657         local mds=$(facet_host $SINGLEMDS)
14658         local target=$(do_nodes $mds 'lctl dl' |
14659                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
14660
14661         local cmd1="file_count=1000 thrhi=4"
14662         local cmd2="dir_count=2 layer=mdd stripe_count=0"
14663         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
14664         local cmd="$cmd1 $cmd2 $cmd3"
14665
14666         rm -f ${TMP}/mds_survey*
14667         echo + $cmd
14668         eval $cmd || error "mds-survey with zero-stripe failed"
14669         cat ${TMP}/mds_survey*
14670         rm -f ${TMP}/mds_survey*
14671 }
14672 run_test 225a "Metadata survey sanity with zero-stripe"
14673
14674 test_225b () {
14675         if [ -z ${MDSSURVEY} ]; then
14676                 skip_env "mds-survey not found"
14677         fi
14678         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
14679                 skip "Need MDS version at least 2.2.51"
14680         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14681         remote_mds_nodsh && skip "remote MDS with nodsh"
14682         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
14683                 skip_env "Need to mount OST to test"
14684         fi
14685
14686         local mds=$(facet_host $SINGLEMDS)
14687         local target=$(do_nodes $mds 'lctl dl' |
14688                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
14689
14690         local cmd1="file_count=1000 thrhi=4"
14691         local cmd2="dir_count=2 layer=mdd stripe_count=1"
14692         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
14693         local cmd="$cmd1 $cmd2 $cmd3"
14694
14695         rm -f ${TMP}/mds_survey*
14696         echo + $cmd
14697         eval $cmd || error "mds-survey with stripe_count failed"
14698         cat ${TMP}/mds_survey*
14699         rm -f ${TMP}/mds_survey*
14700 }
14701 run_test 225b "Metadata survey sanity with stripe_count = 1"
14702
14703 mcreate_path2fid () {
14704         local mode=$1
14705         local major=$2
14706         local minor=$3
14707         local name=$4
14708         local desc=$5
14709         local path=$DIR/$tdir/$name
14710         local fid
14711         local rc
14712         local fid_path
14713
14714         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
14715                 error "cannot create $desc"
14716
14717         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
14718         rc=$?
14719         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
14720
14721         fid_path=$($LFS fid2path $MOUNT $fid)
14722         rc=$?
14723         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
14724
14725         [ "$path" == "$fid_path" ] ||
14726                 error "fid2path returned $fid_path, expected $path"
14727
14728         echo "pass with $path and $fid"
14729 }
14730
14731 test_226a () {
14732         rm -rf $DIR/$tdir
14733         mkdir -p $DIR/$tdir
14734
14735         mcreate_path2fid 0010666 0 0 fifo "FIFO"
14736         mcreate_path2fid 0020666 1 3 null "character special file (null)"
14737         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
14738         mcreate_path2fid 0040666 0 0 dir "directory"
14739         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
14740         mcreate_path2fid 0100666 0 0 file "regular file"
14741         mcreate_path2fid 0120666 0 0 link "symbolic link"
14742         mcreate_path2fid 0140666 0 0 sock "socket"
14743 }
14744 run_test 226a "call path2fid and fid2path on files of all type"
14745
14746 test_226b () {
14747         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14748
14749         local MDTIDX=1
14750
14751         rm -rf $DIR/$tdir
14752         mkdir -p $DIR/$tdir
14753         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
14754                 error "create remote directory failed"
14755         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
14756         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
14757                                 "character special file (null)"
14758         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
14759                                 "character special file (no device)"
14760         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
14761         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
14762                                 "block special file (loop)"
14763         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
14764         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
14765         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
14766 }
14767 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
14768
14769 # LU-1299 Executing or running ldd on a truncated executable does not
14770 # cause an out-of-memory condition.
14771 test_227() {
14772         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14773         [ -z "$(which ldd)" ] && skip_env "should have ldd tool"
14774
14775         dd if=$(which date) of=$MOUNT/date bs=1k count=1
14776         chmod +x $MOUNT/date
14777
14778         $MOUNT/date > /dev/null
14779         ldd $MOUNT/date > /dev/null
14780         rm -f $MOUNT/date
14781 }
14782 run_test 227 "running truncated executable does not cause OOM"
14783
14784 # LU-1512 try to reuse idle OI blocks
14785 test_228a() {
14786         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14787         remote_mds_nodsh && skip "remote MDS with nodsh"
14788         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
14789                 skip_env "ldiskfs only test"
14790
14791         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14792         local myDIR=$DIR/$tdir
14793
14794         mkdir -p $myDIR
14795         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14796         $LCTL set_param fail_loc=0x80001002
14797         createmany -o $myDIR/t- 10000
14798         $LCTL set_param fail_loc=0
14799         # The guard is current the largest FID holder
14800         touch $myDIR/guard
14801         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14802                     tr -d '[')
14803         local IDX=$(($SEQ % 64))
14804
14805         do_facet $SINGLEMDS sync
14806         # Make sure journal flushed.
14807         sleep 6
14808         local blk1=$(do_facet $SINGLEMDS \
14809                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14810                      grep Blockcount | awk '{print $4}')
14811
14812         # Remove old files, some OI blocks will become idle.
14813         unlinkmany $myDIR/t- 10000
14814         # Create new files, idle OI blocks should be reused.
14815         createmany -o $myDIR/t- 2000
14816         do_facet $SINGLEMDS sync
14817         # Make sure journal flushed.
14818         sleep 6
14819         local blk2=$(do_facet $SINGLEMDS \
14820                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14821                      grep Blockcount | awk '{print $4}')
14822
14823         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14824 }
14825 run_test 228a "try to reuse idle OI blocks"
14826
14827 test_228b() {
14828         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14829         remote_mds_nodsh && skip "remote MDS with nodsh"
14830         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
14831                 skip_env "ldiskfs only test"
14832
14833         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14834         local myDIR=$DIR/$tdir
14835
14836         mkdir -p $myDIR
14837         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14838         $LCTL set_param fail_loc=0x80001002
14839         createmany -o $myDIR/t- 10000
14840         $LCTL set_param fail_loc=0
14841         # The guard is current the largest FID holder
14842         touch $myDIR/guard
14843         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14844                     tr -d '[')
14845         local IDX=$(($SEQ % 64))
14846
14847         do_facet $SINGLEMDS sync
14848         # Make sure journal flushed.
14849         sleep 6
14850         local blk1=$(do_facet $SINGLEMDS \
14851                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14852                      grep Blockcount | awk '{print $4}')
14853
14854         # Remove old files, some OI blocks will become idle.
14855         unlinkmany $myDIR/t- 10000
14856
14857         # stop the MDT
14858         stop $SINGLEMDS || error "Fail to stop MDT."
14859         # remount the MDT
14860         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
14861
14862         df $MOUNT || error "Fail to df."
14863         # Create new files, idle OI blocks should be reused.
14864         createmany -o $myDIR/t- 2000
14865         do_facet $SINGLEMDS sync
14866         # Make sure journal flushed.
14867         sleep 6
14868         local blk2=$(do_facet $SINGLEMDS \
14869                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14870                      grep Blockcount | awk '{print $4}')
14871
14872         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14873 }
14874 run_test 228b "idle OI blocks can be reused after MDT restart"
14875
14876 #LU-1881
14877 test_228c() {
14878         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14879         remote_mds_nodsh && skip "remote MDS with nodsh"
14880         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
14881                 skip_env "ldiskfs only test"
14882
14883         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14884         local myDIR=$DIR/$tdir
14885
14886         mkdir -p $myDIR
14887         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14888         $LCTL set_param fail_loc=0x80001002
14889         # 20000 files can guarantee there are index nodes in the OI file
14890         createmany -o $myDIR/t- 20000
14891         $LCTL set_param fail_loc=0
14892         # The guard is current the largest FID holder
14893         touch $myDIR/guard
14894         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14895                     tr -d '[')
14896         local IDX=$(($SEQ % 64))
14897
14898         do_facet $SINGLEMDS sync
14899         # Make sure journal flushed.
14900         sleep 6
14901         local blk1=$(do_facet $SINGLEMDS \
14902                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14903                      grep Blockcount | awk '{print $4}')
14904
14905         # Remove old files, some OI blocks will become idle.
14906         unlinkmany $myDIR/t- 20000
14907         rm -f $myDIR/guard
14908         # The OI file should become empty now
14909
14910         # Create new files, idle OI blocks should be reused.
14911         createmany -o $myDIR/t- 2000
14912         do_facet $SINGLEMDS sync
14913         # Make sure journal flushed.
14914         sleep 6
14915         local blk2=$(do_facet $SINGLEMDS \
14916                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14917                      grep Blockcount | awk '{print $4}')
14918
14919         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14920 }
14921 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
14922
14923 test_229() { # LU-2482, LU-3448
14924         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14925         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
14926         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
14927                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53"
14928
14929         rm -f $DIR/$tfile
14930
14931         # Create a file with a released layout and stripe count 2.
14932         $MULTIOP $DIR/$tfile H2c ||
14933                 error "failed to create file with released layout"
14934
14935         $LFS getstripe -v $DIR/$tfile
14936
14937         local pattern=$($LFS getstripe -L $DIR/$tfile)
14938         [ X"$pattern" = X"released" ] || error "pattern error ($pattern)"
14939
14940         local stripe_count=$($LFS getstripe -c $DIR/$tfile) ||
14941                 error "getstripe"
14942         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
14943         stat $DIR/$tfile || error "failed to stat released file"
14944
14945         chown $RUNAS_ID $DIR/$tfile ||
14946                 error "chown $RUNAS_ID $DIR/$tfile failed"
14947
14948         chgrp $RUNAS_ID $DIR/$tfile ||
14949                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
14950
14951         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
14952         rm $DIR/$tfile || error "failed to remove released file"
14953 }
14954 run_test 229 "getstripe/stat/rm/attr changes work on released files"
14955
14956 test_230a() {
14957         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14958         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14959         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
14960                 skip "Need MDS version at least 2.11.52"
14961
14962         local MDTIDX=1
14963
14964         test_mkdir $DIR/$tdir
14965         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
14966         local mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230_local)
14967         [ $mdt_idx -ne 0 ] &&
14968                 error "create local directory on wrong MDT $mdt_idx"
14969
14970         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
14971                         error "create remote directory failed"
14972         local mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230)
14973         [ $mdt_idx -ne $MDTIDX ] &&
14974                 error "create remote directory on wrong MDT $mdt_idx"
14975
14976         createmany -o $DIR/$tdir/test_230/t- 10 ||
14977                 error "create files on remote directory failed"
14978         mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230/t-0)
14979         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
14980         rm -r $DIR/$tdir || error "unlink remote directory failed"
14981 }
14982 run_test 230a "Create remote directory and files under the remote directory"
14983
14984 test_230b() {
14985         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14986         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14987         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
14988                 skip "Need MDS version at least 2.11.52"
14989
14990         local MDTIDX=1
14991         local mdt_index
14992         local i
14993         local file
14994         local pid
14995         local stripe_count
14996         local migrate_dir=$DIR/$tdir/migrate_dir
14997         local other_dir=$DIR/$tdir/other_dir
14998
14999         test_mkdir $DIR/$tdir
15000         test_mkdir -i0 -c1 $migrate_dir
15001         test_mkdir -i0 -c1 $other_dir
15002         for ((i=0; i<10; i++)); do
15003                 mkdir -p $migrate_dir/dir_${i}
15004                 createmany -o $migrate_dir/dir_${i}/f 10 ||
15005                         error "create files under remote dir failed $i"
15006         done
15007
15008         cp /etc/passwd $migrate_dir/$tfile
15009         cp /etc/passwd $other_dir/$tfile
15010         chattr +SAD $migrate_dir
15011         chattr +SAD $migrate_dir/$tfile
15012
15013         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
15014         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
15015         local old_dir_mode=$(stat -c%f $migrate_dir)
15016         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
15017
15018         mkdir -p $migrate_dir/dir_default_stripe2
15019         $LFS setstripe -c 2 $migrate_dir/dir_default_stripe2
15020         $LFS setstripe -c 2 $migrate_dir/${tfile}_stripe2
15021
15022         mkdir -p $other_dir
15023         ln $migrate_dir/$tfile $other_dir/luna
15024         ln $migrate_dir/$tfile $migrate_dir/sofia
15025         ln $other_dir/$tfile $migrate_dir/david
15026         ln -s $migrate_dir/$tfile $other_dir/zachary
15027         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
15028         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
15029
15030         $LFS migrate -m $MDTIDX $migrate_dir ||
15031                 error "fails on migrating remote dir to MDT1"
15032
15033         echo "migratate to MDT1, then checking.."
15034         for ((i = 0; i < 10; i++)); do
15035                 for file in $(find $migrate_dir/dir_${i}); do
15036                         mdt_index=$($LFS getstripe -m $file)
15037                         [ $mdt_index == $MDTIDX ] ||
15038                                 error "$file is not on MDT${MDTIDX}"
15039                 done
15040         done
15041
15042         # the multiple link file should still in MDT0
15043         mdt_index=$($LFS getstripe -m $migrate_dir/$tfile)
15044         [ $mdt_index == 0 ] ||
15045                 error "$file is not on MDT${MDTIDX}"
15046
15047         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
15048         [ "$old_dir_flag" = "$new_dir_flag" ] ||
15049                 error " expect $old_dir_flag get $new_dir_flag"
15050
15051         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
15052         [ "$old_file_flag" = "$new_file_flag" ] ||
15053                 error " expect $old_file_flag get $new_file_flag"
15054
15055         local new_dir_mode=$(stat -c%f $migrate_dir)
15056         [ "$old_dir_mode" = "$new_dir_mode" ] ||
15057                 error "expect mode $old_dir_mode get $new_dir_mode"
15058
15059         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
15060         [ "$old_file_mode" = "$new_file_mode" ] ||
15061                 error "expect mode $old_file_mode get $new_file_mode"
15062
15063         diff /etc/passwd $migrate_dir/$tfile ||
15064                 error "$tfile different after migration"
15065
15066         diff /etc/passwd $other_dir/luna ||
15067                 error "luna different after migration"
15068
15069         diff /etc/passwd $migrate_dir/sofia ||
15070                 error "sofia different after migration"
15071
15072         diff /etc/passwd $migrate_dir/david ||
15073                 error "david different after migration"
15074
15075         diff /etc/passwd $other_dir/zachary ||
15076                 error "zachary different after migration"
15077
15078         diff /etc/passwd $migrate_dir/${tfile}_ln ||
15079                 error "${tfile}_ln different after migration"
15080
15081         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
15082                 error "${tfile}_ln_other different after migration"
15083
15084         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
15085         [ $stripe_count = 2 ] ||
15086                 error "dir strpe_count $d != 2 after migration."
15087
15088         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
15089         [ $stripe_count = 2 ] ||
15090                 error "file strpe_count $d != 2 after migration."
15091
15092         #migrate back to MDT0
15093         MDTIDX=0
15094
15095         $LFS migrate -m $MDTIDX $migrate_dir ||
15096                 error "fails on migrating remote dir to MDT0"
15097
15098         echo "migrate back to MDT0, checking.."
15099         for file in $(find $migrate_dir); do
15100                 mdt_index=$($LFS getstripe -m $file)
15101                 [ $mdt_index == $MDTIDX ] ||
15102                         error "$file is not on MDT${MDTIDX}"
15103         done
15104
15105         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
15106         [ "$old_dir_flag" = "$new_dir_flag" ] ||
15107                 error " expect $old_dir_flag get $new_dir_flag"
15108
15109         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
15110         [ "$old_file_flag" = "$new_file_flag" ] ||
15111                 error " expect $old_file_flag get $new_file_flag"
15112
15113         local new_dir_mode=$(stat -c%f $migrate_dir)
15114         [ "$old_dir_mode" = "$new_dir_mode" ] ||
15115                 error "expect mode $old_dir_mode get $new_dir_mode"
15116
15117         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
15118         [ "$old_file_mode" = "$new_file_mode" ] ||
15119                 error "expect mode $old_file_mode get $new_file_mode"
15120
15121         diff /etc/passwd ${migrate_dir}/$tfile ||
15122                 error "$tfile different after migration"
15123
15124         diff /etc/passwd ${other_dir}/luna ||
15125                 error "luna different after migration"
15126
15127         diff /etc/passwd ${migrate_dir}/sofia ||
15128                 error "sofia different after migration"
15129
15130         diff /etc/passwd ${other_dir}/zachary ||
15131                 error "zachary different after migration"
15132
15133         diff /etc/passwd $migrate_dir/${tfile}_ln ||
15134                 error "${tfile}_ln different after migration"
15135
15136         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
15137                 error "${tfile}_ln_other different after migration"
15138
15139         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
15140         [ $stripe_count = 2 ] ||
15141                 error "dir strpe_count $d != 2 after migration."
15142
15143         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
15144         [ $stripe_count = 2 ] ||
15145                 error "file strpe_count $d != 2 after migration."
15146
15147         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15148 }
15149 run_test 230b "migrate directory"
15150
15151 test_230c() {
15152         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15153         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15154         remote_mds_nodsh && skip "remote MDS with nodsh"
15155         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15156                 skip "Need MDS version at least 2.11.52"
15157
15158         local MDTIDX=1
15159         local total=3
15160         local mdt_index
15161         local file
15162         local migrate_dir=$DIR/$tdir/migrate_dir
15163
15164         #If migrating directory fails in the middle, all entries of
15165         #the directory is still accessiable.
15166         test_mkdir $DIR/$tdir
15167         test_mkdir -i0 -c1 $migrate_dir
15168         test_mkdir -i1 -c1 $DIR/$tdir/remote_dir
15169         stat $migrate_dir
15170         createmany -o $migrate_dir/f $total ||
15171                 error "create files under ${migrate_dir} failed"
15172
15173         # fail after migrating top dir, and this will fail only once, so the
15174         # first sub file migration will fail (currently f3), others succeed.
15175         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
15176         do_facet mds1 lctl set_param fail_loc=0x1801
15177         local t=$(ls $migrate_dir | wc -l)
15178         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
15179                 error "migrate should fail"
15180         local u=$(ls $migrate_dir | wc -l)
15181         [ "$u" == "$t" ] || error "$u != $t during migration"
15182
15183         # add new dir/file should succeed
15184         mkdir $migrate_dir/dir ||
15185                 error "mkdir failed under migrating directory"
15186         touch $migrate_dir/file ||
15187                 error "create file failed under migrating directory"
15188
15189         # add file with existing name should fail
15190         for file in $migrate_dir/f*; do
15191                 stat $file > /dev/null || error "stat $file failed"
15192                 $OPENFILE -f O_CREAT:O_EXCL $file &&
15193                         error "open(O_CREAT|O_EXCL) $file should fail"
15194                 $MULTIOP $file m && error "create $file should fail"
15195                 touch $DIR/$tdir/remote_dir/$tfile ||
15196                         error "touch $tfile failed"
15197                 ln $DIR/$tdir/remote_dir/$tfile $file &&
15198                         error "link $file should fail"
15199                 mdt_index=$($LFS getstripe -m $file)
15200                 if [ $mdt_index == 0 ]; then
15201                         # file failed to migrate is not allowed to rename to
15202                         mv $DIR/$tdir/remote_dir/$tfile $file &&
15203                                 error "rename to $file should fail"
15204                 else
15205                         mv $DIR/$tdir/remote_dir/$tfile $file ||
15206                                 error "rename to $file failed"
15207                 fi
15208                 echo hello >> $file || error "write $file failed"
15209         done
15210
15211         # resume migration with different options should fail
15212         $LFS migrate -m 0 $migrate_dir &&
15213                 error "migrate -m 0 $migrate_dir should fail"
15214
15215         $LFS migrate -m $MDTIDX -c 2 $migrate_dir &&
15216                 error "migrate -c 2 $migrate_dir should fail"
15217
15218         # resume migration should succeed
15219         $LFS migrate -m $MDTIDX $migrate_dir ||
15220                 error "migrate $migrate_dir failed"
15221
15222         echo "Finish migration, then checking.."
15223         for file in $(find $migrate_dir); do
15224                 mdt_index=$($LFS getstripe -m $file)
15225                 [ $mdt_index == $MDTIDX ] ||
15226                         error "$file is not on MDT${MDTIDX}"
15227         done
15228
15229         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15230 }
15231 run_test 230c "check directory accessiblity if migration failed"
15232
15233 test_230d() {
15234         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15235         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15236         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15237                 skip "Need MDS version at least 2.11.52"
15238         # LU-11235
15239         [ "$(facet_fstype mds1)" == "zfs" ] && skip "skip ZFS backend"
15240
15241         local migrate_dir=$DIR/$tdir/migrate_dir
15242         local old_index
15243         local new_index
15244         local old_count
15245         local new_count
15246         local new_hash
15247         local mdt_index
15248         local i
15249         local j
15250
15251         old_index=$((RANDOM % MDSCOUNT))
15252         old_count=$((MDSCOUNT - old_index))
15253         new_index=$((RANDOM % MDSCOUNT))
15254         new_count=$((MDSCOUNT - new_index))
15255         new_hash="all_char"
15256
15257         [ $old_count -gt 1 ] && old_count=$((old_count - RANDOM % old_count))
15258         [ $new_count -gt 1 ] && new_count=$((new_count - RANDOM % new_count))
15259
15260         test_mkdir $DIR/$tdir
15261         test_mkdir -i $old_index -c $old_count $migrate_dir
15262
15263         for ((i=0; i<100; i++)); do
15264                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
15265                 createmany -o $migrate_dir/dir_${i}/f 100 ||
15266                         error "create files under remote dir failed $i"
15267         done
15268
15269         echo -n "Migrate from MDT$old_index "
15270         [ $old_count -gt 1 ] && echo -n "... MDT$((old_index + old_count - 1)) "
15271         echo -n "to MDT$new_index"
15272         [ $new_count -gt 1 ] && echo -n " ... MDT$((new_index + new_count - 1))"
15273         echo
15274
15275         echo "$LFS migrate -m$new_index -c$new_count -H $new_hash $migrate_dir"
15276         $LFS migrate -m $new_index -c $new_count -H $new_hash $migrate_dir ||
15277                 error "migrate remote dir error"
15278
15279         echo "Finish migration, then checking.."
15280         for file in $(find $migrate_dir); do
15281                 mdt_index=$($LFS getstripe -m $file)
15282                 if [ $mdt_index -lt $new_index ] ||
15283                    [ $mdt_index -gt $((new_index + new_count - 1)) ]; then
15284                         error "$file is on MDT$mdt_index"
15285                 fi
15286         done
15287
15288         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15289 }
15290 run_test 230d "check migrate big directory"
15291
15292 test_230e() {
15293         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15294         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15295         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15296                 skip "Need MDS version at least 2.11.52"
15297
15298         local i
15299         local j
15300         local a_fid
15301         local b_fid
15302
15303         mkdir -p $DIR/$tdir
15304         mkdir $DIR/$tdir/migrate_dir
15305         mkdir $DIR/$tdir/other_dir
15306         touch $DIR/$tdir/migrate_dir/a
15307         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
15308         ls $DIR/$tdir/other_dir
15309
15310         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15311                 error "migrate dir fails"
15312
15313         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
15314         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
15315
15316         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15317         [ $mdt_index == 0 ] || error "a is not on MDT0"
15318
15319         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
15320                 error "migrate dir fails"
15321
15322         mdt_index=$($LFS getstripe -m $DIR/$tdir/other_dir)
15323         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
15324
15325         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15326         [ $mdt_index == 1 ] || error "a is not on MDT1"
15327
15328         mdt_index=$($LFS getstripe -m $DIR/$tdir/other_dir/b)
15329         [ $mdt_index == 1 ] || error "b is not on MDT1"
15330
15331         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
15332         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
15333
15334         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
15335
15336         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15337 }
15338 run_test 230e "migrate mulitple local link files"
15339
15340 test_230f() {
15341         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15342         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15343         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15344                 skip "Need MDS version at least 2.11.52"
15345
15346         local a_fid
15347         local ln_fid
15348
15349         mkdir -p $DIR/$tdir
15350         mkdir $DIR/$tdir/migrate_dir
15351         $LFS mkdir -i1 $DIR/$tdir/other_dir
15352         touch $DIR/$tdir/migrate_dir/a
15353         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
15354         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
15355         ls $DIR/$tdir/other_dir
15356
15357         # a should be migrated to MDT1, since no other links on MDT0
15358         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15359                 error "#1 migrate dir fails"
15360         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
15361         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
15362         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15363         [ $mdt_index == 1 ] || error "a is not on MDT1"
15364
15365         # a should stay on MDT1, because it is a mulitple link file
15366         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
15367                 error "#2 migrate dir fails"
15368         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15369         [ $mdt_index == 1 ] || error "a is not on MDT1"
15370
15371         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15372                 error "#3 migrate dir fails"
15373
15374         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
15375         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
15376         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
15377
15378         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
15379         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
15380
15381         # a should be migrated to MDT0, since no other links on MDT1
15382         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
15383                 error "#4 migrate dir fails"
15384         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15385         [ $mdt_index == 0 ] || error "a is not on MDT0"
15386
15387         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15388 }
15389 run_test 230f "migrate mulitple remote link files"
15390
15391 test_230g() {
15392         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15393         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15394         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15395                 skip "Need MDS version at least 2.11.52"
15396
15397         mkdir -p $DIR/$tdir/migrate_dir
15398
15399         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
15400                 error "migrating dir to non-exist MDT succeeds"
15401         true
15402 }
15403 run_test 230g "migrate dir to non-exist MDT"
15404
15405 test_230h() {
15406         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15407         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15408         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15409                 skip "Need MDS version at least 2.11.52"
15410
15411         local mdt_index
15412
15413         mkdir -p $DIR/$tdir/migrate_dir
15414
15415         $LFS migrate -m1 $DIR &&
15416                 error "migrating mountpoint1 should fail"
15417
15418         $LFS migrate -m1 $DIR/$tdir/.. &&
15419                 error "migrating mountpoint2 should fail"
15420
15421         # same as mv
15422         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. &&
15423                 error "migrating $tdir/migrate_dir/.. should fail"
15424
15425         true
15426 }
15427 run_test 230h "migrate .. and root"
15428
15429 test_230i() {
15430         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15431         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15432         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15433                 skip "Need MDS version at least 2.11.52"
15434
15435         mkdir -p $DIR/$tdir/migrate_dir
15436
15437         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
15438                 error "migration fails with a tailing slash"
15439
15440         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
15441                 error "migration fails with two tailing slashes"
15442 }
15443 run_test 230i "lfs migrate -m tolerates trailing slashes"
15444
15445 test_230j() {
15446         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
15447         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15448                 skip "Need MDS version at least 2.11.52"
15449
15450         $LFS mkdir -m 0 -c 1 $DIR/$tdir || error "mkdir $tdir failed"
15451         $LFS setstripe -E 1M -L mdt $DIR/$tdir/$tfile ||
15452                 error "create $tfile failed"
15453         cat /etc/passwd > $DIR/$tdir/$tfile
15454
15455         $LFS migrate -m 1 $DIR/$tdir
15456
15457         cmp /etc/passwd $DIR/$tdir/$tfile ||
15458                 error "DoM file mismatch after migration"
15459 }
15460 run_test 230j "DoM file data not changed after dir migration"
15461
15462 test_230k() {
15463         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs"
15464         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.56) ] &&
15465                 skip "Need MDS version at least 2.11.56"
15466
15467         local total=20
15468         local files_on_starting_mdt=0
15469
15470         $LFS mkdir -i -1 -c 2 $DIR/$tdir || error "mkdir failed"
15471         $LFS getdirstripe $DIR/$tdir
15472         for i in $(seq $total); do
15473                 echo $((i*i - i)) > $DIR/$tdir/$tfile.$i || error "write failed"
15474                 [[ $($LFS getstripe -m $DIR/$tdir/$tfile.$i) -eq 0 ]] &&
15475                         files_on_starting_mdt=$((files_on_starting_mdt + 1))
15476         done
15477
15478         echo "$files_on_starting_mdt files on MDT0"
15479
15480         $LFS migrate -m 1,3 $DIR/$tdir || error "migrate -m 1,3 failed"
15481         $LFS getdirstripe $DIR/$tdir
15482
15483         files_on_starting_mdt=0
15484         for i in $(seq $total); do
15485                 $(echo $((i*i - i)) | cmp $DIR/$tdir/$tfile.$i -) ||
15486                         error "file $tfile.$i mismatch after migration"
15487                 [[ $($LFS getstripe -m $DIR/$tdir/$tfile.$i) -eq 1 ]] &&
15488                         files_on_starting_mdt=$((files_on_starting_mdt + 1))
15489         done
15490
15491         echo "$files_on_starting_mdt files on MDT1 after migration"
15492         [[ $files_on_starting_mdt -eq $total ]] && error "all files on MDT1"
15493
15494         $LFS migrate -m 0 -c 2 $DIR/$tdir || error "migrate -m 0 -c 2 failed"
15495         $LFS getdirstripe $DIR/$tdir
15496
15497         files_on_starting_mdt=0
15498         for i in $(seq $total); do
15499                 $(echo $((i*i - i)) | cmp $DIR/$tdir/$tfile.$i -) ||
15500                         error "file $tfile.$i mismatch after 2nd migration"
15501                 [[ $($LFS getstripe -m $DIR/$tdir/$tfile.$i) -eq 0 ]] &&
15502                         files_on_starting_mdt=$((files_on_starting_mdt + 1))
15503         done
15504
15505         echo "$files_on_starting_mdt files on MDT0 after 2nd migration"
15506         [[ $files_on_starting_mdt -eq $total ]] && error "all files on MDT0"
15507
15508         true
15509 }
15510 run_test 230k "file data not changed after dir migration"
15511
15512 test_230l() {
15513         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
15514         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.56) ] &&
15515                 skip "Need MDS version at least 2.11.56"
15516
15517         $LFS mkdir -i 0 -c 1 $DIR/$tdir || error "mkdir failed"
15518         createmany -o $DIR/$tdir/f___________________________________ 1000 ||
15519                 error "create files under remote dir failed $i"
15520         $LFS migrate -m 1 $DIR/$tdir || error "migrate failed"
15521 }
15522 run_test 230l "readdir between MDTs won't crash"
15523
15524 test_231a()
15525 {
15526         # For simplicity this test assumes that max_pages_per_rpc
15527         # is the same across all OSCs
15528         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
15529         local bulk_size=$((max_pages * PAGE_SIZE))
15530         local brw_size=$(do_facet ost1 $LCTL get_param -n obdfilter.*.brw_size |
15531                                        head -n 1)
15532
15533         mkdir -p $DIR/$tdir
15534         $LFS setstripe -S ${brw_size}M $DIR/$tdir ||
15535                 error "failed to set stripe with -S ${brw_size}M option"
15536
15537         # clear the OSC stats
15538         $LCTL set_param osc.*.stats=0 &>/dev/null
15539         stop_writeback
15540
15541         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
15542         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
15543                 oflag=direct &>/dev/null || error "dd failed"
15544
15545         sync; sleep 1; sync # just to be safe
15546         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
15547         if [ x$nrpcs != "x1" ]; then
15548                 $LCTL get_param osc.*.stats
15549                 error "found $nrpcs ost_write RPCs, not 1 as expected"
15550         fi
15551
15552         start_writeback
15553         # Drop the OSC cache, otherwise we will read from it
15554         cancel_lru_locks osc
15555
15556         # clear the OSC stats
15557         $LCTL set_param osc.*.stats=0 &>/dev/null
15558
15559         # Client reads $bulk_size.
15560         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
15561                 iflag=direct &>/dev/null || error "dd failed"
15562
15563         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
15564         if [ x$nrpcs != "x1" ]; then
15565                 $LCTL get_param osc.*.stats
15566                 error "found $nrpcs ost_read RPCs, not 1 as expected"
15567         fi
15568 }
15569 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
15570
15571 test_231b() {
15572         mkdir -p $DIR/$tdir
15573         local i
15574         for i in {0..1023}; do
15575                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
15576                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
15577                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
15578         done
15579         sync
15580 }
15581 run_test 231b "must not assert on fully utilized OST request buffer"
15582
15583 test_232a() {
15584         mkdir -p $DIR/$tdir
15585         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
15586
15587         #define OBD_FAIL_LDLM_OST_LVB            0x31c
15588         do_facet ost1 $LCTL set_param fail_loc=0x31c
15589
15590         # ignore dd failure
15591         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
15592
15593         do_facet ost1 $LCTL set_param fail_loc=0
15594         umount_client $MOUNT || error "umount failed"
15595         mount_client $MOUNT || error "mount failed"
15596         stop ost1 || error "cannot stop ost1"
15597         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
15598 }
15599 run_test 232a "failed lock should not block umount"
15600
15601 test_232b() {
15602         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.58) ] ||
15603                 skip "Need MDS version at least 2.10.58"
15604
15605         mkdir -p $DIR/$tdir
15606         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
15607         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1
15608         sync
15609         cancel_lru_locks osc
15610
15611         #define OBD_FAIL_LDLM_OST_LVB            0x31c
15612         do_facet ost1 $LCTL set_param fail_loc=0x31c
15613
15614         # ignore failure
15615         $LFS data_version $DIR/$tdir/$tfile || true
15616
15617         do_facet ost1 $LCTL set_param fail_loc=0
15618         umount_client $MOUNT || error "umount failed"
15619         mount_client $MOUNT || error "mount failed"
15620         stop ost1 || error "cannot stop ost1"
15621         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
15622 }
15623 run_test 232b "failed data version lock should not block umount"
15624
15625 test_233a() {
15626         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
15627                 skip "Need MDS version at least 2.3.64"
15628         [ -n "$FILESET" ] && skip_env "SKIP due to FILESET set"
15629
15630         local fid=$($LFS path2fid $MOUNT)
15631
15632         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15633                 error "cannot access $MOUNT using its FID '$fid'"
15634 }
15635 run_test 233a "checking that OBF of the FS root succeeds"
15636
15637 test_233b() {
15638         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
15639                 skip "Need MDS version at least 2.5.90"
15640         [ -n "$FILESET" ] && skip_env "SKIP due to FILESET set"
15641
15642         local fid=$($LFS path2fid $MOUNT/.lustre)
15643
15644         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15645                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
15646
15647         fid=$($LFS path2fid $MOUNT/.lustre/fid)
15648         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15649                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
15650 }
15651 run_test 233b "checking that OBF of the FS .lustre succeeds"
15652
15653 test_234() {
15654         local p="$TMP/sanityN-$TESTNAME.parameters"
15655         save_lustre_params client "llite.*.xattr_cache" > $p
15656         lctl set_param llite.*.xattr_cache 1 ||
15657                 skip_env "xattr cache is not supported"
15658
15659         mkdir -p $DIR/$tdir || error "mkdir failed"
15660         touch $DIR/$tdir/$tfile || error "touch failed"
15661         # OBD_FAIL_LLITE_XATTR_ENOMEM
15662         $LCTL set_param fail_loc=0x1405
15663         getfattr -n user.attr $DIR/$tdir/$tfile &&
15664                 error "getfattr should have failed with ENOMEM"
15665         $LCTL set_param fail_loc=0x0
15666         rm -rf $DIR/$tdir
15667
15668         restore_lustre_params < $p
15669         rm -f $p
15670 }
15671 run_test 234 "xattr cache should not crash on ENOMEM"
15672
15673 test_235() {
15674         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
15675                 skip "Need MDS version at least 2.4.52"
15676
15677         flock_deadlock $DIR/$tfile
15678         local RC=$?
15679         case $RC in
15680                 0)
15681                 ;;
15682                 124) error "process hangs on a deadlock"
15683                 ;;
15684                 *) error "error executing flock_deadlock $DIR/$tfile"
15685                 ;;
15686         esac
15687 }
15688 run_test 235 "LU-1715: flock deadlock detection does not work properly"
15689
15690 #LU-2935
15691 test_236() {
15692         check_swap_layouts_support
15693
15694         local ref1=/etc/passwd
15695         local ref2=/etc/group
15696         local file1=$DIR/$tdir/f1
15697         local file2=$DIR/$tdir/f2
15698
15699         test_mkdir -c1 $DIR/$tdir
15700         $LFS setstripe -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
15701         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
15702         $LFS setstripe -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
15703         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
15704         local fd=$(free_fd)
15705         local cmd="exec $fd<>$file2"
15706         eval $cmd
15707         rm $file2
15708         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
15709                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
15710         cmd="exec $fd>&-"
15711         eval $cmd
15712         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
15713
15714         #cleanup
15715         rm -rf $DIR/$tdir
15716 }
15717 run_test 236 "Layout swap on open unlinked file"
15718
15719 # LU-4659 linkea consistency
15720 test_238() {
15721         local server_version=$(lustre_version_code $SINGLEMDS)
15722
15723         [[ $server_version -gt $(version_code 2.5.57) ]] ||
15724                 [[ $server_version -gt $(version_code 2.5.1) &&
15725                    $server_version -lt $(version_code 2.5.50) ]] ||
15726                 skip "Need MDS version at least 2.5.58 or 2.5.2+"
15727
15728         touch $DIR/$tfile
15729         ln $DIR/$tfile $DIR/$tfile.lnk
15730         touch $DIR/$tfile.new
15731         mv $DIR/$tfile.new $DIR/$tfile
15732         local fid1=$($LFS path2fid $DIR/$tfile)
15733         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
15734         local path1=$($LFS fid2path $FSNAME "$fid1")
15735         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
15736         local path2=$($LFS fid2path $FSNAME "$fid2")
15737         [ $tfile.lnk == $path2 ] ||
15738                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
15739         rm -f $DIR/$tfile*
15740 }
15741 run_test 238 "Verify linkea consistency"
15742
15743 test_239A() { # was test_239
15744         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.60) ] &&
15745                 skip "Need MDS version at least 2.5.60"
15746
15747         local list=$(comma_list $(mdts_nodes))
15748
15749         mkdir -p $DIR/$tdir
15750         createmany -o $DIR/$tdir/f- 5000
15751         unlinkmany $DIR/$tdir/f- 5000
15752         [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.10.53) ] &&
15753                 do_nodes $list "lctl set_param -n osp.*.force_sync=1"
15754         changes=$(do_nodes $list "lctl get_param -n osp.*MDT*.sync_changes \
15755                         osp.*MDT*.sync_in_flight" | calc_sum)
15756         [ "$changes" -eq 0 ] || error "$changes not synced"
15757 }
15758 run_test 239A "osp_sync test"
15759
15760 test_239a() { #LU-5297
15761         remote_mds_nodsh && skip "remote MDS with nodsh"
15762
15763         touch $DIR/$tfile
15764         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
15765         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
15766         chgrp $RUNAS_GID $DIR/$tfile
15767         wait_delete_completed
15768 }
15769 run_test 239a "process invalid osp sync record correctly"
15770
15771 test_239b() { #LU-5297
15772         remote_mds_nodsh && skip "remote MDS with nodsh"
15773
15774         touch $DIR/$tfile1
15775         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
15776         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
15777         chgrp $RUNAS_GID $DIR/$tfile1
15778         wait_delete_completed
15779         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
15780         touch $DIR/$tfile2
15781         chgrp $RUNAS_GID $DIR/$tfile2
15782         wait_delete_completed
15783 }
15784 run_test 239b "process osp sync record with ENOMEM error correctly"
15785
15786 test_240() {
15787         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15788         remote_mds_nodsh && skip "remote MDS with nodsh"
15789
15790         mkdir -p $DIR/$tdir
15791
15792         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
15793                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
15794         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
15795                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
15796
15797         umount_client $MOUNT || error "umount failed"
15798         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
15799         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
15800         mount_client $MOUNT || error "failed to mount client"
15801
15802         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
15803         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
15804 }
15805 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
15806
15807 test_241_bio() {
15808         local count=$1
15809         local bsize=$2
15810
15811         for LOOP in $(seq $count); do
15812                 dd if=$DIR/$tfile of=/dev/null bs=$bsize count=1 2>/dev/null
15813                 cancel_lru_locks $OSC || true
15814         done
15815 }
15816
15817 test_241_dio() {
15818         local count=$1
15819         local bsize=$2
15820
15821         for LOOP in $(seq $1); do
15822                 dd if=$DIR/$tfile of=/dev/null bs=$bsize count=1 iflag=direct \
15823                         2>/dev/null
15824         done
15825 }
15826
15827 test_241a() { # was test_241
15828         local bsize=$PAGE_SIZE
15829
15830         (( bsize < 40960 )) && bsize=40960
15831         dd if=/dev/zero of=$DIR/$tfile count=1 bs=$bsize
15832         ls -la $DIR/$tfile
15833         cancel_lru_locks $OSC
15834         test_241_bio 1000 $bsize &
15835         PID=$!
15836         test_241_dio 1000 $bsize
15837         wait $PID
15838 }
15839 run_test 241a "bio vs dio"
15840
15841 test_241b() {
15842         local bsize=$PAGE_SIZE
15843
15844         (( bsize < 40960 )) && bsize=40960
15845         dd if=/dev/zero of=$DIR/$tfile count=1 bs=$bsize
15846         ls -la $DIR/$tfile
15847         test_241_dio 1000 $bsize &
15848         PID=$!
15849         test_241_dio 1000 $bsize
15850         wait $PID
15851 }
15852 run_test 241b "dio vs dio"
15853
15854 test_242() {
15855         remote_mds_nodsh && skip "remote MDS with nodsh"
15856
15857         mkdir -p $DIR/$tdir
15858         touch $DIR/$tdir/$tfile
15859
15860         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
15861         do_facet mds1 lctl set_param fail_loc=0x105
15862         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
15863
15864         do_facet mds1 lctl set_param fail_loc=0
15865         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
15866 }
15867 run_test 242 "mdt_readpage failure should not cause directory unreadable"
15868
15869 test_243()
15870 {
15871         test_mkdir $DIR/$tdir
15872         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
15873 }
15874 run_test 243 "various group lock tests"
15875
15876 test_244()
15877 {
15878         test_mkdir $DIR/$tdir
15879         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
15880         sendfile_grouplock $DIR/$tdir/$tfile || \
15881                 error "sendfile+grouplock failed"
15882         rm -rf $DIR/$tdir
15883 }
15884 run_test 244 "sendfile with group lock tests"
15885
15886 test_245() {
15887         local flagname="multi_mod_rpcs"
15888         local connect_data_name="max_mod_rpcs"
15889         local out
15890
15891         # check if multiple modify RPCs flag is set
15892         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
15893                 grep "connect_flags:")
15894         echo "$out"
15895
15896         echo "$out" | grep -qw $flagname
15897         if [ $? -ne 0 ]; then
15898                 echo "connect flag $flagname is not set"
15899                 return
15900         fi
15901
15902         # check if multiple modify RPCs data is set
15903         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
15904         echo "$out"
15905
15906         echo "$out" | grep -qw $connect_data_name ||
15907                 error "import should have connect data $connect_data_name"
15908 }
15909 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
15910
15911 test_246() { # LU-7371
15912         remote_ost_nodsh && skip "remote OST with nodsh"
15913         [ $(lustre_version_code ost1) -lt $(version_code 2.7.62) ] &&
15914                 skip "Need OST version >= 2.7.62"
15915
15916         do_facet ost1 $LCTL set_param fail_val=4095
15917 #define OBD_FAIL_OST_READ_SIZE          0x234
15918         do_facet ost1 $LCTL set_param fail_loc=0x234
15919         $LFS setstripe $DIR/$tfile -i 0 -c 1
15920         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
15921         cancel_lru_locks $FSNAME-OST0000
15922         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
15923 }
15924 run_test 246 "Read file of size 4095 should return right length"
15925
15926 cleanup_247() {
15927         local submount=$1
15928
15929         trap 0
15930         umount_client $submount
15931         rmdir $submount
15932 }
15933
15934 test_247a() {
15935         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
15936                 grep -q subtree ||
15937                 skip_env "Fileset feature is not supported"
15938
15939         local submount=${MOUNT}_$tdir
15940
15941         mkdir $MOUNT/$tdir
15942         mkdir -p $submount || error "mkdir $submount failed"
15943         FILESET="$FILESET/$tdir" mount_client $submount ||
15944                 error "mount $submount failed"
15945         trap "cleanup_247 $submount" EXIT
15946         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
15947         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
15948                 error "read $MOUNT/$tdir/$tfile failed"
15949         cleanup_247 $submount
15950 }
15951 run_test 247a "mount subdir as fileset"
15952
15953 test_247b() {
15954         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
15955                 skip_env "Fileset feature is not supported"
15956
15957         local submount=${MOUNT}_$tdir
15958
15959         rm -rf $MOUNT/$tdir
15960         mkdir -p $submount || error "mkdir $submount failed"
15961         SKIP_FILESET=1
15962         FILESET="$FILESET/$tdir" mount_client $submount &&
15963                 error "mount $submount should fail"
15964         rmdir $submount
15965 }
15966 run_test 247b "mount subdir that dose not exist"
15967
15968 test_247c() {
15969         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
15970                 skip_env "Fileset feature is not supported"
15971
15972         local submount=${MOUNT}_$tdir
15973
15974         mkdir -p $MOUNT/$tdir/dir1
15975         mkdir -p $submount || error "mkdir $submount failed"
15976         trap "cleanup_247 $submount" EXIT
15977         FILESET="$FILESET/$tdir" mount_client $submount ||
15978                 error "mount $submount failed"
15979         local fid=$($LFS path2fid $MOUNT/)
15980         $LFS fid2path $submount $fid && error "fid2path should fail"
15981         cleanup_247 $submount
15982 }
15983 run_test 247c "running fid2path outside root"
15984
15985 test_247d() {
15986         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
15987                 skip "Fileset feature is not supported"
15988
15989         local submount=${MOUNT}_$tdir
15990
15991         mkdir -p $MOUNT/$tdir/dir1
15992         mkdir -p $submount || error "mkdir $submount failed"
15993         FILESET="$FILESET/$tdir" mount_client $submount ||
15994                 error "mount $submount failed"
15995         trap "cleanup_247 $submount" EXIT
15996         local fid=$($LFS path2fid $submount/dir1)
15997         $LFS fid2path $submount $fid || error "fid2path should succeed"
15998         cleanup_247 $submount
15999 }
16000 run_test 247d "running fid2path inside root"
16001
16002 # LU-8037
16003 test_247e() {
16004         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
16005                 grep -q subtree ||
16006                 skip "Fileset feature is not supported"
16007
16008         local submount=${MOUNT}_$tdir
16009
16010         mkdir $MOUNT/$tdir
16011         mkdir -p $submount || error "mkdir $submount failed"
16012         FILESET="$FILESET/.." mount_client $submount &&
16013                 error "mount $submount should fail"
16014         rmdir $submount
16015 }
16016 run_test 247e "mount .. as fileset"
16017
16018 test_248() {
16019         local fast_read_sav=$($LCTL get_param -n llite.*.fast_read 2>/dev/null)
16020         [ -z "$fast_read_sav" ] && skip "no fast read support"
16021
16022         # create a large file for fast read verification
16023         dd if=/dev/zero of=$DIR/$tfile bs=1M count=128 > /dev/null 2>&1
16024
16025         # make sure the file is created correctly
16026         $CHECKSTAT -s $((128*1024*1024)) $DIR/$tfile ||
16027                 { rm -f $DIR/$tfile; skip "file creation error"; }
16028
16029         echo "Test 1: verify that fast read is 4 times faster on cache read"
16030
16031         # small read with fast read enabled
16032         $LCTL set_param -n llite.*.fast_read=1
16033         local t_fast=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
16034                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
16035                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
16036         # small read with fast read disabled
16037         $LCTL set_param -n llite.*.fast_read=0
16038         local t_slow=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
16039                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
16040                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
16041
16042         # verify that fast read is 4 times faster for cache read
16043         [ $(bc <<< "4 * $t_fast < $t_slow") -eq 1 ] ||
16044                 error_not_in_vm "fast read was not 4 times faster: " \
16045                            "$t_fast vs $t_slow"
16046
16047         echo "Test 2: verify the performance between big and small read"
16048         $LCTL set_param -n llite.*.fast_read=1
16049
16050         # 1k non-cache read
16051         cancel_lru_locks osc
16052         local t_1k=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
16053                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
16054                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
16055
16056         # 1M non-cache read
16057         cancel_lru_locks osc
16058         local t_1m=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
16059                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
16060                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
16061
16062         # verify that big IO is not 4 times faster than small IO
16063         [ $(bc <<< "4 * $t_1k >= $t_1m") -eq 1 ] ||
16064                 error_not_in_vm "bigger IO is way too fast: $t_1k vs $t_1m"
16065
16066         $LCTL set_param -n llite.*.fast_read=$fast_read_sav
16067         rm -f $DIR/$tfile
16068 }
16069 run_test 248 "fast read verification"
16070
16071 test_249() { # LU-7890
16072         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
16073                 skip "Need at least version 2.8.54"
16074
16075         rm -f $DIR/$tfile
16076         $LFS setstripe -c 1 $DIR/$tfile
16077         # Offset 2T == 4k * 512M
16078         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 seek=512M ||
16079                 error "dd to 2T offset failed"
16080 }
16081 run_test 249 "Write above 2T file size"
16082
16083 test_250() {
16084         [ "$(facet_fstype ost$(($($LFS getstripe -i $DIR/$tfile) + 1)))" = "zfs" ] \
16085          && skip "no 16TB file size limit on ZFS"
16086
16087         $LFS setstripe -c 1 $DIR/$tfile
16088         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
16089         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
16090         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
16091         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
16092                 conv=notrunc,fsync && error "append succeeded"
16093         return 0
16094 }
16095 run_test 250 "Write above 16T limit"
16096
16097 test_251() {
16098         $LFS setstripe -c -1 -S 1048576 $DIR/$tfile
16099
16100         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
16101         #Skip once - writing the first stripe will succeed
16102         $LCTL set_param fail_loc=0xa0001407 fail_val=1
16103         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
16104                 error "short write happened"
16105
16106         $LCTL set_param fail_loc=0xa0001407 fail_val=1
16107         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
16108                 error "short read happened"
16109
16110         rm -f $DIR/$tfile
16111 }
16112 run_test 251 "Handling short read and write correctly"
16113
16114 test_252() {
16115         remote_mds_nodsh && skip "remote MDS with nodsh"
16116         remote_ost_nodsh && skip "remote OST with nodsh"
16117         if [ "$(facet_fstype ost1)" != "ldiskfs" -o \
16118              "$(facet_fstype mds1)" != "ldiskfs" ]; then
16119                 skip_env "ldiskfs only test"
16120         fi
16121
16122         local tgt
16123         local dev
16124         local out
16125         local uuid
16126         local num
16127         local gen
16128
16129         # check lr_reader on OST0000
16130         tgt=ost1
16131         dev=$(facet_device $tgt)
16132         out=$(do_facet $tgt $LR_READER $dev)
16133         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
16134         echo "$out"
16135         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
16136         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
16137                 error "Invalid uuid returned by $LR_READER on target $tgt"
16138         echo -e "uuid returned by $LR_READER is '$uuid'\n"
16139
16140         # check lr_reader -c on MDT0000
16141         tgt=mds1
16142         dev=$(facet_device $tgt)
16143         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
16144                 skip "$LR_READER does not support additional options"
16145         fi
16146         out=$(do_facet $tgt $LR_READER -c $dev)
16147         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
16148         echo "$out"
16149         num=$(echo "$out" | grep -c "mdtlov")
16150         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
16151                 error "Invalid number of mdtlov clients returned by $LR_READER"
16152         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
16153
16154         # check lr_reader -cr on MDT0000
16155         out=$(do_facet $tgt $LR_READER -cr $dev)
16156         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
16157         echo "$out"
16158         echo "$out" | grep -q "^reply_data:$" ||
16159                 error "$LR_READER should have returned 'reply_data' section"
16160         num=$(echo "$out" | grep -c "client_generation")
16161         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
16162 }
16163 run_test 252 "check lr_reader tool"
16164
16165 test_253_fill_ost() {
16166         local size_mb #how many MB should we write to pass watermark
16167         local lwm=$3  #low watermark
16168         local free_10mb #10% of free space
16169
16170         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
16171         size_mb=$((free_kb / 1024 - lwm))
16172         free_10mb=$((free_kb / 10240))
16173         #If 10% of free space cross low watermark use it
16174         if (( free_10mb > size_mb )); then
16175                 size_mb=$free_10mb
16176         else
16177                 #At least we need to store 1.1 of difference between
16178                 #free space and low watermark
16179                 size_mb=$((size_mb + size_mb / 10))
16180         fi
16181         if (( lwm <= $((free_kb / 1024)) )) || [ ! -f $DIR/$tdir/1 ]; then
16182                 dd if=/dev/zero of=$DIR/$tdir/1 bs=1M count=$size_mb \
16183                          oflag=append conv=notrunc
16184         fi
16185
16186         sleep_maxage
16187
16188         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
16189         echo "OST still has $((free_kb / 1024)) mbytes free"
16190 }
16191
16192 test_253() {
16193         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16194         remote_mds_nodsh && skip "remote MDS with nodsh"
16195         remote_mgs_nodsh && skip "remote MGS with nodsh"
16196
16197         local ostidx=0
16198         local rc=0
16199
16200         local ost_name=$($LFS osts |
16201                 sed -n 's/^'$ostidx': \(.*\)_UUID .*/\1/p')
16202         # on the mdt's osc
16203         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $ost_name)
16204         do_facet $SINGLEMDS $LCTL get_param -n \
16205                 osp.$mdtosc_proc1.reserved_mb_high ||
16206                 skip  "remote MDS does not support reserved_mb_high"
16207
16208         rm -rf $DIR/$tdir
16209         wait_mds_ost_sync
16210         wait_delete_completed
16211         mkdir $DIR/$tdir
16212
16213         local last_wm_h=$(do_facet $SINGLEMDS $LCTL get_param -n \
16214                         osp.$mdtosc_proc1.reserved_mb_high)
16215         local last_wm_l=$(do_facet $SINGLEMDS $LCTL get_param -n \
16216                         osp.$mdtosc_proc1.reserved_mb_low)
16217         echo "prev high watermark $last_wm_h, prev low watermark $last_wm_l"
16218
16219         if ! combined_mgs_mds ; then
16220                 mount_mgs_client
16221         fi
16222         create_pool $FSNAME.$TESTNAME || error "Pool creation failed"
16223         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $ost_name ||
16224                 error "Adding $ost_name to pool failed"
16225
16226         # Wait for client to see a OST at pool
16227         wait_update $HOSTNAME "$LCTL get_param -n
16228                 lov.$FSNAME-*.pools.$TESTNAME | sort -u |
16229                 grep $ost_name" "$ost_name""_UUID" $((TIMEOUT/2)) ||
16230                 error "Client can not see the pool"
16231         $LFS setstripe $DIR/$tdir -i $ostidx -c 1 -p $FSNAME.$TESTNAME ||
16232                 error "Setstripe failed"
16233
16234         dd if=/dev/zero of=$DIR/$tdir/0 bs=1M count=10
16235         local blocks=$($LFS df $MOUNT | grep $ost_name | awk '{ print $4 }')
16236         echo "OST still has $((blocks/1024)) mbytes free"
16237
16238         local new_lwm=$((blocks/1024-10))
16239         do_facet $SINGLEMDS $LCTL set_param \
16240                         osp.$mdtosc_proc1.reserved_mb_high=$((new_lwm+5))
16241         do_facet $SINGLEMDS $LCTL set_param \
16242                         osp.$mdtosc_proc1.reserved_mb_low=$new_lwm
16243
16244         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
16245
16246         #First enospc could execute orphan deletion so repeat.
16247         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
16248
16249         local oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
16250                         osp.$mdtosc_proc1.prealloc_status)
16251         echo "prealloc_status $oa_status"
16252
16253         dd if=/dev/zero of=$DIR/$tdir/2 bs=1M count=1 &&
16254                 error "File creation should fail"
16255         #object allocation was stopped, but we still able to append files
16256         dd if=/dev/zero of=$DIR/$tdir/1 bs=1M seek=6 count=5 oflag=append ||
16257                 error "Append failed"
16258         rm -f $DIR/$tdir/1 $DIR/$tdir/0 $DIR/$tdir/r*
16259
16260         wait_delete_completed
16261
16262         sleep_maxage
16263
16264         for i in $(seq 10 12); do
16265                 dd if=/dev/zero of=$DIR/$tdir/$i bs=1M count=1 2>/dev/null ||
16266                         error "File creation failed after rm";
16267         done
16268
16269         oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
16270                         osp.$mdtosc_proc1.prealloc_status)
16271         echo "prealloc_status $oa_status"
16272
16273         if (( oa_status != 0 )); then
16274                 error "Object allocation still disable after rm"
16275         fi
16276         do_facet $SINGLEMDS $LCTL set_param \
16277                         osp.$mdtosc_proc1.reserved_mb_high=$last_wm_h
16278         do_facet $SINGLEMDS $LCTL set_param \
16279                         osp.$mdtosc_proc1.reserved_mb_low=$last_wm_l
16280
16281
16282         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $ost_name ||
16283                 error "Remove $ost_name from pool failed"
16284         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
16285                 error "Pool destroy fialed"
16286
16287         if ! combined_mgs_mds ; then
16288                 umount_mgs_client
16289         fi
16290 }
16291 run_test 253 "Check object allocation limit"
16292
16293 test_254() {
16294         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16295         remote_mds_nodsh && skip "remote MDS with nodsh"
16296         do_facet $SINGLEMDS $LCTL get_param -n mdd.$MDT0.changelog_size ||
16297                 skip "MDS does not support changelog_size"
16298
16299         local cl_user
16300         local MDT0=$(facet_svc $SINGLEMDS)
16301
16302         changelog_register || error "changelog_register failed"
16303
16304         changelog_clear 0 || error "changelog_clear failed"
16305
16306         local size1=$(do_facet $SINGLEMDS \
16307                       $LCTL get_param -n mdd.$MDT0.changelog_size)
16308         echo "Changelog size $size1"
16309
16310         rm -rf $DIR/$tdir
16311         $LFS mkdir -i 0 $DIR/$tdir
16312         # change something
16313         mkdir -p $DIR/$tdir/pics/2008/zachy
16314         touch $DIR/$tdir/pics/2008/zachy/timestamp
16315         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
16316         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
16317         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
16318         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
16319         rm $DIR/$tdir/pics/desktop.jpg
16320
16321         local size2=$(do_facet $SINGLEMDS \
16322                       $LCTL get_param -n mdd.$MDT0.changelog_size)
16323         echo "Changelog size after work $size2"
16324
16325         (( $size2 > $size1 )) ||
16326                 error "new Changelog size=$size2 less than old size=$size1"
16327 }
16328 run_test 254 "Check changelog size"
16329
16330 ladvise_no_type()
16331 {
16332         local type=$1
16333         local file=$2
16334
16335         lfs ladvise -a invalid $file 2>&1 | grep "Valid types" |
16336                 awk -F: '{print $2}' | grep $type > /dev/null
16337         if [ $? -ne 0 ]; then
16338                 return 0
16339         fi
16340         return 1
16341 }
16342
16343 ladvise_no_ioctl()
16344 {
16345         local file=$1
16346
16347         lfs ladvise -a willread $file > /dev/null 2>&1
16348         if [ $? -eq 0 ]; then
16349                 return 1
16350         fi
16351
16352         lfs ladvise -a willread $file 2>&1 |
16353                 grep "Inappropriate ioctl for device" > /dev/null
16354         if [ $? -eq 0 ]; then
16355                 return 0
16356         fi
16357         return 1
16358 }
16359
16360 percent() {
16361         bc <<<"scale=2; ($1 - $2) * 100 / $2"
16362 }
16363
16364 # run a random read IO workload
16365 # usage: random_read_iops <filename> <filesize> <iosize>
16366 random_read_iops() {
16367         local file=$1
16368         local fsize=$2
16369         local iosize=${3:-4096}
16370
16371         $READS -f $file -s $fsize -b $iosize -n $((fsize / iosize)) -t 60 |
16372                 sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##'
16373 }
16374
16375 drop_file_oss_cache() {
16376         local file="$1"
16377         local nodes="$2"
16378
16379         $LFS ladvise -a dontneed $file 2>/dev/null ||
16380                 do_nodes $nodes "echo 3 > /proc/sys/vm/drop_caches"
16381 }
16382
16383 ladvise_willread_performance()
16384 {
16385         local repeat=10
16386         local average_origin=0
16387         local average_cache=0
16388         local average_ladvise=0
16389
16390         for ((i = 1; i <= $repeat; i++)); do
16391                 echo "Iter $i/$repeat: reading without willread hint"
16392                 cancel_lru_locks osc
16393                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
16394                 local speed_origin=$(random_read_iops $DIR/$tfile $size)
16395                 echo "Iter $i/$repeat: uncached speed: $speed_origin"
16396                 average_origin=$(bc <<<"$average_origin + $speed_origin")
16397
16398                 cancel_lru_locks osc
16399                 local speed_cache=$(random_read_iops $DIR/$tfile $size)
16400                 echo "Iter $i/$repeat: OSS cache speed: $speed_cache"
16401                 average_cache=$(bc <<<"$average_cache + $speed_cache")
16402
16403                 cancel_lru_locks osc
16404                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
16405                 $LFS ladvise -a willread $DIR/$tfile || error "ladvise failed"
16406                 local speed_ladvise=$(random_read_iops $DIR/$tfile $size)
16407                 echo "Iter $i/$repeat: ladvise speed: $speed_ladvise"
16408                 average_ladvise=$(bc <<<"$average_ladvise + $speed_ladvise")
16409         done
16410         average_origin=$(bc <<<"scale=2; $average_origin / $repeat")
16411         average_cache=$(bc <<<"scale=2; $average_cache / $repeat")
16412         average_ladvise=$(bc <<<"scale=2; $average_ladvise / $repeat")
16413
16414         speedup_cache=$(percent $average_cache $average_origin)
16415         speedup_ladvise=$(percent $average_ladvise $average_origin)
16416
16417         echo "Average uncached read: $average_origin"
16418         echo "Average speedup with OSS cached read: " \
16419                 "$average_cache = +$speedup_cache%"
16420         echo "Average speedup with ladvise willread: " \
16421                 "$average_ladvise = +$speedup_ladvise%"
16422
16423         local lowest_speedup=20
16424         if [ ${average_cache%.*} -lt $lowest_speedup ]; then
16425                 echo "Speedup with OSS cached read less than $lowest_speedup%," \
16426                         "got $average_cache%. Skipping ladvise willread check."
16427                 return 0
16428         fi
16429
16430         # the test won't work on ZFS until it supports 'ladvise dontneed', but
16431         # it is still good to run until then to exercise 'ladvise willread'
16432         ! $LFS ladvise -a dontneed $DIR/$tfile &&
16433                 [ "$(facet_fstype ost1)" = "zfs" ] &&
16434                 echo "osd-zfs does not support dontneed or drop_caches" &&
16435                 return 0
16436
16437         lowest_speedup=$(bc <<<"scale=2; $average_cache / 2")
16438         [ ${average_ladvise%.*} -gt $lowest_speedup ] ||
16439                 error_not_in_vm "Speedup with willread is less than " \
16440                         "$lowest_speedup%, got $average_ladvise%"
16441 }
16442
16443 test_255a() {
16444         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
16445                 skip "lustre < 2.8.54 does not support ladvise "
16446         remote_ost_nodsh && skip "remote OST with nodsh"
16447
16448         lfs setstripe -c -1 -i 0 $DIR/$tfile || error "$tfile failed"
16449
16450         ladvise_no_type willread $DIR/$tfile &&
16451                 skip "willread ladvise is not supported"
16452
16453         ladvise_no_ioctl $DIR/$tfile &&
16454                 skip "ladvise ioctl is not supported"
16455
16456         local size_mb=100
16457         local size=$((size_mb * 1048576))
16458         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
16459                 error "dd to $DIR/$tfile failed"
16460
16461         lfs ladvise -a willread $DIR/$tfile ||
16462                 error "Ladvise failed with no range argument"
16463
16464         lfs ladvise -a willread -s 0 $DIR/$tfile ||
16465                 error "Ladvise failed with no -l or -e argument"
16466
16467         lfs ladvise -a willread -e 1 $DIR/$tfile ||
16468                 error "Ladvise failed with only -e argument"
16469
16470         lfs ladvise -a willread -l 1 $DIR/$tfile ||
16471                 error "Ladvise failed with only -l argument"
16472
16473         lfs ladvise -a willread -s 2 -e 1 $DIR/$tfile &&
16474                 error "End offset should not be smaller than start offset"
16475
16476         lfs ladvise -a willread -s 2 -e 2 $DIR/$tfile &&
16477                 error "End offset should not be equal to start offset"
16478
16479         lfs ladvise -a willread -s $size -l 1 $DIR/$tfile ||
16480                 error "Ladvise failed with overflowing -s argument"
16481
16482         lfs ladvise -a willread -s 1 -e $((size + 1)) $DIR/$tfile ||
16483                 error "Ladvise failed with overflowing -e argument"
16484
16485         lfs ladvise -a willread -s 1 -l $size $DIR/$tfile ||
16486                 error "Ladvise failed with overflowing -l argument"
16487
16488         lfs ladvise -a willread -l 1 -e 2 $DIR/$tfile &&
16489                 error "Ladvise succeeded with conflicting -l and -e arguments"
16490
16491         echo "Synchronous ladvise should wait"
16492         local delay=4
16493 #define OBD_FAIL_OST_LADVISE_PAUSE       0x237
16494         do_nodes $(comma_list $(osts_nodes)) \
16495                 $LCTL set_param fail_val=$delay fail_loc=0x237
16496
16497         local start_ts=$SECONDS
16498         lfs ladvise -a willread $DIR/$tfile ||
16499                 error "Ladvise failed with no range argument"
16500         local end_ts=$SECONDS
16501         local inteval_ts=$((end_ts - start_ts))
16502
16503         if [ $inteval_ts -lt $(($delay - 1)) ]; then
16504                 error "Synchronous advice didn't wait reply"
16505         fi
16506
16507         echo "Asynchronous ladvise shouldn't wait"
16508         local start_ts=$SECONDS
16509         lfs ladvise -a willread -b $DIR/$tfile ||
16510                 error "Ladvise failed with no range argument"
16511         local end_ts=$SECONDS
16512         local inteval_ts=$((end_ts - start_ts))
16513
16514         if [ $inteval_ts -gt $(($delay / 2)) ]; then
16515                 error "Asynchronous advice blocked"
16516         fi
16517
16518         do_nodes $(comma_list $(osts_nodes)) $LCTL set_param fail_loc=0
16519         ladvise_willread_performance
16520 }
16521 run_test 255a "check 'lfs ladvise -a willread'"
16522
16523 facet_meminfo() {
16524         local facet=$1
16525         local info=$2
16526
16527         do_facet $facet "cat /proc/meminfo | grep ^${info}:" | awk '{print $2}'
16528 }
16529
16530 test_255b() {
16531         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
16532                 skip "lustre < 2.8.54 does not support ladvise "
16533         remote_ost_nodsh && skip "remote OST with nodsh"
16534
16535         lfs setstripe -c 1 -i 0 $DIR/$tfile
16536
16537         ladvise_no_type dontneed $DIR/$tfile &&
16538                 skip "dontneed ladvise is not supported"
16539
16540         ladvise_no_ioctl $DIR/$tfile &&
16541                 skip "ladvise ioctl is not supported"
16542
16543         ! $LFS ladvise -a dontneed $DIR/$tfile &&
16544                 [ "$(facet_fstype ost1)" = "zfs" ] &&
16545                 skip "zfs-osd does not support 'ladvise dontneed'"
16546
16547         local size_mb=100
16548         local size=$((size_mb * 1048576))
16549         # In order to prevent disturbance of other processes, only check 3/4
16550         # of the memory usage
16551         local kibibytes=$((size_mb * 1024 * 3 / 4))
16552
16553         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
16554                 error "dd to $DIR/$tfile failed"
16555
16556         #force write to complete before dropping OST cache & checking memory
16557         sync
16558
16559         local total=$(facet_meminfo ost1 MemTotal)
16560         echo "Total memory: $total KiB"
16561
16562         do_facet ost1 "sync && echo 3 > /proc/sys/vm/drop_caches"
16563         local before_read=$(facet_meminfo ost1 Cached)
16564         echo "Cache used before read: $before_read KiB"
16565
16566         lfs ladvise -a willread $DIR/$tfile ||
16567                 error "Ladvise willread failed"
16568         local after_read=$(facet_meminfo ost1 Cached)
16569         echo "Cache used after read: $after_read KiB"
16570
16571         lfs ladvise -a dontneed $DIR/$tfile ||
16572                 error "Ladvise dontneed again failed"
16573         local no_read=$(facet_meminfo ost1 Cached)
16574         echo "Cache used after dontneed ladvise: $no_read KiB"
16575
16576         if [ $total -lt $((before_read + kibibytes)) ]; then
16577                 echo "Memory is too small, abort checking"
16578                 return 0
16579         fi
16580
16581         if [ $((before_read + kibibytes)) -gt $after_read ]; then
16582                 error "Ladvise willread should use more memory" \
16583                         "than $kibibytes KiB"
16584         fi
16585
16586         if [ $((no_read + kibibytes)) -gt $after_read ]; then
16587                 error "Ladvise dontneed should release more memory" \
16588                         "than $kibibytes KiB"
16589         fi
16590 }
16591 run_test 255b "check 'lfs ladvise -a dontneed'"
16592
16593 test_255c() {
16594         [ $(lustre_version_code ost1) -lt $(version_code 2.10.50) ] &&
16595                 skip "lustre < 2.10.53 does not support lockahead"
16596
16597         local count
16598         local new_count
16599         local difference
16600         local i
16601         local rc
16602
16603         test_mkdir -p $DIR/$tdir
16604         $LFS setstripe -i 0 $DIR/$tdir
16605
16606         #test 10 returns only success/failure
16607         i=10
16608         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16609         rc=$?
16610         if [ $rc -eq 255 ]; then
16611                 error "Ladvise test${i} failed, ${rc}"
16612         fi
16613
16614         #test 11 counts lock enqueue requests, all others count new locks
16615         i=11
16616         count=$(do_facet ost1 \
16617                 $LCTL get_param -n ost.OSS.ost.stats)
16618         count=$(echo "$count" | grep ldlm_extent_enqueue | awk '{ print $2 }')
16619
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         new_count=$(do_facet ost1 \
16627                 $LCTL get_param -n ost.OSS.ost.stats)
16628         new_count=$(echo "$new_count" | grep ldlm_extent_enqueue | \
16629                    awk '{ print $2 }')
16630
16631         difference="$((new_count - count))"
16632         if [ $difference -ne $rc ]; then
16633                 error "Ladvise test${i}, bad enqueue count, returned " \
16634                       "${rc}, actual ${difference}"
16635         fi
16636
16637         for i in $(seq 12 21); do
16638                 # If we do not do this, we run the risk of having too many
16639                 # locks and starting lock cancellation while we are checking
16640                 # lock counts.
16641                 cancel_lru_locks osc
16642
16643                 count=$($LCTL get_param -n \
16644                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
16645
16646                 lockahead_test -d $DIR/$tdir -t $i -f $tfile
16647                 rc=$?
16648                 if [ $rc -eq 255 ]; then
16649                         error "Ladvise test ${i} failed, ${rc}"
16650                 fi
16651
16652                 new_count=$($LCTL get_param -n \
16653                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
16654                 difference="$((new_count - count))"
16655
16656                 # Test 15 output is divided by 100 to map down to valid return
16657                 if [ $i -eq 15 ]; then
16658                         rc="$((rc * 100))"
16659                 fi
16660
16661                 if [ $difference -ne $rc ]; then
16662                         error "Ladvise test ${i}, bad lock count, returned " \
16663                               "${rc}, actual ${difference}"
16664                 fi
16665         done
16666
16667         #test 22 returns only success/failure
16668         i=22
16669         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16670         rc=$?
16671         if [ $rc -eq 255 ]; then
16672                 error "Ladvise test${i} failed, ${rc}"
16673         fi
16674 }
16675 run_test 255c "suite of ladvise lockahead tests"
16676
16677 test_256() {
16678         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16679         remote_mds_nodsh && skip "remote MDS with nodsh"
16680         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
16681                 skip "ldiskfs only test"
16682         changelog_users $SINGLEMDS | grep "^cl" &&
16683                 skip "active changelog user"
16684
16685         local cl_user
16686         local cat_sl
16687         local mdt_dev
16688
16689         mdt_dev=$(mdsdevname 1)
16690         echo $mdt_dev
16691
16692         changelog_register || error "changelog_register failed"
16693
16694         rm -rf $DIR/$tdir
16695         mkdir -p $DIR/$tdir
16696
16697         changelog_clear 0 || error "changelog_clear failed"
16698
16699         # change something
16700         touch $DIR/$tdir/{1..10}
16701
16702         # stop the MDT
16703         stop $SINGLEMDS || error "Fail to stop MDT"
16704
16705         # remount the MDT
16706
16707         start $SINGLEMDS $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT"
16708
16709         #after mount new plainllog is used
16710         touch $DIR/$tdir/{11..19}
16711         local tmpfile=$(mktemp -u $tfile.XXXXXX)
16712         cat_sl=$(do_facet $SINGLEMDS "sync; \
16713                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
16714                  llog_reader $tmpfile | grep -c type=1064553b")
16715         do_facet $SINGLEMDS llog_reader $tmpfile
16716
16717         [ $cat_sl != 2 ] && error "Changelog catalog has $cat_sl != 2 slots"
16718
16719         changelog_clear 0 || error "changelog_clear failed"
16720
16721         cat_sl=$(do_facet $SINGLEMDS "sync; \
16722                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
16723                  llog_reader $tmpfile | grep -c type=1064553b; rm -f $tmpfile")
16724
16725         if (( cat_sl == 2 )); then
16726                 error "Empty plain llog was not deleted from changelog catalog"
16727         elif (( cat_sl != 1 )); then
16728                 error "Active plain llog shouldn't be deleted from catalog"
16729         fi
16730 }
16731 run_test 256 "Check llog delete for empty and not full state"
16732
16733 test_257() {
16734         remote_mds_nodsh && skip "remote MDS with nodsh"
16735         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
16736                 skip "Need MDS version at least 2.8.55"
16737
16738         test_mkdir $DIR/$tdir
16739
16740         setfattr -n trusted.name1 -v value1 $DIR/$tdir ||
16741                 error "setfattr -n trusted.name1=value1 $DIR/$tdir failed"
16742         stat $DIR/$tdir
16743
16744 #define OBD_FAIL_MDS_XATTR_REP                  0x161
16745         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
16746         local facet=mds$((mdtidx + 1))
16747         set_nodes_failloc $(facet_active_host $facet) 0x80000161
16748         getfattr -n trusted.name1 $DIR/$tdir 2> /dev/null
16749
16750         stop $facet || error "stop MDS failed"
16751         start $facet $(mdsdevname $((mdtidx + 1))) $MDS_MOUNT_OPTS ||
16752                 error "start MDS fail"
16753 }
16754 run_test 257 "xattr locks are not lost"
16755
16756 # Verify we take the i_mutex when security requires it
16757 test_258a() {
16758 #define OBD_FAIL_IMUTEX_SEC 0x141c
16759         $LCTL set_param fail_loc=0x141c
16760         touch $DIR/$tfile
16761         chmod u+s $DIR/$tfile
16762         chmod a+rwx $DIR/$tfile
16763         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
16764         RC=$?
16765         if [ $RC -ne 0 ]; then
16766                 error "error, failed to take i_mutex, rc=$?"
16767         fi
16768         rm -f $DIR/$tfile
16769 }
16770 run_test 258a
16771
16772 # Verify we do NOT take the i_mutex in the normal case
16773 test_258b() {
16774 #define OBD_FAIL_IMUTEX_NOSEC 0x141d
16775         $LCTL set_param fail_loc=0x141d
16776         touch $DIR/$tfile
16777         chmod a+rwx $DIR
16778         chmod a+rw $DIR/$tfile
16779         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
16780         RC=$?
16781         if [ $RC -ne 0 ]; then
16782                 error "error, took i_mutex unnecessarily, rc=$?"
16783         fi
16784         rm -f $DIR/$tfile
16785
16786 }
16787 run_test 258b "verify i_mutex security behavior"
16788
16789 test_259() {
16790         local file=$DIR/$tfile
16791         local before
16792         local after
16793
16794         [ "$(facet_fstype mds1)" != "ldiskfs" ] &&
16795                 skip "ldiskfs only test" && return
16796
16797         stack_trap "rm -f $file" EXIT
16798
16799         wait_delete_completed
16800         before=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16801         echo "before: $before"
16802
16803         $LFS setstripe -i 0 -c 1 $file
16804         dd if=/dev/zero of=$file bs=1M count=10 || error "couldn't write"
16805         sync_all_data
16806         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16807         echo "after write: $after"
16808
16809 #define OBD_FAIL_OSD_FAIL_AT_TRUNCATE          0x2301
16810         do_facet ost1 $LCTL set_param fail_loc=0x2301
16811         $TRUNCATE $file 0
16812         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16813         echo "after truncate: $after"
16814
16815         stop ost1
16816         do_facet ost1 $LCTL set_param fail_loc=0
16817         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
16818         sleep 2
16819         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16820         echo "after restart: $after"
16821         [ $((after - before)) -ge $(fs_log_size ost1) ] &&
16822                 error "missing truncate?"
16823
16824         return 0
16825 }
16826 run_test 259 "crash at delayed truncate"
16827
16828 test_260() {
16829 #define OBD_FAIL_MDC_CLOSE               0x806
16830         $LCTL set_param fail_loc=0x80000806
16831         touch $DIR/$tfile
16832
16833 }
16834 run_test 260 "Check mdc_close fail"
16835
16836 ### Data-on-MDT sanity tests ###
16837 test_270a() {
16838         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16839                 skip "Need MDS version at least 2.10.55 for DoM"
16840
16841         # create DoM file
16842         local dom=$DIR/$tdir/dom_file
16843         local tmp=$DIR/$tdir/tmp_file
16844
16845         mkdir -p $DIR/$tdir
16846
16847         # basic checks for DoM component creation
16848         $LFS setstripe -E 1024K -E 2048K -L mdt $dom 2>/dev/null &&
16849                 error "Can set MDT layout to non-first entry"
16850
16851         $LFS setstripe -E 1024K -L mdt -E 2048K -L mdt $dom 2>/dev/null &&
16852                 error "Can define multiple entries as MDT layout"
16853
16854         $LFS setstripe -E 1M -L mdt $dom || error "Can't create DoM layout"
16855
16856         [ $($LFS getstripe -L $dom) == "mdt" ] || error "bad pattern"
16857         [ $($LFS getstripe -c $dom) == 0 ] || error "bad stripe count"
16858         [ $($LFS getstripe -S $dom) == 1048576 ] || error "bad stripe size"
16859
16860         local mdtidx=$($LFS getstripe -m $dom)
16861         local mdtname=MDT$(printf %04x $mdtidx)
16862         local facet=mds$((mdtidx + 1))
16863         local space_check=1
16864
16865         # Skip free space checks with ZFS
16866         [ "$(facet_fstype $facet)" == "zfs" ] && space_check=0
16867
16868         # write
16869         sync
16870         local size_tmp=$((65536 * 3))
16871         local mdtfree1=$(do_facet $facet \
16872                          lctl get_param -n osd*.*$mdtname.kbytesfree)
16873
16874         dd if=/dev/urandom of=$tmp bs=1024 count=$((size_tmp / 1024))
16875         # check also direct IO along write
16876         # IO size must be a multiple of PAGE_SIZE on all platforms (ARM=64KB)
16877         dd if=$tmp of=$dom bs=65536 count=$((size_tmp / 65536)) oflag=direct
16878         sync
16879         cmp $tmp $dom || error "file data is different"
16880         [ $(stat -c%s $dom) == $size_tmp ] ||
16881                 error "bad size after write: $(stat -c%s $dom) != $size_tmp"
16882         if [ $space_check == 1 ]; then
16883                 local mdtfree2=$(do_facet $facet \
16884                                  lctl get_param -n osd*.*$mdtname.kbytesfree)
16885
16886                 # increase in usage from by $size_tmp
16887                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_tmp / 1024)) ] ||
16888                         error "MDT free space wrong after write: " \
16889                               "$mdtfree1 >= $mdtfree2 + $size_tmp/1024"
16890         fi
16891
16892         # truncate
16893         local size_dom=10000
16894
16895         $TRUNCATE $dom $size_dom
16896         [ $(stat -c%s $dom) == $size_dom ] ||
16897                 error "bad size after truncate: $(stat -c%s $dom) != $size_dom"
16898         if [ $space_check == 1 ]; then
16899                 mdtfree1=$(do_facet $facet \
16900                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16901                 # decrease in usage from $size_tmp to new $size_dom
16902                 [ $(($mdtfree1 - $mdtfree2)) -ge \
16903                   $(((size_tmp - size_dom) / 1024)) ] ||
16904                         error "MDT free space is wrong after truncate: " \
16905                               "$mdtfree1 >= $mdtfree2 + ($size_tmp - $size_dom) / 1024"
16906         fi
16907
16908         # append
16909         cat $tmp >> $dom
16910         sync
16911         size_dom=$((size_dom + size_tmp))
16912         [ $(stat -c%s $dom) == $size_dom ] ||
16913                 error "bad size after append: $(stat -c%s $dom) != $size_dom"
16914         if [ $space_check == 1 ]; then
16915                 mdtfree2=$(do_facet $facet \
16916                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16917                 # increase in usage by $size_tmp from previous
16918                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_tmp / 1024)) ] ||
16919                         error "MDT free space is wrong after append: " \
16920                               "$mdtfree1 >= $mdtfree2 + $size_tmp/1024"
16921         fi
16922
16923         # delete
16924         rm $dom
16925         if [ $space_check == 1 ]; then
16926                 mdtfree1=$(do_facet $facet \
16927                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16928                 # decrease in usage by $size_dom from previous
16929                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_dom / 1024)) ] ||
16930                         error "MDT free space is wrong after removal: " \
16931                               "$mdtfree1 >= $mdtfree2 + $size_dom/1024"
16932         fi
16933
16934         # combined striping
16935         $LFS setstripe -E 1024K -L mdt -E EOF $dom ||
16936                 error "Can't create DoM + OST striping"
16937
16938         size_tmp=2031616 # must be a multiple of PAGE_SIZE=65536 on ARM
16939         dd if=/dev/urandom of=$tmp bs=1024 count=$((size_tmp / 1024))
16940         # check also direct IO along write
16941         dd if=$tmp of=$dom bs=65536 count=$((size_tmp / 65536)) oflag=direct
16942         sync
16943         cmp $tmp $dom || error "file data is different"
16944         [ $(stat -c%s $dom) == $size_tmp ] ||
16945                 error "bad size after write: $(stat -c%s $dom) != $size_tmp"
16946         rm $dom $tmp
16947
16948         return 0
16949 }
16950 run_test 270a "DoM: basic functionality tests"
16951
16952 test_270b() {
16953         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16954                 skip "Need MDS version at least 2.10.55"
16955
16956         local dom=$DIR/$tdir/dom_file
16957         local max_size=1048576
16958
16959         mkdir -p $DIR/$tdir
16960         $LFS setstripe -E $max_size -L mdt $dom
16961
16962         # truncate over the limit
16963         $TRUNCATE $dom $(($max_size + 1)) &&
16964                 error "successful truncate over the maximum size"
16965         # write over the limit
16966         dd if=/dev/zero of=$dom bs=$max_size seek=1 count=1 &&
16967                 error "successful write over the maximum size"
16968         # append over the limit
16969         dd if=/dev/zero of=$dom bs=$(($max_size - 3)) count=1
16970         echo "12345" >> $dom && error "successful append over the maximum size"
16971         rm $dom
16972
16973         return 0
16974 }
16975 run_test 270b "DoM: maximum size overflow checks for DoM-only file"
16976
16977 test_270c() {
16978         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16979                 skip "Need MDS version at least 2.10.55"
16980
16981         mkdir -p $DIR/$tdir
16982         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
16983
16984         # check files inherit DoM EA
16985         touch $DIR/$tdir/first
16986         [ $($LFS getstripe -L $DIR/$tdir/first) == "mdt" ] ||
16987                 error "bad pattern"
16988         [ $($LFS getstripe -c $DIR/$tdir/first) == 0 ] ||
16989                 error "bad stripe count"
16990         [ $($LFS getstripe -S $DIR/$tdir/first) == 1048576 ] ||
16991                 error "bad stripe size"
16992
16993         # check directory inherits DoM EA and uses it as default
16994         mkdir $DIR/$tdir/subdir
16995         touch $DIR/$tdir/subdir/second
16996         [ $($LFS getstripe -L $DIR/$tdir/subdir/second) == "mdt" ] ||
16997                 error "bad pattern in sub-directory"
16998         [ $($LFS getstripe -c $DIR/$tdir/subdir/second) == 0 ] ||
16999                 error "bad stripe count in sub-directory"
17000         [ $($LFS getstripe -S $DIR/$tdir/subdir/second) == 1048576 ] ||
17001                 error "bad stripe size in sub-directory"
17002         return 0
17003 }
17004 run_test 270c "DoM: DoM EA inheritance tests"
17005
17006 test_270d() {
17007         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
17008                 skip "Need MDS version at least 2.10.55"
17009
17010         mkdir -p $DIR/$tdir
17011         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17012
17013         # inherit default DoM striping
17014         mkdir $DIR/$tdir/subdir
17015         touch $DIR/$tdir/subdir/f1
17016
17017         # change default directory striping
17018         $LFS setstripe -c 1 $DIR/$tdir/subdir
17019         touch $DIR/$tdir/subdir/f2
17020         [ $($LFS getstripe -c $DIR/$tdir/subdir/f2) == 1 ] ||
17021                 error "wrong default striping in file 2"
17022         [ $($LFS getstripe -L $DIR/$tdir/subdir/f2) == "raid0" ] ||
17023                 error "bad pattern in file 2"
17024         return 0
17025 }
17026 run_test 270d "DoM: change striping from DoM to RAID0"
17027
17028 test_270e() {
17029         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
17030                 skip "Need MDS version at least 2.10.55"
17031
17032         mkdir -p $DIR/$tdir/dom
17033         mkdir -p $DIR/$tdir/norm
17034         DOMFILES=20
17035         NORMFILES=10
17036         $LFS setstripe -E 1M -L mdt $DIR/$tdir/dom
17037         $LFS setstripe -i 0 -S 2M $DIR/$tdir/norm
17038
17039         createmany -o $DIR/$tdir/dom/dom- $DOMFILES
17040         createmany -o $DIR/$tdir/norm/norm- $NORMFILES
17041
17042         # find DoM files by layout
17043         NUM=$($LFS find -L mdt -type f $DIR/$tdir 2>/dev/null | wc -l)
17044         [ $NUM -eq  $DOMFILES ] ||
17045                 error "lfs find -L: found $NUM, expected $DOMFILES"
17046         echo "Test 1: lfs find 20 DOM files by layout: OK"
17047
17048         # there should be 1 dir with default DOM striping
17049         NUM=$($LFS find -L mdt -type d $DIR/$tdir 2>/dev/null | wc -l)
17050         [ $NUM -eq  1 ] ||
17051                 error "lfs find -L: found $NUM, expected 1 dir"
17052         echo "Test 2: lfs find 1 DOM dir by layout: OK"
17053
17054         # find DoM files by stripe size
17055         NUM=$($LFS find -S -1200K -type f $DIR/$tdir 2>/dev/null | wc -l)
17056         [ $NUM -eq  $DOMFILES ] ||
17057                 error "lfs find -S: found $NUM, expected $DOMFILES"
17058         echo "Test 4: lfs find 20 DOM files by stripe size: OK"
17059
17060         # find files by stripe offset except DoM files
17061         NUM=$($LFS find -i 0 -type f $DIR/$tdir 2>/dev/null | wc -l)
17062         [ $NUM -eq  $NORMFILES ] ||
17063                 error "lfs find -i: found $NUM, expected $NORMFILES"
17064         echo "Test 5: lfs find no DOM files by stripe index: OK"
17065         return 0
17066 }
17067 run_test 270e "DoM: lfs find with DoM files test"
17068
17069 test_270f() {
17070         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
17071                 skip "Need MDS version at least 2.10.55"
17072
17073         local mdtname=${FSNAME}-MDT0000-mdtlov
17074         local dom=$DIR/$tdir/dom_file
17075         local dom_limit_saved=$(do_facet mds1 $LCTL get_param -n \
17076                                                 lod.$mdtname.dom_stripesize)
17077         local dom_limit=131072
17078
17079         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=$dom_limit
17080         local dom_current=$(do_facet mds1 $LCTL get_param -n \
17081                                                 lod.$mdtname.dom_stripesize)
17082         [ ${dom_limit} -eq ${dom_current} ] ||
17083                 error "Cannot change per-MDT DoM stripe limit to $dom_limit"
17084
17085         $LFS mkdir -i 0 -c 1 $DIR/$tdir
17086         $LFS setstripe -d $DIR/$tdir
17087         $LFS setstripe -E $dom_limit -L mdt $DIR/$tdir ||
17088                 error "Can't set directory default striping"
17089
17090         # exceed maximum stripe size
17091         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
17092                 error "Can't create file with $((dom_limit * 2)) DoM stripe"
17093         [ $($LFS getstripe -S $dom) -eq $((dom_limit * 2)) ] &&
17094                 error "Able to create DoM component size more than LOD limit"
17095
17096         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=0
17097         dom_current=$(do_facet mds1 $LCTL get_param -n \
17098                                                 lod.$mdtname.dom_stripesize)
17099         [ 0 -eq ${dom_current} ] ||
17100                 error "Can't set zero DoM stripe limit"
17101         rm $dom
17102
17103         # attempt to create DoM file on server with disabled DoM should
17104         # remove DoM entry from layout and be succeed
17105         $LFS setstripe -E $dom_limit -L mdt -E -1 $dom ||
17106                 error "Can't create DoM file (DoM is disabled)"
17107         [ $($LFS getstripe -L $dom) == "mdt" ] &&
17108                 error "File has DoM component while DoM is disabled"
17109         rm $dom
17110
17111         # attempt to create DoM file with only DoM stripe should return error
17112         $LFS setstripe -E $dom_limit -L mdt $dom &&
17113                 error "Able to create DoM-only file while DoM is disabled"
17114
17115         # too low values to be aligned with smallest stripe size 64K
17116         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=30000
17117         dom_current=$(do_facet mds1 $LCTL get_param -n \
17118                                                 lod.$mdtname.dom_stripesize)
17119         [ 30000 -eq ${dom_current} ] &&
17120                 error "Can set too small DoM stripe limit"
17121
17122         # 64K is a minimal stripe size in Lustre, expect limit of that size
17123         [ 65536 -eq ${dom_current} ] ||
17124                 error "Limit is not set to 64K but ${dom_current}"
17125
17126         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=2147483648
17127         dom_current=$(do_facet mds1 $LCTL get_param -n \
17128                                                 lod.$mdtname.dom_stripesize)
17129         echo $dom_current
17130         [ 2147483648 -eq ${dom_current} ] &&
17131                 error "Can set too large DoM stripe limit"
17132
17133         do_facet mds1 $LCTL set_param -n \
17134                                 lod.$mdtname.dom_stripesize=$((dom_limit * 2))
17135         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
17136                 error "Can't create DoM component size after limit change"
17137         do_facet mds1 $LCTL set_param -n \
17138                                 lod.$mdtname.dom_stripesize=$((dom_limit / 2))
17139         $LFS setstripe -E $dom_limit -L mdt ${dom}_big ||
17140                 error "Can't create DoM file after limit decrease"
17141         [ $($LFS getstripe -S ${dom}_big) -eq $((dom_limit / 2)) ] ||
17142                 error "Can create big DoM component after limit decrease"
17143         touch ${dom}_def ||
17144                 error "Can't create file with old default layout"
17145
17146         do_facet mds1 $LCTL set_param -n lod.*.dom_stripesize=$dom_limit_saved
17147         return 0
17148 }
17149 run_test 270f "DoM: maximum DoM stripe size checks"
17150
17151 test_271a() {
17152         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
17153                 skip "Need MDS version at least 2.10.55"
17154
17155         local dom=$DIR/$tdir/dom
17156
17157         mkdir -p $DIR/$tdir
17158
17159         $LFS setstripe -E 1024K -L mdt $dom
17160
17161         lctl set_param -n mdc.*.stats=clear
17162         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
17163         cat $dom > /dev/null
17164         local reads=$(lctl get_param -n mdc.*.stats | grep -c ost_read)
17165         [ $reads -eq 0 ] || error "Unexpected $reads READ RPCs"
17166         ls $dom
17167         rm -f $dom
17168 }
17169 run_test 271a "DoM: data is cached for read after write"
17170
17171 test_271b() {
17172         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
17173                 skip "Need MDS version at least 2.10.55"
17174
17175         local dom=$DIR/$tdir/dom
17176
17177         mkdir -p $DIR/$tdir
17178
17179         $LFS setstripe -E 1024K -L mdt -E EOF $dom
17180
17181         lctl set_param -n mdc.*.stats=clear
17182         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
17183         cancel_lru_locks mdc
17184         $CHECKSTAT -t file -s 4096 $dom || error "stat #1 fails"
17185         # second stat to check size is cached on client
17186         $CHECKSTAT -t file -s 4096 $dom || error "stat #2 fails"
17187         local gls=$(lctl get_param -n mdc.*.stats | grep -c ldlm_glimpse)
17188         [ $gls -eq 0 ] || error "Unexpected $gls glimpse RPCs"
17189         rm -f $dom
17190 }
17191 run_test 271b "DoM: no glimpse RPC for stat (DoM only file)"
17192
17193 test_271ba() {
17194         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
17195                 skip "Need MDS version at least 2.10.55"
17196
17197         local dom=$DIR/$tdir/dom
17198
17199         mkdir -p $DIR/$tdir
17200
17201         $LFS setstripe -E 1024K -L mdt -E EOF $dom
17202
17203         lctl set_param -n mdc.*.stats=clear
17204         lctl set_param -n osc.*.stats=clear
17205         dd if=/dev/zero of=$dom bs=2048K count=1 || return 1
17206         cancel_lru_locks mdc
17207         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
17208         # second stat to check size is cached on client
17209         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
17210         local gls=$(lctl get_param -n mdc.*.stats | grep -c ldlm_glimpse)
17211         [ $gls == 0 ] || error "Unexpected $gls glimpse RPCs"
17212         local gls=$(lctl get_param -n osc.*.stats | grep -c ldlm_glimpse)
17213         [ $gls == 0 ] || error "Unexpected $gls OSC glimpse RPCs"
17214         rm -f $dom
17215 }
17216 run_test 271ba "DoM: no glimpse RPC for stat (combined file)"
17217
17218
17219 get_mdc_stats() {
17220         local mdtidx=$1
17221         local param=$2
17222         local mdt=MDT$(printf %04x $mdtidx)
17223
17224         if [ -z $param ]; then
17225                 lctl get_param -n mdc.*$mdt*.stats
17226         else
17227                 lctl get_param -n mdc.*$mdt*.stats | awk "/$param/"'{print $2}'
17228         fi
17229 }
17230
17231 test_271c() {
17232         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
17233                 skip "Need MDS version at least 2.10.55"
17234
17235         local dom=$DIR/$tdir/dom
17236
17237         mkdir -p $DIR/$tdir
17238
17239         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17240
17241         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
17242         local facet=mds$((mdtidx + 1))
17243
17244         cancel_lru_locks mdc
17245         do_facet $facet lctl set_param -n mdt.*.dom_lock=0
17246         createmany -o $dom 1000
17247         lctl set_param -n mdc.*.stats=clear
17248         smalliomany -w $dom 1000 200
17249         get_mdc_stats $mdtidx
17250         local enq=$(get_mdc_stats $mdtidx ldlm_ibits_enqueue)
17251         # Each file has 1 open, 1 IO enqueues, total 2000
17252         # but now we have also +1 getxattr for security.capability, total 3000
17253         [ $enq -ge 2000 ] || error "Too few enqueues $enq, expected > 2000"
17254         unlinkmany $dom 1000
17255
17256         cancel_lru_locks mdc
17257         do_facet $facet lctl set_param -n mdt.*.dom_lock=1
17258         createmany -o $dom 1000
17259         lctl set_param -n mdc.*.stats=clear
17260         smalliomany -w $dom 1000 200
17261         local enq_2=$(get_mdc_stats $mdtidx ldlm_ibits_enqueue)
17262         # Expect to see reduced amount of RPCs by 1000 due to single enqueue
17263         # for OPEN and IO lock.
17264         [ $((enq - enq_2)) -ge 1000 ] ||
17265                 error "Too many enqueues $enq_2, expected about $((enq - 1000))"
17266         unlinkmany $dom 1000
17267         return 0
17268 }
17269 run_test 271c "DoM: IO lock at open saves enqueue RPCs"
17270
17271 cleanup_271def_tests() {
17272         trap 0
17273         rm -f $1
17274 }
17275
17276 test_271d() {
17277         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.57) ] &&
17278                 skip "Need MDS version at least 2.10.57" && return
17279
17280         local dom=$DIR/$tdir/dom
17281         local tmp=$TMP/$tfile
17282         trap "cleanup_271def_tests $tmp" EXIT
17283
17284         mkdir -p $DIR/$tdir
17285
17286         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17287
17288         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
17289
17290         cancel_lru_locks mdc
17291         dd if=/dev/urandom of=$tmp bs=1000 count=1
17292         dd if=$tmp of=$dom bs=1000 count=1
17293         cancel_lru_locks mdc
17294
17295         cat /etc/hosts >> $tmp
17296         lctl set_param -n mdc.*.stats=clear
17297
17298         # append data to the same file it should update local page
17299         echo "Append to the same page"
17300         cat /etc/hosts >> $dom
17301         local num=$(get_mdc_stats $mdtidx ost_read)
17302         local ra=$(get_mdc_stats $mdtidx req_active)
17303         local rw=$(get_mdc_stats $mdtidx req_waittime)
17304
17305         [ -z $num ] || error "$num READ RPC occured"
17306         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17307         echo "... DONE"
17308
17309         # compare content
17310         cmp $tmp $dom || error "file miscompare"
17311
17312         cancel_lru_locks mdc
17313         lctl set_param -n mdc.*.stats=clear
17314
17315         echo "Open and read file"
17316         cat $dom > /dev/null
17317         local num=$(get_mdc_stats $mdtidx ost_read)
17318         local ra=$(get_mdc_stats $mdtidx req_active)
17319         local rw=$(get_mdc_stats $mdtidx req_waittime)
17320
17321         [ -z $num ] || error "$num READ RPC occured"
17322         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17323         echo "... DONE"
17324
17325         # compare content
17326         cmp $tmp $dom || error "file miscompare"
17327
17328         return 0
17329 }
17330 run_test 271d "DoM: read on open (1K file in reply buffer)"
17331
17332 test_271e() {
17333         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.57) ] &&
17334                 skip "Need MDS version at least 2.10.57" && return
17335
17336         local dom=$DIR/$tdir/dom
17337         local tmp=$TMP/${tfile}.data
17338         trap "cleanup_271def_tests $tmp" EXIT
17339
17340         mkdir -p $DIR/$tdir
17341
17342         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17343
17344         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
17345
17346         cancel_lru_locks mdc
17347         dd if=/dev/urandom of=$tmp bs=30K count=1
17348         dd if=$tmp of=$dom bs=30K count=1
17349         cancel_lru_locks mdc
17350         cat /etc/hosts >> $tmp
17351         lctl set_param -n mdc.*.stats=clear
17352
17353         echo "Append to the same page"
17354         cat /etc/hosts >> $dom
17355
17356         local num=$(get_mdc_stats $mdtidx ost_read)
17357         local ra=$(get_mdc_stats $mdtidx req_active)
17358         local rw=$(get_mdc_stats $mdtidx req_waittime)
17359
17360         [ -z $num ] || error "$num READ RPC occured"
17361         # Reply buffer can be adjusted for larger buffer by resend
17362         echo "... DONE with $((ra - rw)) resends"
17363
17364         # compare content
17365         cmp $tmp $dom || error "file miscompare"
17366
17367         cancel_lru_locks mdc
17368         lctl set_param -n mdc.*.stats=clear
17369
17370         echo "Open and read file"
17371         cat $dom > /dev/null
17372         local num=$(get_mdc_stats $mdtidx ost_read)
17373         local ra=$(get_mdc_stats $mdtidx req_active)
17374         local rw=$(get_mdc_stats $mdtidx req_waittime)
17375
17376         [ -z $num ] || error "$num READ RPC occured"
17377         # Reply buffer can be adjusted for larger buffer by resend
17378         echo "... DONE with $((ra - rw)) resends"
17379
17380         # compare content
17381         cmp $tmp $dom || error "file miscompare"
17382
17383         return 0
17384 }
17385 run_test 271e "DoM: read on open (30K file with reply buffer adjusting)"
17386
17387 test_271f() {
17388         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.57) ] &&
17389                 skip "Need MDS version at least 2.10.57" && return
17390
17391         local dom=$DIR/$tdir/dom
17392         local tmp=$TMP/$tfile
17393         trap "cleanup_271def_tests $tmp" EXIT
17394
17395         mkdir -p $DIR/$tdir
17396
17397         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17398
17399         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
17400
17401         cancel_lru_locks mdc
17402         dd if=/dev/urandom of=$tmp bs=200000 count=1
17403         dd if=$tmp of=$dom bs=200000 count=1
17404         cancel_lru_locks mdc
17405         cat /etc/hosts >> $tmp
17406         lctl set_param -n mdc.*.stats=clear
17407
17408         echo "Append to the same page"
17409         cat /etc/hosts >> $dom
17410         local num=$(get_mdc_stats $mdtidx ost_read)
17411         local ra=$(get_mdc_stats $mdtidx req_active)
17412         local rw=$(get_mdc_stats $mdtidx req_waittime)
17413
17414         [ -z $num ] || error "$num READ RPC occured"
17415         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17416         echo "... DONE"
17417
17418         # compare content
17419         cmp $tmp $dom || error "file miscompare"
17420
17421         cancel_lru_locks mdc
17422         lctl set_param -n mdc.*.stats=clear
17423
17424         echo "Open and read file"
17425         cat $dom > /dev/null
17426         local num=$(get_mdc_stats $mdtidx ost_read)
17427         local ra=$(get_mdc_stats $mdtidx req_active)
17428         local rw=$(get_mdc_stats $mdtidx req_waittime)
17429
17430         [ $num -eq 1 ] || error "expect 1 READ RPC, $num occured"
17431         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17432         echo "... DONE"
17433
17434         # compare content
17435         cmp $tmp $dom || error "file miscompare"
17436
17437         return 0
17438 }
17439 run_test 271f "DoM: read on open (200K file and read tail)"
17440
17441 test_272a() {
17442         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.50) ] &&
17443                 skip "Need MDS version at least 2.11.50"
17444
17445         local dom=$DIR/$tdir/dom
17446         mkdir -p $DIR/$tdir
17447
17448         $LFS setstripe -E 256K -L mdt -E -1 -c1 $dom
17449         dd if=/dev/urandom of=$dom bs=512K count=1 ||
17450                 error "failed to write data into $dom"
17451         local old_md5=$(md5sum $dom)
17452
17453         $LFS migrate -E 256K -L mdt -E -1 -c2 $dom ||
17454                 error "failed to migrate to the same DoM component"
17455
17456         [ $($LFS getstripe -c $dom) -eq 2 ] ||
17457                 error "layout was not changed silently"
17458
17459         local new_md5=$(md5sum $dom)
17460
17461         [ "$old_md5" != "$new_md5" ] &&
17462                 error "md5sum differ: $old_md5, $new_md5"
17463         return 0
17464 }
17465 run_test 272a "DoM migration: new layout with the same DOM component"
17466
17467 test_272b() {
17468         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.50) ] &&
17469                 skip "Need MDS version at least 2.11.50"
17470
17471         local dom=$DIR/$tdir/dom
17472         mkdir -p $DIR/$tdir
17473         $LFS setstripe -E 1M -L mdt -E -1 -c1 $dom
17474
17475         local mdtidx=$($LFS getstripe -m $dom)
17476         local mdtname=MDT$(printf %04x $mdtidx)
17477         local facet=mds$((mdtidx + 1))
17478
17479         local mdtfree1=$(do_facet $facet \
17480                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17481         dd if=/dev/urandom of=$dom bs=2M count=1 ||
17482                 error "failed to write data into $dom"
17483         local old_md5=$(md5sum $dom)
17484         cancel_lru_locks mdc
17485         local mdtfree1=$(do_facet $facet \
17486                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17487
17488         $LFS migrate -c2 $dom ||
17489                 error "failed to migrate to the new composite layout"
17490         [ $($LFS getstripe -L $dom) == 'mdt' ] &&
17491                 error "MDT stripe was not removed"
17492
17493         cancel_lru_locks mdc
17494         local new_md5=$(md5sum $dom)
17495         [ "$old_md5" != "$new_md5" ] &&
17496                 error "$old_md5 != $new_md5"
17497
17498         # Skip free space checks with ZFS
17499         if [ "$(facet_fstype $facet)" != "zfs" ]; then
17500                 local mdtfree2=$(do_facet $facet \
17501                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17502                 [ $mdtfree2 -gt $mdtfree1 ] ||
17503                         error "MDT space is not freed after migration"
17504         fi
17505         return 0
17506 }
17507 run_test 272b "DoM migration: DOM file to the OST-striped file (plain)"
17508
17509 test_272c() {
17510         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.50) ] &&
17511                 skip "Need MDS version at least 2.11.50"
17512
17513         local dom=$DIR/$tdir/$tfile
17514         mkdir -p $DIR/$tdir
17515         $LFS setstripe -E 1M -L mdt -E -1 -c1 $dom
17516
17517         local mdtidx=$($LFS getstripe -m $dom)
17518         local mdtname=MDT$(printf %04x $mdtidx)
17519         local facet=mds$((mdtidx + 1))
17520
17521         dd if=/dev/urandom of=$dom bs=2M count=1 oflag=direct ||
17522                 error "failed to write data into $dom"
17523         local old_md5=$(md5sum $dom)
17524         cancel_lru_locks mdc
17525         local mdtfree1=$(do_facet $facet \
17526                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17527
17528         $LFS migrate -E 2M -c1 -E -1 -c2 $dom ||
17529                 error "failed to migrate to the new composite layout"
17530         [ $($LFS getstripe -L $dom) == 'mdt' ] &&
17531                 error "MDT stripe was not removed"
17532
17533         cancel_lru_locks mdc
17534         local new_md5=$(md5sum $dom)
17535         [ "$old_md5" != "$new_md5" ] &&
17536                 error "$old_md5 != $new_md5"
17537
17538         # Skip free space checks with ZFS
17539         if [ "$(facet_fstype $facet)" != "zfs" ]; then
17540                 local mdtfree2=$(do_facet $facet \
17541                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17542                 [ $mdtfree2 -gt $mdtfree1 ] ||
17543                         error "MDS space is not freed after migration"
17544         fi
17545         return 0
17546 }
17547 run_test 272c "DoM migration: DOM file to the OST-striped file (composite)"
17548
17549 test_273a() {
17550         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.50) ] &&
17551                 skip "Need MDS version at least 2.11.50"
17552
17553         # Layout swap cannot be done if either file has DOM component,
17554         # this will never be supported, migration should be used instead
17555
17556         local dom=$DIR/$tdir/$tfile
17557         mkdir -p $DIR/$tdir
17558
17559         $LFS setstripe -c2 ${dom}_plain
17560         $LFS setstripe -E 1M -L mdt -E -1 -c2 ${dom}_dom
17561         $LFS swap_layouts ${dom}_plain ${dom}_dom &&
17562                 error "can swap layout with DoM component"
17563         $LFS swap_layouts ${dom}_dom ${dom}_plain &&
17564                 error "can swap layout with DoM component"
17565
17566         $LFS setstripe -E 1M -c1 -E -1 -c2 ${dom}_comp
17567         $LFS swap_layouts ${dom}_comp ${dom}_dom &&
17568                 error "can swap layout with DoM component"
17569         $LFS swap_layouts ${dom}_dom ${dom}_comp &&
17570                 error "can swap layout with DoM component"
17571         return 0
17572 }
17573 run_test 273a "DoM: layout swapping should fail with DOM"
17574
17575 test_275() {
17576         remote_ost_nodsh && skip "remote OST with nodsh"
17577         [ $(lustre_version_code ost1) -lt $(version_code 2.10.57) ] &&
17578                 skip "Need OST version >= 2.10.57"
17579
17580         local file=$DIR/$tfile
17581         local oss
17582
17583         oss=$(comma_list $(osts_nodes))
17584
17585         dd if=/dev/urandom of=$file bs=1M count=2 ||
17586                 error "failed to create a file"
17587         cancel_lru_locks osc
17588
17589         #lock 1
17590         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
17591                 error "failed to read a file"
17592
17593 #define OBD_FAIL_LDLM_PAUSE_CANCEL2      0x31f
17594         $LCTL set_param fail_loc=0x8000031f
17595
17596         cancel_lru_locks osc &
17597         sleep 1
17598
17599 #define OBD_FAIL_LDLM_PROLONG_PAUSE      0x32b
17600         do_nodes $oss $LCTL set_param fail_loc=0x8000032b
17601         #IO takes another lock, but matches the PENDING one
17602         #and places it to the IO RPC
17603         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
17604                 error "failed to read a file with PENDING lock"
17605 }
17606 run_test 275 "Read on a canceled duplicate lock"
17607
17608 test_276() {
17609         remote_ost_nodsh && skip "remote OST with nodsh"
17610         local pid
17611
17612         do_facet ost1 "(while true; do \
17613                 $LCTL get_param obdfilter.*.filesfree > /dev/null 2>&1; \
17614                 done) & pid=\\\$!; echo \\\$pid > $TMP/sanity_276_pid" &
17615         pid=$!
17616
17617         for LOOP in $(seq 20); do
17618                 stop ost1
17619                 start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
17620         done
17621         kill -9 $pid
17622         do_facet ost1 "pid=\\\$(cat $TMP/sanity_276_pid); kill -9 \\\$pid; \
17623                 rm $TMP/sanity_276_pid"
17624 }
17625 run_test 276 "Race between mount and obd_statfs"
17626
17627 cleanup_test_300() {
17628         trap 0
17629         umask $SAVE_UMASK
17630 }
17631 test_striped_dir() {
17632         local mdt_index=$1
17633         local stripe_count
17634         local stripe_index
17635
17636         mkdir -p $DIR/$tdir
17637
17638         SAVE_UMASK=$(umask)
17639         trap cleanup_test_300 RETURN EXIT
17640
17641         $LFS setdirstripe -i $mdt_index -c 2 -H all_char -o 755 \
17642                                                 $DIR/$tdir/striped_dir ||
17643                 error "set striped dir error"
17644
17645         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
17646         [ "$mode" = "755" ] || error "expect 755 got $mode"
17647
17648         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
17649                 error "getdirstripe failed"
17650         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
17651         if [ "$stripe_count" != "2" ]; then
17652                 error "1:stripe_count is $stripe_count, expect 2"
17653         fi
17654         stripe_count=$($LFS getdirstripe -T $DIR/$tdir/striped_dir)
17655         if [ "$stripe_count" != "2" ]; then
17656                 error "2:stripe_count is $stripe_count, expect 2"
17657         fi
17658
17659         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
17660         if [ "$stripe_index" != "$mdt_index" ]; then
17661                 error "stripe_index is $stripe_index, expect $mdt_index"
17662         fi
17663
17664         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
17665                 error "nlink error after create striped dir"
17666
17667         mkdir $DIR/$tdir/striped_dir/a
17668         mkdir $DIR/$tdir/striped_dir/b
17669
17670         stat $DIR/$tdir/striped_dir/a ||
17671                 error "create dir under striped dir failed"
17672         stat $DIR/$tdir/striped_dir/b ||
17673                 error "create dir under striped dir failed"
17674
17675         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
17676                 error "nlink error after mkdir"
17677
17678         rmdir $DIR/$tdir/striped_dir/a
17679         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
17680                 error "nlink error after rmdir"
17681
17682         rmdir $DIR/$tdir/striped_dir/b
17683         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
17684                 error "nlink error after rmdir"
17685
17686         chattr +i $DIR/$tdir/striped_dir
17687         createmany -o $DIR/$tdir/striped_dir/f 10 &&
17688                 error "immutable flags not working under striped dir!"
17689         chattr -i $DIR/$tdir/striped_dir
17690
17691         rmdir $DIR/$tdir/striped_dir ||
17692                 error "rmdir striped dir error"
17693
17694         cleanup_test_300
17695
17696         true
17697 }
17698
17699 test_300a() {
17700         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
17701                 skip "skipped for lustre < 2.7.0"
17702         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17703         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17704
17705         test_striped_dir 0 || error "failed on striped dir on MDT0"
17706         test_striped_dir 1 || error "failed on striped dir on MDT0"
17707 }
17708 run_test 300a "basic striped dir sanity test"
17709
17710 test_300b() {
17711         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
17712                 skip "skipped for lustre < 2.7.0"
17713         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17714         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17715
17716         local i
17717         local mtime1
17718         local mtime2
17719         local mtime3
17720
17721         test_mkdir $DIR/$tdir || error "mkdir fail"
17722         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17723                 error "set striped dir error"
17724         for i in {0..9}; do
17725                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
17726                 sleep 1
17727                 touch $DIR/$tdir/striped_dir/file_$i || error "touch error $i"
17728                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
17729                 [ $mtime1 -eq $mtime2 ] && error "mtime unchanged after create"
17730                 sleep 1
17731                 rm -f $DIR/$tdir/striped_dir/file_$i || error "unlink error $i"
17732                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
17733                 [ $mtime2 -eq $mtime3 ] && error "mtime unchanged after unlink"
17734         done
17735         true
17736 }
17737 run_test 300b "check ctime/mtime for striped dir"
17738
17739 test_300c() {
17740         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
17741                 skip "skipped for lustre < 2.7.0"
17742         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17743         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17744
17745         local file_count
17746
17747         mkdir -p $DIR/$tdir
17748         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
17749                 error "set striped dir error"
17750
17751         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
17752                 error "chown striped dir failed"
17753
17754         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
17755                 error "create 5k files failed"
17756
17757         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
17758
17759         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
17760
17761         rm -rf $DIR/$tdir
17762 }
17763 run_test 300c "chown && check ls under striped directory"
17764
17765 test_300d() {
17766         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
17767                 skip "skipped for lustre < 2.7.0"
17768         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17769         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17770
17771         local stripe_count
17772         local file
17773
17774         mkdir -p $DIR/$tdir
17775         $LFS setstripe -c 2 $DIR/$tdir
17776
17777         #local striped directory
17778         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17779                 error "set striped dir error"
17780         createmany -o $DIR/$tdir/striped_dir/f 10 ||
17781                 error "create 10 files failed"
17782
17783         #remote striped directory
17784         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
17785                 error "set striped dir error"
17786         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
17787                 error "create 10 files failed"
17788
17789         for file in $(find $DIR/$tdir); do
17790                 stripe_count=$($LFS getstripe -c $file)
17791                 [ $stripe_count -eq 2 ] ||
17792                         error "wrong stripe $stripe_count for $file"
17793         done
17794
17795         rm -rf $DIR/$tdir
17796 }
17797 run_test 300d "check default stripe under striped directory"
17798
17799 test_300e() {
17800         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17801                 skip "Need MDS version at least 2.7.55"
17802         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17803         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17804
17805         local stripe_count
17806         local file
17807
17808         mkdir -p $DIR/$tdir
17809
17810         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17811                 error "set striped dir error"
17812
17813         touch $DIR/$tdir/striped_dir/a
17814         touch $DIR/$tdir/striped_dir/b
17815         touch $DIR/$tdir/striped_dir/c
17816
17817         mkdir $DIR/$tdir/striped_dir/dir_a
17818         mkdir $DIR/$tdir/striped_dir/dir_b
17819         mkdir $DIR/$tdir/striped_dir/dir_c
17820
17821         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_a ||
17822                 error "set striped adir under striped dir error"
17823
17824         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_b ||
17825                 error "set striped bdir under striped dir error"
17826
17827         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_c ||
17828                 error "set striped cdir under striped dir error"
17829
17830         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
17831                 error "rename dir under striped dir fails"
17832
17833         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
17834                 error "rename dir under different stripes fails"
17835
17836         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
17837                 error "rename file under striped dir should succeed"
17838
17839         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
17840                 error "rename dir under striped dir should succeed"
17841
17842         rm -rf $DIR/$tdir
17843 }
17844 run_test 300e "check rename under striped directory"
17845
17846 test_300f() {
17847         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17848         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17849         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17850                 skip "Need MDS version at least 2.7.55"
17851
17852         local stripe_count
17853         local file
17854
17855         rm -rf $DIR/$tdir
17856         mkdir -p $DIR/$tdir
17857
17858         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17859                 error "set striped dir error"
17860
17861         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir1 ||
17862                 error "set striped dir error"
17863
17864         touch $DIR/$tdir/striped_dir/a
17865         mkdir $DIR/$tdir/striped_dir/dir_a
17866         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
17867                 error "create striped dir under striped dir fails"
17868
17869         touch $DIR/$tdir/striped_dir1/b
17870         mkdir $DIR/$tdir/striped_dir1/dir_b
17871         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
17872                 error "create striped dir under striped dir fails"
17873
17874         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
17875                 error "rename dir under different striped dir should fail"
17876
17877         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
17878                 error "rename striped dir under diff striped dir should fail"
17879
17880         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
17881                 error "rename file under diff striped dirs fails"
17882
17883         rm -rf $DIR/$tdir
17884 }
17885 run_test 300f "check rename cross striped directory"
17886
17887 test_300_check_default_striped_dir()
17888 {
17889         local dirname=$1
17890         local default_count=$2
17891         local default_index=$3
17892         local stripe_count
17893         local stripe_index
17894         local dir_stripe_index
17895         local dir
17896
17897         echo "checking $dirname $default_count $default_index"
17898         $LFS setdirstripe -D -c $default_count -i $default_index \
17899                                 -t all_char $DIR/$tdir/$dirname ||
17900                 error "set default stripe on striped dir error"
17901         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
17902         [ $stripe_count -eq $default_count ] ||
17903                 error "expect $default_count get $stripe_count for $dirname"
17904
17905         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
17906         [ $stripe_index -eq $default_index ] ||
17907                 error "expect $default_index get $stripe_index for $dirname"
17908
17909         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
17910                                                 error "create dirs failed"
17911
17912         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
17913         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
17914         for dir in $(find $DIR/$tdir/$dirname/*); do
17915                 stripe_count=$($LFS getdirstripe -c $dir)
17916                 [ $stripe_count -eq $default_count ] ||
17917                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
17918                 error "stripe count $default_count != $stripe_count for $dir"
17919
17920                 stripe_index=$($LFS getdirstripe -i $dir)
17921                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
17922                         error "$stripe_index != $default_index for $dir"
17923
17924                 #check default stripe
17925                 stripe_count=$($LFS getdirstripe -D -c $dir)
17926                 [ $stripe_count -eq $default_count ] ||
17927                 error "default count $default_count != $stripe_count for $dir"
17928
17929                 stripe_index=$($LFS getdirstripe -D -i $dir)
17930                 [ $stripe_index -eq $default_index ] ||
17931                 error "default index $default_index != $stripe_index for $dir"
17932         done
17933         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
17934 }
17935
17936 test_300g() {
17937         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17938         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17939                 skip "Need MDS version at least 2.7.55"
17940
17941         local dir
17942         local stripe_count
17943         local stripe_index
17944
17945         mkdir $DIR/$tdir
17946         mkdir $DIR/$tdir/normal_dir
17947
17948         #Checking when client cache stripe index
17949         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
17950         $LFS setdirstripe -D -i1 $DIR/$tdir/striped_dir ||
17951                 error "create striped_dir failed"
17952
17953         $LFS setdirstripe -i0 $DIR/$tdir/striped_dir/dir0 ||
17954                 error "create dir0 fails"
17955         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir0)
17956         [ $stripe_index -eq 0 ] ||
17957                 error "dir0 expect index 0 got $stripe_index"
17958
17959         mkdir $DIR/$tdir/striped_dir/dir1 ||
17960                 error "create dir1 fails"
17961         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir1)
17962         [ $stripe_index -eq 1 ] ||
17963                 error "dir1 expect index 1 got $stripe_index"
17964
17965         #check default stripe count/stripe index
17966         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
17967         test_300_check_default_striped_dir normal_dir 1 0
17968         test_300_check_default_striped_dir normal_dir 2 1
17969         test_300_check_default_striped_dir normal_dir 2 -1
17970
17971         #delete default stripe information
17972         echo "delete default stripeEA"
17973         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
17974                 error "set default stripe on striped dir error"
17975
17976         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
17977         for dir in $(find $DIR/$tdir/normal_dir/*); do
17978                 stripe_count=$($LFS getdirstripe -c $dir)
17979                 [ $stripe_count -eq 0 ] ||
17980                         error "expect 1 get $stripe_count for $dir"
17981                 stripe_index=$($LFS getdirstripe -i $dir)
17982                 [ $stripe_index -eq 0 ] ||
17983                         error "expect 0 get $stripe_index for $dir"
17984         done
17985 }
17986 run_test 300g "check default striped directory for normal directory"
17987
17988 test_300h() {
17989         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17990         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17991                 skip "Need MDS version at least 2.7.55"
17992
17993         local dir
17994         local stripe_count
17995
17996         mkdir $DIR/$tdir
17997         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
17998                 error "set striped dir error"
17999
18000         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
18001         test_300_check_default_striped_dir striped_dir 1 0
18002         test_300_check_default_striped_dir striped_dir 2 1
18003         test_300_check_default_striped_dir striped_dir 2 -1
18004
18005         #delete default stripe information
18006         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
18007                 error "set default stripe on striped dir error"
18008
18009         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
18010         for dir in $(find $DIR/$tdir/striped_dir/*); do
18011                 stripe_count=$($LFS getdirstripe -c $dir)
18012                 [ $stripe_count -eq 0 ] ||
18013                         error "expect 1 get $stripe_count for $dir"
18014         done
18015 }
18016 run_test 300h "check default striped directory for striped directory"
18017
18018 test_300i() {
18019         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18020         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18021         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
18022                 skip "Need MDS version at least 2.7.55"
18023
18024         local stripe_count
18025         local file
18026
18027         mkdir $DIR/$tdir
18028
18029         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
18030                 error "set striped dir error"
18031
18032         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
18033                 error "create files under striped dir failed"
18034
18035         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir ||
18036                 error "set striped hashdir error"
18037
18038         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir/d0 ||
18039                 error "create dir0 under hash dir failed"
18040         $LFS setdirstripe -i0 -c$MDSCOUNT -H fnv_1a_64 $DIR/$tdir/hashdir/d1 ||
18041                 error "create dir1 under hash dir failed"
18042
18043         # unfortunately, we need to umount to clear dir layout cache for now
18044         # once we fully implement dir layout, we can drop this
18045         umount_client $MOUNT || error "umount failed"
18046         mount_client $MOUNT || error "mount failed"
18047
18048         $LFS find -H fnv_1a_64 $DIR/$tdir/hashdir
18049         local dircnt=$($LFS find -H fnv_1a_64 $DIR/$tdir/hashdir | wc -l)
18050         [ $dircnt -eq 1 ] || error "lfs find striped dir got:$dircnt,except:1"
18051
18052         #set the stripe to be unknown hash type
18053         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
18054         $LCTL set_param fail_loc=0x1901
18055         for ((i = 0; i < 10; i++)); do
18056                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
18057                         error "stat f-$i failed"
18058                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
18059         done
18060
18061         touch $DIR/$tdir/striped_dir/f0 &&
18062                 error "create under striped dir with unknown hash should fail"
18063
18064         $LCTL set_param fail_loc=0
18065
18066         umount_client $MOUNT || error "umount failed"
18067         mount_client $MOUNT || error "mount failed"
18068
18069         return 0
18070 }
18071 run_test 300i "client handle unknown hash type striped directory"
18072
18073 test_300j() {
18074         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18075         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18076         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
18077                 skip "Need MDS version at least 2.7.55"
18078
18079         local stripe_count
18080         local file
18081
18082         mkdir $DIR/$tdir
18083
18084         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
18085         $LCTL set_param fail_loc=0x1702
18086         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
18087                 error "set striped dir error"
18088
18089         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
18090                 error "create files under striped dir failed"
18091
18092         $LCTL set_param fail_loc=0
18093
18094         rm -rf $DIR/$tdir || error "unlink striped dir fails"
18095
18096         return 0
18097 }
18098 run_test 300j "test large update record"
18099
18100 test_300k() {
18101         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18102         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18103         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
18104                 skip "Need MDS version at least 2.7.55"
18105
18106         local stripe_count
18107         local file
18108
18109         mkdir $DIR/$tdir
18110
18111         #define OBD_FAIL_LARGE_STRIPE   0x1703
18112         $LCTL set_param fail_loc=0x1703
18113         $LFS setdirstripe -i 0 -c192 $DIR/$tdir/striped_dir ||
18114                 error "set striped dir error"
18115         $LCTL set_param fail_loc=0
18116
18117         $LFS getdirstripe $DIR/$tdir/striped_dir ||
18118                 error "getstripeddir fails"
18119         rm -rf $DIR/$tdir/striped_dir ||
18120                 error "unlink striped dir fails"
18121
18122         return 0
18123 }
18124 run_test 300k "test large striped directory"
18125
18126 test_300l() {
18127         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18128         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18129         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
18130                 skip "Need MDS version at least 2.7.55"
18131
18132         local stripe_index
18133
18134         test_mkdir -p $DIR/$tdir/striped_dir
18135         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
18136                         error "chown $RUNAS_ID failed"
18137         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
18138                 error "set default striped dir failed"
18139
18140         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
18141         $LCTL set_param fail_loc=0x80000158
18142         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
18143
18144         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
18145         [ $stripe_index -eq 1 ] ||
18146                 error "expect 1 get $stripe_index for $dir"
18147 }
18148 run_test 300l "non-root user to create dir under striped dir with stale layout"
18149
18150 test_300m() {
18151         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18152         [ $MDSCOUNT -ge 2 ] && skip_env "Only for single MDT"
18153         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
18154                 skip "Need MDS version at least 2.7.55"
18155
18156         mkdir -p $DIR/$tdir/striped_dir
18157         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
18158                 error "set default stripes dir error"
18159
18160         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
18161
18162         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
18163         [ $stripe_count -eq 0 ] ||
18164                         error "expect 0 get $stripe_count for a"
18165
18166         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
18167                 error "set default stripes dir error"
18168
18169         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
18170
18171         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
18172         [ $stripe_count -eq 0 ] ||
18173                         error "expect 0 get $stripe_count for b"
18174
18175         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
18176                 error "set default stripes dir error"
18177
18178         mkdir $DIR/$tdir/striped_dir/c &&
18179                 error "default stripe_index is invalid, mkdir c should fails"
18180
18181         rm -rf $DIR/$tdir || error "rmdir fails"
18182 }
18183 run_test 300m "setstriped directory on single MDT FS"
18184
18185 cleanup_300n() {
18186         local list=$(comma_list $(mdts_nodes))
18187
18188         trap 0
18189         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
18190 }
18191
18192 test_300n() {
18193         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18194         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18195         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
18196                 skip "Need MDS version at least 2.7.55"
18197         remote_mds_nodsh && skip "remote MDS with nodsh"
18198
18199         local stripe_index
18200         local list=$(comma_list $(mdts_nodes))
18201
18202         trap cleanup_300n RETURN EXIT
18203         mkdir -p $DIR/$tdir
18204         chmod 777 $DIR/$tdir
18205         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
18206                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
18207                 error "create striped dir succeeds with gid=0"
18208
18209         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
18210         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
18211                 error "create striped dir fails with gid=-1"
18212
18213         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
18214         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
18215                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
18216                 error "set default striped dir succeeds with gid=0"
18217
18218
18219         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
18220         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
18221                 error "set default striped dir fails with gid=-1"
18222
18223
18224         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
18225         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
18226                                         error "create test_dir fails"
18227         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
18228                                         error "create test_dir1 fails"
18229         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
18230                                         error "create test_dir2 fails"
18231         cleanup_300n
18232 }
18233 run_test 300n "non-root user to create dir under striped dir with default EA"
18234
18235 test_300o() {
18236         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18237         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18238         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
18239                 skip "Need MDS version at least 2.7.55"
18240
18241         local numfree1
18242         local numfree2
18243
18244         mkdir -p $DIR/$tdir
18245
18246         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
18247         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
18248         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
18249                 skip "not enough free inodes $numfree1 $numfree2"
18250         fi
18251
18252         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
18253         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
18254         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
18255                 skip "not enough free space $numfree1 $numfree2"
18256         fi
18257
18258         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
18259                 error "setdirstripe fails"
18260
18261         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
18262                 error "create dirs fails"
18263
18264         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
18265         ls $DIR/$tdir/striped_dir > /dev/null ||
18266                 error "ls striped dir fails"
18267         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
18268                 error "unlink big striped dir fails"
18269 }
18270 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
18271
18272 test_300p() {
18273         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18274         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18275         remote_mds_nodsh && skip "remote MDS with nodsh"
18276
18277         mkdir -p $DIR/$tdir
18278
18279         #define OBD_FAIL_OUT_ENOSPC     0x1704
18280         do_facet mds2 lctl set_param fail_loc=0x80001704
18281         $LFS setdirstripe -i 0 -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 \
18282                  && error "create striped directory should fail"
18283
18284         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
18285
18286         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
18287         true
18288 }
18289 run_test 300p "create striped directory without space"
18290
18291 test_300q() {
18292         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18293         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18294
18295         local fd=$(free_fd)
18296         local cmd="exec $fd<$tdir"
18297         cd $DIR
18298         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
18299         eval $cmd
18300         cmd="exec $fd<&-"
18301         trap "eval $cmd" EXIT
18302         cd $tdir || error "cd $tdir fails"
18303         rmdir  ../$tdir || error "rmdir $tdir fails"
18304         mkdir local_dir && error "create dir succeeds"
18305         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
18306         eval $cmd
18307         return 0
18308 }
18309 run_test 300q "create remote directory under orphan directory"
18310
18311 test_300r() {
18312         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
18313                 skip "Need MDS version at least 2.7.55" && return
18314         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
18315
18316         mkdir $DIR/$tdir
18317
18318         $LFS setdirstripe -i 0 -c -1 $DIR/$tdir/striped_dir ||
18319                 error "set striped dir error"
18320
18321         $LFS getdirstripe $DIR/$tdir/striped_dir ||
18322                 error "getstripeddir fails"
18323
18324         local stripe_count
18325         stripe_count=$($LFS getdirstripe $DIR/$tdir/striped_dir |
18326                       awk '/lmv_stripe_count:/ { print $2 }')
18327
18328         [ $MDSCOUNT -ne $stripe_count ] &&
18329                 error "wrong stripe count $stripe_count expected $MDSCOUNT"
18330
18331         rm -rf $DIR/$tdir/striped_dir ||
18332                 error "unlink striped dir fails"
18333 }
18334 run_test 300r "test -1 striped directory"
18335
18336 prepare_remote_file() {
18337         mkdir $DIR/$tdir/src_dir ||
18338                 error "create remote source failed"
18339
18340         cp /etc/hosts $DIR/$tdir/src_dir/a ||
18341                  error "cp to remote source failed"
18342         touch $DIR/$tdir/src_dir/a
18343
18344         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
18345                 error "create remote target dir failed"
18346
18347         touch $DIR/$tdir/tgt_dir/b
18348
18349         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
18350                 error "rename dir cross MDT failed!"
18351
18352         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
18353                 error "src_child still exists after rename"
18354
18355         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
18356                 error "missing file(a) after rename"
18357
18358         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
18359                 error "diff after rename"
18360 }
18361
18362 test_310a() {
18363         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 4 MDTs"
18364         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18365
18366         local remote_file=$DIR/$tdir/tgt_dir/b
18367
18368         mkdir -p $DIR/$tdir
18369
18370         prepare_remote_file || error "prepare remote file failed"
18371
18372         #open-unlink file
18373         $OPENUNLINK $remote_file $remote_file ||
18374                 error "openunlink $remote_file failed"
18375         $CHECKSTAT -a $remote_file || error "$remote_file exists"
18376 }
18377 run_test 310a "open unlink remote file"
18378
18379 test_310b() {
18380         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 4 MDTs"
18381         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18382
18383         local remote_file=$DIR/$tdir/tgt_dir/b
18384
18385         mkdir -p $DIR/$tdir
18386
18387         prepare_remote_file || error "prepare remote file failed"
18388
18389         ln $remote_file $DIR/$tfile || error "link failed for remote file"
18390         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
18391         $CHECKSTAT -t file $remote_file || error "check file failed"
18392 }
18393 run_test 310b "unlink remote file with multiple links while open"
18394
18395 test_310c() {
18396         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18397         [[ $MDSCOUNT -lt 4 ]] && skip_env "needs >= 4 MDTs"
18398
18399         local remote_file=$DIR/$tdir/tgt_dir/b
18400
18401         mkdir -p $DIR/$tdir
18402
18403         prepare_remote_file || error "prepare remote file failed"
18404
18405         ln $remote_file $DIR/$tfile || error "link failed for remote file"
18406         multiop_bg_pause $remote_file O_uc ||
18407                         error "mulitop failed for remote file"
18408         MULTIPID=$!
18409         $MULTIOP $DIR/$tfile Ouc
18410         kill -USR1 $MULTIPID
18411         wait $MULTIPID
18412 }
18413 run_test 310c "open-unlink remote file with multiple links"
18414
18415 #LU-4825
18416 test_311() {
18417         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18418         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
18419         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.54) ] &&
18420                 skip "lustre < 2.8.54 does not contain LU-4825 fix"
18421         remote_mds_nodsh && skip "remote MDS with nodsh"
18422
18423         local old_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
18424
18425         mkdir -p $DIR/$tdir
18426         $LFS setstripe -i 0 -c 1 $DIR/$tdir
18427         createmany -o $DIR/$tdir/$tfile. 1000
18428
18429         # statfs data is not real time, let's just calculate it
18430         old_iused=$((old_iused + 1000))
18431
18432         local count=$(do_facet $SINGLEMDS "lctl get_param -n \
18433                         osp.*OST0000*MDT0000.create_count")
18434         local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
18435                                 osp.*OST0000*MDT0000.max_create_count")
18436         for idx in $(seq $MDSCOUNT); do
18437                 do_facet mds$idx "lctl set_param -n \
18438                         osp.*OST0000*MDT000?.max_create_count=0"
18439         done
18440
18441         $LFS setstripe -i 0 $DIR/$tdir/$tfile || error "setstripe failed"
18442         local index=$($LFS getstripe -i $DIR/$tdir/$tfile)
18443         [ $index -ne 0 ] || error "$tfile stripe index is 0"
18444
18445         unlinkmany $DIR/$tdir/$tfile. 1000
18446
18447         for idx in $(seq $MDSCOUNT); do
18448                 do_facet mds$idx "lctl set_param -n \
18449                         osp.*OST0000*MDT000?.max_create_count=$max_count"
18450                 do_facet mds$idx "lctl set_param -n \
18451                         osp.*OST0000*MDT000?.create_count=$count"
18452         done
18453
18454         local new_iused
18455         for i in $(seq 120); do
18456                 new_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
18457                 # system may be too busy to destroy all objs in time, use
18458                 # a somewhat small value to not fail autotest
18459                 [ $((old_iused - new_iused)) -gt 400 ] && break
18460                 sleep 1
18461         done
18462
18463         echo "waited $i sec, old Iused $old_iused, new Iused $new_iused"
18464         [ $((old_iused - new_iused)) -gt 400 ] ||
18465                 error "objs not destroyed after unlink"
18466 }
18467 run_test 311 "disable OSP precreate, and unlink should destroy objs"
18468
18469 zfs_oid_to_objid()
18470 {
18471         local ost=$1
18472         local objid=$2
18473
18474         local vdevdir=$(dirname $(facet_vdevice $ost))
18475         local cmd="$ZDB -e -p $vdevdir -ddddd $(facet_device $ost)"
18476         local zfs_zapid=$(do_facet $ost $cmd |
18477                           grep -w "/O/0/d$((objid%32))" -C 5 |
18478                           awk '/Object/{getline; print $1}')
18479         local zfs_objid=$(do_facet $ost $cmd $zfs_zapid |
18480                           awk "/$objid = /"'{printf $3}')
18481
18482         echo $zfs_objid
18483 }
18484
18485 zfs_object_blksz() {
18486         local ost=$1
18487         local objid=$2
18488
18489         local vdevdir=$(dirname $(facet_vdevice $ost))
18490         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
18491         local blksz=$(do_facet $ost $cmd $objid |
18492                       awk '/dblk/{getline; printf $4}')
18493
18494         case "${blksz: -1}" in
18495                 k|K) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024)) ;;
18496                 m|M) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024*1024)) ;;
18497                 *) ;;
18498         esac
18499
18500         echo $blksz
18501 }
18502
18503 test_312() { # LU-4856
18504         remote_ost_nodsh && skip "remote OST with nodsh"
18505         [ $(facet_fstype ost1) = "zfs" ] ||
18506                 skip_env "the test only applies to zfs"
18507
18508         local max_blksz=$(do_facet ost1 \
18509                           $ZFS get -p recordsize $(facet_device ost1) |
18510                           awk '!/VALUE/{print $3}')
18511
18512         # to make life a little bit easier
18513         $LFS mkdir -c 1 -i 0 $DIR/$tdir
18514         $LFS setstripe -c 1 -i 0 $DIR/$tdir
18515
18516         local tf=$DIR/$tdir/$tfile
18517         touch $tf
18518         local oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18519
18520         # Get ZFS object id
18521         local zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18522         # block size change by sequential overwrite
18523         local bs
18524
18525         for ((bs=$PAGE_SIZE; bs <= max_blksz; bs *= 4)) ; do
18526                 dd if=/dev/zero of=$tf bs=$bs count=1 oflag=sync conv=notrunc
18527
18528                 local blksz=$(zfs_object_blksz ost1 $zfs_objid)
18529                 [ $blksz -eq $bs ] || error "blksz error: $blksz, expected: $bs"
18530         done
18531         rm -f $tf
18532
18533         # block size change by sequential append write
18534         dd if=/dev/zero of=$tf bs=$PAGE_SIZE count=1 oflag=sync conv=notrunc
18535         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18536         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18537         local count
18538
18539         for ((count = 1; count < $((max_blksz / PAGE_SIZE)); count *= 2)); do
18540                 dd if=/dev/zero of=$tf bs=$PAGE_SIZE count=$count seek=$count \
18541                         oflag=sync conv=notrunc
18542
18543                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
18544                 [ $blksz -eq $((2 * count * PAGE_SIZE)) ] ||
18545                         error "blksz error, actual $blksz, " \
18546                                 "expected: 2 * $count * $PAGE_SIZE"
18547         done
18548         rm -f $tf
18549
18550         # random write
18551         touch $tf
18552         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18553         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18554
18555         dd if=/dev/zero of=$tf bs=1K count=1 oflag=sync conv=notrunc
18556         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18557         [ $blksz -eq $PAGE_SIZE ] ||
18558                 error "blksz error: $blksz, expected: $PAGE_SIZE"
18559
18560         dd if=/dev/zero of=$tf bs=64K count=1 oflag=sync conv=notrunc seek=128
18561         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18562         [ $blksz -eq 65536 ] || error "blksz error: $blksz, expected: 64k"
18563
18564         dd if=/dev/zero of=$tf bs=1M count=1 oflag=sync conv=notrunc
18565         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18566         [ $blksz -eq 65536 ] || error "rewrite error: $blksz, expected: 64k"
18567 }
18568 run_test 312 "make sure ZFS adjusts its block size by write pattern"
18569
18570 test_313() {
18571         remote_ost_nodsh && skip "remote OST with nodsh"
18572
18573         local file=$DIR/$tfile
18574
18575         rm -f $file
18576         $LFS setstripe -c 1 -i 0 $file || error "setstripe failed"
18577
18578         # define OBD_FAIL_TGT_RCVD_EIO           0x720
18579         do_facet ost1 "$LCTL set_param fail_loc=0x720"
18580         dd if=/dev/zero of=$file bs=$PAGE_SIZE oflag=direct count=1 &&
18581                 error "write should failed"
18582         do_facet ost1 "$LCTL set_param fail_loc=0"
18583         rm -f $file
18584 }
18585 run_test 313 "io should fail after last_rcvd update fail"
18586
18587 test_314() {
18588         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
18589
18590         $LFS setstripe -c 2 -i 0 $DIR/$tfile || error "setstripe failed"
18591         do_facet ost1 "$LCTL set_param fail_loc=0x720"
18592         rm -f $DIR/$tfile
18593         wait_delete_completed
18594         do_facet ost1 "$LCTL set_param fail_loc=0"
18595 }
18596 run_test 314 "OSP shouldn't fail after last_rcvd update failure"
18597
18598 test_315() { # LU-618
18599         local file=$DIR/$tfile
18600         rm -f $file
18601
18602         $MULTIOP $file oO_CREAT:O_DIRECT:O_RDWR:w4063232c ||
18603                 error "multiop file write failed"
18604         $MULTIOP $file oO_RDONLY:r4063232_c &
18605         PID=$!
18606
18607         sleep 2
18608
18609         local rbytes=$(awk '/read_bytes/ { print $2 }' /proc/$PID/io)
18610         kill -USR1 $PID
18611
18612         [ $rbytes -gt 4000000 ] || error "read is not accounted ($rbytes)"
18613         rm -f $file
18614 }
18615 run_test 315 "read should be accounted"
18616
18617 test_316() {
18618         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
18619         large_xattr_enabled || skip_env "ea_inode feature disabled"
18620
18621         rm -rf $DIR/$tdir/d
18622         mkdir -p $DIR/$tdir/d
18623         chown nobody $DIR/$tdir/d
18624         touch $DIR/$tdir/d/file
18625
18626         $LFS mv -M1 $DIR/$tdir/d || error "lfs mv failed"
18627 }
18628 run_test 316 "lfs mv"
18629
18630 test_317() {
18631         local trunc_sz
18632         local grant_blk_size
18633
18634         if [ "$(facet_fstype $facet)" == "zfs" ]; then
18635                 skip "LU-10370: no implementation for ZFS" && return
18636         fi
18637
18638         stack_trap "rm -f $DIR/$tfile" EXIT
18639         grant_blk_size=$($LCTL get_param osc.$FSNAME*.import |
18640                         awk '/grant_block_size:/ { print $2; exit; }')
18641         #
18642         # Create File of size 5M. Truncate it to below size's and verify
18643         # blocks count.
18644         #
18645         dd if=/dev/zero of=$DIR/$tfile bs=5M count=1 conv=fsync ||
18646                 error "Create file : $DIR/$tfile"
18647
18648         for trunc_sz in 2097152 4097 4000 509 0; do
18649                 $TRUNCATE $DIR/$tfile $trunc_sz ||
18650                         error "truncate $tfile to $trunc_sz failed"
18651                 local sz=$(stat --format=%s $DIR/$tfile)
18652                 local blk=$(stat --format=%b $DIR/$tfile)
18653                 local trunc_blk=$((((trunc_sz + (grant_blk_size - 1) ) /
18654                                      grant_blk_size) * 8))
18655
18656                 if [[ $blk -ne $trunc_blk ]]; then
18657                         $(which stat) $DIR/$tfile
18658                         error "Expected Block $trunc_blk got $blk for $tfile"
18659                 fi
18660
18661                 $CHECKSTAT -s $trunc_sz $DIR/$tfile ||
18662                         error "Expected Size $trunc_sz got $sz for $tfile"
18663         done
18664
18665         #
18666         # sparse file test
18667         # Create file with a hole and write actual two blocks. Block count
18668         # must be 16.
18669         #
18670         dd if=/dev/zero of=$DIR/$tfile bs=$grant_blk_size count=2 seek=5 \
18671                 conv=fsync || error "Create file : $DIR/$tfile"
18672
18673         # Calculate the final truncate size.
18674         trunc_sz=$(($(stat --format=%s $DIR/$tfile) - (grant_blk_size + 1)))
18675
18676         #
18677         # truncate to size $trunc_sz bytes. Strip the last block
18678         # The block count must drop to 8
18679         #
18680         $TRUNCATE $DIR/$tfile $trunc_sz ||
18681                 error "truncate $tfile to $trunc_sz failed"
18682
18683         local trunc_bsz=$((grant_blk_size / $(stat --format=%B $DIR/$tfile)))
18684         sz=$(stat --format=%s $DIR/$tfile)
18685         blk=$(stat --format=%b $DIR/$tfile)
18686
18687         if [[ $blk -ne $trunc_bsz ]]; then
18688                 $(which stat) $DIR/$tfile
18689                 error "Expected Block $trunc_bsz got $blk for $tfile"
18690         fi
18691
18692         $CHECKSTAT -s $trunc_sz $DIR/$tfile ||
18693                 error "Expected Size $trunc_sz got $sz for $tfile"
18694 }
18695 run_test 317 "Verify blocks get correctly update after truncate"
18696
18697 test_fake_rw() {
18698         local read_write=$1
18699         if [ "$read_write" = "write" ]; then
18700                 local dd_cmd="dd if=/dev/zero of=$DIR/$tfile"
18701         elif [ "$read_write" = "read" ]; then
18702                 local dd_cmd="dd of=/dev/null if=$DIR/$tfile"
18703         else
18704                 error "argument error"
18705         fi
18706
18707         # turn off debug for performance testing
18708         local saved_debug=$($LCTL get_param -n debug)
18709         $LCTL set_param debug=0
18710
18711         $LFS setstripe -c 1 -i 0 $DIR/$tfile
18712
18713         # get ost1 size - lustre-OST0000
18714         local ost1_avail_size=$($LFS df | awk /${ost1_svc}/'{ print $4 }')
18715         local blocks=$((ost1_avail_size/2/1024)) # half avail space by megabytes
18716         [ $blocks -gt 1000 ] && blocks=1000 # 1G in maximum
18717
18718         if [ "$read_write" = "read" ]; then
18719                 truncate -s $(expr 1048576 \* $blocks) $DIR/$tfile
18720         fi
18721
18722         local start_time=$(date +%s.%N)
18723         $dd_cmd bs=1M count=$blocks oflag=sync ||
18724                 error "real dd $read_write error"
18725         local duration=$(bc <<< "$(date +%s.%N) - $start_time")
18726
18727         if [ "$read_write" = "write" ]; then
18728                 rm -f $DIR/$tfile
18729         fi
18730
18731         # define OBD_FAIL_OST_FAKE_RW           0x238
18732         do_facet ost1 $LCTL set_param fail_loc=0x238
18733
18734         local start_time=$(date +%s.%N)
18735         $dd_cmd bs=1M count=$blocks oflag=sync ||
18736                 error "fake dd $read_write error"
18737         local duration_fake=$(bc <<< "$(date +%s.%N) - $start_time")
18738
18739         if [ "$read_write" = "write" ]; then
18740                 # verify file size
18741                 cancel_lru_locks osc
18742                 $CHECKSTAT -t file -s $((blocks * 1024 * 1024)) $DIR/$tfile ||
18743                         error "$tfile size not $blocks MB"
18744         fi
18745         do_facet ost1 $LCTL set_param fail_loc=0
18746
18747         echo "fake $read_write $duration_fake vs. normal $read_write" \
18748                 "$duration in seconds"
18749         [ $(bc <<< "$duration_fake < $duration") -eq 1 ] ||
18750                 error_not_in_vm "fake write is slower"
18751
18752         $LCTL set_param -n debug="$saved_debug"
18753         rm -f $DIR/$tfile
18754 }
18755 test_399a() { # LU-7655 for OST fake write
18756         remote_ost_nodsh && skip "remote OST with nodsh"
18757
18758         test_fake_rw write
18759 }
18760 run_test 399a "fake write should not be slower than normal write"
18761
18762 test_399b() { # LU-8726 for OST fake read
18763         remote_ost_nodsh && skip "remote OST with nodsh"
18764         if [ "$(facet_fstype ost1)" != "ldiskfs" ]; then
18765                 skip_env "ldiskfs only test"
18766         fi
18767
18768         test_fake_rw read
18769 }
18770 run_test 399b "fake read should not be slower than normal read"
18771
18772 test_400a() { # LU-1606, was conf-sanity test_74
18773         if ! which $CC > /dev/null 2>&1; then
18774                 skip_env "$CC is not installed"
18775         fi
18776
18777         local extra_flags=''
18778         local out=$TMP/$tfile
18779         local prefix=/usr/include/lustre
18780         local prog
18781
18782         if ! [[ -d $prefix ]]; then
18783                 # Assume we're running in tree and fixup the include path.
18784                 extra_flags+=" -I$LUSTRE/../lnet/include/uapi -I$LUSTRE/include/uapi -I$LUSTRE/include"
18785                 extra_flags+=" -L$LUSTRE/utils/.lib"
18786         fi
18787
18788         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
18789                 $CC -Wall -Werror $extra_flags -o $out $prog -llustreapi ||
18790                         error "client api broken"
18791         done
18792         rm -f $out
18793 }
18794 run_test 400a "Lustre client api program can compile and link"
18795
18796 test_400b() { # LU-1606, LU-5011
18797         local header
18798         local out=$TMP/$tfile
18799         local prefix=/usr/include/linux/lustre
18800
18801         # We use a hard coded prefix so that this test will not fail
18802         # when run in tree. There are headers in lustre/include/lustre/
18803         # that are not packaged (like lustre_idl.h) and have more
18804         # complicated include dependencies (like config.h and lnet/types.h).
18805         # Since this test about correct packaging we just skip them when
18806         # they don't exist (see below) rather than try to fixup cppflags.
18807
18808         if ! which $CC > /dev/null 2>&1; then
18809                 skip_env "$CC is not installed"
18810         fi
18811
18812         for header in $prefix/*.h; do
18813                 if ! [[ -f "$header" ]]; then
18814                         continue
18815                 fi
18816
18817                 if [[ "$(basename $header)" == lustre_ioctl.h ]]; then
18818                         continue # lustre_ioctl.h is internal header
18819                 fi
18820
18821                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
18822                         error "cannot compile '$header'"
18823         done
18824         rm -f $out
18825 }
18826 run_test 400b "packaged headers can be compiled"
18827
18828 test_401a() { #LU-7437
18829         local printf_arg=$(find -printf 2>&1 | grep "unrecognized:")
18830         [ -n "$printf_arg" ] && skip_env "find does not support -printf"
18831
18832         #count the number of parameters by "list_param -R"
18833         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
18834         #count the number of parameters by listing proc files
18835         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
18836         echo "proc_dirs='$proc_dirs'"
18837         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
18838         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
18839                       sort -u | wc -l)
18840
18841         [ $params -eq $procs ] ||
18842                 error "found $params parameters vs. $procs proc files"
18843
18844         # test the list_param -D option only returns directories
18845         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
18846         #count the number of parameters by listing proc directories
18847         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
18848                 sort -u | wc -l)
18849
18850         [ $params -eq $procs ] ||
18851                 error "found $params parameters vs. $procs proc files"
18852 }
18853 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
18854
18855 test_401b() {
18856         local save=$($LCTL get_param -n jobid_var)
18857         local tmp=testing
18858
18859         $LCTL set_param foo=bar jobid_var=$tmp bar=baz &&
18860                 error "no error returned when setting bad parameters"
18861
18862         local jobid_new=$($LCTL get_param -n foe jobid_var baz)
18863         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
18864
18865         $LCTL set_param -n fog=bam jobid_var=$save bat=fog
18866         local jobid_old=$($LCTL get_param -n foe jobid_var bag)
18867         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
18868 }
18869 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
18870
18871 test_401c() {
18872         local jobid_var_old=$($LCTL get_param -n jobid_var)
18873         local jobid_var_new
18874
18875         $LCTL set_param jobid_var= &&
18876                 error "no error returned for 'set_param a='"
18877
18878         jobid_var_new=$($LCTL get_param -n jobid_var)
18879         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
18880                 error "jobid_var was changed by setting without value"
18881
18882         $LCTL set_param jobid_var &&
18883                 error "no error returned for 'set_param a'"
18884
18885         jobid_var_new=$($LCTL get_param -n jobid_var)
18886         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
18887                 error "jobid_var was changed by setting without value"
18888 }
18889 run_test 401c "Verify 'lctl set_param' without value fails in either format."
18890
18891 test_401d() {
18892         local jobid_var_old=$($LCTL get_param -n jobid_var)
18893         local jobid_var_new
18894         local new_value="foo=bar"
18895
18896         $LCTL set_param jobid_var=$new_value ||
18897                 error "'set_param a=b' did not accept a value containing '='"
18898
18899         jobid_var_new=$($LCTL get_param -n jobid_var)
18900         [[ "$jobid_var_new" == "$new_value" ]] ||
18901                 error "'set_param a=b' failed on a value containing '='"
18902
18903         # Reset the jobid_var to test the other format
18904         $LCTL set_param jobid_var=$jobid_var_old
18905         jobid_var_new=$($LCTL get_param -n jobid_var)
18906         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
18907                 error "failed to reset jobid_var"
18908
18909         $LCTL set_param jobid_var $new_value ||
18910                 error "'set_param a b' did not accept a value containing '='"
18911
18912         jobid_var_new=$($LCTL get_param -n jobid_var)
18913         [[ "$jobid_var_new" == "$new_value" ]] ||
18914                 error "'set_param a b' failed on a value containing '='"
18915
18916         $LCTL set_param jobid_var $jobid_var_old
18917         jobid_var_new=$($LCTL get_param -n jobid_var)
18918         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
18919                 error "failed to reset jobid_var"
18920 }
18921 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
18922
18923 test_402() {
18924         local server_version=$(lustre_version_code $SINGLEMDS)
18925         [[ $server_version -ge $(version_code 2.7.66) ]] ||
18926         [[ $server_version -ge $(version_code 2.7.18.4) &&
18927                 $server_version -lt $(version_code 2.7.50) ]] ||
18928         [[ $server_version -ge $(version_code 2.7.2) &&
18929                 $server_version -lt $(version_code 2.7.11) ]] ||
18930                 skip "Need MDS version 2.7.2+ or 2.7.18.4+ or 2.7.66+"
18931         remote_mds_nodsh && skip "remote MDS with nodsh"
18932
18933         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
18934 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
18935         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
18936         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
18937                 echo "Touch failed - OK"
18938 }
18939 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
18940
18941 test_403() {
18942         local file1=$DIR/$tfile.1
18943         local file2=$DIR/$tfile.2
18944         local tfile=$TMP/$tfile
18945
18946         rm -f $file1 $file2 $tfile
18947
18948         touch $file1
18949         ln $file1 $file2
18950
18951         # 30 sec OBD_TIMEOUT in ll_getattr()
18952         # right before populating st_nlink
18953         $LCTL set_param fail_loc=0x80001409
18954         stat -c %h $file1 > $tfile &
18955
18956         # create an alias, drop all locks and reclaim the dentry
18957         < $file2
18958         cancel_lru_locks mdc
18959         cancel_lru_locks osc
18960         sysctl -w vm.drop_caches=2
18961
18962         wait
18963
18964         [ $(cat $tfile) -gt 0 ] || error "wrong nlink count: $(cat $tfile)"
18965
18966         rm -f $tfile $file1 $file2
18967 }
18968 run_test 403 "i_nlink should not drop to zero due to aliasing"
18969
18970 test_404() { # LU-6601
18971         local server_version=$(lustre_version_code $SINGLEMDS)
18972         [[ $server_version -ge $(version_code 2.8.53) ]] ||
18973                 skip "Need server version newer than 2.8.52"
18974         remote_mds_nodsh && skip "remote MDS with nodsh"
18975
18976         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
18977                 awk '/osp .*-osc-MDT/ { print $4}')
18978
18979         local osp
18980         for osp in $mosps; do
18981                 echo "Deactivate: " $osp
18982                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
18983                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
18984                         awk -vp=$osp '$4 == p { print $2 }')
18985                 [ $stat = IN ] || {
18986                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
18987                         error "deactivate error"
18988                 }
18989                 echo "Activate: " $osp
18990                 do_facet $SINGLEMDS $LCTL --device %$osp activate
18991                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
18992                         awk -vp=$osp '$4 == p { print $2 }')
18993                 [ $stat = UP ] || {
18994                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
18995                         error "activate error"
18996                 }
18997         done
18998 }
18999 run_test 404 "validate manual {de}activated works properly for OSPs"
19000
19001 test_405() {
19002         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) -o \
19003         [ $(lustre_version_code client) -lt $(version_code 2.6.99) ] &&
19004                 skip "Layout swap lock is not supported"
19005         check_swap_layouts_support
19006
19007         test_mkdir $DIR/$tdir
19008         swap_lock_test -d $DIR/$tdir ||
19009                 error "One layout swap locked test failed"
19010 }
19011 run_test 405 "Various layout swap lock tests"
19012
19013 test_406() {
19014         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19015         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
19016         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
19017         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19018         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.50) ] &&
19019                 skip "Need MDS version at least 2.8.50"
19020
19021         local def_stripe_size=$($LFS getstripe -S $MOUNT)
19022         local test_pool=$TESTNAME
19023
19024         if ! combined_mgs_mds ; then
19025                 mount_mgs_client
19026         fi
19027         pool_add $test_pool || error "pool_add failed"
19028         pool_add_targets $test_pool 0 $(($OSTCOUNT - 1)) 1 ||
19029                 error "pool_add_targets failed"
19030
19031         save_layout_restore_at_exit $MOUNT
19032
19033         # parent set default stripe count only, child will stripe from both
19034         # parent and fs default
19035         $LFS setstripe -c 1 -i 1 -S $((def_stripe_size * 2)) -p $test_pool $MOUNT ||
19036                 error "setstripe $MOUNT failed"
19037         $LFS mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
19038         $LFS setstripe -c $OSTCOUNT $DIR/$tdir || error "setstripe $tdir failed"
19039         for i in $(seq 10); do
19040                 local f=$DIR/$tdir/$tfile.$i
19041                 touch $f || error "touch failed"
19042                 local count=$($LFS getstripe -c $f)
19043                 [ $count -eq $OSTCOUNT ] ||
19044                         error "$f stripe count $count != $OSTCOUNT"
19045                 local offset=$($LFS getstripe -i $f)
19046                 [ $offset -eq 1 ] || error "$f stripe offset $offset != 1"
19047                 local size=$($LFS getstripe -S $f)
19048                 [ $size -eq $((def_stripe_size * 2)) ] ||
19049                         error "$f stripe size $size != $((def_stripe_size * 2))"
19050                 local pool=$($LFS getstripe -p $f)
19051                 [ $pool == $test_pool ] || error "$f pool $pool != $test_pool"
19052         done
19053
19054         # change fs default striping, delete parent default striping, now child
19055         # will stripe from new fs default striping only
19056         $LFS setstripe -c 1 -S $def_stripe_size -i 0 $MOUNT ||
19057                 error "change $MOUNT default stripe failed"
19058         $LFS setstripe -c 0 $DIR/$tdir ||
19059                 error "delete $tdir default stripe failed"
19060         for i in $(seq 11 20); do
19061                 local f=$DIR/$tdir/$tfile.$i
19062                 touch $f || error "touch $f failed"
19063                 local count=$($LFS getstripe -c $f)
19064                 [ $count -eq 1 ] || error "$f stripe count $count != 1"
19065                 local offset=$($LFS getstripe -i $f)
19066                 [ $offset -eq 0 ] || error "$f stripe offset $offset != 0"
19067                 local size=$($LFS getstripe -S $f)
19068                 [ $size -eq $def_stripe_size ] ||
19069                         error "$f stripe size $size != $def_stripe_size"
19070                 local pool=$($LFS getstripe -p $f)
19071                 [ $pool == $test_pool ] || error "$f pool $pool isn't set"
19072         done
19073
19074         unlinkmany $DIR/$tdir/$tfile. 1 20
19075
19076         local f=$DIR/$tdir/$tfile
19077         pool_remove_all_targets $test_pool $f
19078         pool_remove $test_pool $f
19079
19080         if ! combined_mgs_mds ; then
19081                 umount_mgs_client
19082         fi
19083 }
19084 run_test 406 "DNE support fs default striping"
19085
19086 test_407() {
19087         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19088         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
19089                 skip "Need MDS version at least 2.8.55"
19090         remote_mds_nodsh && skip "remote MDS with nodsh"
19091
19092         $LFS mkdir -i 0 -c 1 $DIR/$tdir.0 ||
19093                 error "$LFS mkdir -i 0 -c 1 $tdir.0 failed"
19094         $LFS mkdir -i 1 -c 1 $DIR/$tdir.1 ||
19095                 error "$LFS mkdir -i 1 -c 1 $tdir.1 failed"
19096         touch $DIR/$tdir.0/$tfile.0 || error "touch $tdir.0/$tfile.0 failed"
19097
19098         #define OBD_FAIL_DT_TXN_STOP    0x2019
19099         for idx in $(seq $MDSCOUNT); do
19100                 do_facet mds$idx "lctl set_param fail_loc=0x2019"
19101         done
19102         $LFS mkdir -c 2 $DIR/$tdir && error "$LFS mkdir -c 2 $tdir should fail"
19103         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1/$tfile.1 &&
19104                 error "mv $tdir.0/$tfile.0 $tdir.1/$tfile.1 should fail"
19105         true
19106 }
19107 run_test 407 "transaction fail should cause operation fail"
19108
19109 test_408() {
19110         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1 oflag=direct
19111
19112         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
19113         lctl set_param fail_loc=0x8000040a
19114         # let ll_prepare_partial_page() fail
19115         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 conv=notrunc || true
19116
19117         rm -f $DIR/$tfile
19118
19119         # create at least 100 unused inodes so that
19120         # shrink_icache_memory(0) should not return 0
19121         touch $DIR/$tfile-{0..100}
19122         rm -f $DIR/$tfile-{0..100}
19123         sync
19124
19125         echo 2 > /proc/sys/vm/drop_caches
19126 }
19127 run_test 408 "drop_caches should not hang due to page leaks"
19128
19129 test_409()
19130 {
19131         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19132         check_mount_and_prep
19133
19134         mkdir -p $DIR/$tdir || error "(0) Fail to mkdir"
19135         $LFS mkdir -i 1 -c 2 $DIR/$tdir/foo || error "(1) Fail to mkdir"
19136         touch $DIR/$tdir/guard || error "(2) Fail to create"
19137
19138         local PREFIX=$(str_repeat 'A' 128)
19139         echo "Create 1K hard links start at $(date)"
19140         createmany -l $DIR/$tdir/guard $DIR/$tdir/foo/${PREFIX}_ 1000 ||
19141                 error "(3) Fail to hard link"
19142
19143         echo "Links count should be right although linkEA overflow"
19144         stat $DIR/$tdir/guard || error "(4) Fail to stat"
19145         local linkcount=$(stat --format=%h $DIR/$tdir/guard)
19146         [ $linkcount -eq 1001 ] ||
19147                 error "(5) Unexpected hard links count: $linkcount"
19148
19149         echo "List all links start at $(date)"
19150         ls -l $DIR/$tdir/foo > /dev/null ||
19151                 error "(6) Fail to list $DIR/$tdir/foo"
19152
19153         echo "Unlink hard links start at $(date)"
19154         unlinkmany $DIR/$tdir/foo/${PREFIX}_ 1000 ||
19155                 error "(7) Fail to unlink"
19156 }
19157 run_test 409 "Large amount of cross-MDTs hard links on the same file"
19158
19159 test_410()
19160 {
19161         [[ $(lustre_version_code client) -lt $(version_code 2.9.59) ]] &&
19162                 skip "Need client version at least 2.9.59"
19163
19164         # Create a file, and stat it from the kernel
19165         local testfile=$DIR/$tfile
19166         touch $testfile
19167
19168         local run_id=$RANDOM
19169         local my_ino=$(stat --format "%i" $testfile)
19170
19171         # Try to insert the module. This will always fail as the
19172         # module is designed to not be inserted.
19173         insmod $LUSTRE/tests/kernel/kinode.ko run_id=$run_id fname=$testfile \
19174             &> /dev/null
19175
19176         # Anything but success is a test failure
19177         dmesg | grep -q \
19178             "lustre_kinode_$run_id: inode numbers are identical: $my_ino" ||
19179             error "no inode match"
19180 }
19181 run_test 410 "Test inode number returned from kernel thread"
19182
19183 cleanup_test411_cgroup() {
19184         trap 0
19185         rmdir "$1"
19186 }
19187
19188 test_411() {
19189         local cg_basedir=/sys/fs/cgroup/memory
19190         # LU-9966
19191         test -f "$cg_basedir/memory.kmem.limit_in_bytes" ||
19192                 skip "no setup for cgroup"
19193
19194         dd if=/dev/zero of=$DIR/$tfile bs=1M count=100 conv=fsync ||
19195                 error "test file creation failed"
19196         cancel_lru_locks osc
19197
19198         # Create a very small memory cgroup to force a slab allocation error
19199         local cgdir=$cg_basedir/osc_slab_alloc
19200         mkdir $cgdir || error "cgroup mkdir '$cgdir' failed"
19201         trap "cleanup_test411_cgroup $cgdir" EXIT
19202         echo 2M > $cgdir/memory.kmem.limit_in_bytes
19203         echo 1M > $cgdir/memory.limit_in_bytes
19204
19205         # Should not LBUG, just be killed by oom-killer
19206         # dd will return 0 even allocation failure in some environment.
19207         # So don't check return value
19208         sh -c "echo \$$ > $cgdir/tasks && dd if=$DIR/$tfile of=/dev/null"
19209         cleanup_test411_cgroup $cgdir
19210
19211         return 0
19212 }
19213 run_test 411 "Slab allocation error with cgroup does not LBUG"
19214
19215 test_412() {
19216         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19217         if [ $(lustre_version_code mds1) -lt $(version_code 2.10.55) ]; then
19218                 skip "Need server version at least 2.10.55"
19219         fi
19220
19221         $LFS mkdir -i $((MDSCOUNT - 1)),$((MDSCOUNT - 2)) $DIR/$tdir ||
19222                 error "mkdir failed"
19223         $LFS getdirstripe $DIR/$tdir
19224         local stripe_index=$($LFS getdirstripe -i $DIR/$tdir)
19225         [ $stripe_index -eq $((MDSCOUNT - 1)) ] ||
19226                 error "expect $((MDSCOUT - 1)) get $stripe_index"
19227         local stripe_count=$($LFS getdirstripe -T $DIR/$tdir)
19228         [ $stripe_count -eq 2 ] ||
19229                 error "expect 2 get $stripe_count"
19230 }
19231 run_test 412 "mkdir on specific MDTs"
19232
19233 test_413() {
19234         [ $MDSCOUNT -lt 2 ] &&
19235                 skip "We need at least 2 MDTs for this test"
19236
19237         if [ $(lustre_version_code mds1) -lt $(version_code 2.10.55) ]; then
19238                 skip "Need server version at least 2.10.55"
19239         fi
19240
19241         mkdir $DIR/$tdir || error "mkdir failed"
19242
19243         # find MDT that is the most full
19244         local max=$($LFS df | grep MDT |
19245                 awk 'BEGIN { a=0 }
19246                         { sub("%", "", $5)
19247                           if (0+$5 >= a)
19248                           {
19249                                 a = $5
19250                                 b = $6
19251                           }
19252                         }
19253                      END { split(b, c, ":")
19254                            sub("]", "", c[2])
19255                            print c[2]
19256                          }')
19257
19258         for i in $(seq $((MDSCOUNT - 1))); do
19259                 $LFS mkdir -c $i $DIR/$tdir/d$i ||
19260                         error "mkdir d$i failed"
19261                 $LFS getdirstripe $DIR/$tdir/d$i
19262                 local stripe_index=$($LFS getdirstripe -i $DIR/$tdir/d$i)
19263                 [ $stripe_index -ne $max ] ||
19264                         error "don't expect $max"
19265         done
19266 }
19267 run_test 413 "mkdir on less full MDTs"
19268
19269 test_414() {
19270 #define OBD_FAIL_PTLRPC_BULK_ATTACH      0x521
19271         $LCTL set_param fail_loc=0x80000521
19272         dd if=/dev/zero of=$DIR/$tfile bs=2M count=1 oflag=sync
19273         rm -f $DIR/$tfile
19274 }
19275 run_test 414 "simulate ENOMEM in ptlrpc_register_bulk()"
19276
19277 test_415() {
19278         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19279         [ $(lustre_version_code mds1) -lt $(version_code 2.11.52) ] &&
19280                 skip "Need server version at least 2.11.52"
19281
19282         # LU-11102
19283         local total
19284         local setattr_pid
19285         local start_time
19286         local end_time
19287         local duration
19288
19289         total=500
19290         # this test may be slow on ZFS
19291         [ "$(facet_fstype mds1)" == "zfs" ] && total=100
19292
19293         # though this test is designed for striped directory, let's test normal
19294         # directory too since lock is always saved as CoS lock.
19295         test_mkdir $DIR/$tdir || error "mkdir $tdir"
19296         createmany -o $DIR/$tdir/$tfile. $total || error "createmany"
19297
19298         (
19299                 while true; do
19300                         touch $DIR/$tdir
19301                 done
19302         ) &
19303         setattr_pid=$!
19304
19305         start_time=$(date +%s)
19306         for i in $(seq $total); do
19307                 mrename $DIR/$tdir/$tfile.$i $DIR/$tdir/$tfile-new.$i \
19308                         > /dev/null
19309         done
19310         end_time=$(date +%s)
19311         duration=$((end_time - start_time))
19312
19313         kill -9 $setattr_pid
19314
19315         echo "rename $total files took $duration sec"
19316         [ $duration -lt 100 ] || error "rename took $duration sec"
19317 }
19318 run_test 415 "lock revoke is not missing"
19319
19320 test_416() {
19321         [ $(lustre_version_code mds1) -lt $(version_code 2.11.55) ] &&
19322                 skip "Need server version at least 2.11.55"
19323
19324         # define OBD_FAIL_OSD_TXN_START    0x19a
19325         do_facet mds1 lctl set_param fail_loc=0x19a
19326
19327         lfs mkdir -c $MDSCOUNT $DIR/$tdir
19328
19329         true
19330 }
19331 run_test 416 "transaction start failure won't cause system hung"
19332
19333 cleanup_417() {
19334         trap 0
19335         do_nodes $(comma_list $(mdts_nodes)) \
19336                 "$LCTL set_param -n mdt.*MDT*.enable_dir_migration=1"
19337         do_nodes $(comma_list $(mdts_nodes)) \
19338                 "$LCTL set_param -n mdt.*MDT*.enable_remote_dir=1"
19339         do_nodes $(comma_list $(mdts_nodes)) \
19340                 "$LCTL set_param -n mdt.*MDT*.enable_striped_dir=1"
19341 }
19342
19343 test_417() {
19344         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
19345         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.56) ]] &&
19346                 skip "Need MDS version at least 2.11.56" && return
19347
19348         trap cleanup_417 RETURN EXIT
19349
19350         $LFS mkdir -i 1 $DIR/$tdir.1 || error "create remote dir $tdir.1 failed"
19351         do_nodes $(comma_list $(mdts_nodes)) \
19352                 "$LCTL set_param -n mdt.*MDT*.enable_dir_migration=0"
19353         $LFS migrate -m 0 $DIR/$tdir.1 &&
19354                 error "migrate dir $tdir.1 should fail"
19355
19356         do_nodes $(comma_list $(mdts_nodes)) \
19357                 "$LCTL set_param -n mdt.*MDT*.enable_remote_dir=0"
19358         $LFS mkdir -i 1 $DIR/$tdir.2 &&
19359                 error "create remote dir $tdir.2 should fail"
19360
19361         do_nodes $(comma_list $(mdts_nodes)) \
19362                 "$LCTL set_param -n mdt.*MDT*.enable_striped_dir=0"
19363         $LFS mkdir -c 2 $DIR/$tdir.3 &&
19364                 error "create striped dir $tdir.3 should fail"
19365         true
19366 }
19367 run_test 417 "disable remote dir, striped dir and dir migration"
19368
19369 prep_801() {
19370         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
19371         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
19372                 skip "Need server version at least 2.9.55"
19373
19374         start_full_debug_logging
19375 }
19376
19377 post_801() {
19378         stop_full_debug_logging
19379 }
19380
19381 barrier_stat() {
19382         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
19383                 local st=$(do_facet mgs $LCTL barrier_stat $FSNAME |
19384                            awk '/The barrier for/ { print $7 }')
19385                 echo $st
19386         else
19387                 local st=$(do_facet mgs $LCTL barrier_stat -s $FSNAME)
19388                 echo \'$st\'
19389         fi
19390 }
19391
19392 barrier_expired() {
19393         local expired
19394
19395         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
19396                 expired=$(do_facet mgs $LCTL barrier_stat $FSNAME |
19397                           awk '/will be expired/ { print $7 }')
19398         else
19399                 expired=$(do_facet mgs $LCTL barrier_stat -t $FSNAME)
19400         fi
19401
19402         echo $expired
19403 }
19404
19405 test_801a() {
19406         prep_801
19407
19408         echo "Start barrier_freeze at: $(date)"
19409         #define OBD_FAIL_BARRIER_DELAY          0x2202
19410         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
19411         do_facet mgs $LCTL barrier_freeze $FSNAME 10 &
19412
19413         sleep 2
19414         local b_status=$(barrier_stat)
19415         echo "Got barrier status at: $(date)"
19416         [ "$b_status" = "'freezing_p1'" ] ||
19417                 error "(1) unexpected barrier status $b_status"
19418
19419         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
19420         wait
19421         b_status=$(barrier_stat)
19422         [ "$b_status" = "'frozen'" ] ||
19423                 error "(2) unexpected barrier status $b_status"
19424
19425         local expired=$(barrier_expired)
19426         echo "sleep $((expired + 3)) seconds, then the barrier will be expired"
19427         sleep $((expired + 3))
19428
19429         b_status=$(barrier_stat)
19430         [ "$b_status" = "'expired'" ] ||
19431                 error "(3) unexpected barrier status $b_status"
19432
19433         do_facet mgs $LCTL barrier_freeze $FSNAME 10 ||
19434                 error "(4) fail to freeze barrier"
19435
19436         b_status=$(barrier_stat)
19437         [ "$b_status" = "'frozen'" ] ||
19438                 error "(5) unexpected barrier status $b_status"
19439
19440         echo "Start barrier_thaw at: $(date)"
19441         #define OBD_FAIL_BARRIER_DELAY          0x2202
19442         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
19443         do_facet mgs $LCTL barrier_thaw $FSNAME &
19444
19445         sleep 2
19446         b_status=$(barrier_stat)
19447         echo "Got barrier status at: $(date)"
19448         [ "$b_status" = "'thawing'" ] ||
19449                 error "(6) unexpected barrier status $b_status"
19450
19451         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
19452         wait
19453         b_status=$(barrier_stat)
19454         [ "$b_status" = "'thawed'" ] ||
19455                 error "(7) unexpected barrier status $b_status"
19456
19457         #define OBD_FAIL_BARRIER_FAILURE        0x2203
19458         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2203
19459         do_facet mgs $LCTL barrier_freeze $FSNAME
19460
19461         b_status=$(barrier_stat)
19462         [ "$b_status" = "'failed'" ] ||
19463                 error "(8) unexpected barrier status $b_status"
19464
19465         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
19466         do_facet mgs $LCTL barrier_thaw $FSNAME
19467
19468         post_801
19469 }
19470 run_test 801a "write barrier user interfaces and stat machine"
19471
19472 test_801b() {
19473         prep_801
19474
19475         mkdir $DIR/$tdir || error "(1) fail to mkdir"
19476         createmany -d $DIR/$tdir/d 6 || "(2) fail to mkdir"
19477         touch $DIR/$tdir/d2/f10 || error "(3) fail to touch"
19478         touch $DIR/$tdir/d3/f11 || error "(4) fail to touch"
19479         touch $DIR/$tdir/d4/f12 || error "(5) fail to touch"
19480
19481         cancel_lru_locks mdc
19482
19483         # 180 seconds should be long enough
19484         do_facet mgs $LCTL barrier_freeze $FSNAME 180
19485
19486         local b_status=$(barrier_stat)
19487         [ "$b_status" = "'frozen'" ] ||
19488                 error "(6) unexpected barrier status $b_status"
19489
19490         mkdir $DIR/$tdir/d0/d10 &
19491         mkdir_pid=$!
19492
19493         touch $DIR/$tdir/d1/f13 &
19494         touch_pid=$!
19495
19496         ln $DIR/$tdir/d2/f10 $DIR/$tdir/d2/f14 &
19497         ln_pid=$!
19498
19499         mv $DIR/$tdir/d3/f11 $DIR/$tdir/d3/f15 &
19500         mv_pid=$!
19501
19502         rm -f $DIR/$tdir/d4/f12 &
19503         rm_pid=$!
19504
19505         stat $DIR/$tdir/d5 || error "(7) stat should succeed"
19506
19507         # To guarantee taht the 'stat' is not blocked
19508         b_status=$(barrier_stat)
19509         [ "$b_status" = "'frozen'" ] ||
19510                 error "(8) unexpected barrier status $b_status"
19511
19512         # let above commands to run at background
19513         sleep 5
19514
19515         ps -p $mkdir_pid || error "(9) mkdir should be blocked"
19516         ps -p $touch_pid || error "(10) touch should be blocked"
19517         ps -p $ln_pid || error "(11) link should be blocked"
19518         ps -p $mv_pid || error "(12) rename should be blocked"
19519         ps -p $rm_pid || error "(13) unlink should be blocked"
19520
19521         b_status=$(barrier_stat)
19522         [ "$b_status" = "'frozen'" ] ||
19523                 error "(14) unexpected barrier status $b_status"
19524
19525         do_facet mgs $LCTL barrier_thaw $FSNAME
19526         b_status=$(barrier_stat)
19527         [ "$b_status" = "'thawed'" ] ||
19528                 error "(15) unexpected barrier status $b_status"
19529
19530         wait $mkdir_pid || error "(16) mkdir should succeed"
19531         wait $touch_pid || error "(17) touch should succeed"
19532         wait $ln_pid || error "(18) link should succeed"
19533         wait $mv_pid || error "(19) rename should succeed"
19534         wait $rm_pid || error "(20) unlink should succeed"
19535
19536         post_801
19537 }
19538 run_test 801b "modification will be blocked by write barrier"
19539
19540 test_801c() {
19541         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19542
19543         prep_801
19544
19545         stop mds2 || error "(1) Fail to stop mds2"
19546
19547         do_facet mgs $LCTL barrier_freeze $FSNAME 30
19548
19549         local b_status=$(barrier_stat)
19550         [ "$b_status" = "'expired'" -o "$b_status" = "'failed'" ] || {
19551                 do_facet mgs $LCTL barrier_thaw $FSNAME
19552                 error "(2) unexpected barrier status $b_status"
19553         }
19554
19555         do_facet mgs $LCTL barrier_rescan $FSNAME ||
19556                 error "(3) Fail to rescan barrier bitmap"
19557
19558         do_facet mgs $LCTL barrier_freeze $FSNAME 10
19559
19560         b_status=$(barrier_stat)
19561         [ "$b_status" = "'frozen'" ] ||
19562                 error "(4) unexpected barrier status $b_status"
19563
19564         do_facet mgs $LCTL barrier_thaw $FSNAME
19565         b_status=$(barrier_stat)
19566         [ "$b_status" = "'thawed'" ] ||
19567                 error "(5) unexpected barrier status $b_status"
19568
19569         local devname=$(mdsdevname 2)
19570
19571         start mds2 $devname $MDS_MOUNT_OPTS || error "(6) Fail to start mds2"
19572
19573         do_facet mgs $LCTL barrier_rescan $FSNAME ||
19574                 error "(7) Fail to rescan barrier bitmap"
19575
19576         post_801
19577 }
19578 run_test 801c "rescan barrier bitmap"
19579
19580 saved_MGS_MOUNT_OPTS=$MGS_MOUNT_OPTS
19581 saved_MDS_MOUNT_OPTS=$MDS_MOUNT_OPTS
19582 saved_OST_MOUNT_OPTS=$OST_MOUNT_OPTS
19583
19584 cleanup_802() {
19585         trap 0
19586
19587         stopall
19588         MGS_MOUNT_OPTS=$saved_MGS_MOUNT_OPTS
19589         MDS_MOUNT_OPTS=$saved_MDS_MOUNT_OPTS
19590         OST_MOUNT_OPTS=$saved_OST_MOUNT_OPTS
19591         setupall
19592 }
19593
19594 test_802() {
19595
19596         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
19597         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
19598                 skip "Need server version at least 2.9.55"
19599
19600         [[ $ENABLE_QUOTA ]] && skip "Quota enabled for read-only test"
19601
19602         mkdir $DIR/$tdir || error "(1) fail to mkdir"
19603
19604         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
19605                 error "(2) Fail to copy"
19606
19607         trap cleanup_802 EXIT
19608
19609         # sync by force before remount as readonly
19610         sync; sync_all_data; sleep 3; sync_all_data
19611
19612         stopall
19613
19614         MGS_MOUNT_OPTS=$(csa_add "$MGS_MOUNT_OPTS" -o rdonly_dev)
19615         MDS_MOUNT_OPTS=$(csa_add "$MDS_MOUNT_OPTS" -o rdonly_dev)
19616         OST_MOUNT_OPTS=$(csa_add "$OST_MOUNT_OPTS" -o rdonly_dev)
19617
19618         echo "Mount the server as read only"
19619         setupall server_only || error "(3) Fail to start servers"
19620
19621         echo "Mount client without ro should fail"
19622         mount_client $MOUNT &&
19623                 error "(4) Mount client without 'ro' should fail"
19624
19625         echo "Mount client with ro should succeed"
19626         mount_client $MOUNT ro ||
19627                 error "(5) Mount client with 'ro' should succeed"
19628
19629         echo "Modify should be refused"
19630         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
19631
19632         echo "Read should be allowed"
19633         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
19634                 error "(7) Read should succeed under ro mode"
19635
19636         cleanup_802
19637 }
19638 run_test 802 "simulate readonly device"
19639
19640 test_803() {
19641         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19642         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.54) ] &&
19643                 skip "MDS needs to be newer than 2.10.54"
19644
19645         mkdir -p $DIR/$tdir
19646         # Create some objects on all MDTs to trigger related logs objects
19647         for idx in $(seq $MDSCOUNT); do
19648                 $LFS mkdir -c $MDSCOUNT -i $((idx % $MDSCOUNT)) \
19649                         $DIR/$tdir/dir${idx} ||
19650                         error "Fail to create $DIR/$tdir/dir${idx}"
19651         done
19652
19653         sync; sleep 3
19654         wait_delete_completed # ensure old test cleanups are finished
19655         echo "before create:"
19656         $LFS df -i $MOUNT
19657         local before_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19658
19659         for i in {1..10}; do
19660                 $LFS mkdir -c 1 -i 1 $DIR/$tdir/foo$i ||
19661                         error "Fail to create $DIR/$tdir/foo$i"
19662         done
19663
19664         sync; sleep 3
19665         echo "after create:"
19666         $LFS df -i $MOUNT
19667         local after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19668
19669         # allow for an llog to be cleaned up during the test
19670         [ $after_used -ge $((before_used + 10 - 1)) ] ||
19671                 error "before ($before_used) + 10 > after ($after_used)"
19672
19673         for i in {1..10}; do
19674                 rm -rf $DIR/$tdir/foo$i ||
19675                         error "Fail to remove $DIR/$tdir/foo$i"
19676         done
19677
19678         sleep 3 # avoid MDT return cached statfs
19679         wait_delete_completed
19680         echo "after unlink:"
19681         $LFS df -i $MOUNT
19682         after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19683
19684         # allow for an llog to be created during the test
19685         [ $after_used -le $((before_used + 1)) ] ||
19686                 error "after ($after_used) > before ($before_used) + 1"
19687 }
19688 run_test 803 "verify agent object for remote object"
19689
19690 test_804() {
19691         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19692         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.54) ] &&
19693                 skip "MDS needs to be newer than 2.10.54"
19694         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
19695                 skip_env "ldiskfs only test"
19696
19697         mkdir -p $DIR/$tdir
19698         $LFS mkdir -c 1 -i 1 $DIR/$tdir/dir0 ||
19699                 error "Fail to create $DIR/$tdir/dir0"
19700
19701         local fid=$($LFS path2fid $DIR/$tdir/dir0)
19702         local dev=$(mdsdevname 2)
19703
19704         do_facet mds2 "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19705                 grep ${fid} || error "NOT found agent entry for dir0"
19706
19707         $LFS mkdir -c $MDSCOUNT -i 0 $DIR/$tdir/dir1 ||
19708                 error "Fail to create $DIR/$tdir/dir1"
19709
19710         touch $DIR/$tdir/dir1/foo0 ||
19711                 error "Fail to create $DIR/$tdir/dir1/foo0"
19712         fid=$($LFS path2fid $DIR/$tdir/dir1/foo0)
19713         local rc=0
19714
19715         for idx in $(seq $MDSCOUNT); do
19716                 dev=$(mdsdevname $idx)
19717                 do_facet mds${idx} \
19718                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19719                         grep ${fid} && rc=$idx
19720         done
19721
19722         mv $DIR/$tdir/dir1/foo0 $DIR/$tdir/dir1/foo1 ||
19723                 error "Fail to rename foo0 to foo1"
19724         if [ $rc -eq 0 ]; then
19725                 for idx in $(seq $MDSCOUNT); do
19726                         dev=$(mdsdevname $idx)
19727                         do_facet mds${idx} \
19728                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19729                         grep ${fid} && rc=$idx
19730                 done
19731         fi
19732
19733         mv $DIR/$tdir/dir1/foo1 $DIR/$tdir/dir1/foo2 ||
19734                 error "Fail to rename foo1 to foo2"
19735         if [ $rc -eq 0 ]; then
19736                 for idx in $(seq $MDSCOUNT); do
19737                         dev=$(mdsdevname $idx)
19738                         do_facet mds${idx} \
19739                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19740                         grep ${fid} && rc=$idx
19741                 done
19742         fi
19743
19744         [ $rc -ne 0 ] || error "NOT found agent entry for foo"
19745
19746         ln $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir0/guard ||
19747                 error "Fail to link to $DIR/$tdir/dir1/foo2"
19748         mv $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir1/foo0 ||
19749                 error "Fail to rename foo2 to foo0"
19750         unlink $DIR/$tdir/dir1/foo0 ||
19751                 error "Fail to unlink $DIR/$tdir/dir1/foo0"
19752         rm -rf $DIR/$tdir/dir0 ||
19753                 error "Fail to rm $DIR/$tdir/dir0"
19754
19755         for idx in $(seq $MDSCOUNT); do
19756                 dev=$(mdsdevname $idx)
19757                 rc=0
19758
19759                 stop mds${idx}
19760                 run_e2fsck $(facet_active_host mds$idx) $dev -n ||
19761                         rc=$?
19762                 start mds${idx} $dev $MDS_MOUNT_OPTS ||
19763                         error "mount mds$idx failed"
19764                 df $MOUNT > /dev/null 2>&1
19765
19766                 # e2fsck should not return error
19767                 [ $rc -eq 0 ] ||
19768                         error "e2fsck detected error on MDT${idx}: rc=$rc"
19769         done
19770 }
19771 run_test 804 "verify agent entry for remote entry"
19772
19773 cleanup_805() {
19774         do_facet $SINGLEMDS zfs set quota=$old $fsset
19775         unlinkmany $DIR/$tdir/f- 1000000
19776         trap 0
19777 }
19778
19779 test_805() {
19780         local zfs_version=$(do_node $SINGLEMDS cat /sys/module/zfs/version)
19781         [ "$(facet_fstype mds1)" != "zfs" ] &&
19782                 skip "ZFS specific test"
19783         [ $(version_code $zfs_version) -lt $(version_code 0.7.2) ] &&
19784                 skip "netfree not implemented before 0.7"
19785         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.57) ]] ||
19786                 skip "Need MDS version at least 2.10.57"
19787
19788         local fsset
19789         local freekb
19790         local usedkb
19791         local old
19792         local quota
19793         local pref="osd-zfs.lustre-MDT0000."
19794
19795         # limit available space on MDS dataset to meet nospace issue
19796         # quickly. then ZFS 0.7.2 can use reserved space if asked
19797         # properly (using netfree flag in osd_declare_destroy()
19798         fsset=$(do_facet $SINGLEMDS lctl get_param -n $pref.mntdev)
19799         old=$(do_facet $SINGLEMDS zfs get -H quota $fsset | \
19800                 gawk '{print $3}')
19801         freekb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytesfree)
19802         usedkb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytestotal)
19803         let "usedkb=usedkb-freekb"
19804         let "freekb=freekb/2"
19805         if let "freekb > 5000"; then
19806                 let "freekb=5000"
19807         fi
19808         do_facet $SINGLEMDS zfs set quota=$(((usedkb+freekb)*1024)) $fsset
19809         trap cleanup_805 EXIT
19810         mkdir $DIR/$tdir
19811         $LFS setstripe -E 1M -L mdt $DIR/$tdir || error "DoM not working"
19812         createmany -m $DIR/$tdir/f- 1000000 && error "ENOSPC wasn't met"
19813         rm -rf $DIR/$tdir || error "not able to remove"
19814         do_facet $SINGLEMDS zfs set quota=$old $fsset
19815         trap 0
19816 }
19817 run_test 805 "ZFS can remove from full fs"
19818
19819 # Size-on-MDS test
19820 check_lsom_data()
19821 {
19822         local file=$1
19823         local size=$($LFS getsom -s $file)
19824         local expect=$(stat -c %s $file)
19825
19826         [[ $size == $expect ]] ||
19827                 error "$file expected size: $expect, got: $size"
19828
19829         local blocks=$($LFS getsom -b $file)
19830         expect=$(stat -c %b $file)
19831         [[ $blocks == $expect ]] ||
19832                 error "$file expected blocks: $expect, got: $blocks"
19833 }
19834
19835 check_lsom_size()
19836 {
19837         local size=$($LFS getsom -s $1)
19838         local expect=$2
19839
19840         [[ $size == $expect ]] ||
19841                 error "$file expected size: $expect, got: $size"
19842 }
19843
19844 test_806() {
19845         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
19846                 skip "Need MDS version at least 2.11.52" && return
19847
19848         local bs=1048576
19849
19850         touch $DIR/$tfile || error "touch $tfile failed"
19851
19852         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
19853         save_lustre_params client "llite.*.xattr_cache" > $save
19854         lctl set_param llite.*.xattr_cache=0
19855         stack_trap "restore_lustre_params < $save" EXIT
19856
19857         # single-threaded write
19858         echo "Test SOM for single-threaded write"
19859         dd if=/dev/zero of=$DIR/$tfile bs=$bs count=1 ||
19860                 error "write $tfile failed"
19861         check_lsom_size $DIR/$tfile $bs
19862
19863         local num=32
19864         local size=$(($num * $bs))
19865         local offset=0
19866         local i
19867
19868         echo "Test SOM for single client multi-threaded($num) write"
19869         $TRUNCATE $DIR/$tfile 0
19870         for ((i = 0; i < $num; i++)); do
19871                 $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
19872                 local pids[$i]=$!
19873                 offset=$((offset + $bs))
19874         done
19875         for (( i=0; i < $num; i++ )); do
19876                 wait ${pids[$i]}
19877         done
19878         check_lsom_size $DIR/$tfile $size
19879
19880         $TRUNCATE $DIR/$tfile 0
19881         for ((i = 0; i < $num; i++)); do
19882                 offset=$((offset - $bs))
19883                 $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
19884                 local pids[$i]=$!
19885         done
19886         for (( i=0; i < $num; i++ )); do
19887                 wait ${pids[$i]}
19888         done
19889         check_lsom_size $DIR/$tfile $size
19890
19891         # multi-client wirtes
19892         num=$(get_node_count ${CLIENTS//,/ })
19893         size=$(($num * $bs))
19894         offset=0
19895         i=0
19896
19897         echo "Test SOM for multi-client ($num) writes"
19898         $TRUNCATE $DIR/$tfile 0
19899         for client in ${CLIENTS//,/ }; do
19900                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
19901                 local pids[$i]=$!
19902                 i=$((i + 1))
19903                 offset=$((offset + $bs))
19904         done
19905         for (( i=0; i < $num; i++ )); do
19906                 wait ${pids[$i]}
19907         done
19908         check_lsom_size $DIR/$tfile $offset
19909
19910         i=0
19911         $TRUNCATE $DIR/$tfile 0
19912         for client in ${CLIENTS//,/ }; do
19913                 offset=$((offset - $bs))
19914                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
19915                 local pids[$i]=$!
19916                 i=$((i + 1))
19917         done
19918         for (( i=0; i < $num; i++ )); do
19919                 wait ${pids[$i]}
19920         done
19921         check_lsom_size $DIR/$tfile $size
19922
19923         # verify truncate
19924         echo "Test SOM for truncate"
19925         $TRUNCATE $DIR/$tfile 1048576
19926         check_lsom_size $DIR/$tfile 1048576
19927         $TRUNCATE $DIR/$tfile 1234
19928         check_lsom_size $DIR/$tfile 1234
19929
19930         # verify SOM blocks count
19931         echo "Verify SOM block count"
19932         $TRUNCATE $DIR/$tfile 0
19933         $MULTIOP $DIR/$tfile oO_TRUNC:O_RDWR:w1048576YSc ||
19934                 error "failed to write file $tfile"
19935         check_lsom_data $DIR/$tfile
19936 }
19937 run_test 806 "Verify Lazy Size on MDS"
19938
19939 test_807() {
19940         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
19941                 skip "Need MDS version at least 2.11.52" && return
19942
19943         # Registration step
19944         changelog_register || error "changelog_register failed"
19945         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
19946         changelog_users $SINGLEMDS | grep -q $cl_user ||
19947                 error "User $cl_user not found in changelog_users"
19948
19949         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
19950         save_lustre_params client "llite.*.xattr_cache" > $save
19951         lctl set_param llite.*.xattr_cache=0
19952         stack_trap "restore_lustre_params < $save" EXIT
19953
19954         rm -rf $DIR/$tdir || error "rm $tdir failed"
19955         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
19956         touch $DIR/$tdir/trunc || error "touch $tdir/trunc failed"
19957         $TRUNCATE $DIR/$tdir/trunc 1024 || error "truncate $tdir/trunc failed"
19958         $TRUNCATE $DIR/$tdir/trunc 1048576 ||
19959                 error "truncate $tdir/trunc failed"
19960
19961         local bs=1048576
19962         dd if=/dev/zero of=$DIR/$tdir/single_dd bs=$bs count=1 ||
19963                 error "write $tfile failed"
19964
19965         # multi-client wirtes
19966         local num=$(get_node_count ${CLIENTS//,/ })
19967         local offset=0
19968         local i=0
19969
19970         echo "Test SOM for multi-client ($num) writes"
19971         touch $DIR/$tfile || error "touch $tfile failed"
19972         $TRUNCATE $DIR/$tfile 0
19973         for client in ${CLIENTS//,/ }; do
19974                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
19975                 local pids[$i]=$!
19976                 i=$((i + 1))
19977                 offset=$((offset + $bs))
19978         done
19979         for (( i=0; i < $num; i++ )); do
19980                 wait ${pids[$i]}
19981         done
19982
19983         sleep 5
19984         $LSOM_SYNC -u $cl_user -m $FSNAME-MDT0000 $MOUNT
19985         check_lsom_data $DIR/$tdir/trunc
19986         check_lsom_data $DIR/$tdir/single_dd
19987         check_lsom_data $DIR/$tfile
19988
19989         rm -rf $DIR/$tdir
19990         # Deregistration step
19991         changelog_deregister || error "changelog_deregister failed"
19992 }
19993 run_test 807 "verify LSOM syncing tool"
19994
19995 check_som_nologged()
19996 {
19997         local lines=$($LFS changelog $FSNAME-MDT0000 |
19998                 grep 'x=trusted.som' | wc -l)
19999         [ $lines -ne 0 ] && error "trusted.som xattr is logged in Changelogs"
20000 }
20001
20002 test_808() {
20003         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.55) ] &&
20004                 skip "Need MDS version at least 2.11.55" && return
20005
20006         # Registration step
20007         changelog_register || error "changelog_register failed"
20008
20009         touch $DIR/$tfile || error "touch $tfile failed"
20010         check_som_nologged
20011
20012         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=1 ||
20013                 error "write $tfile failed"
20014         check_som_nologged
20015
20016         $TRUNCATE $DIR/$tfile 1234
20017         check_som_nologged
20018
20019         $TRUNCATE $DIR/$tfile 1048576
20020         check_som_nologged
20021
20022         # Deregistration step
20023         changelog_deregister || error "changelog_deregister failed"
20024 }
20025 run_test 808 "Check trusted.som xattr not logged in Changelogs"
20026
20027 check_som_nodata()
20028 {
20029         $LFS getsom $1
20030         [[ $? -eq 61 ]] || error "DoM-only file $1 has SOM xattr"
20031 }
20032
20033 test_809() {
20034         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.56) ] &&
20035                 skip "Need MDS version at least 2.11.56" && return
20036
20037         $LFS setstripe -E 1M -L mdt $DIR/$tfile ||
20038                 error "failed to create DoM-only file $DIR/$tfile"
20039         touch $DIR/$tfile || error "touch $tfile failed"
20040         check_som_nodata $DIR/$tfile
20041
20042         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 ||
20043                 error "write $tfile failed"
20044         check_som_nodata $DIR/$tfile
20045
20046         $TRUNCATE $DIR/$tfile 1234
20047         check_som_nodata $DIR/$tfile
20048
20049         $TRUNCATE $DIR/$tfile 4097
20050         check_som_nodata $DIR/$file
20051 }
20052 run_test 809 "Verify no SOM xattr store for DoM-only files"
20053
20054 test_810() {
20055         local ORIG
20056         local CSUM
20057
20058         # t10 seem to dislike partial pages
20059         lctl set_param osc.*.checksum_type=adler
20060         lctl set_param fail_loc=0x411
20061         dd if=/dev/urandom of=$DIR/$tfile bs=10240 count=2
20062         ORIG=$(md5sum $DIR/$tfile)
20063         lctl set_param ldlm.namespaces.*osc*.lru_size=clear
20064         CSUM=$(md5sum $DIR/$tfile)
20065         set_checksum_type adler
20066         if [ "$ORIG" != "$CSUM" ]; then
20067                 error "$ORIG != $CSUM"
20068         fi
20069 }
20070 run_test 810 "partial page writes on ZFS (LU-11663)"
20071
20072 test_811() {
20073         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.56) ] &&
20074                 skip "Need MDS version at least 2.11.56"
20075
20076         #define OBD_FAIL_MDS_ORPHAN_DELETE      0x165
20077         do_facet mds1 $LCTL set_param fail_loc=0x165
20078         $MULTIOP $DIR/$tfile Ouc || error "multiop failed"
20079
20080         stop mds1
20081         start mds1 $(mdsdevname 1) $MDS_MOUNT_OPTS
20082
20083         sleep 5
20084         [[ $(do_facet mds1 pgrep orph_.*-MDD | wc -l) -eq 0 ]] ||
20085                 error "MDD orphan cleanup thread not quit"
20086 }
20087 run_test 811 "orphan name stub can be cleaned up in startup"
20088
20089 #
20090 # tests that do cleanup/setup should be run at the end
20091 #
20092
20093 test_900() {
20094         [ $PARALLEL == "yes" ] && skip "skip parallel run"
20095         local ls
20096
20097         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
20098         $LCTL set_param fail_loc=0x903
20099
20100         cancel_lru_locks MGC
20101
20102         FAIL_ON_ERROR=true cleanup
20103         FAIL_ON_ERROR=true setup
20104 }
20105 run_test 900 "umount should not race with any mgc requeue thread"
20106
20107 complete $SECONDS
20108 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
20109 check_and_cleanup_lustre
20110 if [ "$I_MOUNTED" != "yes" ]; then
20111         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
20112 fi
20113 exit_status