Whamcloud - gitweb
a073da0ff3838bb7806b15cd1ffca8fefb8b1014
[fs/lustre-release.git] / lustre / tests / sanity.sh
1 #!/bin/bash
2 #
3 # Run select tests by setting ONLY, or as arguments to the script.
4 # Skip specific tests by setting EXCEPT.
5 #
6 # e.g. ONLY="22 23" or ONLY="`seq 32 39`" or EXCEPT="31"
7 set -e
8
9 ONLY=${ONLY:-"$*"}
10
11 # Check Grants after these tests
12 GRANT_CHECK_LIST="$GRANT_CHECK_LIST 42a 42b 42c 42d 42e 63a 63b 64a 64b 64c 64d"
13
14 OSC=${OSC:-"osc"}
15
16 CC=${CC:-cc}
17 CREATETEST=${CREATETEST:-createtest}
18 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
19 OPENFILE=${OPENFILE:-openfile}
20 OPENUNLINK=${OPENUNLINK:-openunlink}
21 READS=${READS:-"reads"}
22 MUNLINK=${MUNLINK:-munlink}
23 SOCKETSERVER=${SOCKETSERVER:-socketserver}
24 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
25 MEMHOG=${MEMHOG:-memhog}
26 DIRECTIO=${DIRECTIO:-directio}
27 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
28 DEF_STRIPE_COUNT=-1
29 CHECK_GRANT=${CHECK_GRANT:-"yes"}
30 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
31 export PARALLEL=${PARALLEL:-"no"}
32
33 TRACE=${TRACE:-""}
34 LUSTRE=${LUSTRE:-$(dirname $0)/..}
35 LUSTRE_TESTS_API_DIR=${LUSTRE_TESTS_API_DIR:-${LUSTRE}/tests/clientapi}
36 . $LUSTRE/tests/test-framework.sh
37 init_test_env $@
38
39 init_logging
40
41 ALWAYS_EXCEPT="$SANITY_EXCEPT "
42 # bug number for skipped test: LU-9693 LU-6493 LU-9693
43 ALWAYS_EXCEPT+="               42a     42b     42c "
44 # bug number:    LU-8411 LU-9054 LU-13314
45 ALWAYS_EXCEPT+=" 407     312    56ob"
46
47 if $SHARED_KEY; then
48         # bug number:    LU-9795 LU-9795 LU-9795 LU-9795
49         ALWAYS_EXCEPT+=" 17n     60a     133g    300f"
50 fi
51
52 selinux_status=$(getenforce)
53 if [ "$selinux_status" != "Disabled" ]; then
54         # bug number:
55         ALWAYS_EXCEPT+=""
56 fi
57
58 # skip the grant tests for ARM until they are fixed
59 if [[ $(uname -m) = aarch64 ]]; then
60         # bug number:    LU-11596
61         ALWAYS_EXCEPT+=" $GRANT_CHECK_LIST"
62         # bug number:    LU-11671 LU-11667
63         ALWAYS_EXCEPT+=" 45       317"
64 fi
65
66 # skip nfs tests on kernels >= 4.14.0 until they are fixed
67 if [ $LINUX_VERSION_CODE -ge $(version_code 4.14.0) ]; then
68         # bug number:   LU-12661
69         ALWAYS_EXCEPT+=" 817"
70 fi
71 # skip cgroup tests on RHEL8.1 kernels until they are fixed
72 if (( $LINUX_VERSION_CODE >= $(version_code 4.18.0) &&
73       $LINUX_VERSION_CODE <  $(version_code 5.4.0) )); then
74         # bug number:   LU-13063
75         ALWAYS_EXCEPT+=" 411"
76 fi
77
78 #                                  5          12     8   12  (min)"
79 [ "$SLOW" = "no" ] && EXCEPT_SLOW="27m 64b 68 71 115 135 136 300o"
80
81 if [ "$mds1_FSTYPE" = "zfs" ]; then
82         # bug number for skipped test:
83         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  "
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 build_test_filter
127 FAIL_ON_ERROR=false
128
129 cleanup() {
130         echo -n "cln.."
131         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
132         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
133 }
134 setup() {
135         echo -n "mnt.."
136         load_modules
137         setupall || exit 10
138         echo "done"
139 }
140
141 check_swap_layouts_support()
142 {
143         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
144                 skip "Does not support layout lock."
145 }
146
147 check_and_setup_lustre
148 DIR=${DIR:-$MOUNT}
149 assert_DIR
150
151 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
152
153 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
154 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
155 rm -rf $DIR/[Rdfs][0-9]*
156
157 # $RUNAS_ID may get set incorrectly somewhere else
158 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] &&
159         error "\$RUNAS_ID set to 0, but \$UID is also 0!"
160
161 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
162
163 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         [ $MGS_VERSION -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=$CLIENT_VERSION
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         [ $MDS1_VERSION -lt $(version_code 2.1.4) ] &&
552                 TESTS="4094 4095"
553
554         # Patch not applied to 2.2 or 2.3 branches
555         [ $MDS1_VERSION -ge $(version_code 2.2.0) ] &&
556         [ $MDS1_VERSION -le $(version_code 2.3.55) ] &&
557                 TESTS="4094 4095"
558
559         for i in $TESTS; do
560                 local SYMNAME=$(str_repeat 'x' $i)
561                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
562                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
563         done
564 }
565 run_test 17g "symlinks: really long symlink name and inode boundaries"
566
567 test_17h() { #bug 17378
568         [ $PARALLEL == "yes" ] && skip "skip parallel run"
569         remote_mds_nodsh && skip "remote MDS with nodsh"
570
571         local mdt_idx
572
573         test_mkdir $DIR/$tdir
574         mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
575         $LFS setstripe -c -1 $DIR/$tdir
576         #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
577         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
578         touch $DIR/$tdir/$tfile || true
579 }
580 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
581
582 test_17i() { #bug 20018
583         [ $PARALLEL == "yes" ] && skip "skip parallel run"
584         remote_mds_nodsh && skip "remote MDS with nodsh"
585
586         local foo=$DIR/$tdir/$tfile
587         local mdt_idx
588
589         test_mkdir -c1 $DIR/$tdir
590         mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
591         ln -s $foo $foo || error "create symlink failed"
592 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
593         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
594         ls -l $foo && error "error not detected"
595         return 0
596 }
597 run_test 17i "don't panic on short symlink (should return error)"
598
599 test_17k() { #bug 22301
600         [ $PARALLEL == "yes" ] && skip "skip parallel run"
601         [[ -z "$(which rsync 2>/dev/null)" ]] &&
602                 skip "no rsync command"
603         rsync --help | grep -q xattr ||
604                 skip_env "$(rsync --version | head -n1) does not support xattrs"
605         test_mkdir $DIR/$tdir
606         test_mkdir $DIR/$tdir.new
607         touch $DIR/$tdir/$tfile
608         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
609         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
610                 error "rsync failed with xattrs enabled"
611 }
612 run_test 17k "symlinks: rsync with xattrs enabled"
613
614 test_17l() { # LU-279
615         [[ -z "$(which getfattr 2>/dev/null)" ]] &&
616                 skip "no getfattr command"
617
618         test_mkdir $DIR/$tdir
619         touch $DIR/$tdir/$tfile
620         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
621         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
622                 # -h to not follow symlinks. -m '' to list all the xattrs.
623                 # grep to remove first line: '# file: $path'.
624                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
625                 do
626                         lgetxattr_size_check $path $xattr ||
627                                 error "lgetxattr_size_check $path $xattr failed"
628                 done
629         done
630 }
631 run_test 17l "Ensure lgetxattr's returned xattr size is consistent"
632
633 # LU-1540
634 test_17m() {
635         [ $PARALLEL == "yes" ] && skip "skip parallel run"
636         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
637         remote_mds_nodsh && skip "remote MDS with nodsh"
638         [ $MDS1_VERSION -ge $(version_code 2.2.0) ] &&
639         [ $MDS1_VERSION -le $(version_code 2.2.93) ] &&
640                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks"
641
642         local short_sym="0123456789"
643         local wdir=$DIR/$tdir
644         local i
645
646         test_mkdir $wdir
647         long_sym=$short_sym
648         # create a long symlink file
649         for ((i = 0; i < 4; ++i)); do
650                 long_sym=${long_sym}${long_sym}
651         done
652
653         echo "create 512 short and long symlink files under $wdir"
654         for ((i = 0; i < 256; ++i)); do
655                 ln -sf ${long_sym}"a5a5" $wdir/long-$i
656                 ln -sf ${short_sym}"a5a5" $wdir/short-$i
657         done
658
659         echo "erase them"
660         rm -f $wdir/*
661         sync
662         wait_delete_completed
663
664         echo "recreate the 512 symlink files with a shorter string"
665         for ((i = 0; i < 512; ++i)); do
666                 # rewrite the symlink file with a shorter string
667                 ln -sf ${long_sym} $wdir/long-$i || error "long_sym failed"
668                 ln -sf ${short_sym} $wdir/short-$i || error "short_sym failed"
669         done
670
671         local mds_index=$(($($LFS getstripe -m $wdir) + 1))
672         local devname=$(mdsdevname $mds_index)
673
674         echo "stop and checking mds${mds_index}:"
675         # e2fsck should not return error
676         stop mds${mds_index}
677         run_e2fsck $(facet_active_host mds${mds_index}) $devname -n
678         rc=$?
679
680         start mds${mds_index} $devname $MDS_MOUNT_OPTS ||
681                 error "start mds${mds_index} failed"
682         df $MOUNT > /dev/null 2>&1
683         [ $rc -eq 0 ] ||
684                 error "e2fsck detected error for short/long symlink: rc=$rc"
685         rm -f $wdir/*
686 }
687 run_test 17m "run e2fsck against MDT which contains short/long symlink"
688
689 check_fs_consistency_17n() {
690         local mdt_index
691         local rc=0
692
693         # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
694         # so it only check MDT1/MDT2 instead of all of MDTs.
695         for mdt_index in 1 2; do
696                 local devname=$(mdsdevname $mdt_index)
697                 # e2fsck should not return error
698                 stop mds${mdt_index}
699                 run_e2fsck $(facet_active_host mds$mdt_index) $devname -n ||
700                         rc=$((rc + $?))
701
702                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS ||
703                         error "mount mds$mdt_index failed"
704                 df $MOUNT > /dev/null 2>&1
705         done
706         return $rc
707 }
708
709 test_17n() {
710         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
711         [ $PARALLEL == "yes" ] && skip "skip parallel run"
712         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
713         remote_mds_nodsh && skip "remote MDS with nodsh"
714         [ $MDS1_VERSION -ge $(version_code 2.2.0) ] &&
715         [ $MDS1_VERSION -le $(version_code 2.2.93) ] &&
716                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks"
717
718         local i
719
720         test_mkdir $DIR/$tdir
721         for ((i=0; i<10; i++)); do
722                 $LFS mkdir -i1 -c2 $DIR/$tdir/remote_dir_${i} ||
723                         error "create remote dir error $i"
724                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
725                         error "create files under remote dir failed $i"
726         done
727
728         check_fs_consistency_17n ||
729                 error "e2fsck report error after create files under remote dir"
730
731         for ((i = 0; i < 10; i++)); do
732                 rm -rf $DIR/$tdir/remote_dir_${i} ||
733                         error "destroy remote dir error $i"
734         done
735
736         check_fs_consistency_17n ||
737                 error "e2fsck report error after unlink files under remote dir"
738
739         [ $MDS1_VERSION -lt $(version_code 2.4.50) ] &&
740                 skip "lustre < 2.4.50 does not support migrate mv"
741
742         for ((i = 0; i < 10; i++)); do
743                 mkdir -p $DIR/$tdir/remote_dir_${i}
744                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
745                         error "create files under remote dir failed $i"
746                 $LFS migrate --mdt-index 1 $DIR/$tdir/remote_dir_${i} ||
747                         error "migrate remote dir error $i"
748         done
749         check_fs_consistency_17n || error "e2fsck report error after migration"
750
751         for ((i = 0; i < 10; i++)); do
752                 rm -rf $DIR/$tdir/remote_dir_${i} ||
753                         error "destroy remote dir error $i"
754         done
755
756         check_fs_consistency_17n || error "e2fsck report error after unlink"
757 }
758 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
759
760 test_17o() {
761         remote_mds_nodsh && skip "remote MDS with nodsh"
762         [ $MDS1_VERSION -lt $(version_code 2.3.64) ] &&
763                 skip "Need MDS version at least 2.3.64"
764
765         local wdir=$DIR/${tdir}o
766         local mdt_index
767         local rc=0
768
769         test_mkdir $wdir
770         touch $wdir/$tfile
771         mdt_index=$($LFS getstripe -m $wdir/$tfile)
772         mdt_index=$((mdt_index + 1))
773
774         cancel_lru_locks mdc
775         #fail mds will wait the failover finish then set
776         #following fail_loc to avoid interfer the recovery process.
777         fail mds${mdt_index}
778
779         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
780         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
781         ls -l $wdir/$tfile && rc=1
782         do_facet mds${mdt_index} lctl set_param fail_loc=0
783         [[ $rc -eq 0 ]] || error "stat file should fail"
784 }
785 run_test 17o "stat file with incompat LMA feature"
786
787 test_18() {
788         touch $DIR/$tfile || error "Failed to touch $DIR/$tfile: $?"
789         ls $DIR || error "Failed to ls $DIR: $?"
790 }
791 run_test 18 "touch .../f ; ls ... =============================="
792
793 test_19a() {
794         touch $DIR/$tfile
795         ls -l $DIR
796         rm $DIR/$tfile
797         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
798 }
799 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
800
801 test_19b() {
802         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
803 }
804 run_test 19b "ls -l .../f19 (should return error) =============="
805
806 test_19c() {
807         [ $RUNAS_ID -eq $UID ] &&
808                 skip_env "RUNAS_ID = UID = $UID -- skipping"
809
810         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
811 }
812 run_test 19c "$RUNAS touch .../f19 (should return error) =="
813
814 test_19d() {
815         cat $DIR/f19 && error || true
816 }
817 run_test 19d "cat .../f19 (should return error) =============="
818
819 test_20() {
820         touch $DIR/$tfile
821         rm $DIR/$tfile
822         touch $DIR/$tfile
823         rm $DIR/$tfile
824         touch $DIR/$tfile
825         rm $DIR/$tfile
826         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
827 }
828 run_test 20 "touch .../f ; ls -l ..."
829
830 test_21() {
831         test_mkdir $DIR/$tdir
832         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
833         ln -s dangle $DIR/$tdir/link
834         echo foo >> $DIR/$tdir/link
835         cat $DIR/$tdir/dangle
836         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
837         $CHECKSTAT -f -t file $DIR/$tdir/link ||
838                 error "$tdir/link not linked to a file"
839 }
840 run_test 21 "write to dangling link"
841
842 test_22() {
843         local wdir=$DIR/$tdir
844         test_mkdir $wdir
845         chown $RUNAS_ID:$RUNAS_GID $wdir
846         (cd $wdir || error "cd $wdir failed";
847                 $RUNAS tar cf - /etc/hosts /etc/sysconfig/network |
848                 $RUNAS tar xf -)
849         ls -lR $wdir/etc || error "ls -lR $wdir/etc failed"
850         $CHECKSTAT -t dir $wdir/etc || error "checkstat -t dir failed"
851         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $wdir/etc ||
852                 error "checkstat -u failed"
853 }
854 run_test 22 "unpack tar archive as non-root user"
855
856 # was test_23
857 test_23a() {
858         test_mkdir $DIR/$tdir
859         local file=$DIR/$tdir/$tfile
860
861         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
862         openfile -f O_CREAT:O_EXCL $file &&
863                 error "$file recreate succeeded" || true
864 }
865 run_test 23a "O_CREAT|O_EXCL in subdir"
866
867 test_23b() { # bug 18988
868         test_mkdir $DIR/$tdir
869         local file=$DIR/$tdir/$tfile
870
871         rm -f $file
872         echo foo > $file || error "write filed"
873         echo bar >> $file || error "append filed"
874         $CHECKSTAT -s 8 $file || error "wrong size"
875         rm $file
876 }
877 run_test 23b "O_APPEND check"
878
879 # LU-9409, size with O_APPEND and tiny writes
880 test_23c() {
881         local file=$DIR/$tfile
882
883         # single dd
884         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800
885         $CHECKSTAT -s 6400 $file || error "wrong size, expected 6400"
886         rm -f $file
887
888         # racing tiny writes
889         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800 &
890         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800 &
891         wait
892         $CHECKSTAT -s 12800 $file || error "wrong size, expected 12800"
893         rm -f $file
894
895         #racing tiny & normal writes
896         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=4096 count=4 &
897         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=100 &
898         wait
899         $CHECKSTAT -s 17184 $file || error "wrong size, expected 17184"
900         rm -f $file
901
902         #racing tiny & normal writes 2, ugly numbers
903         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=4099 count=11 &
904         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=17 count=173 &
905         wait
906         $CHECKSTAT -s 48030 $file || error "wrong size, expected 48030"
907         rm -f $file
908 }
909 run_test 23c "O_APPEND size checks for tiny writes"
910
911 # LU-11069 file offset is correct after appending writes
912 test_23d() {
913         local file=$DIR/$tfile
914         local offset
915
916         echo CentaurHauls > $file
917         offset=$($MULTIOP $file oO_WRONLY:O_APPEND:w13Zp)
918         if ((offset != 26)); then
919                 error "wrong offset, expected 26, got '$offset'"
920         fi
921 }
922 run_test 23d "file offset is correct after appending writes"
923
924 # rename sanity
925 test_24a() {
926         echo '-- same directory rename'
927         test_mkdir $DIR/$tdir
928         touch $DIR/$tdir/$tfile.1
929         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
930         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
931 }
932 run_test 24a "rename file to non-existent target"
933
934 test_24b() {
935         test_mkdir $DIR/$tdir
936         touch $DIR/$tdir/$tfile.{1,2}
937         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
938         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
939         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
940 }
941 run_test 24b "rename file to existing target"
942
943 test_24c() {
944         test_mkdir $DIR/$tdir
945         test_mkdir $DIR/$tdir/d$testnum.1
946         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
947         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
948         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
949 }
950 run_test 24c "rename directory to non-existent target"
951
952 test_24d() {
953         test_mkdir -c1 $DIR/$tdir
954         test_mkdir -c1 $DIR/$tdir/d$testnum.1
955         test_mkdir -c1 $DIR/$tdir/d$testnum.2
956         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
957         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
958         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
959 }
960 run_test 24d "rename directory to existing target"
961
962 test_24e() {
963         echo '-- cross directory renames --'
964         test_mkdir $DIR/R5a
965         test_mkdir $DIR/R5b
966         touch $DIR/R5a/f
967         mv $DIR/R5a/f $DIR/R5b/g
968         $CHECKSTAT -a $DIR/R5a/f || error "$DIR/R5a/f exists"
969         $CHECKSTAT -t file $DIR/R5b/g || error "$DIR/R5b/g not file type"
970 }
971 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
972
973 test_24f() {
974         test_mkdir $DIR/R6a
975         test_mkdir $DIR/R6b
976         touch $DIR/R6a/f $DIR/R6b/g
977         mv $DIR/R6a/f $DIR/R6b/g
978         $CHECKSTAT -a $DIR/R6a/f || error "$DIR/R6a/f exists"
979         $CHECKSTAT -t file $DIR/R6b/g || error "$DIR/R6b/g not file type"
980 }
981 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
982
983 test_24g() {
984         test_mkdir $DIR/R7a
985         test_mkdir $DIR/R7b
986         test_mkdir $DIR/R7a/d
987         mv $DIR/R7a/d $DIR/R7b/e
988         $CHECKSTAT -a $DIR/R7a/d || error "$DIR/R7a/d exists"
989         $CHECKSTAT -t dir $DIR/R7b/e || error "$DIR/R7b/e not dir type"
990 }
991 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
992
993 test_24h() {
994         test_mkdir -c1 $DIR/R8a
995         test_mkdir -c1 $DIR/R8b
996         test_mkdir -c1 $DIR/R8a/d
997         test_mkdir -c1 $DIR/R8b/e
998         mrename $DIR/R8a/d $DIR/R8b/e
999         $CHECKSTAT -a $DIR/R8a/d || error "$DIR/R8a/d exists"
1000         $CHECKSTAT -t dir $DIR/R8b/e || error "$DIR/R8b/e not dir type"
1001 }
1002 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
1003
1004 test_24i() {
1005         echo "-- rename error cases"
1006         test_mkdir $DIR/R9
1007         test_mkdir $DIR/R9/a
1008         touch $DIR/R9/f
1009         mrename $DIR/R9/f $DIR/R9/a
1010         $CHECKSTAT -t file $DIR/R9/f || error "$DIR/R9/f not file type"
1011         $CHECKSTAT -t dir  $DIR/R9/a || error "$DIR/R9/a not dir type"
1012         $CHECKSTAT -a $DIR/R9/a/f || error "$DIR/R9/a/f exists"
1013 }
1014 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
1015
1016 test_24j() {
1017         test_mkdir $DIR/R10
1018         mrename $DIR/R10/f $DIR/R10/g
1019         $CHECKSTAT -t dir $DIR/R10 || error "$DIR/R10 not dir type"
1020         $CHECKSTAT -a $DIR/R10/f || error "$DIR/R10/f exists"
1021         $CHECKSTAT -a $DIR/R10/g || error "$DIR/R10/g exists"
1022 }
1023 run_test 24j "source does not exist ============================"
1024
1025 test_24k() {
1026         test_mkdir $DIR/R11a
1027         test_mkdir $DIR/R11a/d
1028         touch $DIR/R11a/f
1029         mv $DIR/R11a/f $DIR/R11a/d
1030         $CHECKSTAT -a $DIR/R11a/f || error "$DIR/R11a/f exists"
1031         $CHECKSTAT -t file $DIR/R11a/d/f || error "$DIR/R11a/d/f not file type"
1032 }
1033 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
1034
1035 # bug 2429 - rename foo foo foo creates invalid file
1036 test_24l() {
1037         f="$DIR/f24l"
1038         $MULTIOP $f OcNs || error "rename of ${f} to itself failed"
1039 }
1040 run_test 24l "Renaming a file to itself ========================"
1041
1042 test_24m() {
1043         f="$DIR/f24m"
1044         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
1045         # on ext3 this does not remove either the source or target files
1046         # though the "expected" operation would be to remove the source
1047         $CHECKSTAT -t file ${f} || error "${f} missing"
1048         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
1049 }
1050 run_test 24m "Renaming a file to a hard link to itself ========="
1051
1052 test_24n() {
1053     f="$DIR/f24n"
1054     # this stats the old file after it was renamed, so it should fail
1055     touch ${f}
1056     $CHECKSTAT ${f} || error "${f} missing"
1057     mv ${f} ${f}.rename
1058     $CHECKSTAT ${f}.rename || error "${f}.rename missing"
1059     $CHECKSTAT -a ${f} || error "${f} exists"
1060 }
1061 run_test 24n "Statting the old file after renaming (Posix rename 2)"
1062
1063 test_24o() {
1064         test_mkdir $DIR/$tdir
1065         rename_many -s random -v -n 10 $DIR/$tdir
1066 }
1067 run_test 24o "rename of files during htree split"
1068
1069 test_24p() {
1070         test_mkdir $DIR/R12a
1071         test_mkdir $DIR/R12b
1072         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
1073         mrename $DIR/R12a $DIR/R12b
1074         $CHECKSTAT -a $DIR/R12a || error "$DIR/R12a exists"
1075         $CHECKSTAT -t dir $DIR/R12b || error "$DIR/R12b not dir type"
1076         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
1077         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
1078 }
1079 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
1080
1081 cleanup_multiop_pause() {
1082         trap 0
1083         kill -USR1 $MULTIPID
1084 }
1085
1086 test_24q() {
1087         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1088
1089         test_mkdir $DIR/R13a
1090         test_mkdir $DIR/R13b
1091         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
1092         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
1093         MULTIPID=$!
1094
1095         trap cleanup_multiop_pause EXIT
1096         mrename $DIR/R13a $DIR/R13b
1097         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
1098         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
1099         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
1100         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
1101         cleanup_multiop_pause
1102         wait $MULTIPID || error "multiop close failed"
1103 }
1104 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
1105
1106 test_24r() { #bug 3789
1107         test_mkdir $DIR/R14a
1108         test_mkdir $DIR/R14a/b
1109         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
1110         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
1111         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
1112 }
1113 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
1114
1115 test_24s() {
1116         test_mkdir $DIR/R15a
1117         test_mkdir $DIR/R15a/b
1118         test_mkdir $DIR/R15a/b/c
1119         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
1120         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
1121         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
1122 }
1123 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
1124 test_24t() {
1125         test_mkdir $DIR/R16a
1126         test_mkdir $DIR/R16a/b
1127         test_mkdir $DIR/R16a/b/c
1128         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1129         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1130         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1131 }
1132 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1133
1134 test_24u() { # bug12192
1135         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error "multiop failed"
1136         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1137 }
1138 run_test 24u "create stripe file"
1139
1140 simple_cleanup_common() {
1141         local rc=0
1142         trap 0
1143         [ -z "$DIR" ] || [ -z "$tdir" ] && return 0
1144
1145         local start=$SECONDS
1146         rm -rf $DIR/$tdir
1147         rc=$?
1148         wait_delete_completed
1149         echo "cleanup time $((SECONDS - start))"
1150         return $rc
1151 }
1152
1153 max_pages_per_rpc() {
1154         local mdtname="$(printf "MDT%04x" ${1:-0})"
1155         $LCTL get_param -n mdc.*$mdtname*.max_pages_per_rpc
1156 }
1157
1158 test_24v() {
1159         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1160
1161         local nrfiles=${COUNT:-100000}
1162         local fname="$DIR/$tdir/$tfile"
1163
1164         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1165         [ "$mds1_FSTYPE" = "zfs" ] && nrfiles=${COUNT:-10000}
1166
1167         test_mkdir "$(dirname $fname)"
1168         # assume MDT0000 has the fewest inodes
1169         local stripes=$($LFS getdirstripe -c $(dirname $fname))
1170         local free_inodes=$(($(mdt_free_inodes 0) * stripes))
1171         [[ $free_inodes -lt $nrfiles ]] && nrfiles=$free_inodes
1172
1173         trap simple_cleanup_common EXIT
1174
1175         createmany -m "$fname" $nrfiles
1176
1177         cancel_lru_locks mdc
1178         lctl set_param mdc.*.stats clear
1179
1180         # was previously test_24D: LU-6101
1181         # readdir() returns correct number of entries after cursor reload
1182         local num_ls=$(ls $DIR/$tdir | wc -l)
1183         local num_uniq=$(ls $DIR/$tdir | sort -u | wc -l)
1184         local num_all=$(ls -a $DIR/$tdir | wc -l)
1185         if [ $num_ls -ne $nrfiles ] || [ $num_uniq -ne $nrfiles ] ||
1186                 [ $num_all -ne $((nrfiles + 2)) ]; then
1187                         error "Expected $nrfiles files, got $num_ls " \
1188                                 "($num_uniq unique $num_all .&..)"
1189         fi
1190         # LU-5 large readdir
1191         # dirent_size = 32 bytes for sizeof(struct lu_dirent) +
1192         #               N bytes for name (len($nrfiles) rounded to 8 bytes) +
1193         #               8 bytes for luda_type (4 bytes rounded to 8 bytes)
1194         # take into account of overhead in lu_dirpage header and end mark in
1195         # each page, plus one in rpc_num calculation.
1196         local dirent_size=$((32 + (${#tfile} | 7) + 1 + 8))
1197         local page_entries=$(((PAGE_SIZE - 24) / dirent_size))
1198         local mdt_idx=$($LFS getdirstripe -i $(dirname $fname))
1199         local rpc_pages=$(max_pages_per_rpc $mdt_idx)
1200         local rpc_max=$((nrfiles / (page_entries * rpc_pages) + stripes))
1201         local mds_readpage=$(calc_stats mdc.*.stats mds_readpage)
1202         echo "readpages: $mds_readpage rpc_max: $rpc_max"
1203         (( $mds_readpage < $rpc_max - 2 || $mds_readpage > $rpc_max + 1)) &&
1204                 error "large readdir doesn't take effect: " \
1205                       "$mds_readpage should be about $rpc_max"
1206
1207         simple_cleanup_common
1208 }
1209 run_test 24v "list large directory (test hash collision, b=17560)"
1210
1211 test_24w() { # bug21506
1212         SZ1=234852
1213         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1214         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1215         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1216         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1217         [[ "$SZ1" -eq "$SZ2" ]] ||
1218                 error "Error reading at the end of the file $tfile"
1219 }
1220 run_test 24w "Reading a file larger than 4Gb"
1221
1222 test_24x() {
1223         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
1224         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1225         [[ $MDS1_VERSION -lt $(version_code 2.7.56) ]] &&
1226                 skip "Need MDS version at least 2.7.56"
1227
1228         local MDTIDX=1
1229         local remote_dir=$DIR/$tdir/remote_dir
1230
1231         test_mkdir $DIR/$tdir
1232         $LFS mkdir -i $MDTIDX $remote_dir ||
1233                 error "create remote directory failed"
1234
1235         test_mkdir $DIR/$tdir/src_dir
1236         touch $DIR/$tdir/src_file
1237         test_mkdir $remote_dir/tgt_dir
1238         touch $remote_dir/tgt_file
1239
1240         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir ||
1241                 error "rename dir cross MDT failed!"
1242
1243         mrename $DIR/$tdir/src_file $remote_dir/tgt_file ||
1244                 error "rename file cross MDT failed!"
1245
1246         touch $DIR/$tdir/ln_file
1247         ln $DIR/$tdir/ln_file $remote_dir/ln_name ||
1248                 error "ln file cross MDT failed"
1249
1250         rm -rf $DIR/$tdir || error "Can not delete directories"
1251 }
1252 run_test 24x "cross MDT rename/link"
1253
1254 test_24y() {
1255         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
1256         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1257
1258         local remote_dir=$DIR/$tdir/remote_dir
1259         local mdtidx=1
1260
1261         test_mkdir $DIR/$tdir
1262         $LFS mkdir -i $mdtidx $remote_dir ||
1263                 error "create remote directory failed"
1264
1265         test_mkdir $remote_dir/src_dir
1266         touch $remote_dir/src_file
1267         test_mkdir $remote_dir/tgt_dir
1268         touch $remote_dir/tgt_file
1269
1270         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1271                 error "rename subdir in the same remote dir failed!"
1272
1273         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1274                 error "rename files in the same remote dir failed!"
1275
1276         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1277                 error "link files in the same remote dir failed!"
1278
1279         rm -rf $DIR/$tdir || error "Can not delete directories"
1280 }
1281 run_test 24y "rename/link on the same dir should succeed"
1282
1283 test_24z() {
1284         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
1285         [[ $MDS1_VERSION -lt $(version_code 2.12.51) ]] &&
1286                 skip "Need MDS version at least 2.12.51"
1287
1288         local index
1289
1290         for index in 0 1; do
1291                 $LFS mkdir -i $index $DIR/$tdir.$index || error "mkdir failed"
1292                 touch $DIR/$tdir.0/$tfile.$index || error "touch failed"
1293         done
1294
1295         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1 || error "mv $tfile.0 failed"
1296
1297         index=$($LFS getstripe -m $DIR/$tdir.1/$tfile.0)
1298         [ $index -eq 0 ] || error "$tfile.0 is on MDT$index"
1299
1300         local mdts=$(comma_list $(mdts_nodes))
1301
1302         do_nodes $mdts $LCTL set_param mdt.*.enable_remote_rename=0
1303         stack_trap "do_nodes $mdts $LCTL \
1304                 set_param mdt.*.enable_remote_rename=1" EXIT
1305
1306         mv $DIR/$tdir.0/$tfile.1 $DIR/$tdir.1 || error "mv $tfile.1 failed"
1307
1308         index=$($LFS getstripe -m $DIR/$tdir.1/$tfile.1)
1309         [ $index -eq 1 ] || error "$tfile.1 is on MDT$index"
1310 }
1311 run_test 24z "cross-MDT rename is done as cp"
1312
1313 test_24A() { # LU-3182
1314         local NFILES=5000
1315
1316         rm -rf $DIR/$tdir
1317         test_mkdir $DIR/$tdir
1318         trap simple_cleanup_common EXIT
1319         createmany -m $DIR/$tdir/$tfile $NFILES
1320         local t=$(ls $DIR/$tdir | wc -l)
1321         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1322         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1323         if [ $t -ne $NFILES ] || [ $u -ne $NFILES ] ||
1324            [ $v -ne $((NFILES + 2)) ] ; then
1325                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1326         fi
1327
1328         simple_cleanup_common || error "Can not delete directories"
1329 }
1330 run_test 24A "readdir() returns correct number of entries."
1331
1332 test_24B() { # LU-4805
1333         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
1334
1335         local count
1336
1337         test_mkdir $DIR/$tdir
1338         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1339                 error "create striped dir failed"
1340
1341         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1342         [ $count -eq 2 ] || error "Expected 2, got $count"
1343
1344         touch $DIR/$tdir/striped_dir/a
1345
1346         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1347         [ $count -eq 3 ] || error "Expected 3, got $count"
1348
1349         touch $DIR/$tdir/striped_dir/.f
1350
1351         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1352         [ $count -eq 4 ] || error "Expected 4, got $count"
1353
1354         rm -rf $DIR/$tdir || error "Can not delete directories"
1355 }
1356 run_test 24B "readdir for striped dir return correct number of entries"
1357
1358 test_24C() {
1359         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
1360
1361         mkdir $DIR/$tdir
1362         mkdir $DIR/$tdir/d0
1363         mkdir $DIR/$tdir/d1
1364
1365         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1366                 error "create striped dir failed"
1367
1368         cd $DIR/$tdir/d0/striped_dir
1369
1370         local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1371         local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1372         local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1373
1374         [ "$d0_ino" = "$parent_ino" ] ||
1375                 error ".. wrong, expect $d0_ino, get $parent_ino"
1376
1377         mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1378                 error "mv striped dir failed"
1379
1380         parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1381
1382         [ "$d1_ino" = "$parent_ino" ] ||
1383                 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1384 }
1385 run_test 24C "check .. in striped dir"
1386
1387 test_24E() {
1388         [[ $MDSCOUNT -lt 4 ]] && skip_env "needs >= 4 MDTs"
1389         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1390
1391         mkdir -p $DIR/$tdir
1392         mkdir $DIR/$tdir/src_dir
1393         $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
1394                 error "create remote source failed"
1395
1396         touch $DIR/$tdir/src_dir/src_child/a
1397
1398         $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
1399                 error "create remote target dir failed"
1400
1401         $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
1402                 error "create remote target child failed"
1403
1404         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
1405                 error "rename dir cross MDT failed!"
1406
1407         find $DIR/$tdir
1408
1409         $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
1410                 error "src_child still exists after rename"
1411
1412         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
1413                 error "missing file(a) after rename"
1414
1415         rm -rf $DIR/$tdir || error "Can not delete directories"
1416 }
1417 run_test 24E "cross MDT rename/link"
1418
1419 test_24F () {
1420         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
1421
1422         local repeats=1000
1423         [ "$SLOW" = "no" ] && repeats=100
1424
1425         mkdir -p $DIR/$tdir
1426
1427         echo "$repeats repeats"
1428         for ((i = 0; i < repeats; i++)); do
1429                 $LFS mkdir -i0 -c2 $DIR/$tdir/test || error "mkdir fails"
1430                 touch $DIR/$tdir/test/a || error "touch fails"
1431                 mkdir $DIR/$tdir/test/b || error "mkdir fails"
1432                 rm -rf $DIR/$tdir/test || error "rmdir fails"
1433         done
1434
1435         true
1436 }
1437 run_test 24F "hash order vs readdir (LU-11330)"
1438
1439 test_25a() {
1440         echo '== symlink sanity ============================================='
1441
1442         test_mkdir $DIR/d25
1443         ln -s d25 $DIR/s25
1444         touch $DIR/s25/foo ||
1445                 error "File creation in symlinked directory failed"
1446 }
1447 run_test 25a "create file in symlinked directory ==============="
1448
1449 test_25b() {
1450         [ ! -d $DIR/d25 ] && test_25a
1451         $CHECKSTAT -t file $DIR/s25/foo || error "$DIR/s25/foo not file type"
1452 }
1453 run_test 25b "lookup file in symlinked directory ==============="
1454
1455 test_26a() {
1456         test_mkdir $DIR/d26
1457         test_mkdir $DIR/d26/d26-2
1458         ln -s d26/d26-2 $DIR/s26
1459         touch $DIR/s26/foo || error "File creation failed"
1460 }
1461 run_test 26a "multiple component symlink ======================="
1462
1463 test_26b() {
1464         test_mkdir -p $DIR/$tdir/d26-2
1465         ln -s $tdir/d26-2/foo $DIR/s26-2
1466         touch $DIR/s26-2 || error "File creation failed"
1467 }
1468 run_test 26b "multiple component symlink at end of lookup ======"
1469
1470 test_26c() {
1471         test_mkdir $DIR/d26.2
1472         touch $DIR/d26.2/foo
1473         ln -s d26.2 $DIR/s26.2-1
1474         ln -s s26.2-1 $DIR/s26.2-2
1475         ln -s s26.2-2 $DIR/s26.2-3
1476         chmod 0666 $DIR/s26.2-3/foo
1477 }
1478 run_test 26c "chain of symlinks"
1479
1480 # recursive symlinks (bug 439)
1481 test_26d() {
1482         ln -s d26-3/foo $DIR/d26-3
1483 }
1484 run_test 26d "create multiple component recursive symlink"
1485
1486 test_26e() {
1487         [ ! -h $DIR/d26-3 ] && test_26d
1488         rm $DIR/d26-3
1489 }
1490 run_test 26e "unlink multiple component recursive symlink"
1491
1492 # recursive symlinks (bug 7022)
1493 test_26f() {
1494         test_mkdir $DIR/$tdir
1495         test_mkdir $DIR/$tdir/$tfile
1496         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1497         test_mkdir -p lndir/bar1
1498         test_mkdir $DIR/$tdir/$tfile/$tfile
1499         cd $tfile                || error "cd $tfile failed"
1500         ln -s .. dotdot          || error "ln dotdot failed"
1501         ln -s dotdot/lndir lndir || error "ln lndir failed"
1502         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1503         output=`ls $tfile/$tfile/lndir/bar1`
1504         [ "$output" = bar1 ] && error "unexpected output"
1505         rm -r $tfile             || error "rm $tfile failed"
1506         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1507 }
1508 run_test 26f "rm -r of a directory which has recursive symlink"
1509
1510 test_27a() {
1511         test_mkdir $DIR/$tdir
1512         $LFS getstripe $DIR/$tdir
1513         $LFS setstripe -c 1 $DIR/$tdir/$tfile || error "setstripe failed"
1514         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1515         cp /etc/hosts $DIR/$tdir/$tfile || error "Can't copy to one stripe file"
1516 }
1517 run_test 27a "one stripe file"
1518
1519 test_27b() {
1520         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1521
1522         test_mkdir $DIR/$tdir
1523         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1524         $LFS getstripe -c $DIR/$tdir/$tfile
1525         [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
1526                 error "two-stripe file doesn't have two stripes"
1527
1528         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1529 }
1530 run_test 27b "create and write to two stripe file"
1531
1532 # 27c family tests specific striping, setstripe -o
1533 test_27ca() {
1534         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test"
1535         test_mkdir -p $DIR/$tdir
1536         local osts="1"
1537
1538         $LFS setstripe -o $osts $DIR/$tdir/$tfile  || error "setstripe failed"
1539         $LFS getstripe -i $DIR/$tdir/$tfile
1540         [ $($LFS getstripe -i $DIR/$tdir/$tfile ) -eq $osts ] ||
1541                 error "stripe not on specified OST"
1542
1543         dd if=/dev/zero of=$DIR/$tdir/$tfile  bs=1M count=4 || error "dd failed"
1544 }
1545 run_test 27ca "one stripe on specified OST"
1546
1547 test_27cb() {
1548         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test"
1549         test_mkdir -p $DIR/$tdir
1550         local osts="1,0"
1551         $LFS setstripe -o $osts $DIR/$tdir/$tfile || error "setstripe failed"
1552         local getstripe=$($LFS getstripe $DIR/$tdir/$tfile)
1553         echo "$getstripe"
1554
1555         # Strip getstripe output to a space separated list of OSTs
1556         local getstripe_osts=$(echo "$getstripe" | sed -e '1,/obdidx/d' |\
1557                 awk '{print $1}' | tr '\n' '\ ' | sed -e 's/[[:space:]]*$//')
1558         [ "$getstripe_osts" = "${osts//,/ }" ] ||
1559                 error "stripes not on specified OSTs"
1560
1561         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 || error "dd failed"
1562 }
1563 run_test 27cb "two stripes on specified OSTs"
1564
1565 test_27cc() {
1566         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test"
1567         [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
1568                 skip "server does not support overstriping"
1569
1570         test_mkdir -p $DIR/$tdir
1571         local osts="0,0"
1572         $LFS setstripe -o $osts $DIR/$tdir/$tfile || error "setstripe failed"
1573         local getstripe=$($LFS getstripe $DIR/$tdir/$tfile)
1574         echo "$getstripe"
1575
1576         # Strip getstripe output to a space separated list of OSTs
1577         local getstripe_osts=$(echo "$getstripe" | sed -e '1,/obdidx/d' |\
1578                 awk '{print $1}' | tr '\n' '\ ' | sed -e 's/[[:space:]]*$//')
1579         [ "$getstripe_osts" = "${osts//,/ }" ] ||
1580                 error "stripes not on specified OSTs"
1581
1582         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 || error "dd failed"
1583 }
1584 run_test 27cc "two stripes on the same OST"
1585
1586 test_27cd() {
1587         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test"
1588         [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
1589                 skip "server does not support overstriping"
1590         test_mkdir -p $DIR/$tdir
1591         local osts="0,1,1,0"
1592         $LFS setstripe -o $osts $DIR/$tdir/$tfile || error "setstripe failed"
1593         local getstripe=$($LFS getstripe $DIR/$tdir/$tfile)
1594         echo "$getstripe"
1595
1596         # Strip getstripe output to a space separated list of OSTs
1597         local getstripe_osts=$(echo "$getstripe" | sed -e '1,/obdidx/d' |\
1598                 awk '{print $1}' | tr '\n' '\ ' | sed -e 's/[[:space:]]*$//')
1599         [ "$getstripe_osts" = "${osts//,/ }" ] ||
1600                 error "stripes not on specified OSTs"
1601
1602         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 || error "dd failed"
1603 }
1604 run_test 27cd "four stripes on two OSTs"
1605
1606 test_27ce() {
1607         [[ $OSTCOUNT -ge $(($LOV_MAX_STRIPE_COUNT / 2)) ]] &&
1608                 skip_env "too many osts, skipping"
1609         [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
1610                 skip "server does not support overstriping"
1611         # We do one more stripe than we have OSTs
1612         [ $OSTCOUNT -ge 159 ] || large_xattr_enabled ||
1613                 skip_env "ea_inode feature disabled"
1614
1615         test_mkdir -p $DIR/$tdir
1616         local osts=""
1617         for i in $(seq 0 $OSTCOUNT);
1618         do
1619                 osts=$osts"0"
1620                 if [ $i -ne $OSTCOUNT ]; then
1621                         osts=$osts","
1622                 fi
1623         done
1624         $LFS setstripe -o $osts $DIR/$tdir/$tfile || error "setstripe failed"
1625         local getstripe=$($LFS getstripe $DIR/$tdir/$tfile)
1626         echo "$getstripe"
1627
1628         # Strip getstripe output to a space separated list of OSTs
1629         local getstripe_osts=$(echo "$getstripe" | sed -e '1,/obdidx/d' |\
1630                 awk '{print $1}' | tr '\n' '\ ' | sed -e 's/[[:space:]]*$//')
1631         [ "$getstripe_osts" = "${osts//,/ }" ] ||
1632                 error "stripes not on specified OSTs"
1633
1634         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 || error "dd failed"
1635 }
1636 run_test 27ce "more stripes than OSTs with -o"
1637
1638 test_27d() {
1639         test_mkdir $DIR/$tdir
1640         $LFS setstripe -c 0 -i -1 -S 0 $DIR/$tdir/$tfile ||
1641                 error "setstripe failed"
1642         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1643         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1644 }
1645 run_test 27d "create file with default settings"
1646
1647 test_27e() {
1648         # LU-5839 adds check for existed layout before setting it
1649         [[ $MDS1_VERSION -lt $(version_code 2.7.56) ]] &&
1650                 skip "Need MDS version at least 2.7.56"
1651
1652         test_mkdir $DIR/$tdir
1653         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1654         $LFS setstripe -c 2 $DIR/$tdir/$tfile && error "setstripe worked twice"
1655         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1656 }
1657 run_test 27e "setstripe existing file (should return error)"
1658
1659 test_27f() {
1660         test_mkdir $DIR/$tdir
1661         $LFS setstripe -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1662                 error "$LFS setstripe $DIR/$tdir/$tfile failed"
1663         $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1664                 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1665         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1666         $LFS getstripe $DIR/$tdir/$tfile || error "$LFS getstripe failed"
1667 }
1668 run_test 27f "setstripe with bad stripe size (should return error)"
1669
1670 test_27g() {
1671         test_mkdir $DIR/$tdir
1672         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1673         $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "no stripe info" ||
1674                 error "$DIR/$tdir/$tfile has object"
1675 }
1676 run_test 27g "$LFS getstripe with no objects"
1677
1678 test_27ga() {
1679         test_mkdir $DIR/$tdir
1680         touch $DIR/$tdir/$tfile || error "touch failed"
1681         ln -s bogus $DIR/$tdir/$tfile.2 || error "ln failed"
1682         $LFS getstripe -m $DIR/$tdir/$tfile $DIR/$tdir/$tfile.2
1683         local rc=$?
1684         (( rc == 2 )) || error "getstripe did not return ENOENT"
1685 }
1686 run_test 27ga "$LFS getstripe with missing file (should return error)"
1687
1688 test_27i() {
1689         test_mkdir $DIR/$tdir
1690         touch $DIR/$tdir/$tfile || error "touch failed"
1691         [[ $($LFS getstripe -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1692                 error "missing objects"
1693 }
1694 run_test 27i "$LFS getstripe with some objects"
1695
1696 test_27j() {
1697         test_mkdir $DIR/$tdir
1698         $LFS setstripe -i $OSTCOUNT $DIR/$tdir/$tfile &&
1699                 error "setstripe failed" || true
1700 }
1701 run_test 27j "setstripe with bad stripe offset (should return error)"
1702
1703 test_27k() { # bug 2844
1704         test_mkdir $DIR/$tdir
1705         local file=$DIR/$tdir/$tfile
1706         local ll_max_blksize=$((4 * 1024 * 1024))
1707         $LFS setstripe -S 67108864 $file || error "setstripe failed"
1708         local blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1709         [ $blksize -le $ll_max_blksize ] || error "1:$blksize > $ll_max_blksize"
1710         dd if=/dev/zero of=$file bs=4k count=1
1711         blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1712         [ $blksize -le $ll_max_blksize ] || error "2:$blksize > $ll_max_blksize"
1713 }
1714 run_test 27k "limit i_blksize for broken user apps"
1715
1716 test_27l() {
1717         mcreate $DIR/$tfile || error "creating file"
1718         $RUNAS $LFS setstripe -c 1 $DIR/$tfile &&
1719                 error "setstripe should have failed" || true
1720 }
1721 run_test 27l "check setstripe permissions (should return error)"
1722
1723 test_27m() {
1724         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1725
1726         [ -n "$RCLIENTS" -o -n "$MOUNT_2" ] &&
1727                 skip_env "multiple clients -- skipping"
1728
1729         ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1730                    head -n1)
1731         if [[ $ORIGFREE -gt $MAXFREE ]]; then
1732                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1733         fi
1734         trap simple_cleanup_common EXIT
1735         test_mkdir $DIR/$tdir
1736         $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.1
1737         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=1024 count=$MAXFREE &&
1738                 error "dd should fill OST0"
1739         i=2
1740         while $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.$i; do
1741                 i=$((i + 1))
1742                 [ $i -gt 256 ] && break
1743         done
1744         i=$((i + 1))
1745         touch $DIR/$tdir/$tfile.$i
1746         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1747             awk '{print $1}'| grep -w "0") ] &&
1748                 error "OST0 was full but new created file still use it"
1749         i=$((i + 1))
1750         touch $DIR/$tdir/$tfile.$i
1751         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1752             awk '{print $1}'| grep -w "0") ] &&
1753                 error "OST0 was full but new created file still use it"
1754         simple_cleanup_common
1755 }
1756 run_test 27m "create file while OST0 was full"
1757
1758 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1759 # if the OST isn't full anymore.
1760 reset_enospc() {
1761         local OSTIDX=${1:-""}
1762
1763         local list=$(comma_list $(osts_nodes))
1764         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1765
1766         do_nodes $list lctl set_param fail_loc=0
1767         sync    # initiate all OST_DESTROYs from MDS to OST
1768         sleep_maxage
1769 }
1770
1771 exhaust_precreations() {
1772         local OSTIDX=$1
1773         local FAILLOC=$2
1774         local FAILIDX=${3:-$OSTIDX}
1775         local ofacet=ost$((OSTIDX + 1))
1776
1777         test_mkdir -p -c1 $DIR/$tdir
1778         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
1779         local mfacet=mds$((mdtidx + 1))
1780         echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1781
1782         local OST=$(ostname_from_index $OSTIDX)
1783
1784         # on the mdt's osc
1785         local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1786         local last_id=$(do_facet $mfacet lctl get_param -n \
1787                         osp.$mdtosc_proc1.prealloc_last_id)
1788         local next_id=$(do_facet $mfacet lctl get_param -n \
1789                         osp.$mdtosc_proc1.prealloc_next_id)
1790
1791         local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1792         do_facet $mfacet lctl get_param osp.$mdtosc_proc2.prealloc*
1793
1794         test_mkdir -p $DIR/$tdir/${OST}
1795         $LFS setstripe -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1796 #define OBD_FAIL_OST_ENOSPC              0x215
1797         do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1798         echo "Creating to objid $last_id on ost $OST..."
1799         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1800         do_facet $mfacet lctl get_param osp.$mdtosc_proc2.prealloc*
1801         do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1802         sleep_maxage
1803 }
1804
1805 exhaust_all_precreations() {
1806         local i
1807         for (( i=0; i < OSTCOUNT; i++ )) ; do
1808                 exhaust_precreations $i $1 -1
1809         done
1810 }
1811
1812 test_27n() {
1813         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1814         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1815         remote_mds_nodsh && skip "remote MDS with nodsh"
1816         remote_ost_nodsh && skip "remote OST with nodsh"
1817
1818         reset_enospc
1819         rm -f $DIR/$tdir/$tfile
1820         exhaust_precreations 0 0x80000215
1821         $LFS setstripe -c -1 $DIR/$tdir || error "setstripe failed"
1822         touch $DIR/$tdir/$tfile || error "touch failed"
1823         $LFS getstripe $DIR/$tdir/$tfile
1824         reset_enospc
1825 }
1826 run_test 27n "create file with some full OSTs"
1827
1828 test_27o() {
1829         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1830         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1831         remote_mds_nodsh && skip "remote MDS with nodsh"
1832         remote_ost_nodsh && skip "remote OST with nodsh"
1833
1834         reset_enospc
1835         rm -f $DIR/$tdir/$tfile
1836         exhaust_all_precreations 0x215
1837
1838         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1839
1840         reset_enospc
1841         rm -rf $DIR/$tdir/*
1842 }
1843 run_test 27o "create file with all full OSTs (should error)"
1844
1845 test_27p() {
1846         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1847         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1848         remote_mds_nodsh && skip "remote MDS with nodsh"
1849         remote_ost_nodsh && skip "remote OST with nodsh"
1850
1851         reset_enospc
1852         rm -f $DIR/$tdir/$tfile
1853         test_mkdir $DIR/$tdir
1854
1855         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1856         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1857         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1858
1859         exhaust_precreations 0 0x80000215
1860         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1861         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1862         $LFS getstripe $DIR/$tdir/$tfile
1863
1864         reset_enospc
1865 }
1866 run_test 27p "append to a truncated file with some full OSTs"
1867
1868 test_27q() {
1869         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1870         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1871         remote_mds_nodsh && skip "remote MDS with nodsh"
1872         remote_ost_nodsh && skip "remote OST with nodsh"
1873
1874         reset_enospc
1875         rm -f $DIR/$tdir/$tfile
1876
1877         test_mkdir $DIR/$tdir
1878         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1879         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||
1880                 error "truncate $DIR/$tdir/$tfile failed"
1881         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1882
1883         exhaust_all_precreations 0x215
1884
1885         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1886         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1887
1888         reset_enospc
1889 }
1890 run_test 27q "append to truncated file with all OSTs full (should error)"
1891
1892 test_27r() {
1893         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1894         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1895         remote_mds_nodsh && skip "remote MDS with nodsh"
1896         remote_ost_nodsh && skip "remote OST with nodsh"
1897
1898         reset_enospc
1899         rm -f $DIR/$tdir/$tfile
1900         exhaust_precreations 0 0x80000215
1901
1902         $LFS setstripe -i 0 -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1903
1904         reset_enospc
1905 }
1906 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1907
1908 test_27s() { # bug 10725
1909         test_mkdir $DIR/$tdir
1910         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1911         local stripe_count=0
1912         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1913         $LFS setstripe -S $stripe_size -c $stripe_count $DIR/$tdir &&
1914                 error "stripe width >= 2^32 succeeded" || true
1915
1916 }
1917 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1918
1919 test_27t() { # bug 10864
1920         WDIR=$(pwd)
1921         WLFS=$(which lfs)
1922         cd $DIR
1923         touch $tfile
1924         $WLFS getstripe $tfile
1925         cd $WDIR
1926 }
1927 run_test 27t "check that utils parse path correctly"
1928
1929 test_27u() { # bug 4900
1930         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1931         remote_mds_nodsh && skip "remote MDS with nodsh"
1932
1933         local index
1934         local list=$(comma_list $(mdts_nodes))
1935
1936 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1937         do_nodes $list $LCTL set_param fail_loc=0x139
1938         test_mkdir -p $DIR/$tdir
1939         trap simple_cleanup_common EXIT
1940         createmany -o $DIR/$tdir/t- 1000
1941         do_nodes $list $LCTL set_param fail_loc=0
1942
1943         TLOG=$TMP/$tfile.getstripe
1944         $LFS getstripe $DIR/$tdir > $TLOG
1945         OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
1946         unlinkmany $DIR/$tdir/t- 1000
1947         trap 0
1948         [[ $OBJS -gt 0 ]] &&
1949                 error "$OBJS objects created on OST-0. See $TLOG" ||
1950                 rm -f $TLOG
1951 }
1952 run_test 27u "skip object creation on OSC w/o objects"
1953
1954 test_27v() { # bug 4900
1955         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1956         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1957         remote_mds_nodsh && skip "remote MDS with nodsh"
1958         remote_ost_nodsh && skip "remote OST with nodsh"
1959
1960         exhaust_all_precreations 0x215
1961         reset_enospc
1962
1963         $LFS setstripe -c 1 $DIR/$tdir         # 1 stripe / file
1964
1965         touch $DIR/$tdir/$tfile
1966         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1967         # all except ost1
1968         for (( i=1; i < OSTCOUNT; i++ )); do
1969                 do_facet ost$i lctl set_param fail_loc=0x705
1970         done
1971         local START=`date +%s`
1972         createmany -o $DIR/$tdir/$tfile 32
1973
1974         local FINISH=`date +%s`
1975         local TIMEOUT=`lctl get_param -n timeout`
1976         local PROCESS=$((FINISH - START))
1977         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1978                error "$FINISH - $START >= $TIMEOUT / 2"
1979         sleep $((TIMEOUT / 2 - PROCESS))
1980         reset_enospc
1981 }
1982 run_test 27v "skip object creation on slow OST"
1983
1984 test_27w() { # bug 10997
1985         test_mkdir $DIR/$tdir
1986         $LFS setstripe -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1987         [ $($LFS getstripe -S $DIR/$tdir/f0) -ne 65536 ] &&
1988                 error "stripe size $size != 65536" || true
1989         [ $($LFS getstripe -d $DIR/$tdir | grep -c "stripe_count") -eq 0 ] &&
1990                 error "$LFS getstripe -d $DIR/$tdir no 'stripe_count'" || true
1991 }
1992 run_test 27w "check $LFS setstripe -S and getstrip -d options"
1993
1994 test_27wa() {
1995         [[ $OSTCOUNT -lt 2 ]] &&
1996                 skip_env "skipping multiple stripe count/offset test"
1997
1998         test_mkdir $DIR/$tdir
1999         for i in $(seq 1 $OSTCOUNT); do
2000                 offset=$((i - 1))
2001                 $LFS setstripe -c $i -i $offset $DIR/$tdir/f$i ||
2002                         error "setstripe -c $i -i $offset failed"
2003                 count=$($LFS getstripe -c $DIR/$tdir/f$i)
2004                 index=$($LFS getstripe -i $DIR/$tdir/f$i)
2005                 [ $count -ne $i ] && error "stripe count $count != $i" || true
2006                 [ $index -ne $offset ] &&
2007                         error "stripe offset $index != $offset" || true
2008         done
2009 }
2010 run_test 27wa "check $LFS setstripe -c -i options"
2011
2012 test_27x() {
2013         remote_ost_nodsh && skip "remote OST with nodsh"
2014         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2015         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2016
2017         OFFSET=$(($OSTCOUNT - 1))
2018         OSTIDX=0
2019         local OST=$(ostname_from_index $OSTIDX)
2020
2021         test_mkdir $DIR/$tdir
2022         $LFS setstripe -c 1 $DIR/$tdir  # 1 stripe per file
2023         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
2024         sleep_maxage
2025         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
2026         for i in $(seq 0 $OFFSET); do
2027                 [ $($LFS getstripe $DIR/$tdir/$tfile$i | grep -A 10 obdidx |
2028                         awk '{print $1}' | grep -w "$OSTIDX") ] &&
2029                 error "OST0 was degraded but new created file still use it"
2030         done
2031         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
2032 }
2033 run_test 27x "create files while OST0 is degraded"
2034
2035 test_27y() {
2036         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2037         remote_mds_nodsh && skip "remote MDS with nodsh"
2038         remote_ost_nodsh && skip "remote OST with nodsh"
2039         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2040
2041         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
2042         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
2043                 osp.$mdtosc.prealloc_last_id)
2044         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
2045                 osp.$mdtosc.prealloc_next_id)
2046         local fcount=$((last_id - next_id))
2047         [[ $fcount -eq 0 ]] && skip "not enough space on OST0"
2048         [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
2049
2050         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
2051                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
2052         local OST_DEACTIVE_IDX=-1
2053         local OSC
2054         local OSTIDX
2055         local OST
2056
2057         for OSC in $MDS_OSCS; do
2058                 OST=$(osc_to_ost $OSC)
2059                 OSTIDX=$(index_from_ostuuid $OST)
2060                 if [ $OST_DEACTIVE_IDX == -1 ]; then
2061                         OST_DEACTIVE_IDX=$OSTIDX
2062                 fi
2063                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
2064                         echo $OSC "is Deactivated:"
2065                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
2066                 fi
2067         done
2068
2069         OSTIDX=$(index_from_ostuuid $OST)
2070         test_mkdir $DIR/$tdir
2071         $LFS setstripe -c 1 $DIR/$tdir      # 1 stripe / file
2072
2073         for OSC in $MDS_OSCS; do
2074                 OST=$(osc_to_ost $OSC)
2075                 OSTIDX=$(index_from_ostuuid $OST)
2076                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
2077                         echo $OST "is degraded:"
2078                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
2079                                                 obdfilter.$OST.degraded=1
2080                 fi
2081         done
2082
2083         sleep_maxage
2084         createmany -o $DIR/$tdir/$tfile $fcount
2085
2086         for OSC in $MDS_OSCS; do
2087                 OST=$(osc_to_ost $OSC)
2088                 OSTIDX=$(index_from_ostuuid $OST)
2089                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
2090                         echo $OST "is recovered from degraded:"
2091                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
2092                                                 obdfilter.$OST.degraded=0
2093                 else
2094                         do_facet $SINGLEMDS lctl --device %$OSC activate
2095                 fi
2096         done
2097
2098         # all osp devices get activated, hence -1 stripe count restored
2099         local stripe_count=0
2100
2101         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
2102         # devices get activated.
2103         sleep_maxage
2104         $LFS setstripe -c -1 $DIR/$tfile
2105         stripe_count=$($LFS getstripe -c $DIR/$tfile)
2106         rm -f $DIR/$tfile
2107         [ $stripe_count -ne $OSTCOUNT ] &&
2108                 error "Of $OSTCOUNT OSTs, only $stripe_count is available"
2109         return 0
2110 }
2111 run_test 27y "create files while OST0 is degraded and the rest inactive"
2112
2113 check_seq_oid()
2114 {
2115         log "check file $1"
2116
2117         lmm_count=$($LFS getstripe -c $1)
2118         lmm_seq=$($LFS getstripe -v $1 | awk '/lmm_seq/ { print $2 }')
2119         lmm_oid=$($LFS getstripe -v $1 | awk '/lmm_object_id/ { print $2 }')
2120
2121         local old_ifs="$IFS"
2122         IFS=$'[:]'
2123         fid=($($LFS path2fid $1))
2124         IFS="$old_ifs"
2125
2126         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
2127         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
2128
2129         # compare lmm_seq and lu_fid->f_seq
2130         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
2131         # compare lmm_object_id and lu_fid->oid
2132         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
2133
2134         # check the trusted.fid attribute of the OST objects of the file
2135         local have_obdidx=false
2136         local stripe_nr=0
2137         $LFS getstripe $1 | while read obdidx oid hex seq; do
2138                 # skip lines up to and including "obdidx"
2139                 [ -z "$obdidx" ] && break
2140                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
2141                 $have_obdidx || continue
2142
2143                 local ost=$((obdidx + 1))
2144                 local dev=$(ostdevname $ost)
2145                 local oid_hex
2146
2147                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
2148
2149                 seq=$(echo $seq | sed -e "s/^0x//g")
2150                 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
2151                         oid_hex=$(echo $oid)
2152                 else
2153                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
2154                 fi
2155                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
2156
2157                 local ff=""
2158                 #
2159                 # Don't unmount/remount the OSTs if we don't need to do that.
2160                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
2161                 # update too, until that use mount/ll_decode_filter_fid/mount.
2162                 # Re-enable when debugfs will understand new filter_fid.
2163                 #
2164                 if [ $(facet_fstype ost$ost) == ldiskfs ]; then
2165                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
2166                                 $dev 2>/dev/null" | grep "parent=")
2167                 fi
2168                 if [ -z "$ff" ]; then
2169                         stop ost$ost
2170                         mount_fstype ost$ost
2171                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
2172                                 $(facet_mntpt ost$ost)/$obj_file)
2173                         unmount_fstype ost$ost
2174                         start ost$ost $dev $OST_MOUNT_OPTS
2175                         clients_up
2176                 fi
2177
2178                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
2179
2180                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
2181
2182                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
2183                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
2184                 #
2185                 # fid: parent=[0x200000400:0x1e:0x0] stripe=1 stripe_count=2 \
2186                 #       stripe_size=1048576 component_id=1 component_start=0 \
2187                 #       component_end=33554432
2188                 local ff_parent=$(sed -e 's/.*parent=.//' <<<$ff)
2189                 local ff_pseq=$(cut -d: -f1 <<<$ff_parent)
2190                 local ff_poid=$(cut -d: -f2 <<<$ff_parent)
2191                 local ff_pstripe
2192                 if grep -q 'stripe=' <<<$ff; then
2193                         ff_pstripe=$(sed -e 's/.*stripe=//' -e 's/ .*//' <<<$ff)
2194                 else
2195                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
2196                         # into f_ver in this case.  See comment on ff_parent.
2197                         ff_pstripe=$(cut -d: -f3 <<<$ff_parent | sed -e 's/]//')
2198                 fi
2199
2200                 # compare lmm_seq and filter_fid->ff_parent.f_seq
2201                 [ $ff_pseq = $lmm_seq ] ||
2202                         error "FF parent SEQ $ff_pseq != $lmm_seq"
2203                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
2204                 [ $ff_poid = $lmm_oid ] ||
2205                         error "FF parent OID $ff_poid != $lmm_oid"
2206                 (($ff_pstripe == $stripe_nr)) ||
2207                         error "FF stripe $ff_pstripe != $stripe_nr"
2208
2209                 stripe_nr=$((stripe_nr + 1))
2210                 [ $CLIENT_VERSION -lt $(version_code 2.9.55) ] &&
2211                         continue
2212                 if grep -q 'stripe_count=' <<<$ff; then
2213                         local ff_scnt=$(sed -e 's/.*stripe_count=//' \
2214                                             -e 's/ .*//' <<<$ff)
2215                         [ $lmm_count = $ff_scnt ] ||
2216                                 error "FF stripe count $lmm_count != $ff_scnt"
2217                 fi
2218         done
2219 }
2220
2221 test_27z() {
2222         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2223         remote_ost_nodsh && skip "remote OST with nodsh"
2224
2225         test_mkdir $DIR/$tdir
2226         $LFS setstripe -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
2227                 { error "setstripe -c -1 failed"; return 1; }
2228         # We need to send a write to every object to get parent FID info set.
2229         # This _should_ also work for setattr, but does not currently.
2230         # touch $DIR/$tdir/$tfile-1 ||
2231         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
2232                 { error "dd $tfile-1 failed"; return 2; }
2233         $LFS setstripe -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
2234                 { error "setstripe -c -1 failed"; return 3; }
2235         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
2236                 { error "dd $tfile-2 failed"; return 4; }
2237
2238         # make sure write RPCs have been sent to OSTs
2239         sync; sleep 5; sync
2240
2241         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
2242         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
2243 }
2244 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
2245
2246 test_27A() { # b=19102
2247         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2248
2249         save_layout_restore_at_exit $MOUNT
2250         $LFS setstripe -c 0 -i -1 -S 0 $MOUNT
2251         wait_update $HOSTNAME "$LFS getstripe -c $MOUNT | sed 's/  *//g'" "1" 20 ||
2252                 error "stripe count $($LFS getstripe -c $MOUNT) != 1"
2253         local default_size=$($LFS getstripe -S $MOUNT)
2254         local default_offset=$($LFS getstripe -i $MOUNT)
2255         local dsize=$(do_facet $SINGLEMDS \
2256                 "$LCTL get_param -n lod.$(facet_svc $SINGLEMDS)*.stripesize")
2257         [ $default_size -eq $dsize ] ||
2258                 error "stripe size $default_size != $dsize"
2259         [ $default_offset -eq -1 ] ||
2260                 error "stripe offset $default_offset != -1"
2261 }
2262 run_test 27A "check filesystem-wide default LOV EA values"
2263
2264 test_27B() { # LU-2523
2265         test_mkdir $DIR/$tdir
2266         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
2267         touch $DIR/$tdir/f0
2268         # open f1 with O_LOV_DELAY_CREATE
2269         # rename f0 onto f1
2270         # call setstripe ioctl on open file descriptor for f1
2271         # close
2272         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
2273                 $DIR/$tdir/f0
2274
2275         rm -f $DIR/$tdir/f1
2276         # open f1 with O_LOV_DELAY_CREATE
2277         # unlink f1
2278         # call setstripe ioctl on open file descriptor for f1
2279         # close
2280         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
2281
2282         # Allow multiop to fail in imitation of NFS's busted semantics.
2283         true
2284 }
2285 run_test 27B "call setstripe on open unlinked file/rename victim"
2286
2287 # 27C family tests full striping and overstriping
2288 test_27Ca() { #LU-2871
2289         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2290
2291         declare -a ost_idx
2292         local index
2293         local found
2294         local i
2295         local j
2296
2297         test_mkdir $DIR/$tdir
2298         cd $DIR/$tdir
2299         for i in $(seq 0 $((OSTCOUNT - 1))); do
2300                 # set stripe across all OSTs starting from OST$i
2301                 $LFS setstripe -i $i -c -1 $tfile$i
2302                 # get striping information
2303                 ost_idx=($($LFS getstripe $tfile$i |
2304                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2305                 echo ${ost_idx[@]}
2306
2307                 # check the layout
2308                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2309                         error "${#ost_idx[@]} != $OSTCOUNT"
2310
2311                 for index in $(seq 0 $((OSTCOUNT - 1))); do
2312                         found=0
2313                         for j in $(echo ${ost_idx[@]}); do
2314                                 if [ $index -eq $j ]; then
2315                                         found=1
2316                                         break
2317                                 fi
2318                         done
2319                         [ $found = 1 ] ||
2320                                 error "Can not find $index in ${ost_idx[@]}"
2321                 done
2322         done
2323 }
2324 run_test 27Ca "check full striping across all OSTs"
2325
2326 test_27Cb() {
2327         [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
2328                 skip "server does not support overstriping"
2329         [[ $OSTCOUNT -ge $(($LOV_MAX_STRIPE_COUNT / 2)) ]] &&
2330                 skip_env "too many osts, skipping"
2331
2332         test_mkdir -p $DIR/$tdir
2333         local setcount=$(($OSTCOUNT * 2))
2334         [ $setcount -ge 160 ] || large_xattr_enabled ||
2335                 skip_env "ea_inode feature disabled"
2336
2337         $LFS setstripe -C $setcount $DIR/$tdir/$tfile ||
2338                 error "setstripe failed"
2339
2340         local count=$($LFS getstripe -c $DIR/$tdir/$tfile)
2341         [ $count -eq $setcount ] ||
2342                 error "stripe count $count, should be $setcount"
2343
2344         $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "overstriped" ||
2345                 error "overstriped should be set in pattern"
2346
2347         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 conv=notrunc ||
2348                 error "dd failed"
2349 }
2350 run_test 27Cb "more stripes than OSTs with -C"
2351
2352 test_27Cc() {
2353         [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
2354                 skip "server does not support overstriping"
2355         [[ $OSTCOUNT -lt 2 ]] && skip_env "need > 1 OST"
2356
2357         test_mkdir -p $DIR/$tdir
2358         local setcount=$(($OSTCOUNT - 1))
2359
2360         [ $setcount -ge 160 ] || large_xattr_enabled ||
2361                 skip_env "ea_inode feature disabled"
2362
2363         $LFS setstripe -C $setcount $DIR/$tdir/$tfile ||
2364                 error "setstripe failed"
2365
2366         local count=$($LFS getstripe -c $DIR/$tdir/$tfile)
2367         [ $count -eq $setcount ] ||
2368                 error "stripe count $count, should be $setcount"
2369
2370         $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "overstriped" &&
2371                 error "overstriped should not be set in pattern"
2372
2373         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 conv=notrunc ||
2374                 error "dd failed"
2375 }
2376 run_test 27Cc "fewer stripes than OSTs does not set overstriping"
2377
2378 test_27Cd() {
2379         [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
2380                 skip "server does not support overstriping"
2381         [[ $OSTCOUNT -lt 2 ]] && skip_env "need > 1 OST"
2382         large_xattr_enabled || skip_env "ea_inode feature disabled"
2383
2384         test_mkdir -p $DIR/$tdir
2385         local setcount=$LOV_MAX_STRIPE_COUNT
2386
2387         $LFS setstripe -C $setcount $DIR/$tdir/$tfile ||
2388                 error "setstripe failed"
2389
2390         local count=$($LFS getstripe -c $DIR/$tdir/$tfile)
2391         [ $count -eq $setcount ] ||
2392                 error "stripe count $count, should be $setcount"
2393
2394         $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "overstriped" ||
2395                 error "overstriped should be set in pattern"
2396
2397         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 conv=notrunc ||
2398                 error "dd failed"
2399
2400         rm -f $DIR/$tdir/$tfile || error "Delete $tfile failed"
2401 }
2402 run_test 27Cd "test maximum stripe count"
2403
2404 test_27Ce() {
2405         [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
2406                 skip "server does not support overstriping"
2407         test_mkdir -p $DIR/$tdir
2408
2409         pool_add $TESTNAME || error "Pool creation failed"
2410         pool_add_targets $TESTNAME 0 || error "pool_add_targets failed"
2411
2412         local setcount=8
2413
2414         $LFS setstripe  -C $setcount -p "$TESTNAME" $DIR/$tdir/$tfile ||
2415                 error "setstripe failed"
2416
2417         local count=$($LFS getstripe -c $DIR/$tdir/$tfile)
2418         [ $count -eq $setcount ] ||
2419                 error "stripe count $count, should be $setcount"
2420
2421         $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "overstriped" ||
2422                 error "overstriped should be set in pattern"
2423
2424         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 conv=notrunc ||
2425                 error "dd failed"
2426
2427         rm -f $DIR/$tdir/$tfile || error "Delete $tfile failed"
2428 }
2429 run_test 27Ce "test pool with overstriping"
2430
2431 test_27Cf() {
2432         [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
2433                 skip "server does not support overstriping"
2434         [[ $OSTCOUNT -ge $(($LOV_MAX_STRIPE_COUNT / 2)) ]] &&
2435                 skip_env "too many osts, skipping"
2436
2437         test_mkdir -p $DIR/$tdir
2438
2439         local setcount=$(($OSTCOUNT * 2))
2440         [ $setcount -ge 160 ] || large_xattr_enabled ||
2441                 skip_env "ea_inode feature disabled"
2442
2443         $LFS setstripe  -C $setcount $DIR/$tdir/ ||
2444                 error "setstripe failed"
2445
2446         echo 1 > $DIR/$tdir/$tfile
2447
2448         local count=$($LFS getstripe -c $DIR/$tdir/$tfile)
2449         [ $count -eq $setcount ] ||
2450                 error "stripe count $count, should be $setcount"
2451
2452         $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "overstriped" ||
2453                 error "overstriped should be set in pattern"
2454
2455         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 conv=notrunc ||
2456                 error "dd failed"
2457
2458         rm -f $DIR/$tdir/$tfile || error "Delete $tfile failed"
2459 }
2460 run_test 27Cf "test default inheritance with overstriping"
2461
2462 test_27D() {
2463         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
2464         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
2465         remote_mds_nodsh && skip "remote MDS with nodsh"
2466
2467         local POOL=${POOL:-testpool}
2468         local first_ost=0
2469         local last_ost=$(($OSTCOUNT - 1))
2470         local ost_step=1
2471         local ost_list=$(seq $first_ost $ost_step $last_ost)
2472         local ost_range="$first_ost $last_ost $ost_step"
2473
2474         test_mkdir $DIR/$tdir
2475         pool_add $POOL || error "pool_add failed"
2476         pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2477
2478         local skip27D
2479         [ $MDS1_VERSION -lt $(version_code 2.8.55) ] &&
2480                 skip27D+="-s 29"
2481         [ $MDS1_VERSION -lt $(version_code 2.9.55) ] ||
2482                 [ $CLIENT_VERSION -lt $(version_code 2.9.55) ] &&
2483                         skip27D+=" -s 30,31"
2484         [[ ! $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ||
2485           $OSTCOUNT -ge $(($LOV_MAX_STRIPE_COUNT / 2)) ]] &&
2486                 skip27D+=" -s 32,33"
2487         [[ $MDS_VERSION -lt $(version_code $SEL_VER) ]] &&
2488                 skip27D+=" -s 34"
2489         llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT $skip27D ||
2490                 error "llapi_layout_test failed"
2491
2492         destroy_test_pools || error "destroy test pools failed"
2493 }
2494 run_test 27D "validate llapi_layout API"
2495
2496 # Verify that default_easize is increased from its initial value after
2497 # accessing a widely striped file.
2498 test_27E() {
2499         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
2500         [ $CLIENT_VERSION -lt $(version_code 2.5.57) ] &&
2501                 skip "client does not have LU-3338 fix"
2502
2503         # 72 bytes is the minimum space required to store striping
2504         # information for a file striped across one OST:
2505         # (sizeof(struct lov_user_md_v3) +
2506         #  sizeof(struct lov_user_ost_data_v1))
2507         local min_easize=72
2508         $LCTL set_param -n llite.*.default_easize $min_easize ||
2509                 error "lctl set_param failed"
2510         local easize=$($LCTL get_param -n llite.*.default_easize)
2511
2512         [ $easize -eq $min_easize ] ||
2513                 error "failed to set default_easize"
2514
2515         $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2516                 error "setstripe failed"
2517         # In order to ensure stat() call actually talks to MDS we need to
2518         # do something drastic to this file to shake off all lock, e.g.
2519         # rename it (kills lookup lock forcing cache cleaning)
2520         mv $DIR/$tfile $DIR/${tfile}-1
2521         ls -l $DIR/${tfile}-1
2522         rm $DIR/${tfile}-1
2523
2524         easize=$($LCTL get_param -n llite.*.default_easize)
2525
2526         [ $easize -gt $min_easize ] ||
2527                 error "default_easize not updated"
2528 }
2529 run_test 27E "check that default extended attribute size properly increases"
2530
2531 test_27F() { # LU-5346/LU-7975
2532         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2533         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs"
2534         [[ $MDS1_VERSION -lt $(version_code 2.8.51) ]] &&
2535                 skip "Need MDS version at least 2.8.51"
2536         remote_ost_nodsh && skip "remote OST with nodsh"
2537
2538         test_mkdir $DIR/$tdir
2539         rm -f $DIR/$tdir/f0
2540         $LFS setstripe -c 2 $DIR/$tdir
2541
2542         # stop all OSTs to reproduce situation for LU-7975 ticket
2543         for num in $(seq $OSTCOUNT); do
2544                 stop ost$num
2545         done
2546
2547         # open/create f0 with O_LOV_DELAY_CREATE
2548         # truncate f0 to a non-0 size
2549         # close
2550         multiop $DIR/$tdir/f0 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T1050000c
2551
2552         $CHECKSTAT -s 1050000 $DIR/$tdir/f0 || error "checkstat failed"
2553         # open/write it again to force delayed layout creation
2554         cat /etc/hosts > $DIR/$tdir/f0 &
2555         catpid=$!
2556
2557         # restart OSTs
2558         for num in $(seq $OSTCOUNT); do
2559                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
2560                         error "ost$num failed to start"
2561         done
2562
2563         wait $catpid || error "cat failed"
2564
2565         cmp /etc/hosts $DIR/$tdir/f0 || error "cmp failed"
2566         [[ $($LFS getstripe -c $DIR/$tdir/f0) == 2 ]] ||
2567                 error "wrong stripecount"
2568
2569 }
2570 run_test 27F "Client resend delayed layout creation with non-zero size"
2571
2572 test_27G() { #LU-10629
2573         [ $MDS1_VERSION -lt $(version_code 2.11.51) ] &&
2574                 skip "Need MDS version at least 2.11.51"
2575         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
2576         remote_mds_nodsh && skip "remote MDS with nodsh"
2577         local POOL=${POOL:-testpool}
2578         local ostrange="0 0 1"
2579
2580         test_mkdir $DIR/$tdir
2581         pool_add $POOL || error "pool_add failed"
2582         pool_add_targets $POOL $ostrange || error "pool_add_targets failed"
2583         $LFS setstripe -p $POOL $DIR/$tdir
2584
2585         local pool=$($LFS getstripe -p $DIR/$tdir)
2586
2587         [ "$pool" = "$POOL" ] || error "Striping failed got '$pool' not '$POOL'"
2588
2589         $LFS setstripe -d $DIR/$tdir
2590
2591         pool=$($LFS getstripe -p $DIR/$tdir)
2592
2593         rmdir $DIR/$tdir
2594
2595         [ -z "$pool" ] || error "'$pool' is not empty"
2596 }
2597 run_test 27G "Clear OST pool from stripe"
2598
2599 test_27H() {
2600         [[ $MDS1_VERSION -le $(version_code 2.11.54) ]] &&
2601                 skip "Need MDS version newer than 2.11.54"
2602         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
2603         test_mkdir $DIR/$tdir
2604         $LFS setstripe -o 0 -o 2 $DIR/$tdir || error "setstripe failed"
2605         touch $DIR/$tdir/$tfile
2606         $LFS getstripe -c $DIR/$tdir/$tfile
2607         [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
2608                 error "two-stripe file doesn't have two stripes"
2609
2610         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
2611         $LFS getstripe -y $DIR/$tdir/$tfile
2612         (( $($LFS getstripe -y $DIR/$tdir/$tfile |
2613              egrep -c "l_ost_idx: [02]$") == "2" )) ||
2614                 error "expected l_ost_idx: [02]$ not matched"
2615
2616         # make sure ost list has been cleared
2617         local stripesize=$($LFS getstripe -S $DIR/$tdir)
2618         $LFS setstripe -S $((stripesize * 4)) -i 1 \
2619                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
2620         touch $DIR/$tdir/f3
2621         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
2622 }
2623 run_test 27H "Set specific OSTs stripe"
2624
2625 test_27I() {
2626         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2627         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2628         [[ $MDS1_VERSION -gt $(version_code 2.12.52) ]] ||
2629                 skip "Need MDS version newer than 2.12.52"
2630         local pool=$TESTNAME
2631         local ostrange="1 1 1"
2632
2633         save_layout_restore_at_exit $MOUNT
2634         $LFS setstripe -c 2 -i 0 $MOUNT
2635         pool_add $pool || error "pool_add failed"
2636         pool_add_targets $pool $ostrange || "pool_add_targets failed"
2637         test_mkdir $DIR/$tdir
2638         $LFS setstripe -p $pool $DIR/$tdir
2639         $MULTIOP $DIR/$tdir/$tfile Oc || error "multiop failed"
2640         $LFS getstripe $DIR/$tdir/$tfile
2641 }
2642 run_test 27I "check that root dir striping does not break parent dir one"
2643
2644 test_27J() {
2645         [[ $MDS1_VERSION -le $(version_code 2.12.51) ]] &&
2646                 skip "Need MDS version newer than 2.12.51"
2647
2648         test_mkdir $DIR/$tdir
2649         local uuid1=$(cat /proc/sys/kernel/random/uuid)
2650         local uuid2=$(cat /proc/sys/kernel/random/uuid)
2651
2652         # create foreign file (raw way)
2653         create_foreign_file -f $DIR/$tdir/$tfile -x "${uuid1}@${uuid2}" \
2654                 -t 1 -F 0xda08 || error "create_foreign_file failed"
2655
2656         # verify foreign file (raw way)
2657         parse_foreign_file -f $DIR/$tdir/$tfile |
2658                 grep "lov_foreign_magic: 0x0BD70BD0" ||
2659                 error "$DIR/$tdir/$tfile: invalid LOV EA foreign magic"
2660         parse_foreign_file -f $DIR/$tdir/$tfile | grep "lov_xattr_size: 89" ||
2661                 error "$DIR/$tdir/$tfile: invalid LOV EA foreign size"
2662         parse_foreign_file -f $DIR/$tdir/$tfile |
2663                 grep "lov_foreign_size: 73" ||
2664                 error "$DIR/$tdir/$tfile: invalid LOV EA foreign size"
2665         parse_foreign_file -f $DIR/$tdir/$tfile |
2666                 grep "lov_foreign_type: 1" ||
2667                 error "$DIR/$tdir/$tfile: invalid LOV EA foreign type"
2668         parse_foreign_file -f $DIR/$tdir/$tfile |
2669                 grep "lov_foreign_flags: 0x0000DA08" ||
2670                 error "$DIR/$tdir/$tfile: invalid LOV EA foreign flags"
2671         local lov=$(parse_foreign_file -f $DIR/$tdir/$tfile |
2672                 grep "lov_foreign_value: 0x" |
2673                 sed -e 's/lov_foreign_value: 0x//')
2674         local lov2=$(echo -n "${uuid1}@${uuid2}" | od -A n -t x1 -w160)
2675         [[ $lov = ${lov2// /} ]] ||
2676                 error "$DIR/$tdir/$tfile: invalid LOV EA foreign value"
2677
2678         # create foreign file (lfs + API)
2679         $LFS setstripe --foreign=daos --flags 0xda08 \
2680                 -x "${uuid1}@${uuid2}" $DIR/$tdir/${tfile}2 ||
2681                 error "$DIR/$tdir/${tfile}2: create failed"
2682
2683         $LFS getstripe -v $DIR/$tdir/${tfile}2 |
2684                 grep "lfm_magic:.*0x0BD70BD0" ||
2685                 error "$DIR/$tdir/${tfile}2: invalid LOV EA foreign magic"
2686         # lfm_length is LOV EA size - sizeof(lfm_magic) - sizeof(lfm_length)
2687         $LFS getstripe -v $DIR/$tdir/${tfile}2 | grep "lfm_length:.*73" ||
2688                 error "$DIR/$tdir/${tfile}2: invalid LOV EA foreign size"
2689         $LFS getstripe -v $DIR/$tdir/${tfile}2 | grep "lfm_type:.*daos" ||
2690                 error "$DIR/$tdir/${tfile}2: invalid LOV EA foreign type"
2691         $LFS getstripe -v $DIR/$tdir/${tfile}2 |
2692                 grep "lfm_flags:.*0x0000DA08" ||
2693                 error "$DIR/$tdir/${tfile}2: invalid LOV EA foreign flags"
2694         $LFS getstripe $DIR/$tdir/${tfile}2 |
2695                 grep "lfm_value:.*${uuid1}@${uuid2}" ||
2696                 error "$DIR/$tdir/${tfile}2: invalid LOV EA foreign value"
2697
2698         # modify striping should fail
2699         $LFS setstripe -c 2 $DIR/$tdir/$tfile &&
2700                 error "$DIR/$tdir/$tfile: setstripe should fail"
2701         $LFS setstripe -c 2 $DIR/$tdir/${tfile}2 &&
2702                 error "$DIR/$tdir/${tfile}2: setstripe should fail"
2703
2704         # R/W should fail
2705         cat $DIR/$tdir/$tfile && error "$DIR/$tdir/$tfile: read should fail"
2706         cat $DIR/$tdir/${tfile}2 &&
2707                 error "$DIR/$tdir/${tfile}2: read should fail"
2708         cat /etc/passwd > $DIR/$tdir/$tfile &&
2709                 error "$DIR/$tdir/$tfile: write should fail"
2710         cat /etc/passwd > $DIR/$tdir/${tfile}2 &&
2711                 error "$DIR/$tdir/${tfile}2: write should fail"
2712
2713         # chmod should work
2714         chmod 222 $DIR/$tdir/$tfile ||
2715                 error "$DIR/$tdir/$tfile: chmod failed"
2716         chmod 222 $DIR/$tdir/${tfile}2 ||
2717                 error "$DIR/$tdir/${tfile}2: chmod failed"
2718
2719         # chown should work
2720         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/$tfile ||
2721                 error "$DIR/$tdir/$tfile: chown failed"
2722         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/${tfile}2 ||
2723                 error "$DIR/$tdir/${tfile}2: chown failed"
2724
2725         # rename should work
2726         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}.new ||
2727                 error "$DIR/$tdir/$tfile: rename of foreign file has failed"
2728         mv $DIR/$tdir/${tfile}2 $DIR/$tdir/${tfile}2.new ||
2729                 error "$DIR/$tdir/${tfile}2: rename of foreign file has failed"
2730
2731         #remove foreign file
2732         rm $DIR/$tdir/${tfile}.new ||
2733                 error "$DIR/$tdir/${tfile}.new: remove of foreign file has failed"
2734         rm $DIR/$tdir/${tfile}2.new ||
2735                 error "$DIR/$tdir/${tfile}2.new: remove of foreign file has failed"
2736 }
2737 run_test 27J "basic ops on file with foreign LOV"
2738
2739 test_27K() {
2740         [[ $MDS1_VERSION -le $(version_code 2.12.49) ]] &&
2741                 skip "Need MDS version newer than 2.12.49"
2742
2743         test_mkdir $DIR/$tdir
2744         local uuid1=$(cat /proc/sys/kernel/random/uuid)
2745         local uuid2=$(cat /proc/sys/kernel/random/uuid)
2746
2747         # create foreign dir (raw way)
2748         create_foreign_dir -d $DIR/$tdir/$tdir -x "${uuid1}@${uuid2}" -t 1 ||
2749                 error "create_foreign_dir FAILED"
2750
2751         # verify foreign dir (raw way)
2752         parse_foreign_dir -d $DIR/$tdir/$tdir |
2753                 grep "lmv_foreign_magic:.*0xcd50cd0" ||
2754                 error "$DIR/$tdir/$tfile: invalid LMV EA magic"
2755         parse_foreign_dir -d $DIR/$tdir/$tdir | grep "lmv_xattr_size:.*89$" ||
2756                 error "$DIR/$tdir/$tdir: invalid LMV EA size"
2757         parse_foreign_dir -d $DIR/$tdir/$tdir | grep "lmv_foreign_type: 1$" ||
2758                 error "$DIR/$tdir/$tdir: invalid LMV EA type"
2759         parse_foreign_dir -d $DIR/$tdir/$tdir | grep "lmv_foreign_flags: 0$" ||
2760                 error "$DIR/$tdir/$tdir: invalid LMV EA flags"
2761         local lmv=$(parse_foreign_dir -d $DIR/$tdir/$tdir |
2762                 grep "lmv_foreign_value: 0x" |
2763                 sed 's/lmv_foreign_value: 0x//')
2764         local lmv2=$(echo -n "${uuid1}@${uuid2}" | od -A n -t x1 -w160 |
2765                 sed 's/ //g')
2766         [[ $lmv == $lmv2 ]] || error "$DIR/$tdir/$tdir: invalid LMV EA value"
2767
2768         # create foreign dir (lfs + API)
2769         $LFS mkdir --foreign=daos --xattr="${uuid1}@${uuid2}" --flags=0xda05 \
2770                 $DIR/$tdir/${tdir}2 ||
2771                 error "$DIR/$tdir/${tdir}2: create failed"
2772
2773         $LFS getdirstripe -v $DIR/$tdir/${tdir}2 |
2774                 grep "lfm_magic:.*0x0CD50CD0" ||
2775                 error "$DIR/$tdir/${tdir}2: invalid LMV EA magic"
2776         # lfm_length is LMV EA size - sizeof(lfm_magic) - sizeof(lfm_length)
2777         # - sizeof(lfm_type) - sizeof(lfm_flags)
2778         $LFS getdirstripe -v $DIR/$tdir/${tdir}2 | grep "lfm_length:.*73" ||
2779                 error "$DIR/$tdir/${tdir}2: invalid LMV EA size"
2780         $LFS getdirstripe -v $DIR/$tdir/${tdir}2 | grep "lfm_type:.*daos" ||
2781                 error "$DIR/$tdir/${tdir}2: invalid LMV EA type"
2782         $LFS getdirstripe -v $DIR/$tdir/${tdir}2 |
2783                 grep "lfm_flags:.*0x0000DA05" ||
2784                 error "$DIR/$tdir/${tdir}2: invalid LMV EA flags"
2785         $LFS getdirstripe $DIR/$tdir/${tdir}2 |
2786                 grep "lfm_value.*${uuid1}@${uuid2}" ||
2787                 error "$DIR/$tdir/${tdir}2: invalid LMV EA value"
2788
2789         # file create in dir should fail
2790         touch $DIR/$tdir/$tdir/$tfile && "$DIR/$tdir: file create should fail"
2791         touch $DIR/$tdir/${tdir}2/$tfile &&
2792                 "$DIR/${tdir}2: file create should fail"
2793
2794         # chmod should work
2795         chmod 777 $DIR/$tdir/$tdir ||
2796                 error "$DIR/$tdir: chmod failed"
2797         chmod 777 $DIR/$tdir/${tdir}2 ||
2798                 error "$DIR/${tdir}2: chmod failed"
2799
2800         # chown should work
2801         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/$tdir ||
2802                 error "$DIR/$tdir: chown failed"
2803         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/${tdir}2 ||
2804                 error "$DIR/${tdir}2: chown failed"
2805
2806         # rename should work
2807         mv $DIR/$tdir/$tdir $DIR/$tdir/${tdir}.new ||
2808                 error "$DIR/$tdir/$tdir: rename of foreign dir has failed"
2809         mv $DIR/$tdir/${tdir}2 $DIR/$tdir/${tdir}2.new ||
2810                 error "$DIR/$tdir/${tdir}2: rename of foreign dir has failed"
2811
2812         #remove foreign dir
2813         rmdir $DIR/$tdir/${tdir}.new ||
2814                 error "$DIR/$tdir/${tdir}.new: remove of foreign dir has failed"
2815         rmdir $DIR/$tdir/${tdir}2.new ||
2816                 error "$DIR/$tdir/${tdir}2.new: remove of foreign dir has failed"
2817 }
2818 run_test 27K "basic ops on dir with foreign LMV"
2819
2820 test_27L() {
2821         remote_mds_nodsh && skip "remote MDS with nodsh"
2822
2823         local POOL=${POOL:-$TESTNAME}
2824
2825         pool_add $POOL || error "pool_add failed"
2826
2827         lfs pool_list $MOUNT | grep -Fx "${FSNAME}.${POOL}" ||
2828                  error "pool_list does not contain ${FSNAME}.${POOL}:" \
2829                        "$(lfs pool_list $MOUNT | grep -F "${POOL}")"
2830 }
2831 run_test 27L "lfs pool_list gives correct pool name"
2832
2833 test_27M() {
2834         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.12.57) ]] &&
2835                 skip "Need MDS version >= than 2.12.57"
2836         remote_mds_nodsh && skip "remote MDS with nodsh"
2837         [[ $OSTCOUNT -lt 2 ]] && skip_env "need > 1 OST"
2838
2839         test_mkdir $DIR/$tdir
2840
2841         # Set default striping on directory
2842         $LFS setstripe -C 4 $DIR/$tdir
2843
2844         echo 1 > $DIR/$tdir/${tfile}.1
2845         local count=$($LFS getstripe -c $DIR/$tdir/${tfile}.1)
2846         local setcount=4
2847         [ $count -eq $setcount ] ||
2848                 error "(1) stripe count $count, should be $setcount"
2849
2850         # Capture existing append_stripe_count setting for restore
2851         local orig_count=$(do_facet mds1 $LCTL get_param -n mdd.$FSNAME-MDT0000.append_stripe_count)
2852         local mdts=$(comma_list $(mdts_nodes))
2853         stack_trap "do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=$orig_count" EXIT
2854
2855         local appendcount=$orig_count
2856         echo 1 >> $DIR/$tdir/${tfile}.2_append
2857         count=$($LFS getstripe -c $DIR/$tdir/${tfile}.2_append)
2858         [ $count -eq $appendcount ] ||
2859                 error "(2)stripe count $count, should be $appendcount for append"
2860
2861         # Disable O_APPEND striping, verify it works
2862         do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=0
2863
2864         # Should now get the default striping, which is 4
2865         setcount=4
2866         echo 1 >> $DIR/$tdir/${tfile}.3_append
2867         count=$($LFS getstripe -c $DIR/$tdir/${tfile}.3_append)
2868         [ $count -eq $setcount ] ||
2869                 error "(3) stripe count $count, should be $setcount"
2870
2871         # Try changing the stripe count for append files
2872         do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=2
2873
2874         # Append striping is now 2 (directory default is still 4)
2875         appendcount=2
2876         echo 1 >> $DIR/$tdir/${tfile}.4_append
2877         count=$($LFS getstripe -c $DIR/$tdir/${tfile}.4_append)
2878         [ $count -eq $appendcount ] ||
2879                 error "(4) stripe count $count, should be $appendcount for append"
2880
2881         # Test append stripe count of -1
2882         do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=-1
2883         appendcount=$OSTCOUNT
2884         echo 1 >> $DIR/$tdir/${tfile}.5
2885         count=$($LFS getstripe -c $DIR/$tdir/${tfile}.5)
2886         [ $count -eq $appendcount ] ||
2887                 error "(5) stripe count $count, should be $appendcount for append"
2888
2889         # Set append striping back to default of 1
2890         do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=1
2891
2892         # Try a new default striping, PFL + DOM
2893         $LFS setstripe -L mdt -E 1M -E -1 -c 2 $DIR/$tdir
2894
2895         # Create normal DOM file, DOM returns stripe count == 0
2896         setcount=0
2897         touch $DIR/$tdir/${tfile}.6
2898         count=$($LFS getstripe -c $DIR/$tdir/${tfile}.6)
2899         [ $count -eq $setcount ] ||
2900                 error "(6) stripe count $count, should be $setcount"
2901
2902         # Show
2903         appendcount=1
2904         echo 1 >> $DIR/$tdir/${tfile}.7_append
2905         count=$($LFS getstripe -c $DIR/$tdir/${tfile}.7_append)
2906         [ $count -eq $appendcount ] ||
2907                 error "(7) stripe count $count, should be $appendcount for append"
2908
2909         # Clean up DOM layout
2910         $LFS setstripe -d $DIR/$tdir
2911
2912         # Now test that append striping works when layout is from root
2913         $LFS setstripe -c 2 $MOUNT
2914         # Make a special directory for this
2915         mkdir $DIR/${tdir}/${tdir}.2
2916         stack_trap "$LFS setstripe -d $MOUNT" EXIT
2917
2918         # Verify for normal file
2919         setcount=2
2920         echo 1 > $DIR/${tdir}/${tdir}.2/${tfile}.8
2921         count=$($LFS getstripe -c $DIR/$tdir/${tdir}.2/${tfile}.8)
2922         [ $count -eq $setcount ] ||
2923                 error "(8) stripe count $count, should be $setcount"
2924
2925         appendcount=1
2926         echo 1 >> $DIR/${tdir}/${tdir}.2/${tfile}.9_append
2927         count=$($LFS getstripe -c $DIR/${tdir}/${tdir}.2/${tfile}.9_append)
2928         [ $count -eq $appendcount ] ||
2929                 error "(9) stripe count $count, should be $appendcount for append"
2930
2931         # Now test O_APPEND striping with pools
2932         do_nodes $mdts $LCTL set_param mdd.*.append_pool="$TESTNAME"
2933         stack_trap "do_nodes $mdts $LCTL set_param mdd.*.append_pool='none'" EXIT
2934
2935         # Create the pool
2936         pool_add $TESTNAME || error "pool creation failed"
2937         pool_add_targets $TESTNAME 0 1 || error "Pool add targets failed"
2938
2939         echo 1 >> $DIR/$tdir/${tfile}.10_append
2940
2941         pool=$($LFS getstripe -p $DIR/$tdir/${tfile}.10_append)
2942         [ "$pool" = "$TESTNAME" ] || error "(10) incorrect pool: $pool"
2943
2944         # Check that count is still correct
2945         appendcount=1
2946         echo 1 >> $DIR/$tdir/${tfile}.11_append
2947         count=$($LFS getstripe -c $DIR/$tdir/${tfile}.11_append)
2948         [ $count -eq $appendcount ] ||
2949                 error "(11) stripe count $count, should be $appendcount for append"
2950
2951         # Disable O_APPEND stripe count, verify pool works separately
2952         do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=0
2953
2954         echo 1 >> $DIR/$tdir/${tfile}.12_append
2955
2956         pool=$($LFS getstripe -p $DIR/$tdir/${tfile}.12_append)
2957         [ "$pool" = "$TESTNAME" ] || error "(12) incorrect pool: $pool"
2958
2959         # Remove pool setting, verify it's not applied
2960         do_nodes $mdts $LCTL set_param mdd.*.append_pool='none'
2961
2962         echo 1 >> $DIR/$tdir/${tfile}.13_append
2963
2964         pool=$($LFS getstripe -p $DIR/$tdir/${tfile}.13_append)
2965         [ "$pool" = "" ] || error "(13) pool found: $pool"
2966 }
2967 run_test 27M "test O_APPEND striping"
2968
2969 test_27N() {
2970         combined_mgs_mds && skip "needs separate MGS/MDT"
2971
2972         pool_add $TESTNAME || error "pool_add failed"
2973         do_facet mgs "$LCTL pool_list $FSNAME" |
2974                 grep -Fx "${FSNAME}.${TESTNAME}" ||
2975                 error "lctl pool_list on MGS failed"
2976 }
2977 run_test 27N "lctl pool_list on separate MGS gives correct pool name"
2978
2979 # createtest also checks that device nodes are created and
2980 # then visible correctly (#2091)
2981 test_28() { # bug 2091
2982         test_mkdir $DIR/d28
2983         $CREATETEST $DIR/d28/ct || error "createtest failed"
2984 }
2985 run_test 28 "create/mknod/mkdir with bad file types ============"
2986
2987 test_29() {
2988         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2989
2990         sync; sleep 1; sync # flush out any dirty pages from previous tests
2991         cancel_lru_locks
2992         test_mkdir $DIR/d29
2993         touch $DIR/d29/foo
2994         log 'first d29'
2995         ls -l $DIR/d29
2996
2997         declare -i LOCKCOUNTORIG=0
2998         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2999                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
3000         done
3001         [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
3002
3003         declare -i LOCKUNUSEDCOUNTORIG=0
3004         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
3005                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
3006         done
3007
3008         log 'second d29'
3009         ls -l $DIR/d29
3010         log 'done'
3011
3012         declare -i LOCKCOUNTCURRENT=0
3013         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
3014                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
3015         done
3016
3017         declare -i LOCKUNUSEDCOUNTCURRENT=0
3018         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
3019                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
3020         done
3021
3022         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
3023                 $LCTL set_param -n ldlm.dump_namespaces ""
3024                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
3025                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
3026                 log "dumped log to $TMP/test_29.dk (bug 5793)"
3027                 return 2
3028         fi
3029         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
3030                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
3031                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
3032                 log "dumped log to $TMP/test_29.dk (bug 5793)"
3033                 return 3
3034         fi
3035 }
3036 run_test 29 "IT_GETATTR regression  ============================"
3037
3038 test_30a() { # was test_30
3039         cp $(which ls) $DIR || cp /bin/ls $DIR
3040         $DIR/ls / || error "Can't execute binary from lustre"
3041         rm $DIR/ls
3042 }
3043 run_test 30a "execute binary from Lustre (execve) =============="
3044
3045 test_30b() {
3046         cp `which ls` $DIR || cp /bin/ls $DIR
3047         chmod go+rx $DIR/ls
3048         $RUNAS $DIR/ls / || error "Can't execute binary from lustre as non-root"
3049         rm $DIR/ls
3050 }
3051 run_test 30b "execute binary from Lustre as non-root ==========="
3052
3053 test_30c() { # b=22376
3054         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3055
3056         cp `which ls` $DIR || cp /bin/ls $DIR
3057         chmod a-rw $DIR/ls
3058         cancel_lru_locks mdc
3059         cancel_lru_locks osc
3060         $RUNAS $DIR/ls / || error "Can't execute binary from lustre"
3061         rm -f $DIR/ls
3062 }
3063 run_test 30c "execute binary from Lustre without read perms ===="
3064
3065 test_31a() {
3066         $OPENUNLINK $DIR/f31 $DIR/f31 || error "openunlink failed"
3067         $CHECKSTAT -a $DIR/f31 || error "$DIR/f31 exists"
3068 }
3069 run_test 31a "open-unlink file =================================="
3070
3071 test_31b() {
3072         touch $DIR/f31 || error "touch $DIR/f31 failed"
3073         ln $DIR/f31 $DIR/f31b || error "ln failed"
3074         $MULTIOP $DIR/f31b Ouc || error "multiop failed"
3075         $CHECKSTAT -t file $DIR/f31 || error "$DIR/f31 not file type"
3076 }
3077 run_test 31b "unlink file with multiple links while open ======="
3078
3079 test_31c() {
3080         touch $DIR/f31 || error "touch $DIR/f31 failed"
3081         ln $DIR/f31 $DIR/f31c || error "ln failed"
3082         multiop_bg_pause $DIR/f31 O_uc ||
3083                 error "multiop_bg_pause for $DIR/f31 failed"
3084         MULTIPID=$!
3085         $MULTIOP $DIR/f31c Ouc
3086         kill -USR1 $MULTIPID
3087         wait $MULTIPID
3088 }
3089 run_test 31c "open-unlink file with multiple links ============="
3090
3091 test_31d() {
3092         opendirunlink $DIR/d31d $DIR/d31d || error "opendirunlink failed"
3093         $CHECKSTAT -a $DIR/d31d || error "$DIR/d31d exists"
3094 }
3095 run_test 31d "remove of open directory ========================="
3096
3097 test_31e() { # bug 2904
3098         openfilleddirunlink $DIR/d31e || error "openfilleddirunlink failed"
3099 }
3100 run_test 31e "remove of open non-empty directory ==============="
3101
3102 test_31f() { # bug 4554
3103         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3104
3105         set -vx
3106         test_mkdir $DIR/d31f
3107         $LFS setstripe -S 1048576 -c 1 $DIR/d31f
3108         cp /etc/hosts $DIR/d31f
3109         ls -l $DIR/d31f
3110         $LFS getstripe $DIR/d31f/hosts
3111         multiop_bg_pause $DIR/d31f D_c || return 1
3112         MULTIPID=$!
3113
3114         rm -rv $DIR/d31f || error "first of $DIR/d31f"
3115         test_mkdir $DIR/d31f
3116         $LFS setstripe -S 1048576 -c 1 $DIR/d31f
3117         cp /etc/hosts $DIR/d31f
3118         ls -l $DIR/d31f
3119         $LFS getstripe $DIR/d31f/hosts
3120         multiop_bg_pause $DIR/d31f D_c || return 1
3121         MULTIPID2=$!
3122
3123         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
3124         wait $MULTIPID || error "first opendir $MULTIPID failed"
3125
3126         sleep 6
3127
3128         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
3129         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
3130         set +vx
3131 }
3132 run_test 31f "remove of open directory with open-unlink file ==="
3133
3134 test_31g() {
3135         echo "-- cross directory link --"
3136         test_mkdir -c1 $DIR/${tdir}ga
3137         test_mkdir -c1 $DIR/${tdir}gb
3138         touch $DIR/${tdir}ga/f
3139         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
3140         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
3141         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
3142         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
3143         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
3144 }
3145 run_test 31g "cross directory link==============="
3146
3147 test_31h() {
3148         echo "-- cross directory link --"
3149         test_mkdir -c1 $DIR/${tdir}
3150         test_mkdir -c1 $DIR/${tdir}/dir
3151         touch $DIR/${tdir}/f
3152         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
3153         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
3154         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
3155         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
3156         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
3157 }
3158 run_test 31h "cross directory link under child==============="
3159
3160 test_31i() {
3161         echo "-- cross directory link --"
3162         test_mkdir -c1 $DIR/$tdir
3163         test_mkdir -c1 $DIR/$tdir/dir
3164         touch $DIR/$tdir/dir/f
3165         ln $DIR/$tdir/dir/f $DIR/$tdir/g
3166         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
3167         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
3168         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
3169         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
3170 }
3171 run_test 31i "cross directory link under parent==============="
3172
3173 test_31j() {
3174         test_mkdir -c1 -p $DIR/$tdir
3175         test_mkdir -c1 -p $DIR/$tdir/dir1
3176         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
3177         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
3178         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
3179         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
3180         return 0
3181 }
3182 run_test 31j "link for directory==============="
3183
3184 test_31k() {
3185         test_mkdir -c1 -p $DIR/$tdir
3186         touch $DIR/$tdir/s
3187         touch $DIR/$tdir/exist
3188         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
3189         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
3190         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
3191         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
3192         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
3193         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
3194         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
3195         return 0
3196 }
3197 run_test 31k "link to file: the same, non-existing, dir==============="
3198
3199 test_31m() {
3200         mkdir $DIR/d31m
3201         touch $DIR/d31m/s
3202         mkdir $DIR/d31m2
3203         touch $DIR/d31m2/exist
3204         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
3205         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
3206         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
3207         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
3208         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
3209         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
3210         return 0
3211 }
3212 run_test 31m "link to file: the same, non-existing, dir==============="
3213
3214 test_31n() {
3215         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
3216         nlink=$(stat --format=%h $DIR/$tfile)
3217         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
3218         local fd=$(free_fd)
3219         local cmd="exec $fd<$DIR/$tfile"
3220         eval $cmd
3221         cmd="exec $fd<&-"
3222         trap "eval $cmd" EXIT
3223         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
3224         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
3225         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
3226         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
3227         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
3228         eval $cmd
3229 }
3230 run_test 31n "check link count of unlinked file"
3231
3232 link_one() {
3233         local tempfile=$(mktemp $1_XXXXXX)
3234         mlink $tempfile $1 2> /dev/null &&
3235                 echo "$BASHPID: link $tempfile to $1 succeeded"
3236         munlink $tempfile
3237 }
3238
3239 test_31o() { # LU-2901
3240         test_mkdir $DIR/$tdir
3241         for LOOP in $(seq 100); do
3242                 rm -f $DIR/$tdir/$tfile*
3243                 for THREAD in $(seq 8); do
3244                         link_one $DIR/$tdir/$tfile.$LOOP &
3245                 done
3246                 wait
3247                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
3248                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
3249                         error "$LINKS duplicate links to $tfile.$LOOP" &&
3250                         break || true
3251         done
3252 }
3253 run_test 31o "duplicate hard links with same filename"
3254
3255 test_31p() {
3256         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3257
3258         test_mkdir $DIR/$tdir
3259         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3260         $LFS setdirstripe -D -c2 -H all_char $DIR/$tdir/striped_dir
3261
3262         opendirunlink $DIR/$tdir/striped_dir/test1 ||
3263                 error "open unlink test1 failed"
3264         opendirunlink $DIR/$tdir/striped_dir/test2 ||
3265                 error "open unlink test2 failed"
3266
3267         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
3268                 error "test1 still exists"
3269         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
3270                 error "test2 still exists"
3271 }
3272 run_test 31p "remove of open striped directory"
3273
3274 cleanup_test32_mount() {
3275         local rc=0
3276         trap 0
3277         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$//p')
3278         $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
3279         losetup -d $loopdev || true
3280         rm -rf $DIR/$tdir
3281         return $rc
3282 }
3283
3284 test_32a() {
3285         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3286
3287         echo "== more mountpoints and symlinks ================="
3288         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
3289         trap cleanup_test32_mount EXIT
3290         test_mkdir -p $DIR/$tdir/ext2-mountpoint
3291         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3292                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3293         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. ||
3294                 error "$DIR/$tdir/ext2-mountpoint/.. not dir type"
3295         cleanup_test32_mount
3296 }
3297 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
3298
3299 test_32b() {
3300         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3301
3302         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
3303         trap cleanup_test32_mount EXIT
3304         test_mkdir -p $DIR/$tdir/ext2-mountpoint
3305         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3306                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3307         ls -al $DIR/$tdir/ext2-mountpoint/.. ||
3308                 error "Can't list $DIR/$tdir/ext2-mountpoint/.."
3309         cleanup_test32_mount
3310 }
3311 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
3312
3313 test_32c() {
3314         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3315
3316         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
3317         trap cleanup_test32_mount EXIT
3318         test_mkdir -p $DIR/$tdir/ext2-mountpoint
3319         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3320                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3321         test_mkdir -p $DIR/$tdir/d2/test_dir
3322         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
3323                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_dir not dir type"
3324         cleanup_test32_mount
3325 }
3326 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
3327
3328 test_32d() {
3329         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3330
3331         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
3332         trap cleanup_test32_mount EXIT
3333         test_mkdir -p $DIR/$tdir/ext2-mountpoint
3334         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3335                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3336         test_mkdir -p $DIR/$tdir/d2/test_dir
3337         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
3338                 error "Can't list $DIR/$tdir/ext2-mountpoint/../d2/test_dir"
3339         cleanup_test32_mount
3340 }
3341 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir"
3342
3343 test_32e() {
3344         rm -fr $DIR/$tdir
3345         test_mkdir -p $DIR/$tdir/tmp
3346         local tmp_dir=$DIR/$tdir/tmp
3347         ln -s $DIR/$tdir $tmp_dir/symlink11
3348         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
3349         $CHECKSTAT -t link $DIR/$tdir/tmp/symlink11 || error "symlink11 bad"
3350         $CHECKSTAT -t link $DIR/$tdir/symlink01 || error "symlink01 bad"
3351 }
3352 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir"
3353
3354 test_32f() {
3355         rm -fr $DIR/$tdir
3356         test_mkdir -p $DIR/$tdir/tmp
3357         local tmp_dir=$DIR/$tdir/tmp
3358         ln -s $DIR/$tdir $tmp_dir/symlink11
3359         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
3360         ls $DIR/$tdir/tmp/symlink11  || error "symlink11 bad"
3361         ls $DIR/$tdir/symlink01 || error "symlink01 bad"
3362 }
3363 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir"
3364
3365 test_32g() {
3366         local tmp_dir=$DIR/$tdir/tmp
3367         test_mkdir -p $tmp_dir
3368         test_mkdir $DIR/${tdir}2
3369         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
3370         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
3371         $CHECKSTAT -t link $tmp_dir/symlink12 || error "symlink12 not a link"
3372         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error "symlink02 not a link"
3373         $CHECKSTAT -t dir -f $tmp_dir/symlink12 || error "symlink12 not a dir"
3374         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error "symlink12 not a dir"
3375 }
3376 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
3377
3378 test_32h() {
3379         rm -fr $DIR/$tdir $DIR/${tdir}2
3380         tmp_dir=$DIR/$tdir/tmp
3381         test_mkdir -p $tmp_dir
3382         test_mkdir $DIR/${tdir}2
3383         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
3384         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
3385         ls $tmp_dir/symlink12 || error "listing symlink12"
3386         ls $DIR/$tdir/symlink02  || error "listing symlink02"
3387 }
3388 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
3389
3390 test_32i() {
3391         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3392
3393         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
3394         trap cleanup_test32_mount EXIT
3395         test_mkdir -p $DIR/$tdir/ext2-mountpoint
3396         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3397                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3398         touch $DIR/$tdir/test_file
3399         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file ||
3400                 error "$DIR/$tdir/ext2-mountpoint/../test_file not file type"
3401         cleanup_test32_mount
3402 }
3403 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
3404
3405 test_32j() {
3406         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3407
3408         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
3409         trap cleanup_test32_mount EXIT
3410         test_mkdir -p $DIR/$tdir/ext2-mountpoint
3411         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3412                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3413         touch $DIR/$tdir/test_file
3414         cat $DIR/$tdir/ext2-mountpoint/../test_file ||
3415                 error "Can't open $DIR/$tdir/ext2-mountpoint/../test_file"
3416         cleanup_test32_mount
3417 }
3418 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
3419
3420 test_32k() {
3421         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3422
3423         rm -fr $DIR/$tdir
3424         trap cleanup_test32_mount EXIT
3425         test_mkdir -p $DIR/$tdir/ext2-mountpoint
3426         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3427                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3428         test_mkdir -p $DIR/$tdir/d2
3429         touch $DIR/$tdir/d2/test_file || error "touch failed"
3430         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
3431                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_file not file type"
3432         cleanup_test32_mount
3433 }
3434 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
3435
3436 test_32l() {
3437         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3438
3439         rm -fr $DIR/$tdir
3440         trap cleanup_test32_mount EXIT
3441         test_mkdir -p $DIR/$tdir/ext2-mountpoint
3442         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3443                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3444         test_mkdir -p $DIR/$tdir/d2
3445         touch $DIR/$tdir/d2/test_file || error "touch failed"
3446         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
3447                 error "Can't open $DIR/$tdir/ext2-mountpoint/../d2/test_file"
3448         cleanup_test32_mount
3449 }
3450 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
3451
3452 test_32m() {
3453         rm -fr $DIR/d32m
3454         test_mkdir -p $DIR/d32m/tmp
3455         TMP_DIR=$DIR/d32m/tmp
3456         ln -s $DIR $TMP_DIR/symlink11
3457         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
3458         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 ||
3459                 error "symlink11 not a link"
3460         $CHECKSTAT -t link $DIR/d32m/symlink01 ||
3461                 error "symlink01 not a link"
3462 }
3463 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
3464
3465 test_32n() {
3466         rm -fr $DIR/d32n
3467         test_mkdir -p $DIR/d32n/tmp
3468         TMP_DIR=$DIR/d32n/tmp
3469         ln -s $DIR $TMP_DIR/symlink11
3470         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
3471         ls -l $DIR/d32n/tmp/symlink11  || error "listing symlink11"
3472         ls -l $DIR/d32n/symlink01 || error "listing symlink01"
3473 }
3474 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
3475
3476 test_32o() {
3477         touch $DIR/$tfile
3478         test_mkdir -p $DIR/d32o/tmp
3479         TMP_DIR=$DIR/d32o/tmp
3480         ln -s $DIR/$tfile $TMP_DIR/symlink12
3481         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
3482         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 ||
3483                 error "symlink12 not a link"
3484         $CHECKSTAT -t link $DIR/d32o/symlink02 || error "symlink02 not a link"
3485         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 ||
3486                 error "$DIR/d32o/tmp/symlink12 not file type"
3487         $CHECKSTAT -t file -f $DIR/d32o/symlink02 ||
3488                 error "$DIR/d32o/symlink02 not file type"
3489 }
3490 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
3491
3492 test_32p() {
3493         log 32p_1
3494         rm -fr $DIR/d32p
3495         log 32p_2
3496         rm -f $DIR/$tfile
3497         log 32p_3
3498         touch $DIR/$tfile
3499         log 32p_4
3500         test_mkdir -p $DIR/d32p/tmp
3501         log 32p_5
3502         TMP_DIR=$DIR/d32p/tmp
3503         log 32p_6
3504         ln -s $DIR/$tfile $TMP_DIR/symlink12
3505         log 32p_7
3506         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
3507         log 32p_8
3508         cat $DIR/d32p/tmp/symlink12 ||
3509                 error "Can't open $DIR/d32p/tmp/symlink12"
3510         log 32p_9
3511         cat $DIR/d32p/symlink02 || error "Can't open $DIR/d32p/symlink02"
3512         log 32p_10
3513 }
3514 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
3515
3516 test_32q() {
3517         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3518
3519         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
3520         trap cleanup_test32_mount EXIT
3521         test_mkdir -p $DIR/$tdir/ext2-mountpoint
3522         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
3523         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3524                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3525         ls $DIR/$tdir/ext2-mountpoint | grep "\<under_the_mount\>" && error
3526         cleanup_test32_mount
3527 }
3528 run_test 32q "stat follows mountpoints in Lustre (should return error)"
3529
3530 test_32r() {
3531         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3532
3533         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
3534         trap cleanup_test32_mount EXIT
3535         test_mkdir -p $DIR/$tdir/ext2-mountpoint
3536         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
3537         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3538                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3539         ls $DIR/$tdir/ext2-mountpoint | grep -q under_the_mount && error || true
3540         cleanup_test32_mount
3541 }
3542 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
3543
3544 test_33aa() {
3545         rm -f $DIR/$tfile
3546         touch $DIR/$tfile
3547         chmod 444 $DIR/$tfile
3548         chown $RUNAS_ID $DIR/$tfile
3549         log 33_1
3550         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
3551         log 33_2
3552 }
3553 run_test 33aa "write file with mode 444 (should return error)"
3554
3555 test_33a() {
3556         rm -fr $DIR/$tdir
3557         test_mkdir $DIR/$tdir
3558         chown $RUNAS_ID $DIR/$tdir
3559         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile ||
3560                 error "$RUNAS create $tdir/$tfile failed"
3561         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile &&
3562                 error "open RDWR" || true
3563 }
3564 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
3565
3566 test_33b() {
3567         rm -fr $DIR/$tdir
3568         test_mkdir $DIR/$tdir
3569         chown $RUNAS_ID $DIR/$tdir
3570         $RUNAS $OPENFILE -f 1286739555 $DIR/$tdir/$tfile || true
3571 }
3572 run_test 33b "test open file with malformed flags (No panic)"
3573
3574 test_33c() {
3575         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3576         remote_ost_nodsh && skip "remote OST with nodsh"
3577
3578         local ostnum
3579         local ostname
3580         local write_bytes
3581         local all_zeros
3582
3583         all_zeros=:
3584         rm -fr $DIR/$tdir
3585         test_mkdir $DIR/$tdir
3586         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
3587
3588         sync
3589         for ostnum in $(seq $OSTCOUNT); do
3590                 # test-framework's OST numbering is one-based, while Lustre's
3591                 # is zero-based
3592                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
3593                 # Parsing llobdstat's output sucks; we could grep the /proc
3594                 # path, but that's likely to not be as portable as using the
3595                 # llobdstat utility.  So we parse lctl output instead.
3596                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
3597                         obdfilter/$ostname/stats |
3598                         awk '/^write_bytes/ {print $7}' )
3599                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
3600                 if (( ${write_bytes:-0} > 0 ))
3601                 then
3602                         all_zeros=false
3603                         break;
3604                 fi
3605         done
3606
3607         $all_zeros || return 0
3608
3609         # Write four bytes
3610         echo foo > $DIR/$tdir/bar
3611         # Really write them
3612         sync
3613
3614         # Total up write_bytes after writing.  We'd better find non-zeros.
3615         for ostnum in $(seq $OSTCOUNT); do
3616                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
3617                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
3618                         obdfilter/$ostname/stats |
3619                         awk '/^write_bytes/ {print $7}' )
3620                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
3621                 if (( ${write_bytes:-0} > 0 ))
3622                 then
3623                         all_zeros=false
3624                         break;
3625                 fi
3626         done
3627
3628         if $all_zeros
3629         then
3630                 for ostnum in $(seq $OSTCOUNT); do
3631                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
3632                         echo "Check that write_bytes is present in obdfilter/*/stats:"
3633                         do_facet ost$ostnum lctl get_param -n \
3634                                 obdfilter/$ostname/stats
3635                 done
3636                 error "OST not keeping write_bytes stats (b22312)"
3637         fi
3638 }
3639 run_test 33c "test llobdstat and write_bytes"
3640
3641 test_33d() {
3642         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
3643         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3644
3645         local MDTIDX=1
3646         local remote_dir=$DIR/$tdir/remote_dir
3647
3648         test_mkdir $DIR/$tdir
3649         $LFS mkdir -i $MDTIDX $remote_dir ||
3650                 error "create remote directory failed"
3651
3652         touch $remote_dir/$tfile
3653         chmod 444 $remote_dir/$tfile
3654         chown $RUNAS_ID $remote_dir/$tfile
3655
3656         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
3657
3658         chown $RUNAS_ID $remote_dir
3659         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
3660                                         error "create" || true
3661         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
3662                                     error "open RDWR" || true
3663         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
3664 }
3665 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
3666
3667 test_33e() {
3668         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3669
3670         mkdir $DIR/$tdir
3671
3672         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3673         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3674         mkdir $DIR/$tdir/local_dir
3675
3676         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3677         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3678         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3679
3680         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3681                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
3682
3683         rmdir $DIR/$tdir/* || error "rmdir failed"
3684
3685         umask 777
3686         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3687         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3688         mkdir $DIR/$tdir/local_dir
3689
3690         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3691         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3692         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3693
3694         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3695                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
3696
3697         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
3698
3699         umask 000
3700         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3701         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3702         mkdir $DIR/$tdir/local_dir
3703
3704         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3705         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3706         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3707
3708         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3709                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
3710 }
3711 run_test 33e "mkdir and striped directory should have same mode"
3712
3713 cleanup_33f() {
3714         trap 0
3715         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
3716 }
3717
3718 test_33f() {
3719         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3720         remote_mds_nodsh && skip "remote MDS with nodsh"
3721
3722         mkdir $DIR/$tdir
3723         chmod go+rwx $DIR/$tdir
3724         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
3725         trap cleanup_33f EXIT
3726
3727         $RUNAS lfs mkdir -i 0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
3728                 error "cannot create striped directory"
3729
3730         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
3731                 error "cannot create files in striped directory"
3732
3733         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
3734                 error "cannot remove files in striped directory"
3735
3736         $RUNAS rmdir $DIR/$tdir/striped_dir ||
3737                 error "cannot remove striped directory"
3738
3739         cleanup_33f
3740 }
3741 run_test 33f "nonroot user can create, access, and remove a striped directory"
3742
3743 test_33g() {
3744         mkdir -p $DIR/$tdir/dir2
3745
3746         local err=$($RUNAS mkdir $DIR/$tdir/dir2 2>&1)
3747         echo $err
3748         [[ $err =~ "exists" ]] || error "Not exists error"
3749 }
3750 run_test 33g "nonroot user create already existing root created file"
3751
3752 test_33h() {
3753         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3754         [ $MDS1_VERSION -lt $(version_code 2.13.50) ] &&
3755                 skip "Need MDS version at least 2.13.50"
3756
3757         test_mkdir -c $MDSCOUNT -H crush $DIR/$tdir ||
3758                 error "mkdir $tdir failed"
3759         touch $DIR/$tdir/$tfile || error "touch $tfile failed"
3760
3761         local index=$($LFS getstripe -m $DIR/$tdir/$tfile)
3762         local index2
3763
3764         for fname in $DIR/$tdir/$tfile.bak \
3765                      $DIR/$tdir/$tfile.SAV \
3766                      $DIR/$tdir/$tfile.orig \
3767                      $DIR/$tdir/$tfile~; do
3768                 touch $fname  || error "touch $fname failed"
3769                 index2=$($LFS getstripe -m $fname)
3770                 [ $index -eq $index2 ] ||
3771                         error "$fname MDT index mismatch $index != $index2"
3772         done
3773
3774         local failed=0
3775         for i in {1..50}; do
3776                 for fname in $(mktemp -u $DIR/$tdir/.$tfile.XXXXXX) \
3777                              $(mktemp $DIR/$tdir/$tfile.XXXXXXXX); do
3778                         touch $fname  || error "touch $fname failed"
3779                         index2=$($LFS getstripe -m $fname)
3780                         if [[ $index != $index2 ]]; then
3781                                 failed=$((failed + 1))
3782                                 echo "$fname MDT index mismatch $index != $index2"
3783                         fi
3784                 done
3785         done
3786         echo "$failed MDT index mismatches"
3787         (( failed < 4 )) || error "MDT index mismatch $failed times"
3788
3789 }
3790 run_test 33h "temp file is located on the same MDT as target"
3791
3792 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
3793 test_34a() {
3794         rm -f $DIR/f34
3795         $MCREATE $DIR/f34 || error "mcreate failed"
3796         $LFS getstripe $DIR/f34 2>&1 | grep -q "no stripe info" ||
3797                 error "getstripe failed"
3798         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error "truncate failed"
3799         $LFS getstripe $DIR/f34 2>&1 | grep -q "no stripe info" ||
3800                 error "getstripe failed"
3801         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3802                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3803 }
3804 run_test 34a "truncate file that has not been opened ==========="
3805
3806 test_34b() {
3807         [ ! -f $DIR/f34 ] && test_34a
3808         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3809                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3810         $OPENFILE -f O_RDONLY $DIR/f34
3811         $LFS getstripe $DIR/f34 2>&1 | grep -q "no stripe info" ||
3812                 error "getstripe failed"
3813         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3814                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3815 }
3816 run_test 34b "O_RDONLY opening file doesn't create objects ====="
3817
3818 test_34c() {
3819         [ ! -f $DIR/f34 ] && test_34a
3820         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3821                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3822         $OPENFILE -f O_RDWR $DIR/f34
3823         $LFS getstripe $DIR/f34 2>&1 | grep -q "no stripe info" &&
3824                 error "$LFS getstripe failed"
3825         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3826                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3827 }
3828 run_test 34c "O_RDWR opening file-with-size works =============="
3829
3830 test_34d() {
3831         [ ! -f $DIR/f34 ] && test_34a
3832         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 ||
3833                 error "dd failed"
3834         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3835                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3836         rm $DIR/f34
3837 }
3838 run_test 34d "write to sparse file ============================="
3839
3840 test_34e() {
3841         rm -f $DIR/f34e
3842         $MCREATE $DIR/f34e || error "mcreate failed"
3843         $TRUNCATE $DIR/f34e 1000 || error "truncate failed"
3844         $CHECKSTAT -s 1000 $DIR/f34e ||
3845                 error "Size of $DIR/f34e not equal to 1000 bytes"
3846         $OPENFILE -f O_RDWR $DIR/f34e
3847         $CHECKSTAT -s 1000 $DIR/f34e ||
3848                 error "Size of $DIR/f34e not equal to 1000 bytes"
3849 }
3850 run_test 34e "create objects, some with size and some without =="
3851
3852 test_34f() { # bug 6242, 6243
3853         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3854
3855         SIZE34F=48000
3856         rm -f $DIR/f34f
3857         $MCREATE $DIR/f34f || error "mcreate failed"
3858         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
3859         dd if=$DIR/f34f of=$TMP/f34f
3860         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
3861         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
3862         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
3863         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
3864         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
3865 }
3866 run_test 34f "read from a file with no objects until EOF ======="
3867
3868 test_34g() {
3869         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3870
3871         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE ||
3872                 error "dd failed"
3873         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error "truncate failed"
3874         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
3875                 error "Size of $DIR/$tfile not equal to $((TEST_34_SIZE / 2))"
3876         cancel_lru_locks osc
3877         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
3878                 error "wrong size after lock cancel"
3879
3880         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error "truncate failed"
3881         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
3882                 error "expanding truncate failed"
3883         cancel_lru_locks osc
3884         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
3885                 error "wrong expanded size after lock cancel"
3886 }
3887 run_test 34g "truncate long file ==============================="
3888
3889 test_34h() {
3890         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3891
3892         local gid=10
3893         local sz=1000
3894
3895         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error "dd failed"
3896         sync # Flush the cache so that multiop below does not block on cache
3897              # flush when getting the group lock
3898         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
3899         MULTIPID=$!
3900
3901         # Since just timed wait is not good enough, let's do a sync write
3902         # that way we are sure enough time for a roundtrip + processing
3903         # passed + 2 seconds of extra margin.
3904         dd if=/dev/zero of=$DIR/${tfile}-1 bs=$PAGE_SIZE oflag=direct count=1
3905         rm $DIR/${tfile}-1
3906         sleep 2
3907
3908         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
3909                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
3910                 kill -9 $MULTIPID
3911         fi
3912         wait $MULTIPID
3913         local nsz=`stat -c %s $DIR/$tfile`
3914         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
3915 }
3916 run_test 34h "ftruncate file under grouplock should not block"
3917
3918 test_35a() {
3919         cp /bin/sh $DIR/f35a
3920         chmod 444 $DIR/f35a
3921         chown $RUNAS_ID $DIR/f35a
3922         $RUNAS $DIR/f35a && error || true
3923         rm $DIR/f35a
3924 }
3925 run_test 35a "exec file with mode 444 (should return and not leak)"
3926
3927 test_36a() {
3928         rm -f $DIR/f36
3929         utime $DIR/f36 || error "utime failed for MDS"
3930 }
3931 run_test 36a "MDS utime check (mknod, utime)"
3932
3933 test_36b() {
3934         echo "" > $DIR/f36
3935         utime $DIR/f36 || error "utime failed for OST"
3936 }
3937 run_test 36b "OST utime check (open, utime)"
3938
3939 test_36c() {
3940         rm -f $DIR/d36/f36
3941         test_mkdir $DIR/d36
3942         chown $RUNAS_ID $DIR/d36
3943         $RUNAS utime $DIR/d36/f36 || error "utime failed for MDS as non-root"
3944 }
3945 run_test 36c "non-root MDS utime check (mknod, utime)"
3946
3947 test_36d() {
3948         [ ! -d $DIR/d36 ] && test_36c
3949         echo "" > $DIR/d36/f36
3950         $RUNAS utime $DIR/d36/f36 || error "utime failed for OST as non-root"
3951 }
3952 run_test 36d "non-root OST utime check (open, utime)"
3953
3954 test_36e() {
3955         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping"
3956
3957         test_mkdir $DIR/$tdir
3958         touch $DIR/$tdir/$tfile
3959         $RUNAS utime $DIR/$tdir/$tfile &&
3960                 error "utime worked, expected failure" || true
3961 }
3962 run_test 36e "utime on non-owned file (should return error)"
3963
3964 subr_36fh() {
3965         local fl="$1"
3966         local LANG_SAVE=$LANG
3967         local LC_LANG_SAVE=$LC_LANG
3968         export LANG=C LC_LANG=C # for date language
3969
3970         DATESTR="Dec 20  2000"
3971         test_mkdir $DIR/$tdir
3972         lctl set_param fail_loc=$fl
3973         date; date +%s
3974         cp /etc/hosts $DIR/$tdir/$tfile
3975         sync & # write RPC generated with "current" inode timestamp, but delayed
3976         sleep 1
3977         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
3978         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
3979         cancel_lru_locks $OSC
3980         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
3981         date; date +%s
3982         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
3983                 echo "BEFORE: $LS_BEFORE" && \
3984                 echo "AFTER : $LS_AFTER" && \
3985                 echo "WANT  : $DATESTR" && \
3986                 error "$DIR/$tdir/$tfile timestamps changed" || true
3987
3988         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
3989 }
3990
3991 test_36f() {
3992         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3993
3994         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
3995         subr_36fh "0x80000214"
3996 }
3997 run_test 36f "utime on file racing with OST BRW write =========="
3998
3999 test_36g() {
4000         remote_ost_nodsh && skip "remote OST with nodsh"
4001         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4002         [ $MDS1_VERSION -lt $(version_code 2.12.51) ] &&
4003                 skip "Need MDS version at least 2.12.51"
4004
4005         local fmd_max_age
4006         local fmd
4007         local facet="ost1"
4008         local tgt="obdfilter"
4009
4010         [[ $OSC == "mdc" ]] && tgt="mdt" && facet="mds1"
4011
4012         test_mkdir $DIR/$tdir
4013         fmd_max_age=$(do_facet $facet \
4014                 "lctl get_param -n $tgt.*.tgt_fmd_seconds 2> /dev/null | \
4015                 head -n 1")
4016
4017         echo "FMD max age: ${fmd_max_age}s"
4018         touch $DIR/$tdir/$tfile
4019         fmd=$(do_facet $facet "lctl get_param -n $tgt.*.exports.*.fmd_count" |
4020                 gawk '{cnt=cnt+$1}  END{print cnt}')
4021         echo "FMD before: $fmd"
4022         [[ $fmd == 0 ]] &&
4023                 error "FMD wasn't create by touch"
4024         sleep $((fmd_max_age + 12))
4025         fmd=$(do_facet $facet "lctl get_param -n $tgt.*.exports.*.fmd_count" |
4026                 gawk '{cnt=cnt+$1}  END{print cnt}')
4027         echo "FMD after: $fmd"
4028         [[ $fmd == 0 ]] ||
4029                 error "FMD wasn't expired by ping"
4030 }
4031 run_test 36g "FMD cache expiry ====================="
4032
4033 test_36h() {
4034         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4035
4036         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
4037         subr_36fh "0x80000227"
4038 }
4039 run_test 36h "utime on file racing with OST BRW write =========="
4040
4041 test_36i() {
4042         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
4043
4044         test_mkdir $DIR/$tdir
4045         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
4046
4047         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
4048         local new_mtime=$((mtime + 200))
4049
4050         #change Modify time of striped dir
4051         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
4052                         error "change mtime failed"
4053
4054         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
4055
4056         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
4057 }
4058 run_test 36i "change mtime on striped directory"
4059
4060 # test_37 - duplicate with tests 32q 32r
4061
4062 test_38() {
4063         local file=$DIR/$tfile
4064         touch $file
4065         openfile -f O_DIRECTORY $file
4066         local RC=$?
4067         local ENOTDIR=20
4068         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
4069         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
4070 }
4071 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
4072
4073 test_39a() { # was test_39
4074         touch $DIR/$tfile
4075         touch $DIR/${tfile}2
4076 #       ls -l  $DIR/$tfile $DIR/${tfile}2
4077 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
4078 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
4079         sleep 2
4080         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
4081         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
4082                 echo "mtime"
4083                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
4084                 echo "atime"
4085                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
4086                 echo "ctime"
4087                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
4088                 error "O_TRUNC didn't change timestamps"
4089         fi
4090 }
4091 run_test 39a "mtime changed on create"
4092
4093 test_39b() {
4094         test_mkdir -c1 $DIR/$tdir
4095         cp -p /etc/passwd $DIR/$tdir/fopen
4096         cp -p /etc/passwd $DIR/$tdir/flink
4097         cp -p /etc/passwd $DIR/$tdir/funlink
4098         cp -p /etc/passwd $DIR/$tdir/frename
4099         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
4100
4101         sleep 1
4102         echo "aaaaaa" >> $DIR/$tdir/fopen
4103         echo "aaaaaa" >> $DIR/$tdir/flink
4104         echo "aaaaaa" >> $DIR/$tdir/funlink
4105         echo "aaaaaa" >> $DIR/$tdir/frename
4106
4107         local open_new=`stat -c %Y $DIR/$tdir/fopen`
4108         local link_new=`stat -c %Y $DIR/$tdir/flink`
4109         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
4110         local rename_new=`stat -c %Y $DIR/$tdir/frename`
4111
4112         cat $DIR/$tdir/fopen > /dev/null
4113         ln $DIR/$tdir/flink $DIR/$tdir/flink2
4114         rm -f $DIR/$tdir/funlink2
4115         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
4116
4117         for (( i=0; i < 2; i++ )) ; do
4118                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
4119                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
4120                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
4121                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
4122
4123                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
4124                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
4125                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
4126                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
4127
4128                 cancel_lru_locks $OSC
4129                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
4130         done
4131 }
4132 run_test 39b "mtime change on open, link, unlink, rename  ======"
4133
4134 # this should be set to past
4135 TEST_39_MTIME=`date -d "1 year ago" +%s`
4136
4137 # bug 11063
4138 test_39c() {
4139         touch $DIR1/$tfile
4140         sleep 2
4141         local mtime0=`stat -c %Y $DIR1/$tfile`
4142
4143         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
4144         local mtime1=`stat -c %Y $DIR1/$tfile`
4145         [ "$mtime1" = $TEST_39_MTIME ] || \
4146                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
4147
4148         local d1=`date +%s`
4149         echo hello >> $DIR1/$tfile
4150         local d2=`date +%s`
4151         local mtime2=`stat -c %Y $DIR1/$tfile`
4152         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
4153                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
4154
4155         mv $DIR1/$tfile $DIR1/$tfile-1
4156
4157         for (( i=0; i < 2; i++ )) ; do
4158                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
4159                 [ "$mtime2" = "$mtime3" ] || \
4160                         error "mtime ($mtime2) changed (to $mtime3) on rename"
4161
4162                 cancel_lru_locks $OSC
4163                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
4164         done
4165 }
4166 run_test 39c "mtime change on rename ==========================="
4167
4168 # bug 21114
4169 test_39d() {
4170         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4171
4172         touch $DIR1/$tfile
4173         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
4174
4175         for (( i=0; i < 2; i++ )) ; do
4176                 local mtime=`stat -c %Y $DIR1/$tfile`
4177                 [ $mtime = $TEST_39_MTIME ] || \
4178                         error "mtime($mtime) is not set to $TEST_39_MTIME"
4179
4180                 cancel_lru_locks $OSC
4181                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
4182         done
4183 }
4184 run_test 39d "create, utime, stat =============================="
4185
4186 # bug 21114
4187 test_39e() {
4188         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4189
4190         touch $DIR1/$tfile
4191         local mtime1=`stat -c %Y $DIR1/$tfile`
4192
4193         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
4194
4195         for (( i=0; i < 2; i++ )) ; do
4196                 local mtime2=`stat -c %Y $DIR1/$tfile`
4197                 [ $mtime2 = $TEST_39_MTIME ] || \
4198                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
4199
4200                 cancel_lru_locks $OSC
4201                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
4202         done
4203 }
4204 run_test 39e "create, stat, utime, stat ========================"
4205
4206 # bug 21114
4207 test_39f() {
4208         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4209
4210         touch $DIR1/$tfile
4211         mtime1=`stat -c %Y $DIR1/$tfile`
4212
4213         sleep 2
4214         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
4215
4216         for (( i=0; i < 2; i++ )) ; do
4217                 local mtime2=`stat -c %Y $DIR1/$tfile`
4218                 [ $mtime2 = $TEST_39_MTIME ] || \
4219                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
4220
4221                 cancel_lru_locks $OSC
4222                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
4223         done
4224 }
4225 run_test 39f "create, stat, sleep, utime, stat ================="
4226
4227 # bug 11063
4228 test_39g() {
4229         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4230
4231         echo hello >> $DIR1/$tfile
4232         local mtime1=`stat -c %Y $DIR1/$tfile`
4233
4234         sleep 2
4235         chmod o+r $DIR1/$tfile
4236
4237         for (( i=0; i < 2; i++ )) ; do
4238                 local mtime2=`stat -c %Y $DIR1/$tfile`
4239                 [ "$mtime1" = "$mtime2" ] || \
4240                         error "lost mtime: $mtime2, should be $mtime1"
4241
4242                 cancel_lru_locks $OSC
4243                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
4244         done
4245 }
4246 run_test 39g "write, chmod, stat ==============================="
4247
4248 # bug 11063
4249 test_39h() {
4250         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4251
4252         touch $DIR1/$tfile
4253         sleep 1
4254
4255         local d1=`date`
4256         echo hello >> $DIR1/$tfile
4257         local mtime1=`stat -c %Y $DIR1/$tfile`
4258
4259         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
4260         local d2=`date`
4261         if [ "$d1" != "$d2" ]; then
4262                 echo "write and touch not within one second"
4263         else
4264                 for (( i=0; i < 2; i++ )) ; do
4265                         local mtime2=`stat -c %Y $DIR1/$tfile`
4266                         [ "$mtime2" = $TEST_39_MTIME ] || \
4267                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
4268
4269                         cancel_lru_locks $OSC
4270                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
4271                 done
4272         fi
4273 }
4274 run_test 39h "write, utime within one second, stat ============="
4275
4276 test_39i() {
4277         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4278
4279         touch $DIR1/$tfile
4280         sleep 1
4281
4282         echo hello >> $DIR1/$tfile
4283         local mtime1=`stat -c %Y $DIR1/$tfile`
4284
4285         mv $DIR1/$tfile $DIR1/$tfile-1
4286
4287         for (( i=0; i < 2; i++ )) ; do
4288                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
4289
4290                 [ "$mtime1" = "$mtime2" ] || \
4291                         error "lost mtime: $mtime2, should be $mtime1"
4292
4293                 cancel_lru_locks $OSC
4294                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
4295         done
4296 }
4297 run_test 39i "write, rename, stat =============================="
4298
4299 test_39j() {
4300         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4301
4302         start_full_debug_logging
4303         touch $DIR1/$tfile
4304         sleep 1
4305
4306         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
4307         lctl set_param fail_loc=0x80000412
4308         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
4309                 error "multiop failed"
4310         local multipid=$!
4311         local mtime1=`stat -c %Y $DIR1/$tfile`
4312
4313         mv $DIR1/$tfile $DIR1/$tfile-1
4314
4315         kill -USR1 $multipid
4316         wait $multipid || error "multiop close failed"
4317
4318         for (( i=0; i < 2; i++ )) ; do
4319                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
4320                 [ "$mtime1" = "$mtime2" ] ||
4321                         error "mtime is lost on close: $mtime2, " \
4322                               "should be $mtime1"
4323
4324                 cancel_lru_locks
4325                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
4326         done
4327         lctl set_param fail_loc=0
4328         stop_full_debug_logging
4329 }
4330 run_test 39j "write, rename, close, stat ======================="
4331
4332 test_39k() {
4333         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4334
4335         touch $DIR1/$tfile
4336         sleep 1
4337
4338         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
4339         local multipid=$!
4340         local mtime1=`stat -c %Y $DIR1/$tfile`
4341
4342         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
4343
4344         kill -USR1 $multipid
4345         wait $multipid || error "multiop close failed"
4346
4347         for (( i=0; i < 2; i++ )) ; do
4348                 local mtime2=`stat -c %Y $DIR1/$tfile`
4349
4350                 [ "$mtime2" = $TEST_39_MTIME ] || \
4351                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
4352
4353                 cancel_lru_locks
4354                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
4355         done
4356 }
4357 run_test 39k "write, utime, close, stat ========================"
4358
4359 # this should be set to future
4360 TEST_39_ATIME=`date -d "1 year" +%s`
4361
4362 test_39l() {
4363         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4364         remote_mds_nodsh && skip "remote MDS with nodsh"
4365
4366         local atime_diff=$(do_facet $SINGLEMDS \
4367                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
4368         rm -rf $DIR/$tdir
4369         mkdir -p $DIR/$tdir
4370
4371         # test setting directory atime to future
4372         touch -a -d @$TEST_39_ATIME $DIR/$tdir
4373         local atime=$(stat -c %X $DIR/$tdir)
4374         [ "$atime" = $TEST_39_ATIME ] ||
4375                 error "atime is not set to future: $atime, $TEST_39_ATIME"
4376
4377         # test setting directory atime from future to now
4378         local now=$(date +%s)
4379         touch -a -d @$now $DIR/$tdir
4380
4381         atime=$(stat -c %X $DIR/$tdir)
4382         [ "$atime" -eq "$now"  ] ||
4383                 error "atime is not updated from future: $atime, $now"
4384
4385         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
4386         sleep 3
4387
4388         # test setting directory atime when now > dir atime + atime_diff
4389         local d1=$(date +%s)
4390         ls $DIR/$tdir
4391         local d2=$(date +%s)
4392         cancel_lru_locks mdc
4393         atime=$(stat -c %X $DIR/$tdir)
4394         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
4395                 error "atime is not updated  : $atime, should be $d2"
4396
4397         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
4398         sleep 3
4399
4400         # test not setting directory atime when now < dir atime + atime_diff
4401         ls $DIR/$tdir
4402         cancel_lru_locks mdc
4403         atime=$(stat -c %X $DIR/$tdir)
4404         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
4405                 error "atime is updated to $atime, should remain $d1<atime<$d2"
4406
4407         do_facet $SINGLEMDS \
4408                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
4409 }
4410 run_test 39l "directory atime update ==========================="
4411
4412 test_39m() {
4413         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4414
4415         touch $DIR1/$tfile
4416         sleep 2
4417         local far_past_mtime=$(date -d "May 29 1953" +%s)
4418         local far_past_atime=$(date -d "Dec 17 1903" +%s)
4419
4420         touch -m -d @$far_past_mtime $DIR1/$tfile
4421         touch -a -d @$far_past_atime $DIR1/$tfile
4422
4423         for (( i=0; i < 2; i++ )) ; do
4424                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
4425                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
4426                         error "atime or mtime set incorrectly"
4427
4428                 cancel_lru_locks $OSC
4429                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
4430         done
4431 }
4432 run_test 39m "test atime and mtime before 1970"
4433
4434 test_39n() { # LU-3832
4435         remote_mds_nodsh && skip "remote MDS with nodsh"
4436
4437         local atime_diff=$(do_facet $SINGLEMDS \
4438                 lctl get_param -n mdd.*MDT0000*.atime_diff)
4439         local atime0
4440         local atime1
4441         local atime2
4442
4443         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
4444
4445         rm -rf $DIR/$tfile
4446         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
4447         atime0=$(stat -c %X $DIR/$tfile)
4448
4449         sleep 5
4450         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
4451         atime1=$(stat -c %X $DIR/$tfile)
4452
4453         sleep 5
4454         cancel_lru_locks mdc
4455         cancel_lru_locks osc
4456         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
4457         atime2=$(stat -c %X $DIR/$tfile)
4458
4459         do_facet $SINGLEMDS \
4460                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
4461
4462         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
4463         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
4464 }
4465 run_test 39n "check that O_NOATIME is honored"
4466
4467 test_39o() {
4468         TESTDIR=$DIR/$tdir/$tfile
4469         [ -e $TESTDIR ] && rm -rf $TESTDIR
4470         mkdir -p $TESTDIR
4471         cd $TESTDIR
4472         links1=2
4473         ls
4474         mkdir a b
4475         ls
4476         links2=$(stat -c %h .)
4477         [ $(($links1 + 2)) != $links2 ] &&
4478                 error "wrong links count $(($links1 + 2)) != $links2"
4479         rmdir b
4480         links3=$(stat -c %h .)
4481         [ $(($links1 + 1)) != $links3 ] &&
4482                 error "wrong links count $links1 != $links3"
4483         return 0
4484 }
4485 run_test 39o "directory cached attributes updated after create"
4486
4487 test_39p() {
4488         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
4489
4490         local MDTIDX=1
4491         TESTDIR=$DIR/$tdir/$tdir
4492         [ -e $TESTDIR ] && rm -rf $TESTDIR
4493         test_mkdir -p $TESTDIR
4494         cd $TESTDIR
4495         links1=2
4496         ls
4497         test_mkdir -i $MDTIDX $TESTDIR/remote_dir1
4498         test_mkdir -i $MDTIDX $TESTDIR/remote_dir2
4499         ls
4500         links2=$(stat -c %h .)
4501         [ $(($links1 + 2)) != $links2 ] &&
4502                 error "wrong links count $(($links1 + 2)) != $links2"
4503         rmdir remote_dir2
4504         links3=$(stat -c %h .)
4505         [ $(($links1 + 1)) != $links3 ] &&
4506                 error "wrong links count $links1 != $links3"
4507         return 0
4508 }
4509 run_test 39p "remote directory cached attributes updated after create ========"
4510
4511
4512 test_39q() { # LU-8041
4513         local testdir=$DIR/$tdir
4514         mkdir -p $testdir
4515         multiop_bg_pause $testdir D_c || error "multiop failed"
4516         local multipid=$!
4517         cancel_lru_locks mdc
4518         kill -USR1 $multipid
4519         local atime=$(stat -c %X $testdir)
4520         [ "$atime" -ne 0 ] || error "atime is zero"
4521 }
4522 run_test 39q "close won't zero out atime"
4523
4524 test_40() {
4525         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
4526         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
4527                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
4528         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
4529                 error "$tfile is not 4096 bytes in size"
4530 }
4531 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
4532
4533 test_41() {
4534         # bug 1553
4535         small_write $DIR/f41 18
4536 }
4537 run_test 41 "test small file write + fstat ====================="
4538
4539 count_ost_writes() {
4540         lctl get_param -n ${OSC}.*.stats |
4541                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
4542                         END { printf("%0.0f", writes) }'
4543 }
4544
4545 # decent default
4546 WRITEBACK_SAVE=500
4547 DIRTY_RATIO_SAVE=40
4548 MAX_DIRTY_RATIO=50
4549 BG_DIRTY_RATIO_SAVE=10
4550 MAX_BG_DIRTY_RATIO=25
4551
4552 start_writeback() {
4553         trap 0
4554         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
4555         # dirty_ratio, dirty_background_ratio
4556         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
4557                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
4558                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
4559                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
4560         else
4561                 # if file not here, we are a 2.4 kernel
4562                 kill -CONT `pidof kupdated`
4563         fi
4564 }
4565
4566 stop_writeback() {
4567         # setup the trap first, so someone cannot exit the test at the
4568         # exact wrong time and mess up a machine
4569         trap start_writeback EXIT
4570         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
4571         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
4572                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
4573                 sysctl -w vm.dirty_writeback_centisecs=0
4574                 sysctl -w vm.dirty_writeback_centisecs=0
4575                 # save and increase /proc/sys/vm/dirty_ratio
4576                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
4577                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
4578                 # save and increase /proc/sys/vm/dirty_background_ratio
4579                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
4580                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
4581         else
4582                 # if file not here, we are a 2.4 kernel
4583                 kill -STOP `pidof kupdated`
4584         fi
4585 }
4586
4587 # ensure that all stripes have some grant before we test client-side cache
4588 setup_test42() {
4589         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
4590                 dd if=/dev/zero of=$i bs=4k count=1
4591                 rm $i
4592         done
4593 }
4594
4595 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
4596 # file truncation, and file removal.
4597 test_42a() {
4598         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4599
4600         setup_test42
4601         cancel_lru_locks $OSC
4602         stop_writeback
4603         sync; sleep 1; sync # just to be safe
4604         BEFOREWRITES=`count_ost_writes`
4605         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
4606         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
4607         AFTERWRITES=`count_ost_writes`
4608         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
4609                 error "$BEFOREWRITES < $AFTERWRITES"
4610         start_writeback
4611 }
4612 run_test 42a "ensure that we don't flush on close"
4613
4614 test_42b() {
4615         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4616
4617         setup_test42
4618         cancel_lru_locks $OSC
4619         stop_writeback
4620         sync
4621         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
4622         BEFOREWRITES=$(count_ost_writes)
4623         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
4624         AFTERWRITES=$(count_ost_writes)
4625         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
4626                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
4627         fi
4628         BEFOREWRITES=$(count_ost_writes)
4629         sync || error "sync: $?"
4630         AFTERWRITES=$(count_ost_writes)
4631         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
4632                 error "$BEFOREWRITES < $AFTERWRITES on sync"
4633         fi
4634         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
4635         start_writeback
4636         return 0
4637 }
4638 run_test 42b "test destroy of file with cached dirty data ======"
4639
4640 # if these tests just want to test the effect of truncation,
4641 # they have to be very careful.  consider:
4642 # - the first open gets a {0,EOF}PR lock
4643 # - the first write conflicts and gets a {0, count-1}PW
4644 # - the rest of the writes are under {count,EOF}PW
4645 # - the open for truncate tries to match a {0,EOF}PR
4646 #   for the filesize and cancels the PWs.
4647 # any number of fixes (don't get {0,EOF} on open, match
4648 # composite locks, do smarter file size management) fix
4649 # this, but for now we want these tests to verify that
4650 # the cancellation with truncate intent works, so we
4651 # start the file with a full-file pw lock to match against
4652 # until the truncate.
4653 trunc_test() {
4654         test=$1
4655         file=$DIR/$test
4656         offset=$2
4657         cancel_lru_locks $OSC
4658         stop_writeback
4659         # prime the file with 0,EOF PW to match
4660         touch $file
4661         $TRUNCATE $file 0
4662         sync; sync
4663         # now the real test..
4664         dd if=/dev/zero of=$file bs=1024 count=100
4665         BEFOREWRITES=`count_ost_writes`
4666         $TRUNCATE $file $offset
4667         cancel_lru_locks $OSC
4668         AFTERWRITES=`count_ost_writes`
4669         start_writeback
4670 }
4671
4672 test_42c() {
4673         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4674
4675         trunc_test 42c 1024
4676         [ $BEFOREWRITES -eq $AFTERWRITES ] &&
4677                 error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
4678         rm $file
4679 }
4680 run_test 42c "test partial truncate of file with cached dirty data"
4681
4682 test_42d() {
4683         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4684
4685         trunc_test 42d 0
4686         [ $BEFOREWRITES -eq $AFTERWRITES ] ||
4687                 error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
4688         rm $file
4689 }
4690 run_test 42d "test complete truncate of file with cached dirty data"
4691
4692 test_42e() { # bug22074
4693         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4694
4695         local TDIR=$DIR/${tdir}e
4696         local pages=16 # hardcoded 16 pages, don't change it.
4697         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
4698         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
4699         local max_dirty_mb
4700         local warmup_files
4701
4702         test_mkdir $DIR/${tdir}e
4703         $LFS setstripe -c 1 $TDIR
4704         createmany -o $TDIR/f $files
4705
4706         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
4707
4708         # we assume that with $OSTCOUNT files, at least one of them will
4709         # be allocated on OST0.
4710         warmup_files=$((OSTCOUNT * max_dirty_mb))
4711         createmany -o $TDIR/w $warmup_files
4712
4713         # write a large amount of data into one file and sync, to get good
4714         # avail_grant number from OST.
4715         for ((i=0; i<$warmup_files; i++)); do
4716                 idx=$($LFS getstripe -i $TDIR/w$i)
4717                 [ $idx -ne 0 ] && continue
4718                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
4719                 break
4720         done
4721         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
4722         sync
4723         $LCTL get_param $proc_osc0/cur_dirty_bytes
4724         $LCTL get_param $proc_osc0/cur_grant_bytes
4725
4726         # create as much dirty pages as we can while not to trigger the actual
4727         # RPCs directly. but depends on the env, VFS may trigger flush during this
4728         # period, hopefully we are good.
4729         for ((i=0; i<$warmup_files; i++)); do
4730                 idx=$($LFS getstripe -i $TDIR/w$i)
4731                 [ $idx -ne 0 ] && continue
4732                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
4733         done
4734         $LCTL get_param $proc_osc0/cur_dirty_bytes
4735         $LCTL get_param $proc_osc0/cur_grant_bytes
4736
4737         # perform the real test
4738         $LCTL set_param $proc_osc0/rpc_stats 0
4739         for ((;i<$files; i++)); do
4740                 [ $($LFS getstripe -i $TDIR/f$i) -eq 0 ] || continue
4741                 dd if=/dev/zero of=$TDIR/f$i bs=$PAGE_SIZE count=$pages 2>/dev/null
4742         done
4743         sync
4744         $LCTL get_param $proc_osc0/rpc_stats
4745
4746         local percent=0
4747         local have_ppr=false
4748         $LCTL get_param $proc_osc0/rpc_stats |
4749                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
4750                         # skip lines until we are at the RPC histogram data
4751                         [ "$PPR" == "pages" ] && have_ppr=true && continue
4752                         $have_ppr || continue
4753
4754                         # we only want the percent stat for < 16 pages
4755                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
4756
4757                         percent=$((percent + WPCT))
4758                         if [[ $percent -gt 15 ]]; then
4759                                 error "less than 16-pages write RPCs" \
4760                                       "$percent% > 15%"
4761                                 break
4762                         fi
4763                 done
4764         rm -rf $TDIR
4765 }
4766 run_test 42e "verify sub-RPC writes are not done synchronously"
4767
4768 test_43A() { # was test_43
4769         test_mkdir $DIR/$tdir
4770         cp -p /bin/ls $DIR/$tdir/$tfile
4771         $MULTIOP $DIR/$tdir/$tfile Ow_c &
4772         pid=$!
4773         # give multiop a chance to open
4774         sleep 1
4775
4776         $DIR/$tdir/$tfile && error "execute $DIR/$tdir/$tfile succeeded" || true
4777         kill -USR1 $pid
4778 }
4779 run_test 43A "execution of file opened for write should return -ETXTBSY"
4780
4781 test_43a() {
4782         test_mkdir $DIR/$tdir
4783         cp -p $(which sleep) $DIR/$tdir/sleep || error "can't copy"
4784         $DIR/$tdir/sleep 60 &
4785         SLEEP_PID=$!
4786         # Make sure exec of $tdir/sleep wins race with truncate
4787         sleep 1
4788         $MULTIOP $DIR/$tdir/sleep Oc && error "expected error, got success"
4789         kill $SLEEP_PID
4790 }
4791 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
4792
4793 test_43b() {
4794         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4795
4796         test_mkdir $DIR/$tdir
4797         cp -p $(which sleep) $DIR/$tdir/sleep || error "can't copy"
4798         $DIR/$tdir/sleep 60 &
4799         SLEEP_PID=$!
4800         # Make sure exec of $tdir/sleep wins race with truncate
4801         sleep 1
4802         $TRUNCATE $DIR/$tdir/sleep 0 && error "expected error, got success"
4803         kill $SLEEP_PID
4804 }
4805 run_test 43b "truncate of file being executed should return -ETXTBSY"
4806
4807 test_43c() {
4808         local testdir="$DIR/$tdir"
4809         test_mkdir $testdir
4810         cp $SHELL $testdir/
4811         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) |
4812                 ( cd $testdir && md5sum -c )
4813 }
4814 run_test 43c "md5sum of copy into lustre"
4815
4816 test_44A() { # was test_44
4817         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
4818
4819         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
4820         dd if=$DIR/f1 bs=4k count=1 > /dev/null
4821 }
4822 run_test 44A "zero length read from a sparse stripe"
4823
4824 test_44a() {
4825         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
4826                 awk '{ print $2 }')
4827         [ -z "$nstripe" ] && skip "can't get stripe info"
4828         [[ $nstripe -gt $OSTCOUNT ]] &&
4829                 skip "Wrong default_stripe_count: $nstripe OSTCOUNT: $OSTCOUNT"
4830
4831         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
4832                 awk '{ print $2 }')
4833         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
4834                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
4835                         awk '{ print $2 }')
4836         fi
4837
4838         OFFSETS="0 $((stride/2)) $((stride-1))"
4839         for offset in $OFFSETS; do
4840                 for i in $(seq 0 $((nstripe-1))); do
4841                         local GLOBALOFFSETS=""
4842                         # size in Bytes
4843                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
4844                         local myfn=$DIR/d44a-$size
4845                         echo "--------writing $myfn at $size"
4846                         ll_sparseness_write $myfn $size ||
4847                                 error "ll_sparseness_write"
4848                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
4849                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
4850                                 error "ll_sparseness_verify $GLOBALOFFSETS"
4851
4852                         for j in $(seq 0 $((nstripe-1))); do
4853                                 # size in Bytes
4854                                 size=$((((j + $nstripe )*$stride + $offset)))
4855                                 ll_sparseness_write $myfn $size ||
4856                                         error "ll_sparseness_write"
4857                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
4858                         done
4859                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
4860                                 error "ll_sparseness_verify $GLOBALOFFSETS"
4861                         rm -f $myfn
4862                 done
4863         done
4864 }
4865 run_test 44a "test sparse pwrite ==============================="
4866
4867 dirty_osc_total() {
4868         tot=0
4869         for d in `lctl get_param -n ${OSC}.*.cur_dirty_bytes`; do
4870                 tot=$(($tot + $d))
4871         done
4872         echo $tot
4873 }
4874 do_dirty_record() {
4875         before=`dirty_osc_total`
4876         echo executing "\"$*\""
4877         eval $*
4878         after=`dirty_osc_total`
4879         echo before $before, after $after
4880 }
4881 test_45() {
4882         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4883
4884         f="$DIR/f45"
4885         # Obtain grants from OST if it supports it
4886         echo blah > ${f}_grant
4887         stop_writeback
4888         sync
4889         do_dirty_record "echo blah > $f"
4890         [[ $before -eq $after ]] && error "write wasn't cached"
4891         do_dirty_record "> $f"
4892         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
4893         do_dirty_record "echo blah > $f"
4894         [[ $before -eq $after ]] && error "write wasn't cached"
4895         do_dirty_record "sync"
4896         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
4897         do_dirty_record "echo blah > $f"
4898         [[ $before -eq $after ]] && error "write wasn't cached"
4899         do_dirty_record "cancel_lru_locks osc"
4900         [[ $before -gt $after ]] ||
4901                 error "lock cancellation didn't lower dirty count"
4902         start_writeback
4903 }
4904 run_test 45 "osc io page accounting ============================"
4905
4906 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
4907 # test tickles a bug where re-dirtying a page was failing to be mapped to the
4908 # objects offset and an assert hit when an rpc was built with 1023's mapped
4909 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
4910 test_46() {
4911         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4912
4913         f="$DIR/f46"
4914         stop_writeback
4915         sync
4916         dd if=/dev/zero of=$f bs=$PAGE_SIZE seek=511 count=1
4917         sync
4918         dd conv=notrunc if=/dev/zero of=$f bs=$PAGE_SIZE seek=1023 count=1
4919         dd conv=notrunc if=/dev/zero of=$f bs=$PAGE_SIZE seek=511 count=1
4920         sync
4921         start_writeback
4922 }
4923 run_test 46 "dirtying a previously written page ================"
4924
4925 # test_47 is removed "Device nodes check" is moved to test_28
4926
4927 test_48a() { # bug 2399
4928         [ "$mds1_FSTYPE" = "zfs" ] &&
4929         [ $MDS1_VERSION -lt $(version_code 2.3.63) ] &&
4930                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly"
4931
4932         test_mkdir $DIR/$tdir
4933         cd $DIR/$tdir
4934         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
4935         test_mkdir $DIR/$tdir
4936         touch foo || error "'touch foo' failed after recreating cwd"
4937         test_mkdir bar
4938         touch .foo || error "'touch .foo' failed after recreating cwd"
4939         test_mkdir .bar
4940         ls . > /dev/null || error "'ls .' failed after recreating cwd"
4941         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4942         cd . || error "'cd .' failed after recreating cwd"
4943         mkdir . && error "'mkdir .' worked after recreating cwd"
4944         rmdir . && error "'rmdir .' worked after recreating cwd"
4945         ln -s . baz || error "'ln -s .' failed after recreating cwd"
4946         cd .. || error "'cd ..' failed after recreating cwd"
4947 }
4948 run_test 48a "Access renamed working dir (should return errors)="
4949
4950 test_48b() { # bug 2399
4951         rm -rf $DIR/$tdir
4952         test_mkdir $DIR/$tdir
4953         cd $DIR/$tdir
4954         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
4955         touch foo && error "'touch foo' worked after removing cwd"
4956         mkdir foo && error "'mkdir foo' worked after removing cwd"
4957         touch .foo && error "'touch .foo' worked after removing cwd"
4958         mkdir .foo && error "'mkdir .foo' worked after removing cwd"
4959         ls . > /dev/null && error "'ls .' worked after removing cwd"
4960         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4961         mkdir . && error "'mkdir .' worked after removing cwd"
4962         rmdir . && error "'rmdir .' worked after removing cwd"
4963         ln -s . foo && error "'ln -s .' worked after removing cwd"
4964         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
4965 }
4966 run_test 48b "Access removed working dir (should return errors)="
4967
4968 test_48c() { # bug 2350
4969         #lctl set_param debug=-1
4970         #set -vx
4971         rm -rf $DIR/$tdir
4972         test_mkdir -p $DIR/$tdir/dir
4973         cd $DIR/$tdir/dir
4974         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4975         $TRACE touch foo && error "touch foo worked after removing cwd"
4976         $TRACE mkdir foo && error "'mkdir foo' worked after removing cwd"
4977         touch .foo && error "touch .foo worked after removing cwd"
4978         mkdir .foo && error "mkdir .foo worked after removing cwd"
4979         $TRACE ls . && error "'ls .' worked after removing cwd"
4980         $TRACE ls .. || error "'ls ..' failed after removing cwd"
4981         $TRACE mkdir . && error "'mkdir .' worked after removing cwd"
4982         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
4983         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
4984         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
4985 }
4986 run_test 48c "Access removed working subdir (should return errors)"
4987
4988 test_48d() { # bug 2350
4989         #lctl set_param debug=-1
4990         #set -vx
4991         rm -rf $DIR/$tdir
4992         test_mkdir -p $DIR/$tdir/dir
4993         cd $DIR/$tdir/dir
4994         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4995         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4996         $TRACE touch foo && error "'touch foo' worked after removing parent"
4997         $TRACE mkdir foo && error "mkdir foo worked after removing parent"
4998         touch .foo && error "'touch .foo' worked after removing parent"
4999         mkdir .foo && error "mkdir .foo worked after removing parent"
5000         $TRACE ls . && error "'ls .' worked after removing parent"
5001         $TRACE ls .. && error "'ls ..' worked after removing parent"
5002         $TRACE mkdir . && error "'mkdir .' worked after removing parent"
5003         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
5004         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
5005         true
5006 }
5007 run_test 48d "Access removed parent subdir (should return errors)"
5008
5009 test_48e() { # bug 4134
5010         #lctl set_param debug=-1
5011         #set -vx
5012         rm -rf $DIR/$tdir
5013         test_mkdir -p $DIR/$tdir/dir
5014         cd $DIR/$tdir/dir
5015         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
5016         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
5017         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
5018         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
5019         # On a buggy kernel addition of "touch foo" after cd .. will
5020         # produce kernel oops in lookup_hash_it
5021         touch ../foo && error "'cd ..' worked after recreate parent"
5022         cd $DIR
5023         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
5024 }
5025 run_test 48e "Access to recreated parent subdir (should return errors)"
5026
5027 test_49() { # LU-1030
5028         [ $PARALLEL == "yes" ] && skip "skip parallel run"
5029         remote_ost_nodsh && skip "remote OST with nodsh"
5030
5031         # get ost1 size - $FSNAME-OST0000
5032         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
5033                 awk '{ print $4 }')
5034         # write 800M at maximum
5035         [[ $ost1_size -lt 2 ]] && ost1_size=2
5036         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
5037
5038         $LFS setstripe -c 1 -i 0 $DIR/$tfile
5039         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
5040         local dd_pid=$!
5041
5042         # change max_pages_per_rpc while writing the file
5043         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
5044         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
5045         # loop until dd process exits
5046         while ps ax -opid | grep -wq $dd_pid; do
5047                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
5048                 sleep $((RANDOM % 5 + 1))
5049         done
5050         # restore original max_pages_per_rpc
5051         $LCTL set_param $osc1_mppc=$orig_mppc
5052         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
5053 }
5054 run_test 49 "Change max_pages_per_rpc won't break osc extent"
5055
5056 test_50() {
5057         # bug 1485
5058         test_mkdir $DIR/$tdir
5059         cd $DIR/$tdir
5060         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
5061 }
5062 run_test 50 "special situations: /proc symlinks  ==============="
5063
5064 test_51a() {    # was test_51
5065         # bug 1516 - create an empty entry right after ".." then split dir
5066         test_mkdir -c1 $DIR/$tdir
5067         touch $DIR/$tdir/foo
5068         $MCREATE $DIR/$tdir/bar
5069         rm $DIR/$tdir/foo
5070         createmany -m $DIR/$tdir/longfile 201
5071         FNUM=202
5072         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
5073                 $MCREATE $DIR/$tdir/longfile$FNUM
5074                 FNUM=$(($FNUM + 1))
5075                 echo -n "+"
5076         done
5077         echo
5078         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
5079 }
5080 run_test 51a "special situations: split htree with empty entry =="
5081
5082 cleanup_print_lfs_df () {
5083         trap 0
5084         $LFS df
5085         $LFS df -i
5086 }
5087
5088 test_51b() {
5089         [ $PARALLEL == "yes" ] && skip "skip parallel run"
5090
5091         local dir=$DIR/$tdir
5092         local nrdirs=$((65536 + 100))
5093
5094         # cleanup the directory
5095         rm -fr $dir
5096
5097         test_mkdir -c1 $dir
5098
5099         $LFS df
5100         $LFS df -i
5101         local mdtidx=$(printf "%04x" $($LFS getstripe -m $dir))
5102         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
5103         [[ $numfree -lt $nrdirs ]] &&
5104                 skip "not enough free inodes ($numfree) on MDT$mdtidx"
5105
5106         # need to check free space for the directories as well
5107         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
5108         numfree=$(( blkfree / $(fs_inode_ksize) ))
5109         [[ $numfree -lt $nrdirs ]] && skip "not enough blocks ($numfree)"
5110
5111         trap cleanup_print_lfs_df EXIT
5112
5113         # create files
5114         createmany -d $dir/d $nrdirs || {
5115                 unlinkmany $dir/d $nrdirs
5116                 error "failed to create $nrdirs subdirs in MDT$mdtidx:$dir"
5117         }
5118
5119         # really created :
5120         nrdirs=$(ls -U $dir | wc -l)
5121
5122         # unlink all but 100 subdirectories, then check it still works
5123         local left=100
5124         local delete=$((nrdirs - left))
5125
5126         $LFS df
5127         $LFS df -i
5128
5129         # for ldiskfs the nlink count should be 1, but this is OSD specific
5130         # and so this is listed for informational purposes only
5131         echo "nlink before: $(stat -c %h $dir), created before: $nrdirs"
5132         unlinkmany -d $dir/d $delete ||
5133                 error "unlink of first $delete subdirs failed"
5134
5135         echo "nlink between: $(stat -c %h $dir)"
5136         local found=$(ls -U $dir | wc -l)
5137         [ $found -ne $left ] &&
5138                 error "can't find subdirs: found only $found, expected $left"
5139
5140         unlinkmany -d $dir/d $delete $left ||
5141                 error "unlink of second $left subdirs failed"
5142         # regardless of whether the backing filesystem tracks nlink accurately
5143         # or not, the nlink count shouldn't be more than "." and ".." here
5144         local after=$(stat -c %h $dir)
5145         [[ $after -gt 2 ]] && error "nlink after: $after > 2" ||
5146                 echo "nlink after: $after"
5147
5148         cleanup_print_lfs_df
5149 }
5150 run_test 51b "exceed 64k subdirectory nlink limit on create, verify unlink"
5151
5152 test_51d() {
5153         [ $PARALLEL == "yes" ] && skip "skip parallel run"
5154         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
5155
5156         test_mkdir $DIR/$tdir
5157         createmany -o $DIR/$tdir/t- 1000
5158         $LFS getstripe $DIR/$tdir > $TMP/$tfile
5159         for N in $(seq 0 $((OSTCOUNT - 1))); do
5160                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
5161                         END { printf("%0.0f", objs) }' $TMP/$tfile)
5162                 OBJS0[$N]=$(grep -A 1 idx $TMP/$tfile | awk -vobjs=0 \
5163                         '($1 == '$N') { objs += 1 } \
5164                         END { printf("%0.0f", objs) }')
5165                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
5166         done
5167         unlinkmany $DIR/$tdir/t- 1000
5168
5169         NLAST=0
5170         for N in $(seq 1 $((OSTCOUNT - 1))); do
5171                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
5172                         error "OST $N has less objects vs OST $NLAST" \
5173                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
5174                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
5175                         error "OST $N has less objects vs OST $NLAST" \
5176                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
5177
5178                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
5179                         error "OST $N has less #0 objects vs OST $NLAST" \
5180                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
5181                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
5182                         error "OST $N has less #0 objects vs OST $NLAST" \
5183                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
5184                 NLAST=$N
5185         done
5186         rm -f $TMP/$tfile
5187 }
5188 run_test 51d "check object distribution"
5189
5190 test_51e() {
5191         if [ "$mds1_FSTYPE" != ldiskfs ]; then
5192                 skip_env "ldiskfs only test"
5193         fi
5194
5195         test_mkdir -c1 $DIR/$tdir
5196         test_mkdir -c1 $DIR/$tdir/d0
5197
5198         touch $DIR/$tdir/d0/foo
5199         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
5200                 error "file exceed 65000 nlink limit!"
5201         unlinkmany $DIR/$tdir/d0/f- 65001
5202         return 0
5203 }
5204 run_test 51e "check file nlink limit"
5205
5206 test_51f() {
5207         test_mkdir $DIR/$tdir
5208
5209         local max=100000
5210         local ulimit_old=$(ulimit -n)
5211         local spare=20 # number of spare fd's for scripts/libraries, etc.
5212         local mdt=$($LFS getstripe -m $DIR/$tdir)
5213         local numfree=$($LFS df -i $DIR/$tdir | awk '/MDT:'$mdt'/ { print $4 }')
5214
5215         echo "MDT$mdt numfree=$numfree, max=$max"
5216         [[ $numfree -gt $max ]] && numfree=$max || numfree=$((numfree * 7 / 8))
5217         if [ $((numfree + spare)) -gt $ulimit_old ]; then
5218                 while ! ulimit -n $((numfree + spare)); do
5219                         numfree=$((numfree * 3 / 4))
5220                 done
5221                 echo "changed ulimit from $ulimit_old to $((numfree + spare))"
5222         else
5223                 echo "left ulimit at $ulimit_old"
5224         fi
5225
5226         createmany -o -k -t 120 $DIR/$tdir/f $numfree || {
5227                 unlinkmany $DIR/$tdir/f $numfree
5228                 error "create+open $numfree files in $DIR/$tdir failed"
5229         }
5230         ulimit -n $ulimit_old
5231
5232         # if createmany exits at 120s there will be fewer than $numfree files
5233         unlinkmany $DIR/$tdir/f $numfree || true
5234 }
5235 run_test 51f "check many open files limit"
5236
5237 test_52a() {
5238         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
5239         test_mkdir $DIR/$tdir
5240         touch $DIR/$tdir/foo
5241         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
5242         echo bar >> $DIR/$tdir/foo || error "append bar failed"
5243         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
5244         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
5245         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
5246                                         error "link worked"
5247         echo foo >> $DIR/$tdir/foo || error "append foo failed"
5248         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
5249         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
5250                                                      error "lsattr"
5251         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
5252         cp -r $DIR/$tdir $TMP/
5253         rm -fr $DIR/$tdir $TMP/$tdir || error "cleanup rm failed"
5254 }
5255 run_test 52a "append-only flag test (should return errors)"
5256
5257 test_52b() {
5258         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
5259         test_mkdir $DIR/$tdir
5260         touch $DIR/$tdir/foo
5261         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
5262         cat test > $DIR/$tdir/foo && error "cat test worked"
5263         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
5264         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
5265         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
5266                                         error "link worked"
5267         echo foo >> $DIR/$tdir/foo && error "echo worked"
5268         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
5269         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
5270         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
5271         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
5272                                                         error "lsattr"
5273         chattr -i $DIR/$tdir/foo || error "chattr failed"
5274
5275         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
5276 }
5277 run_test 52b "immutable flag test (should return errors) ======="
5278
5279 test_53() {
5280         [ $PARALLEL == "yes" ] && skip "skip parallel run"
5281         remote_mds_nodsh && skip "remote MDS with nodsh"
5282         remote_ost_nodsh && skip "remote OST with nodsh"
5283
5284         local param
5285         local param_seq
5286         local ostname
5287         local mds_last
5288         local mds_last_seq
5289         local ost_last
5290         local ost_last_seq
5291         local ost_last_id
5292         local ostnum
5293         local node
5294         local found=false
5295         local support_last_seq=true
5296
5297         [[ $MDS1_VERSION -ge $(version_code 2.3.60) ]] ||
5298                 support_last_seq=false
5299
5300         # only test MDT0000
5301         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
5302         local value
5303         for value in $(do_facet $SINGLEMDS \
5304                        $LCTL get_param osp.$mdtosc.prealloc_last_id) ; do
5305                 param=$(echo ${value[0]} | cut -d "=" -f1)
5306                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
5307
5308                 if $support_last_seq; then
5309                         param_seq=$(echo $param |
5310                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
5311                         mds_last_seq=$(do_facet $SINGLEMDS \
5312                                        $LCTL get_param -n $param_seq)
5313                 fi
5314                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
5315
5316                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
5317                 node=$(facet_active_host ost$((ostnum+1)))
5318                 param="obdfilter.$ostname.last_id"
5319                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
5320                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
5321                         ost_last_id=$ost_last
5322
5323                         if $support_last_seq; then
5324                                 ost_last_id=$(echo $ost_last |
5325                                               awk -F':' '{print $2}' |
5326                                               sed -e "s/^0x//g")
5327                                 ost_last_seq=$(echo $ost_last |
5328                                                awk -F':' '{print $1}')
5329                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
5330                         fi
5331
5332                         if [[ $ost_last_id != $mds_last ]]; then
5333                                 error "$ost_last_id != $mds_last"
5334                         else
5335                                 found=true
5336                                 break
5337                         fi
5338                 done
5339         done
5340         $found || error "can not match last_seq/last_id for $mdtosc"
5341         return 0
5342 }
5343 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
5344
5345 test_54a() {
5346         perl -MSocket -e ';' || skip "no Socket perl module installed"
5347
5348         $SOCKETSERVER $DIR/socket ||
5349                 error "$SOCKETSERVER $DIR/socket failed: $?"
5350         $SOCKETCLIENT $DIR/socket ||
5351                 error "$SOCKETCLIENT $DIR/socket failed: $?"
5352         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
5353 }
5354 run_test 54a "unix domain socket test =========================="
5355
5356 test_54b() {
5357         f="$DIR/f54b"
5358         mknod $f c 1 3
5359         chmod 0666 $f
5360         dd if=/dev/zero of=$f bs=$PAGE_SIZE count=1
5361 }
5362 run_test 54b "char device works in lustre ======================"
5363
5364 find_loop_dev() {
5365         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
5366         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
5367         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
5368
5369         for i in $(seq 3 7); do
5370                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
5371                 LOOPDEV=$LOOPBASE$i
5372                 LOOPNUM=$i
5373                 break
5374         done
5375 }
5376
5377 cleanup_54c() {
5378         local rc=0
5379         loopdev="$DIR/loop54c"
5380
5381         trap 0
5382         $UMOUNT $DIR/$tdir || rc=$?
5383         losetup -d $loopdev || true
5384         losetup -d $LOOPDEV || true
5385         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
5386         return $rc
5387 }
5388
5389 test_54c() {
5390         [ $PARALLEL == "yes" ] && skip "skip parallel run"
5391
5392         loopdev="$DIR/loop54c"
5393
5394         find_loop_dev
5395         [ -z "$LOOPNUM" ] && skip_env "couldn't find empty loop device"
5396         trap cleanup_54c EXIT
5397         mknod $loopdev b 7 $LOOPNUM
5398         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
5399         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE seek=1024 count=1 > /dev/null
5400         losetup $loopdev $DIR/$tfile ||
5401                 error "can't set up $loopdev for $DIR/$tfile"
5402         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
5403         test_mkdir $DIR/$tdir
5404         mount -t ext2 $loopdev $DIR/$tdir ||
5405                 error "error mounting $loopdev on $DIR/$tdir"
5406         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$PAGE_SIZE count=30 ||
5407                 error "dd write"
5408         df $DIR/$tdir
5409         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$PAGE_SIZE count=30 ||
5410                 error "dd read"
5411         cleanup_54c
5412 }
5413 run_test 54c "block device works in lustre ====================="
5414
5415 test_54d() {
5416         f="$DIR/f54d"
5417         string="aaaaaa"
5418         mknod $f p
5419         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
5420 }
5421 run_test 54d "fifo device works in lustre ======================"
5422
5423 test_54e() {
5424         f="$DIR/f54e"
5425         string="aaaaaa"
5426         cp -aL /dev/console $f
5427         echo $string > $f || error "echo $string to $f failed"
5428 }
5429 run_test 54e "console/tty device works in lustre ======================"
5430
5431 test_56a() {
5432         local numfiles=3
5433         local dir=$DIR/$tdir
5434
5435         rm -rf $dir
5436         test_mkdir -p $dir/dir
5437         for i in $(seq $numfiles); do
5438                 touch $dir/file$i
5439                 touch $dir/dir/file$i
5440         done
5441
5442         local numcomp=$($LFS getstripe --component-count $dir)
5443
5444         [[ $numcomp == 0 ]] && numcomp=1
5445
5446         # test lfs getstripe with --recursive
5447         local filenum=$($LFS getstripe -r $dir | egrep -c "obdidx|l_ost_idx")
5448
5449         [[ $filenum -eq $((numfiles * 2)) ]] ||
5450                 error "$LFS getstripe -r: found $filenum != $((numfiles * 2))"
5451         filenum=$($LFS getstripe $dir | egrep -c "obdidx|l_ost_idx")
5452         [[ $filenum -eq $numfiles ]] ||
5453                 error "$LFS getstripe $dir: found $filenum, not $numfiles"
5454         echo "$LFS getstripe showed obdidx or l_ost_idx"
5455
5456         # test lfs getstripe with file instead of dir
5457         filenum=$($LFS getstripe $dir/file1 | egrep -c "obdidx|l_ost_idx")
5458         [[ $filenum -eq 1 ]] ||
5459                 error "$LFS getstripe $dir/file1: found $filenum, not 1"
5460         echo "$LFS getstripe file1 passed"
5461
5462         #test lfs getstripe with --verbose
5463         filenum=$($LFS getstripe --verbose $dir | grep -c lmm_magic)
5464         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
5465                 error "$LFS getstripe --verbose $dir: "\
5466                       "got $filenum want $((numfiles * numcomp)) lmm_magic"
5467         [[ $($LFS getstripe $dir | grep -c lmm_magic) -eq 0 ]] ||
5468                 error "$LFS getstripe $dir: showed lmm_magic"
5469
5470         #test lfs getstripe with -v prints lmm_fid
5471         filenum=$($LFS getstripe -v $dir | grep -c lmm_fid)
5472         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
5473                 error "$LFS getstripe -v $dir: "\
5474                       "got $filenum want $((numfiles * numcomp)) lmm_fid"
5475         [[ $($LFS getstripe $dir | grep -c lmm_fid) -eq 0 ]] ||
5476                 error "$LFS getstripe $dir: showed lmm_fid by default"
5477         echo "$LFS getstripe --verbose passed"
5478
5479         #check for FID information
5480         local fid1=$($LFS getstripe --fid $dir/file1)
5481         local fid2=$($LFS getstripe --verbose $dir/file1 |
5482                      awk '/lmm_fid: / { print $2; exit; }')
5483         local fid3=$($LFS path2fid $dir/file1)
5484
5485         [ "$fid1" != "$fid2" ] &&
5486                 error "getstripe --fid '$fid1' != getstripe --verbose '$fid2'"
5487         [ "$fid1" != "$fid3" ] &&
5488                 error "getstripe --fid '$fid1' != lfs path2fid '$fid3'"
5489         echo "$LFS getstripe --fid passed"
5490
5491         #test lfs getstripe with --obd
5492         $LFS getstripe --obd wrong_uuid $dir 2>&1 | grep -q "unknown obduuid" ||
5493                 error "$LFS getstripe --obd wrong_uuid: should return error"
5494
5495         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5496
5497         local ostidx=1
5498         local obduuid=$(ostuuid_from_index $ostidx)
5499         local found=$($LFS getstripe -r --obd $obduuid $dir |
5500                 grep 'lmm_stripe_offset:' | grep -c " $ostidx\$")
5501
5502         filenum=$($LFS getstripe -ir $dir | grep -c "^$ostidx\$")
5503         [[ $($LFS getstripe -id $dir) -ne $ostidx ]] ||
5504                 ((filenum--))
5505         [[ $($LFS getstripe -id $dir/dir) -ne $ostidx ]] ||
5506                 ((filenum--))
5507
5508         [[ $found -eq $filenum ]] ||
5509                 error "$LFS getstripe --obd: found $found expect $filenum"
5510         [[ $($LFS getstripe -r -v --obd $obduuid $dir |
5511                 sed '/^[         ]*'${ostidx}'[  ]/d' |
5512                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
5513                 error "$LFS getstripe --obd: should not show file on other obd"
5514         echo "$LFS getstripe --obd passed"
5515 }
5516 run_test 56a "check $LFS getstripe"
5517
5518 test_56b() {
5519         local dir=$DIR/$tdir
5520         local numdirs=3
5521
5522         test_mkdir $dir
5523         for i in $(seq $numdirs); do
5524                 test_mkdir $dir/dir$i
5525         done
5526
5527         # test lfs getdirstripe default mode is non-recursion, which is
5528         # different from lfs getstripe
5529         local dircnt=$($LFS getdirstripe $dir | grep -c lmv_stripe_count)
5530
5531         [[ $dircnt -eq 1 ]] ||
5532                 error "$LFS getdirstripe: found $dircnt, not 1"
5533         dircnt=$($LFS getdirstripe --recursive $dir |
5534                 grep -c lmv_stripe_count)
5535         [[ $dircnt -eq $((numdirs + 1)) ]] ||
5536                 error "$LFS getdirstripe -r: $dircnt, != $((numdirs + 1))"
5537 }
5538 run_test 56b "check $LFS getdirstripe"
5539
5540 test_56c() {
5541         remote_ost_nodsh && skip "remote OST with nodsh"
5542
5543         local ost_idx=0
5544         local ost_name=$(ostname_from_index $ost_idx)
5545         local old_status=$(ost_dev_status $ost_idx)
5546
5547         [[ -z "$old_status" ]] ||
5548                 skip_env "OST $ost_name is in $old_status status"
5549
5550         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=1
5551         [[ $OST1_VERSION -ge $(version_code 2.12.55) ]] && do_facet ost1 \
5552                 $LCTL set_param -n obdfilter.$ost_name.no_precreate=1
5553         sleep_maxage
5554
5555         local new_status=$(ost_dev_status $ost_idx)
5556
5557         [[ "$new_status" =~ "D" ]] ||
5558                 error "$ost_name status is '$new_status', missing 'D'"
5559         if [[ $OST1_VERSION -ge $(version_code 2.12.55) ]]; then
5560                 [[ "$new_status" =~ "N" ]] ||
5561                         error "$ost_name status is '$new_status', missing 'N'"
5562         fi
5563
5564         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=0
5565         [[ $OST1_VERSION -ge $(version_code 2.12.55) ]] && do_facet ost1 \
5566                 $LCTL set_param -n obdfilter.$ost_name.no_precreate=0
5567         sleep_maxage
5568
5569         new_status=$(ost_dev_status $ost_idx)
5570         [[ ! "$new_status" =~ "D" && ! "$new_status" =~ "N" ]] ||
5571                 error "$ost_name status is '$new_status', has 'D' and/or 'N'"
5572 }
5573 run_test 56c "check 'lfs df' showing device status"
5574
5575 NUMFILES=3
5576 NUMDIRS=3
5577 setup_56() {
5578         local local_tdir="$1"
5579         local local_numfiles="$2"
5580         local local_numdirs="$3"
5581         local dir_params="$4"
5582         local dir_stripe_params="$5"
5583
5584         if [ ! -d "$local_tdir" ] ; then
5585                 test_mkdir -p $dir_stripe_params $local_tdir
5586                 [ "$dir_params" ] && $LFS setstripe $dir_params $local_tdir
5587                 for i in $(seq $local_numfiles) ; do
5588                         touch $local_tdir/file$i
5589                 done
5590                 for i in $(seq $local_numdirs) ; do
5591                         test_mkdir $dir_stripe_params $local_tdir/dir$i
5592                         for j in $(seq $local_numfiles) ; do
5593                                 touch $local_tdir/dir$i/file$j
5594                         done
5595                 done
5596         fi
5597 }
5598
5599 setup_56_special() {
5600         local local_tdir=$1
5601         local local_numfiles=$2
5602         local local_numdirs=$3
5603
5604         setup_56 $local_tdir $local_numfiles $local_numdirs
5605
5606         if [ ! -e "$local_tdir/loop${local_numfiles}b" ] ; then
5607                 for i in $(seq $local_numfiles) ; do
5608                         mknod $local_tdir/loop${i}b b 7 $i
5609                         mknod $local_tdir/null${i}c c 1 3
5610                         ln -s $local_tdir/file1 $local_tdir/link${i}
5611                 done
5612                 for i in $(seq $local_numdirs) ; do
5613                         mknod $local_tdir/dir$i/loop${i}b b 7 $i
5614                         mknod $local_tdir/dir$i/null${i}c c 1 3
5615                         ln -s $local_tdir/dir$i/file1 $local_tdir/dir$i/link${i}
5616                 done
5617         fi
5618 }
5619
5620 test_56g() {
5621         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5622         local expected=$(($NUMDIRS + 2))
5623
5624         setup_56 $dir $NUMFILES $NUMDIRS
5625
5626         # test lfs find with -name
5627         for i in $(seq $NUMFILES) ; do
5628                 local nums=$($LFS find -name "*$i" $dir | wc -l)
5629
5630                 [ $nums -eq $expected ] ||
5631                         error "lfs find -name '*$i' $dir wrong: "\
5632                               "found $nums, expected $expected"
5633         done
5634 }
5635 run_test 56g "check lfs find -name"
5636
5637 test_56h() {
5638         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5639         local expected=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
5640
5641         setup_56 $dir $NUMFILES $NUMDIRS
5642
5643         # test lfs find with ! -name
5644         for i in $(seq $NUMFILES) ; do
5645                 local nums=$($LFS find ! -name "*$i" $dir | wc -l)
5646
5647                 [ $nums -eq $expected ] ||
5648                         error "lfs find ! -name '*$i' $dir wrong: "\
5649                               "found $nums, expected $expected"
5650         done
5651 }
5652 run_test 56h "check lfs find ! -name"
5653
5654 test_56i() {
5655         local dir=$DIR/$tdir
5656
5657         test_mkdir $dir
5658
5659         local cmd="$LFS find -ost $(ostuuid_from_index 0 $dir) $dir"
5660         local out=$($cmd)
5661
5662         [ -z "$out" ] || error "'$cmd' returned directory '$out'"
5663 }
5664 run_test 56i "check 'lfs find -ost UUID' skips directories"
5665
5666 test_56j() {
5667         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5668
5669         setup_56_special $dir $NUMFILES $NUMDIRS
5670
5671         local expected=$((NUMDIRS + 1))
5672         local cmd="$LFS find -type d $dir"
5673         local nums=$($cmd | wc -l)
5674
5675         [ $nums -eq $expected ] ||
5676                 error "'$cmd' wrong: found $nums, expected $expected"
5677 }
5678 run_test 56j "check lfs find -type d"
5679
5680 test_56k() {
5681         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5682
5683         setup_56_special $dir $NUMFILES $NUMDIRS
5684
5685         local expected=$(((NUMDIRS + 1) * NUMFILES))
5686         local cmd="$LFS find -type f $dir"
5687         local nums=$($cmd | wc -l)
5688
5689         [ $nums -eq $expected ] ||
5690                 error "'$cmd' wrong: found $nums, expected $expected"
5691 }
5692 run_test 56k "check lfs find -type f"
5693
5694 test_56l() {
5695         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5696
5697         setup_56_special $dir $NUMFILES $NUMDIRS
5698
5699         local expected=$((NUMDIRS + NUMFILES))
5700         local cmd="$LFS find -type b $dir"
5701         local nums=$($cmd | wc -l)
5702
5703         [ $nums -eq $expected ] ||
5704                 error "'$cmd' wrong: found $nums, expected $expected"
5705 }
5706 run_test 56l "check lfs find -type b"
5707
5708 test_56m() {
5709         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5710
5711         setup_56_special $dir $NUMFILES $NUMDIRS
5712
5713         local expected=$((NUMDIRS + NUMFILES))
5714         local cmd="$LFS find -type c $dir"
5715         local nums=$($cmd | wc -l)
5716         [ $nums -eq $expected ] ||
5717                 error "'$cmd' wrong: found $nums, expected $expected"
5718 }
5719 run_test 56m "check lfs find -type c"
5720
5721 test_56n() {
5722         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5723         setup_56_special $dir $NUMFILES $NUMDIRS
5724
5725         local expected=$((NUMDIRS + NUMFILES))
5726         local cmd="$LFS find -type l $dir"
5727         local nums=$($cmd | wc -l)
5728
5729         [ $nums -eq $expected ] ||
5730                 error "'$cmd' wrong: found $nums, expected $expected"
5731 }
5732 run_test 56n "check lfs find -type l"
5733
5734 test_56o() {
5735         local dir=$DIR/$tdir
5736
5737         setup_56 $dir $NUMFILES $NUMDIRS
5738         utime $dir/file1 > /dev/null || error "utime (1)"
5739         utime $dir/file2 > /dev/null || error "utime (2)"
5740         utime $dir/dir1 > /dev/null || error "utime (3)"
5741         utime $dir/dir2 > /dev/null || error "utime (4)"
5742         utime $dir/dir1/file1 > /dev/null || error "utime (5)"
5743         dd if=/dev/zero count=1 >> $dir/dir1/file1 && sync
5744
5745         local expected=4
5746         local nums=$($LFS find -mtime +0 $dir | wc -l)
5747
5748         [ $nums -eq $expected ] ||
5749                 error "lfs find -mtime +0 $dir: found $nums expect $expected"
5750
5751         expected=12
5752         cmd="$LFS find -mtime 0 $dir"
5753         nums=$($cmd | wc -l)
5754         [ $nums -eq $expected ] ||
5755                 error "'$cmd' wrong: found $nums, expected $expected"
5756 }
5757 run_test 56o "check lfs find -mtime for old files"
5758
5759 test_56ob() {
5760         local dir=$DIR/$tdir
5761         local expected=1
5762         local count=0
5763
5764         # just to make sure there is something that won't be found
5765         test_mkdir $dir
5766         touch $dir/$tfile.now
5767
5768         for age in year week day hour min; do
5769                 count=$((count + 1))
5770
5771                 touch $dir/$tfile-a.$age $dir/$tfile-m.$age
5772                 touch --date="$count $age ago" -a $dir/$tfile-a.$age
5773                 touch --date="$count $age ago" -m $dir/$tfile-m.$age
5774
5775                 local cmd="$LFS find $dir -mtime $count${age:0:1}"
5776                 local nums=$($cmd | wc -l)
5777                 [ $nums -eq $expected ] ||
5778                         error "'$cmd' wrong: found $nums, expected $expected"
5779
5780                 cmd="$LFS find $dir -atime $count${age:0:1}"
5781                 nums=$($cmd | wc -l)
5782                 [ $nums -eq $expected ] ||
5783                         error "'$cmd' wrong: found $nums, expected $expected"
5784         done
5785
5786         sleep 2
5787         cmd="$LFS find $dir -ctime +1s -type f"
5788         nums=$($cmd | wc -l)
5789         (( $nums == $count * 2 + 1)) ||
5790                 error "'$cmd' wrong: found $nums, expected $((expected*2+1))"
5791 }
5792 run_test 56ob "check lfs find -atime -mtime -ctime with units"
5793
5794 test_newerXY_base() {
5795         local x=$1
5796         local y=$2
5797         local dir=$DIR/$tdir
5798         local ref
5799         local negref
5800
5801         if [ $y == "t" ]; then
5802                 ref="\"$(date +"%Y-%m-%d %H:%M:%S")\""
5803         else
5804                 ref=$DIR/$tfile.newer
5805                 touch $ref || error "touch $ref failed"
5806         fi
5807         sleep 2
5808         setup_56 $dir $NUMFILES $NUMDIRS "-i0 -c1" "-i0 -c1"
5809         sleep 2
5810         if [ $y == "t" ]; then
5811                 negref="\"$(date +"%Y-%m-%d %H:%M:%S")\""
5812         else
5813                 negref=$DIR/$tfile.newerneg
5814                 touch $negref || error "touch $negref failed"
5815         fi
5816
5817         local cmd="$LFS find $dir -newer$x$y $ref"
5818         local nums=$(eval $cmd | wc -l)
5819         local expected=$(((NUMFILES + 2) * NUMDIRS + 1))
5820
5821         [ $nums -eq $expected ] ||
5822                 error "'$cmd' wrong: found $nums, expected $expected"
5823
5824         cmd="$LFS find $dir ! -newer$x$y $negref"
5825         nums=$(eval $cmd | wc -l)
5826         [ $nums -eq $expected ] ||
5827                 error "'$cmd' wrong: found $nums, expected $expected"
5828
5829         cmd="$LFS find $dir -newer$x$y $ref ! -newer$x$y $negref"
5830         nums=$(eval $cmd | wc -l)
5831         [ $nums -eq $expected ] ||
5832                 error "'$cmd' wrong: found $nums, expected $expected"
5833
5834         rm -rf $DIR/*
5835 }
5836
5837 test_56oc() {
5838         test_newerXY_base "a" "a"
5839         test_newerXY_base "a" "m"
5840         test_newerXY_base "a" "c"
5841         test_newerXY_base "m" "a"
5842         test_newerXY_base "m" "m"
5843         test_newerXY_base "m" "c"
5844         test_newerXY_base "c" "a"
5845         test_newerXY_base "c" "m"
5846         test_newerXY_base "c" "c"
5847         test_newerXY_base "a" "t"
5848         test_newerXY_base "m" "t"
5849         test_newerXY_base "c" "t"
5850 }
5851 run_test 56oc "check lfs find -newerXY work"
5852
5853 test_56p() {
5854         [ $RUNAS_ID -eq $UID ] &&
5855                 skip_env "RUNAS_ID = UID = $UID -- skipping"
5856
5857         local dir=$DIR/$tdir
5858
5859         setup_56 $dir $NUMFILES $NUMDIRS
5860         chown $RUNAS_ID $dir/file* || error "chown $DIR/${tdir}g/file$i failed"
5861
5862         local expected=$NUMFILES
5863         local cmd="$LFS find -uid $RUNAS_ID $dir"
5864         local nums=$($cmd | wc -l)
5865
5866         [ $nums -eq $expected ] ||
5867                 error "'$cmd' wrong: found $nums, expected $expected"
5868
5869         expected=$(((NUMFILES + 1) * NUMDIRS + 1))
5870         cmd="$LFS find ! -uid $RUNAS_ID $dir"
5871         nums=$($cmd | wc -l)
5872         [ $nums -eq $expected ] ||
5873                 error "'$cmd' wrong: found $nums, expected $expected"
5874 }
5875 run_test 56p "check lfs find -uid and ! -uid"
5876
5877 test_56q() {
5878         [ $RUNAS_ID -eq $UID ] &&
5879                 skip_env "RUNAS_ID = UID = $UID -- skipping"
5880
5881         local dir=$DIR/$tdir
5882
5883         setup_56 $dir $NUMFILES $NUMDIRS
5884         chgrp $RUNAS_GID $dir/file* || error "chown $dir/file$i failed"
5885
5886         local expected=$NUMFILES
5887         local cmd="$LFS find -gid $RUNAS_GID $dir"
5888         local nums=$($cmd | wc -l)
5889
5890         [ $nums -eq $expected ] ||
5891                 error "'$cmd' wrong: found $nums, expected $expected"
5892
5893         expected=$(( ($NUMFILES+1) * $NUMDIRS + 1))
5894         cmd="$LFS find ! -gid $RUNAS_GID $dir"
5895         nums=$($cmd | wc -l)
5896         [ $nums -eq $expected ] ||
5897                 error "'$cmd' wrong: found $nums, expected $expected"
5898 }
5899 run_test 56q "check lfs find -gid and ! -gid"
5900
5901 test_56r() {
5902         local dir=$DIR/$tdir
5903
5904         setup_56 $dir $NUMFILES $NUMDIRS
5905
5906         local expected=12
5907         local cmd="$LFS find -size 0 -type f -lazy $dir"
5908         local nums=$($cmd | wc -l)
5909
5910         [ $nums -eq $expected ] ||
5911                 error "'$cmd' wrong: found $nums, expected $expected"
5912         cmd="$LFS find -size 0 -type f $dir"
5913         nums=$($cmd | wc -l)
5914         [ $nums -eq $expected ] ||
5915                 error "'$cmd' wrong: found $nums, expected $expected"
5916
5917         expected=0
5918         cmd="$LFS find ! -size 0 -type f -lazy $dir"
5919         nums=$($cmd | wc -l)
5920         [ $nums -eq $expected ] ||
5921                 error "'$cmd' wrong: found $nums, expected $expected"
5922         cmd="$LFS find ! -size 0 -type f $dir"
5923         nums=$($cmd | wc -l)
5924         [ $nums -eq $expected ] ||
5925                 error "'$cmd' wrong: found $nums, expected $expected"
5926
5927         echo "test" > $dir/$tfile
5928         echo "test2" > $dir/$tfile.2 && sync
5929         expected=1
5930         cmd="$LFS find -size 5 -type f -lazy $dir"
5931         nums=$($cmd | wc -l)
5932         [ $nums -eq $expected ] ||
5933                 error "'$cmd' wrong: found $nums, expected $expected"
5934         cmd="$LFS find -size 5 -type f $dir"
5935         nums=$($cmd | wc -l)
5936         [ $nums -eq $expected ] ||
5937                 error "'$cmd' wrong: found $nums, expected $expected"
5938
5939         expected=1
5940         cmd="$LFS find -size +5 -type f -lazy $dir"
5941         nums=$($cmd | wc -l)
5942         [ $nums -eq $expected ] ||
5943                 error "'$cmd' wrong: found $nums, expected $expected"
5944         cmd="$LFS find -size +5 -type f $dir"
5945         nums=$($cmd | wc -l)
5946         [ $nums -eq $expected ] ||
5947                 error "'$cmd' wrong: found $nums, expected $expected"
5948
5949         expected=2
5950         cmd="$LFS find -size +0 -type f -lazy $dir"
5951         nums=$($cmd | wc -l)
5952         [ $nums -eq $expected ] ||
5953                 error "'$cmd' wrong: found $nums, expected $expected"
5954         cmd="$LFS find -size +0 -type f $dir"
5955         nums=$($cmd | wc -l)
5956         [ $nums -eq $expected ] ||
5957                 error "'$cmd' wrong: found $nums, expected $expected"
5958
5959         expected=2
5960         cmd="$LFS find ! -size -5 -type f -lazy $dir"
5961         nums=$($cmd | wc -l)
5962         [ $nums -eq $expected ] ||
5963                 error "'$cmd' wrong: found $nums, expected $expected"
5964         cmd="$LFS find ! -size -5 -type f $dir"
5965         nums=$($cmd | wc -l)
5966         [ $nums -eq $expected ] ||
5967                 error "'$cmd' wrong: found $nums, expected $expected"
5968
5969         expected=12
5970         cmd="$LFS find -size -5 -type f -lazy $dir"
5971         nums=$($cmd | wc -l)
5972         [ $nums -eq $expected ] ||
5973                 error "'$cmd' wrong: found $nums, expected $expected"
5974         cmd="$LFS find -size -5 -type f $dir"
5975         nums=$($cmd | wc -l)
5976         [ $nums -eq $expected ] ||
5977                 error "'$cmd' wrong: found $nums, expected $expected"
5978 }
5979 run_test 56r "check lfs find -size works"
5980
5981 test_56ra() {
5982         [[ $MDS1_VERSION -gt $(version_code 2.12.58) ]] ||
5983                 skip "MDS < 2.12.58 doesn't return LSOM data"
5984         local dir=$DIR/$tdir
5985
5986         [[ $OSC == "mdc" ]] && skip "DoM files" && return
5987
5988         setup_56 $dir $NUMFILES $NUMDIRS "-c 1"
5989
5990         cancel_lru_locks $OSC
5991
5992         local rpcs_before=$(calc_stats $OSC.*$OSC*.stats ldlm_glimpse_enqueue)
5993         local expected=12
5994         local cmd="$LFS find -size 0 -type f -lazy $dir"
5995         local nums=$($cmd | wc -l)
5996
5997         [ $nums -eq $expected ] ||
5998                 error "'$cmd' wrong: found $nums, expected $expected"
5999
6000         local rpcs_after=$(calc_stats $OSC.*$OSC*.stats ldlm_glimpse_enqueue)
6001         [ $rpcs_before -eq $rpcs_after ] ||
6002                 error "'$cmd' should not send glimpse RPCs to OST"
6003         cmd="$LFS find -size 0 -type f $dir"
6004         nums=$($cmd | wc -l)
6005         [ $nums -eq $expected ] ||
6006                 error "'$cmd' wrong: found $nums, expected $expected"
6007         rpcs_after=$(calc_stats $OSC.*$OSC*.stats ldlm_glimpse_enqueue)
6008         echo "Before: $rpcs_before After: $rpcs_after $NUMFILES"
6009         $LCTL get_param osc.*.stats
6010         [ $rpcs_after -eq $((rpcs_before + 12)) ] ||
6011                 error "'$cmd' should send 12 glimpse RPCs to OST"
6012
6013         cancel_lru_locks $OSC
6014         rpcs_before=$(calc_stats $OSC.*$OSC*.stats ldlm_glimpse_enqueue)
6015         expected=0
6016         cmd="$LFS find ! -size 0 -type f -lazy $dir"
6017         nums=$($cmd | wc -l)
6018         [ $nums -eq $expected ] ||
6019                 error "'$cmd' wrong: found $nums, expected $expected"
6020         rpcs_after=$(calc_stats $OSC.*$OSC*.stats ldlm_glimpse_enqueue)
6021         $LCTL get_param mdc.*.stats
6022         [ $rpcs_before -eq $rpcs_after ] ||
6023                 error "'$cmd' should not send glimpse RPCs to OST"
6024         cmd="$LFS find ! -size 0 -type f $dir"
6025         nums=$($cmd | wc -l)
6026         [ $nums -eq $expected ] ||
6027                 error "'$cmd' wrong: found $nums, expected $expected"
6028         rpcs_after=$(calc_stats $OSC.*$OSC*.stats ldlm_glimpse_enqueue)
6029         echo "Before: $rpcs_before After: $rpcs_after $NUMFILES"
6030         [ $rpcs_after -eq $((rpcs_before + 12)) ] ||
6031                 error "'$cmd' should send 12 glimpse RPCs to OST"
6032
6033         echo "test" > $dir/$tfile
6034         echo "test2" > $dir/$tfile.2 && sync
6035         cancel_lru_locks $OSC
6036         rpcs_before=$(calc_stats $OSC.*$OSC*.stats ldlm_glimpse_enqueue)
6037         expected=1
6038         cmd="$LFS find -size 5 -type f -lazy $dir"
6039         nums=$($cmd | wc -l)
6040         [ $nums -eq $expected ] ||
6041                 error "'$cmd' wrong: found $nums, expected $expected"
6042         rpcs_after=$(calc_stats $OSC.*$OSC*.stats ldlm_glimpse_enqueue)
6043         [ $rpcs_before -eq $rpcs_after ] ||
6044                 error "'$cmd' should not send glimpse RPCs to OST"
6045         cmd="$LFS find -size 5 -type f $dir"
6046         nums=$($cmd | wc -l)
6047         [ $nums -eq $expected ] ||
6048                 error "'$cmd' wrong: found $nums, expected $expected"
6049         rpcs_after=$(calc_stats $OSC.*$OSC*.stats ldlm_glimpse_enqueue)
6050         echo "Before: $rpcs_before After: $rpcs_after $NUMFILES"
6051         [ $rpcs_after -eq $((rpcs_before + 14)) ] ||
6052                 error "'$cmd' should send 14 glimpse RPCs to OST"
6053
6054         cancel_lru_locks $OSC
6055         rpcs_before=$(calc_stats $OSC.*$OSC*.stats ldlm_glimpse_enqueue)
6056         expected=1
6057         cmd="$LFS find -size +5 -type f -lazy $dir"
6058         nums=$($cmd | wc -l)
6059         [ $nums -eq $expected ] ||
6060                 error "'$cmd' wrong: found $nums, expected $expected"
6061         rpcs_after=$(calc_stats $OSC.*$OSC*.stats ldlm_glimpse_enqueue)
6062         [ $rpcs_before -eq $rpcs_after ] ||
6063                 error "'$cmd' should not send glimpse RPCs to OST"
6064         cmd="$LFS find -size +5 -type f $dir"
6065         nums=$($cmd | wc -l)
6066         [ $nums -eq $expected ] ||
6067                 error "'$cmd' wrong: found $nums, expected $expected"
6068         rpcs_after=$(calc_stats $OSC.*$OSC*.stats ldlm_glimpse_enqueue)
6069         echo "Before: $rpcs_before After: $rpcs_after $NUMFILES"
6070         [ $rpcs_after -eq $((rpcs_before + 14)) ] ||
6071                 error "'$cmd' should send 14 glimpse RPCs to OST"
6072
6073         cancel_lru_locks $OSC
6074         rpcs_before=$(calc_stats $OSC.*$OSC*.stats ldlm_glimpse_enqueue)
6075         expected=2
6076         cmd="$LFS find -size +0 -type f -lazy $dir"
6077         nums=$($cmd | wc -l)
6078         [ $nums -eq $expected ] ||
6079                 error "'$cmd' wrong: found $nums, expected $expected"
6080         rpcs_after=$(calc_stats $OSC.*$OSC*.stats ldlm_glimpse_enqueue)
6081         [ $rpcs_before -eq $rpcs_after ] ||
6082                 error "'$cmd' should not send glimpse RPCs to OST"
6083         cmd="$LFS find -size +0 -type f $dir"
6084         nums=$($cmd | wc -l)
6085         [ $nums -eq $expected ] ||
6086                 error "'$cmd' wrong: found $nums, expected $expected"
6087         rpcs_after=$(calc_stats $OSC.*$OSC*.stats ldlm_glimpse_enqueue)
6088         echo "Before: $rpcs_before After: $rpcs_after $NUMFILES"
6089         [ $rpcs_after -eq $((rpcs_before + 14)) ] ||
6090                 error "'$cmd' should send 14 glimpse RPCs to OST"
6091
6092         cancel_lru_locks $OSC
6093         rpcs_before=$(calc_stats $OSC.*$OSC*.stats ldlm_glimpse_enqueue)
6094         expected=2
6095         cmd="$LFS find ! -size -5 -type f -lazy $dir"
6096         nums=$($cmd | wc -l)
6097         [ $nums -eq $expected ] ||
6098                 error "'$cmd' wrong: found $nums, expected $expected"
6099         rpcs_after=$(calc_stats $OSC.*$OSC*.stats ldlm_glimpse_enqueue)
6100         [ $rpcs_before -eq $rpcs_after ] ||
6101                 error "'$cmd' should not send glimpse RPCs to OST"
6102         cmd="$LFS find ! -size -5 -type f $dir"
6103         nums=$($cmd | wc -l)
6104         [ $nums -eq $expected ] ||
6105                 error "'$cmd' wrong: found $nums, expected $expected"
6106         rpcs_after=$(calc_stats $OSC.*$OSC*.stats ldlm_glimpse_enqueue)
6107         echo "Before: $rpcs_before After: $rpcs_after $NUMFILES"
6108         [ $rpcs_after -eq $((rpcs_before + 14)) ] ||
6109                 error "'$cmd' should send 14 glimpse RPCs to OST"
6110
6111         cancel_lru_locks $OSC
6112         rpcs_before=$(calc_stats $OSC.*$OSC*.stats ldlm_glimpse_enqueue)
6113         expected=12
6114         cmd="$LFS find -size -5 -type f -lazy $dir"
6115         nums=$($cmd | wc -l)
6116         [ $nums -eq $expected ] ||
6117                 error "'$cmd' wrong: found $nums, expected $expected"
6118         rpcs_after=$(calc_stats $OSC.*$OSC*.stats ldlm_glimpse_enqueue)
6119         [ $rpcs_before -eq $rpcs_after ] ||
6120                 error "'$cmd' should not send glimpse RPCs to OST"
6121         cmd="$LFS find -size -5 -type f $dir"
6122         nums=$($cmd | wc -l)
6123         [ $nums -eq $expected ] ||
6124                 error "'$cmd' wrong: found $nums, expected $expected"
6125         rpcs_after=$(calc_stats $OSC.*$OSC*.stats ldlm_glimpse_enqueue)
6126         echo "Before: $rpcs_before After: $rpcs_after $NUMFILES"
6127         [ $rpcs_after -eq $((rpcs_before + 14)) ] ||
6128                 error "'$cmd' should send 14 glimpse RPCs to OST"
6129 }
6130 run_test 56ra "check lfs find -size -lazy works for data on OSTs"
6131
6132 test_56s() { # LU-611 #LU-9369
6133         [[ $OSTCOUNT -lt 2 ]] && skip_env "need at least 2 OSTs"
6134
6135         local dir=$DIR/$tdir
6136         local onestripe=$(((NUMDIRS + 1) * NUMFILES))
6137
6138         setup_56 $dir $NUMFILES $NUMDIRS "-c 1"
6139         for i in $(seq $NUMDIRS); do
6140                 $LFS setstripe -c $((OSTCOUNT + 1)) $dir/dir$i/$tfile
6141         done
6142
6143         local expected=$NUMDIRS
6144         local cmd="$LFS find -c $OSTCOUNT $dir"
6145         local nums=$($cmd | wc -l)
6146
6147         [ $nums -eq $expected ] || {
6148                 $LFS getstripe -R $dir
6149                 error "'$cmd' wrong: found $nums, expected $expected"
6150         }
6151
6152         expected=$((NUMDIRS + onestripe))
6153         cmd="$LFS find -stripe-count +0 -type f $dir"
6154         nums=$($cmd | wc -l)
6155         [ $nums -eq $expected ] || {
6156                 $LFS getstripe -R $dir
6157                 error "'$cmd' wrong: found $nums, expected $expected"
6158         }
6159
6160         expected=$onestripe
6161         cmd="$LFS find -stripe-count 1 -type f $dir"
6162         nums=$($cmd | wc -l)
6163         [ $nums -eq $expected ] || {
6164                 $LFS getstripe -R $dir
6165                 error "'$cmd' wrong: found $nums, expected $expected"
6166         }
6167
6168         cmd="$LFS find -stripe-count -2 -type f $dir"
6169         nums=$($cmd | wc -l)
6170         [ $nums -eq $expected ] || {
6171                 $LFS getstripe -R $dir
6172                 error "'$cmd' wrong: found $nums, expected $expected"
6173         }
6174
6175         expected=0
6176         cmd="$LFS find -stripe-count $((OSTCOUNT + 1)) -type f $dir"
6177         nums=$($cmd | wc -l)
6178         [ $nums -eq $expected ] || {
6179                 $LFS getstripe -R $dir
6180                 error "'$cmd' wrong: found $nums, expected $expected"
6181         }
6182 }
6183 run_test 56s "check lfs find -stripe-count works"
6184
6185 test_56t() { # LU-611 #LU-9369
6186         local dir=$DIR/$tdir
6187
6188         setup_56 $dir 0 $NUMDIRS
6189         for i in $(seq $NUMDIRS); do
6190                 $LFS setstripe -S 8M $dir/dir$i/$tfile
6191         done
6192
6193         local expected=$NUMDIRS
6194         local cmd="$LFS find -S 8M $dir"
6195         local nums=$($cmd | wc -l)
6196
6197         [ $nums -eq $expected ] || {
6198                 $LFS getstripe -R $dir
6199                 error "'$cmd' wrong: found $nums, expected $expected"
6200         }
6201         rm -rf $dir
6202
6203         setup_56 $dir $NUMFILES $NUMDIRS "--stripe-size 512k"
6204
6205         $LFS setstripe -S 256k $dir/$tfile.{0,1,2,3}
6206
6207         expected=$(((NUMDIRS + 1) * NUMFILES))
6208         cmd="$LFS find -stripe-size 512k -type f $dir"
6209         nums=$($cmd | wc -l)
6210         [ $nums -eq $expected ] ||
6211                 error "'$cmd' wrong: found $nums, expected $expected"
6212
6213         cmd="$LFS find -stripe-size +320k -type f $dir"
6214         nums=$($cmd | wc -l)
6215         [ $nums -eq $expected ] ||
6216                 error "'$cmd' wrong: found $nums, expected $expected"
6217
6218         expected=$(((NUMDIRS + 1) * NUMFILES + 4))
6219         cmd="$LFS find -stripe-size +200k -type f $dir"
6220         nums=$($cmd | wc -l)
6221         [ $nums -eq $expected ] ||
6222                 error "'$cmd' wrong: found $nums, expected $expected"
6223
6224         cmd="$LFS find -stripe-size -640k -type f $dir"
6225         nums=$($cmd | wc -l)
6226         [ $nums -eq $expected ] ||
6227                 error "'$cmd' wrong: found $nums, expected $expected"
6228
6229         expected=4
6230         cmd="$LFS find -stripe-size 256k -type f $dir"
6231         nums=$($cmd | wc -l)
6232         [ $nums -eq $expected ] ||
6233                 error "'$cmd' wrong: found $nums, expected $expected"
6234
6235         cmd="$LFS find -stripe-size -320k -type f $dir"
6236         nums=$($cmd | wc -l)
6237         [ $nums -eq $expected ] ||
6238                 error "'$cmd' wrong: found $nums, expected $expected"
6239
6240         expected=0
6241         cmd="$LFS find -stripe-size 1024k -type f $dir"
6242         nums=$($cmd | wc -l)
6243         [ $nums -eq $expected ] ||
6244                 error "'$cmd' wrong: found $nums, expected $expected"
6245 }
6246 run_test 56t "check lfs find -stripe-size works"
6247
6248 test_56u() { # LU-611
6249         local dir=$DIR/$tdir
6250
6251         setup_56 $dir $NUMFILES $NUMDIRS "-i 0 -c 1"
6252
6253         if [[ $OSTCOUNT -gt 1 ]]; then
6254                 $LFS setstripe -i 1 -c 1 $dir/$tfile.{0,1,2,3}
6255                 onestripe=4
6256         else
6257                 onestripe=0
6258         fi
6259
6260         local expected=$(((NUMDIRS + 1) * NUMFILES))
6261         local cmd="$LFS find -stripe-index 0 -type f $dir"
6262         local nums=$($cmd | wc -l)
6263
6264         [ $nums -eq $expected ] ||
6265                 error "'$cmd' wrong: found $nums, expected $expected"
6266
6267         expected=$onestripe
6268         cmd="$LFS find -stripe-index 1 -type f $dir"
6269         nums=$($cmd | wc -l)
6270         [ $nums -eq $expected ] ||
6271                 error "'$cmd' wrong: found $nums, expected $expected"
6272
6273         cmd="$LFS find ! -stripe-index 0 -type f $dir"
6274         nums=$($cmd | wc -l)
6275         [ $nums -eq $expected ] ||
6276                 error "'$cmd' wrong: found $nums, expected $expected"
6277
6278         expected=0
6279         # This should produce an error and not return any files
6280         cmd="$LFS find -stripe-index $OSTCOUNT -type f $dir"
6281         nums=$($cmd 2>/dev/null | wc -l)
6282         [ $nums -eq $expected ] ||
6283                 error "'$cmd' wrong: found $nums, expected $expected"
6284
6285         if [[ $OSTCOUNT -gt 1 ]]; then
6286                 expected=$(((NUMDIRS + 1) * NUMFILES + onestripe))
6287                 cmd="$LFS find -stripe-index 0,1 -type f $dir"
6288                 nums=$($cmd | wc -l)
6289                 [ $nums -eq $expected ] ||
6290                         error "'$cmd' wrong: found $nums, expected $expected"
6291         fi
6292 }
6293 run_test 56u "check lfs find -stripe-index works"
6294
6295 test_56v() {
6296         local mdt_idx=0
6297         local dir=$DIR/$tdir
6298
6299         setup_56 $dir $NUMFILES $NUMDIRS
6300
6301         UUID=$(mdtuuid_from_index $mdt_idx $dir)
6302         [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT $mdt_idx"
6303
6304         for file in $($LFS find -m $UUID $dir); do
6305                 file_midx=$($LFS getstripe -m $file)
6306                 [ $file_midx -eq $mdt_idx ] ||
6307                         error "lfs find -m $UUID != getstripe -m $file_midx"
6308         done
6309 }
6310 run_test 56v "check 'lfs find -m match with lfs getstripe -m'"
6311
6312 test_56w() {
6313         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
6314         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6315
6316         local dir=$DIR/$tdir
6317
6318         setup_56 $dir $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
6319
6320         local stripe_size=$($LFS getstripe -S -d $dir) ||
6321                 error "$LFS getstripe -S -d $dir failed"
6322         stripe_size=${stripe_size%% *}
6323
6324         local file_size=$((stripe_size * OSTCOUNT))
6325         local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
6326         local required_space=$((file_num * file_size))
6327         local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
6328                            head -n1)
6329         [[ $free_space -le $((required_space / 1024)) ]] &&
6330                 skip_env "need $required_space, have $free_space kbytes"
6331
6332         local dd_bs=65536
6333         local dd_count=$((file_size / dd_bs))
6334
6335         # write data into the files
6336         local i
6337         local j
6338         local file
6339
6340         for i in $(seq $NUMFILES); do
6341                 file=$dir/file$i
6342                 yes | dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
6343                         error "write data into $file failed"
6344         done
6345         for i in $(seq $NUMDIRS); do
6346                 for j in $(seq $NUMFILES); do
6347                         file=$dir/dir$i/file$j
6348                         yes|dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
6349                                 error "write data into $file failed"
6350                 done
6351         done
6352
6353         # $LFS_MIGRATE will fail if hard link migration is unsupported
6354         if [[ $MDS1_VERSION -gt $(version_code 2.5.55) ]]; then
6355                 createmany -l$dir/dir1/file1 $dir/dir1/link 200 ||
6356                         error "creating links to $dir/dir1/file1 failed"
6357         fi
6358
6359         local expected=-1
6360
6361         [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
6362
6363         # lfs_migrate file
6364         local cmd="$LFS_MIGRATE -y -c $expected $dir/file1"
6365
6366         echo "$cmd"
6367         eval $cmd || error "$cmd failed"
6368
6369         check_stripe_count $dir/file1 $expected
6370
6371         if [ $MDS1_VERSION -ge $(version_code 2.6.90) ];
6372         then
6373                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
6374                 # OST 1 if it is on OST 0. This file is small enough to
6375                 # be on only one stripe.
6376                 file=$dir/migr_1_ost
6377                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
6378                         error "write data into $file failed"
6379                 local obdidx=$($LFS getstripe -i $file)
6380                 local oldmd5=$(md5sum $file)
6381                 local newobdidx=0
6382
6383                 [[ $obdidx -eq 0 ]] && newobdidx=1
6384                 cmd="$LFS migrate -i $newobdidx $file"
6385                 echo $cmd
6386                 eval $cmd || error "$cmd failed"
6387
6388                 local realobdix=$($LFS getstripe -i $file)
6389                 local newmd5=$(md5sum $file)
6390
6391                 [[ $newobdidx -ne $realobdix ]] &&
6392                         error "new OST is different (was=$obdidx, "\
6393                               "wanted=$newobdidx, got=$realobdix)"
6394                 [[ "$oldmd5" != "$newmd5" ]] &&
6395                         error "md5sum differ: $oldmd5, $newmd5"
6396         fi
6397
6398         # lfs_migrate dir
6399         cmd="$LFS_MIGRATE -y -c $expected $dir/dir1"
6400         echo "$cmd"
6401         eval $cmd || error "$cmd failed"
6402
6403         for j in $(seq $NUMFILES); do
6404                 check_stripe_count $dir/dir1/file$j $expected
6405         done
6406
6407         # lfs_migrate works with lfs find
6408         cmd="$LFS find -stripe_count $OSTCOUNT -type f $dir |
6409              $LFS_MIGRATE -y -c $expected"
6410         echo "$cmd"
6411         eval $cmd || error "$cmd failed"
6412
6413         for i in $(seq 2 $NUMFILES); do
6414                 check_stripe_count $dir/file$i $expected
6415         done
6416         for i in $(seq 2 $NUMDIRS); do
6417                 for j in $(seq $NUMFILES); do
6418                 check_stripe_count $dir/dir$i/file$j $expected
6419                 done
6420         done
6421 }
6422 run_test 56w "check lfs_migrate -c stripe_count works"
6423
6424 test_56wb() {
6425         local file1=$DIR/$tdir/file1
6426         local create_pool=false
6427         local initial_pool=$($LFS getstripe -p $DIR)
6428         local pool_list=()
6429         local pool=""
6430
6431         echo -n "Creating test dir..."
6432         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
6433         echo "done."
6434
6435         echo -n "Creating test file..."
6436         touch $file1 || error "cannot create file"
6437         echo "done."
6438
6439         echo -n "Detecting existing pools..."
6440         pool_list=($($LFS pool_list $FSNAME | grep "$FSNAME\." | cut -d. -f2))
6441
6442         if [ ${#pool_list[@]} -gt 0 ]; then
6443                 echo "${pool_list[@]}"
6444                 for thispool in "${pool_list[@]}"; do
6445                         if [[ -z "$initial_pool" ||
6446                               "$initial_pool" != "$thispool" ]]; then
6447                                 pool="$thispool"
6448                                 echo "Using existing pool '$pool'"
6449                                 break
6450                         fi
6451                 done
6452         else
6453                 echo "none detected."
6454         fi
6455         if [ -z "$pool" ]; then
6456                 pool=${POOL:-testpool}
6457                 [ "$initial_pool" = "$pool" ] && pool="testpool2"
6458                 echo -n "Creating pool '$pool'..."
6459                 create_pool=true
6460                 pool_add $pool &> /dev/null ||
6461                         error "pool_add failed"
6462                 echo "done."
6463
6464                 echo -n "Adding target to pool..."
6465                 pool_add_targets $pool 0 0 1 &> /dev/null ||
6466                         error "pool_add_targets failed"
6467                 echo "done."
6468         fi
6469
6470         echo -n "Setting pool using -p option..."
6471         $LFS_MIGRATE -y -q --no-rsync -p $pool $file1 &> /dev/null ||
6472                 error "migrate failed rc = $?"
6473         echo "done."
6474
6475         echo -n "Verifying test file is in pool after migrating..."
6476         [ "$($LFS getstripe -p $file1)" = $pool ] ||
6477                 error "file was not migrated to pool $pool"
6478         echo "done."
6479
6480         echo -n "Removing test file from pool '$pool'..."
6481         # "lfs migrate $file" won't remove the file from the pool
6482         # until some striping information is changed.
6483         $LFS migrate -c 1 $file1 &> /dev/null ||
6484                 error "cannot remove from pool"
6485         [ "$($LFS getstripe -p $file1)" ] &&
6486                 error "pool still set"
6487         echo "done."
6488
6489         echo -n "Setting pool using --pool option..."
6490         $LFS_MIGRATE -y -q --no-rsync --pool $pool $file1 &> /dev/null ||
6491                 error "migrate failed rc = $?"
6492         echo "done."
6493
6494         # Clean up
6495         rm -f $file1
6496         if $create_pool; then
6497                 destroy_test_pools 2> /dev/null ||
6498                         error "destroy test pools failed"
6499         fi
6500 }
6501 run_test 56wb "check lfs_migrate pool support"
6502
6503 test_56wc() {
6504         local file1="$DIR/$tdir/file1"
6505         local parent_ssize
6506         local parent_scount
6507         local cur_ssize
6508         local cur_scount
6509         local orig_ssize
6510
6511         echo -n "Creating test dir..."
6512         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
6513         $LFS setstripe -S 1M -c 1 "$DIR/$tdir" &> /dev/null ||
6514                 error "cannot set stripe by '-S 1M -c 1'"
6515         echo "done"
6516
6517         echo -n "Setting initial stripe for test file..."
6518         $LFS setstripe -S 512K -c 1 "$file1" &> /dev/null ||
6519                 error "cannot set stripe"
6520         cur_ssize=$($LFS getstripe -S "$file1")
6521         [ $cur_ssize -eq 524288 ] || error "setstripe -S $cur_ssize != 524288"
6522         echo "done."
6523
6524         # File currently set to -S 512K -c 1
6525
6526         # Ensure -c and -S options are rejected when -R is set
6527         echo -n "Verifying incompatible options are detected..."
6528         $LFS_MIGRATE -y -R -c 1 "$file1" &> /dev/null &&
6529                 error "incompatible -c and -R options not detected"
6530         $LFS_MIGRATE -y -R -S 1M "$file1" &> /dev/null &&
6531                 error "incompatible -S and -R options not detected"
6532         echo "done."
6533
6534         # Ensure unrecognized options are passed through to 'lfs migrate'
6535         echo -n "Verifying -S option is passed through to lfs migrate..."
6536         $LFS_MIGRATE -y -S 1M "$file1" &> /dev/null ||
6537                 error "migration failed"
6538         cur_ssize=$($LFS getstripe -S "$file1")
6539         [ $cur_ssize -eq 1048576 ] || error "migrate -S $cur_ssize != 1048576"
6540         echo "done."
6541
6542         # File currently set to -S 1M -c 1
6543
6544         # Ensure long options are supported
6545         echo -n "Verifying long options supported..."
6546         $LFS_MIGRATE -y --non-block "$file1" &> /dev/null ||
6547                 error "long option without argument not supported"
6548         $LFS_MIGRATE -y --stripe-size 512K "$file1" &> /dev/null ||
6549                 error "long option with argument not supported"
6550         cur_ssize=$($LFS getstripe -S "$file1")
6551         [ $cur_ssize -eq 524288 ] ||
6552                 error "migrate --stripe-size $cur_ssize != 524288"
6553         echo "done."
6554
6555         # File currently set to -S 512K -c 1
6556
6557         if [ "$OSTCOUNT" -gt 1 ]; then
6558                 echo -n "Verifying explicit stripe count can be set..."
6559                 $LFS_MIGRATE -y -c 2 "$file1" &> /dev/null ||
6560                         error "migrate failed"
6561                 cur_scount=$($LFS getstripe -c "$file1")
6562                 [ $cur_scount -eq 2 ] || error "migrate -c $cur_scount != 2"
6563                 echo "done."
6564         fi
6565
6566         # File currently set to -S 512K -c 1 or -S 512K -c 2
6567
6568         # Ensure parent striping is used if -R is set, and no stripe
6569         # count or size is specified
6570         echo -n "Setting stripe for parent directory..."
6571         $LFS setstripe -S 2M -c 1 "$DIR/$tdir" &> /dev/null ||
6572                 error "cannot set stripe '-S 2M -c 1'"
6573         echo "done."
6574
6575         echo -n "Verifying restripe option uses parent stripe settings..."
6576         parent_ssize=$($LFS getstripe -S $DIR/$tdir 2>/dev/null)
6577         parent_scount=$($LFS getstripe -c $DIR/$tdir 2>/dev/null)
6578         $LFS_MIGRATE -y -R "$file1" &> /dev/null ||
6579                 error "migrate failed"
6580         cur_ssize=$($LFS getstripe -S "$file1")
6581         [ $cur_ssize -eq $parent_ssize ] ||
6582                 error "migrate -R stripe_size $cur_ssize != $parent_ssize"
6583         cur_scount=$($LFS getstripe -c "$file1")
6584         [ $cur_scount -eq $parent_scount ] ||
6585                 error "migrate -R stripe_count $cur_scount != $parent_scount"
6586         echo "done."
6587
6588         # File currently set to -S 1M -c 1
6589
6590         # Ensure striping is preserved if -R is not set, and no stripe
6591         # count or size is specified
6592         echo -n "Verifying striping size preserved when not specified..."
6593         orig_ssize=$($LFS getstripe -S "$file1" 2>/dev/null)
6594         $LFS setstripe -S 2M -c 1 "$DIR/$tdir" &> /dev/null ||
6595                 error "cannot set stripe on parent directory"
6596         $LFS_MIGRATE -y "$file1" &> /dev/null ||
6597                 error "migrate failed"
6598         cur_ssize=$($LFS getstripe -S "$file1")
6599         [ $cur_ssize -eq $orig_ssize ] ||
6600                 error "migrate by default $cur_ssize != $orig_ssize"
6601         echo "done."
6602
6603         # Ensure file name properly detected when final option has no argument
6604         echo -n "Verifying file name properly detected..."
6605         $LFS_MIGRATE -y "$file1" &> /dev/null ||
6606                 error "file name interpreted as option argument"
6607         echo "done."
6608
6609         # Clean up
6610         rm -f "$file1"
6611 }
6612 run_test 56wc "check unrecognized options for lfs_migrate are passed through"
6613
6614 test_56wd() {
6615         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
6616
6617         local file1=$DIR/$tdir/file1
6618
6619         echo -n "Creating test dir..."
6620         test_mkdir $DIR/$tdir || error "cannot create dir"
6621         echo "done."
6622
6623         echo -n "Creating test file..."
6624         touch $file1
6625         echo "done."
6626
6627         # Ensure 'lfs migrate' will fail by using a non-existent option,
6628         # and make sure rsync is not called to recover
6629         echo -n "Make sure --no-rsync option works..."
6630         $LFS_MIGRATE -y --no-rsync --invalid-opt $file1 2>&1 |
6631                 grep -q 'refusing to fall back to rsync' ||
6632                 error "rsync was called with --no-rsync set"
6633         echo "done."
6634
6635         # Ensure rsync is called without trying 'lfs migrate' first
6636         echo -n "Make sure --rsync option works..."
6637         $LFS_MIGRATE -y --rsync --invalid-opt $file1 2>&1 |
6638                 grep -q 'falling back to rsync' &&
6639                 error "lfs migrate was called with --rsync set"
6640         echo "done."
6641
6642         echo -n "Make sure --rsync and --no-rsync options are exclusive..."
6643         $LFS_MIGRATE -y --rsync --no-rsync $file1 2>&1 |
6644                 grep -q 'at the same time' ||
6645                 error "--rsync and --no-rsync accepted concurrently"
6646         echo "done."
6647
6648         # Clean up
6649         rm -f $file1
6650 }
6651 run_test 56wd "check lfs_migrate --rsync and --no-rsync work"
6652
6653 test_56x() {
6654         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
6655         check_swap_layouts_support
6656
6657         local dir=$DIR/$tdir
6658         local ref1=/etc/passwd
6659         local file1=$dir/file1
6660
6661         test_mkdir $dir || error "creating dir $dir"
6662         $LFS setstripe -c 2 $file1
6663         cp $ref1 $file1
6664         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
6665         stripe=$($LFS getstripe -c $file1)
6666         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
6667         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
6668
6669         # clean up
6670         rm -f $file1
6671 }
6672 run_test 56x "lfs migration support"
6673
6674 test_56xa() {
6675         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
6676         check_swap_layouts_support
6677
6678         local dir=$DIR/$tdir/$testnum
6679
6680         test_mkdir -p $dir
6681
6682         local ref1=/etc/passwd
6683         local file1=$dir/file1
6684
6685         $LFS setstripe -c 2 $file1
6686         cp $ref1 $file1
6687         $LFS migrate --block -c 1 $file1 || error "migrate failed rc = $?"
6688
6689         local stripe=$($LFS getstripe -c $file1)
6690
6691         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
6692         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
6693
6694         # clean up
6695         rm -f $file1
6696 }
6697 run_test 56xa "lfs migration --block support"
6698
6699 check_migrate_links() {
6700         local dir="$1"
6701         local file1="$dir/file1"
6702         local begin="$2"
6703         local count="$3"
6704         local runas="$4"
6705         local total_count=$(($begin + $count - 1))
6706         local symlink_count=10
6707         local uniq_count=10
6708
6709         if [ ! -f "$file1" ]; then
6710                 echo -n "creating initial file..."
6711                 $LFS setstripe -c 1 -S "512k" "$file1" ||
6712                         error "cannot setstripe initial file"
6713                 echo "done"
6714
6715                 echo -n "creating symlinks..."
6716                 for s in $(seq 1 $symlink_count); do
6717                         ln -s "$file1" "$dir/slink$s" ||
6718                                 error "cannot create symlinks"
6719                 done
6720                 echo "done"
6721
6722                 echo -n "creating nonlinked files..."
6723                 createmany -o "$dir/uniq" 1 10 &> /dev/null ||
6724                         error "cannot create nonlinked files"
6725                 echo "done"
6726         fi
6727
6728         # create hard links
6729         if [ ! -f "$dir/file$total_count" ]; then
6730                 echo -n "creating hard links $begin:$total_count..."
6731                 createmany -l"$file1" "$dir/file" "$begin" "$count" &>  \
6732                         /dev/null || error "cannot create hard links"
6733                 echo "done"
6734         fi
6735
6736         echo -n "checking number of hard links listed in xattrs..."
6737         local fid=$($LFS getstripe -F "$file1")
6738         local paths=($($LFS fid2path "$MOUNT" "$fid" 2> /dev/null))
6739
6740         echo "${#paths[*]}"
6741         if [ ${#paths[*]} -lt $total_count -a "$begin" -eq 2  ]; then
6742                         skip "hard link list has unexpected size, skipping test"
6743         fi
6744         if [ ${#paths[*]} -ge $total_count -a "$begin" -ne 2  ]; then
6745                         error "link names should exceed xattrs size"
6746         fi
6747
6748         echo -n "migrating files..."
6749         local migrate_out=$($runas $LFS_MIGRATE -y -S '1m' $dir)
6750         local rc=$?
6751         [ $rc -eq 0 ] || error "migrate failed rc = $rc"
6752         echo "done"
6753
6754         # make sure all links have been properly migrated
6755         echo -n "verifying files..."
6756         fid=$($LFS getstripe -F "$file1") ||
6757                 error "cannot get fid for file $file1"
6758         for i in $(seq 2 $total_count); do
6759                 local fid2=$($LFS getstripe -F $dir/file$i)
6760
6761                 [ "$fid2" == "$fid" ] ||
6762                         error "migrated hard link has mismatched FID"
6763         done
6764
6765         # make sure hard links were properly detected, and migration was
6766         # performed only once for the entire link set; nonlinked files should
6767         # also be migrated
6768         local actual=$(grep -c 'done' <<< "$migrate_out")
6769         local expected=$(($uniq_count + 1))
6770
6771         [ "$actual" -eq  "$expected" ] ||
6772                 error "hard links individually migrated ($actual != $expected)"
6773
6774         # make sure the correct number of hard links are present
6775         local hardlinks=$(stat -c '%h' "$file1")
6776
6777         [ $hardlinks -eq $total_count ] ||
6778                 error "num hard links $hardlinks != $total_count"
6779         echo "done"
6780
6781         return 0
6782 }
6783
6784 test_56xb() {
6785         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
6786                 skip "Need MDS version at least 2.10.55"
6787
6788         local dir="$DIR/$tdir"
6789
6790         test_mkdir "$dir" || error "cannot create dir $dir"
6791
6792         echo "testing lfs migrate mode when all links fit within xattrs"
6793         LFS_MIGRATE_RSYNC_MODE=false check_migrate_links "$dir" 2 99
6794
6795         echo "testing rsync mode when all links fit within xattrs"
6796         LFS_MIGRATE_RSYNC_MODE=true check_migrate_links "$dir" 2 99
6797
6798         echo "testing lfs migrate mode when all links do not fit within xattrs"
6799         LFS_MIGRATE_RSYNC_MODE=false check_migrate_links "$dir" 101 100
6800
6801         echo "testing rsync mode when all links do not fit within xattrs"
6802         LFS_MIGRATE_RSYNC_MODE=true check_migrate_links "$dir" 101 100
6803
6804         chown -R $RUNAS_ID $dir
6805         echo "testing non-root lfs migrate mode when not all links are in xattr"
6806         LFS_MIGRATE_RSYNC_MODE=false check_migrate_links "$dir" 101 100 "$RUNAS"
6807
6808         # clean up
6809         rm -rf $dir
6810 }
6811 run_test 56xb "lfs migration hard link support"
6812
6813 test_56xc() {
6814         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
6815
6816         local dir="$DIR/$tdir"
6817
6818         test_mkdir "$dir" || error "cannot create dir $dir"
6819
6820         # Test 1: ensure file < 1 GB is always migrated with 1 stripe
6821         echo -n "Setting initial stripe for 20MB test file..."
6822         $LFS setstripe -c 2 -i 0 "$dir/20mb" ||
6823                 error "cannot setstripe 20MB file"
6824         echo "done"
6825         echo -n "Sizing 20MB test file..."
6826         truncate "$dir/20mb" 20971520 || error "cannot create 20MB test file"
6827         echo "done"
6828         echo -n "Verifying small file autostripe count is 1..."
6829         $LFS_MIGRATE -y -A -C 1 "$dir/20mb" ||
6830                 error "cannot migrate 20MB file"
6831         local stripe_count=$($LFS getstripe -c "$dir/20mb") ||
6832                 error "cannot get stripe for $dir/20mb"
6833         [ $stripe_count -eq 1 ] ||
6834                 error "unexpected stripe count $stripe_count for 20MB file"
6835         rm -f "$dir/20mb"
6836         echo "done"
6837
6838         # Test 2: File is small enough to fit within the available space on
6839         # sqrt(size_in_gb) + 1 OSTs but is larger than 1GB.  The file must
6840         # have at least an additional 1KB for each desired stripe for test 3
6841         echo -n "Setting stripe for 1GB test file..."
6842         $LFS setstripe -c 1 -i 0 "$dir/1gb" || error "cannot setstripe 1GB file"
6843         echo "done"
6844         echo -n "Sizing 1GB test file..."
6845         # File size is 1GB + 3KB
6846         truncate "$dir/1gb" 1073744896 || error "cannot create 1GB test file"
6847         echo "done"
6848
6849         # need at least 512MB per OST for 1GB file to fit in 2 stripes
6850         local avail=$($LCTL get_param -n llite.$FSNAME*.kbytesavail)
6851         if (( avail > 524288 * OSTCOUNT )); then
6852                 echo -n "Migrating 1GB file..."
6853                 $LFS_MIGRATE -y -A -C 1 "$dir/1gb" ||
6854                         error "cannot migrate 1GB file"
6855                 echo "done"
6856                 echo -n "Verifying autostripe count is sqrt(n) + 1..."
6857                 stripe_count=$($LFS getstripe -c "$dir/1gb") ||
6858                         error "cannot getstripe for 1GB file"
6859                 [ $stripe_count -eq 2 ] ||
6860                         error "unexpected stripe count $stripe_count != 2"
6861                 echo "done"
6862         fi
6863
6864         # Test 3: File is too large to fit within the available space on
6865         # sqrt(n) + 1 OSTs.  Simulate limited available space with -X
6866         if [ $OSTCOUNT -ge 3 ]; then
6867                 # The required available space is calculated as
6868                 # file size (1GB + 3KB) / OST count (3).
6869                 local kb_per_ost=349526
6870
6871                 echo -n "Migrating 1GB file with limit..."
6872                 $LFS_MIGRATE -y -A -C 1 -X $kb_per_ost "$dir/1gb" ||
6873                         error "cannot migrate 1GB file with limit"
6874                 echo "done"
6875
6876                 stripe_count=$($LFS getstripe -c "$dir/1gb")
6877                 echo -n "Verifying 1GB autostripe count with limited space..."
6878                 [ "$stripe_count" -a $stripe_count -ge 3 ] ||
6879                         error "unexpected stripe count $stripe_count (min 3)"
6880                 echo "done"
6881         fi
6882
6883         # clean up
6884         rm -rf $dir
6885 }
6886 run_test 56xc "lfs migration autostripe"
6887
6888 test_56xd() {
6889         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
6890
6891         local dir=$DIR/$tdir
6892         local f_mgrt=$dir/$tfile.mgrt
6893         local f_yaml=$dir/$tfile.yaml
6894         local f_copy=$dir/$tfile.copy
6895         local layout_yaml="-E 1M -S 512K -c 1 -E -1 -S 1M -c 2 -i 0"
6896         local layout_copy="-c 2 -S 2M -i 1"
6897         local yamlfile=$dir/yamlfile
6898         local layout_before;
6899         local layout_after;
6900
6901         test_mkdir "$dir" || error "cannot create dir $dir"
6902         $LFS setstripe $layout_yaml $f_yaml ||
6903                 error "cannot setstripe $f_yaml with layout $layout_yaml"
6904         $LFS getstripe --yaml $f_yaml > $yamlfile
6905         $LFS setstripe $layout_copy $f_copy ||
6906                 error "cannot setstripe $f_copy with layout $layout_copy"
6907         touch $f_mgrt
6908         dd if=/dev/zero of=$f_mgrt bs=1M count=4
6909
6910         # 1. test option --yaml
6911         $LFS_MIGRATE -y --yaml $yamlfile $f_mgrt ||
6912                 error "cannot migrate $f_mgrt with --yaml $yamlfile"
6913         layout_before=$(get_layout_param $f_yaml)
6914         layout_after=$(get_layout_param $f_mgrt)
6915         [ "$layout_after" == "$layout_before" ] ||
6916                 error "lfs_migrate --yaml: $layout_after != $layout_before"
6917
6918         # 2. test option --copy
6919         $LFS_MIGRATE -y --copy $f_copy $f_mgrt ||
6920                 error "cannot migrate $f_mgrt with --copy $f_copy"
6921         layout_before=$(get_layout_param $f_copy)
6922         layout_after=$(get_layout_param $f_mgrt)
6923         [ "$layout_after" == "$layout_before" ] ||
6924                 error "lfs_migrate --copy: $layout_after != $layout_before"
6925 }
6926 run_test 56xd "check lfs_migrate --yaml and --copy support"
6927
6928 test_56xe() {
6929         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
6930
6931         local dir=$DIR/$tdir
6932         local f_comp=$dir/$tfile
6933         local layout="-E 1M -S 512K -c 1 -E -1 -S 1M -c 2 -i 0"
6934         local layout_before=""
6935         local layout_after=""
6936
6937         test_mkdir "$dir" || error "cannot create dir $dir"
6938         $LFS setstripe $layout $f_comp ||
6939                 error "cannot setstripe $f_comp with layout $layout"
6940         layout_before=$(get_layout_param $f_comp)
6941         dd if=/dev/zero of=$f_comp bs=1M count=4
6942
6943         # 1. migrate a comp layout file by lfs_migrate
6944         $LFS_MIGRATE -y $f_comp || error "cannot migrate $f_comp by lfs_migrate"
6945         layout_after=$(get_layout_param $f_comp)
6946         [ "$layout_before" == "$layout_after" ] ||
6947                 error "lfs_migrate: $layout_before != $layout_after"
6948
6949         # 2. migrate a comp layout file by lfs migrate
6950         $LFS migrate $f_comp || error "cannot migrate $f_comp by lfs migrate"
6951         layout_after=$(get_layout_param $f_comp)
6952         [ "$layout_before" == "$layout_after" ] ||
6953                 error "lfs migrate: $layout_before != $layout_after"
6954 }
6955 run_test 56xe "migrate a composite layout file"
6956
6957 test_56y() {
6958         [ $MDS1_VERSION -lt $(version_code 2.4.53) ] &&
6959                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53"
6960
6961         local res=""
6962         local dir=$DIR/$tdir
6963         local f1=$dir/file1
6964         local f2=$dir/file2
6965
6966         test_mkdir -p $dir || error "creating dir $dir"
6967         touch $f1 || error "creating std file $f1"
6968         $MULTIOP $f2 H2c || error "creating released file $f2"
6969
6970         # a directory can be raid0, so ask only for files
6971         res=$($LFS find $dir -L raid0 -type f | wc -l)
6972         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
6973
6974         res=$($LFS find $dir \! -L raid0 -type f | wc -l)
6975         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
6976
6977         # only files can be released, so no need to force file search
6978         res=$($LFS find $dir -L released)
6979         [[ $res == $f2 ]] || error "search released: found $res != $f2"
6980
6981         res=$($LFS find $dir -type f \! -L released)
6982         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
6983 }
6984 run_test 56y "lfs find -L raid0|released"
6985
6986 test_56z() { # LU-4824
6987         # This checks to make sure 'lfs find' continues after errors
6988         # There are two classes of errors that should be caught:
6989         # - If multiple paths are provided, all should be searched even if one
6990         #   errors out
6991         # - If errors are encountered during the search, it should not terminate
6992         #   early
6993         local dir=$DIR/$tdir
6994         local i
6995
6996         test_mkdir $dir
6997         for i in d{0..9}; do
6998                 test_mkdir $dir/$i
6999                 touch $dir/$i/$tfile
7000         done
7001         $LFS find $DIR/non_existent_dir $dir &&
7002                 error "$LFS find did not return an error"
7003         # Make a directory unsearchable. This should NOT be the last entry in
7004         # directory order.  Arbitrarily pick the 6th entry
7005         chmod 700 $($LFS find $dir -type d | sed '6!d')
7006
7007         $RUNAS $LFS find $DIR/non_existent $dir
7008         local count=$($RUNAS $LFS find $DIR/non_existent $dir | wc -l)
7009
7010         # The user should be able to see 10 directories and 9 files
7011         (( count == 19 )) ||
7012                 error "$LFS find found $count != 19 entries after error"
7013 }
7014 run_test 56z "lfs find should continue after an error"
7015
7016 test_56aa() { # LU-5937
7017         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
7018
7019         local dir=$DIR/$tdir
7020
7021         mkdir $dir
7022         $LFS setdirstripe -c$MDSCOUNT $dir/striped_dir
7023
7024         createmany -o $dir/striped_dir/${tfile}- 1024
7025         local dirs=$($LFS find --size +8k $dir/)
7026
7027         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
7028 }
7029 run_test 56aa "lfs find --size under striped dir"
7030
7031 test_56ab() { # LU-10705
7032         test_mkdir $DIR/$tdir
7033         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=8k count=1 seek=2k
7034         dd if=/dev/zero of=$DIR/$tdir/$tfile.2 bs=4k count=1 seek=4k
7035         dd if=/dev/zero of=$DIR/$tdir/$tfile.3 bs=1M count=2 seek=16
7036         # Flush writes to ensure valid blocks.  Need to be more thorough for
7037         # ZFS, since blocks are not allocated/returned to client immediately.
7038         sync_all_data
7039         wait_zfs_commit ost1 2
7040         cancel_lru_locks osc
7041         ls -ls $DIR/$tdir
7042
7043         local files=$($LFS find --size +16M $DIR/$tdir | wc -l)
7044
7045         [[ $files == 3 ]] || error ">16M size files $files isn't 3 as expected"
7046
7047         files=$($LFS find --blocks +1M $DIR/$tdir | wc -l)
7048         [[ $files == 1 ]] || error ">1M blocks files $files isn't 1 as expected"
7049
7050         rm -f $DIR/$tdir/$tfile.[123]
7051 }
7052 run_test 56ab "lfs find --blocks"
7053
7054 test_56ba() {
7055         [ $MDS1_VERSION -lt $(version_code 2.10.50) ] &&
7056                 skip "Need MDS version at least 2.10.50"
7057
7058         # Create composite files with one component
7059         local dir=$DIR/$tdir
7060
7061         setup_56 $dir/1Mfiles 5 1 "-S 1M --component-end 1M"
7062         # Create composite files with three components
7063         setup_56 $dir/2Mfiles 5 2 "-E 2M -S 1M -E 4M -E 6M"
7064         # Create non-composite files
7065         createmany -o $dir/${tfile}- 10
7066
7067         local nfiles=$($LFS find --component-end 1M --type f $dir | wc -l)
7068
7069         [[ $nfiles == 10 ]] ||
7070                 error "lfs find -E 1M found $nfiles != 10 files"
7071
7072         nfiles=$($LFS find ! -E 1M --type f $dir | wc -l)
7073         [[ $nfiles == 25 ]] ||
7074                 error "lfs find ! -E 1M found $nfiles != 25 files"
7075
7076         # All files have a component that starts at 0
7077         nfiles=$($LFS find --component-start 0 --type f $dir | wc -l)
7078         [[ $nfiles == 35 ]] ||
7079                 error "lfs find --component-start 0 - $nfiles != 35 files"
7080
7081         nfiles=$($LFS find --component-start 2M --type f $dir | wc -l)
7082         [[ $nfiles == 15 ]] ||
7083                 error "lfs find --component-start 2M - $nfiles != 15 files"
7084
7085         # All files created here have a componenet that does not starts at 2M
7086         nfiles=$($LFS find ! --component-start 2M --type f $dir | wc -l)
7087         [[ $nfiles == 35 ]] ||
7088                 error "lfs find ! --component-start 2M - $nfiles != 35 files"
7089
7090         # Find files with a specified number of components
7091         local nfiles=$($LFS find --component-count 3 --type f $dir | wc -l)
7092         [[ $nfiles == 15 ]] ||
7093                 error "lfs find --component-count 3 - $nfiles != 15 files"
7094
7095         # Remember non-composite files have a component count of zero
7096         local nfiles=$($LFS find --component-count 0 --type f $dir | wc -l)
7097         [[ $nfiles == 10 ]] ||
7098                 error "lfs find --component-count 0 - $nfiles != 10 files"
7099
7100         nfiles=$($LFS find ! --component-count 3 --type f $dir | wc -l)
7101         [[ $nfiles == 20 ]] ||
7102                 error "lfs find ! --component-count 3 - $nfiles != 20 files"
7103
7104         # All files have a flag called "init"
7105         local nfiles=$($LFS find --component-flags init --type f $dir | wc -l)
7106         [[ $nfiles == 35 ]] ||
7107                 error "lfs find --component-flags init - $nfiles != 35 files"
7108
7109         # Multi-component files will have a component not initialized
7110         local nfiles=$($LFS find ! --component-flags init --type f $dir | wc -l)
7111         [[ $nfiles == 15 ]] ||
7112                 error "lfs find !--component-flags init - $nfiles != 15 files"
7113
7114         rm -rf $dir
7115
7116 }
7117 run_test 56ba "test lfs find --component-end, -start, -count, and -flags"
7118
7119 test_56ca() {
7120         [[ $MDS1_VERSION -ge $(version_code 2.10.57) ]] ||
7121                 skip "Need MDS version at least 2.10.57"
7122
7123         local td=$DIR/$tdir
7124         local tf=$td/$tfile
7125         local dir
7126         local nfiles
7127         local cmd
7128         local i
7129         local j
7130
7131         # create mirrored directories and mirrored files
7132         mkdir $td || error "mkdir $td failed"
7133         $LFS mirror create -N3 $td || error "create mirrored dir $td failed"
7134         createmany -o $tf- 10 || error "create $tf- failed"
7135
7136         for i in $(seq 2); do
7137                 dir=$td/dir$i
7138                 mkdir $dir || error "mkdir $dir failed"
7139                 $LFS mirror create -N$((3 + i)) $dir ||
7140                         error "create mirrored dir $dir failed"
7141                 createmany -o $dir/$tfile- 10 ||
7142                         error "create $dir/$tfile- failed"
7143         done
7144
7145         # change the states of some mirrored files
7146         echo foo > $tf-6
7147         for i in $(seq 2); do
7148                 dir=$td/dir$i
7149                 for j in $(seq 4 9); do
7150                         echo foo > $dir/$tfile-$j
7151                 done
7152         done
7153
7154         # find mirrored files with specific mirror count
7155         cmd="$LFS find --mirror-count 3 --type f $td"
7156         nfiles=$($cmd | wc -l)
7157         [[ $nfiles = 10 ]] || error "$cmd: $nfiles != 10 files"
7158
7159         cmd="$LFS find ! --mirror-count 3 --type f $td"
7160         nfiles=$($cmd | wc -l)
7161         [[ $nfiles = 20 ]] || error "$cmd: $nfiles != 20 files"
7162
7163         cmd="$LFS find --mirror-count +2 --type f $td"
7164         nfiles=$($cmd | wc -l)
7165         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
7166
7167         cmd="$LFS find --mirror-count -6 --type f $td"
7168         nfiles=$($cmd | wc -l)
7169         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
7170
7171         # find mirrored files with specific file state
7172         cmd="$LFS find --maxdepth 1 --mirror-state=^ro --type f $td"
7173         [[ $($cmd) = $tf-6 ]] || error "$cmd: didn't return $tf-6"
7174
7175         cmd="$LFS find --mirror-state=ro --type f $td"
7176         nfiles=$($cmd | wc -l)
7177         [[ $nfiles = 17 ]] || error "$cmd: $nfiles != 17 files"
7178
7179         cmd="$LFS find ! --mirror-state=ro --type f $td"
7180         nfiles=$($cmd | wc -l)
7181         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
7182
7183         cmd="$LFS find --mirror-state=wp --type f $td"
7184         nfiles=$($cmd | wc -l)
7185         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
7186
7187         cmd="$LFS find ! --mirror-state=sp --type f $td"
7188         nfiles=$($cmd | wc -l)
7189         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
7190 }
7191 run_test 56ca "check lfs find --mirror-count|-N and --mirror-state"
7192
7193 test_57a() {
7194         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7195         # note test will not do anything if MDS is not local
7196         if [ "$mds1_FSTYPE" != ldiskfs ]; then
7197                 skip_env "ldiskfs only test"
7198         fi
7199         remote_mds_nodsh && skip "remote MDS with nodsh"
7200
7201         local MNTDEV="osd*.*MDT*.mntdev"
7202         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
7203         [ -z "$DEV" ] && error "can't access $MNTDEV"
7204         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
7205                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
7206                         error "can't access $DEV"
7207                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
7208                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
7209                 rm $TMP/t57a.dump
7210         done
7211 }
7212 run_test 57a "verify MDS filesystem created with large inodes =="
7213
7214 test_57b() {
7215         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7216         if [ "$mds1_FSTYPE" != ldiskfs ]; then
7217                 skip_env "ldiskfs only test"
7218         fi
7219         remote_mds_nodsh && skip "remote MDS with nodsh"
7220
7221         local dir=$DIR/$tdir
7222         local filecount=100
7223         local file1=$dir/f1
7224         local fileN=$dir/f$filecount
7225
7226         rm -rf $dir || error "removing $dir"
7227         test_mkdir -c1 $dir
7228         local mdtidx=$($LFS getstripe -m $dir)
7229         local mdtname=MDT$(printf %04x $mdtidx)
7230         local facet=mds$((mdtidx + 1))
7231
7232         echo "mcreating $filecount files"
7233         createmany -m $dir/f 1 $filecount || error "creating files in $dir"
7234
7235         # verify that files do not have EAs yet
7236         $LFS getstripe $file1 2>&1 | grep -q "no stripe" ||
7237                 error "$file1 has an EA"
7238         $LFS getstripe $fileN 2>&1 | grep -q "no stripe" ||
7239                 error "$fileN has an EA"
7240
7241         sync
7242         sleep 1
7243         df $dir  #make sure we get new statfs data
7244         local mdsfree=$(do_facet $facet \
7245                         lctl get_param -n osd*.*$mdtname.kbytesfree)
7246         local mdcfree=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
7247         local file
7248
7249         echo "opening files to create objects/EAs"
7250         for file in $(seq -f $dir/f%g 1 $filecount); do
7251                 $OPENFILE -f O_RDWR $file > /dev/null 2>&1 ||
7252                         error "opening $file"
7253         done
7254
7255         # verify that files have EAs now
7256         $LFS getstripe $file1 | grep -q "obdidx" || error "$file1 missing EA"
7257         $LFS getstripe $fileN | grep -q "obdidx" || error "$fileN missing EA"
7258
7259         sleep 1  #make sure we get new statfs data
7260         df $dir
7261         local mdsfree2=$(do_facet $facet \
7262                          lctl get_param -n osd*.*$mdtname.kbytesfree)
7263         local mdcfree2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
7264
7265         if [[ $mdcfree2 -lt $((mdcfree - 16)) ]]; then
7266                 if [ "$mdsfree" != "$mdsfree2" ]; then
7267                         error "MDC before $mdcfree != after $mdcfree2"
7268                 else
7269                         echo "MDC before $mdcfree != after $mdcfree2"
7270                         echo "unable to confirm if MDS has large inodes"
7271                 fi
7272         fi
7273         rm -rf $dir
7274 }
7275 run_test 57b "default LOV EAs are stored inside large inodes ==="
7276
7277 test_58() {
7278         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7279         [ -z "$(which wiretest 2>/dev/null)" ] &&
7280                         skip_env "could not find wiretest"
7281
7282         wiretest
7283 }
7284 run_test 58 "verify cross-platform wire constants =============="
7285
7286 test_59() {
7287         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7288
7289         echo "touch 130 files"
7290         createmany -o $DIR/f59- 130
7291         echo "rm 130 files"
7292         unlinkmany $DIR/f59- 130
7293         sync
7294         # wait for commitment of removal
7295         wait_delete_completed
7296 }
7297 run_test 59 "verify cancellation of llog records async ========="
7298
7299 TEST60_HEAD="test_60 run $RANDOM"
7300 test_60a() {
7301         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7302         remote_mgs_nodsh && skip "remote MGS with nodsh"
7303         do_facet mgs "! which run-llog.sh &> /dev/null" &&
7304                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
7305                         skip_env "missing subtest run-llog.sh"
7306
7307         log "$TEST60_HEAD - from kernel mode"
7308         do_facet mgs "$LCTL dk > /dev/null"
7309         do_facet mgs "bash run-llog.sh" || error "run-llog.sh failed"
7310         do_facet mgs $LCTL dk > $TMP/$tfile
7311
7312         # LU-6388: test llog_reader
7313         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
7314         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
7315         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
7316                         skip_env "missing llog_reader"
7317         local fstype=$(facet_fstype mgs)
7318         [ $fstype != ldiskfs -a $fstype != zfs ] &&
7319                 skip_env "Only for ldiskfs or zfs type mgs"
7320
7321         local mntpt=$(facet_mntpt mgs)
7322         local mgsdev=$(mgsdevname 1)
7323         local fid_list
7324         local fid
7325         local rec_list
7326         local rec
7327         local rec_type
7328         local obj_file
7329         local path
7330         local seq
7331         local oid
7332         local pass=true
7333
7334         #get fid and record list
7335         fid_list=($(awk '/9_sub.*record/ { print $NF }' $TMP/$tfile |
7336                 tail -n 4))
7337         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' $TMP/$tfile |
7338                 tail -n 4))
7339         #remount mgs as ldiskfs or zfs type
7340         stop mgs || error "stop mgs failed"
7341         mount_fstype mgs || error "remount mgs failed"
7342         for ((i = 0; i < ${#fid_list[@]}; i++)); do
7343                 fid=${fid_list[i]}
7344                 rec=${rec_list[i]}
7345                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
7346                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
7347                 oid=$((16#$oid))
7348
7349                 case $fstype in
7350                         ldiskfs )
7351                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
7352                         zfs )
7353                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
7354                 esac
7355                 echo "obj_file is $obj_file"
7356                 do_facet mgs $llog_reader $obj_file
7357
7358                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
7359                         awk '{ print $3 }' | sed -e "s/^type=//g")
7360                 if [ $rec_type != $rec ]; then
7361                         echo "FAILED test_60a wrong record type $rec_type," \
7362                               "should be $rec"
7363                         pass=false
7364                         break
7365                 fi
7366
7367                 #check obj path if record type is LLOG_LOGID_MAGIC
7368                 if [ "$rec" == "1064553b" ]; then
7369                         path=$(do_facet mgs $llog_reader $obj_file |
7370                                 grep "path=" | awk '{ print $NF }' |
7371                                 sed -e "s/^path=//g")
7372                         if [ $obj_file != $mntpt/$path ]; then
7373                                 echo "FAILED test_60a wrong obj path" \
7374                                       "$montpt/$path, should be $obj_file"
7375                                 pass=false
7376                                 break
7377                         fi
7378                 fi
7379         done
7380         rm -f $TMP/$tfile
7381         #restart mgs before "error", otherwise it will block the next test
7382         stop mgs || error "stop mgs failed"
7383         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
7384         $pass || error "test failed, see FAILED test_60a messages for specifics"
7385 }
7386 run_test 60a "llog_test run from kernel module and test llog_reader"
7387
7388 test_60b() { # bug 6411
7389         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7390
7391         dmesg > $DIR/$tfile
7392         LLOG_COUNT=$(do_facet mgs dmesg |
7393                      awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
7394                           /llog_[a-z]*.c:[0-9]/ {
7395                                 if (marker)
7396                                         from_marker++
7397                                 from_begin++
7398                           }
7399                           END {
7400                                 if (marker)
7401                                         print from_marker
7402                                 else
7403                                         print from_begin
7404                           }")
7405
7406         [[ $LLOG_COUNT -gt 120 ]] &&
7407                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
7408 }
7409 run_test 60b "limit repeated messages from CERROR/CWARN"
7410
7411 test_60c() {
7412         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7413
7414         echo "create 5000 files"
7415         createmany -o $DIR/f60c- 5000
7416 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
7417         lctl set_param fail_loc=0x80000137
7418         unlinkmany $DIR/f60c- 5000
7419         lctl set_param fail_loc=0
7420 }
7421 run_test 60c "unlink file when mds full"
7422
7423 test_60d() {
7424         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7425
7426         SAVEPRINTK=$(lctl get_param -n printk)
7427         # verify "lctl mark" is even working"
7428         MESSAGE="test message ID $RANDOM $$"
7429         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
7430         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
7431
7432         lctl set_param printk=0 || error "set lnet.printk failed"
7433         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
7434         MESSAGE="new test message ID $RANDOM $$"
7435         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
7436         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
7437         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
7438
7439         lctl set_param -n printk="$SAVEPRINTK"
7440 }
7441 run_test 60d "test printk console message masking"
7442
7443 test_60e() {
7444         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7445         remote_mds_nodsh && skip "remote MDS with nodsh"
7446
7447         touch $DIR/$tfile
7448 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
7449         do_facet mds1 lctl set_param fail_loc=0x15b
7450         rm $DIR/$tfile
7451 }
7452 run_test 60e "no space while new llog is being created"
7453
7454 test_60g() {
7455         local pid
7456         local i
7457
7458         test_mkdir -c $MDSCOUNT $DIR/$tdir
7459
7460         (
7461                 local index=0
7462                 while true; do
7463                         $LFS setdirstripe -i $(($index % $MDSCOUNT)) \
7464                                 -c $MDSCOUNT $DIR/$tdir/subdir$index \
7465                                 2>/dev/null
7466                         mkdir $DIR/$tdir/subdir$index 2>/dev/null
7467                         rmdir $DIR/$tdir/subdir$index 2>/dev/null
7468                         index=$((index + 1))
7469                 done
7470         ) &
7471
7472         pid=$!
7473
7474         for i in {0..100}; do
7475                 # define OBD_FAIL_OSD_TXN_START    0x19a
7476                 local index=$((i % MDSCOUNT + 1))
7477
7478                 do_facet mds$index $LCTL set_param fail_loc=0x8000019a \
7479                         > /dev/null
7480                 usleep 100
7481         done
7482
7483         kill -9 $pid
7484
7485         for i in $(seq $MDSCOUNT); do
7486                 do_facet mds$i $LCTL set_param fail_loc=0 > /dev/null
7487         done
7488
7489         mkdir $DIR/$tdir/new || error "mkdir failed"
7490         rmdir $DIR/$tdir/new || error "rmdir failed"
7491
7492         do_facet mds1 $LCTL lfsck_start -M $(facet_svc mds1) -A -C \
7493                 -t namespace
7494         for i in $(seq $MDSCOUNT); do
7495                 wait_update_facet mds$i "$LCTL get_param -n \
7496                         mdd.$(facet_svc mds$i).lfsck_namespace |
7497                         awk '/^status/ { print \\\$2 }'" "completed"
7498         done
7499
7500         ls -R $DIR/$tdir || error "ls failed"
7501         rm -rf $DIR/$tdir || error "rmdir failed"
7502 }
7503 run_test 60g "transaction abort won't cause MDT hung"
7504
7505 test_60h() {
7506         [ $MDS1_VERSION -le $(version_code 2.12.52) ] &&
7507                 skip "Need MDS version at least 2.12.52"
7508         [ $MDSCOUNT -lt 2 ] && skip "Need at least 2 MDTs"
7509
7510         local f
7511
7512         #define OBD_FAIL_MDS_STRIPE_CREATE       0x188
7513         #define OBD_FAIL_MDS_STRIPE_FID          0x189
7514         for fail_loc in 0x80000188 0x80000189; do
7515                 do_facet mds1 "$LCTL set_param fail_loc=$fail_loc"
7516                 $LFS mkdir -c $MDSCOUNT -i 0 $DIR/$tdir-$fail_loc ||
7517                         error "mkdir $dir-$fail_loc failed"
7518                 for i in {0..10}; do
7519                         # create may fail on missing stripe
7520                         echo $i > $DIR/$tdir-$fail_loc/$i
7521                 done
7522                 $LFS getdirstripe $DIR/$tdir-$fail_loc ||
7523                         error "getdirstripe $tdir-$fail_loc failed"
7524                 $LFS migrate -m 1 $DIR/$tdir-$fail_loc ||
7525                         error "migrate $tdir-$fail_loc failed"
7526                 $LFS getdirstripe $DIR/$tdir-$fail_loc ||
7527                         error "getdirstripe $tdir-$fail_loc failed"
7528                 pushd $DIR/$tdir-$fail_loc
7529                 for f in *; do
7530                         echo $f | cmp $f - || error "$f data mismatch"
7531                 done
7532                 popd
7533                 rm -rf $DIR/$tdir-$fail_loc
7534         done
7535 }
7536 run_test 60h "striped directory with missing stripes can be accessed"
7537
7538 test_61a() {
7539         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7540
7541         f="$DIR/f61"
7542         dd if=/dev/zero of=$f bs=$PAGE_SIZE count=1 || error "dd $f failed"
7543         cancel_lru_locks osc
7544         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
7545         sync
7546 }
7547 run_test 61a "mmap() writes don't make sync hang ================"
7548
7549 test_61b() {
7550         mmap_mknod_test $DIR/$tfile || error "mmap_mknod_test failed"
7551 }
7552 run_test 61b "mmap() of unstriped file is successful"
7553
7554 # bug 2330 - insufficient obd_match error checking causes LBUG
7555 test_62() {
7556         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7557
7558         f="$DIR/f62"
7559         echo foo > $f
7560         cancel_lru_locks osc
7561         lctl set_param fail_loc=0x405
7562         cat $f && error "cat succeeded, expect -EIO"
7563         lctl set_param fail_loc=0
7564 }
7565 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
7566 # match every page all of the time.
7567 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
7568
7569 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
7570 # Though this test is irrelevant anymore, it helped to reveal some
7571 # other grant bugs (LU-4482), let's keep it.
7572 test_63a() {   # was test_63
7573         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7574
7575         MAX_DIRTY_MB=$(lctl get_param -n osc.*.max_dirty_mb | head -n 1)
7576
7577         for i in `seq 10` ; do
7578                 dd if=/dev/zero of=$DIR/f63 bs=8k &
7579                 sleep 5
7580                 kill $!
7581                 sleep 1
7582         done
7583
7584         rm -f $DIR/f63 || true
7585 }
7586 run_test 63a "Verify oig_wait interruption does not crash ======="
7587
7588 # bug 2248 - async write errors didn't return to application on sync
7589 # bug 3677 - async write errors left page locked
7590 test_63b() {
7591         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7592
7593         debugsave
7594         lctl set_param debug=-1
7595
7596         # ensure we have a grant to do async writes
7597         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
7598         rm $DIR/$tfile
7599
7600         sync    # sync lest earlier test intercept the fail_loc
7601
7602         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
7603         lctl set_param fail_loc=0x80000406
7604         $MULTIOP $DIR/$tfile Owy && \
7605                 error "sync didn't return ENOMEM"
7606         sync; sleep 2; sync     # do a real sync this time to flush page
7607         lctl get_param -n llite.*.dump_page_cache | grep locked && \
7608                 error "locked page left in cache after async error" || true
7609         debugrestore
7610 }
7611 run_test 63b "async write errors should be returned to fsync ==="
7612
7613 test_64a () {
7614         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7615
7616         lfs df $DIR
7617         lctl get_param osc.*[oO][sS][cC][_-]*.cur* | grep "=[1-9]"
7618 }
7619 run_test 64a "verify filter grant calculations (in kernel) ====="
7620
7621 test_64b () {
7622         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7623
7624         sh oos.sh $MOUNT || error "oos.sh failed: $?"
7625 }
7626 run_test 64b "check out-of-space detection on client"
7627
7628 test_64c() {
7629         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
7630 }
7631 run_test 64c "verify grant shrink"
7632
7633 # this does exactly what osc_request.c:osc_announce_cached() does in
7634 # order to calculate max amount of grants to ask from server
7635 want_grant() {
7636         local tgt=$1
7637
7638         local nrpages=$($LCTL get_param -n osc.${tgt}.max_pages_per_rpc)
7639         local rpc_in_flight=$($LCTL get_param -n osc.${tgt}.max_rpcs_in_flight)
7640
7641         ((rpc_in_flight ++));
7642         nrpages=$((nrpages * rpc_in_flight))
7643
7644         local dirty_max_pages=$($LCTL get_param -n osc.${tgt}.max_dirty_mb)
7645
7646         dirty_max_pages=$((dirty_max_pages * 1024 * 1024 / PAGE_SIZE))
7647
7648         [[ $dirty_max_pages -gt $nrpages ]] && nrpages=$dirty_max_pages
7649         local undirty=$((nrpages * PAGE_SIZE))
7650
7651         local max_extent_pages
7652         max_extent_pages=$($LCTL get_param osc.${tgt}.import |
7653             grep grant_max_extent_size | awk '{print $2}')
7654         max_extent_pages=$((max_extent_pages / PAGE_SIZE))
7655         local nrextents=$(((nrpages + max_extent_pages - 1) / max_extent_pages))
7656         local grant_extent_tax
7657         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
7658             grep grant_extent_tax | awk '{print $2}')
7659
7660         undirty=$((undirty + nrextents * grant_extent_tax))
7661
7662         echo $undirty
7663 }
7664
7665 # this is size of unit for grant allocation. It should be equal to
7666 # what tgt_grant.c:tgt_grant_chunk() calculates
7667 grant_chunk() {
7668         local tgt=$1
7669         local max_brw_size
7670         local grant_extent_tax
7671
7672         max_brw_size=$($LCTL get_param osc.${tgt}.import |
7673             grep max_brw_size | awk '{print $2}')
7674
7675         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
7676             grep grant_extent_tax | awk '{print $2}')
7677
7678         echo $(((max_brw_size + grant_extent_tax) * 2))
7679 }
7680
7681 test_64d() {
7682         [ $OST1_VERSION -lt $(version_code 2.10.56) ] &&
7683                 skip "OST < 2.10.55 doesn't limit grants enough"
7684
7685         local tgt=$($LCTL dl | grep "0000-osc-[^mM]" | awk '{print $4}')
7686         local file=$DIR/$tfile
7687
7688         [[ $($LCTL get_param osc.${tgt}.import |
7689              grep "connect_flags:.*grant_param") ]] ||
7690                 skip "no grant_param connect flag"
7691
7692         local olddebug=$($LCTL get_param -n debug 2> /dev/null)
7693
7694         $LCTL set_param debug="$OLDDEBUG" 2> /dev/null || true
7695
7696         local max_cur_granted=$(($(want_grant $tgt) + $(grant_chunk $tgt)))
7697         stack_trap "rm -f $file" EXIT
7698
7699         $LFS setstripe $file -i 0 -c 1
7700         dd if=/dev/zero of=$file bs=1M count=1000 &
7701         ddpid=$!
7702
7703         while true
7704         do
7705                 local cur_grant=$($LCTL get_param -n osc.${tgt}.cur_grant_bytes)
7706                 if [[ $cur_grant -gt $max_cur_granted ]]
7707                 then
7708                         kill $ddpid
7709                         error "cur_grant $cur_grant > $max_cur_granted"
7710                 fi
7711                 kill -0 $ddpid
7712                 [[ $? -ne 0 ]] && break;
7713                 sleep 2
7714         done
7715
7716         rm -f $DIR/$tfile
7717         wait_delete_completed
7718         $LCTL set_param debug="$olddebug" 2> /dev/null || true
7719 }
7720 run_test 64d "check grant limit exceed"
7721
7722 # bug 1414 - set/get directories' stripe info
7723 test_65a() {
7724         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7725
7726         test_mkdir $DIR/$tdir
7727         touch $DIR/$tdir/f1
7728         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
7729 }
7730 run_test 65a "directory with no stripe info"
7731
7732 test_65b() {
7733         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7734
7735         test_mkdir $DIR/$tdir
7736         local STRIPESIZE=$($LFS getstripe -S $DIR/$tdir)
7737
7738         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
7739                                                 error "setstripe"
7740         touch $DIR/$tdir/f2
7741         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
7742 }
7743 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
7744
7745 test_65c() {
7746         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7747         [ $OSTCOUNT -lt 2 ] && skip_env "need at least 2 OSTs"
7748
7749         test_mkdir $DIR/$tdir
7750         local stripesize=$($LFS getstripe -S $DIR/$tdir)
7751
7752         $LFS setstripe -S $((stripesize * 4)) -i 1 \
7753                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
7754         touch $DIR/$tdir/f3
7755         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
7756 }
7757 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
7758
7759 test_65d() {
7760         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7761
7762         test_mkdir $DIR/$tdir
7763         local STRIPECOUNT=$($LFS getstripe -c $DIR/$tdir)
7764         local STRIPESIZE=$($LFS getstripe -S $DIR/$tdir)
7765
7766         if [[ $STRIPECOUNT -le 0 ]]; then
7767                 sc=1
7768         elif [[ $STRIPECOUNT -gt $LOV_MAX_STRIPE_COUNT ]]; then
7769                 [[ $OSTCOUNT -gt $LOV_MAX_STRIPE_COUNT ]] &&
7770                         sc=$LOV_MAX_STRIPE_COUNT || sc=$(($OSTCOUNT - 1))
7771         else
7772                 sc=$(($STRIPECOUNT - 1))
7773         fi
7774         $LFS setstripe -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
7775         touch $DIR/$tdir/f4 $DIR/$tdir/f5
7776         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
7777                 error "lverify failed"
7778 }
7779 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
7780
7781 test_65e() {
7782         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7783
7784         test_mkdir $DIR/$tdir
7785
7786         $LFS setstripe $DIR/$tdir || error "setstripe"
7787         $LFS getstripe -v $DIR/$tdir | grep "Default" ||
7788                                         error "no stripe info failed"
7789         touch $DIR/$tdir/f6
7790         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
7791 }
7792 run_test 65e "directory setstripe defaults"
7793
7794 test_65f() {
7795         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7796
7797         test_mkdir $DIR/${tdir}f
7798         $RUNAS $LFS setstripe $DIR/${tdir}f &&
7799                 error "setstripe succeeded" || true
7800 }
7801 run_test 65f "dir setstripe permission (should return error) ==="
7802
7803 test_65g() {
7804         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7805
7806         test_mkdir $DIR/$tdir
7807         local STRIPESIZE=$($LFS getstripe -S $DIR/$tdir)
7808
7809         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
7810                 error "setstripe -S failed"
7811         $LFS setstripe -d $DIR/$tdir || error "setstripe -d failed"
7812         $LFS getstripe -v $DIR/$tdir | grep "Default" ||
7813                 error "delete default stripe failed"
7814 }
7815 run_test 65g "directory setstripe -d"
7816
7817 test_65h() {
7818         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7819
7820         test_mkdir $DIR/$tdir
7821         local STRIPESIZE=$($LFS getstripe -S $DIR/$tdir)
7822
7823         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
7824                 error "setstripe -S failed"
7825         test_mkdir $DIR/$tdir/dd1
7826         [ $($LFS getstripe -c $DIR/$tdir) = $($LFS getstripe -c $DIR/$tdir/dd1) ] ||
7827                 error "stripe info inherit failed"
7828 }
7829 run_test 65h "directory stripe info inherit ===================="
7830
7831 test_65i() {
7832         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7833
7834         save_layout_restore_at_exit $MOUNT
7835
7836         # bug6367: set non-default striping on root directory
7837         $LFS setstripe -S 65536 -c -1 $MOUNT || error "error setting stripe"
7838
7839         # bug12836: getstripe on -1 default directory striping
7840         $LFS getstripe $MOUNT || error "getstripe $MOUNT failed"
7841
7842         # bug12836: getstripe -v on -1 default directory striping
7843         $LFS getstripe -v $MOUNT || error "getstripe -v $MOUNT failed"
7844
7845         # bug12836: new find on -1 default directory striping
7846         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
7847 }
7848 run_test 65i "various tests to set root directory striping"
7849
7850 test_65j() { # bug6367
7851         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7852
7853         sync; sleep 1
7854
7855         # if we aren't already remounting for each test, do so for this test
7856         if [ "$I_MOUNTED" = "yes" ]; then
7857                 cleanup || error "failed to unmount"
7858                 setup
7859         fi
7860
7861         save_layout_restore_at_exit $MOUNT
7862
7863         $LFS setstripe -d $MOUNT || error "setstripe failed"
7864 }
7865 run_test 65j "set default striping on root directory (bug 6367)="
7866
7867 cleanup_65k() {
7868         rm -rf $DIR/$tdir
7869         wait_delete_completed
7870         do_facet $SINGLEMDS "lctl set_param -n \
7871                 osp.$ost*MDT0000.max_create_count=$max_count"
7872         do_facet $SINGLEMDS "lctl set_param -n \
7873                 osp.$ost*MDT0000.create_count=$count"
7874         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
7875         echo $INACTIVE_OSC "is Activate"
7876
7877         wait_osc_import_state mds ost$(( ostnum + 1 )) FULL
7878 }
7879
7880 test_65k() { # bug11679
7881         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7882         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
7883         remote_mds_nodsh && skip "remote MDS with nodsh"
7884
7885         local disable_precreate=true
7886         [ $MDS1_VERSION -le $(version_code 2.8.54) ] &&
7887                 disable_precreate=false
7888
7889         echo "Check OST status: "
7890         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
7891                 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
7892
7893         for OSC in $MDS_OSCS; do
7894                 echo $OSC "is active"
7895                 do_facet $SINGLEMDS lctl --device %$OSC activate
7896         done
7897
7898         for INACTIVE_OSC in $MDS_OSCS; do
7899                 local ost=$(osc_to_ost $INACTIVE_OSC)
7900                 local ostnum=$(do_facet $SINGLEMDS lctl get_param -n \
7901                                lov.*md*.target_obd |
7902                                awk -F: /$ost/'{ print $1 }' | head -n 1)
7903
7904                 mkdir -p $DIR/$tdir
7905                 $LFS setstripe -i $ostnum -c 1 $DIR/$tdir
7906                 createmany -o $DIR/$tdir/$tfile.$ostnum. 1000
7907
7908                 echo "Deactivate: " $INACTIVE_OSC
7909                 do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
7910
7911                 local count=$(do_facet $SINGLEMDS "lctl get_param -n \
7912                               osp.$ost*MDT0000.create_count")
7913                 local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
7914                                   osp.$ost*MDT0000.max_create_count")
7915                 $disable_precreate &&
7916                         do_facet $SINGLEMDS "lctl set_param -n \
7917                                 osp.$ost*MDT0000.max_create_count=0"
7918
7919                 for idx in $(seq 0 $((OSTCOUNT - 1))); do
7920                         [ -f $DIR/$tdir/$idx ] && continue
7921                         echo "$LFS setstripe -i $idx -c 1 $DIR/$tdir/$idx"
7922                         $LFS setstripe -i $idx -c 1 $DIR/$tdir/$idx ||
7923                                 { cleanup_65k;
7924                                   error "setstripe $idx should succeed"; }
7925                         rm -f $DIR/$tdir/$idx || error "rm $idx failed"
7926                 done
7927                 unlinkmany $DIR/$tdir/$tfile.$ostnum. 1000
7928                 rmdir $DIR/$tdir
7929
7930                 do_facet $SINGLEMDS "lctl set_param -n \
7931                         osp.$ost*MDT0000.max_create_count=$max_count"
7932                 do_facet $SINGLEMDS "lctl set_param -n \
7933                         osp.$ost*MDT0000.create_count=$count"
7934                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
7935                 echo $INACTIVE_OSC "is Activate"
7936
7937                 wait_osc_import_state mds ost$(( ostnum + 1 )) FULL
7938         done
7939 }
7940 run_test 65k "validate manual striping works properly with deactivated OSCs"
7941
7942 test_65l() { # bug 12836
7943         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7944
7945         test_mkdir -p $DIR/$tdir/test_dir
7946         $LFS setstripe -c -1 $DIR/$tdir/test_dir
7947         $LFS find -mtime -1 $DIR/$tdir >/dev/null
7948 }
7949 run_test 65l "lfs find on -1 stripe dir ========================"
7950
7951 test_65m() {
7952         local layout=$(save_layout $MOUNT)
7953         $RUNAS $LFS setstripe -c 2 $MOUNT && {
7954                 restore_layout $MOUNT $layout
7955                 error "setstripe should fail by non-root users"
7956         }
7957         true
7958 }
7959 run_test 65m "normal user can't set filesystem default stripe"
7960
7961 test_65n() {
7962         [ -n "$FILESET" ] && skip "Not functional for FILESET set"
7963         [[ $MDS1_VERSION -ge $(version_code 2.12.50) ]] ||
7964                 skip "Need MDS version at least 2.12.50"
7965         [[ $PARALLEL != "yes" ]] || skip "skip parallel run"
7966
7967         [[ $OSTCOUNT -ge 2 ]] || skip_env "needs >= 2 OSTs"
7968         which getfattr > /dev/null 2>&1 || skip_env "no getfattr command"
7969         which setfattr > /dev/null 2>&1 || skip_env "no setfattr command"
7970
7971         local root_layout=$(save_layout $MOUNT)
7972         stack_trap "restore_layout $MOUNT $root_layout" EXIT
7973
7974         # new subdirectory under root directory should not inherit
7975         # the default layout from root
7976         local dir1=$MOUNT/$tdir-1
7977         mkdir $dir1 || error "mkdir $dir1 failed"
7978         ! getfattr -n trusted.lov $dir1 &> /dev/null ||
7979                 error "$dir1 shouldn't have LOV EA"
7980
7981         # delete the default layout on root directory
7982         $LFS setstripe -d $MOUNT || error "delete root default layout failed"
7983
7984         local dir2=$MOUNT/$tdir-2
7985         mkdir $dir2 || error "mkdir $dir2 failed"
7986         ! getfattr -n trusted.lov $dir2 &> /dev/null ||
7987                 error "$dir2 shouldn't have LOV EA"
7988
7989         # set a new striping pattern on root directory
7990         local def_stripe_size=$($LFS getstripe -S $MOUNT)
7991         local new_def_stripe_size=$((def_stripe_size * 2))
7992         $LFS setstripe -S $new_def_stripe_size $MOUNT ||
7993                 error "set stripe size on $MOUNT failed"
7994
7995         # new file created in $dir2 should inherit the new stripe size from
7996         # the filesystem default
7997         local file2=$dir2/$tfile-2
7998         touch $file2 || error "touch $file2 failed"
7999
8000         local file2_stripe_size=$($LFS getstripe -S $file2)
8001         [[ $file2_stripe_size -eq $new_def_stripe_size ]] ||
8002                 error "$file2 didn't inherit stripe size $new_def_stripe_size"
8003
8004         local dir3=$MOUNT/$tdir-3
8005         mkdir $dir3 || error "mkdir $dir3 failed"
8006         # $dir3 shouldn't have LOV EA, but "lfs getstripe -d $dir3" should show
8007         # the root layout, which is the actual default layout that will be used
8008         # when new files are created in $dir3.
8009         local dir3_layout=$(get_layout_param $dir3)
8010         local root_dir_layout=$(get_layout_param $MOUNT)
8011         [[ "$dir3_layout" = "$root_dir_layout" ]] ||
8012                 error "$dir3 should show the default layout from $MOUNT"
8013
8014         # set OST pool on root directory
8015         local pool=$TESTNAME
8016         pool_add $pool || error "add $pool failed"
8017         pool_add_targets $pool 0 $((OSTCOUNT - 1)) 1 ||
8018                 error "add targets to $pool failed"
8019
8020         $LFS setstripe -p $pool $MOUNT ||
8021                 error "set OST pool on $MOUNT failed"
8022
8023         # new file created in $dir3 should inherit the pool from
8024         # the filesystem default
8025         local file3=$dir3/$tfile-3
8026         touch $file3 || error "touch $file3 failed"
8027
8028         local file3_pool=$($LFS getstripe -p $file3)
8029         [[ "$file3_pool" = "$pool" ]] ||
8030                 error "$file3 didn't inherit OST pool $pool"
8031
8032         local dir4=$MOUNT/$tdir-4
8033         mkdir $dir4 || error "mkdir $dir4 failed"
8034         local dir4_layout=$(get_layout_param $dir4)
8035         root_dir_layout=$(get_layout_param $MOUNT)
8036         echo "$LFS getstripe -d $dir4"
8037         $LFS getstripe -d $dir4
8038         echo "$LFS getstripe -d $MOUNT"
8039         $LFS getstripe -d $MOUNT
8040         [[ "$dir4_layout" = "$root_dir_layout" ]] ||
8041                 error "$dir4 should show the default layout from $MOUNT"
8042
8043         # new file created in $dir4 should inherit the pool from
8044         # the filesystem default
8045         local file4=$dir4/$tfile-4
8046         touch $file4 || error "touch $file4 failed"
8047
8048         local file4_pool=$($LFS getstripe -p $file4)
8049         [[ "$file4_pool" = "$pool" ]] ||
8050                 error "$file4 didn't inherit OST pool $pool"
8051
8052         # new subdirectory under non-root directory should inherit
8053         # the default layout from its parent directory
8054         $LFS setstripe -S $new_def_stripe_size -p $pool $dir4 ||
8055                 error "set directory layout on $dir4 failed"
8056
8057         local dir5=$dir4/$tdir-5
8058         mkdir $dir5 || error "mkdir $dir5 failed"
8059
8060         dir4_layout=$(get_layout_param $dir4)
8061         local dir5_layout=$(get_layout_param $dir5)
8062         [[ "$dir4_layout" = "$dir5_layout" ]] ||
8063                 error "$dir5 should inherit the default layout from $dir4"
8064
8065         # though subdir under ROOT doesn't inherit default layout, but
8066         # its sub dir/file should be created with default layout.
8067         [[ $MDSCOUNT -ge 2 ]] || skip_env "needs >= 2 MDTs"
8068         [[ $MDS1_VERSION -ge $(version_code 2.12.59) ]] ||
8069                 skip "Need MDS version at least 2.12.59"
8070
8071         local default_lmv_count=$($LFS getdirstripe -D -c $MOUNT)
8072         local default_lmv_index=$($LFS getdirstripe -D -i $MOUNT)
8073         local default_lmv_hash=$($LFS getdirstripe -D -H $MOUNT)
8074
8075         if [ $default_lmv_hash == "none" ]; then
8076                 stack_trap "$LFS setdirstripe -D -d $MOUNT" EXIT
8077         else
8078                 stack_trap "$LFS setdirstripe -D -i $default_lmv_index \
8079                         -c $default_lmv_count -H $default_lmv_hash $MOUNT" EXIT
8080         fi
8081
8082         $LFS setdirstripe -D -c 2 $MOUNT ||
8083                 error "setdirstripe -D -c 2 failed"
8084         mkdir $MOUNT/$tdir-6 || error "mkdir $tdir-6 failed"
8085         local lmv_count=$($LFS getdirstripe -c $MOUNT/$tdir-6)
8086         [ $lmv_count -eq 2 ] || error "$tdir-6 stripe count $lmv_count"
8087 }
8088 run_test 65n "don't inherit default layout from root for new subdirectories"
8089
8090 # bug 2543 - update blocks count on client
8091 test_66() {
8092         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8093
8094         COUNT=${COUNT:-8}
8095         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
8096         sync; sync_all_data; sync; sync_all_data
8097         cancel_lru_locks osc
8098         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
8099         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
8100 }
8101 run_test 66 "update inode blocks count on client ==============="
8102
8103 meminfo() {
8104         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
8105 }
8106
8107 swap_used() {
8108         swapon -s | awk '($1 == "'$1'") { print $4 }'
8109 }
8110
8111 # bug5265, obdfilter oa2dentry return -ENOENT
8112 # #define OBD_FAIL_SRV_ENOENT 0x217
8113 test_69() {
8114         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8115         remote_ost_nodsh && skip "remote OST with nodsh"
8116
8117         f="$DIR/$tfile"
8118         $LFS setstripe -c 1 -i 0 $f
8119
8120         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
8121
8122         do_facet ost1 lctl set_param fail_loc=0x217
8123         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
8124         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
8125
8126         do_facet ost1 lctl set_param fail_loc=0
8127         $DIRECTIO write $f 0 2 || error "write error"
8128
8129         cancel_lru_locks osc
8130         $DIRECTIO read $f 0 1 || error "read error"
8131
8132         do_facet ost1 lctl set_param fail_loc=0x217
8133         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
8134
8135         do_facet ost1 lctl set_param fail_loc=0
8136         rm -f $f
8137 }
8138 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
8139
8140 test_71() {
8141         test_mkdir $DIR/$tdir
8142         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
8143         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
8144 }
8145 run_test 71 "Running dbench on lustre (don't segment fault) ===="
8146
8147 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
8148         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8149         [ "$RUNAS_ID" = "$UID" ] &&
8150                 skip_env "RUNAS_ID = UID = $UID -- skipping"
8151         # Check that testing environment is properly set up. Skip if not
8152         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS ||
8153                 skip_env "User $RUNAS_ID does not exist - skipping"
8154
8155         touch $DIR/$tfile
8156         chmod 777 $DIR/$tfile
8157         chmod ug+s $DIR/$tfile
8158         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
8159                 error "$RUNAS dd $DIR/$tfile failed"
8160         # See if we are still setuid/sgid
8161         [ -u $DIR/$tfile ] || [ -g $DIR/$tfile ] &&
8162                 error "S/gid is not dropped on write"
8163         # Now test that MDS is updated too
8164         cancel_lru_locks mdc
8165         [ -u $DIR/$tfile ] || [ -g $DIR/$tfile ] &&
8166                 error "S/gid is not dropped on MDS"
8167         rm -f $DIR/$tfile
8168 }
8169 run_test 72a "Test that remove suid works properly (bug5695) ===="
8170
8171 test_72b() { # bug 24226 -- keep mode setting when size is not changing
8172         local perm
8173
8174         [ "$RUNAS_ID" = "$UID" ] &&
8175                 skip_env "RUNAS_ID = UID = $UID -- skipping"
8176         [ "$RUNAS_ID" -eq 0 ] &&
8177                 skip_env "RUNAS_ID = 0 -- skipping"
8178         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8179         # Check that testing environment is properly set up. Skip if not
8180         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS ||
8181                 skip_env "User $RUNAS_ID does not exist - skipping"
8182
8183         touch $DIR/${tfile}-f{g,u}
8184         test_mkdir $DIR/${tfile}-dg
8185         test_mkdir $DIR/${tfile}-du
8186         chmod 770 $DIR/${tfile}-{f,d}{g,u}
8187         chmod g+s $DIR/${tfile}-{f,d}g
8188         chmod u+s $DIR/${tfile}-{f,d}u
8189         for perm in 777 2777 4777; do
8190                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
8191                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
8192                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
8193                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
8194         done
8195         true
8196 }
8197 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
8198
8199 # bug 3462 - multiple simultaneous MDC requests
8200 test_73() {
8201         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8202
8203         test_mkdir $DIR/d73-1
8204         test_mkdir $DIR/d73-2
8205         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
8206         pid1=$!
8207
8208         lctl set_param fail_loc=0x80000129
8209         $MULTIOP $DIR/d73-1/f73-2 Oc &
8210         sleep 1
8211         lctl set_param fail_loc=0
8212
8213         $MULTIOP $DIR/d73-2/f73-3 Oc &
8214         pid3=$!
8215
8216         kill -USR1 $pid1
8217         wait $pid1 || return 1
8218
8219         sleep 25
8220
8221         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
8222         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
8223         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
8224
8225         rm -rf $DIR/d73-*
8226 }
8227 run_test 73 "multiple MDC requests (should not deadlock)"
8228
8229 test_74a() { # bug 6149, 6184
8230         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8231
8232         touch $DIR/f74a
8233         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
8234         #
8235         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
8236         # will spin in a tight reconnection loop
8237         $LCTL set_param fail_loc=0x8000030e
8238         # get any lock that won't be difficult - lookup works.
8239         ls $DIR/f74a
8240         $LCTL set_param fail_loc=0
8241         rm -f $DIR/f74a
8242         true
8243 }
8244 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
8245
8246 test_74b() { # bug 13310
8247         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8248
8249         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
8250         #
8251         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
8252         # will spin in a tight reconnection loop
8253         $LCTL set_param fail_loc=0x8000030e
8254         # get a "difficult" lock
8255         touch $DIR/f74b
8256         $LCTL set_param fail_loc=0
8257         rm -f $DIR/f74b
8258         true
8259 }
8260 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
8261
8262 test_74c() {
8263         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8264
8265         #define OBD_FAIL_LDLM_NEW_LOCK
8266         $LCTL set_param fail_loc=0x319
8267         touch $DIR/$tfile && error "touch successful"
8268         $LCTL set_param fail_loc=0
8269         true
8270 }
8271 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
8272
8273 num_inodes() {
8274         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
8275 }
8276
8277 test_76() { # Now for bug 20433, added originally in bug 1443
8278         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8279
8280         cancel_lru_locks osc
8281         local cpus=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
8282         local before=$(num_inodes)
8283         local count=$((512 * cpus))
8284         [ "$SLOW" = "no" ] && count=$((64 * cpus))
8285
8286         echo "before inodes: $before"
8287         for i in $(seq $count); do
8288                 touch $DIR/$tfile
8289                 rm -f $DIR/$tfile
8290         done
8291         cancel_lru_locks osc
8292         local after=$(num_inodes)
8293         echo "after inodes: $after"
8294         while (( after > before + 8 * ${cpus:-1} )); do
8295                 sleep 1
8296                 after=$(num_inodes)
8297                 wait=$((wait + 1))
8298                 (( wait % 5 == 0 )) && echo "wait $wait seconds inodes: $after"
8299                 if (( wait > 30 )); then
8300                         error "inode slab grew from $before to $after"
8301                 fi
8302         done
8303 }
8304 run_test 76 "confirm clients recycle inodes properly ===="
8305
8306
8307 export ORIG_CSUM=""
8308 set_checksums()
8309 {
8310         # Note: in sptlrpc modes which enable its own bulk checksum, the
8311         # original crc32_le bulk checksum will be automatically disabled,
8312         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
8313         # will be checked by sptlrpc code against sptlrpc bulk checksum.
8314         # In this case set_checksums() will not be no-op, because sptlrpc
8315         # bulk checksum will be enabled all through the test.
8316
8317         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
8318         lctl set_param -n osc.*.checksums $1
8319         return 0
8320 }
8321
8322 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
8323                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
8324 CKSUM_TYPES=${CKSUM_TYPES:-$(lctl get_param -n osc.*osc-[^mM]*.checksum_type |
8325                              tr -d [] | head -n1)}
8326 set_checksum_type()
8327 {
8328         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
8329         rc=$?
8330         log "set checksum type to $1, rc = $rc"
8331         return $rc
8332 }
8333
8334 get_osc_checksum_type()
8335 {
8336         # arugment 1: OST name, like OST0000
8337         ost=$1
8338         checksum_type=$(lctl get_param -n osc.*${ost}-osc-[^mM]*.checksum_type |
8339                         sed 's/.*\[\(.*\)\].*/\1/g')
8340         rc=$?
8341         [ $rc -ne 0 ] && error "failed to get checksum type of $ost, rc = $rc, output = $checksum_type"
8342         echo $checksum_type
8343 }
8344
8345 F77_TMP=$TMP/f77-temp
8346 F77SZ=8
8347 setup_f77() {
8348         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
8349                 error "error writing to $F77_TMP"
8350 }
8351
8352 test_77a() { # bug 10889
8353         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8354         $GSS && skip_env "could not run with gss"
8355
8356         [ ! -f $F77_TMP ] && setup_f77
8357         set_checksums 1
8358         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
8359         set_checksums 0
8360         rm -f $DIR/$tfile
8361 }
8362 run_test 77a "normal checksum read/write operation"
8363
8364 test_77b() { # bug 10889
8365         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8366         $GSS && skip_env "could not run with gss"
8367
8368         [ ! -f $F77_TMP ] && setup_f77
8369         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
8370         $LCTL set_param fail_loc=0x80000409
8371         set_checksums 1
8372
8373         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
8374                 error "dd error: $?"
8375         $LCTL set_param fail_loc=0
8376
8377         for algo in $CKSUM_TYPES; do
8378                 cancel_lru_locks osc
8379                 set_checksum_type $algo
8380                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
8381                 $LCTL set_param fail_loc=0x80000408
8382                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
8383                 $LCTL set_param fail_loc=0
8384         done
8385         set_checksums 0
8386         set_checksum_type $ORIG_CSUM_TYPE
8387         rm -f $DIR/$tfile
8388 }
8389 run_test 77b "checksum error on client write, read"
8390
8391 cleanup_77c() {
8392         trap 0
8393         set_checksums 0
8394         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=0
8395         $check_ost &&
8396                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=0
8397         [ -n "$osc_file_prefix" ] && rm -f ${osc_file_prefix}*
8398         $check_ost && [ -n "$ost_file_prefix" ] &&
8399                 do_facet ost1 rm -f ${ost_file_prefix}\*
8400 }
8401
8402 test_77c() {
8403         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8404         $GSS && skip_env "could not run with gss"
8405         remote_ost_nodsh && skip "remote OST with nodsh"
8406
8407         local bad1
8408         local osc_file_prefix
8409         local osc_file
8410         local check_ost=false
8411         local ost_file_prefix
8412         local ost_file
8413         local orig_cksum
8414         local dump_cksum
8415         local fid
8416
8417         # ensure corruption will occur on first OSS/OST
8418         $LFS setstripe -i 0 $DIR/$tfile
8419
8420         [ ! -f $F77_TMP ] && setup_f77
8421         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
8422                 error "dd write error: $?"
8423         fid=$($LFS path2fid $DIR/$tfile)
8424
8425         if [ $OST1_VERSION -ge $(version_code 2.9.57) ]
8426         then
8427                 check_ost=true
8428                 ost_file_prefix=$(do_facet ost1 $LCTL get_param -n debug_path)
8429                 ost_file_prefix=${ost_file_prefix}-checksum_dump-ost-\\${fid}
8430         else
8431                 echo "OSS do not support bulk pages dump upon error"
8432         fi
8433
8434         osc_file_prefix=$($LCTL get_param -n debug_path)
8435         osc_file_prefix=${osc_file_prefix}-checksum_dump-osc-\\${fid}
8436
8437         trap cleanup_77c EXIT
8438
8439         set_checksums 1
8440         # enable bulk pages dump upon error on Client
8441         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=1
8442         # enable bulk pages dump upon error on OSS
8443         $check_ost &&
8444                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=1
8445
8446         # flush Client cache to allow next read to reach OSS
8447         cancel_lru_locks osc
8448
8449         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE       0x408
8450         $LCTL set_param fail_loc=0x80000408
8451         dd if=$DIR/$tfile of=/dev/null bs=1M || error "dd read error: $?"
8452         $LCTL set_param fail_loc=0
8453
8454         rm -f $DIR/$tfile
8455
8456         # check cksum dump on Client
8457         osc_file=$(ls ${osc_file_prefix}*)
8458         [ -n "$osc_file" ] || error "no checksum dump file on Client"
8459         # OBD_FAIL_OSC_CHECKSUM_RECEIVE corrupts with "bad1" at start of file
8460         bad1=$(dd if=$osc_file bs=1 count=4 2>/dev/null) || error "dd error: $?"
8461         [ $bad1 == "bad1" ] || error "unexpected corrupt pattern"
8462         orig_cksum=$(dd if=$F77_TMP bs=1 skip=4 count=1048572 2>/dev/null |
8463                      cksum)
8464         dump_cksum=$(dd if=$osc_file bs=1 skip=4 2>/dev/null | cksum)
8465         [[ "$orig_cksum" == "$dump_cksum" ]] ||
8466                 error "dump content does not match on Client"
8467
8468         $check_ost || skip "No need to check cksum dump on OSS"
8469
8470         # check cksum dump on OSS
8471         ost_file=$(do_facet ost1 ls ${ost_file_prefix}\*)
8472         [ -n "$ost_file" ] || error "no checksum dump file on OSS"
8473         orig_cksum=$(dd if=$F77_TMP bs=1048576 count=1 2>/dev/null | cksum)
8474         dump_cksum=$(do_facet ost1 dd if=$ost_file 2>/dev/null \| cksum)
8475         [[ "$orig_cksum" == "$dump_cksum" ]] ||
8476                 error "dump content does not match on OSS"
8477
8478         cleanup_77c
8479 }
8480 run_test 77c "checksum error on client read with debug"
8481
8482 test_77d() { # bug 10889
8483         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8484         $GSS && skip_env "could not run with gss"
8485
8486         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
8487         $LCTL set_param fail_loc=0x80000409
8488         set_checksums 1
8489         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
8490                 error "direct write: rc=$?"
8491         $LCTL set_param fail_loc=0
8492         set_checksums 0
8493
8494         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
8495         $LCTL set_param fail_loc=0x80000408
8496         set_checksums 1
8497         cancel_lru_locks osc
8498         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
8499                 error "direct read: rc=$?"
8500         $LCTL set_param fail_loc=0
8501         set_checksums 0
8502 }
8503 run_test 77d "checksum error on OST direct write, read"
8504
8505 test_77f() { # bug 10889
8506         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8507         $GSS && skip_env "could not run with gss"
8508
8509         set_checksums 1
8510         for algo in $CKSUM_TYPES; do
8511                 cancel_lru_locks osc
8512                 set_checksum_type $algo
8513                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
8514                 $LCTL set_param fail_loc=0x409
8515                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
8516                         error "direct write succeeded"
8517                 $LCTL set_param fail_loc=0
8518         done
8519         set_checksum_type $ORIG_CSUM_TYPE
8520         set_checksums 0
8521 }
8522 run_test 77f "repeat checksum error on write (expect error)"
8523
8524 test_77g() { # bug 10889
8525         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8526         $GSS && skip_env "could not run with gss"
8527         remote_ost_nodsh && skip "remote OST with nodsh"
8528
8529         [ ! -f $F77_TMP ] && setup_f77
8530
8531         local file=$DIR/$tfile
8532         stack_trap "rm -f $file" EXIT
8533
8534         $LFS setstripe -c 1 -i 0 $file
8535         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
8536         do_facet ost1 lctl set_param fail_loc=0x8000021a
8537         set_checksums 1
8538         dd if=$F77_TMP of=$file bs=1M count=$F77SZ ||
8539                 error "write error: rc=$?"
8540         do_facet ost1 lctl set_param fail_loc=0
8541         set_checksums 0
8542
8543         cancel_lru_locks osc
8544         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
8545         do_facet ost1 lctl set_param fail_loc=0x8000021b
8546         set_checksums 1
8547         cmp $F77_TMP $file || error "file compare failed"
8548         do_facet ost1 lctl set_param fail_loc=0
8549         set_checksums 0
8550 }
8551 run_test 77g "checksum error on OST write, read"
8552
8553 test_77k() { # LU-10906
8554         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8555         $GSS && skip_env "could not run with gss"
8556
8557         local cksum_param="osc.$FSNAME*.checksums"
8558         local get_checksum="$LCTL get_param -n $cksum_param | head -n1"
8559         local checksum
8560         local i
8561
8562         [ "$ORIG_CSUM" ] || ORIG_CSUM=$(eval $get_checksum)
8563         stack_trap "wait_update $HOSTNAME '$get_checksum' $ORIG_CSUM" EXIT
8564         stack_trap "do_facet mgs $LCTL set_param -P $cksum_param=$ORIG_CSUM" \
8565                 EXIT
8566
8567         for i in 0 1; do
8568                 do_facet mgs $LCTL set_param -P $cksum_param=$i ||
8569                         error "failed to set checksum=$i on MGS"
8570                 wait_update $HOSTNAME "$get_checksum" $i
8571                 #remount
8572                 echo "remount client, checksum should be $i"
8573                 remount_client $MOUNT || error "failed to remount client"
8574                 checksum=$(eval $get_checksum)
8575                 [ $checksum -eq $i ] || error "checksum($checksum) != $i"
8576         done
8577         # remove persistent param to avoid races with checksum mountopt below
8578         do_facet mgs $LCTL set_param -P -d $cksum_param ||
8579                 error "failed to delete checksum on MGS"
8580
8581         for opt in "checksum" "nochecksum"; do
8582                 #remount with mount option
8583                 echo "remount client with option $opt, checksum should be $i"
8584                 umount_client $MOUNT || error "failed to umount client"
8585                 mount_client $MOUNT "$MOUNT_OPTS,$opt" ||
8586                         error "failed to mount client with option '$opt'"
8587                 checksum=$(eval $get_checksum)
8588                 [ $checksum -eq $i ] || error "checksum($checksum) != $i"
8589                 i=$((i - 1))
8590         done
8591
8592         remount_client $MOUNT || error "failed to remount client"
8593 }
8594 run_test 77k "enable/disable checksum correctly"
8595
8596 test_77l() {
8597         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8598         $GSS && skip_env "could not run with gss"
8599
8600         set_checksums 1
8601         stack_trap "set_checksums $ORIG_CSUM" EXIT
8602         stack_trap "set_checksum_type $ORIG_CSUM_TYPE" EXIT
8603
8604         set_checksum_type invalid && error "unexpected success of invalid checksum type"
8605
8606         $LFS setstripe -c 1 -i 0 $DIR/$tfile
8607         for algo in $CKSUM_TYPES; do
8608                 set_checksum_type $algo || error "fail to set checksum type $algo"
8609                 osc_algo=$(get_osc_checksum_type OST0000)
8610                 [ "$osc_algo" != "$algo" ] && error "checksum type is $osc_algo after setting it to $algo"
8611
8612                 # no locks, no reqs to let the connection idle
8613                 cancel_lru_locks osc
8614                 lru_resize_disable osc
8615                 wait_osc_import_state client ost1 IDLE
8616
8617                 # ensure ost1 is connected
8618                 stat $DIR/$tfile >/dev/null || error "can't stat"
8619                 wait_osc_import_state client ost1 FULL
8620
8621                 osc_algo=$(get_osc_checksum_type OST0000)
8622                 [ "$osc_algo" != "$algo" ] && error "checksum type changed from $algo to $osc_algo after reconnection"
8623         done
8624         return 0
8625 }
8626 run_test 77l "preferred checksum type is remembered after reconnected"
8627
8628 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
8629 rm -f $F77_TMP
8630 unset F77_TMP
8631
8632 cleanup_test_78() {
8633         trap 0
8634         rm -f $DIR/$tfile
8635 }
8636
8637 test_78() { # bug 10901
8638         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8639         remote_ost || skip_env "local OST"
8640
8641         NSEQ=5
8642         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
8643         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
8644         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
8645         echo "MemTotal: $MEMTOTAL"
8646
8647         # reserve 256MB of memory for the kernel and other running processes,
8648         # and then take 1/2 of the remaining memory for the read/write buffers.
8649         if [ $MEMTOTAL -gt 512 ] ;then
8650                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
8651         else
8652                 # for those poor memory-starved high-end clusters...
8653                 MEMTOTAL=$((MEMTOTAL / 2))
8654         fi
8655         echo "Mem to use for directio: $MEMTOTAL"
8656
8657         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
8658         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
8659         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
8660         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
8661                 head -n1)
8662         echo "Smallest OST: $SMALLESTOST"
8663         [[ $SMALLESTOST -lt 10240 ]] &&
8664                 skip "too small OSTSIZE, useless to run large O_DIRECT test"
8665
8666         trap cleanup_test_78 EXIT
8667
8668         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
8669                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
8670
8671         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
8672         echo "File size: $F78SIZE"
8673         $LFS setstripe -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
8674         for i in $(seq 1 $NSEQ); do
8675                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
8676                 echo directIO rdwr round $i of $NSEQ
8677                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
8678         done
8679
8680         cleanup_test_78
8681 }
8682 run_test 78 "handle large O_DIRECT writes correctly ============"
8683
8684 test_79() { # bug 12743
8685         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8686
8687         wait_delete_completed
8688
8689         BKTOTAL=$(calc_osc_kbytes kbytestotal)
8690         BKFREE=$(calc_osc_kbytes kbytesfree)
8691         BKAVAIL=$(calc_osc_kbytes kbytesavail)
8692
8693         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
8694         DFTOTAL=`echo $STRING | cut -d, -f1`
8695         DFUSED=`echo $STRING  | cut -d, -f2`
8696         DFAVAIL=`echo $STRING | cut -d, -f3`
8697         DFFREE=$(($DFTOTAL - $DFUSED))
8698
8699         ALLOWANCE=$((64 * $OSTCOUNT))
8700
8701         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
8702            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
8703                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
8704         fi
8705         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
8706            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
8707                 error "df free($DFFREE) mismatch OST free($BKFREE)"
8708         fi
8709         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
8710            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
8711                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
8712         fi
8713 }
8714 run_test 79 "df report consistency check ======================="
8715
8716 test_80() { # bug 10718
8717         remote_ost_nodsh && skip "remote OST with nodsh"
8718         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8719
8720         # relax strong synchronous semantics for slow backends like ZFS
8721         if [ "$ost1_FSTYPE" != "ldiskfs" ]; then
8722                 local soc="obdfilter.*.sync_lock_cancel"
8723                 local save=$(do_facet ost1 $LCTL get_param -n $soc | head -n1)
8724
8725                 # "sync_on_lock_cancel" was broken by v2_11_55_0-26-g7059644e9a
8726                 if [ -z "$save" ]; then
8727                         soc="obdfilter.*.sync_on_lock_cancel"
8728                         save=$(do_facet ost1 $LCTL get_param -n $soc | head -n1)
8729                 fi
8730
8731                 if [ "$save" != "never" ]; then
8732                         local hosts=$(comma_list $(osts_nodes))
8733
8734                         do_nodes $hosts $LCTL set_param $soc=never
8735                         stack_trap "do_nodes $hosts $LCTL set_param $soc=$save"
8736                 fi
8737         fi
8738
8739         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
8740         sync; sleep 1; sync
8741         local before=$(date +%s)
8742         cancel_lru_locks osc
8743         local after=$(date +%s)
8744         local diff=$((after - before))
8745         [ $diff -le 1 ] || error "elapsed for 1M@1T = $diff"
8746
8747         rm -f $DIR/$tfile
8748 }
8749 run_test 80 "Page eviction is equally fast at high offsets too"
8750
8751 test_81a() { # LU-456
8752         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8753         remote_ost_nodsh && skip "remote OST with nodsh"
8754
8755         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
8756         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
8757         do_facet ost1 lctl set_param fail_loc=0x80000228
8758
8759         # write should trigger a retry and success
8760         $LFS setstripe -i 0 -c 1 $DIR/$tfile
8761         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8762         RC=$?
8763         if [ $RC -ne 0 ] ; then
8764                 error "write should success, but failed for $RC"
8765         fi
8766 }
8767 run_test 81a "OST should retry write when get -ENOSPC ==============="
8768
8769 test_81b() { # LU-456
8770         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8771         remote_ost_nodsh && skip "remote OST with nodsh"
8772
8773         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
8774         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
8775         do_facet ost1 lctl set_param fail_loc=0x228
8776
8777         # write should retry several times and return -ENOSPC finally
8778         $LFS setstripe -i 0 -c 1 $DIR/$tfile
8779         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8780         RC=$?
8781         ENOSPC=28
8782         if [ $RC -ne $ENOSPC ] ; then
8783                 error "dd should fail for -ENOSPC, but succeed."
8784         fi
8785 }
8786 run_test 81b "OST should return -ENOSPC when retry still fails ======="
8787
8788 test_82() { # LU-1031
8789         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
8790         local gid1=14091995
8791         local gid2=16022000
8792
8793         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
8794         local MULTIPID1=$!
8795         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
8796         local MULTIPID2=$!
8797         kill -USR1 $MULTIPID2
8798         sleep 2
8799         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
8800                 error "First grouplock does not block second one"
8801         else
8802                 echo "Second grouplock blocks first one"
8803         fi
8804         kill -USR1 $MULTIPID1
8805         wait $MULTIPID1
8806         wait $MULTIPID2
8807 }
8808 run_test 82 "Basic grouplock test"
8809
8810 test_99() {
8811         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs"
8812
8813         test_mkdir $DIR/$tdir.cvsroot
8814         chown $RUNAS_ID $DIR/$tdir.cvsroot
8815
8816         cd $TMP
8817         $RUNAS cvs -d $DIR/$tdir.cvsroot init || error "cvs init failed"
8818
8819         cd /etc/init.d
8820         # some versions of cvs import exit(1) when asked to import links or
8821         # files they can't read.  ignore those files.
8822         local toignore=$(find . -type l -printf '-I %f\n' -o \
8823                          ! -perm /4 -printf '-I %f\n')
8824         $RUNAS cvs -d $DIR/$tdir.cvsroot import -m "nomesg" $toignore \
8825                 $tdir.reposname vtag rtag
8826
8827         cd $DIR
8828         test_mkdir $DIR/$tdir.reposname
8829         chown $RUNAS_ID $DIR/$tdir.reposname
8830         $RUNAS cvs -d $DIR/$tdir.cvsroot co $tdir.reposname
8831
8832         cd $DIR/$tdir.reposname
8833         $RUNAS touch foo99
8834         $RUNAS cvs add -m 'addmsg' foo99
8835         $RUNAS cvs update
8836         $RUNAS cvs commit -m 'nomsg' foo99
8837         rm -fr $DIR/$tdir.cvsroot
8838 }
8839 run_test 99 "cvs strange file/directory operations"
8840
8841 test_100() {
8842         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8843         [[ "$NETTYPE" =~ tcp ]] ||
8844                 skip_env "TCP secure port test, not useful for NETTYPE=$NETTYPE"
8845         remote_ost_nodsh && skip "remote OST with nodsh"
8846         remote_mds_nodsh && skip "remote MDS with nodsh"
8847         remote_servers ||
8848                 skip "useless for local single node setup"
8849
8850         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
8851                 [ "$PROT" != "tcp" ] && continue
8852                 RPORT=$(echo $REMOTE | cut -d: -f2)
8853                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
8854
8855                 rc=0
8856                 LPORT=`echo $LOCAL | cut -d: -f2`
8857                 if [ $LPORT -ge 1024 ]; then
8858                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
8859                         netstat -tna
8860                         error_exit "local: $LPORT > 1024, remote: $RPORT"
8861                 fi
8862         done
8863         [ "$rc" = 0 ] || error_exit "privileged port not found" )
8864 }
8865 run_test 100 "check local port using privileged port ==========="
8866
8867 function get_named_value()
8868 {
8869     local tag
8870
8871     tag=$1
8872     while read ;do
8873         line=$REPLY
8874         case $line in
8875         $tag*)
8876             echo $line | sed "s/^$tag[ ]*//"
8877             break
8878             ;;
8879         esac
8880     done
8881 }
8882
8883 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
8884                    awk '/^max_cached_mb/ { print $2 }')
8885
8886 cleanup_101a() {
8887         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
8888         trap 0
8889 }
8890
8891 test_101a() {
8892         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8893
8894         local s
8895         local discard
8896         local nreads=10000
8897         local cache_limit=32
8898
8899         $LCTL set_param -n osc.*-osc*.rpc_stats 0
8900         trap cleanup_101a EXIT
8901         $LCTL set_param -n llite.*.read_ahead_stats 0
8902         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
8903
8904         #
8905         # randomly read 10000 of 64K chunks from file 3x 32MB in size
8906         #
8907         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
8908         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
8909
8910         discard=0
8911         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
8912                 get_named_value 'read but discarded' | cut -d" " -f1); do
8913                         discard=$(($discard + $s))
8914         done
8915         cleanup_101a
8916
8917         $LCTL get_param osc.*-osc*.rpc_stats
8918         $LCTL get_param llite.*.read_ahead_stats
8919
8920         # Discard is generally zero, but sometimes a few random reads line up
8921         # and trigger larger readahead, which is wasted & leads to discards.
8922         if [[ $(($discard)) -gt $nreads ]]; then
8923                 error "too many ($discard) discarded pages"
8924         fi
8925         rm -f $DIR/$tfile || true
8926 }
8927 run_test 101a "check read-ahead for random reads"
8928
8929 setup_test101bc() {
8930         test_mkdir $DIR/$tdir
8931         local ssize=$1
8932         local FILE_LENGTH=$2
8933         STRIPE_OFFSET=0
8934
8935         local FILE_SIZE_MB=$((FILE_LENGTH / ssize))
8936
8937         local list=$(comma_list $(osts_nodes))
8938         set_osd_param $list '' read_cache_enable 0
8939         set_osd_param $list '' writethrough_cache_enable 0
8940
8941         trap cleanup_test101bc EXIT
8942         # prepare the read-ahead file
8943         $LFS setstripe -S $ssize -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
8944
8945         dd if=/dev/zero of=$DIR/$tfile bs=$ssize \
8946                                 count=$FILE_SIZE_MB 2> /dev/null
8947
8948 }
8949
8950 cleanup_test101bc() {
8951         trap 0
8952         rm -rf $DIR/$tdir
8953         rm -f $DIR/$tfile
8954
8955         local list=$(comma_list $(osts_nodes))
8956         set_osd_param $list '' read_cache_enable 1
8957         set_osd_param $list '' writethrough_cache_enable 1
8958 }
8959
8960 calc_total() {
8961         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
8962 }
8963
8964 ra_check_101() {
8965         local READ_SIZE=$1
8966         local STRIPE_SIZE=$2
8967         local FILE_LENGTH=$3
8968         local RA_INC=1048576
8969         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
8970         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
8971                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
8972         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
8973                         get_named_value 'read but discarded' |
8974                         cut -d" " -f1 | calc_total)
8975         if [[ $DISCARD -gt $discard_limit ]]; then
8976                 $LCTL get_param llite.*.read_ahead_stats
8977                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
8978         else
8979                 echo "Read-ahead success for size ${READ_SIZE}"
8980         fi
8981 }
8982
8983 test_101b() {
8984         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8985         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8986
8987         local STRIPE_SIZE=1048576
8988         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
8989
8990         if [ $SLOW == "yes" ]; then
8991                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
8992         else
8993                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
8994         fi
8995
8996         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
8997
8998         # prepare the read-ahead file
8999         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
9000         cancel_lru_locks osc
9001         for BIDX in 2 4 8 16 32 64 128 256
9002         do
9003                 local BSIZE=$((BIDX*4096))
9004                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
9005                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
9006                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
9007                 $LCTL set_param -n llite.*.read_ahead_stats 0
9008                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
9009                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
9010                 cancel_lru_locks osc
9011                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
9012         done
9013         cleanup_test101bc
9014         true
9015 }
9016 run_test 101b "check stride-io mode read-ahead ================="
9017
9018 test_101c() {
9019         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9020
9021         local STRIPE_SIZE=1048576
9022         local FILE_LENGTH=$((STRIPE_SIZE*100))
9023         local nreads=10000
9024         local rsize=65536
9025         local osc_rpc_stats
9026
9027         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
9028
9029         cancel_lru_locks osc
9030         $LCTL set_param osc.*.rpc_stats 0
9031         $READS -f $DIR/$tfile -s$FILE_LENGTH -b$rsize -n$nreads -t 180
9032         $LCTL get_param osc.*.rpc_stats
9033         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
9034                 local stats=$($LCTL get_param -n $osc_rpc_stats)
9035                 local lines=$(echo "$stats" | awk 'END {print NR;}')
9036                 local size
9037
9038                 if [ $lines -le 20 ]; then
9039                         echo "continue debug"
9040                         continue
9041                 fi
9042                 for size in 1 2 4 8; do
9043                         local rpc=$(echo "$stats" |
9044                                     awk '($1 == "'$size':") {print $2; exit; }')
9045                         [ $rpc != 0 ] && ((size * PAGE_SIZE < rsize)) &&
9046                                 error "Small $((size*PAGE_SIZE)) read IO $rpc!"
9047                 done
9048                 echo "$osc_rpc_stats check passed!"
9049         done
9050         cleanup_test101bc
9051         true
9052 }
9053 run_test 101c "check stripe_size aligned read-ahead ================="
9054
9055 test_101d() {
9056         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9057
9058         local file=$DIR/$tfile
9059         local sz_MB=${FILESIZE_101d:-500}
9060         local ra_MB=${READAHEAD_MB:-40}
9061
9062         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
9063         [ $free_MB -lt $sz_MB ] &&
9064                 skip "Need free space ${sz_MB}M, have ${free_MB}M"
9065
9066         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
9067         $LFS setstripe -c -1 $file || error "setstripe failed"
9068
9069         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
9070         echo Cancel LRU locks on lustre client to flush the client cache
9071         cancel_lru_locks osc
9072
9073         echo Disable read-ahead
9074         local old_RA=$($LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1)
9075         $LCTL set_param -n llite.*.max_read_ahead_mb=0
9076         stack_trap "$LCTL set_param -n llite.*.max_read_ahead_mb $old_RA" EXIT
9077         $LCTL get_param -n llite.*.max_read_ahead_mb
9078
9079         echo Reading the test file $file with read-ahead disabled
9080         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
9081
9082         echo Cancel LRU locks on lustre client to flush the client cache
9083         cancel_lru_locks osc
9084         echo Enable read-ahead with ${ra_MB}MB
9085         $LCTL set_param -n llite.*.max_read_ahead_mb=$ra_MB
9086
9087         echo Reading the test file $file with read-ahead enabled
9088         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
9089
9090         echo "read-ahead disabled time read $raOFF"
9091         echo "read-ahead enabled  time read $raON"
9092
9093         rm -f $file
9094         wait_delete_completed
9095
9096         [ $raOFF -le 1 ] || [ $raON -lt $raOFF ] ||
9097                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
9098 }
9099 run_test 101d "file read with and without read-ahead enabled"
9100
9101 test_101e() {
9102         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9103
9104         local file=$DIR/$tfile
9105         local size_KB=500  #KB
9106         local count=100
9107         local bsize=1024
9108
9109         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
9110         local need_KB=$((count * size_KB))
9111         [[ $free_KB -le $need_KB ]] &&
9112                 skip_env "Need free space $need_KB, have $free_KB"
9113
9114         echo "Creating $count ${size_KB}K test files"
9115         for ((i = 0; i < $count; i++)); do
9116                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
9117         done
9118
9119         echo "Cancel LRU locks on lustre client to flush the client cache"
9120         cancel_lru_locks $OSC
9121
9122         echo "Reset readahead stats"
9123         $LCTL set_param -n llite.*.read_ahead_stats 0
9124
9125         for ((i = 0; i < $count; i++)); do
9126                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
9127         done
9128
9129         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
9130                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
9131
9132         for ((i = 0; i < $count; i++)); do
9133                 rm -rf $file.$i 2>/dev/null
9134         done
9135
9136         #10000 means 20% reads are missing in readahead
9137         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
9138 }
9139 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
9140
9141 test_101f() {
9142         which iozone || skip_env "no iozone installed"
9143
9144         local old_debug=$($LCTL get_param debug)
9145         old_debug=${old_debug#*=}
9146         $LCTL set_param debug="reada mmap"
9147
9148         # create a test file
9149         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
9150
9151         echo Cancel LRU locks on lustre client to flush the client cache
9152         cancel_lru_locks osc
9153
9154         echo Reset readahead stats
9155         $LCTL set_param -n llite.*.read_ahead_stats 0
9156
9157         echo mmap read the file with small block size
9158         iozone -i 1 -u 1 -l 1 -+n -r 32k -s 128m -B -f $DIR/$tfile \
9159                 > /dev/null 2>&1
9160
9161         echo checking missing pages
9162         $LCTL get_param llite.*.read_ahead_stats
9163         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
9164                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
9165
9166         $LCTL set_param debug="$old_debug"
9167         [ $miss -lt 3 ] || error "misses too much pages ('$miss')!"
9168         rm -f $DIR/$tfile
9169 }
9170 run_test 101f "check mmap read performance"
9171
9172 test_101g_brw_size_test() {
9173         local mb=$1
9174         local pages=$((mb * 1048576 / PAGE_SIZE))
9175         local file=$DIR/$tfile
9176
9177         $LCTL set_param osc.*.max_pages_per_rpc=${mb}M ||
9178                 { error "unable to set max_pages_per_rpc=${mb}M"; return 1; }
9179         for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
9180                 [ $mp -ne $pages ] && error "max_pages_per_rpc $mp != $pages" &&
9181                         return 2
9182         done
9183
9184         stack_trap "rm -f $file" EXIT
9185         $LCTL set_param -n osc.*.rpc_stats=0
9186
9187         # 10 RPCs should be enough for the test
9188         local count=10
9189         dd if=/dev/zero of=$file bs=${mb}M count=$count ||
9190                 { error "dd write ${mb} MB blocks failed"; return 3; }
9191         cancel_lru_locks osc
9192         dd of=/dev/null if=$file bs=${mb}M count=$count ||
9193                 { error "dd write ${mb} MB blocks failed"; return 4; }
9194
9195         # calculate number of full-sized read and write RPCs
9196         rpcs=($($LCTL get_param -n 'osc.*.rpc_stats' |
9197                 sed -n '/pages per rpc/,/^$/p' |
9198                 awk '/'$pages':/ { reads += $2; writes += $6 }; \
9199                 END { print reads,writes }'))
9200         [ ${rpcs[0]} -ne $count ] && error "${rpcs[0]} != $count read RPCs" &&
9201                 return 5
9202         [ ${rpcs[1]} -ne $count ] && error "${rpcs[1]} != $count write RPCs" &&
9203                 return 6
9204
9205         return 0
9206 }
9207
9208 test_101g() {
9209         remote_ost_nodsh && skip "remote OST with nodsh"
9210
9211         local rpcs
9212         local osts=$(get_facets OST)
9213         local list=$(comma_list $(osts_nodes))
9214         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
9215         local brw_size="obdfilter.*.brw_size"
9216
9217         $LFS setstripe -i 0 -c 1 $DIR/$tfile
9218
9219         local orig_mb=$(do_facet ost1 $LCTL get_param -n $brw_size | head -n 1)
9220
9221         if { [ $OST1_VERSION -ge $(version_code 2.8.52) ] ||
9222                 { [ $OST1_VERSION -ge $(version_code 2.7.17) ] &&
9223                   [ $OST1_VERSION -lt $(version_code 2.7.50) ]; }; } &&
9224            { [ $CLIENT_VERSION -ge $(version_code 2.8.52) ] ||
9225                 { [ $CLIENT_VERSION -ge $(version_code 2.7.17) ] &&
9226                   [ $CLIENT_VERSION -lt $(version_code 2.7.50) ]; }; }; then
9227
9228                 [ $OST1_VERSION -ge $(version_code 2.9.52) ] &&
9229                         suffix="M"
9230
9231                 if [[ $orig_mb -lt 16 ]]; then
9232                         save_lustre_params $osts "$brw_size" > $p
9233                         do_nodes $list $LCTL set_param -n $brw_size=16$suffix ||
9234                                 error "set 16MB RPC size failed"
9235
9236                         echo "remount client to enable new RPC size"
9237                         remount_client $MOUNT || error "remount_client failed"
9238                 fi
9239
9240                 test_101g_brw_size_test 16 || error "16MB RPC test failed"
9241                 # should be able to set brw_size=12, but no rpc_stats for that
9242                 test_101g_brw_size_test 8 || error "8MB RPC test failed"
9243         fi
9244
9245         test_101g_brw_size_test 4 || error "4MB RPC test failed"
9246
9247         if [[ $orig_mb -lt 16 ]]; then
9248                 restore_lustre_params < $p
9249                 remount_client $MOUNT || error "remount_client restore failed"
9250         fi
9251
9252         rm -f $p $DIR/$tfile
9253 }
9254 run_test 101g "Big bulk(4/16 MiB) readahead"
9255
9256 test_101h() {
9257         $LFS setstripe -i 0 -c 1 $DIR/$tfile
9258
9259         dd if=/dev/zero of=$DIR/$tfile bs=1M count=70 ||
9260                 error "dd 70M file failed"
9261         echo Cancel LRU locks on lustre client to flush the client cache
9262         cancel_lru_locks osc
9263
9264         echo "Reset readahead stats"
9265         $LCTL set_param -n llite.*.read_ahead_stats 0
9266
9267         echo "Read 10M of data but cross 64M bundary"
9268         dd if=$DIR/$tfile of=/dev/null bs=10M skip=6 count=1
9269         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
9270                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
9271         [ $miss -eq 1 ] || error "expected miss 1 but got $miss"
9272         rm -f $p $DIR/$tfile
9273 }
9274 run_test 101h "Readahead should cover current read window"
9275
9276 setup_test102() {
9277         test_mkdir $DIR/$tdir
9278         chown $RUNAS_ID $DIR/$tdir
9279         STRIPE_SIZE=65536
9280         STRIPE_OFFSET=1
9281         STRIPE_COUNT=$OSTCOUNT
9282         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
9283
9284         trap cleanup_test102 EXIT
9285         cd $DIR
9286         $1 $LFS setstripe -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
9287         cd $DIR/$tdir
9288         for num in 1 2 3 4; do
9289                 for count in $(seq 1 $STRIPE_COUNT); do
9290                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
9291                                 local size=`expr $STRIPE_SIZE \* $num`
9292                                 local file=file"$num-$idx-$count"
9293                                 $1 $LFS setstripe -S $size -i $idx -c $count $file
9294                         done
9295                 done
9296         done
9297
9298         cd $DIR
9299         $1 tar cf $TMP/f102.tar $tdir --xattrs
9300 }
9301
9302 cleanup_test102() {
9303         trap 0
9304         rm -f $TMP/f102.tar
9305         rm -rf $DIR/d0.sanity/d102
9306 }
9307
9308 test_102a() {
9309         [ "$UID" != 0 ] && skip "must run as root"
9310         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
9311                 skip_env "must have user_xattr"
9312
9313         [ -z "$(which setfattr 2>/dev/null)" ] &&
9314                 skip_env "could not find setfattr"
9315
9316         local testfile=$DIR/$tfile
9317
9318         touch $testfile
9319         echo "set/get xattr..."
9320         setfattr -n trusted.name1 -v value1 $testfile ||
9321                 error "setfattr -n trusted.name1=value1 $testfile failed"
9322         getfattr -n trusted.name1 $testfile 2> /dev/null |
9323           grep "trusted.name1=.value1" ||
9324                 error "$testfile missing trusted.name1=value1"
9325
9326         setfattr -n user.author1 -v author1 $testfile ||
9327                 error "setfattr -n user.author1=author1 $testfile failed"
9328         getfattr -n user.author1 $testfile 2> /dev/null |
9329           grep "user.author1=.author1" ||
9330                 error "$testfile missing trusted.author1=author1"
9331
9332         echo "listxattr..."
9333         setfattr -n trusted.name2 -v value2 $testfile ||
9334                 error "$testfile unable to set trusted.name2"
9335         setfattr -n trusted.name3 -v value3 $testfile ||
9336                 error "$testfile unable to set trusted.name3"
9337         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
9338             grep "trusted.name" | wc -l) -eq 3 ] ||
9339                 error "$testfile missing 3 trusted.name xattrs"
9340
9341         setfattr -n user.author2 -v author2 $testfile ||
9342                 error "$testfile unable to set user.author2"
9343         setfattr -n user.author3 -v author3 $testfile ||
9344                 error "$testfile unable to set user.author3"
9345         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
9346             grep "user.author" | wc -l) -eq 3 ] ||
9347                 error "$testfile missing 3 user.author xattrs"
9348
9349         echo "remove xattr..."
9350         setfattr -x trusted.name1 $testfile ||
9351                 error "$testfile error deleting trusted.name1"
9352         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
9353                 error "$testfile did not delete trusted.name1 xattr"
9354
9355         setfattr -x user.author1 $testfile ||
9356                 error "$testfile error deleting user.author1"
9357         echo "set lustre special xattr ..."
9358         $LFS setstripe -c1 $testfile
9359         local lovea=$(getfattr -n "trusted.lov" -e hex $testfile |
9360                 awk -F "=" '/trusted.lov/ { print $2 }' )
9361         setfattr -n "trusted.lov" -v $lovea $testfile ||
9362                 error "$testfile doesn't ignore setting trusted.lov again"
9363         setfattr -n "trusted.lov" -v "invalid_value" $testfile &&
9364                 error "$testfile allow setting invalid trusted.lov"
9365         rm -f $testfile
9366 }
9367 run_test 102a "user xattr test =================================="
9368
9369 test_102b() {
9370         [ -z "$(which setfattr 2>/dev/null)" ] &&
9371                 skip_env "could not find setfattr"
9372         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
9373
9374         # b10930: get/set/list trusted.lov xattr
9375         echo "get/set/list trusted.lov xattr ..."
9376         local testfile=$DIR/$tfile
9377         $LFS setstripe -S 65536 -i 1 -c $OSTCOUNT $testfile ||
9378                 error "setstripe failed"
9379         local STRIPECOUNT=$($LFS getstripe -c $testfile) ||
9380                 error "getstripe failed"
9381         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
9382                 error "can't get trusted.lov from $testfile"
9383
9384         local testfile2=${testfile}2
9385         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
9386                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
9387
9388         $MCREATE $testfile2
9389         setfattr -n trusted.lov -v $value $testfile2
9390         local stripe_size=$($LFS getstripe -S $testfile2)
9391         local stripe_count=$($LFS getstripe -c $testfile2)
9392         [[ $stripe_size -eq 65536 ]] ||
9393                 error "stripe size $stripe_size != 65536"
9394         [[ $stripe_count -eq $STRIPECOUNT ]] ||
9395                 error "stripe count $stripe_count != $STRIPECOUNT"
9396         rm -f $DIR/$tfile
9397 }
9398 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
9399
9400 test_102c() {
9401         [ -z "$(which setfattr 2>/dev/null)" ] &&
9402                 skip_env "could not find setfattr"
9403         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
9404
9405         # b10930: get/set/list lustre.lov xattr
9406         echo "get/set/list lustre.lov xattr ..."
9407         test_mkdir $DIR/$tdir
9408         chown $RUNAS_ID $DIR/$tdir
9409         local testfile=$DIR/$tdir/$tfile
9410         $RUNAS $LFS setstripe -S 65536 -i 1 -c $OSTCOUNT $testfile ||
9411                 error "setstripe failed"
9412         local STRIPECOUNT=$($RUNAS $LFS getstripe -c $testfile) ||
9413                 error "getstripe failed"
9414         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
9415         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
9416
9417         local testfile2=${testfile}2
9418         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
9419                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
9420
9421         $RUNAS $MCREATE $testfile2
9422         $RUNAS setfattr -n lustre.lov -v $value $testfile2
9423         local stripe_size=$($RUNAS $LFS getstripe -S $testfile2)
9424         local stripe_count=$($RUNAS $LFS getstripe -c $testfile2)
9425         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
9426         [ $stripe_count -eq $STRIPECOUNT ] ||
9427                 error "stripe count $stripe_count != $STRIPECOUNT"
9428 }
9429 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
9430
9431 compare_stripe_info1() {
9432         local stripe_index_all_zero=true
9433
9434         for num in 1 2 3 4; do
9435                 for count in $(seq 1 $STRIPE_COUNT); do
9436                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
9437                                 local size=$((STRIPE_SIZE * num))
9438                                 local file=file"$num-$offset-$count"
9439                                 stripe_size=$($LFS getstripe -S $PWD/$file)
9440                                 [[ $stripe_size -ne $size ]] &&
9441                                     error "$file: size $stripe_size != $size"
9442                                 stripe_count=$($LFS getstripe -c $PWD/$file)
9443                                 # allow fewer stripes to be created, ORI-601
9444                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
9445                                     error "$file: count $stripe_count != $count"
9446                                 stripe_index=$($LFS getstripe -i $PWD/$file)
9447                                 [[ $stripe_index -ne 0 ]] &&
9448                                         stripe_index_all_zero=false
9449                         done
9450                 done
9451         done
9452         $stripe_index_all_zero &&
9453                 error "all files are being extracted starting from OST index 0"
9454         return 0
9455 }
9456
9457 have_xattrs_include() {
9458         tar --help | grep -q xattrs-include &&
9459                 echo --xattrs-include="lustre.*"
9460 }
9461
9462 test_102d() {
9463         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9464         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
9465
9466         XINC=$(have_xattrs_include)
9467         setup_test102
9468         tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
9469         cd $DIR/$tdir/$tdir
9470         compare_stripe_info1
9471 }
9472 run_test 102d "tar restore stripe info from tarfile,not keep osts"
9473
9474 test_102f() {
9475         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9476         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
9477
9478         XINC=$(have_xattrs_include)
9479         setup_test102
9480         test_mkdir $DIR/$tdir.restore
9481         cd $DIR
9482         tar cf - --xattrs $tdir | tar xf - \
9483                 -C $DIR/$tdir.restore --xattrs $XINC
9484         cd $DIR/$tdir.restore/$tdir
9485         compare_stripe_info1
9486 }
9487 run_test 102f "tar copy files, not keep osts"
9488
9489 grow_xattr() {
9490         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
9491                 skip "must have user_xattr"
9492         [ -z "$(which setfattr 2>/dev/null)" ] &&
9493                 skip_env "could not find setfattr"
9494         [ -z "$(which getfattr 2>/dev/null)" ] &&
9495                 skip_env "could not find getfattr"
9496
9497         local xsize=${1:-1024}  # in bytes
9498         local file=$DIR/$tfile
9499         local value="$(generate_string $xsize)"
9500         local xbig=trusted.big
9501         local toobig=$2
9502
9503         touch $file
9504         log "save $xbig on $file"
9505         if [ -z "$toobig" ]
9506         then
9507                 setfattr -n $xbig -v $value $file ||
9508                         error "saving $xbig on $file failed"
9509         else
9510                 setfattr -n $xbig -v $value $file &&
9511                         error "saving $xbig on $file succeeded"
9512                 return 0
9513         fi
9514
9515         local orig=$(get_xattr_value $xbig $file)
9516         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
9517
9518         local xsml=trusted.sml
9519         log "save $xsml on $file"
9520         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
9521
9522         local new=$(get_xattr_value $xbig $file)
9523         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
9524
9525         log "grow $xsml on $file"
9526         setfattr -n $xsml -v "$value" $file ||
9527                 error "growing $xsml on $file failed"
9528
9529         new=$(get_xattr_value $xbig $file)
9530         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
9531         log "$xbig still valid after growing $xsml"
9532
9533         rm -f $file
9534 }
9535
9536 test_102h() { # bug 15777
9537         grow_xattr 1024
9538 }
9539 run_test 102h "grow xattr from inside inode to external block"
9540
9541 test_102ha() {
9542         large_xattr_enabled || skip_env "ea_inode feature disabled"
9543
9544         echo "setting xattr of max xattr size: $(max_xattr_size)"
9545         grow_xattr $(max_xattr_size)
9546
9547         echo "setting xattr of > max xattr size: $(max_xattr_size) + 10"
9548         echo "This should fail:"
9549         grow_xattr $(($(max_xattr_size) + 10)) 1
9550 }
9551 run_test 102ha "grow xattr from inside inode to external inode"
9552
9553 test_102i() { # bug 17038
9554         [ -z "$(which getfattr 2>/dev/null)" ] &&
9555                 skip "could not find getfattr"
9556
9557         touch $DIR/$tfile
9558         ln -s $DIR/$tfile $DIR/${tfile}link
9559         getfattr -n trusted.lov $DIR/$tfile ||
9560                 error "lgetxattr on $DIR/$tfile failed"
9561         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
9562                 grep -i "no such attr" ||
9563                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
9564         rm -f $DIR/$tfile $DIR/${tfile}link
9565 }
9566 run_test 102i "lgetxattr test on symbolic link ============"
9567
9568 test_102j() {
9569         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9570         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
9571
9572         XINC=$(have_xattrs_include)
9573         setup_test102 "$RUNAS"
9574         chown $RUNAS_ID $DIR/$tdir
9575         $RUNAS tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
9576         cd $DIR/$tdir/$tdir
9577         compare_stripe_info1 "$RUNAS"
9578 }
9579 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
9580
9581 test_102k() {
9582         [ -z "$(which setfattr 2>/dev/null)" ] &&
9583                 skip "could not find setfattr"
9584
9585         touch $DIR/$tfile
9586         # b22187 just check that does not crash for regular file.
9587         setfattr -n trusted.lov $DIR/$tfile
9588         # b22187 'setfattr -n trusted.lov' should remove LOV EA for directories
9589         local test_kdir=$DIR/$tdir
9590         test_mkdir $test_kdir
9591         local default_size=$($LFS getstripe -S $test_kdir)
9592         local default_count=$($LFS getstripe -c $test_kdir)
9593         local default_offset=$($LFS getstripe -i $test_kdir)
9594         $LFS setstripe -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
9595                 error 'dir setstripe failed'
9596         setfattr -n trusted.lov $test_kdir
9597         local stripe_size=$($LFS getstripe -S $test_kdir)
9598         local stripe_count=$($LFS getstripe -c $test_kdir)
9599         local stripe_offset=$($LFS getstripe -i $test_kdir)
9600         [ $stripe_size -eq $default_size ] ||
9601                 error "stripe size $stripe_size != $default_size"
9602         [ $stripe_count -eq $default_count ] ||
9603                 error "stripe count $stripe_count != $default_count"
9604         [ $stripe_offset -eq $default_offset ] ||
9605                 error "stripe offset $stripe_offset != $default_offset"
9606         rm -rf $DIR/$tfile $test_kdir
9607 }
9608 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
9609
9610 test_102l() {
9611         [ -z "$(which getfattr 2>/dev/null)" ] &&
9612                 skip "could not find getfattr"
9613
9614         # LU-532 trusted. xattr is invisible to non-root
9615         local testfile=$DIR/$tfile
9616
9617         touch $testfile
9618
9619         echo "listxattr as user..."
9620         chown $RUNAS_ID $testfile
9621         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
9622             grep -q "trusted" &&
9623                 error "$testfile trusted xattrs are user visible"
9624
9625         return 0;
9626 }
9627 run_test 102l "listxattr size test =================================="
9628
9629 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
9630         local path=$DIR/$tfile
9631         touch $path
9632
9633         listxattr_size_check $path || error "listattr_size_check $path failed"
9634 }
9635 run_test 102m "Ensure listxattr fails on small bufffer ========"
9636
9637 cleanup_test102
9638
9639 getxattr() { # getxattr path name
9640         # Return the base64 encoding of the value of xattr name on path.
9641         local path=$1
9642         local name=$2
9643
9644         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
9645         # file: $path
9646         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
9647         #
9648         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
9649
9650         getfattr --absolute-names --encoding=base64 --name=$name $path |
9651                 awk -F= -v name=$name '$1 == name {
9652                         print substr($0, index($0, "=") + 1);
9653         }'
9654 }
9655
9656 test_102n() { # LU-4101 mdt: protect internal xattrs
9657         [ -z "$(which setfattr 2>/dev/null)" ] &&
9658                 skip "could not find setfattr"
9659         if [ $MDS1_VERSION -lt $(version_code 2.5.50) ]
9660         then
9661                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
9662         fi
9663
9664         local file0=$DIR/$tfile.0
9665         local file1=$DIR/$tfile.1
9666         local xattr0=$TMP/$tfile.0
9667         local xattr1=$TMP/$tfile.1
9668         local namelist="lov lma lmv link fid version som hsm"
9669         local name
9670         local value
9671
9672         rm -rf $file0 $file1 $xattr0 $xattr1
9673         touch $file0 $file1
9674
9675         # Get 'before' xattrs of $file1.
9676         getfattr --absolute-names --dump --match=- $file1 > $xattr0
9677
9678         [ $MDS1_VERSION -lt $(version_code 2.8.53) ] &&
9679                 namelist+=" lfsck_namespace"
9680         for name in $namelist; do
9681                 # Try to copy xattr from $file0 to $file1.
9682                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
9683
9684                 setfattr --name=trusted.$name --value="$value" $file1 ||
9685                         error "setxattr 'trusted.$name' failed"
9686
9687                 # Try to set a garbage xattr.
9688                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
9689
9690                 if [[ x$name == "xlov" ]]; then
9691                         setfattr --name=trusted.lov --value="$value" $file1 &&
9692                         error "setxattr invalid 'trusted.lov' success"
9693                 else
9694                         setfattr --name=trusted.$name --value="$value" $file1 ||
9695                                 error "setxattr invalid 'trusted.$name' failed"
9696                 fi
9697
9698                 # Try to remove the xattr from $file1. We don't care if this
9699                 # appears to succeed or fail, we just don't want there to be
9700                 # any changes or crashes.
9701                 setfattr --remove=$trusted.$name $file1 2> /dev/null
9702         done
9703
9704         if [ $MDS1_VERSION -gt $(version_code 2.6.50) ]
9705         then
9706                 name="lfsck_ns"
9707                 # Try to copy xattr from $file0 to $file1.
9708                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
9709
9710                 setfattr --name=trusted.$name --value="$value" $file1 ||
9711                         error "setxattr 'trusted.$name' failed"
9712
9713                 # Try to set a garbage xattr.
9714                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
9715
9716                 setfattr --name=trusted.$name --value="$value" $file1 ||
9717                         error "setxattr 'trusted.$name' failed"
9718
9719                 # Try to remove the xattr from $file1. We don't care if this
9720                 # appears to succeed or fail, we just don't want there to be
9721                 # any changes or crashes.
9722                 setfattr --remove=$trusted.$name $file1 2> /dev/null
9723         fi
9724
9725         # Get 'after' xattrs of file1.
9726         getfattr --absolute-names --dump --match=- $file1 > $xattr1
9727
9728         if ! diff $xattr0 $xattr1; then
9729                 error "before and after xattrs of '$file1' differ"
9730         fi
9731
9732         rm -rf $file0 $file1 $xattr0 $xattr1
9733
9734         return 0
9735 }
9736 run_test 102n "silently ignore setxattr on internal trusted xattrs"
9737
9738 test_102p() { # LU-4703 setxattr did not check ownership
9739         [ $MDS1_VERSION -lt $(version_code 2.5.56) ] &&
9740                 skip "MDS needs to be at least 2.5.56"
9741
9742         local testfile=$DIR/$tfile
9743
9744         touch $testfile
9745
9746         echo "setfacl as user..."
9747         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
9748         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
9749
9750         echo "setfattr as user..."
9751         setfacl -m "u:$RUNAS_ID:---" $testfile
9752         $RUNAS setfattr -x system.posix_acl_access $testfile
9753         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
9754 }
9755 run_test 102p "check setxattr(2) correctly fails without permission"
9756
9757 test_102q() {
9758         [ $MDS1_VERSION -lt $(version_code 2.6.92) ] &&
9759                 skip "MDS needs to be at least 2.6.92"
9760
9761         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
9762 }
9763 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
9764
9765 test_102r() {
9766         [ $MDS1_VERSION -lt $(version_code 2.6.93) ] &&
9767                 skip "MDS needs to be at least 2.6.93"
9768
9769         touch $DIR/$tfile || error "touch"
9770         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
9771         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
9772         rm $DIR/$tfile || error "rm"
9773
9774         #normal directory
9775         mkdir -p $DIR/$tdir || error "mkdir"
9776         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
9777         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
9778         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
9779                 error "$testfile error deleting user.author1"
9780         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
9781                 grep "user.$(basename $tdir)" &&
9782                 error "$tdir did not delete user.$(basename $tdir)"
9783         rmdir $DIR/$tdir || error "rmdir"
9784
9785         #striped directory
9786         test_mkdir $DIR/$tdir
9787         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
9788         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
9789         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
9790                 error "$testfile error deleting user.author1"
9791         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
9792                 grep "user.$(basename $tdir)" &&
9793                 error "$tdir did not delete user.$(basename $tdir)"
9794         rmdir $DIR/$tdir || error "rm striped dir"
9795 }
9796 run_test 102r "set EAs with empty values"
9797
9798 test_102s() {
9799         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
9800                 skip "MDS needs to be at least 2.11.52"
9801
9802         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
9803
9804         save_lustre_params client "llite.*.xattr_cache" > $save
9805
9806         for cache in 0 1; do
9807                 lctl set_param llite.*.xattr_cache=$cache
9808
9809                 rm -f $DIR/$tfile
9810                 touch $DIR/$tfile || error "touch"
9811                 for prefix in lustre security system trusted user; do
9812                         # Note getxattr() may fail with 'Operation not
9813                         # supported' or 'No such attribute' depending
9814                         # on prefix and cache.
9815                         getfattr -n $prefix.n102s $DIR/$tfile &&
9816                                 error "getxattr '$prefix.n102s' should fail (cache = $cache)"
9817                 done
9818         done
9819
9820         restore_lustre_params < $save
9821 }
9822 run_test 102s "getting nonexistent xattrs should fail"
9823
9824 test_102t() {
9825         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
9826                 skip "MDS needs to be at least 2.11.52"
9827
9828         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
9829
9830         save_lustre_params client "llite.*.xattr_cache" > $save
9831
9832         for cache in 0 1; do
9833                 lctl set_param llite.*.xattr_cache=$cache
9834
9835                 for buf_size in 0 256; do
9836                         rm -f $DIR/$tfile
9837                         touch $DIR/$tfile || error "touch"
9838                         setfattr -n user.multiop $DIR/$tfile
9839                         $MULTIOP $DIR/$tfile oa$buf_size ||
9840                                 error "cannot get zero length xattr value (buf_size = $buf_size)"
9841                 done
9842         done
9843
9844         restore_lustre_params < $save
9845 }
9846 run_test 102t "zero length xattr values handled correctly"
9847
9848 run_acl_subtest()
9849 {
9850     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
9851     return $?
9852 }
9853
9854 test_103a() {
9855         [ "$UID" != 0 ] && skip "must run as root"
9856         $GSS && skip_env "could not run under gss"
9857         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
9858                 skip_env "must have acl enabled"
9859         [ -z "$(which setfacl 2>/dev/null)" ] &&
9860                 skip_env "could not find setfacl"
9861         remote_mds_nodsh && skip "remote MDS with nodsh"
9862
9863         gpasswd -a daemon bin                           # LU-5641
9864         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
9865
9866         declare -a identity_old
9867
9868         for num in $(seq $MDSCOUNT); do
9869                 switch_identity $num true || identity_old[$num]=$?
9870         done
9871
9872         SAVE_UMASK=$(umask)
9873         umask 0022
9874         mkdir -p $DIR/$tdir
9875         cd $DIR/$tdir
9876
9877         echo "performing cp ..."
9878         run_acl_subtest cp || error "run_acl_subtest cp failed"
9879         echo "performing getfacl-noacl..."
9880         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
9881         echo "performing misc..."
9882         run_acl_subtest misc || error  "misc test failed"
9883         echo "performing permissions..."
9884         run_acl_subtest permissions || error "permissions failed"
9885         # LU-1482 mdd: Setting xattr are properly checked with and without ACLs
9886         if [ $MDS1_VERSION -gt $(version_code 2.8.55) ] ||
9887                 { [ $MDS1_VERSION -lt $(version_code 2.6) ] &&
9888                         [ $MDS1_VERSION -ge $(version_code 2.5.29) ]; }
9889         then
9890                 echo "performing permissions xattr..."
9891                 run_acl_subtest permissions_xattr ||
9892                         error "permissions_xattr failed"
9893         fi
9894         echo "performing setfacl..."
9895         run_acl_subtest setfacl || error  "setfacl test failed"
9896
9897         # inheritance test got from HP
9898         echo "performing inheritance..."
9899         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
9900         chmod +x make-tree || error "chmod +x failed"
9901         run_acl_subtest inheritance || error "inheritance test failed"
9902         rm -f make-tree
9903
9904         echo "LU-974 ignore umask when acl is enabled..."
9905         run_acl_subtest 974 || error "LU-974 umask test failed"
9906         if [ $MDSCOUNT -ge 2 ]; then
9907                 run_acl_subtest 974_remote ||
9908                         error "LU-974 umask test failed under remote dir"
9909         fi
9910
9911         echo "LU-2561 newly created file is same size as directory..."
9912         if [ "$mds1_FSTYPE" != "zfs" ]; then
9913                 run_acl_subtest 2561 || error "LU-2561 test failed"
9914         else
9915                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
9916         fi
9917
9918         run_acl_subtest 4924 || error "LU-4924 test failed"
9919
9920         cd $SAVE_PWD
9921         umask $SAVE_UMASK
9922
9923         for num in $(seq $MDSCOUNT); do
9924                 if [ "${identity_old[$num]}" = 1 ]; then
9925                         switch_identity $num false || identity_old[$num]=$?
9926                 fi
9927         done
9928 }
9929 run_test 103a "acl test"
9930
9931 test_103b() {
9932         declare -a pids
9933         local U
9934
9935         for U in {0..511}; do
9936                 {
9937                 local O=$(printf "%04o" $U)
9938
9939                 umask $(printf "%04o" $((511 ^ $O)))
9940                 $LFS setstripe -c 1 $DIR/$tfile.s$O
9941                 local S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.s$O))
9942
9943                 (( $S == ($O & 0666) )) ||
9944                         error "lfs setstripe $DIR/$tfile.s$O '$S' != '$O'"
9945
9946                 $LFS setstripe -E16M -c 1 -E1G -S4M $DIR/$tfile.p$O
9947                 S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.p$O))
9948                 (( $S == ($O & 0666) )) ||
9949                         error "lfs setstripe -E $DIR/$tfile.p$O '$S' != '$O'"
9950
9951                 $LFS setstripe -N2 -c 1 $DIR/$tfile.m$O
9952                 S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.m$O))
9953                 (( $S == ($O & 0666) )) ||
9954                         error "lfs setstripe -N2 $DIR/$tfile.m$O '$S' != '$O'"
9955                 rm -f $DIR/$tfile.[smp]$0
9956                 } &
9957                 local pid=$!
9958
9959                 # limit the concurrently running threads to 64. LU-11878
9960                 local idx=$((U % 64))
9961                 [ -z "${pids[idx]}" ] || wait ${pids[idx]}
9962                 pids[idx]=$pid
9963         done
9964         wait
9965 }
9966 run_test 103b "umask lfs setstripe"
9967
9968 test_103c() {
9969         mkdir -p $DIR/$tdir
9970         cp -rp $DIR/$tdir $DIR/$tdir.bak
9971
9972         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
9973                 error "$DIR/$tdir shouldn't contain default ACL"
9974         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
9975                 error "$DIR/$tdir.bak shouldn't contain default ACL"
9976         true
9977 }
9978 run_test 103c "'cp -rp' won't set empty acl"
9979
9980 test_104a() {
9981         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9982
9983         touch $DIR/$tfile
9984         lfs df || error "lfs df failed"
9985         lfs df -ih || error "lfs df -ih failed"
9986         lfs df -h $DIR || error "lfs df -h $DIR failed"
9987         lfs df -i $DIR || error "lfs df -i $DIR failed"
9988         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
9989         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
9990
9991         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
9992         lctl --device %$OSC deactivate
9993         lfs df || error "lfs df with deactivated OSC failed"
9994         lctl --device %$OSC activate
9995         # wait the osc back to normal
9996         wait_osc_import_ready client ost
9997
9998         lfs df || error "lfs df with reactivated OSC failed"
9999         rm -f $DIR/$tfile
10000 }
10001 run_test 104a "lfs df [-ih] [path] test ========================="
10002
10003 test_104b() {
10004         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10005         [ $RUNAS_ID -eq $UID ] &&
10006                 skip_env "RUNAS_ID = UID = $UID -- skipping"
10007
10008         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
10009                         grep "Permission denied" | wc -l)))
10010         if [ $denied_cnt -ne 0 ]; then
10011                 error "lfs check servers test failed"
10012         fi
10013 }
10014 run_test 104b "$RUNAS lfs check servers test ===================="
10015
10016 test_105a() {
10017         # doesn't work on 2.4 kernels
10018         touch $DIR/$tfile
10019         if $(flock_is_enabled); then
10020                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
10021         else
10022                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
10023         fi
10024         rm -f $DIR/$tfile
10025 }
10026 run_test 105a "flock when mounted without -o flock test ========"
10027
10028 test_105b() {
10029         touch $DIR/$tfile
10030         if $(flock_is_enabled); then
10031                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
10032         else
10033                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
10034         fi
10035         rm -f $DIR/$tfile
10036 }
10037 run_test 105b "fcntl when mounted without -o flock test ========"
10038
10039 test_105c() {
10040         touch $DIR/$tfile
10041         if $(flock_is_enabled); then
10042                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
10043         else
10044                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
10045         fi
10046         rm -f $DIR/$tfile
10047 }
10048 run_test 105c "lockf when mounted without -o flock test"
10049
10050 test_105d() { # bug 15924
10051         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10052
10053         test_mkdir $DIR/$tdir
10054         flock_is_enabled || skip_env "mount w/o flock enabled"
10055         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
10056         $LCTL set_param fail_loc=0x80000315
10057         flocks_test 2 $DIR/$tdir
10058 }
10059 run_test 105d "flock race (should not freeze) ========"
10060
10061 test_105e() { # bug 22660 && 22040
10062         flock_is_enabled || skip_env "mount w/o flock enabled"
10063
10064         touch $DIR/$tfile
10065         flocks_test 3 $DIR/$tfile
10066 }
10067 run_test 105e "Two conflicting flocks from same process"
10068
10069 test_106() { #bug 10921
10070         test_mkdir $DIR/$tdir
10071         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
10072         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
10073 }
10074 run_test 106 "attempt exec of dir followed by chown of that dir"
10075
10076 test_107() {
10077         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10078
10079         CDIR=`pwd`
10080         local file=core
10081
10082         cd $DIR
10083         rm -f $file
10084
10085         local save_pattern=$(sysctl -n kernel.core_pattern)
10086         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
10087         sysctl -w kernel.core_pattern=$file
10088         sysctl -w kernel.core_uses_pid=0
10089
10090         ulimit -c unlimited
10091         sleep 60 &
10092         SLEEPPID=$!
10093
10094         sleep 1
10095
10096         kill -s 11 $SLEEPPID
10097         wait $SLEEPPID
10098         if [ -e $file ]; then
10099                 size=`stat -c%s $file`
10100                 [ $size -eq 0 ] && error "Fail to create core file $file"
10101         else
10102                 error "Fail to create core file $file"
10103         fi
10104         rm -f $file
10105         sysctl -w kernel.core_pattern=$save_pattern
10106         sysctl -w kernel.core_uses_pid=$save_uses_pid
10107         cd $CDIR
10108 }
10109 run_test 107 "Coredump on SIG"
10110
10111 test_110() {
10112         test_mkdir $DIR/$tdir
10113         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255)
10114         $LFS mkdir -c $MDSCOUNT $DIR/$tdir/$(str_repeat 'b' 256) &&
10115                 error "mkdir with 256 char should fail, but did not"
10116         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
10117                 error "create with 255 char failed"
10118         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
10119                 error "create with 256 char should fail, but did not"
10120
10121         ls -l $DIR/$tdir
10122         rm -rf $DIR/$tdir
10123 }
10124 run_test 110 "filename length checking"
10125
10126 #
10127 # Purpose: To verify dynamic thread (OSS) creation.
10128 #
10129 test_115() {
10130         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10131         remote_ost_nodsh && skip "remote OST with nodsh"
10132
10133         # Lustre does not stop service threads once they are started.
10134         # Reset number of running threads to default.
10135         stopall
10136         setupall
10137
10138         local OSTIO_pre
10139         local save_params="$TMP/sanity-$TESTNAME.parameters"
10140
10141         # Get ll_ost_io count before I/O
10142         OSTIO_pre=$(do_facet ost1 \
10143                 "$LCTL get_param ost.OSS.ost_io.threads_started | cut -d= -f2")
10144         # Exit if lustre is not running (ll_ost_io not running).
10145         [ -z "$OSTIO_pre" ] && error "no OSS threads"
10146
10147         echo "Starting with $OSTIO_pre threads"
10148         local thread_max=$((OSTIO_pre * 2))
10149         local rpc_in_flight=$((thread_max * 2))
10150         # Number of I/O Process proposed to be started.
10151         local nfiles
10152         local facets=$(get_facets OST)
10153
10154         save_lustre_params client "osc.*OST*.max_rpcs_in_flight" > $save_params
10155         save_lustre_params $facets "ost.OSS.ost_io.threads_max" >> $save_params
10156
10157         # Set in_flight to $rpc_in_flight
10158         $LCTL set_param osc.*OST*.max_rpcs_in_flight=$rpc_in_flight ||
10159                 error "Failed to set max_rpcs_in_flight to $rpc_in_flight"
10160         nfiles=${rpc_in_flight}
10161         # Set ost thread_max to $thread_max
10162         do_facet ost1 "$LCTL set_param ost.OSS.ost_io.threads_max=$thread_max"
10163
10164         # 5 Minutes should be sufficient for max number of OSS
10165         # threads(thread_max) to be created.
10166         local timeout=300
10167
10168         # Start I/O.
10169         local WTL=${WTL:-"$LUSTRE/tests/write_time_limit"}
10170         test_mkdir $DIR/$tdir
10171         for i in $(seq $nfiles); do
10172                 local file=$DIR/$tdir/${tfile}-$i
10173                 $LFS setstripe -c -1 -i 0 $file
10174                 ($WTL $file $timeout)&
10175         done
10176
10177         # I/O Started - Wait for thread_started to reach thread_max or report
10178         # error if thread_started is more than thread_max.
10179         echo "Waiting for thread_started to reach thread_max"
10180         local thread_started=0
10181         local end_time=$((SECONDS + timeout))
10182
10183         while [ $SECONDS -le $end_time ] ; do
10184                 echo -n "."
10185                 # Get ost i/o thread_started count.
10186                 thread_started=$(do_facet ost1 \
10187                         "$LCTL get_param \
10188                         ost.OSS.ost_io.threads_started | cut -d= -f2")
10189                 # Break out if thread_started is equal/greater than thread_max
10190                 if [[ $thread_started -ge $thread_max ]]; then
10191                         echo ll_ost_io thread_started $thread_started, \
10192                                 equal/greater than thread_max $thread_max
10193                         break
10194                 fi
10195                 sleep 1
10196         done
10197
10198         # Cleanup - We have the numbers, Kill i/o jobs if running.
10199         jobcount=($(jobs -p))
10200         for i in $(seq 0 $((${#jobcount[@]}-1)))
10201         do
10202                 kill -9 ${jobcount[$i]}
10203                 if [ $? -ne 0 ] ; then
10204                         echo Warning: \
10205                         Failed to Kill \'WTL\(I/O\)\' with pid ${jobcount[$i]}
10206                 fi
10207         done
10208
10209         # Cleanup files left by WTL binary.
10210         for i in $(seq $nfiles); do
10211                 local file=$DIR/$tdir/${tfile}-$i
10212                 rm -rf $file
10213                 if [ $? -ne 0 ] ; then
10214                         echo "Warning: Failed to delete file $file"
10215                 fi
10216         done
10217
10218         restore_lustre_params <$save_params
10219         rm -f $save_params || echo "Warning: delete file '$save_params' failed"
10220
10221         # Error out if no new thread has started or Thread started is greater
10222         # than thread max.
10223         if [[ $thread_started -le $OSTIO_pre ||
10224                         $thread_started -gt $thread_max ]]; then
10225                 error "ll_ost_io: thread_started $thread_started" \
10226                       "OSTIO_pre $OSTIO_pre, thread_max $thread_max." \
10227                       "No new thread started or thread started greater " \
10228                       "than thread_max."
10229         fi
10230 }
10231 run_test 115 "verify dynamic thread creation===================="
10232
10233 free_min_max () {
10234         wait_delete_completed
10235         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
10236         echo "OST kbytes available: ${AVAIL[@]}"
10237         MAXV=${AVAIL[0]}
10238         MAXI=0
10239         MINV=${AVAIL[0]}
10240         MINI=0
10241         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
10242                 #echo OST $i: ${AVAIL[i]}kb
10243                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
10244                         MAXV=${AVAIL[i]}
10245                         MAXI=$i
10246                 fi
10247                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
10248                         MINV=${AVAIL[i]}
10249                         MINI=$i
10250                 fi
10251         done
10252         echo "Min free space: OST $MINI: $MINV"
10253         echo "Max free space: OST $MAXI: $MAXV"
10254 }
10255
10256 test_116a() { # was previously test_116()
10257         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10258         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
10259         remote_mds_nodsh && skip "remote MDS with nodsh"
10260
10261         echo -n "Free space priority "
10262         do_facet $SINGLEMDS lctl get_param -n lo[vd].*-mdtlov.qos_prio_free |
10263                 head -n1
10264         declare -a AVAIL
10265         free_min_max
10266
10267         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip"
10268         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip"
10269         trap simple_cleanup_common EXIT
10270
10271         # Check if we need to generate uneven OSTs
10272         test_mkdir -p $DIR/$tdir/OST${MINI}
10273         local FILL=$((MINV / 4))
10274         local DIFF=$((MAXV - MINV))
10275         local DIFF2=$((DIFF * 100 / MINV))
10276
10277         local threshold=$(do_facet $SINGLEMDS \
10278                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
10279         threshold=${threshold%%%}
10280         echo -n "Check for uneven OSTs: "
10281         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
10282
10283         if [[ $DIFF2 -gt $threshold ]]; then
10284                 echo "ok"
10285                 echo "Don't need to fill OST$MINI"
10286         else
10287                 # generate uneven OSTs. Write 2% over the QOS threshold value
10288                 echo "no"
10289                 DIFF=$((threshold - DIFF2 + 2))
10290                 DIFF2=$((MINV * DIFF / 100))
10291                 echo "Fill $DIFF% remaining space in OST$MINI with ${DIFF2}KB"
10292                 $LFS setstripe -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
10293                         error "setstripe failed"
10294                 DIFF=$((DIFF2 / 2048))
10295                 i=0
10296                 while [ $i -lt $DIFF ]; do
10297                         i=$((i + 1))
10298                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
10299                                 bs=2M count=1 2>/dev/null
10300                         echo -n .
10301                 done
10302                 echo .
10303                 sync
10304                 sleep_maxage
10305                 free_min_max
10306         fi
10307
10308         DIFF=$((MAXV - MINV))
10309         DIFF2=$((DIFF * 100 / MINV))
10310         echo -n "diff=$DIFF=$DIFF2% must be > $threshold% for QOS mode..."
10311         if [ $DIFF2 -gt $threshold ]; then
10312                 echo "ok"
10313         else
10314                 echo "failed - QOS mode won't be used"
10315                 simple_cleanup_common
10316                 skip "QOS imbalance criteria not met"
10317         fi
10318
10319         MINI1=$MINI
10320         MINV1=$MINV
10321         MAXI1=$MAXI
10322         MAXV1=$MAXV
10323
10324         # now fill using QOS
10325         $LFS setstripe -c 1 $DIR/$tdir
10326         FILL=$((FILL / 200))
10327         if [ $FILL -gt 600 ]; then
10328                 FILL=600
10329         fi
10330         echo "writing $FILL files to QOS-assigned OSTs"
10331         i=0
10332         while [ $i -lt $FILL ]; do
10333                 i=$((i + 1))
10334                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
10335                         count=1 2>/dev/null
10336                 echo -n .
10337         done
10338         echo "wrote $i 200k files"
10339         sync
10340         sleep_maxage
10341
10342         echo "Note: free space may not be updated, so measurements might be off"
10343         free_min_max
10344         DIFF2=$((MAXV - MINV))
10345         echo "free space delta: orig $DIFF final $DIFF2"
10346         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
10347         DIFF=$((MINV1 - ${AVAIL[$MINI1]}))
10348         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
10349         DIFF2=$((MAXV1 - ${AVAIL[$MAXI1]}))
10350         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
10351         if [[ $DIFF -gt 0 ]]; then
10352                 FILL=$((DIFF2 * 100 / DIFF - 100))
10353                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
10354         fi
10355
10356         # Figure out which files were written where
10357         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
10358                awk '/'$MINI1': / {print $2; exit}')
10359         echo $UUID
10360         MINC=$($LFS getstripe --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
10361         echo "$MINC files created on smaller OST $MINI1"
10362         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
10363                awk '/'$MAXI1': / {print $2; exit}')
10364         echo $UUID
10365         MAXC=$($LFS getstripe --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
10366         echo "$MAXC files created on larger OST $MAXI1"
10367         if [[ $MINC -gt 0 ]]; then
10368                 FILL=$((MAXC * 100 / MINC - 100))
10369                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
10370         fi
10371         [[ $MAXC -gt $MINC ]] ||
10372                 error_ignore LU-9 "stripe QOS didn't balance free space"
10373         simple_cleanup_common
10374 }
10375 run_test 116a "stripe QOS: free space balance ==================="
10376
10377 test_116b() { # LU-2093
10378         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10379         remote_mds_nodsh && skip "remote MDS with nodsh"
10380
10381 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
10382         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
10383                        lo[vd].$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
10384         [ -z "$old_rr" ] && skip "no QOS"
10385         do_facet $SINGLEMDS lctl set_param \
10386                 lo[vd].$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
10387         mkdir -p $DIR/$tdir
10388         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
10389         createmany -o $DIR/$tdir/f- 20 || error "can't create"
10390         do_facet $SINGLEMDS lctl set_param fail_loc=0
10391         rm -rf $DIR/$tdir
10392         do_facet $SINGLEMDS lctl set_param \
10393                 lo[vd].$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
10394 }
10395 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
10396
10397 test_117() # bug 10891
10398 {
10399         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10400
10401         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
10402         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
10403         lctl set_param fail_loc=0x21e
10404         > $DIR/$tfile || error "truncate failed"
10405         lctl set_param fail_loc=0
10406         echo "Truncate succeeded."
10407         rm -f $DIR/$tfile
10408 }
10409 run_test 117 "verify osd extend =========="
10410
10411 NO_SLOW_RESENDCOUNT=4
10412 export OLD_RESENDCOUNT=""
10413 set_resend_count () {
10414         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
10415         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
10416         lctl set_param -n $PROC_RESENDCOUNT $1
10417         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
10418 }
10419
10420 # for reduce test_118* time (b=14842)
10421 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
10422
10423 # Reset async IO behavior after error case
10424 reset_async() {
10425         FILE=$DIR/reset_async
10426
10427         # Ensure all OSCs are cleared
10428         $LFS setstripe -c -1 $FILE
10429         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
10430         sync
10431         rm $FILE
10432 }
10433
10434 test_118a() #bug 11710
10435 {
10436         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10437
10438         reset_async
10439
10440         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
10441         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
10442         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
10443
10444         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
10445                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
10446                 return 1;
10447         fi
10448         rm -f $DIR/$tfile
10449 }
10450 run_test 118a "verify O_SYNC works =========="
10451
10452 test_118b()
10453 {
10454         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10455         remote_ost_nodsh && skip "remote OST with nodsh"
10456
10457         reset_async
10458
10459         #define OBD_FAIL_SRV_ENOENT 0x217
10460         set_nodes_failloc "$(osts_nodes)" 0x217
10461         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
10462         RC=$?
10463         set_nodes_failloc "$(osts_nodes)" 0
10464         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
10465         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
10466                     grep -c writeback)
10467
10468         if [[ $RC -eq 0 ]]; then
10469                 error "Must return error due to dropped pages, rc=$RC"
10470                 return 1;
10471         fi
10472
10473         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
10474                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
10475                 return 1;
10476         fi
10477
10478         echo "Dirty pages not leaked on ENOENT"
10479
10480         # Due to the above error the OSC will issue all RPCs syncronously
10481         # until a subsequent RPC completes successfully without error.
10482         $MULTIOP $DIR/$tfile Ow4096yc
10483         rm -f $DIR/$tfile
10484
10485         return 0
10486 }
10487 run_test 118b "Reclaim dirty pages on fatal error =========="
10488
10489 test_118c()
10490 {
10491         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10492
10493         # for 118c, restore the original resend count, LU-1940
10494         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
10495                                 set_resend_count $OLD_RESENDCOUNT
10496         remote_ost_nodsh && skip "remote OST with nodsh"
10497
10498         reset_async
10499
10500         #define OBD_FAIL_OST_EROFS               0x216
10501         set_nodes_failloc "$(osts_nodes)" 0x216
10502
10503         # multiop should block due to fsync until pages are written
10504         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
10505         MULTIPID=$!
10506         sleep 1
10507
10508         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
10509                 error "Multiop failed to block on fsync, pid=$MULTIPID"
10510         fi
10511
10512         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
10513                     grep -c writeback)
10514         if [[ $WRITEBACK -eq 0 ]]; then
10515                 error "No page in writeback, writeback=$WRITEBACK"
10516         fi
10517
10518         set_nodes_failloc "$(osts_nodes)" 0
10519         wait $MULTIPID
10520         RC=$?
10521         if [[ $RC -ne 0 ]]; then
10522                 error "Multiop fsync failed, rc=$RC"
10523         fi
10524
10525         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
10526         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
10527                     grep -c writeback)
10528         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
10529                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
10530         fi
10531
10532         rm -f $DIR/$tfile
10533         echo "Dirty pages flushed via fsync on EROFS"
10534         return 0
10535 }
10536 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
10537
10538 # continue to use small resend count to reduce test_118* time (b=14842)
10539 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
10540
10541 test_118d()
10542 {
10543         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10544         remote_ost_nodsh && skip "remote OST with nodsh"
10545
10546         reset_async
10547
10548         #define OBD_FAIL_OST_BRW_PAUSE_BULK
10549         set_nodes_failloc "$(osts_nodes)" 0x214
10550         # multiop should block due to fsync until pages are written
10551         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
10552         MULTIPID=$!
10553         sleep 1
10554
10555         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
10556                 error "Multiop failed to block on fsync, pid=$MULTIPID"
10557         fi
10558
10559         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
10560                     grep -c writeback)
10561         if [[ $WRITEBACK -eq 0 ]]; then
10562                 error "No page in writeback, writeback=$WRITEBACK"
10563         fi
10564
10565         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
10566         set_nodes_failloc "$(osts_nodes)" 0
10567
10568         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
10569         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
10570                     grep -c writeback)
10571         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
10572                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
10573         fi
10574
10575         rm -f $DIR/$tfile
10576         echo "Dirty pages gaurenteed flushed via fsync"
10577         return 0
10578 }
10579 run_test 118d "Fsync validation inject a delay of the bulk =========="
10580
10581 test_118f() {
10582         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10583
10584         reset_async
10585
10586         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
10587         lctl set_param fail_loc=0x8000040a
10588
10589         # Should simulate EINVAL error which is fatal
10590         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
10591         RC=$?
10592         if [[ $RC -eq 0 ]]; then
10593                 error "Must return error due to dropped pages, rc=$RC"
10594         fi
10595
10596         lctl set_param fail_loc=0x0
10597
10598         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
10599         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
10600         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
10601                     grep -c writeback)
10602         if [[ $LOCKED -ne 0 ]]; then
10603                 error "Locked pages remain in cache, locked=$LOCKED"
10604         fi
10605
10606         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
10607                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
10608         fi
10609
10610         rm -f $DIR/$tfile
10611         echo "No pages locked after fsync"
10612
10613         reset_async
10614         return 0
10615 }
10616 run_test 118f "Simulate unrecoverable OSC side error =========="
10617
10618 test_118g() {
10619         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10620
10621         reset_async
10622
10623         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
10624         lctl set_param fail_loc=0x406
10625
10626         # simulate local -ENOMEM
10627         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
10628         RC=$?
10629
10630         lctl set_param fail_loc=0
10631         if [[ $RC -eq 0 ]]; then
10632                 error "Must return error due to dropped pages, rc=$RC"
10633         fi
10634
10635         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
10636         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
10637         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
10638                         grep -c writeback)
10639         if [[ $LOCKED -ne 0 ]]; then
10640                 error "Locked pages remain in cache, locked=$LOCKED"
10641         fi
10642
10643         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
10644                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
10645         fi
10646
10647         rm -f $DIR/$tfile
10648         echo "No pages locked after fsync"
10649
10650         reset_async
10651         return 0
10652 }
10653 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
10654
10655 test_118h() {
10656         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10657         remote_ost_nodsh && skip "remote OST with nodsh"
10658
10659         reset_async
10660
10661         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
10662         set_nodes_failloc "$(osts_nodes)" 0x20e
10663         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
10664         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
10665         RC=$?
10666
10667         set_nodes_failloc "$(osts_nodes)" 0
10668         if [[ $RC -eq 0 ]]; then
10669                 error "Must return error due to dropped pages, rc=$RC"
10670         fi
10671
10672         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
10673         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
10674         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
10675                     grep -c writeback)
10676         if [[ $LOCKED -ne 0 ]]; then
10677                 error "Locked pages remain in cache, locked=$LOCKED"
10678         fi
10679
10680         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
10681                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
10682         fi
10683
10684         rm -f $DIR/$tfile
10685         echo "No pages locked after fsync"
10686
10687         return 0
10688 }
10689 run_test 118h "Verify timeout in handling recoverables errors  =========="
10690
10691 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
10692
10693 test_118i() {
10694         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10695         remote_ost_nodsh && skip "remote OST with nodsh"
10696
10697         reset_async
10698
10699         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
10700         set_nodes_failloc "$(osts_nodes)" 0x20e
10701
10702         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
10703         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
10704         PID=$!
10705         sleep 5
10706         set_nodes_failloc "$(osts_nodes)" 0
10707
10708         wait $PID
10709         RC=$?
10710         if [[ $RC -ne 0 ]]; then
10711                 error "got error, but should be not, rc=$RC"
10712         fi
10713
10714         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
10715         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
10716         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
10717         if [[ $LOCKED -ne 0 ]]; then
10718                 error "Locked pages remain in cache, locked=$LOCKED"
10719         fi
10720
10721         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
10722                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
10723         fi
10724
10725         rm -f $DIR/$tfile
10726         echo "No pages locked after fsync"
10727
10728         return 0
10729 }
10730 run_test 118i "Fix error before timeout in recoverable error  =========="
10731
10732 [ "$SLOW" = "no" ] && set_resend_count 4
10733
10734 test_118j() {
10735         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10736         remote_ost_nodsh && skip "remote OST with nodsh"
10737
10738         reset_async
10739
10740         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
10741         set_nodes_failloc "$(osts_nodes)" 0x220
10742
10743         # return -EIO from OST
10744         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
10745         RC=$?
10746         set_nodes_failloc "$(osts_nodes)" 0x0
10747         if [[ $RC -eq 0 ]]; then
10748                 error "Must return error due to dropped pages, rc=$RC"
10749         fi
10750
10751         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
10752         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
10753         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
10754         if [[ $LOCKED -ne 0 ]]; then
10755                 error "Locked pages remain in cache, locked=$LOCKED"
10756         fi
10757
10758         # in recoverable error on OST we want resend and stay until it finished
10759         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
10760                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
10761         fi
10762
10763         rm -f $DIR/$tfile
10764         echo "No pages locked after fsync"
10765
10766         return 0
10767 }
10768 run_test 118j "Simulate unrecoverable OST side error =========="
10769
10770 test_118k()
10771 {
10772         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10773         remote_ost_nodsh && skip "remote OSTs with nodsh"
10774
10775         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
10776         set_nodes_failloc "$(osts_nodes)" 0x20e
10777         test_mkdir $DIR/$tdir
10778
10779         for ((i=0;i<10;i++)); do
10780                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
10781                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
10782                 SLEEPPID=$!
10783                 sleep 0.500s
10784                 kill $SLEEPPID
10785                 wait $SLEEPPID
10786         done
10787
10788         set_nodes_failloc "$(osts_nodes)" 0
10789         rm -rf $DIR/$tdir
10790 }
10791 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
10792
10793 test_118l() # LU-646
10794 {
10795         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10796
10797         test_mkdir $DIR/$tdir
10798         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
10799         rm -rf $DIR/$tdir
10800 }
10801 run_test 118l "fsync dir"
10802
10803 test_118m() # LU-3066
10804 {
10805         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10806
10807         test_mkdir $DIR/$tdir
10808         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
10809         rm -rf $DIR/$tdir
10810 }
10811 run_test 118m "fdatasync dir ========="
10812
10813 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
10814
10815 test_118n()
10816 {
10817         local begin
10818         local end
10819
10820         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10821         remote_ost_nodsh && skip "remote OSTs with nodsh"
10822
10823         # Sleep to avoid a cached response.
10824         #define OBD_STATFS_CACHE_SECONDS 1
10825         sleep 2
10826
10827         # Inject a 10 second delay in the OST_STATFS handler.
10828         #define OBD_FAIL_OST_STATFS_DELAY 0x242
10829         set_nodes_failloc "$(osts_nodes)" 0x242
10830
10831         begin=$SECONDS
10832         stat --file-system $MOUNT > /dev/null
10833         end=$SECONDS
10834
10835         set_nodes_failloc "$(osts_nodes)" 0
10836
10837         if ((end - begin > 20)); then
10838             error "statfs took $((end - begin)) seconds, expected 10"
10839         fi
10840 }
10841 run_test 118n "statfs() sends OST_STATFS requests in parallel"
10842
10843 test_119a() # bug 11737
10844 {
10845         BSIZE=$((512 * 1024))
10846         directio write $DIR/$tfile 0 1 $BSIZE
10847         # We ask to read two blocks, which is more than a file size.
10848         # directio will indicate an error when requested and actual
10849         # sizes aren't equeal (a normal situation in this case) and
10850         # print actual read amount.
10851         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
10852         if [ "$NOB" != "$BSIZE" ]; then
10853                 error "read $NOB bytes instead of $BSIZE"
10854         fi
10855         rm -f $DIR/$tfile
10856 }
10857 run_test 119a "Short directIO read must return actual read amount"
10858
10859 test_119b() # bug 11737
10860 {
10861         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
10862
10863         $LFS setstripe -c 2 $DIR/$tfile || error "setstripe failed"
10864         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
10865         sync
10866         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) ||
10867                 error "direct read failed"
10868         rm -f $DIR/$tfile
10869 }
10870 run_test 119b "Sparse directIO read must return actual read amount"
10871
10872 test_119c() # bug 13099
10873 {
10874         BSIZE=1048576
10875         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
10876         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
10877         rm -f $DIR/$tfile
10878 }
10879 run_test 119c "Testing for direct read hitting hole"
10880
10881 test_119d() # bug 15950
10882 {
10883         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10884
10885         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
10886         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
10887         BSIZE=1048576
10888         $LFS setstripe $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
10889         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
10890         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
10891         lctl set_param fail_loc=0x40d
10892         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
10893         pid_dio=$!
10894         sleep 1
10895         cat $DIR/$tfile > /dev/null &
10896         lctl set_param fail_loc=0
10897         pid_reads=$!
10898         wait $pid_dio
10899         log "the DIO writes have completed, now wait for the reads (should not block very long)"
10900         sleep 2
10901         [ -n "`ps h -p $pid_reads -o comm`" ] && \
10902         error "the read rpcs have not completed in 2s"
10903         rm -f $DIR/$tfile
10904         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
10905 }
10906 run_test 119d "The DIO path should try to send a new rpc once one is completed"
10907
10908 test_120a() {
10909         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10910         remote_mds_nodsh && skip "remote MDS with nodsh"
10911         test_mkdir -i0 -c1 $DIR/$tdir
10912         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
10913                 skip_env "no early lock cancel on server"
10914
10915         lru_resize_disable mdc
10916         lru_resize_disable osc
10917         cancel_lru_locks mdc
10918         # asynchronous object destroy at MDT could cause bl ast to client
10919         cancel_lru_locks osc
10920
10921         stat $DIR/$tdir > /dev/null
10922         can1=$(do_facet mds1 \
10923                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
10924                awk '/ldlm_cancel/ {print $2}')
10925         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
10926                awk '/ldlm_bl_callback/ {print $2}')
10927         test_mkdir -i0 -c1 $DIR/$tdir/d1
10928         can2=$(do_facet mds1 \
10929                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
10930                awk '/ldlm_cancel/ {print $2}')
10931         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
10932                awk '/ldlm_bl_callback/ {print $2}')
10933         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
10934         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
10935         lru_resize_enable mdc
10936         lru_resize_enable osc
10937 }
10938 run_test 120a "Early Lock Cancel: mkdir test"
10939
10940 test_120b() {
10941         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10942         remote_mds_nodsh && skip "remote MDS with nodsh"
10943         test_mkdir $DIR/$tdir
10944         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
10945                 skip_env "no early lock cancel on server"
10946
10947         lru_resize_disable mdc
10948         lru_resize_disable osc
10949         cancel_lru_locks mdc
10950         stat $DIR/$tdir > /dev/null
10951         can1=$(do_facet $SINGLEMDS \
10952                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
10953                awk '/ldlm_cancel/ {print $2}')
10954         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
10955                awk '/ldlm_bl_callback/ {print $2}')
10956         touch $DIR/$tdir/f1
10957         can2=$(do_facet $SINGLEMDS \
10958                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
10959                awk '/ldlm_cancel/ {print $2}')
10960         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
10961                awk '/ldlm_bl_callback/ {print $2}')
10962         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
10963         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
10964         lru_resize_enable mdc
10965         lru_resize_enable osc
10966 }
10967 run_test 120b "Early Lock Cancel: create test"
10968
10969 test_120c() {
10970         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10971         remote_mds_nodsh && skip "remote MDS with nodsh"
10972         test_mkdir -i0 -c1 $DIR/$tdir
10973         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
10974                 skip "no early lock cancel on server"
10975
10976         lru_resize_disable mdc
10977         lru_resize_disable osc
10978         test_mkdir -i0 -c1 $DIR/$tdir/d1
10979         test_mkdir -i0 -c1 $DIR/$tdir/d2
10980         touch $DIR/$tdir/d1/f1
10981         cancel_lru_locks mdc
10982         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
10983         can1=$(do_facet mds1 \
10984                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
10985                awk '/ldlm_cancel/ {print $2}')
10986         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
10987                awk '/ldlm_bl_callback/ {print $2}')
10988         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
10989         can2=$(do_facet mds1 \
10990                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
10991                awk '/ldlm_cancel/ {print $2}')
10992         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
10993                awk '/ldlm_bl_callback/ {print $2}')
10994         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
10995         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
10996         lru_resize_enable mdc
10997         lru_resize_enable osc
10998 }
10999 run_test 120c "Early Lock Cancel: link test"
11000
11001 test_120d() {
11002         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11003         remote_mds_nodsh && skip "remote MDS with nodsh"
11004         test_mkdir -i0 -c1 $DIR/$tdir
11005         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
11006                 skip_env "no early lock cancel on server"
11007
11008         lru_resize_disable mdc
11009         lru_resize_disable osc
11010         touch $DIR/$tdir
11011         cancel_lru_locks mdc
11012         stat $DIR/$tdir > /dev/null
11013         can1=$(do_facet mds1 \
11014                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
11015                awk '/ldlm_cancel/ {print $2}')
11016         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
11017                awk '/ldlm_bl_callback/ {print $2}')
11018         chmod a+x $DIR/$tdir
11019         can2=$(do_facet mds1 \
11020                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
11021                awk '/ldlm_cancel/ {print $2}')
11022         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
11023                awk '/ldlm_bl_callback/ {print $2}')
11024         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
11025         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
11026         lru_resize_enable mdc
11027         lru_resize_enable osc
11028 }
11029 run_test 120d "Early Lock Cancel: setattr test"
11030
11031 test_120e() {
11032         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11033         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
11034                 skip_env "no early lock cancel on server"
11035         remote_mds_nodsh && skip "remote MDS with nodsh"
11036
11037         local dlmtrace_set=false
11038
11039         test_mkdir -i0 -c1 $DIR/$tdir
11040         lru_resize_disable mdc
11041         lru_resize_disable osc
11042         ! $LCTL get_param debug | grep -q dlmtrace &&
11043                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
11044         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
11045         cancel_lru_locks mdc
11046         cancel_lru_locks osc
11047         dd if=$DIR/$tdir/f1 of=/dev/null
11048         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
11049         # XXX client can not do early lock cancel of OST lock
11050         # during unlink (LU-4206), so cancel osc lock now.
11051         sleep 2
11052         cancel_lru_locks osc
11053         can1=$(do_facet mds1 \
11054                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
11055                awk '/ldlm_cancel/ {print $2}')
11056         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
11057                awk '/ldlm_bl_callback/ {print $2}')
11058         unlink $DIR/$tdir/f1
11059         sleep 5
11060         can2=$(do_facet mds1 \
11061                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
11062                awk '/ldlm_cancel/ {print $2}')
11063         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
11064                awk '/ldlm_bl_callback/ {print $2}')
11065         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
11066                 $LCTL dk $TMP/cancel.debug.txt
11067         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
11068                 $LCTL dk $TMP/blocking.debug.txt
11069         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
11070         lru_resize_enable mdc
11071         lru_resize_enable osc
11072 }
11073 run_test 120e "Early Lock Cancel: unlink test"
11074
11075 test_120f() {
11076         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11077         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
11078                 skip_env "no early lock cancel on server"
11079         remote_mds_nodsh && skip "remote MDS with nodsh"
11080
11081         test_mkdir -i0 -c1 $DIR/$tdir
11082         lru_resize_disable mdc
11083         lru_resize_disable osc
11084         test_mkdir -i0 -c1 $DIR/$tdir/d1
11085         test_mkdir -i0 -c1 $DIR/$tdir/d2
11086         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
11087         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
11088         cancel_lru_locks mdc
11089         cancel_lru_locks osc
11090         dd if=$DIR/$tdir/d1/f1 of=/dev/null
11091         dd if=$DIR/$tdir/d2/f2 of=/dev/null
11092         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
11093         # XXX client can not do early lock cancel of OST lock
11094         # during rename (LU-4206), so cancel osc lock now.
11095         sleep 2
11096         cancel_lru_locks osc
11097         can1=$(do_facet mds1 \
11098                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
11099                awk '/ldlm_cancel/ {print $2}')
11100         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
11101                awk '/ldlm_bl_callback/ {print $2}')
11102         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
11103         sleep 5
11104         can2=$(do_facet mds1 \
11105                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
11106                awk '/ldlm_cancel/ {print $2}')
11107         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
11108                awk '/ldlm_bl_callback/ {print $2}')
11109         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
11110         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
11111         lru_resize_enable mdc
11112         lru_resize_enable osc
11113 }
11114 run_test 120f "Early Lock Cancel: rename test"
11115
11116 test_120g() {
11117         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11118         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
11119                 skip_env "no early lock cancel on server"
11120         remote_mds_nodsh && skip "remote MDS with nodsh"
11121
11122         lru_resize_disable mdc
11123         lru_resize_disable osc
11124         count=10000
11125         echo create $count files
11126         test_mkdir $DIR/$tdir
11127         cancel_lru_locks mdc
11128         cancel_lru_locks osc
11129         t0=$(date +%s)
11130
11131         can0=$(do_facet $SINGLEMDS \
11132                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
11133                awk '/ldlm_cancel/ {print $2}')
11134         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
11135                awk '/ldlm_bl_callback/ {print $2}')
11136         createmany -o $DIR/$tdir/f $count
11137         sync
11138         can1=$(do_facet $SINGLEMDS \
11139                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
11140                awk '/ldlm_cancel/ {print $2}')
11141         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
11142                awk '/ldlm_bl_callback/ {print $2}')
11143         t1=$(date +%s)
11144         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
11145         echo rm $count files
11146         rm -r $DIR/$tdir
11147         sync
11148         can2=$(do_facet $SINGLEMDS \
11149                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
11150                awk '/ldlm_cancel/ {print $2}')
11151         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
11152                awk '/ldlm_bl_callback/ {print $2}')
11153         t2=$(date +%s)
11154         echo total: $count removes in $((t2-t1))
11155         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
11156         sleep 2
11157         # wait for commitment of removal
11158         lru_resize_enable mdc
11159         lru_resize_enable osc
11160 }
11161 run_test 120g "Early Lock Cancel: performance test"
11162
11163 test_121() { #bug #10589
11164         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11165
11166         rm -rf $DIR/$tfile
11167         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
11168 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
11169         lctl set_param fail_loc=0x310
11170         cancel_lru_locks osc > /dev/null
11171         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
11172         lctl set_param fail_loc=0
11173         [[ $reads -eq $writes ]] ||
11174                 error "read $reads blocks, must be $writes blocks"
11175 }
11176 run_test 121 "read cancel race ========="
11177
11178 test_123a() { # was test 123, statahead(bug 11401)
11179         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11180
11181         SLOWOK=0
11182         if ! grep -q "processor.*: 1" /proc/cpuinfo; then
11183                 log "testing UP system. Performance may be lower than expected."
11184                 SLOWOK=1
11185         fi
11186
11187         rm -rf $DIR/$tdir
11188         test_mkdir $DIR/$tdir
11189         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
11190         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
11191         MULT=10
11192         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
11193                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
11194
11195                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
11196                 lctl set_param -n llite.*.statahead_max 0
11197                 lctl get_param llite.*.statahead_max
11198                 cancel_lru_locks mdc
11199                 cancel_lru_locks osc
11200                 stime=`date +%s`
11201                 time ls -l $DIR/$tdir | wc -l
11202                 etime=`date +%s`
11203                 delta=$((etime - stime))
11204                 log "ls $i files without statahead: $delta sec"
11205                 lctl set_param llite.*.statahead_max=$max
11206
11207                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
11208                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
11209                 cancel_lru_locks mdc
11210                 cancel_lru_locks osc
11211                 stime=`date +%s`
11212                 time ls -l $DIR/$tdir | wc -l
11213                 etime=`date +%s`
11214                 delta_sa=$((etime - stime))
11215                 log "ls $i files with statahead: $delta_sa sec"
11216                 lctl get_param -n llite.*.statahead_stats
11217                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
11218
11219                 [[ $swrong -lt $ewrong ]] &&
11220                         log "statahead was stopped, maybe too many locks held!"
11221                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
11222
11223                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
11224                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
11225                     lctl set_param -n llite.*.statahead_max 0
11226                     lctl get_param llite.*.statahead_max
11227                     cancel_lru_locks mdc
11228                     cancel_lru_locks osc
11229                     stime=`date +%s`
11230                     time ls -l $DIR/$tdir | wc -l
11231                     etime=`date +%s`
11232                     delta=$((etime - stime))
11233                     log "ls $i files again without statahead: $delta sec"
11234                     lctl set_param llite.*.statahead_max=$max
11235                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
11236                         if [  $SLOWOK -eq 0 ]; then
11237                                 error "ls $i files is slower with statahead!"
11238                         else
11239                                 log "ls $i files is slower with statahead!"
11240                         fi
11241                         break
11242                     fi
11243                 fi
11244
11245                 [ $delta -gt 20 ] && break
11246                 [ $delta -gt 8 ] && MULT=$((50 / delta))
11247                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
11248         done
11249         log "ls done"
11250
11251         stime=`date +%s`
11252         rm -r $DIR/$tdir
11253         sync
11254         etime=`date +%s`
11255         delta=$((etime - stime))
11256         log "rm -r $DIR/$tdir/: $delta seconds"
11257         log "rm done"
11258         lctl get_param -n llite.*.statahead_stats
11259 }
11260 run_test 123a "verify statahead work"
11261
11262 test_123b () { # statahead(bug 15027)
11263         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11264
11265         test_mkdir $DIR/$tdir
11266         createmany -o $DIR/$tdir/$tfile-%d 1000
11267
11268         cancel_lru_locks mdc
11269         cancel_lru_locks osc
11270
11271 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
11272         lctl set_param fail_loc=0x80000803
11273         ls -lR $DIR/$tdir > /dev/null
11274         log "ls done"
11275         lctl set_param fail_loc=0x0
11276         lctl get_param -n llite.*.statahead_stats
11277         rm -r $DIR/$tdir
11278         sync
11279
11280 }
11281 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
11282
11283 test_123c() {
11284         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
11285
11286         test_mkdir -i 0 -c 1 $DIR/$tdir.0
11287         test_mkdir -i 1 -c 1 $DIR/$tdir.1
11288         touch $DIR/$tdir.1/{1..3}
11289         mv $DIR/$tdir.1/{1..3} $DIR/$tdir.0
11290
11291         remount_client $MOUNT
11292
11293         $MULTIOP $DIR/$tdir.0 Q
11294
11295         # let statahead to complete
11296         ls -l $DIR/$tdir.0 > /dev/null
11297
11298         testid=$(echo $TESTNAME | tr '_' ' ')
11299         dmesg | tac | sed "/$testid/,$ d" | grep "Can not initialize inode" &&
11300                 error "statahead warning" || true
11301 }
11302 run_test 123c "Can not initialize inode warning on DNE statahead"
11303
11304 test_124a() {
11305         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11306         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
11307                 skip_env "no lru resize on server"
11308
11309         local NR=2000
11310
11311         test_mkdir $DIR/$tdir
11312
11313         log "create $NR files at $DIR/$tdir"
11314         createmany -o $DIR/$tdir/f $NR ||
11315                 error "failed to create $NR files in $DIR/$tdir"
11316
11317         cancel_lru_locks mdc
11318         ls -l $DIR/$tdir > /dev/null
11319
11320         local NSDIR=""
11321         local LRU_SIZE=0
11322         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
11323                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
11324                 LRU_SIZE=$($LCTL get_param -n $PARAM)
11325                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
11326                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
11327                         log "NSDIR=$NSDIR"
11328                         log "NS=$(basename $NSDIR)"
11329                         break
11330                 fi
11331         done
11332
11333         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
11334                 skip "Not enough cached locks created!"
11335         fi
11336         log "LRU=$LRU_SIZE"
11337
11338         local SLEEP=30
11339
11340         # We know that lru resize allows one client to hold $LIMIT locks
11341         # for 10h. After that locks begin to be killed by client.
11342         local MAX_HRS=10
11343         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
11344         log "LIMIT=$LIMIT"
11345         if [ $LIMIT -lt $LRU_SIZE ]; then
11346                 skip "Limit is too small $LIMIT"
11347         fi
11348
11349         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
11350         # killing locks. Some time was spent for creating locks. This means
11351         # that up to the moment of sleep finish we must have killed some of
11352         # them (10-100 locks). This depends on how fast ther were created.
11353         # Many of them were touched in almost the same moment and thus will
11354         # be killed in groups.
11355         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
11356
11357         # Use $LRU_SIZE_B here to take into account real number of locks
11358         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
11359         local LRU_SIZE_B=$LRU_SIZE
11360         log "LVF=$LVF"
11361         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
11362         log "OLD_LVF=$OLD_LVF"
11363         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
11364
11365         # Let's make sure that we really have some margin. Client checks
11366         # cached locks every 10 sec.
11367         SLEEP=$((SLEEP+20))
11368         log "Sleep ${SLEEP} sec"
11369         local SEC=0
11370         while ((SEC<$SLEEP)); do
11371                 echo -n "..."
11372                 sleep 5
11373                 SEC=$((SEC+5))
11374                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
11375                 echo -n "$LRU_SIZE"
11376         done
11377         echo ""
11378         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
11379         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
11380
11381         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
11382                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
11383                 unlinkmany $DIR/$tdir/f $NR
11384                 return
11385         }
11386
11387         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
11388         log "unlink $NR files at $DIR/$tdir"
11389         unlinkmany $DIR/$tdir/f $NR
11390 }
11391 run_test 124a "lru resize ======================================="
11392
11393 get_max_pool_limit()
11394 {
11395         local limit=$($LCTL get_param \
11396                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
11397         local max=0
11398         for l in $limit; do
11399                 if [[ $l -gt $max ]]; then
11400                         max=$l
11401                 fi
11402         done
11403         echo $max
11404 }
11405
11406 test_124b() {
11407         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11408         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
11409                 skip_env "no lru resize on server"
11410
11411         LIMIT=$(get_max_pool_limit)
11412
11413         NR=$(($(default_lru_size)*20))
11414         if [[ $NR -gt $LIMIT ]]; then
11415                 log "Limit lock number by $LIMIT locks"
11416                 NR=$LIMIT
11417         fi
11418
11419         IFree=$(mdsrate_inodes_available)
11420         if [ $IFree -lt $NR ]; then
11421                 log "Limit lock number by $IFree inodes"
11422                 NR=$IFree
11423         fi
11424
11425         lru_resize_disable mdc
11426         test_mkdir -p $DIR/$tdir/disable_lru_resize
11427
11428         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
11429         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
11430         cancel_lru_locks mdc
11431         stime=`date +%s`
11432         PID=""
11433         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
11434         PID="$PID $!"
11435         sleep 2
11436         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
11437         PID="$PID $!"
11438         sleep 2
11439         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
11440         PID="$PID $!"
11441         wait $PID
11442         etime=`date +%s`
11443         nolruresize_delta=$((etime-stime))
11444         log "ls -la time: $nolruresize_delta seconds"
11445         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
11446         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
11447
11448         lru_resize_enable mdc
11449         test_mkdir -p $DIR/$tdir/enable_lru_resize
11450
11451         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
11452         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
11453         cancel_lru_locks mdc
11454         stime=`date +%s`
11455         PID=""
11456         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
11457         PID="$PID $!"
11458         sleep 2
11459         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
11460         PID="$PID $!"
11461         sleep 2
11462         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
11463         PID="$PID $!"
11464         wait $PID
11465         etime=`date +%s`
11466         lruresize_delta=$((etime-stime))
11467         log "ls -la time: $lruresize_delta seconds"
11468         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
11469
11470         if [ $lruresize_delta -gt $nolruresize_delta ]; then
11471                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
11472         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
11473                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
11474         else
11475                 log "lru resize performs the same with no lru resize"
11476         fi
11477         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
11478 }
11479 run_test 124b "lru resize (performance test) ======================="
11480
11481 test_124c() {
11482         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11483         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
11484                 skip_env "no lru resize on server"
11485
11486         # cache ununsed locks on client
11487         local nr=100
11488         cancel_lru_locks mdc
11489         test_mkdir $DIR/$tdir
11490         createmany -o $DIR/$tdir/f $nr ||
11491                 error "failed to create $nr files in $DIR/$tdir"
11492         ls -l $DIR/$tdir > /dev/null
11493
11494         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
11495         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
11496         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
11497         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
11498         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
11499
11500         # set lru_max_age to 1 sec
11501         $LCTL set_param $nsdir.lru_max_age=1000 # milliseconds
11502         echo "sleep $((recalc_p * 2)) seconds..."
11503         sleep $((recalc_p * 2))
11504
11505         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
11506         # restore lru_max_age
11507         $LCTL set_param -n $nsdir.lru_max_age $max_age
11508         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
11509         unlinkmany $DIR/$tdir/f $nr
11510 }
11511 run_test 124c "LRUR cancel very aged locks"
11512
11513 test_124d() {
11514         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11515         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
11516                 skip_env "no lru resize on server"
11517
11518         # cache ununsed locks on client
11519         local nr=100
11520
11521         lru_resize_disable mdc
11522         stack_trap "lru_resize_enable mdc" EXIT
11523
11524         cancel_lru_locks mdc
11525
11526         # asynchronous object destroy at MDT could cause bl ast to client
11527         test_mkdir $DIR/$tdir
11528         createmany -o $DIR/$tdir/f $nr ||
11529                 error "failed to create $nr files in $DIR/$tdir"
11530         stack_trap "unlinkmany $DIR/$tdir/f $nr" EXIT
11531
11532         ls -l $DIR/$tdir > /dev/null
11533
11534         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
11535         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
11536         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
11537         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
11538
11539         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
11540
11541         # set lru_max_age to 1 sec
11542         $LCTL set_param $nsdir.lru_max_age=1000 # milliseconds
11543         stack_trap "$LCTL set_param -n $nsdir.lru_max_age $max_age" EXIT
11544
11545         echo "sleep $((recalc_p * 2)) seconds..."
11546         sleep $((recalc_p * 2))
11547
11548         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
11549
11550         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
11551 }
11552 run_test 124d "cancel very aged locks if lru-resize diasbaled"
11553
11554 test_125() { # 13358
11555         $LCTL get_param -n llite.*.client_type | grep -q local ||
11556                 skip "must run as local client"
11557         $LCTL get_param -n mdc.*-mdc-*.connect_flags | grep -q acl ||
11558                 skip_env "must have acl enabled"
11559         [ -z "$(which setfacl)" ] && skip_env "must have setfacl tool"
11560
11561         test_mkdir $DIR/$tdir
11562         $LFS setstripe -S 65536 -c -1 $DIR/$tdir || error "setstripe failed"
11563         setfacl -R -m u:bin:rwx $DIR/$tdir || error "setfacl $DIR/$tdir failed"
11564         ls -ld $DIR/$tdir || error "cannot access $DIR/$tdir"
11565 }
11566 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
11567
11568 test_126() { # bug 12829/13455
11569         $GSS && skip_env "must run as gss disabled"
11570         $LCTL get_param -n llite.*.client_type | grep -q local ||
11571                 skip "must run as local client"
11572         [ "$UID" != 0 ] && skip "must run as root, not UID $UID"
11573
11574         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
11575         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
11576         rm -f $DIR/$tfile
11577         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
11578 }
11579 run_test 126 "check that the fsgid provided by the client is taken into account"
11580
11581 test_127a() { # bug 15521
11582         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11583         local name count samp unit min max sum sumsq
11584
11585         $LFS setstripe -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
11586         echo "stats before reset"
11587         $LCTL get_param osc.*.stats
11588         $LCTL set_param osc.*.stats=0
11589         local fsize=$((2048 * 1024))
11590
11591         dd if=/dev/zero of=$DIR/$tfile bs=$fsize count=1
11592         cancel_lru_locks osc
11593         dd if=$DIR/$tfile of=/dev/null bs=$fsize
11594
11595         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/$tfile.tmp
11596         stack_trap "rm -f $TMP/$tfile.tmp"
11597         while read name count samp unit min max sum sumsq; do
11598                 echo "got name=$name count=$count unit=$unit min=$min max=$max"
11599                 [ ! $min ] && error "Missing min value for $name proc entry"
11600                 eval $name=$count || error "Wrong proc format"
11601
11602                 case $name in
11603                 read_bytes|write_bytes)
11604                         [[ "$unit" =~ "bytes" ]] ||
11605                                 error "unit is not 'bytes': $unit"
11606                         (( $min >= 4096 )) || error "min is too small: $min"
11607                         (( $min <= $fsize )) || error "min is too big: $min"
11608                         (( $max >= 4096 )) || error "max is too small: $max"
11609                         (( $max <= $fsize )) || error "max is too big: $max"
11610                         (( $sum == $fsize )) || error "sum is wrong: $sum"
11611                         (( $sumsq >= ($fsize / 4096) * (4096 * 4096) )) ||
11612                                 error "sumsquare is too small: $sumsq"
11613                         (( $sumsq <= $fsize * $fsize )) ||
11614                                 error "sumsquare is too big: $sumsq"
11615                         ;;
11616                 ost_read|ost_write)
11617                         [[ "$unit" =~ "usec" ]] ||
11618                                 error "unit is not 'usec': $unit"
11619                         ;;
11620                 *)      ;;
11621                 esac
11622         done < $DIR/$tfile.tmp
11623
11624         #check that we actually got some stats
11625         [ "$read_bytes" ] || error "Missing read_bytes stats"
11626         [ "$write_bytes" ] || error "Missing write_bytes stats"
11627         [ "$read_bytes" != 0 ] || error "no read done"
11628         [ "$write_bytes" != 0 ] || error "no write done"
11629 }
11630 run_test 127a "verify the client stats are sane"
11631
11632 test_127b() { # bug LU-333
11633         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11634         local name count samp unit min max sum sumsq
11635
11636         echo "stats before reset"
11637         $LCTL get_param llite.*.stats
11638         $LCTL set_param llite.*.stats=0
11639
11640         # perform 2 reads and writes so MAX is different from SUM.
11641         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1
11642         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1
11643         cancel_lru_locks osc
11644         dd if=$DIR/$tfile of=/dev/null bs=$PAGE_SIZE count=1
11645         dd if=$DIR/$tfile of=/dev/null bs=$PAGE_SIZE count=1
11646
11647         $LCTL get_param llite.*.stats | grep samples > $TMP/$tfile.tmp
11648         stack_trap "rm -f $TMP/$tfile.tmp"
11649         while read name count samp unit min max sum sumsq; do
11650                 echo "got name=$name count=$count unit=$unit min=$min max=$max"
11651                 eval $name=$count || error "Wrong proc format"
11652
11653                 case $name in
11654                 read_bytes|write_bytes)
11655                         [[ "$unit" =~ "bytes" ]] ||
11656                                 error "unit is not 'bytes': $unit"
11657                         (( $count == 2 )) || error "count is not 2: $count"
11658                         (( $min == $PAGE_SIZE )) ||
11659                                 error "min is not $PAGE_SIZE: $min"
11660                         (( $max == $PAGE_SIZE )) ||
11661                                 error "max is not $PAGE_SIZE: $max"
11662                         (( $sum == $PAGE_SIZE * 2 )) ||
11663                                 error "sum is not $((PAGE_SIZE * 2)): $sum"
11664                         ;;
11665                 read|write)
11666                         [[ "$unit" =~ "usec" ]] ||
11667                                 error "unit is not 'usec': $unit"
11668                         ;;
11669                 *)      ;;
11670                 esac
11671         done < $TMP/$tfile.tmp
11672
11673         #check that we actually got some stats
11674         [ "$read_bytes" ] || error "Missing read_bytes stats"
11675         [ "$write_bytes" ] || error "Missing write_bytes stats"
11676         [ "$read_bytes" != 0 ] || error "no read done"
11677         [ "$write_bytes" != 0 ] || error "no write done"
11678 }
11679 run_test 127b "verify the llite client stats are sane"
11680
11681 test_127c() { # LU-12394
11682         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >= 2 OSTs"
11683         local size
11684         local bsize
11685         local reads
11686         local writes
11687         local count
11688
11689         $LCTL set_param llite.*.extents_stats=1
11690         stack_trap "$LCTL set_param llite.*.extents_stats=0" EXIT
11691
11692         # Use two stripes so there is enough space in default config
11693         $LFS setstripe -c 2 $DIR/$tfile
11694
11695         # Extent stats start at 0-4K and go in power of two buckets
11696         # LL_HIST_START = 12 --> 2^12 = 4K
11697         # We do 3K*2^i, so 3K, 6K, 12K, 24K... hitting each bucket.
11698         # We do not do buckets larger than 64 MiB to avoid ENOSPC issues on
11699         # small configs
11700         for size in 3K 6K 12K 24K 48K 96K 192K 384K 768K 1536K 3M 6M 12M 24M 48M;
11701                 do
11702                 # Write and read, 2x each, second time at a non-zero offset
11703                 dd if=/dev/zero of=$DIR/$tfile bs=$size count=1
11704                 dd if=/dev/zero of=$DIR/$tfile bs=$size count=1 seek=10
11705                 dd if=$DIR/$tfile of=/dev/null bs=$size count=1
11706                 dd if=$DIR/$tfile of=/dev/null bs=$size count=1 seek=10
11707                 rm -f $DIR/$tfile
11708         done
11709
11710         $LCTL get_param llite.*.extents_stats
11711
11712         count=2
11713         for bsize in 4K 8K 16K 32K 64K 128K 256K 512K 1M 2M 4M 8M 16M 32M 64M;
11714                 do
11715                 local bucket=$($LCTL get_param -n llite.*.extents_stats |
11716                                 grep -m 1 $bsize)
11717                 reads=$(echo $bucket | awk '{print $5}')
11718                 writes=$(echo $bucket | awk '{print $9}')
11719                 [ "$reads" -eq $count ] ||
11720                         error "$reads reads in < $bsize bucket, expect $count"
11721                 [ "$writes" -eq $count ] ||
11722                         error "$writes writes in < $bsize bucket, expect $count"
11723         done
11724
11725         # Test mmap write and read
11726         $LCTL set_param llite.*.extents_stats=c
11727         size=512
11728         dd if=/dev/zero of=$DIR/$tfile bs=${size}K count=1
11729         $MULTIOP $DIR/$tfile OSMRUc || error "$MULTIOP $DIR/$tfile failed"
11730         $MULTIOP $DIR/$tfile OSMWUc || error "$MULTIOP $DIR/$tfile failed"
11731
11732         $LCTL get_param llite.*.extents_stats
11733
11734         count=$(((size*1024) / PAGE_SIZE))
11735
11736         bsize=$((2 * PAGE_SIZE / 1024))K
11737
11738         bucket=$($LCTL get_param -n llite.*.extents_stats |
11739                         grep -m 1 $bsize)
11740         reads=$(echo $bucket | awk '{print $5}')
11741         writes=$(echo $bucket | awk '{print $9}')
11742         # mmap writes fault in the page first, creating an additonal read
11743         [ "$reads" -eq $((2 * count)) ] ||
11744                 error "$reads reads in < $bsize bucket, expect $count"
11745         [ "$writes" -eq $count ] ||
11746                 error "$writes writes in < $bsize bucket, expect $count"
11747 }
11748 run_test 127c "test llite extent stats with regular & mmap i/o"
11749
11750 test_128() { # bug 15212
11751         touch $DIR/$tfile
11752         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
11753                 find $DIR/$tfile
11754                 find $DIR/$tfile
11755         EOF
11756
11757         result=$(grep error $TMP/$tfile.log)
11758         rm -f $DIR/$tfile $TMP/$tfile.log
11759         [ -z "$result" ] ||
11760                 error "consecutive find's under interactive lfs failed"
11761 }
11762 run_test 128 "interactive lfs for 2 consecutive find's"
11763
11764 set_dir_limits () {
11765         local mntdev
11766         local canondev
11767         local node
11768
11769         local ldproc=/proc/fs/ldiskfs
11770         local facets=$(get_facets MDS)
11771
11772         for facet in ${facets//,/ }; do
11773                 canondev=$(ldiskfs_canon \
11774                            *.$(convert_facet2label $facet).mntdev $facet)
11775                 do_facet $facet "test -e $ldproc/$canondev/max_dir_size" ||
11776                         ldproc=/sys/fs/ldiskfs
11777                 do_facet $facet "echo $1 >$ldproc/$canondev/max_dir_size"
11778                 do_facet $facet "echo $2 >$ldproc/$canondev/warning_dir_size"
11779         done
11780 }
11781
11782 check_mds_dmesg() {
11783         local facets=$(get_facets MDS)
11784         for facet in ${facets//,/ }; do
11785                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
11786         done
11787         return 1
11788 }
11789
11790 test_129() {
11791         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11792         [[ $MDS1_VERSION -ge $(version_code 2.5.56) ]] ||
11793                 skip "Need MDS version with at least 2.5.56"
11794         if [ "$mds1_FSTYPE" != ldiskfs ]; then
11795                 skip_env "ldiskfs only test"
11796         fi
11797         remote_mds_nodsh && skip "remote MDS with nodsh"
11798
11799         local ENOSPC=28
11800         local EFBIG=27
11801         local has_warning=false
11802
11803         rm -rf $DIR/$tdir
11804         mkdir -p $DIR/$tdir
11805
11806         # block size of mds1
11807         local maxsize=$(($($LCTL get_param -n mdc.*MDT0000*.blocksize) * 5))
11808         set_dir_limits $maxsize $maxsize
11809         local dirsize=$(stat -c%s "$DIR/$tdir")
11810         local nfiles=0
11811         while [[ $dirsize -le $maxsize ]]; do
11812                 $MULTIOP $DIR/$tdir/file_base_$nfiles Oc
11813                 rc=$?
11814                 if ! $has_warning; then
11815                         check_mds_dmesg '"is approaching"' && has_warning=true
11816                 fi
11817                 # check two errors:
11818                 # ENOSPC for new ext4 max_dir_size (kernel commit df981d03ee)
11819                 # EFBIG for previous versions included in ldiskfs series
11820                 if [ $rc -eq $EFBIG ] || [ $rc -eq $ENOSPC ]; then
11821                         set_dir_limits 0 0
11822                         echo "return code $rc received as expected"
11823
11824                         createmany -o $DIR/$tdir/file_extra_$nfiles. 5 ||
11825                                 error_exit "create failed w/o dir size limit"
11826
11827                         check_mds_dmesg '"has reached"' ||
11828                                 error_exit "reached message should be output"
11829
11830                         [ $has_warning = "false" ] &&
11831                                 error_exit "warning message should be output"
11832
11833                         dirsize=$(stat -c%s "$DIR/$tdir")
11834
11835                         [[ $dirsize -ge $maxsize ]] && return 0
11836                         error_exit "current dir size $dirsize, " \
11837                                    "previous limit $maxsize"
11838                 elif [ $rc -ne 0 ]; then
11839                         set_dir_limits 0 0
11840                         error_exit "return $rc received instead of expected " \
11841                                    "$EFBIG or $ENOSPC, files in dir $dirsize"
11842                 fi
11843                 nfiles=$((nfiles + 1))
11844                 dirsize=$(stat -c%s "$DIR/$tdir")
11845         done
11846
11847         set_dir_limits 0 0
11848         error "exceeded dir size limit $maxsize($MDSCOUNT) : $dirsize bytes"
11849 }
11850 run_test 129 "test directory size limit ========================"
11851
11852 OLDIFS="$IFS"
11853 cleanup_130() {
11854         trap 0
11855         IFS="$OLDIFS"
11856 }
11857
11858 test_130a() {
11859         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
11860         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
11861
11862         trap cleanup_130 EXIT RETURN
11863
11864         local fm_file=$DIR/$tfile
11865         $LFS setstripe -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
11866         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
11867                 error "dd failed for $fm_file"
11868
11869         # LU-1795: test filefrag/FIEMAP once, even if unsupported
11870         filefrag -ves $fm_file
11871         RC=$?
11872         [ "$(facet_fstype ost$(($($LFS getstripe -i $fm_file) + 1)))" = "zfs" ] &&
11873                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
11874         [ $RC != 0 ] && error "filefrag $fm_file failed"
11875
11876         filefrag_op=$(filefrag -ve -k $fm_file |
11877                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
11878         lun=$($LFS getstripe -i $fm_file)
11879
11880         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
11881         IFS=$'\n'
11882         tot_len=0
11883         for line in $filefrag_op
11884         do
11885                 frag_lun=`echo $line | cut -d: -f5`
11886                 ext_len=`echo $line | cut -d: -f4`
11887                 if (( $frag_lun != $lun )); then
11888                         cleanup_130
11889                         error "FIEMAP on 1-stripe file($fm_file) failed"
11890                         return
11891                 fi
11892                 (( tot_len += ext_len ))
11893         done
11894
11895         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
11896                 cleanup_130
11897                 error "FIEMAP on 1-stripe file($fm_file) failed;"
11898                 return
11899         fi
11900
11901         cleanup_130
11902
11903         echo "FIEMAP on single striped file succeeded"
11904 }
11905 run_test 130a "FIEMAP (1-stripe file)"
11906
11907 test_130b() {
11908         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >= 2 OSTs"
11909
11910         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
11911         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
11912
11913         trap cleanup_130 EXIT RETURN
11914
11915         local fm_file=$DIR/$tfile
11916         $LFS setstripe -S 65536 -c $OSTCOUNT $fm_file ||
11917                         error "setstripe on $fm_file"
11918         [ "$(facet_fstype ost$(($($LFS getstripe -i $fm_file) + 1)))" = "zfs" ] &&
11919                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
11920
11921         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
11922                 error "dd failed on $fm_file"
11923
11924         filefrag -ves $fm_file || error "filefrag $fm_file failed"
11925         filefrag_op=$(filefrag -ve -k $fm_file |
11926                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
11927
11928         last_lun=$(echo $filefrag_op | cut -d: -f5 |
11929                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
11930
11931         IFS=$'\n'
11932         tot_len=0
11933         num_luns=1
11934         for line in $filefrag_op
11935         do
11936                 frag_lun=$(echo $line | cut -d: -f5 |
11937                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
11938                 ext_len=$(echo $line | cut -d: -f4)
11939                 if (( $frag_lun != $last_lun )); then
11940                         if (( tot_len != 1024 )); then
11941                                 cleanup_130
11942                                 error "FIEMAP on $fm_file failed; returned " \
11943                                 "len $tot_len for OST $last_lun instead of 1024"
11944                                 return
11945                         else
11946                                 (( num_luns += 1 ))
11947                                 tot_len=0
11948                         fi
11949                 fi
11950                 (( tot_len += ext_len ))
11951                 last_lun=$frag_lun
11952         done
11953         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
11954                 cleanup_130
11955                 error "FIEMAP on $fm_file failed; returned wrong number of " \
11956                         "luns or wrong len for OST $last_lun"
11957                 return
11958         fi
11959
11960         cleanup_130
11961
11962         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
11963 }
11964 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
11965
11966 test_130c() {
11967         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
11968
11969         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
11970         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
11971
11972         trap cleanup_130 EXIT RETURN
11973
11974         local fm_file=$DIR/$tfile
11975         $LFS setstripe -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
11976         [ "$(facet_fstype ost$(($($LFS getstripe -i $fm_file) + 1)))" = "zfs" ] &&
11977                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
11978
11979         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
11980                         error "dd failed on $fm_file"
11981
11982         filefrag -ves $fm_file || error "filefrag $fm_file failed"
11983         filefrag_op=$(filefrag -ve -k $fm_file |
11984                 sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
11985
11986         last_lun=$(echo $filefrag_op | cut -d: -f5 |
11987                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
11988
11989         IFS=$'\n'
11990         tot_len=0
11991         num_luns=1
11992         for line in $filefrag_op
11993         do
11994                 frag_lun=$(echo $line | cut -d: -f5 |
11995                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
11996                 ext_len=$(echo $line | cut -d: -f4)
11997                 if (( $frag_lun != $last_lun )); then
11998                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
11999                         if (( logical != 512 )); then
12000                                 cleanup_130
12001                                 error "FIEMAP on $fm_file failed; returned " \
12002                                 "logical start for lun $logical instead of 512"
12003                                 return
12004                         fi
12005                         if (( tot_len != 512 )); then
12006                                 cleanup_130
12007                                 error "FIEMAP on $fm_file failed; returned " \
12008                                 "len $tot_len for OST $last_lun instead of 1024"
12009                                 return
12010                         else
12011                                 (( num_luns += 1 ))
12012                                 tot_len=0
12013                         fi
12014                 fi
12015                 (( tot_len += ext_len ))
12016                 last_lun=$frag_lun
12017         done
12018         if (( num_luns != 2 || tot_len != 512 )); then
12019                 cleanup_130
12020                 error "FIEMAP on $fm_file failed; returned wrong number of " \
12021                         "luns or wrong len for OST $last_lun"
12022                 return
12023         fi
12024
12025         cleanup_130
12026
12027         echo "FIEMAP on 2-stripe file with hole succeeded"
12028 }
12029 run_test 130c "FIEMAP (2-stripe file with hole)"
12030
12031 test_130d() {
12032         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
12033
12034         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
12035         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
12036
12037         trap cleanup_130 EXIT RETURN
12038
12039         local fm_file=$DIR/$tfile
12040         $LFS setstripe -S 65536 -c $OSTCOUNT $fm_file ||
12041                         error "setstripe on $fm_file"
12042         [ "$(facet_fstype ost$(($($LFS getstripe -i $fm_file) + 1)))" = "zfs" ] &&
12043                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
12044
12045         local actual_stripe_count=$($LFS getstripe -c $fm_file)
12046         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripe_count ||
12047                 error "dd failed on $fm_file"
12048
12049         filefrag -ves $fm_file || error "filefrag $fm_file failed"
12050         filefrag_op=$(filefrag -ve -k $fm_file |
12051                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
12052
12053         last_lun=$(echo $filefrag_op | cut -d: -f5 |
12054                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
12055
12056         IFS=$'\n'
12057         tot_len=0
12058         num_luns=1
12059         for line in $filefrag_op
12060         do
12061                 frag_lun=$(echo $line | cut -d: -f5 |
12062                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
12063                 ext_len=$(echo $line | cut -d: -f4)
12064                 if (( $frag_lun != $last_lun )); then
12065                         if (( tot_len != 1024 )); then
12066                                 cleanup_130
12067                                 error "FIEMAP on $fm_file failed; returned " \
12068                                 "len $tot_len for OST $last_lun instead of 1024"
12069                                 return
12070                         else
12071                                 (( num_luns += 1 ))
12072                                 tot_len=0
12073                         fi
12074                 fi
12075                 (( tot_len += ext_len ))
12076                 last_lun=$frag_lun
12077         done
12078         if (( num_luns != actual_stripe_count || tot_len != 1024 )); then
12079                 cleanup_130
12080                 error "FIEMAP on $fm_file failed; returned wrong number of " \
12081                         "luns or wrong len for OST $last_lun"
12082                 return
12083         fi
12084
12085         cleanup_130
12086
12087         echo "FIEMAP on N-stripe file succeeded"
12088 }
12089 run_test 130d "FIEMAP (N-stripe file)"
12090
12091 test_130e() {
12092         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
12093
12094         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
12095         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
12096
12097         trap cleanup_130 EXIT RETURN
12098
12099         local fm_file=$DIR/$tfile
12100         $LFS setstripe -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
12101         [ "$(facet_fstype ost$(($($LFS getstripe -i $fm_file) + 1)))" = "zfs" ] &&
12102                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
12103
12104         NUM_BLKS=512
12105         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
12106         for ((i = 0; i < $NUM_BLKS; i++))
12107         do
12108                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
12109         done
12110
12111         filefrag -ves $fm_file || error "filefrag $fm_file failed"
12112         filefrag_op=$(filefrag -ve -k $fm_file |
12113                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
12114
12115         last_lun=$(echo $filefrag_op | cut -d: -f5 |
12116                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
12117
12118         IFS=$'\n'
12119         tot_len=0
12120         num_luns=1
12121         for line in $filefrag_op
12122         do
12123                 frag_lun=$(echo $line | cut -d: -f5 |
12124                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
12125                 ext_len=$(echo $line | cut -d: -f4)
12126                 if (( $frag_lun != $last_lun )); then
12127                         if (( tot_len != $EXPECTED_LEN )); then
12128                                 cleanup_130
12129                                 error "FIEMAP on $fm_file failed; returned " \
12130                                 "len $tot_len for OST $last_lun instead " \
12131                                 "of $EXPECTED_LEN"
12132                                 return
12133                         else
12134                                 (( num_luns += 1 ))
12135                                 tot_len=0
12136                         fi
12137                 fi
12138                 (( tot_len += ext_len ))
12139                 last_lun=$frag_lun
12140         done
12141         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
12142                 cleanup_130
12143                 error "FIEMAP on $fm_file failed; returned wrong number " \
12144                         "of luns or wrong len for OST $last_lun"
12145                 return
12146         fi
12147
12148         cleanup_130
12149
12150         echo "FIEMAP with continuation calls succeeded"
12151 }
12152 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
12153
12154 test_130f() {
12155         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
12156         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
12157
12158         local fm_file=$DIR/$tfile
12159         $MULTIOP $fm_file oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T33554432c ||
12160                 error "multiop create with lov_delay_create on $fm_file"
12161
12162         filefrag -ves $fm_file || error "filefrag $fm_file failed"
12163         filefrag_extents=$(filefrag -vek $fm_file |
12164                            awk '/extents? found/ { print $2 }')
12165         if [[ "$filefrag_extents" != "0" ]]; then
12166                 error "FIEMAP on $fm_file failed; " \
12167                       "returned $filefrag_extents expected 0"
12168         fi
12169
12170         rm -f $fm_file
12171 }
12172 run_test 130f "FIEMAP (unstriped file)"
12173
12174 # Test for writev/readv
12175 test_131a() {
12176         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 ||
12177                 error "writev test failed"
12178         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 ||
12179                 error "readv failed"
12180         rm -f $DIR/$tfile
12181 }
12182 run_test 131a "test iov's crossing stripe boundary for writev/readv"
12183
12184 test_131b() {
12185         local fsize=$((524288 + 1048576 + 1572864))
12186         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 &&
12187                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
12188                         error "append writev test failed"
12189
12190         ((fsize += 1572864 + 1048576))
12191         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 &&
12192                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
12193                         error "append writev test failed"
12194         rm -f $DIR/$tfile
12195 }
12196 run_test 131b "test append writev"
12197
12198 test_131c() {
12199         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
12200         error "NOT PASS"
12201 }
12202 run_test 131c "test read/write on file w/o objects"
12203
12204 test_131d() {
12205         rwv -f $DIR/$tfile -w -n 1 1572864
12206         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
12207         if [ "$NOB" != 1572864 ]; then
12208                 error "Short read filed: read $NOB bytes instead of 1572864"
12209         fi
12210         rm -f $DIR/$tfile
12211 }
12212 run_test 131d "test short read"
12213
12214 test_131e() {
12215         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
12216         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
12217         error "read hitting hole failed"
12218         rm -f $DIR/$tfile
12219 }
12220 run_test 131e "test read hitting hole"
12221
12222 check_stats() {
12223         local facet=$1
12224         local op=$2
12225         local want=${3:-0}
12226         local res
12227
12228         case $facet in
12229         mds*) res=$(do_facet $facet \
12230                    $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$op")
12231                  ;;
12232         ost*) res=$(do_facet $facet \
12233                    $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$op")
12234                  ;;
12235         *) error "Wrong facet '$facet'" ;;
12236         esac
12237         [ "$res" ] || error "The counter for $op on $facet was not incremented"
12238         # if the argument $3 is zero, it means any stat increment is ok.
12239         if [[ $want -gt 0 ]]; then
12240                 local count=$(echo $res | awk '{ print $2 }')
12241                 [[ $count -ne $want ]] &&
12242                         error "The $op counter on $facet is $count, not $want"
12243         fi
12244 }
12245
12246 test_133a() {
12247         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12248         remote_ost_nodsh && skip "remote OST with nodsh"
12249         remote_mds_nodsh && skip "remote MDS with nodsh"
12250         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
12251                 skip_env "MDS doesn't support rename stats"
12252
12253         local testdir=$DIR/${tdir}/stats_testdir
12254
12255         mkdir -p $DIR/${tdir}
12256
12257         # clear stats.
12258         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
12259         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
12260
12261         # verify mdt stats first.
12262         mkdir ${testdir} || error "mkdir failed"
12263         check_stats $SINGLEMDS "mkdir" 1
12264         touch ${testdir}/${tfile} || error "touch failed"
12265         check_stats $SINGLEMDS "open" 1
12266         check_stats $SINGLEMDS "close" 1
12267         [ $MDS1_VERSION -ge $(version_code 2.8.54) ] && {
12268                 mknod ${testdir}/${tfile}-pipe p || error "mknod failed"
12269                 check_stats $SINGLEMDS "mknod" 2
12270         }
12271         rm -f ${testdir}/${tfile}-pipe || error "pipe remove failed"
12272         check_stats $SINGLEMDS "unlink" 1
12273         rm -f ${testdir}/${tfile} || error "file remove failed"
12274         check_stats $SINGLEMDS "unlink" 2
12275
12276         # remove working dir and check mdt stats again.
12277         rmdir ${testdir} || error "rmdir failed"
12278         check_stats $SINGLEMDS "rmdir" 1
12279
12280         local testdir1=$DIR/${tdir}/stats_testdir1
12281         mkdir -p ${testdir}
12282         mkdir -p ${testdir1}
12283         touch ${testdir1}/test1
12284         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
12285         check_stats $SINGLEMDS "crossdir_rename" 1
12286
12287         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
12288         check_stats $SINGLEMDS "samedir_rename" 1
12289
12290         rm -rf $DIR/${tdir}
12291 }
12292 run_test 133a "Verifying MDT stats ========================================"
12293
12294 test_133b() {
12295         local res
12296
12297         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12298         remote_ost_nodsh && skip "remote OST with nodsh"
12299         remote_mds_nodsh && skip "remote MDS with nodsh"
12300
12301         local testdir=$DIR/${tdir}/stats_testdir
12302
12303         mkdir -p ${testdir} || error "mkdir failed"
12304         touch ${testdir}/${tfile} || error "touch failed"
12305         cancel_lru_locks mdc
12306
12307         # clear stats.
12308         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
12309         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
12310
12311         # extra mdt stats verification.
12312         chmod 444 ${testdir}/${tfile} || error "chmod failed"
12313         check_stats $SINGLEMDS "setattr" 1
12314         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
12315         if [ $MDS1_VERSION -ne $(version_code 2.2.0) ]
12316         then            # LU-1740
12317                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
12318                 check_stats $SINGLEMDS "getattr" 1
12319         fi
12320         rm -rf $DIR/${tdir}
12321
12322         # when DNE is enabled, MDT uses STATFS RPC to ping other targets
12323         # so the check below is not reliable
12324         [ $MDSCOUNT -eq 1 ] || return 0
12325
12326         # Sleep to avoid a cached response.
12327         #define OBD_STATFS_CACHE_SECONDS 1
12328         sleep 2
12329         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
12330         do_facet ost1 $LCTL set_param obdfilter.*.exports.*.stats=clear
12331         $LFS df || error "lfs failed"
12332         check_stats $SINGLEMDS "statfs" 1
12333
12334         # check aggregated statfs (LU-10018)
12335         [ $MDS1_VERSION -lt $(version_code 2.11.54) ] &&
12336                 return 0
12337         [ $CLIENT_VERSION -lt $(version_code 2.11.54) ] &&
12338                 return 0
12339         sleep 2
12340         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
12341         do_facet ost1 $LCTL set_param obdfilter.*.exports.*.stats=clear
12342         df $DIR
12343         check_stats $SINGLEMDS "statfs" 1
12344
12345         # We want to check that the client didn't send OST_STATFS to
12346         # ost1 but the MDT also uses OST_STATFS for precreate. So some
12347         # extra care is needed here.
12348         if remote_mds; then
12349                 local nid=$($LCTL list_nids | head -1 | sed  "s/\./\\\./g")
12350                 local param="obdfilter.$FSNAME-OST0000.exports.'$nid'.stats"
12351
12352                 res=$(do_facet ost1 $LCTL get_param $param | grep statfs)
12353                 [ "$res" ] && error "OST got STATFS"
12354         fi
12355
12356         return 0
12357 }
12358 run_test 133b "Verifying extra MDT stats =================================="
12359
12360 test_133c() {
12361         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12362         remote_ost_nodsh && skip "remote OST with nodsh"
12363         remote_mds_nodsh && skip "remote MDS with nodsh"
12364
12365         local testdir=$DIR/$tdir/stats_testdir
12366
12367         test_mkdir -p $testdir
12368
12369         # verify obdfilter stats.
12370         $LFS setstripe -c 1 -i 0 $testdir/$tfile
12371         sync
12372         cancel_lru_locks osc
12373         wait_delete_completed
12374
12375         # clear stats.
12376         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
12377         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
12378
12379         dd if=/dev/zero of=$testdir/$tfile conv=notrunc bs=512k count=1 ||
12380                 error "dd failed"
12381         sync
12382         cancel_lru_locks osc
12383         check_stats ost1 "write" 1
12384
12385         dd if=$testdir/$tfile of=/dev/null bs=1k count=1 || error "dd failed"
12386         check_stats ost1 "read" 1
12387
12388         > $testdir/$tfile || error "truncate failed"
12389         check_stats ost1 "punch" 1
12390
12391         rm -f $testdir/$tfile || error "file remove failed"
12392         wait_delete_completed
12393         check_stats ost1 "destroy" 1
12394
12395         rm -rf $DIR/$tdir
12396 }
12397 run_test 133c "Verifying OST stats ========================================"
12398
12399 order_2() {
12400         local value=$1
12401         local orig=$value
12402         local order=1
12403
12404         while [ $value -ge 2 ]; do
12405                 order=$((order*2))
12406                 value=$((value/2))
12407         done
12408
12409         if [ $orig -gt $order ]; then
12410                 order=$((order*2))
12411         fi
12412         echo $order
12413 }
12414
12415 size_in_KMGT() {
12416     local value=$1
12417     local size=('K' 'M' 'G' 'T');
12418     local i=0
12419     local size_string=$value
12420
12421     while [ $value -ge 1024 ]; do
12422         if [ $i -gt 3 ]; then
12423             #T is the biggest unit we get here, if that is bigger,
12424             #just return XXXT
12425             size_string=${value}T
12426             break
12427         fi
12428         value=$((value >> 10))
12429         if [ $value -lt 1024 ]; then
12430             size_string=${value}${size[$i]}
12431             break
12432         fi
12433         i=$((i + 1))
12434     done
12435
12436     echo $size_string
12437 }
12438
12439 get_rename_size() {
12440         local size=$1
12441         local context=${2:-.}
12442         local sample=$(do_facet $SINGLEMDS $LCTL \
12443                 get_param mdt.$FSNAME-MDT0000.rename_stats |
12444                 grep -A1 $context |
12445                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
12446         echo $sample
12447 }
12448
12449 test_133d() {
12450         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12451         remote_ost_nodsh && skip "remote OST with nodsh"
12452         remote_mds_nodsh && skip "remote MDS with nodsh"
12453         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
12454                 skip_env "MDS doesn't support rename stats"
12455
12456         local testdir1=$DIR/${tdir}/stats_testdir1
12457         local testdir2=$DIR/${tdir}/stats_testdir2
12458         mkdir -p $DIR/${tdir}
12459
12460         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
12461
12462         lfs mkdir -i 0 -c 1 ${testdir1} || error "mkdir failed"
12463         lfs mkdir -i 0 -c 1 ${testdir2} || error "mkdir failed"
12464
12465         createmany -o $testdir1/test 512 || error "createmany failed"
12466
12467         # check samedir rename size
12468         mv ${testdir1}/test0 ${testdir1}/test_0
12469
12470         local testdir1_size=$(ls -l $DIR/${tdir} |
12471                 awk '/stats_testdir1/ {print $5}')
12472         local testdir2_size=$(ls -l $DIR/${tdir} |
12473                 awk '/stats_testdir2/ {print $5}')
12474
12475         testdir1_size=$(order_2 $testdir1_size)
12476         testdir2_size=$(order_2 $testdir2_size)
12477
12478         testdir1_size=$(size_in_KMGT $testdir1_size)
12479         testdir2_size=$(size_in_KMGT $testdir2_size)
12480
12481         echo "source rename dir size: ${testdir1_size}"
12482         echo "target rename dir size: ${testdir2_size}"
12483
12484         local cmd="do_facet $SINGLEMDS $LCTL "
12485         cmd+="get_param mdt.$FSNAME-MDT0000.rename_stats"
12486
12487         eval $cmd || error "$cmd failed"
12488         local samedir=$($cmd | grep 'same_dir')
12489         local same_sample=$(get_rename_size $testdir1_size)
12490         [ -z "$samedir" ] && error "samedir_rename_size count error"
12491         [[ $same_sample -eq 1 ]] ||
12492                 error "samedir_rename_size error $same_sample"
12493         echo "Check same dir rename stats success"
12494
12495         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
12496
12497         # check crossdir rename size
12498         mv ${testdir1}/test_0 ${testdir2}/test_0
12499
12500         testdir1_size=$(ls -l $DIR/${tdir} |
12501                 awk '/stats_testdir1/ {print $5}')
12502         testdir2_size=$(ls -l $DIR/${tdir} |
12503                 awk '/stats_testdir2/ {print $5}')
12504
12505         testdir1_size=$(order_2 $testdir1_size)
12506         testdir2_size=$(order_2 $testdir2_size)
12507
12508         testdir1_size=$(size_in_KMGT $testdir1_size)
12509         testdir2_size=$(size_in_KMGT $testdir2_size)
12510
12511         echo "source rename dir size: ${testdir1_size}"
12512         echo "target rename dir size: ${testdir2_size}"
12513
12514         eval $cmd || error "$cmd failed"
12515         local crossdir=$($cmd | grep 'crossdir')
12516         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
12517         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
12518         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
12519         [[ $src_sample -eq 1 ]] ||
12520                 error "crossdir_rename_size error $src_sample"
12521         [[ $tgt_sample -eq 1 ]] ||
12522                 error "crossdir_rename_size error $tgt_sample"
12523         echo "Check cross dir rename stats success"
12524         rm -rf $DIR/${tdir}
12525 }
12526 run_test 133d "Verifying rename_stats ========================================"
12527
12528 test_133e() {
12529         remote_mds_nodsh && skip "remote MDS with nodsh"
12530         remote_ost_nodsh && skip "remote OST with nodsh"
12531         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12532
12533         local testdir=$DIR/${tdir}/stats_testdir
12534         local ctr f0 f1 bs=32768 count=42 sum
12535
12536         mkdir -p ${testdir} || error "mkdir failed"
12537
12538         $LFS setstripe -c 1 -i 0 ${testdir}/${tfile}
12539
12540         for ctr in {write,read}_bytes; do
12541                 sync
12542                 cancel_lru_locks osc
12543
12544                 do_facet ost1 $LCTL set_param -n \
12545                         "obdfilter.*.exports.clear=clear"
12546
12547                 if [ $ctr = write_bytes ]; then
12548                         f0=/dev/zero
12549                         f1=${testdir}/${tfile}
12550                 else
12551                         f0=${testdir}/${tfile}
12552                         f1=/dev/null
12553                 fi
12554
12555                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
12556                         error "dd failed"
12557                 sync
12558                 cancel_lru_locks osc
12559
12560                 sum=$(do_facet ost1 $LCTL get_param \
12561                         "obdfilter.*.exports.*.stats" |
12562                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
12563                                 $1 == ctr { sum += $7 }
12564                                 END { printf("%0.0f", sum) }')
12565
12566                 if ((sum != bs * count)); then
12567                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
12568                 fi
12569         done
12570
12571         rm -rf $DIR/${tdir}
12572 }
12573 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
12574
12575 proc_regexp="/{proc,sys}/{fs,sys,kernel/debug}/{lustre,lnet}/"
12576
12577 # Some versions of find (4.5.11, 4.5.14) included in CentOS 7.3-7.5 do
12578 # not honor the -ignore_readdir_race option correctly. So we call
12579 # error_ignore() rather than error() in these cases. See LU-11152.
12580 error_133() {
12581         if (find --version; do_facet mds1 find --version) |
12582                 grep -q '\b4\.5\.1[1-4]\b'; then
12583                 error_ignore LU-11152 "$@"
12584         else
12585                 error "$@"
12586         fi
12587 }
12588
12589 test_133f() {
12590         # First without trusting modes.
12591         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
12592         echo "proc_dirs='$proc_dirs'"
12593         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
12594         find $proc_dirs -exec cat '{}' \; &> /dev/null
12595
12596         # Second verifying readability.
12597         $LCTL get_param -R '*' &> /dev/null
12598
12599         # Verifing writability with badarea_io.
12600         find $proc_dirs \
12601                 -ignore_readdir_race \
12602                 -type f \
12603                 -not -name force_lbug \
12604                 -not -name changelog_mask \
12605                 -exec badarea_io '{}' \; ||
12606                         error_133 "find $proc_dirs failed"
12607 }
12608 run_test 133f "Check reads/writes of client lustre proc files with bad area io"
12609
12610 test_133g() {
12611         remote_mds_nodsh && skip "remote MDS with nodsh"
12612         remote_ost_nodsh && skip "remote OST with nodsh"
12613
12614         local facet
12615         for facet in mds1 ost1; do
12616                 local facet_ver=$(lustre_version_code $facet)
12617                 if [ $facet_ver -ge $(version_code 2.7.65) ]; then
12618                         do_facet $facet "$LCTL get_param -R '*'" &> /dev/null
12619                 else
12620                         log "$facet: too old lustre for get_param -R"
12621                 fi
12622                 if [ $facet_ver -ge $(version_code 2.5.54) ]; then
12623                         do_facet $facet "$LCTL list_param -R '*' | grep '=' |
12624                                 tr -d= | egrep -v 'force_lbug|changelog_mask' |
12625                                 xargs badarea_io" ||
12626                                         error_133 "$facet badarea_io failed"
12627                 else
12628                         skip_noexit "$facet: too old lustre for get_param -R"
12629                 fi
12630         done
12631
12632         # remount the FS in case writes/reads /proc break the FS
12633         cleanup || error "failed to unmount"
12634         setup || error "failed to setup"
12635         true
12636 }
12637 run_test 133g "Check reads/writes of server lustre proc files with bad area io"
12638
12639 test_133h() {
12640         remote_mds_nodsh && skip "remote MDS with nodsh"
12641         remote_ost_nodsh && skip "remote OST with nodsh"
12642         [[ $MDS1_VERSION -lt $(version_code 2.9.54) ]] &&
12643                 skip "Need MDS version at least 2.9.54"
12644
12645         local facet
12646
12647         for facet in client mds1 ost1; do
12648                 local facet_proc_dirs=$(do_facet $facet \
12649                                         \\\ls -d $proc_regexp 2> /dev/null)
12650                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
12651                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
12652                 # Get the list of files that are missing the terminating newline
12653                 local missing=($(do_facet $facet \
12654                         find ${facet_proc_dirs} -type f \|              \
12655                                 while read F\; do                       \
12656                                         awk -v FS='\v' -v RS='\v\v'     \
12657                                         "'END { if(NR>0 &&              \
12658                                         \\\$NF !~ /.*\\\n\$/)           \
12659                                                 print FILENAME}'"       \
12660                                         '\$F'\;                         \
12661                                 done 2>/dev/null))
12662                 [ ${#missing[*]} -eq 0 ] ||
12663                         error "files do not end with newline: ${missing[*]}"
12664         done
12665 }
12666 run_test 133h "Proc files should end with newlines"
12667
12668 test_134a() {
12669         remote_mds_nodsh && skip "remote MDS with nodsh"
12670         [[ $MDS1_VERSION -lt $(version_code 2.7.54) ]] &&
12671                 skip "Need MDS version at least 2.7.54"
12672
12673         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
12674         cancel_lru_locks mdc
12675
12676         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
12677         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
12678         [ $unused -eq 0 ] || error "$unused locks are not cleared"
12679
12680         local nr=1000
12681         createmany -o $DIR/$tdir/f $nr ||
12682                 error "failed to create $nr files in $DIR/$tdir"
12683         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
12684
12685         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
12686         do_facet mds1 $LCTL set_param fail_loc=0x327
12687         do_facet mds1 $LCTL set_param fail_val=500
12688         touch $DIR/$tdir/m
12689
12690         echo "sleep 10 seconds ..."
12691         sleep 10
12692         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
12693
12694         do_facet mds1 $LCTL set_param fail_loc=0
12695         do_facet mds1 $LCTL set_param fail_val=0
12696         [ $lck_cnt -lt $unused ] ||
12697                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
12698
12699         rm $DIR/$tdir/m
12700         unlinkmany $DIR/$tdir/f $nr
12701 }
12702 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
12703
12704 test_134b() {
12705         remote_mds_nodsh && skip "remote MDS with nodsh"
12706         [[ $MDS1_VERSION -lt $(version_code 2.7.54) ]] &&
12707                 skip "Need MDS version at least 2.7.54"
12708
12709         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
12710         cancel_lru_locks mdc
12711
12712         local low_wm=$(do_facet mds1 $LCTL get_param -n \
12713                         ldlm.lock_reclaim_threshold_mb)
12714         # disable reclaim temporarily
12715         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
12716
12717         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
12718         do_facet mds1 $LCTL set_param fail_loc=0x328
12719         do_facet mds1 $LCTL set_param fail_val=500
12720
12721         $LCTL set_param debug=+trace
12722
12723         local nr=600
12724         createmany -o $DIR/$tdir/f $nr &
12725         local create_pid=$!
12726
12727         echo "Sleep $TIMEOUT seconds ..."
12728         sleep $TIMEOUT
12729         if ! ps -p $create_pid  > /dev/null 2>&1; then
12730                 do_facet mds1 $LCTL set_param fail_loc=0
12731                 do_facet mds1 $LCTL set_param fail_val=0
12732                 do_facet mds1 $LCTL set_param \
12733                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
12734                 error "createmany finished incorrectly!"
12735         fi
12736         do_facet mds1 $LCTL set_param fail_loc=0
12737         do_facet mds1 $LCTL set_param fail_val=0
12738         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
12739         wait $create_pid || return 1
12740
12741         unlinkmany $DIR/$tdir/f $nr
12742 }
12743 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
12744
12745 test_135() {
12746         remote_mds_nodsh && skip "remote MDS with nodsh"
12747         [[ $MDS1_VERSION -lt $(version_code 2.13.50) ]] &&
12748                 skip "Need MDS version at least 2.13.50"
12749         local fname
12750
12751         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
12752
12753 #define OBD_FAIL_PLAIN_RECORDS 0x1319
12754         #set only one record at plain llog
12755         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x1319 fail_val=1
12756
12757         #fill already existed plain llog each 64767
12758         #wrapping whole catalog
12759         createmany -o -u $DIR/$tdir/$tfile- $((64767 * 1))
12760
12761         createmany -o $DIR/$tdir/$tfile_ 64700
12762         for (( i = 0; i < 64700; i = i + 2 ))
12763         do
12764                 rm $DIR/$tdir/$tfile_$i &
12765                 rm $DIR/$tdir/$tfile_$((i + 1)) &
12766                 local pid=$!
12767                 wait $pid
12768         done
12769
12770         #waiting osp synchronization
12771         wait_delete_completed
12772 }
12773 run_test 135 "Race catalog processing"
12774
12775 test_136() {
12776         remote_mds_nodsh && skip "remote MDS with nodsh"
12777         [[ $MDS1_VERSION -lt $(version_code 2.13.50) ]] &&
12778                 skip "Need MDS version at least 2.13.50"
12779         local fname
12780
12781         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
12782         $LFS setstripe -c 1 -i 0 $DIR/$tdir || error "failed to set striping"
12783         #set only one record at plain llog
12784 #define OBD_FAIL_CATALOG_FULL_CHECK                0x131a
12785         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x131a fail_val=1
12786
12787         #fill already existed 2 plain llogs each 64767
12788         #wrapping whole catalog
12789         createmany -o -u $DIR/$tdir/$tfile- $((64767 * 1))
12790         createmany -o -u $DIR/$tdir/$tfile- $((64767 * 3 / 2))
12791         wait_delete_completed
12792
12793         createmany -o $DIR/$tdir/$tfile_ 10
12794         sleep 25
12795
12796         do_facet $SINGLEMDS $LCTL set_param fail_val=3
12797         for (( i = 0; i < 10; i = i + 3 ))
12798         do
12799                 rm $DIR/$tdir/$tfile_$i &
12800                 rm $DIR/$tdir/$tfile_$((i + 1)) &
12801                 local pid=$!
12802                 wait $pid
12803                 sleep 7
12804                 rm $DIR/$tdir/$tfile_$((i + 2)) &
12805         done
12806
12807         #waiting osp synchronization
12808         wait_delete_completed
12809 }
12810 run_test 136 "Race catalog processing 2"
12811
12812 test_140() { #bug-17379
12813         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12814
12815         test_mkdir $DIR/$tdir
12816         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
12817         cp $(which stat) . || error "Copying stat to $DIR/$tdir"
12818
12819         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
12820         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
12821         local i=0
12822         while i=$((i + 1)); do
12823                 test_mkdir $i
12824                 cd $i || error "Changing to $i"
12825                 ln -s ../stat stat || error "Creating stat symlink"
12826                 # Read the symlink until ELOOP present,
12827                 # not LBUGing the system is considered success,
12828                 # we didn't overrun the stack.
12829                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
12830                 if [ $ret -ne 0 ]; then
12831                         if [ $ret -eq 40 ]; then
12832                                 break  # -ELOOP
12833                         else
12834                                 error "Open stat symlink"
12835                                         return
12836                         fi
12837                 fi
12838         done
12839         i=$((i - 1))
12840         echo "The symlink depth = $i"
12841         [ $i -eq 5 ] || [ $i -eq 7 ] || [ $i -eq 8 ] || [ $i -eq 40 ] ||
12842                 error "Invalid symlink depth"
12843
12844         # Test recursive symlink
12845         ln -s symlink_self symlink_self
12846         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
12847         echo "open symlink_self returns $ret"
12848         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
12849 }
12850 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
12851
12852 test_150() {
12853         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12854
12855         local TF="$TMP/$tfile"
12856
12857         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
12858         cp $TF $DIR/$tfile
12859         cancel_lru_locks $OSC
12860         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
12861         remount_client $MOUNT
12862         df -P $MOUNT
12863         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
12864
12865         $TRUNCATE $TF 6000
12866         $TRUNCATE $DIR/$tfile 6000
12867         cancel_lru_locks $OSC
12868         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
12869
12870         echo "12345" >>$TF
12871         echo "12345" >>$DIR/$tfile
12872         cancel_lru_locks $OSC
12873         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
12874
12875         echo "12345" >>$TF
12876         echo "12345" >>$DIR/$tfile
12877         cancel_lru_locks $OSC
12878         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
12879
12880         rm -f $TF
12881         true
12882 }
12883 run_test 150 "truncate/append tests"
12884
12885 #LU-2902 roc_hit was not able to read all values from lproc
12886 function roc_hit_init() {
12887         local list=$(comma_list $(osts_nodes))
12888         local dir=$DIR/$tdir-check
12889         local file=$dir/$tfile
12890         local BEFORE
12891         local AFTER
12892         local idx
12893
12894         test_mkdir $dir
12895         #use setstripe to do a write to every ost
12896         for i in $(seq 0 $((OSTCOUNT-1))); do
12897                 $LFS setstripe -c 1 -i $i $dir || error "$LFS setstripe $file failed"
12898                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
12899                 idx=$(printf %04x $i)
12900                 BEFORE=$(get_osd_param $list *OST*$idx stats |
12901                         awk '$1 == "cache_access" {sum += $7}
12902                                 END { printf("%0.0f", sum) }')
12903
12904                 cancel_lru_locks osc
12905                 cat $file >/dev/null
12906
12907                 AFTER=$(get_osd_param $list *OST*$idx stats |
12908                         awk '$1 == "cache_access" {sum += $7}
12909                                 END { printf("%0.0f", sum) }')
12910
12911                 echo BEFORE:$BEFORE AFTER:$AFTER
12912                 if ! let "AFTER - BEFORE == 4"; then
12913                         rm -rf $dir
12914                         error "roc_hit is not safe to use"
12915                 fi
12916                 rm $file
12917         done
12918
12919         rm -rf $dir
12920 }
12921
12922 function roc_hit() {
12923         local list=$(comma_list $(osts_nodes))
12924         echo $(get_osd_param $list '' stats |
12925                 awk '$1 == "cache_hit" {sum += $7}
12926                         END { printf("%0.0f", sum) }')
12927 }
12928
12929 function set_cache() {
12930         local on=1
12931
12932         if [ "$2" == "off" ]; then
12933                 on=0;
12934         fi
12935         local list=$(comma_list $(osts_nodes))
12936         set_osd_param $list '' $1_cache_enable $on
12937
12938         cancel_lru_locks osc
12939 }
12940
12941 test_151() {
12942         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12943         remote_ost_nodsh && skip "remote OST with nodsh"
12944
12945         local CPAGES=3
12946         local list=$(comma_list $(osts_nodes))
12947
12948         # check whether obdfilter is cache capable at all
12949         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
12950                 skip "not cache-capable obdfilter"
12951         fi
12952
12953         # check cache is enabled on all obdfilters
12954         if get_osd_param $list '' read_cache_enable | grep 0; then
12955                 skip "oss cache is disabled"
12956         fi
12957
12958         set_osd_param $list '' writethrough_cache_enable 1
12959
12960         # check write cache is enabled on all obdfilters
12961         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
12962                 skip "oss write cache is NOT enabled"
12963         fi
12964
12965         roc_hit_init
12966
12967         #define OBD_FAIL_OBD_NO_LRU  0x609
12968         do_nodes $list $LCTL set_param fail_loc=0x609
12969
12970         # pages should be in the case right after write
12971         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
12972                 error "dd failed"
12973
12974         local BEFORE=$(roc_hit)
12975         cancel_lru_locks osc
12976         cat $DIR/$tfile >/dev/null
12977         local AFTER=$(roc_hit)
12978
12979         do_nodes $list $LCTL set_param fail_loc=0
12980
12981         if ! let "AFTER - BEFORE == CPAGES"; then
12982                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12983         fi
12984
12985         cancel_lru_locks osc
12986         # invalidates OST cache
12987         do_nodes $list "echo 1 > /proc/sys/vm/drop_caches"
12988         set_osd_param $list '' read_cache_enable 0
12989         cat $DIR/$tfile >/dev/null
12990
12991         # now data shouldn't be found in the cache
12992         BEFORE=$(roc_hit)
12993         cancel_lru_locks osc
12994         cat $DIR/$tfile >/dev/null
12995         AFTER=$(roc_hit)
12996         if let "AFTER - BEFORE != 0"; then
12997                 error "IN CACHE: before: $BEFORE, after: $AFTER"
12998         fi
12999
13000         set_osd_param $list '' read_cache_enable 1
13001         rm -f $DIR/$tfile
13002 }
13003 run_test 151 "test cache on oss and controls ==============================="
13004
13005 test_152() {
13006         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13007
13008         local TF="$TMP/$tfile"
13009
13010         # simulate ENOMEM during write
13011 #define OBD_FAIL_OST_NOMEM      0x226
13012         lctl set_param fail_loc=0x80000226
13013         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
13014         cp $TF $DIR/$tfile
13015         sync || error "sync failed"
13016         lctl set_param fail_loc=0
13017
13018         # discard client's cache
13019         cancel_lru_locks osc
13020
13021         # simulate ENOMEM during read
13022         lctl set_param fail_loc=0x80000226
13023         cmp $TF $DIR/$tfile || error "cmp failed"
13024         lctl set_param fail_loc=0
13025
13026         rm -f $TF
13027 }
13028 run_test 152 "test read/write with enomem ============================"
13029
13030 test_153() {
13031         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
13032 }
13033 run_test 153 "test if fdatasync does not crash ======================="
13034
13035 dot_lustre_fid_permission_check() {
13036         local fid=$1
13037         local ffid=$MOUNT/.lustre/fid/$fid
13038         local test_dir=$2
13039
13040         echo "stat fid $fid"
13041         stat $ffid > /dev/null || error "stat $ffid failed."
13042         echo "touch fid $fid"
13043         touch $ffid || error "touch $ffid failed."
13044         echo "write to fid $fid"
13045         cat /etc/hosts > $ffid || error "write $ffid failed."
13046         echo "read fid $fid"
13047         diff /etc/hosts $ffid || error "read $ffid failed."
13048         echo "append write to fid $fid"
13049         cat /etc/hosts >> $ffid || error "append write $ffid failed."
13050         echo "rename fid $fid"
13051         mv $ffid $test_dir/$tfile.1 &&
13052                 error "rename $ffid to $tfile.1 should fail."
13053         touch $test_dir/$tfile.1
13054         mv $test_dir/$tfile.1 $ffid &&
13055                 error "rename $tfile.1 to $ffid should fail."
13056         rm -f $test_dir/$tfile.1
13057         echo "truncate fid $fid"
13058         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
13059         echo "link fid $fid"
13060         ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
13061         if [[ $($LCTL get_param -n mdc.*-mdc-*.connect_flags) =~ acl ]]; then
13062                 echo "setfacl fid $fid"
13063                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
13064                 echo "getfacl fid $fid"
13065                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
13066         fi
13067         echo "unlink fid $fid"
13068         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
13069         echo "mknod fid $fid"
13070         mknod $ffid c 1 3 && error "mknod $ffid should fail."
13071
13072         fid=[0xf00000400:0x1:0x0]
13073         ffid=$MOUNT/.lustre/fid/$fid
13074
13075         echo "stat non-exist fid $fid"
13076         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
13077         echo "write to non-exist fid $fid"
13078         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
13079         echo "link new fid $fid"
13080         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
13081
13082         mkdir -p $test_dir/$tdir
13083         touch $test_dir/$tdir/$tfile
13084         fid=$($LFS path2fid $test_dir/$tdir)
13085         rc=$?
13086         [ $rc -ne 0 ] &&
13087                 error "error: could not get fid for $test_dir/$dir/$tfile."
13088
13089         ffid=$MOUNT/.lustre/fid/$fid
13090
13091         echo "ls $fid"
13092         ls $ffid > /dev/null || error "ls $ffid failed."
13093         echo "touch $fid/$tfile.1"
13094         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
13095
13096         echo "touch $MOUNT/.lustre/fid/$tfile"
13097         touch $MOUNT/.lustre/fid/$tfile && \
13098                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
13099
13100         echo "setxattr to $MOUNT/.lustre/fid"
13101         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
13102
13103         echo "listxattr for $MOUNT/.lustre/fid"
13104         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
13105
13106         echo "delxattr from $MOUNT/.lustre/fid"
13107         setfattr -x trusted.name1 $MOUNT/.lustre/fid
13108
13109         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
13110         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
13111                 error "touch invalid fid should fail."
13112
13113         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
13114         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
13115                 error "touch non-normal fid should fail."
13116
13117         echo "rename $tdir to $MOUNT/.lustre/fid"
13118         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
13119                 error "rename to $MOUNT/.lustre/fid should fail."
13120
13121         if [ $MDS1_VERSION -ge $(version_code 2.3.51) ]
13122         then            # LU-3547
13123                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
13124                 local new_obf_mode=777
13125
13126                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
13127                 chmod $new_obf_mode $DIR/.lustre/fid ||
13128                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
13129
13130                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
13131                 [ $obf_mode -eq $new_obf_mode ] ||
13132                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
13133
13134                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
13135                 chmod $old_obf_mode $DIR/.lustre/fid ||
13136                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
13137         fi
13138
13139         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
13140         fid=$($LFS path2fid $test_dir/$tfile-2)
13141
13142         if [ $MDS1_VERSION -ge $(version_code 2.6.50) ]
13143         then # LU-5424
13144                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
13145                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
13146                         error "create lov data thru .lustre failed"
13147         fi
13148         echo "cp /etc/passwd $test_dir/$tfile-2"
13149         cp /etc/passwd $test_dir/$tfile-2 ||
13150                 error "copy to $test_dir/$tfile-2 failed."
13151         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
13152         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
13153                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
13154
13155         rm -rf $test_dir/tfile.lnk
13156         rm -rf $test_dir/$tfile-2
13157 }
13158
13159 test_154A() {
13160         [[ $MDS1_VERSION -lt $(version_code 2.4.1) ]] &&
13161                 skip "Need MDS version at least 2.4.1"
13162
13163         local tf=$DIR/$tfile
13164         touch $tf
13165
13166         local fid=$($LFS path2fid $tf)
13167         [ -z "$fid" ] && error "path2fid unable to get $tf FID"
13168
13169         # check that we get the same pathname back
13170         local found=$($LFS fid2path $MOUNT "$fid")
13171         [ -z "$found" ] && error "fid2path unable to get '$fid' path"
13172         [ "$found" == "$tf" ] ||
13173                 error "fid2path($fid=path2fid($tf)) = $found != $tf"
13174 }
13175 run_test 154A "lfs path2fid and fid2path basic checks"
13176
13177 test_154B() {
13178         [[ $MDS1_VERSION -lt $(version_code 2.4.1) ]] &&
13179                 skip "Need MDS version at least 2.4.1"
13180
13181         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
13182         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
13183         local linkea=$($LL_DECODE_LINKEA $DIR/$tdir/$tfile | grep 'pfid')
13184         [ -z "$linkea" ] && error "decode linkea $DIR/$tdir/$tfile failed"
13185
13186         local name=$(echo $linkea | awk '/pfid/ {print $5}' | sed -e "s/'//g")
13187         local PFID=$(echo $linkea | awk '/pfid/ {print $3}' | sed -e "s/,//g")
13188
13189         # check that we get the same pathname
13190         echo "PFID: $PFID, name: $name"
13191         local FOUND=$($LFS fid2path $MOUNT "$PFID")
13192         [ -z "$FOUND" ] && error "fid2path unable to get $PFID path"
13193         [ "$FOUND/$name" != "$DIR/$tdir/$tfile" ] &&
13194                 error "ll_decode_linkea has $FOUND/$name != $DIR/$tdir/$tfile"
13195
13196         rm -rf $DIR/$tdir || error "Can not delete directory $DIR/$tdir"
13197 }
13198 run_test 154B "verify the ll_decode_linkea tool"
13199
13200 test_154a() {
13201         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13202         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
13203         [[ $MDS1_VERSION -ge $(version_code 2.2.51) ]] ||
13204                 skip "Need MDS version at least 2.2.51"
13205         [ -z "$(which setfacl)" ] && skip_env "must have setfacl tool"
13206
13207         cp /etc/hosts $DIR/$tfile
13208
13209         fid=$($LFS path2fid $DIR/$tfile)
13210         rc=$?
13211         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
13212
13213         dot_lustre_fid_permission_check "$fid" $DIR ||
13214                 error "dot lustre permission check $fid failed"
13215
13216         ls -a $MOUNT | grep "\.lustre" && error ".lustre should not be listed"
13217
13218         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
13219
13220         touch $MOUNT/.lustre/file &&
13221                 error "creation is not allowed under .lustre"
13222
13223         mkdir $MOUNT/.lustre/dir &&
13224                 error "mkdir is not allowed under .lustre"
13225
13226         rm -rf $DIR/$tfile
13227 }
13228 run_test 154a "Open-by-FID"
13229
13230 test_154b() {
13231         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13232         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
13233         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
13234         [[ $MDS1_VERSION -ge $(version_code 2.2.51) ]] ||
13235                 skip "Need MDS version at least 2.2.51"
13236
13237         local remote_dir=$DIR/$tdir/remote_dir
13238         local MDTIDX=1
13239         local rc=0
13240
13241         mkdir -p $DIR/$tdir
13242         $LFS mkdir -i $MDTIDX $remote_dir ||
13243                 error "create remote directory failed"
13244
13245         cp /etc/hosts $remote_dir/$tfile
13246
13247         fid=$($LFS path2fid $remote_dir/$tfile)
13248         rc=$?
13249         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
13250
13251         dot_lustre_fid_permission_check "$fid" $remote_dir ||
13252                 error "dot lustre permission check $fid failed"
13253         rm -rf $DIR/$tdir
13254 }
13255 run_test 154b "Open-by-FID for remote directory"
13256
13257 test_154c() {
13258         [[ $MDS1_VERSION -lt $(version_code 2.4.1) ]] &&
13259                 skip "Need MDS version at least 2.4.1"
13260
13261         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
13262         local FID1=$($LFS path2fid $DIR/$tfile.1)
13263         local FID2=$($LFS path2fid $DIR/$tfile.2)
13264         local FID3=$($LFS path2fid $DIR/$tfile.3)
13265
13266         local N=1
13267         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
13268                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
13269                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
13270                 local want=FID$N
13271                 [ "$FID" = "${!want}" ] ||
13272                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
13273                 N=$((N + 1))
13274         done
13275
13276         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
13277         do
13278                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
13279                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
13280                 N=$((N + 1))
13281         done
13282 }
13283 run_test 154c "lfs path2fid and fid2path multiple arguments"
13284
13285 test_154d() {
13286         remote_mds_nodsh && skip "remote MDS with nodsh"
13287         [[ $MDS1_VERSION -lt $(version_code 2.5.53) ]] &&
13288                 skip "Need MDS version at least 2.5.53"
13289
13290         if remote_mds; then
13291                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
13292         else
13293                 nid="0@lo"
13294         fi
13295         local proc_ofile="mdt.*.exports.'$nid'.open_files"
13296         local fd
13297         local cmd
13298
13299         rm -f $DIR/$tfile
13300         touch $DIR/$tfile
13301
13302         local fid=$($LFS path2fid $DIR/$tfile)
13303         # Open the file
13304         fd=$(free_fd)
13305         cmd="exec $fd<$DIR/$tfile"
13306         eval $cmd
13307         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
13308         echo "$fid_list" | grep "$fid"
13309         rc=$?
13310
13311         cmd="exec $fd>/dev/null"
13312         eval $cmd
13313         if [ $rc -ne 0 ]; then
13314                 error "FID $fid not found in open files list $fid_list"
13315         fi
13316 }
13317 run_test 154d "Verify open file fid"
13318
13319 test_154e()
13320 {
13321         [[ $MDS1_VERSION -lt $(version_code 2.6.50) ]] &&
13322                 skip "Need MDS version at least 2.6.50"
13323
13324         if ls -a $MOUNT | grep -q '^\.lustre$'; then
13325                 error ".lustre returned by readdir"
13326         fi
13327 }
13328 run_test 154e ".lustre is not returned by readdir"
13329
13330 test_154f() {
13331         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
13332
13333         # create parent directory on a single MDT to avoid cross-MDT hardlinks
13334         test_mkdir -p -c1 $DIR/$tdir/d
13335         # test dirs inherit from its stripe
13336         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
13337         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
13338         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
13339         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
13340         touch $DIR/f
13341
13342         # get fid of parents
13343         local FID0=$($LFS path2fid $DIR/$tdir/d)
13344         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
13345         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
13346         local FID3=$($LFS path2fid $DIR)
13347
13348         # check that path2fid --parents returns expected <parent_fid>/name
13349         # 1) test for a directory (single parent)
13350         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
13351         [ "$parent" == "$FID0/foo1" ] ||
13352                 error "expected parent: $FID0/foo1, got: $parent"
13353
13354         # 2) test for a file with nlink > 1 (multiple parents)
13355         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
13356         echo "$parent" | grep -F "$FID1/$tfile" ||
13357                 error "$FID1/$tfile not returned in parent list"
13358         echo "$parent" | grep -F "$FID2/link" ||
13359                 error "$FID2/link not returned in parent list"
13360
13361         # 3) get parent by fid
13362         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
13363         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
13364         echo "$parent" | grep -F "$FID1/$tfile" ||
13365                 error "$FID1/$tfile not returned in parent list (by fid)"
13366         echo "$parent" | grep -F "$FID2/link" ||
13367                 error "$FID2/link not returned in parent list (by fid)"
13368
13369         # 4) test for entry in root directory
13370         parent=$($LFS path2fid --parents $DIR/f)
13371         echo "$parent" | grep -F "$FID3/f" ||
13372                 error "$FID3/f not returned in parent list"
13373
13374         # 5) test it on root directory
13375         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
13376                 error "$MOUNT should not have parents"
13377
13378         # enable xattr caching and check that linkea is correctly updated
13379         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
13380         save_lustre_params client "llite.*.xattr_cache" > $save
13381         lctl set_param llite.*.xattr_cache 1
13382
13383         # 6.1) linkea update on rename
13384         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
13385
13386         # get parents by fid
13387         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
13388         # foo1 should no longer be returned in parent list
13389         echo "$parent" | grep -F "$FID1" &&
13390                 error "$FID1 should no longer be in parent list"
13391         # the new path should appear
13392         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
13393                 error "$FID2/$tfile.moved is not in parent list"
13394
13395         # 6.2) linkea update on unlink
13396         rm -f $DIR/$tdir/d/foo2/link
13397         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
13398         # foo2/link should no longer be returned in parent list
13399         echo "$parent" | grep -F "$FID2/link" &&
13400                 error "$FID2/link should no longer be in parent list"
13401         true
13402
13403         rm -f $DIR/f
13404         restore_lustre_params < $save
13405         rm -f $save
13406 }
13407 run_test 154f "get parent fids by reading link ea"
13408
13409 test_154g()
13410 {
13411         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
13412         [[ $MDS1_VERSION -ge $(version_code 2.6.92) &&
13413            $CLIENT_VERSION -gt $(version_code 2.6.99) ]] ||
13414                 skip "Need MDS version at least 2.6.92"
13415
13416         mkdir -p $DIR/$tdir
13417         llapi_fid_test -d $DIR/$tdir
13418 }
13419 run_test 154g "various llapi FID tests"
13420
13421 test_155_small_load() {
13422     local temp=$TMP/$tfile
13423     local file=$DIR/$tfile
13424
13425     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
13426         error "dd of=$temp bs=6096 count=1 failed"
13427     cp $temp $file
13428     cancel_lru_locks $OSC
13429     cmp $temp $file || error "$temp $file differ"
13430
13431     $TRUNCATE $temp 6000
13432     $TRUNCATE $file 6000
13433     cmp $temp $file || error "$temp $file differ (truncate1)"
13434
13435     echo "12345" >>$temp
13436     echo "12345" >>$file
13437     cmp $temp $file || error "$temp $file differ (append1)"
13438
13439     echo "12345" >>$temp
13440     echo "12345" >>$file
13441     cmp $temp $file || error "$temp $file differ (append2)"
13442
13443     rm -f $temp $file
13444     true
13445 }
13446
13447 test_155_big_load() {
13448         remote_ost_nodsh && skip "remote OST with nodsh"
13449
13450         local temp=$TMP/$tfile
13451         local file=$DIR/$tfile
13452
13453         free_min_max
13454         local cache_size=$(do_facet ost$((MAXI+1)) \
13455                 "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
13456         local large_file_size=$((cache_size * 2))
13457
13458         echo "OSS cache size: $cache_size KB"
13459         echo "Large file size: $large_file_size KB"
13460
13461         [ $MAXV -le $large_file_size ] &&
13462                 skip_env "max available OST size needs > $large_file_size KB"
13463
13464         $LFS setstripe $file -c 1 -i $MAXI || error "$LFS setstripe $file failed"
13465
13466         dd if=/dev/urandom of=$temp bs=$large_file_size count=1k ||
13467                 error "dd of=$temp bs=$large_file_size count=1k failed"
13468         cp $temp $file
13469         ls -lh $temp $file
13470         cancel_lru_locks osc
13471         cmp $temp $file || error "$temp $file differ"
13472
13473         rm -f $temp $file
13474         true
13475 }
13476
13477 save_writethrough() {
13478         local facets=$(get_facets OST)
13479
13480         save_lustre_params $facets "osd-*.*.writethrough_cache_enable" > $1
13481 }
13482
13483 test_155a() {
13484         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13485
13486         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
13487
13488         save_writethrough $p
13489
13490         set_cache read on
13491         set_cache writethrough on
13492         test_155_small_load
13493         restore_lustre_params < $p
13494         rm -f $p
13495 }
13496 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
13497
13498 test_155b() {
13499         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13500
13501         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
13502
13503         save_writethrough $p
13504
13505         set_cache read on
13506         set_cache writethrough off
13507         test_155_small_load
13508         restore_lustre_params < $p
13509         rm -f $p
13510 }
13511 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
13512
13513 test_155c() {
13514         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13515
13516         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
13517
13518         save_writethrough $p
13519
13520         set_cache read off
13521         set_cache writethrough on
13522         test_155_small_load
13523         restore_lustre_params < $p
13524         rm -f $p
13525 }
13526 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
13527
13528 test_155d() {
13529         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13530
13531         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
13532
13533         save_writethrough $p
13534
13535         set_cache read off
13536         set_cache writethrough off
13537         test_155_small_load
13538         restore_lustre_params < $p
13539         rm -f $p
13540 }
13541 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
13542
13543 test_155e() {
13544         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13545
13546         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
13547
13548         save_writethrough $p
13549
13550         set_cache read on
13551         set_cache writethrough on
13552         test_155_big_load
13553         restore_lustre_params < $p
13554         rm -f $p
13555 }
13556 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
13557
13558 test_155f() {
13559         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13560
13561         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
13562
13563         save_writethrough $p
13564
13565         set_cache read on
13566         set_cache writethrough off
13567         test_155_big_load
13568         restore_lustre_params < $p
13569         rm -f $p
13570 }
13571 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
13572
13573 test_155g() {
13574         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13575
13576         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
13577
13578         save_writethrough $p
13579
13580         set_cache read off
13581         set_cache writethrough on
13582         test_155_big_load
13583         restore_lustre_params < $p
13584         rm -f $p
13585 }
13586 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
13587
13588 test_155h() {
13589         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13590
13591         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
13592
13593         save_writethrough $p
13594
13595         set_cache read off
13596         set_cache writethrough off
13597         test_155_big_load
13598         restore_lustre_params < $p
13599         rm -f $p
13600 }
13601 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
13602
13603 test_156() {
13604         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13605         remote_ost_nodsh && skip "remote OST with nodsh"
13606         [ $OST1_VERSION -lt $(version_code 2.6.93) ] &&
13607                 skip "stats not implemented on old servers"
13608         [ "$ost1_FSTYPE" = "zfs" ] &&
13609                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS"
13610
13611         local CPAGES=3
13612         local BEFORE
13613         local AFTER
13614         local file="$DIR/$tfile"
13615         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
13616
13617         save_writethrough $p
13618         roc_hit_init
13619
13620         log "Turn on read and write cache"
13621         set_cache read on
13622         set_cache writethrough on
13623
13624         log "Write data and read it back."
13625         log "Read should be satisfied from the cache."
13626         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
13627         BEFORE=$(roc_hit)
13628         cancel_lru_locks osc
13629         cat $file >/dev/null
13630         AFTER=$(roc_hit)
13631         if ! let "AFTER - BEFORE == CPAGES"; then
13632                 error "NOT IN CACHE (2): before: $BEFORE, after: $AFTER"
13633         else
13634                 log "cache hits: before: $BEFORE, after: $AFTER"
13635         fi
13636
13637         log "Read again; it should be satisfied from the cache."
13638         BEFORE=$AFTER
13639         cancel_lru_locks osc
13640         cat $file >/dev/null
13641         AFTER=$(roc_hit)
13642         if ! let "AFTER - BEFORE == CPAGES"; then
13643                 error "NOT IN CACHE (3): before: $BEFORE, after: $AFTER"
13644         else
13645                 log "cache hits:: before: $BEFORE, after: $AFTER"
13646         fi
13647
13648         log "Turn off the read cache and turn on the write cache"
13649         set_cache read off
13650         set_cache writethrough on
13651
13652         log "Read again; it should be satisfied from the cache."
13653         BEFORE=$(roc_hit)
13654         cancel_lru_locks osc
13655         cat $file >/dev/null
13656         AFTER=$(roc_hit)
13657         if ! let "AFTER - BEFORE == CPAGES"; then
13658                 error "NOT IN CACHE (4): before: $BEFORE, after: $AFTER"
13659         else
13660                 log "cache hits:: before: $BEFORE, after: $AFTER"
13661         fi
13662
13663         if [ $OST1_VERSION -lt $(version_code 2.12.55) ]; then
13664                 # > 2.12.56 uses pagecache if cached
13665                 log "Read again; it should not be satisfied from the cache."
13666                 BEFORE=$AFTER
13667                 cancel_lru_locks osc
13668                 cat $file >/dev/null
13669                 AFTER=$(roc_hit)
13670                 if ! let "AFTER - BEFORE == 0"; then
13671                         error "IN CACHE (5): before: $BEFORE, after: $AFTER"
13672                 else
13673                         log "cache hits:: before: $BEFORE, after: $AFTER"
13674                 fi
13675         fi
13676
13677         log "Write data and read it back."
13678         log "Read should be satisfied from the cache."
13679         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
13680         BEFORE=$(roc_hit)
13681         cancel_lru_locks osc
13682         cat $file >/dev/null
13683         AFTER=$(roc_hit)
13684         if ! let "AFTER - BEFORE == CPAGES"; then
13685                 error "NOT IN CACHE (6): before: $BEFORE, after: $AFTER"
13686         else
13687                 log "cache hits:: before: $BEFORE, after: $AFTER"
13688         fi
13689
13690         if [ $OST1_VERSION -lt $(version_code 2.12.55) ]; then
13691                 # > 2.12.56 uses pagecache if cached
13692                 log "Read again; it should not be satisfied from the cache."
13693                 BEFORE=$AFTER
13694                 cancel_lru_locks osc
13695                 cat $file >/dev/null
13696                 AFTER=$(roc_hit)
13697                 if ! let "AFTER - BEFORE == 0"; then
13698                         error "IN CACHE (7): before: $BEFORE, after: $AFTER"
13699                 else
13700                         log "cache hits:: before: $BEFORE, after: $AFTER"
13701                 fi
13702         fi
13703
13704         log "Turn off read and write cache"
13705         set_cache read off
13706         set_cache writethrough off
13707
13708         log "Write data and read it back"
13709         log "It should not be satisfied from the cache."
13710         rm -f $file
13711         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
13712         cancel_lru_locks osc
13713         BEFORE=$(roc_hit)
13714         cat $file >/dev/null
13715         AFTER=$(roc_hit)
13716         if ! let "AFTER - BEFORE == 0"; then
13717                 error_ignore bz20762 "IN CACHE (8):before:$BEFORE,after:$AFTER"
13718         else
13719                 log "cache hits:: before: $BEFORE, after: $AFTER"
13720         fi
13721
13722         log "Turn on the read cache and turn off the write cache"
13723         set_cache read on
13724         set_cache writethrough off
13725
13726         log "Write data and read it back"
13727         log "It should not be satisfied from the cache."
13728         rm -f $file
13729         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
13730         BEFORE=$(roc_hit)
13731         cancel_lru_locks osc
13732         cat $file >/dev/null
13733         AFTER=$(roc_hit)
13734         if ! let "AFTER - BEFORE == 0"; then
13735                 error_ignore bz20762 "IN CACHE (9):before:$BEFORE,after:$AFTER"
13736         else
13737                 log "cache hits:: before: $BEFORE, after: $AFTER"
13738         fi
13739
13740         log "Read again; it should be satisfied from the cache."
13741         BEFORE=$(roc_hit)
13742         cancel_lru_locks osc
13743         cat $file >/dev/null
13744         AFTER=$(roc_hit)
13745         if ! let "AFTER - BEFORE == CPAGES"; then
13746                 error "NOT IN CACHE (1): before: $BEFORE, after: $AFTER"
13747         else
13748                 log "cache hits:: before: $BEFORE, after: $AFTER"
13749         fi
13750
13751         restore_lustre_params < $p
13752         rm -f $p $file
13753 }
13754 run_test 156 "Verification of tunables"
13755
13756 test_160a() {
13757         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13758         remote_mds_nodsh && skip "remote MDS with nodsh"
13759         [ $MDS1_VERSION -ge $(version_code 2.2.0) ] ||
13760                 skip "Need MDS version at least 2.2.0"
13761
13762         changelog_register || error "changelog_register failed"
13763         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
13764         changelog_users $SINGLEMDS | grep -q $cl_user ||
13765                 error "User $cl_user not found in changelog_users"
13766
13767         # change something
13768         test_mkdir -p $DIR/$tdir/pics/2008/zachy
13769         changelog_clear 0 || error "changelog_clear failed"
13770         touch $DIR/$tdir/pics/2008/zachy/$tfile                 # open 1
13771         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg       # open 2
13772         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
13773         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
13774         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
13775         rm $DIR/$tdir/pics/desktop.jpg
13776
13777         changelog_dump | tail -10
13778
13779         echo "verifying changelog mask"
13780         changelog_chmask "-MKDIR"
13781         changelog_chmask "-CLOSE"
13782
13783         test_mkdir -p $DIR/$tdir/pics/zach/sofia                # not logged
13784         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # not logged
13785
13786         changelog_chmask "+MKDIR"
13787         changelog_chmask "+CLOSE"
13788
13789         test_mkdir -p $DIR/$tdir/pics/2008/sofia                # mkdir 1
13790         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # open 3
13791
13792         changelog_dump | tail -10
13793         MKDIRS=$(changelog_dump | grep -c "MKDIR")
13794         CLOSES=$(changelog_dump | grep -c "CLOSE")
13795         [ $MKDIRS -eq 1 ] || error "MKDIR changelog mask count $MKDIRS != 1"
13796         [ $CLOSES -eq 3 ] || error "CLOSE changelog mask count $CLOSES != 3"
13797
13798         # verify contents
13799         echo "verifying target fid"
13800         local fidc=$(changelog_extract_field "CREAT" "$tfile" "t=")
13801         local fidf=$($LFS path2fid $DIR/$tdir/pics/zach/$tfile)
13802         [ "$fidc" == "$fidf" ] ||
13803                 error "changelog '$tfile' fid $fidc != file fid $fidf"
13804         echo "verifying parent fid"
13805         # The FID returned from the Changelog may be the directory shard on
13806         # a different MDT, and not the FID returned by path2fid on the parent.
13807         # Instead of comparing FIDs, verify that fid2path(fidp) is correct,
13808         # since this is what will matter when recreating this file in the tree.
13809         local fidp=$(changelog_extract_field "CREAT" "$tfile" "p=")
13810         local pathp=$($LFS fid2path $MOUNT "$fidp")
13811         [ "${pathp%/}" == "$DIR/$tdir/pics/zach" ] ||
13812                 error "changelog fid2path($fidc) $pathp != $DIR/$tdir/pics/zach"
13813
13814         echo "getting records for $cl_user"
13815         changelog_users $SINGLEMDS
13816         local user_rec1=$(changelog_user_rec $SINGLEMDS $cl_user)
13817         local nclr=3
13818         __changelog_clear $SINGLEMDS $cl_user +$nclr ||
13819                 error "changelog_clear failed"
13820         local user_rec2=$(changelog_user_rec $SINGLEMDS $cl_user)
13821         echo "verifying user clear: $user_rec1 + $nclr == $user_rec2"
13822         [ $user_rec2 == $((user_rec1 + nclr)) ] ||
13823                 error "user index expect $user_rec1 + $nclr != $user_rec2"
13824
13825         local min0_rec=$(changelog_users $SINGLEMDS |
13826                 awk 'min == "" || $2 < min { min = $2 }; END { print min }')
13827         local first_rec=$($LFS changelog $(facet_svc $SINGLEMDS) |
13828                           awk '{ print $1; exit; }')
13829
13830         changelog_dump | tail -n 5
13831         echo "verifying user min purge: $min0_rec + 1 == $first_rec"
13832         [ $first_rec == $((min0_rec + 1)) ] ||
13833                 error "first index should be $min0_rec + 1 not $first_rec"
13834
13835         # LU-3446 changelog index reset on MDT restart
13836         local cur_rec1=$(changelog_users $SINGLEMDS |
13837                          awk '/^current.index:/ { print $NF }')
13838         changelog_clear 0 ||
13839                 error "clear all changelog records for $cl_user failed"
13840         stop $SINGLEMDS || error "Fail to stop $SINGLEMDS"
13841         start $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) $MDS_MOUNT_OPTS ||
13842                 error "Fail to start $SINGLEMDS"
13843         local cur_rec2=$(changelog_users $SINGLEMDS |
13844                          awk '/^current.index:/ { print $NF }')
13845         echo "verifying index survives MDT restart: $cur_rec1 == $cur_rec2"
13846         [ $cur_rec1 == $cur_rec2 ] ||
13847                 error "current index should be $cur_rec1 not $cur_rec2"
13848
13849         echo "verifying users from this test are deregistered"
13850         changelog_deregister || error "changelog_deregister failed"
13851         changelog_users $SINGLEMDS | grep -q $cl_user &&
13852                 error "User '$cl_user' still in changelog_users"
13853
13854         # lctl get_param -n mdd.*.changelog_users
13855         # current index: 144
13856         # ID    index (idle seconds)
13857         # cl3   144 (2)
13858         if ! changelog_users $SINGLEMDS | grep "^cl"; then
13859                 # this is the normal case where all users were deregistered
13860                 # make sure no new records are added when no users are present
13861                 local last_rec1=$(changelog_users $SINGLEMDS |
13862                                   awk '/^current.index:/ { print $NF }')
13863                 touch $DIR/$tdir/chloe
13864                 local last_rec2=$(changelog_users $SINGLEMDS |
13865                                   awk '/^current.index:/ { print $NF }')
13866                 echo "verify changelogs are off: $last_rec1 == $last_rec2"
13867                 [ $last_rec1 == $last_rec2 ] || error "changelogs not off"
13868         else
13869                 # any changelog users must be leftovers from a previous test
13870                 changelog_users $SINGLEMDS
13871                 echo "other changelog users; can't verify off"
13872         fi
13873 }
13874 run_test 160a "changelog sanity"
13875
13876 test_160b() { # LU-3587
13877         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13878         remote_mds_nodsh && skip "remote MDS with nodsh"
13879         [ $MDS1_VERSION -ge $(version_code 2.2.0) ] ||
13880                 skip "Need MDS version at least 2.2.0"
13881
13882         changelog_register || error "changelog_register failed"
13883         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
13884         changelog_users $SINGLEMDS | grep -q $cl_user ||
13885                 error "User '$cl_user' not found in changelog_users"
13886
13887         local longname1=$(str_repeat a 255)
13888         local longname2=$(str_repeat b 255)
13889
13890         cd $DIR
13891         echo "creating very long named file"
13892         touch $longname1 || error "create of '$longname1' failed"
13893         echo "renaming very long named file"
13894         mv $longname1 $longname2
13895
13896         changelog_dump | grep RENME | tail -n 5
13897         rm -f $longname2
13898 }
13899 run_test 160b "Verify that very long rename doesn't crash in changelog"
13900
13901 test_160c() {
13902         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13903         remote_mds_nodsh && skip "remote MDS with nodsh"
13904
13905         [[ $MDS1_VERSION -gt $(version_code 2.5.57) ]] ||
13906                 [[ $MDS1_VERSION -gt $(version_code 2.5.1) &&
13907                    $MDS1_VERSION -lt $(version_code 2.5.50) ]] ||
13908                 skip "Need MDS version at least 2.5.58 or 2.5.2+"
13909
13910         local rc=0
13911
13912         # Registration step
13913         changelog_register || error "changelog_register failed"
13914
13915         rm -rf $DIR/$tdir
13916         mkdir -p $DIR/$tdir
13917         $MCREATE $DIR/$tdir/foo_160c
13918         changelog_chmask "-TRUNC"
13919         $TRUNCATE $DIR/$tdir/foo_160c 200
13920         changelog_chmask "+TRUNC"
13921         $TRUNCATE $DIR/$tdir/foo_160c 199
13922         changelog_dump | tail -n 5
13923         local truncs=$(changelog_dump | tail -n 5 | grep -c TRUNC)
13924         [ $truncs -eq 1 ] || error "TRUNC changelog mask count $truncs != 1"
13925 }
13926 run_test 160c "verify that changelog log catch the truncate event"
13927
13928 test_160d() {
13929         remote_mds_nodsh && skip "remote MDS with nodsh"
13930         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
13931         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13932         [[ $MDS1_VERSION -ge $(version_code 2.7.60) ]] ||
13933                 skip "Need MDS version at least 2.7.60"
13934
13935         # Registration step
13936         changelog_register || error "changelog_register failed"
13937
13938         mkdir -p $DIR/$tdir/migrate_dir
13939         changelog_clear 0 || error "changelog_clear failed"
13940
13941         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
13942         changelog_dump | tail -n 5
13943         local migrates=$(changelog_dump | grep -c "MIGRT")
13944         [ $migrates -eq 1 ] || error "MIGRATE changelog count $migrates != 1"
13945 }
13946 run_test 160d "verify that changelog log catch the migrate event"
13947
13948 test_160e() {
13949         remote_mds_nodsh && skip "remote MDS with nodsh"
13950
13951         # Create a user
13952         changelog_register || error "changelog_register failed"
13953
13954         # Delete a future user (expect fail)
13955         local MDT0=$(facet_svc $SINGLEMDS)
13956         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister "cl77"
13957         local rc=$?
13958
13959         if [ $rc -eq 0 ]; then
13960                 error "Deleted non-existant user cl77"
13961         elif [ $rc -ne 2 ]; then
13962                 error "changelog_deregister failed with $rc, expect 2 (ENOENT)"
13963         fi
13964
13965         # Clear to a bad index (1 billion should be safe)
13966         $LFS changelog_clear $MDT0 "${CL_USERS[$SINGLEMDS]%% *}" 1000000000
13967         rc=$?
13968
13969         if [ $rc -eq 0 ]; then
13970                 error "Successfully cleared to invalid CL index"
13971         elif [ $rc -ne 22 ]; then
13972                 error "changelog_clear failed with $rc, expected 22 (EINVAL)"
13973         fi
13974 }
13975 run_test 160e "changelog negative testing (should return errors)"
13976
13977 test_160f() {
13978         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13979         [[ $MDS1_VERSION -ge $(version_code 2.10.56) ]] ||
13980                 skip "Need MDS version at least 2.10.56"
13981
13982         local mdts=$(comma_list $(mdts_nodes))
13983
13984         # Create a user
13985         changelog_register || error "first changelog_register failed"
13986         changelog_register || error "second changelog_register failed"
13987         local cl_users
13988         declare -A cl_user1
13989         declare -A cl_user2
13990         local user_rec1
13991         local user_rec2
13992         local i
13993
13994         # generate some changelog records to accumulate on each MDT
13995         # use fnv1a because created files should be evenly distributed
13996         test_mkdir -c $MDSCOUNT -H fnv_1a_64 $DIR/$tdir ||
13997                 error "test_mkdir $tdir failed"
13998         log "$(date +%s): creating first files"
13999         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
14000                 error "create $DIR/$tdir/$tfile failed"
14001
14002         # check changelogs have been generated
14003         local start=$SECONDS
14004         local idle_time=$((MDSCOUNT * 5 + 5))
14005         local nbcl=$(changelog_dump | wc -l)
14006         [[ $nbcl -eq 0 ]] && error "no changelogs found"
14007
14008         for param in "changelog_max_idle_time=$idle_time" \
14009                      "changelog_gc=1" \
14010                      "changelog_min_gc_interval=2" \
14011                      "changelog_min_free_cat_entries=3"; do
14012                 local MDT0=$(facet_svc $SINGLEMDS)
14013                 local var="${param%=*}"
14014                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
14015
14016                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
14017                 do_nodes $mdts $LCTL set_param mdd.*.$param
14018         done
14019
14020         # force cl_user2 to be idle (1st part), but also cancel the
14021         # cl_user1 records so that it is not evicted later in the test.
14022         local sleep1=$((idle_time / 2))
14023         echo "$(date +%s): sleep1 $sleep1/${idle_time}s"
14024         sleep $sleep1
14025
14026         # simulate changelog catalog almost full
14027         #define OBD_FAIL_CAT_FREE_RECORDS       0x1313
14028         do_nodes $mdts $LCTL set_param fail_loc=0x1313 fail_val=3
14029
14030         for i in $(seq $MDSCOUNT); do
14031                 cl_users=(${CL_USERS[mds$i]})
14032                 cl_user1[mds$i]="${cl_users[0]}"
14033                 cl_user2[mds$i]="${cl_users[1]}"
14034
14035                 [ -n "${cl_user1[mds$i]}" ] ||
14036                         error "mds$i: no user registered"
14037                 [ -n "${cl_user2[mds$i]}" ] ||
14038                         error "mds$i: only ${cl_user2[mds$i]} is registered"
14039
14040                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
14041                 [ -n "$user_rec1" ] ||
14042                         error "mds$i: User ${cl_user1[mds$i]} not registered"
14043                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
14044                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
14045                 [ -n "$user_rec2" ] ||
14046                         error "mds$i: User ${cl_user1[mds$i]} not registered"
14047                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
14048                      "$user_rec1 + 2 == $user_rec2"
14049                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
14050                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
14051                               "$user_rec1 + 2, but is $user_rec2"
14052                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
14053                 [ -n "$user_rec2" ] ||
14054                         error "mds$i: User ${cl_user2[mds$i]} not registered"
14055                 [ $user_rec1 == $user_rec2 ] ||
14056                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
14057                               "$user_rec1, but is $user_rec2"
14058         done
14059
14060         # force cl_user2 idle (2nd part) to just exceed changelog_max_idle_time
14061         local sleep2=$((idle_time - (SECONDS - start) + 1))
14062         echo "$(date +%s): sleep2 $sleep2/${idle_time}s"
14063         sleep $sleep2
14064
14065         # Generate one more changelog to trigger GC at fail_loc for cl_user2.
14066         # cl_user1 should be OK because it recently processed records.
14067         echo "$(date +%s): creating $((MDSCOUNT * 2)) files"
14068         createmany -m $DIR/$tdir/${tfile}b $((MDSCOUNT * 2)) ||
14069                 error "create $DIR/$tdir/${tfile}b failed"
14070
14071         # ensure gc thread is done
14072         for i in $(mdts_nodes); do
14073                 wait_update $i \
14074                         "ps -e -o comm= | grep chlg_gc_thread" "" 20 ||
14075                         error "$i: GC-thread not done"
14076         done
14077
14078         local first_rec
14079         for i in $(seq $MDSCOUNT); do
14080                 # check cl_user1 still registered
14081                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
14082                         error "mds$i: User ${cl_user1[mds$i]} not registered"
14083                 # check cl_user2 unregistered
14084                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
14085                         error "mds$i: User ${cl_user2[mds$i]} still registered"
14086
14087                 # check changelogs are present and starting at $user_rec1 + 1
14088                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
14089                 [ -n "$user_rec1" ] ||
14090                         error "mds$i: User ${cl_user1[mds$i]} not registered"
14091                 first_rec=$($LFS changelog $(facet_svc mds$i) |
14092                             awk '{ print $1; exit; }')
14093
14094                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
14095                 [ $((user_rec1 + 1)) == $first_rec ] ||
14096                         error "mds$i: first index should be $user_rec1 + 1, " \
14097                               "but is $first_rec"
14098         done
14099 }
14100 run_test 160f "changelog garbage collect (timestamped users)"
14101
14102 test_160g() {
14103         remote_mds_nodsh && skip "remote MDS with nodsh"
14104         [[ $MDS1_VERSION -ge $(version_code 2.10.56) ]] ||
14105                 skip "Need MDS version at least 2.10.56"
14106
14107         local mdts=$(comma_list $(mdts_nodes))
14108
14109         #define OBD_FAIL_TIME_IN_CHLOG_USER     0x1314
14110         do_nodes $mdts $LCTL set_param fail_loc=0x1314
14111
14112         # Create a user
14113         changelog_register || error "first changelog_register failed"
14114         changelog_register || error "second changelog_register failed"
14115         local cl_users
14116         declare -A cl_user1
14117         declare -A cl_user2
14118         local user_rec1
14119         local user_rec2
14120         local i
14121
14122         # generate some changelog records to accumulate on each MDT
14123         # use fnv1a because created files should be evenly distributed
14124         test_mkdir -c $MDSCOUNT -H fnv_1a_64 $DIR/$tdir ||
14125                 error "mkdir $tdir failed"
14126         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
14127                 error "create $DIR/$tdir/$tfile failed"
14128
14129         # check changelogs have been generated
14130         local nbcl=$(changelog_dump | wc -l)
14131         [[ $nbcl -eq 0 ]] && error "no changelogs found"
14132
14133         # reduce the max_idle_indexes value to make sure we exceed it
14134         max_ndx=$((nbcl / 2 - 1))
14135
14136         for param in "changelog_max_idle_indexes=$max_ndx" \
14137                      "changelog_gc=1" \
14138                      "changelog_min_gc_interval=2" \
14139                      "changelog_min_free_cat_entries=3"; do
14140                 local MDT0=$(facet_svc $SINGLEMDS)
14141                 local var="${param%=*}"
14142                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
14143
14144                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
14145                 do_nodes $mdts $LCTL set_param mdd.*.$param ||
14146                         error "unable to set mdd.*.$param"
14147         done
14148
14149         # simulate changelog catalog almost full
14150         #define OBD_FAIL_CAT_FREE_RECORDS       0x1313
14151         do_nodes $mdts $LCTL set_param fail_loc=0x1313 fail_val=3
14152
14153         for i in $(seq $MDSCOUNT); do
14154                 cl_users=(${CL_USERS[mds$i]})
14155                 cl_user1[mds$i]="${cl_users[0]}"
14156                 cl_user2[mds$i]="${cl_users[1]}"
14157
14158                 [ -n "${cl_user1[mds$i]}" ] ||
14159                         error "mds$i: no user registered"
14160                 [ -n "${cl_user2[mds$i]}" ] ||
14161                         error "mds$i: only ${cl_user1[mds$i]} is registered"
14162
14163                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
14164                 [ -n "$user_rec1" ] ||
14165                         error "mds$i: User ${cl_user1[mds$i]} not registered"
14166                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
14167                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
14168                 [ -n "$user_rec2" ] ||
14169                         error "mds$i: User ${cl_user1[mds$i]} not registered"
14170                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
14171                      "$user_rec1 + 2 == $user_rec2"
14172                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
14173                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
14174                               "$user_rec1 + 2, but is $user_rec2"
14175                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
14176                 [ -n "$user_rec2" ] ||
14177                         error "mds$i: User ${cl_user2[mds$i]} not registered"
14178                 [ $user_rec1 == $user_rec2 ] ||
14179                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
14180                               "$user_rec1, but is $user_rec2"
14181         done
14182
14183         # ensure we are past the previous changelog_min_gc_interval set above
14184         sleep 2
14185
14186         # generate one more changelog to trigger fail_loc
14187         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
14188                 error "create $DIR/$tdir/${tfile}bis failed"
14189
14190         # ensure gc thread is done
14191         for i in $(mdts_nodes); do
14192                 wait_update $i \
14193                         "ps -e -o comm= | grep chlg_gc_thread" "" 20 ||
14194                         error "$i: GC-thread not done"
14195         done
14196
14197         local first_rec
14198         for i in $(seq $MDSCOUNT); do
14199                 # check cl_user1 still registered
14200                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
14201                         error "mds$i: User ${cl_user1[mds$i]} not registered"
14202                 # check cl_user2 unregistered
14203                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
14204                         error "mds$i: User ${cl_user2[mds$i]} still registered"
14205
14206                 # check changelogs are present and starting at $user_rec1 + 1
14207                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
14208                 [ -n "$user_rec1" ] ||
14209                         error "mds$i: User ${cl_user1[mds$i]} not registered"
14210                 first_rec=$($LFS changelog $(facet_svc mds$i) |
14211                             awk '{ print $1; exit; }')
14212
14213                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
14214                 [ $((user_rec1 + 1)) == $first_rec ] ||
14215                         error "mds$i: first index should be $user_rec1 + 1, " \
14216                               "but is $first_rec"
14217         done
14218 }
14219 run_test 160g "changelog garbage collect (old users)"
14220
14221 test_160h() {
14222         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14223         [[ $MDS1_VERSION -ge $(version_code 2.10.56) ]] ||
14224                 skip "Need MDS version at least 2.10.56"
14225
14226         local mdts=$(comma_list $(mdts_nodes))
14227
14228         # Create a user
14229         changelog_register || error "first changelog_register failed"
14230         changelog_register || error "second changelog_register failed"
14231         local cl_users
14232         declare -A cl_user1
14233         declare -A cl_user2
14234         local user_rec1
14235         local user_rec2
14236         local i
14237
14238         # generate some changelog records to accumulate on each MDT
14239         # use fnv1a because created files should be evenly distributed
14240         test_mkdir -c $MDSCOUNT -H fnv_1a_64 $DIR/$tdir ||
14241                 error "test_mkdir $tdir failed"
14242         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
14243                 error "create $DIR/$tdir/$tfile failed"
14244
14245         # check changelogs have been generated
14246         local nbcl=$(changelog_dump | wc -l)
14247         [[ $nbcl -eq 0 ]] && error "no changelogs found"
14248
14249         for param in "changelog_max_idle_time=10" \
14250                      "changelog_gc=1" \
14251                      "changelog_min_gc_interval=2"; do
14252                 local MDT0=$(facet_svc $SINGLEMDS)
14253                 local var="${param%=*}"
14254                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
14255
14256                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
14257                 do_nodes $mdts $LCTL set_param mdd.*.$param
14258         done
14259
14260         # force cl_user2 to be idle (1st part)
14261         sleep 9
14262
14263         for i in $(seq $MDSCOUNT); do
14264                 cl_users=(${CL_USERS[mds$i]})
14265                 cl_user1[mds$i]="${cl_users[0]}"
14266                 cl_user2[mds$i]="${cl_users[1]}"
14267
14268                 [ -n "${cl_user1[mds$i]}" ] ||
14269                         error "mds$i: no user registered"
14270                 [ -n "${cl_user2[mds$i]}" ] ||
14271                         error "mds$i: only ${cl_user2[mds$i]} is registered"
14272
14273                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
14274                 [ -n "$user_rec1" ] ||
14275                         error "mds$i: User ${cl_user1[mds$i]} not registered"
14276                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
14277                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
14278                 [ -n "$user_rec2" ] ||
14279                         error "mds$i: User ${cl_user1[mds$i]} not registered"
14280                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
14281                      "$user_rec1 + 2 == $user_rec2"
14282                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
14283                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
14284                               "$user_rec1 + 2, but is $user_rec2"
14285                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
14286                 [ -n "$user_rec2" ] ||
14287                         error "mds$i: User ${cl_user2[mds$i]} not registered"
14288                 [ $user_rec1 == $user_rec2 ] ||
14289                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
14290                               "$user_rec1, but is $user_rec2"
14291         done
14292
14293         # force cl_user2 to be idle (2nd part) and to reach
14294         # changelog_max_idle_time
14295         sleep 2
14296
14297         # force each GC-thread start and block then
14298         # one per MDT/MDD, set fail_val accordingly
14299         #define OBD_FAIL_FORCE_GC_THREAD 0x1316
14300         do_nodes $mdts $LCTL set_param fail_loc=0x1316
14301
14302         # generate more changelogs to trigger fail_loc
14303         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
14304                 error "create $DIR/$tdir/${tfile}bis failed"
14305
14306         # stop MDT to stop GC-thread, should be done in back-ground as it will
14307         # block waiting for the thread to be released and exit
14308         declare -A stop_pids
14309         for i in $(seq $MDSCOUNT); do
14310                 stop mds$i &
14311                 stop_pids[mds$i]=$!
14312         done
14313
14314         for i in $(mdts_nodes); do
14315                 local facet
14316                 local nb=0
14317                 local facets=$(facets_up_on_host $i)
14318
14319                 for facet in ${facets//,/ }; do
14320                         if [[ $facet == mds* ]]; then
14321                                 nb=$((nb + 1))
14322                         fi
14323                 done
14324                 # ensure each MDS's gc threads are still present and all in "R"
14325                 # state (OBD_FAIL_FORCE_GC_THREAD effect!)
14326                 [[ $(do_node $i pgrep chlg_gc_thread | wc -l) -eq $nb ]] ||
14327                         error "$i: expected $nb GC-thread"
14328                 wait_update $i \
14329                         "ps -C chlg_gc_thread -o state --no-headers | uniq" \
14330                         "R" 20 ||
14331                         error "$i: GC-thread not found in R-state"
14332                 # check umounts of each MDT on MDS have reached kthread_stop()
14333                 [[ $(do_node $i pgrep umount | wc -l) -eq $nb ]] ||
14334                         error "$i: expected $nb umount"
14335                 wait_update $i \
14336                         "ps -C umount -o state --no-headers | uniq" "D" 20 ||
14337                         error "$i: umount not found in D-state"
14338         done
14339
14340         # release all GC-threads
14341         do_nodes $mdts $LCTL set_param fail_loc=0
14342
14343         # wait for MDT stop to complete
14344         for i in $(seq $MDSCOUNT); do
14345                 wait ${stop_pids[mds$i]} || error "mds$i: stop failed"
14346         done
14347
14348         # XXX
14349         # may try to check if any orphan changelog records are present
14350         # via ldiskfs/zfs and llog_reader...
14351
14352         # re-start/mount MDTs
14353         for i in $(seq $MDSCOUNT); do
14354                 start mds$i $(mdsdevname $i) $MDS_MOUNT_OPTS ||
14355                         error "Fail to start mds$i"
14356         done
14357
14358         local first_rec
14359         for i in $(seq $MDSCOUNT); do
14360                 # check cl_user1 still registered
14361                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
14362                         error "mds$i: User ${cl_user1[mds$i]} not registered"
14363                 # check cl_user2 unregistered
14364                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
14365                         error "mds$i: User ${cl_user2[mds$i]} still registered"
14366
14367                 # check changelogs are present and starting at $user_rec1 + 1
14368                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
14369                 [ -n "$user_rec1" ] ||
14370                         error "mds$i: User ${cl_user1[mds$i]} not registered"
14371                 first_rec=$($LFS changelog $(facet_svc mds$i) |
14372                             awk '{ print $1; exit; }')
14373
14374                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
14375                 [ $((user_rec1 + 1)) == $first_rec ] ||
14376                         error "mds$i: first index should be $user_rec1 + 1, " \
14377                               "but is $first_rec"
14378         done
14379 }
14380 run_test 160h "changelog gc thread stop upon umount, orphan records delete " \
14381               "during mount"
14382
14383 test_160i() {
14384
14385         local mdts=$(comma_list $(mdts_nodes))
14386
14387         changelog_register || error "first changelog_register failed"
14388
14389         # generate some changelog records to accumulate on each MDT
14390         # use fnv1a because created files should be evenly distributed
14391         test_mkdir -c $MDSCOUNT -H fnv_1a_64 $DIR/$tdir ||
14392                 error "mkdir $tdir failed"
14393         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
14394                 error "create $DIR/$tdir/$tfile failed"
14395
14396         # check changelogs have been generated
14397         local nbcl=$(changelog_dump | wc -l)
14398         [[ $nbcl -eq 0 ]] && error "no changelogs found"
14399
14400         # simulate race between register and unregister
14401         # XXX as fail_loc is set per-MDS, with DNE configs the race
14402         # simulation will only occur for one MDT per MDS and for the
14403         # others the normal race scenario will take place
14404         #define CFS_FAIL_CHLOG_USER_REG_UNREG_RACE          0x1315
14405         do_nodes $mdts $LCTL set_param fail_loc=0x10001315
14406         do_nodes $mdts $LCTL set_param fail_val=1
14407
14408         # unregister 1st user
14409         changelog_deregister &
14410         local pid1=$!
14411         # wait some time for deregister work to reach race rdv
14412         sleep 2
14413         # register 2nd user
14414         changelog_register || error "2nd user register failed"
14415
14416         wait $pid1 || error "1st user deregister failed"
14417
14418         local i
14419         local last_rec
14420         declare -A LAST_REC
14421         for i in $(seq $MDSCOUNT); do
14422                 if changelog_users mds$i | grep "^cl"; then
14423                         # make sure new records are added with one user present
14424                         LAST_REC[mds$i]=$(changelog_users $SINGLEMDS |
14425                                           awk '/^current.index:/ { print $NF }')
14426                 else
14427                         error "mds$i has no user registered"
14428                 fi
14429         done
14430
14431         # generate more changelog records to accumulate on each MDT
14432         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
14433                 error "create $DIR/$tdir/${tfile}bis failed"
14434
14435         for i in $(seq $MDSCOUNT); do
14436                 last_rec=$(changelog_users $SINGLEMDS |
14437                            awk '/^current.index:/ { print $NF }')
14438                 echo "verify changelogs are on: $last_rec != ${LAST_REC[mds$i]}"
14439                 [ $last_rec != ${LAST_REC[mds$i]} ] ||
14440                         error "changelogs are off on mds$i"
14441         done
14442 }
14443 run_test 160i "changelog user register/unregister race"
14444
14445 test_160j() {
14446         remote_mds_nodsh && skip "remote MDS with nodsh"
14447         [[ $MDS1_VERSION -lt $(version_code 2.12.56) ]] &&
14448                 skip "Need MDS version at least 2.12.56"
14449
14450         mount_client $MOUNT2 || error "mount_client on $MOUNT2 failed"
14451         stack_trap "umount $MOUNT2" EXIT
14452
14453         changelog_register || error "first changelog_register failed"
14454         stack_trap "changelog_deregister" EXIT
14455
14456         # generate some changelog
14457         # use fnv1a because created files should be evenly distributed
14458         test_mkdir -c $MDSCOUNT -H fnv_1a_64 $DIR/$tdir ||
14459                 error "mkdir $tdir failed"
14460         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
14461                 error "create $DIR/$tdir/${tfile}bis failed"
14462
14463         # open the changelog device
14464         exec 3>/dev/changelog-$FSNAME-MDT0000
14465         stack_trap "exec 3>&-" EXIT
14466         exec 4</dev/changelog-$FSNAME-MDT0000
14467         stack_trap "exec 4<&-" EXIT
14468
14469         # umount the first lustre mount
14470         umount $MOUNT
14471         stack_trap "mount_client $MOUNT" EXIT
14472
14473         # read changelog
14474         cat <&4 >/dev/null || error "read changelog failed"
14475
14476         # clear changelog
14477         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
14478         changelog_users $SINGLEMDS | grep -q $cl_user ||
14479                 error "User $cl_user not found in changelog_users"
14480
14481         printf 'clear:'$cl_user':0' >&3
14482 }
14483 run_test 160j "client can be umounted  while its chanangelog is being used"
14484
14485 test_160k() {
14486         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14487         remote_mds_nodsh && skip "remote MDS with nodsh"
14488
14489         mkdir -p $DIR/$tdir/1/1
14490
14491         changelog_register || error "changelog_register failed"
14492         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
14493
14494         changelog_users $SINGLEMDS | grep -q $cl_user ||
14495                 error "User '$cl_user' not found in changelog_users"
14496 #define OBD_FAIL_MDS_CHANGELOG_REORDER 0x15d
14497         do_facet mds1 $LCTL set_param fail_loc=0x8000015d fail_val=3
14498         rmdir $DIR/$tdir/1/1 & sleep 1
14499         mkdir $DIR/$tdir/2
14500         touch $DIR/$tdir/2/2
14501         rm -rf $DIR/$tdir/2
14502
14503         wait
14504         sleep 4
14505
14506         changelog_dump | grep rmdir || error "rmdir not recorded"
14507
14508         rm -rf $DIR/$tdir
14509         changelog_deregister
14510 }
14511 run_test 160k "Verify that changelog records are not lost"
14512
14513 test_161a() {
14514         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14515
14516         test_mkdir -c1 $DIR/$tdir
14517         cp /etc/hosts $DIR/$tdir/$tfile
14518         test_mkdir -c1 $DIR/$tdir/foo1
14519         test_mkdir -c1 $DIR/$tdir/foo2
14520         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
14521         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
14522         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
14523         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
14524         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
14525         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
14526                 $LFS fid2path $DIR $FID
14527                 error "bad link ea"
14528         fi
14529         # middle
14530         rm $DIR/$tdir/foo2/zachary
14531         # last
14532         rm $DIR/$tdir/foo2/thor
14533         # first
14534         rm $DIR/$tdir/$tfile
14535         # rename
14536         mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
14537         [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ] &&
14538                 { $LFS fid2path $DIR $FID; error "bad link rename"; }
14539         rm $DIR/$tdir/foo2/maggie
14540
14541         # overflow the EA
14542         local longname=$tfile.avg_len_is_thirty_two_
14543         stack_trap "unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
14544                 error_noexit 'failed to unlink many hardlinks'" EXIT
14545         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
14546                 error "failed to hardlink many files"
14547         links=$($LFS fid2path $DIR $FID | wc -l)
14548         echo -n "${links}/1000 links in link EA"
14549         [[ $links -gt 60 ]] || error "expected at least 60 links in link EA"
14550 }
14551 run_test 161a "link ea sanity"
14552
14553 test_161b() {
14554         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14555         [ $MDSCOUNT -lt 2 ] && skip_env "skipping remote directory test"
14556
14557         local MDTIDX=1
14558         local remote_dir=$DIR/$tdir/remote_dir
14559
14560         mkdir -p $DIR/$tdir
14561         $LFS mkdir -i $MDTIDX $remote_dir ||
14562                 error "create remote directory failed"
14563
14564         cp /etc/hosts $remote_dir/$tfile
14565         mkdir -p $remote_dir/foo1
14566         mkdir -p $remote_dir/foo2
14567         ln $remote_dir/$tfile $remote_dir/foo1/sofia
14568         ln $remote_dir/$tfile $remote_dir/foo2/zachary
14569         ln $remote_dir/$tfile $remote_dir/foo1/luna
14570         ln $remote_dir/$tfile $remote_dir/foo2/thor
14571
14572         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
14573                      tr -d ']')
14574         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
14575                 $LFS fid2path $DIR $FID
14576                 error "bad link ea"
14577         fi
14578         # middle
14579         rm $remote_dir/foo2/zachary
14580         # last
14581         rm $remote_dir/foo2/thor
14582         # first
14583         rm $remote_dir/$tfile
14584         # rename
14585         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
14586         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
14587         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
14588                 $LFS fid2path $DIR $FID
14589                 error "bad link rename"
14590         fi
14591         rm $remote_dir/foo2/maggie
14592
14593         # overflow the EA
14594         local longname=filename_avg_len_is_thirty_two_
14595         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
14596                 error "failed to hardlink many files"
14597         links=$($LFS fid2path $DIR $FID | wc -l)
14598         echo -n "${links}/1000 links in link EA"
14599         [[ ${links} -gt 60 ]] ||
14600                 error "expected at least 60 links in link EA"
14601         unlinkmany $remote_dir/foo2/$longname 1000 ||
14602         error "failed to unlink many hardlinks"
14603 }
14604 run_test 161b "link ea sanity under remote directory"
14605
14606 test_161c() {
14607         remote_mds_nodsh && skip "remote MDS with nodsh"
14608         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14609         [[ $MDS1_VERSION -lt $(version_code 2.1.5) ]] &&
14610                 skip "Need MDS version at least 2.1.5"
14611
14612         # define CLF_RENAME_LAST 0x0001
14613         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
14614         changelog_register || error "changelog_register failed"
14615
14616         rm -rf $DIR/$tdir
14617         test_mkdir -i $((MDSCOUNT - 1)) $DIR/$tdir
14618         touch $DIR/$tdir/foo_161c
14619         touch $DIR/$tdir/bar_161c
14620         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
14621         changelog_dump | grep RENME | tail -n 5
14622         local flags=$(changelog_dump | grep "RENME.*bar_161c" | cut -f5 -d' ')
14623         changelog_clear 0 || error "changelog_clear failed"
14624         if [ x$flags != "x0x1" ]; then
14625                 error "flag $flags is not 0x1"
14626         fi
14627
14628         echo "rename overwrite target with nlink = 1, changelog flags=$flags"
14629         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
14630         touch $DIR/$tdir/foo_161c
14631         touch $DIR/$tdir/bar_161c
14632         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
14633         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
14634         changelog_dump | grep RENME | tail -n 5
14635         flags=$(changelog_dump | grep "RENME.*bar_161c" | cut -f5 -d' ')
14636         changelog_clear 0 || error "changelog_clear failed"
14637         if [ x$flags != "x0x0" ]; then
14638                 error "flag $flags is not 0x0"
14639         fi
14640         echo "rename overwrite a target having nlink > 1," \
14641                 "changelog record has flags of $flags"
14642
14643         # rename doesn't overwrite a target (changelog flag 0x0)
14644         touch $DIR/$tdir/foo_161c
14645         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
14646         changelog_dump | grep RENME | tail -n 5
14647         flags=$(changelog_dump | grep RENME | tail -1 | cut -f5 -d' ')
14648         changelog_clear 0 || error "changelog_clear failed"
14649         if [ x$flags != "x0x0" ]; then
14650                 error "flag $flags is not 0x0"
14651         fi
14652         echo "rename doesn't overwrite a target," \
14653                 "changelog record has flags of $flags"
14654
14655         # define CLF_UNLINK_LAST 0x0001
14656         # unlink a file having nlink = 1 (changelog flag 0x1)
14657         rm -f $DIR/$tdir/foo2_161c
14658         changelog_dump | grep UNLNK | tail -n 5
14659         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
14660         changelog_clear 0 || error "changelog_clear failed"
14661         if [ x$flags != "x0x1" ]; then
14662                 error "flag $flags is not 0x1"
14663         fi
14664         echo "unlink a file having nlink = 1," \
14665                 "changelog record has flags of $flags"
14666
14667         # unlink a file having nlink > 1 (changelog flag 0x0)
14668         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
14669         rm -f $DIR/$tdir/foobar_161c
14670         changelog_dump | grep UNLNK | tail -n 5
14671         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
14672         changelog_clear 0 || error "changelog_clear failed"
14673         if [ x$flags != "x0x0" ]; then
14674                 error "flag $flags is not 0x0"
14675         fi
14676         echo "unlink a file having nlink > 1, changelog record flags '$flags'"
14677 }
14678 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
14679
14680 test_161d() {
14681         remote_mds_nodsh && skip "remote MDS with nodsh"
14682         [ -n "$FILESET" ] && skip "Not functional for FILESET set"
14683
14684         local pid
14685         local fid
14686
14687         changelog_register || error "changelog_register failed"
14688
14689         # work in a standalone dir to avoid locking on $DIR/$MOUNT to
14690         # interfer with $MOUNT/.lustre/fid/ access
14691         mkdir $DIR/$tdir
14692         [[ $? -eq 0 ]] || error "mkdir failed"
14693
14694         #define OBD_FAIL_LLITE_CREATE_NODE_PAUSE 0x140c | OBD_FAIL_ONCE
14695         $LCTL set_param fail_loc=0x8000140c
14696         # 5s pause
14697         $LCTL set_param fail_val=5
14698
14699         # create file
14700         echo foofoo > $DIR/$tdir/$tfile &
14701         pid=$!
14702
14703         # wait for create to be delayed
14704         sleep 2
14705
14706         ps -p $pid
14707         [[ $? -eq 0 ]] || error "create should be blocked"
14708
14709         local tempfile="$(mktemp --tmpdir $tfile.XXXXXX)"
14710         stack_trap "rm -f $tempfile"
14711         fid=$(changelog_extract_field "CREAT" "$tfile" "t=")
14712         cat $MOUNT/.lustre/fid/$fid 2>/dev/null >$tempfile || error "cat failed"
14713         # some delay may occur during ChangeLog publishing and file read just
14714         # above, that could allow file write to happen finally
14715         [[ -s $tempfile ]] && echo "file should be empty"
14716
14717         $LCTL set_param fail_loc=0
14718
14719         wait $pid
14720         [[ $? -eq 0 ]] || error "create failed"
14721 }
14722 run_test 161d "create with concurrent .lustre/fid access"
14723
14724 check_path() {
14725         local expected="$1"
14726         shift
14727         local fid="$2"
14728
14729         local path
14730         path=$($LFS fid2path "$@")
14731         local rc=$?
14732
14733         if [ $rc -ne 0 ]; then
14734                 error "path looked up of '$expected' failed: rc=$rc"
14735         elif [ "$path" != "$expected" ]; then
14736                 error "path looked up '$path' instead of '$expected'"
14737         else
14738                 echo "FID '$fid' resolves to path '$path' as expected"
14739         fi
14740 }
14741
14742 test_162a() { # was test_162
14743         test_mkdir -p -c1 $DIR/$tdir/d2
14744         touch $DIR/$tdir/d2/$tfile
14745         touch $DIR/$tdir/d2/x1
14746         touch $DIR/$tdir/d2/x2
14747         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
14748         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
14749         # regular file
14750         local fid=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
14751         check_path "$tdir/d2/$tfile" $FSNAME "$fid" --link 0
14752
14753         # softlink
14754         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
14755         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
14756         check_path "$tdir/d2/p/q/r/slink" $FSNAME "$fid" --link 0
14757
14758         # softlink to wrong file
14759         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
14760         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
14761         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME "$fid" --link 0
14762
14763         # hardlink
14764         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
14765         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
14766         fid=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
14767         # fid2path dir/fsname should both work
14768         check_path "$tdir/d2/a/b/c/new_file" $FSNAME "$fid" --link 1
14769         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR "$fid" --link 0
14770
14771         # hardlink count: check that there are 2 links
14772         local nlinks=$($LFS fid2path $DIR "$fid" | wc -l)
14773         [ $nlinks -eq 2 ] || error "expect 2 links, found $nlinks"
14774
14775         # hardlink indexing: remove the first link
14776         rm $DIR/$tdir/d2/p/q/r/hlink
14777         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $fid --link 0
14778 }
14779 run_test 162a "path lookup sanity"
14780
14781 test_162b() {
14782         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14783         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14784
14785         mkdir $DIR/$tdir
14786         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
14787                                 error "create striped dir failed"
14788
14789         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
14790                                         tail -n 1 | awk '{print $2}')
14791         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
14792
14793         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
14794         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
14795
14796         # regular file
14797         for ((i=0;i<5;i++)); do
14798                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
14799                         error "get fid for f$i failed"
14800                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0
14801
14802                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
14803                         error "get fid for d$i failed"
14804                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0
14805         done
14806
14807         return 0
14808 }
14809 run_test 162b "striped directory path lookup sanity"
14810
14811 # LU-4239: Verify fid2path works with paths 100 or more directories deep
14812 test_162c() {
14813         [[ $MDS1_VERSION -lt $(version_code 2.7.51) ]] &&
14814                 skip "Need MDS version at least 2.7.51"
14815
14816         local lpath=$tdir.local
14817         local rpath=$tdir.remote
14818
14819         test_mkdir $DIR/$lpath
14820         test_mkdir $DIR/$rpath
14821
14822         for ((i = 0; i <= 101; i++)); do
14823                 lpath="$lpath/$i"
14824                 mkdir $DIR/$lpath
14825                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
14826                         error "get fid for local directory $DIR/$lpath failed"
14827                 check_path "$DIR/$lpath" $MOUNT $FID --link 0
14828
14829                 rpath="$rpath/$i"
14830                 test_mkdir $DIR/$rpath
14831                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
14832                         error "get fid for remote directory $DIR/$rpath failed"
14833                 check_path "$DIR/$rpath" $MOUNT $FID --link 0
14834         done
14835
14836         return 0
14837 }
14838 run_test 162c "fid2path works with paths 100 or more directories deep"
14839
14840 test_169() {
14841         # do directio so as not to populate the page cache
14842         log "creating a 10 Mb file"
14843         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
14844         log "starting reads"
14845         dd if=$DIR/$tfile of=/dev/null bs=4096 &
14846         log "truncating the file"
14847         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
14848         log "killing dd"
14849         kill %+ || true # reads might have finished
14850         echo "wait until dd is finished"
14851         wait
14852         log "removing the temporary file"
14853         rm -rf $DIR/$tfile || error "tmp file removal failed"
14854 }
14855 run_test 169 "parallel read and truncate should not deadlock"
14856
14857 test_170() {
14858         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14859
14860         $LCTL clear     # bug 18514
14861         $LCTL debug_daemon start $TMP/${tfile}_log_good
14862         touch $DIR/$tfile
14863         $LCTL debug_daemon stop
14864         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
14865                 error "sed failed to read log_good"
14866
14867         $LCTL debug_daemon start $TMP/${tfile}_log_good
14868         rm -rf $DIR/$tfile
14869         $LCTL debug_daemon stop
14870
14871         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
14872                error "lctl df log_bad failed"
14873
14874         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
14875         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
14876
14877         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
14878         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
14879
14880         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
14881                 error "bad_line good_line1 good_line2 are empty"
14882
14883         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
14884         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
14885         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
14886
14887         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
14888         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
14889         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
14890
14891         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
14892                 error "bad_line_new good_line_new are empty"
14893
14894         local expected_good=$((good_line1 + good_line2*2))
14895
14896         rm -f $TMP/${tfile}*
14897         # LU-231, short malformed line may not be counted into bad lines
14898         if [ $bad_line -ne $bad_line_new ] &&
14899                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
14900                 error "expected $bad_line bad lines, but got $bad_line_new"
14901                 return 1
14902         fi
14903
14904         if [ $expected_good -ne $good_line_new ]; then
14905                 error "expected $expected_good good lines, but got $good_line_new"
14906                 return 2
14907         fi
14908         true
14909 }
14910 run_test 170 "test lctl df to handle corrupted log ====================="
14911
14912 test_171() { # bug20592
14913         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14914
14915         #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
14916         $LCTL set_param fail_loc=0x50e
14917         $LCTL set_param fail_val=3000
14918         multiop_bg_pause $DIR/$tfile O_s || true
14919         local MULTIPID=$!
14920         kill -USR1 $MULTIPID
14921         # cause log dump
14922         sleep 3
14923         wait $MULTIPID
14924         if dmesg | grep "recursive fault"; then
14925                 error "caught a recursive fault"
14926         fi
14927         $LCTL set_param fail_loc=0
14928         true
14929 }
14930 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
14931
14932 # it would be good to share it with obdfilter-survey/iokit-libecho code
14933 setup_obdecho_osc () {
14934         local rc=0
14935         local ost_nid=$1
14936         local obdfilter_name=$2
14937         echo "Creating new osc for $obdfilter_name on $ost_nid"
14938         # make sure we can find loopback nid
14939         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
14940
14941         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
14942                            ${obdfilter_name}_osc_UUID || rc=2; }
14943         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
14944                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
14945         return $rc
14946 }
14947
14948 cleanup_obdecho_osc () {
14949         local obdfilter_name=$1
14950         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
14951         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
14952         return 0
14953 }
14954
14955 obdecho_test() {
14956         local OBD=$1
14957         local node=$2
14958         local pages=${3:-64}
14959         local rc=0
14960         local id
14961
14962         local count=10
14963         local obd_size=$(get_obd_size $node $OBD)
14964         local page_size=$(get_page_size $node)
14965         if [[ -n "$obd_size" ]]; then
14966                 local new_count=$((obd_size / (pages * page_size / 1024)))
14967                 [[ $new_count -ge $count ]] || count=$new_count
14968         fi
14969
14970         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
14971         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
14972                            rc=2; }
14973         if [ $rc -eq 0 ]; then
14974             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
14975             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
14976         fi
14977         echo "New object id is $id"
14978         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
14979                            rc=4; }
14980         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
14981                            "test_brw $count w v $pages $id" || rc=4; }
14982         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
14983                            rc=4; }
14984         [ $rc -eq 0 ] || [ $rc -gt 2 ] &&
14985                 { do_facet $node "$LCTL --device ec cleanup" || rc=5; }
14986         [ $rc -eq 0 ] || [ $rc -gt 1 ] &&
14987                 { do_facet $node "$LCTL --device ec detach" || rc=6; }
14988         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
14989         return $rc
14990 }
14991
14992 test_180a() {
14993         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14994
14995         if ! module_loaded obdecho; then
14996                 load_module obdecho/obdecho &&
14997                         stack_trap "rmmod obdecho" EXIT ||
14998                         error "unable to load obdecho on client"
14999         fi
15000
15001         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
15002         local host=$($LCTL get_param -n osc.$osc.import |
15003                      awk '/current_connection:/ { print $2 }' )
15004         local target=$($LCTL get_param -n osc.$osc.import |
15005                        awk '/target:/ { print $2 }' )
15006         target=${target%_UUID}
15007
15008         if [ -n "$target" ]; then
15009                 setup_obdecho_osc $host $target &&
15010                         stack_trap "cleanup_obdecho_osc $target" EXIT ||
15011                         { error "obdecho setup failed with $?"; return; }
15012
15013                 obdecho_test ${target}_osc client ||
15014                         error "obdecho_test failed on ${target}_osc"
15015         else
15016                 $LCTL get_param osc.$osc.import
15017                 error "there is no osc.$osc.import target"
15018         fi
15019 }
15020 run_test 180a "test obdecho on osc"
15021
15022 test_180b() {
15023         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15024         remote_ost_nodsh && skip "remote OST with nodsh"
15025
15026         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
15027                 stack_trap "do_facet ost1 rmmod obdecho" EXIT ||
15028                 error "failed to load module obdecho"
15029
15030         local target=$(do_facet ost1 $LCTL dl |
15031                        awk '/obdfilter/ { print $4; exit; }')
15032
15033         if [ -n "$target" ]; then
15034                 obdecho_test $target ost1 || error "obdecho_test failed with $?"
15035         else
15036                 do_facet ost1 $LCTL dl
15037                 error "there is no obdfilter target on ost1"
15038         fi
15039 }
15040 run_test 180b "test obdecho directly on obdfilter"
15041
15042 test_180c() { # LU-2598
15043         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15044         remote_ost_nodsh && skip "remote OST with nodsh"
15045         [[ $MDS1_VERSION -lt $(version_code 2.4.0) ]] &&
15046                 skip "Need MDS version at least 2.4.0"
15047
15048         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
15049                 stack_trap "do_facet ost1 rmmod obdecho" EXIT ||
15050                 error "failed to load module obdecho"
15051
15052         local target=$(do_facet ost1 $LCTL dl |
15053                        awk '/obdfilter/ { print $4; exit; }')
15054
15055         if [ -n "$target" ]; then
15056                 local pages=16384 # 64MB bulk I/O RPC size
15057
15058                 obdecho_test "$target" ost1 "$pages" ||
15059                         error "obdecho_test with pages=$pages failed with $?"
15060         else
15061                 do_facet ost1 $LCTL dl
15062                 error "there is no obdfilter target on ost1"
15063         fi
15064 }
15065 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
15066
15067 test_181() { # bug 22177
15068         test_mkdir $DIR/$tdir
15069         # create enough files to index the directory
15070         createmany -o $DIR/$tdir/foobar 4000
15071         # print attributes for debug purpose
15072         lsattr -d .
15073         # open dir
15074         multiop_bg_pause $DIR/$tdir D_Sc || return 1
15075         MULTIPID=$!
15076         # remove the files & current working dir
15077         unlinkmany $DIR/$tdir/foobar 4000
15078         rmdir $DIR/$tdir
15079         kill -USR1 $MULTIPID
15080         wait $MULTIPID
15081         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
15082         return 0
15083 }
15084 run_test 181 "Test open-unlinked dir ========================"
15085
15086 test_182() {
15087         local fcount=1000
15088         local tcount=10
15089
15090         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
15091
15092         $LCTL set_param mdc.*.rpc_stats=clear
15093
15094         for (( i = 0; i < $tcount; i++ )) ; do
15095                 mkdir $DIR/$tdir/$i
15096         done
15097
15098         for (( i = 0; i < $tcount; i++ )) ; do
15099                 createmany -o $DIR/$tdir/$i/f- $fcount &
15100         done
15101         wait
15102
15103         for (( i = 0; i < $tcount; i++ )) ; do
15104                 unlinkmany $DIR/$tdir/$i/f- $fcount &
15105         done
15106         wait
15107
15108         $LCTL get_param mdc.*.rpc_stats
15109
15110         rm -rf $DIR/$tdir
15111 }
15112 run_test 182 "Test parallel modify metadata operations ================"
15113
15114 test_183() { # LU-2275
15115         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15116         remote_mds_nodsh && skip "remote MDS with nodsh"
15117         [[ $MDS1_VERSION -lt $(version_code 2.3.56) ]] &&
15118                 skip "Need MDS version at least 2.3.56"
15119
15120         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
15121         echo aaa > $DIR/$tdir/$tfile
15122
15123 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
15124         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
15125
15126         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
15127         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
15128
15129         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
15130
15131         # Flush negative dentry cache
15132         touch $DIR/$tdir/$tfile
15133
15134         # We are not checking for any leaked references here, they'll
15135         # become evident next time we do cleanup with module unload.
15136         rm -rf $DIR/$tdir
15137 }
15138 run_test 183 "No crash or request leak in case of strange dispositions ========"
15139
15140 # test suite 184 is for LU-2016, LU-2017
15141 test_184a() {
15142         check_swap_layouts_support
15143
15144         dir0=$DIR/$tdir/$testnum
15145         test_mkdir -p -c1 $dir0
15146         ref1=/etc/passwd
15147         ref2=/etc/group
15148         file1=$dir0/f1
15149         file2=$dir0/f2
15150         $LFS setstripe -c1 $file1
15151         cp $ref1 $file1
15152         $LFS setstripe -c2 $file2
15153         cp $ref2 $file2
15154         gen1=$($LFS getstripe -g $file1)
15155         gen2=$($LFS getstripe -g $file2)
15156
15157         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
15158         gen=$($LFS getstripe -g $file1)
15159         [[ $gen1 != $gen ]] ||
15160                 "Layout generation on $file1 does not change"
15161         gen=$($LFS getstripe -g $file2)
15162         [[ $gen2 != $gen ]] ||
15163                 "Layout generation on $file2 does not change"
15164
15165         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
15166         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
15167
15168         lfsck_verify_pfid $file1 $file2 || error "PFID are not transferred"
15169 }
15170 run_test 184a "Basic layout swap"
15171
15172 test_184b() {
15173         check_swap_layouts_support
15174
15175         dir0=$DIR/$tdir/$testnum
15176         mkdir -p $dir0 || error "creating dir $dir0"
15177         file1=$dir0/f1
15178         file2=$dir0/f2
15179         file3=$dir0/f3
15180         dir1=$dir0/d1
15181         dir2=$dir0/d2
15182         mkdir $dir1 $dir2
15183         $LFS setstripe -c1 $file1
15184         $LFS setstripe -c2 $file2
15185         $LFS setstripe -c1 $file3
15186         chown $RUNAS_ID $file3
15187         gen1=$($LFS getstripe -g $file1)
15188         gen2=$($LFS getstripe -g $file2)
15189
15190         $LFS swap_layouts $dir1 $dir2 &&
15191                 error "swap of directories layouts should fail"
15192         $LFS swap_layouts $dir1 $file1 &&
15193                 error "swap of directory and file layouts should fail"
15194         $RUNAS $LFS swap_layouts $file1 $file2 &&
15195                 error "swap of file we cannot write should fail"
15196         $LFS swap_layouts $file1 $file3 &&
15197                 error "swap of file with different owner should fail"
15198         /bin/true # to clear error code
15199 }
15200 run_test 184b "Forbidden layout swap (will generate errors)"
15201
15202 test_184c() {
15203         local cmpn_arg=$(cmp -n 2>&1 | grep "invalid option")
15204         [ -n "$cmpn_arg" ] && skip_env "cmp does not support -n"
15205         check_swap_layouts_support
15206
15207         local dir0=$DIR/$tdir/$testnum
15208         mkdir -p $dir0 || error "creating dir $dir0"
15209
15210         local ref1=$dir0/ref1
15211         local ref2=$dir0/ref2
15212         local file1=$dir0/file1
15213         local file2=$dir0/file2
15214         # create a file large enough for the concurrent test
15215         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
15216         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
15217         echo "ref file size: ref1($(stat -c %s $ref1))," \
15218              "ref2($(stat -c %s $ref2))"
15219
15220         cp $ref2 $file2
15221         dd if=$ref1 of=$file1 bs=16k &
15222         local DD_PID=$!
15223
15224         # Make sure dd starts to copy file
15225         while [ ! -f $file1 ]; do sleep 0.1; done
15226
15227         $LFS swap_layouts $file1 $file2
15228         local rc=$?
15229         wait $DD_PID
15230         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
15231         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
15232
15233         # how many bytes copied before swapping layout
15234         local copied=$(stat -c %s $file2)
15235         local remaining=$(stat -c %s $ref1)
15236         remaining=$((remaining - copied))
15237         echo "Copied $copied bytes before swapping layout..."
15238
15239         cmp -n $copied $file1 $ref2 | grep differ &&
15240                 error "Content mismatch [0, $copied) of ref2 and file1"
15241         cmp -n $copied $file2 $ref1 ||
15242                 error "Content mismatch [0, $copied) of ref1 and file2"
15243         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
15244                 error "Content mismatch [$copied, EOF) of ref1 and file1"
15245
15246         # clean up
15247         rm -f $ref1 $ref2 $file1 $file2
15248 }
15249 run_test 184c "Concurrent write and layout swap"
15250
15251 test_184d() {
15252         check_swap_layouts_support
15253         [ -z "$(which getfattr 2>/dev/null)" ] &&
15254                 skip_env "no getfattr command"
15255
15256         local file1=$DIR/$tdir/$tfile-1
15257         local file2=$DIR/$tdir/$tfile-2
15258         local file3=$DIR/$tdir/$tfile-3
15259         local lovea1
15260         local lovea2
15261
15262         mkdir -p $DIR/$tdir
15263         touch $file1 || error "create $file1 failed"
15264         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
15265                 error "create $file2 failed"
15266         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
15267                 error "create $file3 failed"
15268         lovea1=$(get_layout_param $file1)
15269
15270         $LFS swap_layouts $file2 $file3 ||
15271                 error "swap $file2 $file3 layouts failed"
15272         $LFS swap_layouts $file1 $file2 ||
15273                 error "swap $file1 $file2 layouts failed"
15274
15275         lovea2=$(get_layout_param $file2)
15276         echo "$lovea1"
15277         echo "$lovea2"
15278         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
15279
15280         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
15281         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
15282 }
15283 run_test 184d "allow stripeless layouts swap"
15284
15285 test_184e() {
15286         [[ $MDS1_VERSION -ge $(version_code 2.6.94) ]] ||
15287                 skip "Need MDS version at least 2.6.94"
15288         check_swap_layouts_support
15289         [ -z "$(which getfattr 2>/dev/null)" ] &&
15290                 skip_env "no getfattr command"
15291
15292         local file1=$DIR/$tdir/$tfile-1
15293         local file2=$DIR/$tdir/$tfile-2
15294         local file3=$DIR/$tdir/$tfile-3
15295         local lovea
15296
15297         mkdir -p $DIR/$tdir
15298         touch $file1 || error "create $file1 failed"
15299         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
15300                 error "create $file2 failed"
15301         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
15302                 error "create $file3 failed"
15303
15304         $LFS swap_layouts $file1 $file2 ||
15305                 error "swap $file1 $file2 layouts failed"
15306
15307         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
15308         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
15309
15310         echo 123 > $file1 || error "Should be able to write into $file1"
15311
15312         $LFS swap_layouts $file1 $file3 ||
15313                 error "swap $file1 $file3 layouts failed"
15314
15315         echo 123 > $file1 || error "Should be able to write into $file1"
15316
15317         rm -rf $file1 $file2 $file3
15318 }
15319 run_test 184e "Recreate layout after stripeless layout swaps"
15320
15321 test_184f() {
15322         # Create a file with name longer than sizeof(struct stat) ==
15323         # 144 to see if we can get chars from the file name to appear
15324         # in the returned striping. Note that 'f' == 0x66.
15325         local file=$(for ((i = 0; i < 200; i++)); do echo -n f; done)
15326
15327         mkdir -p $DIR/$tdir
15328         mcreate $DIR/$tdir/$file
15329         if lfs find --stripe-count 0x6666 $DIR/$tdir | grep $file; then
15330                 error "IOC_MDC_GETFILEINFO returned garbage striping"
15331         fi
15332 }
15333 run_test 184f "IOC_MDC_GETFILEINFO for files with long names but no striping"
15334
15335 test_185() { # LU-2441
15336         # LU-3553 - no volatile file support in old servers
15337         [[ $MDS1_VERSION -ge $(version_code 2.3.60) ]] ||
15338                 skip "Need MDS version at least 2.3.60"
15339
15340         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
15341         touch $DIR/$tdir/spoo
15342         local mtime1=$(stat -c "%Y" $DIR/$tdir)
15343         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
15344                 error "cannot create/write a volatile file"
15345         [ "$FILESET" == "" ] &&
15346         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
15347                 error "FID is still valid after close"
15348
15349         multiop_bg_pause $DIR/$tdir vVw4096_c
15350         local multi_pid=$!
15351
15352         local OLD_IFS=$IFS
15353         IFS=":"
15354         local fidv=($fid)
15355         IFS=$OLD_IFS
15356         # assume that the next FID for this client is sequential, since stdout
15357         # is unfortunately eaten by multiop_bg_pause
15358         local n=$((${fidv[1]} + 1))
15359         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
15360         if [ "$FILESET" == "" ]; then
15361                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
15362                         error "FID is missing before close"
15363         fi
15364         kill -USR1 $multi_pid
15365         # 1 second delay, so if mtime change we will see it
15366         sleep 1
15367         local mtime2=$(stat -c "%Y" $DIR/$tdir)
15368         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
15369 }
15370 run_test 185 "Volatile file support"
15371
15372 function create_check_volatile() {
15373         local idx=$1
15374         local tgt
15375
15376         $MULTIOP $MOUNT/.lustre/fid V${idx}Fw4096_c >&/tmp/${tfile}.fid &
15377         local PID=$!
15378         sleep 1
15379         local FID=$(cat /tmp/${tfile}.fid)
15380         [ "$FID" == "" ] && error "can't get FID for volatile"
15381         $CHECKSTAT -t file $MOUNT/.lustre/fid/$FID || error "can't stat $FID"
15382         tgt=$($LFS getstripe -m $MOUNT/.lustre/fid/$FID)
15383         [ "$tgt" != "$idx" ] && error "wrong MDS $tgt, expected $idx"
15384         kill -USR1 $PID
15385         wait
15386         sleep 1
15387         cancel_lru_locks mdc # flush opencache
15388         $CHECKSTAT -t file $MOUNT/.lustre/fid/$FID && error "can stat $FID"
15389         return 0
15390 }
15391
15392 test_185a(){
15393         # LU-12516 - volatile creation via .lustre
15394         [[ $MDS1_VERSION -ge $(version_code 2.12.55) ]] ||
15395                 skip "Need MDS version at least 2.3.55"
15396
15397         create_check_volatile 0
15398         [ $MDSCOUNT -lt 2 ] && return 0
15399
15400         # DNE case
15401         create_check_volatile 1
15402
15403         return 0
15404 }
15405 run_test 185a "Volatile file creation in .lustre/fid/"
15406
15407 test_187a() {
15408         remote_mds_nodsh && skip "remote MDS with nodsh"
15409         [ $MDS1_VERSION -lt $(version_code 2.3.0) ] &&
15410                 skip "Need MDS version at least 2.3.0"
15411
15412         local dir0=$DIR/$tdir/$testnum
15413         mkdir -p $dir0 || error "creating dir $dir0"
15414
15415         local file=$dir0/file1
15416         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
15417         local dv1=$($LFS data_version $file)
15418         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
15419         local dv2=$($LFS data_version $file)
15420         [[ $dv1 != $dv2 ]] ||
15421                 error "data version did not change on write $dv1 == $dv2"
15422
15423         # clean up
15424         rm -f $file1
15425 }
15426 run_test 187a "Test data version change"
15427
15428 test_187b() {
15429         remote_mds_nodsh && skip "remote MDS with nodsh"
15430         [ $MDS1_VERSION -lt $(version_code 2.3.0) ] &&
15431                 skip "Need MDS version at least 2.3.0"
15432
15433         local dir0=$DIR/$tdir/$testnum
15434         mkdir -p $dir0 || error "creating dir $dir0"
15435
15436         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
15437         [[ ${DV[0]} != ${DV[1]} ]] ||
15438                 error "data version did not change on write"\
15439                       " ${DV[0]} == ${DV[1]}"
15440
15441         # clean up
15442         rm -f $file1
15443 }
15444 run_test 187b "Test data version change on volatile file"
15445
15446 test_200() {
15447         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15448         remote_mgs_nodsh && skip "remote MGS with nodsh"
15449         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
15450
15451         local POOL=${POOL:-cea1}
15452         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
15453         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
15454         # Pool OST targets
15455         local first_ost=0
15456         local last_ost=$(($OSTCOUNT - 1))
15457         local ost_step=2
15458         local ost_list=$(seq $first_ost $ost_step $last_ost)
15459         local ost_range="$first_ost $last_ost $ost_step"
15460         local test_path=$POOL_ROOT/$POOL_DIR_NAME
15461         local file_dir=$POOL_ROOT/file_tst
15462         local subdir=$test_path/subdir
15463         local rc=0
15464
15465         while : ; do
15466                 # former test_200a test_200b
15467                 pool_add $POOL                          || { rc=$? ; break; }
15468                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
15469                 # former test_200c test_200d
15470                 mkdir -p $test_path
15471                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
15472                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
15473                 mkdir -p $subdir
15474                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
15475                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
15476                                                         || { rc=$? ; break; }
15477                 # former test_200e test_200f
15478                 local files=$((OSTCOUNT*3))
15479                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
15480                                                         || { rc=$? ; break; }
15481                 pool_create_files $POOL $file_dir $files "$ost_list" \
15482                                                         || { rc=$? ; break; }
15483                 # former test_200g test_200h
15484                 pool_lfs_df $POOL                       || { rc=$? ; break; }
15485                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
15486
15487                 # former test_201a test_201b test_201c
15488                 pool_remove_first_target $POOL          || { rc=$? ; break; }
15489
15490                 local f=$test_path/$tfile
15491                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
15492                 pool_remove $POOL $f                    || { rc=$? ; break; }
15493                 break
15494         done
15495
15496         destroy_test_pools
15497
15498         return $rc
15499 }
15500 run_test 200 "OST pools"
15501
15502 # usage: default_attr <count | size | offset>
15503 default_attr() {
15504         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
15505 }
15506
15507 # usage: check_default_stripe_attr
15508 check_default_stripe_attr() {
15509         ACTUAL=$($LFS getstripe $* $DIR/$tdir)
15510         case $1 in
15511         --stripe-count|-c)
15512                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
15513         --stripe-size|-S)
15514                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
15515         --stripe-index|-i)
15516                 EXPECTED=-1;;
15517         *)
15518                 error "unknown getstripe attr '$1'"
15519         esac
15520
15521         [ $ACTUAL == $EXPECTED ] ||
15522                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
15523 }
15524
15525 test_204a() {
15526         test_mkdir $DIR/$tdir
15527         $LFS setstripe --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
15528
15529         check_default_stripe_attr --stripe-count
15530         check_default_stripe_attr --stripe-size
15531         check_default_stripe_attr --stripe-index
15532 }
15533 run_test 204a "Print default stripe attributes"
15534
15535 test_204b() {
15536         test_mkdir $DIR/$tdir
15537         $LFS setstripe --stripe-count 1 $DIR/$tdir
15538
15539         check_default_stripe_attr --stripe-size
15540         check_default_stripe_attr --stripe-index
15541 }
15542 run_test 204b "Print default stripe size and offset"
15543
15544 test_204c() {
15545         test_mkdir $DIR/$tdir
15546         $LFS setstripe --stripe-size 65536 $DIR/$tdir
15547
15548         check_default_stripe_attr --stripe-count
15549         check_default_stripe_attr --stripe-index
15550 }
15551 run_test 204c "Print default stripe count and offset"
15552
15553 test_204d() {
15554         test_mkdir $DIR/$tdir
15555         $LFS setstripe --stripe-index 0 $DIR/$tdir
15556
15557         check_default_stripe_attr --stripe-count
15558         check_default_stripe_attr --stripe-size
15559 }
15560 run_test 204d "Print default stripe count and size"
15561
15562 test_204e() {
15563         test_mkdir $DIR/$tdir
15564         $LFS setstripe -d $DIR/$tdir
15565
15566         check_default_stripe_attr --stripe-count --raw
15567         check_default_stripe_attr --stripe-size --raw
15568         check_default_stripe_attr --stripe-index --raw
15569 }
15570 run_test 204e "Print raw stripe attributes"
15571
15572 test_204f() {
15573         test_mkdir $DIR/$tdir
15574         $LFS setstripe --stripe-count 1 $DIR/$tdir
15575
15576         check_default_stripe_attr --stripe-size --raw
15577         check_default_stripe_attr --stripe-index --raw
15578 }
15579 run_test 204f "Print raw stripe size and offset"
15580
15581 test_204g() {
15582         test_mkdir $DIR/$tdir
15583         $LFS setstripe --stripe-size 65536 $DIR/$tdir
15584
15585         check_default_stripe_attr --stripe-count --raw
15586         check_default_stripe_attr --stripe-index --raw
15587 }
15588 run_test 204g "Print raw stripe count and offset"
15589
15590 test_204h() {
15591         test_mkdir $DIR/$tdir
15592         $LFS setstripe --stripe-index 0 $DIR/$tdir
15593
15594         check_default_stripe_attr --stripe-count --raw
15595         check_default_stripe_attr --stripe-size --raw
15596 }
15597 run_test 204h "Print raw stripe count and size"
15598
15599 # Figure out which job scheduler is being used, if any,
15600 # or use a fake one
15601 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
15602         JOBENV=SLURM_JOB_ID
15603 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
15604         JOBENV=LSB_JOBID
15605 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
15606         JOBENV=PBS_JOBID
15607 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
15608         JOBENV=LOADL_STEP_ID
15609 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
15610         JOBENV=JOB_ID
15611 else
15612         $LCTL list_param jobid_name > /dev/null 2>&1
15613         if [ $? -eq 0 ]; then
15614                 JOBENV=nodelocal
15615         else
15616                 JOBENV=FAKE_JOBID
15617         fi
15618 fi
15619 LUSTRE_JOBID_SIZE=31 # plus NUL terminator
15620
15621 verify_jobstats() {
15622         local cmd=($1)
15623         shift
15624         local facets="$@"
15625
15626 # we don't really need to clear the stats for this test to work, since each
15627 # command has a unique jobid, but it makes debugging easier if needed.
15628 #       for facet in $facets; do
15629 #               local dev=$(convert_facet2label $facet)
15630 #               # clear old jobstats
15631 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
15632 #       done
15633
15634         # use a new JobID for each test, or we might see an old one
15635         [ "$JOBENV" = "FAKE_JOBID" ] &&
15636                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
15637
15638         JOBVAL=${!JOBENV:0:$LUSTRE_JOBID_SIZE}
15639
15640         [ "$JOBENV" = "nodelocal" ] && {
15641                 FAKE_JOBID=id.$testnum.%e.$RANDOM
15642                 $LCTL set_param jobid_name=$FAKE_JOBID
15643                 JOBVAL=${FAKE_JOBID/\%e/$(basename ${cmd[0]})}
15644         }
15645
15646         log "Test: ${cmd[*]}"
15647         log "Using JobID environment $($LCTL get_param -n jobid_var)=$JOBVAL"
15648
15649         if [ $JOBENV = "FAKE_JOBID" ]; then
15650                 FAKE_JOBID=$JOBVAL ${cmd[*]}
15651         else
15652                 ${cmd[*]}
15653         fi
15654
15655         # all files are created on OST0000
15656         for facet in $facets; do
15657                 local stats="*.$(convert_facet2label $facet).job_stats"
15658
15659                 # strip out libtool wrappers for in-tree executables
15660                 if [ $(do_facet $facet lctl get_param $stats |
15661                        sed -e 's/\.lt-/./' | grep -c $JOBVAL) -ne 1 ]; then
15662                         do_facet $facet lctl get_param $stats
15663                         error "No jobstats for $JOBVAL found on $facet::$stats"
15664                 fi
15665         done
15666 }
15667
15668 jobstats_set() {
15669         local new_jobenv=$1
15670
15671         set_persistent_param_and_check client "jobid_var" \
15672                 "$FSNAME.sys.jobid_var" $new_jobenv
15673 }
15674
15675 test_205a() { # Job stats
15676         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15677         [[ $MDS1_VERSION -ge $(version_code 2.7.1) ]] ||
15678                 skip "Need MDS version with at least 2.7.1"
15679         remote_mgs_nodsh && skip "remote MGS with nodsh"
15680         remote_mds_nodsh && skip "remote MDS with nodsh"
15681         remote_ost_nodsh && skip "remote OST with nodsh"
15682         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
15683                 skip "Server doesn't support jobstats"
15684         [[ $JOBID_VAR = disable ]] && skip_env "jobstats is disabled"
15685
15686         local old_jobenv=$($LCTL get_param -n jobid_var)
15687         [ $old_jobenv != $JOBENV ] && jobstats_set $JOBENV
15688
15689         if [[ $PERM_CMD == *"set_param -P"* ]]; then
15690                 stack_trap "do_facet mgs $PERM_CMD jobid_var=$old_jobenv" EXIT
15691         else
15692                 stack_trap "do_facet mgs $PERM_CMD \
15693                         $FSNAME.sys.jobid_var=$old_jobenv" EXIT
15694         fi
15695         changelog_register
15696
15697         local old_interval=$(do_facet $SINGLEMDS lctl get_param -n \
15698                                 mdt.*.job_cleanup_interval | head -n 1)
15699         local new_interval=5
15700         do_facet $SINGLEMDS \
15701                 $LCTL set_param mdt.*.job_cleanup_interval=$new_interval
15702         stack_trap "do_facet $SINGLEMDS \
15703                 $LCTL set_param mdt.*.job_cleanup_interval=$old_interval" EXIT
15704         local start=$SECONDS
15705
15706         local cmd
15707         # mkdir
15708         cmd="mkdir $DIR/$tdir"
15709         verify_jobstats "$cmd" "$SINGLEMDS"
15710         # rmdir
15711         cmd="rmdir $DIR/$tdir"
15712         verify_jobstats "$cmd" "$SINGLEMDS"
15713         # mkdir on secondary MDT
15714         if [ $MDSCOUNT -gt 1 ]; then
15715                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
15716                 verify_jobstats "$cmd" "mds2"
15717         fi
15718         # mknod
15719         cmd="mknod $DIR/$tfile c 1 3"
15720         verify_jobstats "$cmd" "$SINGLEMDS"
15721         # unlink
15722         cmd="rm -f $DIR/$tfile"
15723         verify_jobstats "$cmd" "$SINGLEMDS"
15724         # create all files on OST0000 so verify_jobstats can find OST stats
15725         # open & close
15726         cmd="$LFS setstripe -i 0 -c 1 $DIR/$tfile"
15727         verify_jobstats "$cmd" "$SINGLEMDS"
15728         # setattr
15729         cmd="touch $DIR/$tfile"
15730         verify_jobstats "$cmd" "$SINGLEMDS ost1"
15731         # write
15732         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
15733         verify_jobstats "$cmd" "ost1"
15734         # read
15735         cancel_lru_locks osc
15736         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
15737         verify_jobstats "$cmd" "ost1"
15738         # truncate
15739         cmd="$TRUNCATE $DIR/$tfile 0"
15740         verify_jobstats "$cmd" "$SINGLEMDS ost1"
15741         # rename
15742         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
15743         verify_jobstats "$cmd" "$SINGLEMDS"
15744         # jobstats expiry - sleep until old stats should be expired
15745         local left=$((new_interval + 5 - (SECONDS - start)))
15746         [ $left -ge 0 ] && wait_update_facet $SINGLEMDS \
15747                 "lctl get_param *.*.job_stats | grep -c 'job_id.*mkdir'" \
15748                         "0" $left
15749         cmd="mkdir $DIR/$tdir.expire"
15750         verify_jobstats "$cmd" "$SINGLEMDS"
15751         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
15752             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
15753
15754         # Ensure that jobid are present in changelog (if supported by MDS)
15755         if [ $MDS1_VERSION -ge $(version_code 2.6.52) ];then
15756                 changelog_dump | tail -10
15757                 jobids=$(changelog_dump | tail -9 | grep -c "j=")
15758                 [ $jobids -eq 9 ] ||
15759                         error "Wrong changelog jobid count $jobids != 9"
15760
15761                 # LU-5862
15762                 JOBENV="disable"
15763                 jobstats_set $JOBENV
15764                 touch $DIR/$tfile
15765                 changelog_dump | grep $tfile
15766                 jobids=$(changelog_dump | grep $tfile | tail -1 | grep -c "j=")
15767                 [ $jobids -eq 0 ] ||
15768                         error "Unexpected jobids when jobid_var=$JOBENV"
15769         fi
15770
15771         lctl set_param jobid_var=USER jobid_name="S.%j.%e.%u.%h.E"
15772         JOBENV="JOBCOMPLEX"
15773         JOBCOMPLEX="S.$USER.touch.$(id -u).$(hostname).E"
15774
15775         verify_jobstats "touch $DIR/$tfile" $SINGLEMDS
15776 }
15777 run_test 205a "Verify job stats"
15778
15779 # LU-13117
15780 test_205b() {
15781         $LCTL set_param jobid_var=USER jobid_name="%e.%u"
15782         env -i USERTESTJOBSTATS=foolish touch $DIR/$tfile.1
15783         do_facet $SINGLEMDS $LCTL get_param mdt.*.job_stats |
15784                 grep job_id: | grep foolish &&
15785                         error "Unexpected jobid found"
15786         true
15787 }
15788 run_test 205b "Verify job stats jobid parsing"
15789
15790 # LU-1480, LU-1773 and LU-1657
15791 test_206() {
15792         mkdir -p $DIR/$tdir
15793         $LFS setstripe -c -1 $DIR/$tdir
15794 #define OBD_FAIL_LOV_INIT 0x1403
15795         $LCTL set_param fail_loc=0xa0001403
15796         $LCTL set_param fail_val=1
15797         touch $DIR/$tdir/$tfile || true
15798 }
15799 run_test 206 "fail lov_init_raid0() doesn't lbug"
15800
15801 test_207a() {
15802         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
15803         local fsz=`stat -c %s $DIR/$tfile`
15804         cancel_lru_locks mdc
15805
15806         # do not return layout in getattr intent
15807 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
15808         $LCTL set_param fail_loc=0x170
15809         local sz=`stat -c %s $DIR/$tfile`
15810
15811         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
15812
15813         rm -rf $DIR/$tfile
15814 }
15815 run_test 207a "can refresh layout at glimpse"
15816
15817 test_207b() {
15818         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
15819         local cksum=`md5sum $DIR/$tfile`
15820         local fsz=`stat -c %s $DIR/$tfile`
15821         cancel_lru_locks mdc
15822         cancel_lru_locks osc
15823
15824         # do not return layout in getattr intent
15825 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
15826         $LCTL set_param fail_loc=0x171
15827
15828         # it will refresh layout after the file is opened but before read issues
15829         echo checksum is "$cksum"
15830         echo "$cksum" |md5sum -c --quiet || error "file differs"
15831
15832         rm -rf $DIR/$tfile
15833 }
15834 run_test 207b "can refresh layout at open"
15835
15836 test_208() {
15837         # FIXME: in this test suite, only RD lease is used. This is okay
15838         # for now as only exclusive open is supported. After generic lease
15839         # is done, this test suite should be revised. - Jinshan
15840
15841         remote_mds_nodsh && skip "remote MDS with nodsh"
15842         [[ $MDS1_VERSION -ge $(version_code 2.4.52) ]] ||
15843                 skip "Need MDS version at least 2.4.52"
15844
15845         echo "==== test 1: verify get lease work"
15846         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
15847
15848         echo "==== test 2: verify lease can be broken by upcoming open"
15849         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
15850         local PID=$!
15851         sleep 1
15852
15853         $MULTIOP $DIR/$tfile oO_RDONLY:c
15854         kill -USR1 $PID && wait $PID || error "break lease error"
15855
15856         echo "==== test 3: verify lease can't be granted if an open already exists"
15857         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
15858         local PID=$!
15859         sleep 1
15860
15861         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
15862         kill -USR1 $PID && wait $PID || error "open file error"
15863
15864         echo "==== test 4: lease can sustain over recovery"
15865         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
15866         PID=$!
15867         sleep 1
15868
15869         fail mds1
15870
15871         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
15872
15873         echo "==== test 5: lease broken can't be regained by replay"
15874         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
15875         PID=$!
15876         sleep 1
15877
15878         # open file to break lease and then recovery
15879         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
15880         fail mds1
15881
15882         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
15883
15884         rm -f $DIR/$tfile
15885 }
15886 run_test 208 "Exclusive open"
15887
15888 test_209() {
15889         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
15890                 skip_env "must have disp_stripe"
15891
15892         touch $DIR/$tfile
15893         sync; sleep 5; sync;
15894
15895         echo 3 > /proc/sys/vm/drop_caches
15896         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
15897
15898         # open/close 500 times
15899         for i in $(seq 500); do
15900                 cat $DIR/$tfile
15901         done
15902
15903         echo 3 > /proc/sys/vm/drop_caches
15904         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
15905
15906         echo "before: $req_before, after: $req_after"
15907         [ $((req_after - req_before)) -ge 300 ] &&
15908                 error "open/close requests are not freed"
15909         return 0
15910 }
15911 run_test 209 "read-only open/close requests should be freed promptly"
15912
15913 test_212() {
15914         size=`date +%s`
15915         size=$((size % 8192 + 1))
15916         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
15917         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
15918         rm -f $DIR/f212 $DIR/f212.xyz
15919 }
15920 run_test 212 "Sendfile test ============================================"
15921
15922 test_213() {
15923         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
15924         cancel_lru_locks osc
15925         lctl set_param fail_loc=0x8000040f
15926         # generate a read lock
15927         cat $DIR/$tfile > /dev/null
15928         # write to the file, it will try to cancel the above read lock.
15929         cat /etc/hosts >> $DIR/$tfile
15930 }
15931 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
15932
15933 test_214() { # for bug 20133
15934         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
15935         for (( i=0; i < 340; i++ )) ; do
15936                 touch $DIR/$tdir/d214c/a$i
15937         done
15938
15939         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
15940         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
15941         ls $DIR/d214c || error "ls $DIR/d214c failed"
15942         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
15943         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
15944 }
15945 run_test 214 "hash-indexed directory test - bug 20133"
15946
15947 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
15948 create_lnet_proc_files() {
15949         lctl get_param -n $1 >$TMP/lnet_$1.sys || error "cannot read lnet.$1"
15950 }
15951
15952 # counterpart of create_lnet_proc_files
15953 remove_lnet_proc_files() {
15954         rm -f $TMP/lnet_$1.sys
15955 }
15956
15957 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
15958 # 3rd arg as regexp for body
15959 check_lnet_proc_stats() {
15960         local l=$(cat "$TMP/lnet_$1" |wc -l)
15961         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
15962
15963         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
15964 }
15965
15966 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
15967 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
15968 # optional and can be regexp for 2nd line (lnet.routes case)
15969 check_lnet_proc_entry() {
15970         local blp=2          # blp stands for 'position of 1st line of body'
15971         [ -z "$5" ] || blp=3 # lnet.routes case
15972
15973         local l=$(cat "$TMP/lnet_$1" |wc -l)
15974         # subtracting one from $blp because the body can be empty
15975         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
15976
15977         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
15978                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
15979
15980         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
15981                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
15982
15983         # bail out if any unexpected line happened
15984         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
15985         [ "$?" != 0 ] || error "$2 misformatted"
15986 }
15987
15988 test_215() { # for bugs 18102, 21079, 21517
15989         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15990
15991         local N='(0|[1-9][0-9]*)'       # non-negative numeric
15992         local P='[1-9][0-9]*'           # positive numeric
15993         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
15994         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
15995         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
15996         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
15997
15998         local L1 # regexp for 1st line
15999         local L2 # regexp for 2nd line (optional)
16000         local BR # regexp for the rest (body)
16001
16002         # lnet.stats should look as 11 space-separated non-negative numerics
16003         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
16004         create_lnet_proc_files "stats"
16005         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
16006         remove_lnet_proc_files "stats"
16007
16008         # lnet.routes should look like this:
16009         # Routing disabled/enabled
16010         # net hops priority state router
16011         # where net is a string like tcp0, hops > 0, priority >= 0,
16012         # state is up/down,
16013         # router is a string like 192.168.1.1@tcp2
16014         L1="^Routing (disabled|enabled)$"
16015         L2="^net +hops +priority +state +router$"
16016         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
16017         create_lnet_proc_files "routes"
16018         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
16019         remove_lnet_proc_files "routes"
16020
16021         # lnet.routers should look like this:
16022         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
16023         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
16024         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
16025         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
16026         L1="^ref +rtr_ref +alive +router$"
16027         BR="^$P +$P +(up|down) +$NID$"
16028         create_lnet_proc_files "routers"
16029         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
16030         remove_lnet_proc_files "routers"
16031
16032         # lnet.peers should look like this:
16033         # nid refs state last max rtr min tx min queue
16034         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
16035         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
16036         # numeric (0 or >0 or <0), queue >= 0.
16037         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
16038         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
16039         create_lnet_proc_files "peers"
16040         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
16041         remove_lnet_proc_files "peers"
16042
16043         # lnet.buffers  should look like this:
16044         # pages count credits min
16045         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
16046         L1="^pages +count +credits +min$"
16047         BR="^ +$N +$N +$I +$I$"
16048         create_lnet_proc_files "buffers"
16049         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
16050         remove_lnet_proc_files "buffers"
16051
16052         # lnet.nis should look like this:
16053         # nid status alive refs peer rtr max tx min
16054         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
16055         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
16056         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
16057         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
16058         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
16059         create_lnet_proc_files "nis"
16060         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
16061         remove_lnet_proc_files "nis"
16062
16063         # can we successfully write to lnet.stats?
16064         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
16065 }
16066 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
16067
16068 test_216() { # bug 20317
16069         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16070         remote_ost_nodsh && skip "remote OST with nodsh"
16071
16072         local node
16073         local facets=$(get_facets OST)
16074         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
16075
16076         save_lustre_params client "osc.*.contention_seconds" > $p
16077         save_lustre_params $facets \
16078                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
16079         save_lustre_params $facets \
16080                 "ldlm.namespaces.filter-*.contended_locks" >> $p
16081         save_lustre_params $facets \
16082                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
16083         clear_stats osc.*.osc_stats
16084
16085         # agressive lockless i/o settings
16086         do_nodes $(comma_list $(osts_nodes)) \
16087                 "lctl set_param -n ldlm.namespaces.*.max_nolock_bytes=2000000 \
16088                         ldlm.namespaces.filter-*.contended_locks=0 \
16089                         ldlm.namespaces.filter-*.contention_seconds=60"
16090         lctl set_param -n osc.*.contention_seconds=60
16091
16092         $DIRECTIO write $DIR/$tfile 0 10 4096
16093         $CHECKSTAT -s 40960 $DIR/$tfile
16094
16095         # disable lockless i/o
16096         do_nodes $(comma_list $(osts_nodes)) \
16097                 "lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes=0 \
16098                         ldlm.namespaces.filter-*.contended_locks=32 \
16099                         ldlm.namespaces.filter-*.contention_seconds=0"
16100         lctl set_param -n osc.*.contention_seconds=0
16101         clear_stats osc.*.osc_stats
16102
16103         dd if=/dev/zero of=$DIR/$tfile count=0
16104         $CHECKSTAT -s 0 $DIR/$tfile
16105
16106         restore_lustre_params <$p
16107         rm -f $p
16108         rm $DIR/$tfile
16109 }
16110 run_test 216 "check lockless direct write updates file size and kms correctly"
16111
16112 test_217() { # bug 22430
16113         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16114
16115         local node
16116         local nid
16117
16118         for node in $(nodes_list); do
16119                 nid=$(host_nids_address $node $NETTYPE)
16120                 if [[ $nid = *-* ]] ; then
16121                         echo "lctl ping $(h2nettype $nid)"
16122                         lctl ping $(h2nettype $nid)
16123                 else
16124                         echo "skipping $node (no hyphen detected)"
16125                 fi
16126         done
16127 }
16128 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
16129
16130 test_218() {
16131        # do directio so as not to populate the page cache
16132        log "creating a 10 Mb file"
16133        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
16134        log "starting reads"
16135        dd if=$DIR/$tfile of=/dev/null bs=4096 &
16136        log "truncating the file"
16137        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
16138        log "killing dd"
16139        kill %+ || true # reads might have finished
16140        echo "wait until dd is finished"
16141        wait
16142        log "removing the temporary file"
16143        rm -rf $DIR/$tfile || error "tmp file removal failed"
16144 }
16145 run_test 218 "parallel read and truncate should not deadlock"
16146
16147 test_219() {
16148         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16149
16150         # write one partial page
16151         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
16152         # set no grant so vvp_io_commit_write will do sync write
16153         $LCTL set_param fail_loc=0x411
16154         # write a full page at the end of file
16155         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
16156
16157         $LCTL set_param fail_loc=0
16158         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
16159         $LCTL set_param fail_loc=0x411
16160         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
16161
16162         # LU-4201
16163         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
16164         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
16165 }
16166 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
16167
16168 test_220() { #LU-325
16169         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16170         remote_ost_nodsh && skip "remote OST with nodsh"
16171         remote_mds_nodsh && skip "remote MDS with nodsh"
16172         remote_mgs_nodsh && skip "remote MGS with nodsh"
16173
16174         local OSTIDX=0
16175
16176         # create on MDT0000 so the last_id and next_id are correct
16177         mkdir $DIR/$tdir
16178         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
16179         OST=${OST%_UUID}
16180
16181         # on the mdt's osc
16182         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
16183         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
16184                         osp.$mdtosc_proc1.prealloc_last_id)
16185         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
16186                         osp.$mdtosc_proc1.prealloc_next_id)
16187
16188         $LFS df -i
16189
16190         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
16191         #define OBD_FAIL_OST_ENOINO              0x229
16192         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
16193         create_pool $FSNAME.$TESTNAME || return 1
16194         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
16195
16196         $LFS setstripe $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
16197
16198         MDSOBJS=$((last_id - next_id))
16199         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
16200
16201         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
16202         echo "OST still has $count kbytes free"
16203
16204         echo "create $MDSOBJS files @next_id..."
16205         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
16206
16207         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
16208                         osp.$mdtosc_proc1.prealloc_last_id)
16209         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
16210                         osp.$mdtosc_proc1.prealloc_next_id)
16211
16212         echo "after creation, last_id=$last_id2, next_id=$next_id2"
16213         $LFS df -i
16214
16215         echo "cleanup..."
16216
16217         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
16218         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
16219
16220         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST ||
16221                 error "$LCTL pool_remove $FSNAME.$TESTNAME $OST failed"
16222         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
16223                 error "$LCTL pool_destroy $FSNAME.$TESTNAME failed"
16224         echo "unlink $MDSOBJS files @$next_id..."
16225         unlinkmany $DIR/$tdir/f $MDSOBJS || error "unlinkmany failed"
16226 }
16227 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
16228
16229 test_221() {
16230         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16231
16232         dd if=`which date` of=$MOUNT/date oflag=sync
16233         chmod +x $MOUNT/date
16234
16235         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
16236         $LCTL set_param fail_loc=0x80001401
16237
16238         $MOUNT/date > /dev/null
16239         rm -f $MOUNT/date
16240 }
16241 run_test 221 "make sure fault and truncate race to not cause OOM"
16242
16243 test_222a () {
16244         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16245
16246         rm -rf $DIR/$tdir
16247         test_mkdir $DIR/$tdir
16248         $LFS setstripe -c 1 -i 0 $DIR/$tdir
16249         createmany -o $DIR/$tdir/$tfile 10
16250         cancel_lru_locks mdc
16251         cancel_lru_locks osc
16252         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
16253         $LCTL set_param fail_loc=0x31a
16254         ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
16255         $LCTL set_param fail_loc=0
16256         rm -r $DIR/$tdir
16257 }
16258 run_test 222a "AGL for ls should not trigger CLIO lock failure"
16259
16260 test_222b () {
16261         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16262
16263         rm -rf $DIR/$tdir
16264         test_mkdir $DIR/$tdir
16265         $LFS setstripe -c 1 -i 0 $DIR/$tdir
16266         createmany -o $DIR/$tdir/$tfile 10
16267         cancel_lru_locks mdc
16268         cancel_lru_locks osc
16269         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
16270         $LCTL set_param fail_loc=0x31a
16271         rm -r $DIR/$tdir || error "AGL for rmdir failed"
16272         $LCTL set_param fail_loc=0
16273 }
16274 run_test 222b "AGL for rmdir should not trigger CLIO lock failure"
16275
16276 test_223 () {
16277         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16278
16279         rm -rf $DIR/$tdir
16280         test_mkdir $DIR/$tdir
16281         $LFS setstripe -c 1 -i 0 $DIR/$tdir
16282         createmany -o $DIR/$tdir/$tfile 10
16283         cancel_lru_locks mdc
16284         cancel_lru_locks osc
16285         #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
16286         $LCTL set_param fail_loc=0x31b
16287         ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
16288         $LCTL set_param fail_loc=0
16289         rm -r $DIR/$tdir
16290 }
16291 run_test 223 "osc reenqueue if without AGL lock granted ======================="
16292
16293 test_224a() { # LU-1039, MRP-303
16294         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16295
16296         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
16297         $LCTL set_param fail_loc=0x508
16298         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
16299         $LCTL set_param fail_loc=0
16300         df $DIR
16301 }
16302 run_test 224a "Don't panic on bulk IO failure"
16303
16304 test_224b() { # LU-1039, MRP-303
16305         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16306
16307         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
16308         cancel_lru_locks osc
16309         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
16310         $LCTL set_param fail_loc=0x515
16311         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
16312         $LCTL set_param fail_loc=0
16313         df $DIR
16314 }
16315 run_test 224b "Don't panic on bulk IO failure"
16316
16317 test_224c() { # LU-6441
16318         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16319         remote_mds_nodsh && skip "remote MDS with nodsh"
16320
16321         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
16322         save_writethrough $p
16323         set_cache writethrough on
16324
16325         local pages_per_rpc=$($LCTL get_param osc.*.max_pages_per_rpc)
16326         local at_max=$($LCTL get_param -n at_max)
16327         local timeout=$($LCTL get_param -n timeout)
16328         local test_at="at_max"
16329         local param_at="$FSNAME.sys.at_max"
16330         local test_timeout="timeout"
16331         local param_timeout="$FSNAME.sys.timeout"
16332
16333         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
16334
16335         set_persistent_param_and_check client "$test_at" "$param_at" 0
16336         set_persistent_param_and_check client "$test_timeout" "$param_timeout" 5
16337
16338         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3 0x520
16339         do_facet ost1 "$LCTL set_param fail_loc=0x520"
16340         $LFS setstripe -c 1 -i 0 $DIR/$tfile
16341         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
16342         sync
16343         do_facet ost1 "$LCTL set_param fail_loc=0"
16344
16345         set_persistent_param_and_check client "$test_at" "$param_at" $at_max
16346         set_persistent_param_and_check client "$test_timeout" "$param_timeout" \
16347                 $timeout
16348
16349         $LCTL set_param -n $pages_per_rpc
16350         restore_lustre_params < $p
16351         rm -f $p
16352 }
16353 run_test 224c "Don't hang if one of md lost during large bulk RPC"
16354
16355 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
16356 test_225a () {
16357         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16358         if [ -z ${MDSSURVEY} ]; then
16359                 skip_env "mds-survey not found"
16360         fi
16361         [ $MDS1_VERSION -ge $(version_code 2.2.51) ] ||
16362                 skip "Need MDS version at least 2.2.51"
16363
16364         local mds=$(facet_host $SINGLEMDS)
16365         local target=$(do_nodes $mds 'lctl dl' |
16366                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
16367
16368         local cmd1="file_count=1000 thrhi=4"
16369         local cmd2="dir_count=2 layer=mdd stripe_count=0"
16370         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
16371         local cmd="$cmd1 $cmd2 $cmd3"
16372
16373         rm -f ${TMP}/mds_survey*
16374         echo + $cmd
16375         eval $cmd || error "mds-survey with zero-stripe failed"
16376         cat ${TMP}/mds_survey*
16377         rm -f ${TMP}/mds_survey*
16378 }
16379 run_test 225a "Metadata survey sanity with zero-stripe"
16380
16381 test_225b () {
16382         if [ -z ${MDSSURVEY} ]; then
16383                 skip_env "mds-survey not found"
16384         fi
16385         [ $MDS1_VERSION -ge $(version_code 2.2.51) ] ||
16386                 skip "Need MDS version at least 2.2.51"
16387         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16388         remote_mds_nodsh && skip "remote MDS with nodsh"
16389         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
16390                 skip_env "Need to mount OST to test"
16391         fi
16392
16393         local mds=$(facet_host $SINGLEMDS)
16394         local target=$(do_nodes $mds 'lctl dl' |
16395                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
16396
16397         local cmd1="file_count=1000 thrhi=4"
16398         local cmd2="dir_count=2 layer=mdd stripe_count=1"
16399         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
16400         local cmd="$cmd1 $cmd2 $cmd3"
16401
16402         rm -f ${TMP}/mds_survey*
16403         echo + $cmd
16404         eval $cmd || error "mds-survey with stripe_count failed"
16405         cat ${TMP}/mds_survey*
16406         rm -f ${TMP}/mds_survey*
16407 }
16408 run_test 225b "Metadata survey sanity with stripe_count = 1"
16409
16410 mcreate_path2fid () {
16411         local mode=$1
16412         local major=$2
16413         local minor=$3
16414         local name=$4
16415         local desc=$5
16416         local path=$DIR/$tdir/$name
16417         local fid
16418         local rc
16419         local fid_path
16420
16421         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
16422                 error "cannot create $desc"
16423
16424         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
16425         rc=$?
16426         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
16427
16428         fid_path=$($LFS fid2path $MOUNT $fid)
16429         rc=$?
16430         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
16431
16432         [ "$path" == "$fid_path" ] ||
16433                 error "fid2path returned $fid_path, expected $path"
16434
16435         echo "pass with $path and $fid"
16436 }
16437
16438 test_226a () {
16439         rm -rf $DIR/$tdir
16440         mkdir -p $DIR/$tdir
16441
16442         mcreate_path2fid 0010666 0 0 fifo "FIFO"
16443         mcreate_path2fid 0020666 1 3 null "character special file (null)"
16444         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
16445         mcreate_path2fid 0040666 0 0 dir "directory"
16446         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
16447         mcreate_path2fid 0100666 0 0 file "regular file"
16448         mcreate_path2fid 0120666 0 0 link "symbolic link"
16449         mcreate_path2fid 0140666 0 0 sock "socket"
16450 }
16451 run_test 226a "call path2fid and fid2path on files of all type"
16452
16453 test_226b () {
16454         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
16455
16456         local MDTIDX=1
16457
16458         rm -rf $DIR/$tdir
16459         mkdir -p $DIR/$tdir
16460         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
16461                 error "create remote directory failed"
16462         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
16463         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
16464                                 "character special file (null)"
16465         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
16466                                 "character special file (no device)"
16467         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
16468         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
16469                                 "block special file (loop)"
16470         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
16471         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
16472         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
16473 }
16474 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
16475
16476 # LU-1299 Executing or running ldd on a truncated executable does not
16477 # cause an out-of-memory condition.
16478 test_227() {
16479         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16480         [ -z "$(which ldd)" ] && skip_env "should have ldd tool"
16481
16482         dd if=$(which date) of=$MOUNT/date bs=1k count=1
16483         chmod +x $MOUNT/date
16484
16485         $MOUNT/date > /dev/null
16486         ldd $MOUNT/date > /dev/null
16487         rm -f $MOUNT/date
16488 }
16489 run_test 227 "running truncated executable does not cause OOM"
16490
16491 # LU-1512 try to reuse idle OI blocks
16492 test_228a() {
16493         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16494         remote_mds_nodsh && skip "remote MDS with nodsh"
16495         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
16496
16497         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
16498         local myDIR=$DIR/$tdir
16499
16500         mkdir -p $myDIR
16501         #define OBD_FAIL_SEQ_EXHAUST             0x1002
16502         $LCTL set_param fail_loc=0x80001002
16503         createmany -o $myDIR/t- 10000
16504         $LCTL set_param fail_loc=0
16505         # The guard is current the largest FID holder
16506         touch $myDIR/guard
16507         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
16508                     tr -d '[')
16509         local IDX=$(($SEQ % 64))
16510
16511         do_facet $SINGLEMDS sync
16512         # Make sure journal flushed.
16513         sleep 6
16514         local blk1=$(do_facet $SINGLEMDS \
16515                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
16516                      grep Blockcount | awk '{print $4}')
16517
16518         # Remove old files, some OI blocks will become idle.
16519         unlinkmany $myDIR/t- 10000
16520         # Create new files, idle OI blocks should be reused.
16521         createmany -o $myDIR/t- 2000
16522         do_facet $SINGLEMDS sync
16523         # Make sure journal flushed.
16524         sleep 6
16525         local blk2=$(do_facet $SINGLEMDS \
16526                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
16527                      grep Blockcount | awk '{print $4}')
16528
16529         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
16530 }
16531 run_test 228a "try to reuse idle OI blocks"
16532
16533 test_228b() {
16534         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16535         remote_mds_nodsh && skip "remote MDS with nodsh"
16536         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
16537
16538         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
16539         local myDIR=$DIR/$tdir
16540
16541         mkdir -p $myDIR
16542         #define OBD_FAIL_SEQ_EXHAUST             0x1002
16543         $LCTL set_param fail_loc=0x80001002
16544         createmany -o $myDIR/t- 10000
16545         $LCTL set_param fail_loc=0
16546         # The guard is current the largest FID holder
16547         touch $myDIR/guard
16548         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
16549                     tr -d '[')
16550         local IDX=$(($SEQ % 64))
16551
16552         do_facet $SINGLEMDS sync
16553         # Make sure journal flushed.
16554         sleep 6
16555         local blk1=$(do_facet $SINGLEMDS \
16556                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
16557                      grep Blockcount | awk '{print $4}')
16558
16559         # Remove old files, some OI blocks will become idle.
16560         unlinkmany $myDIR/t- 10000
16561
16562         # stop the MDT
16563         stop $SINGLEMDS || error "Fail to stop MDT."
16564         # remount the MDT
16565         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
16566
16567         df $MOUNT || error "Fail to df."
16568         # Create new files, idle OI blocks should be reused.
16569         createmany -o $myDIR/t- 2000
16570         do_facet $SINGLEMDS sync
16571         # Make sure journal flushed.
16572         sleep 6
16573         local blk2=$(do_facet $SINGLEMDS \
16574                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
16575                      grep Blockcount | awk '{print $4}')
16576
16577         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
16578 }
16579 run_test 228b "idle OI blocks can be reused after MDT restart"
16580
16581 #LU-1881
16582 test_228c() {
16583         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16584         remote_mds_nodsh && skip "remote MDS with nodsh"
16585         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
16586
16587         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
16588         local myDIR=$DIR/$tdir
16589
16590         mkdir -p $myDIR
16591         #define OBD_FAIL_SEQ_EXHAUST             0x1002
16592         $LCTL set_param fail_loc=0x80001002
16593         # 20000 files can guarantee there are index nodes in the OI file
16594         createmany -o $myDIR/t- 20000
16595         $LCTL set_param fail_loc=0
16596         # The guard is current the largest FID holder
16597         touch $myDIR/guard
16598         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
16599                     tr -d '[')
16600         local IDX=$(($SEQ % 64))
16601
16602         do_facet $SINGLEMDS sync
16603         # Make sure journal flushed.
16604         sleep 6
16605         local blk1=$(do_facet $SINGLEMDS \
16606                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
16607                      grep Blockcount | awk '{print $4}')
16608
16609         # Remove old files, some OI blocks will become idle.
16610         unlinkmany $myDIR/t- 20000
16611         rm -f $myDIR/guard
16612         # The OI file should become empty now
16613
16614         # Create new files, idle OI blocks should be reused.
16615         createmany -o $myDIR/t- 2000
16616         do_facet $SINGLEMDS sync
16617         # Make sure journal flushed.
16618         sleep 6
16619         local blk2=$(do_facet $SINGLEMDS \
16620                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
16621                      grep Blockcount | awk '{print $4}')
16622
16623         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
16624 }
16625 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
16626
16627 test_229() { # LU-2482, LU-3448
16628         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16629         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
16630         [ $MDS1_VERSION -lt $(version_code 2.4.53) ] &&
16631                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53"
16632
16633         rm -f $DIR/$tfile
16634
16635         # Create a file with a released layout and stripe count 2.
16636         $MULTIOP $DIR/$tfile H2c ||
16637                 error "failed to create file with released layout"
16638
16639         $LFS getstripe -v $DIR/$tfile
16640
16641         local pattern=$($LFS getstripe -L $DIR/$tfile)
16642         [ X"$pattern" = X"released" ] || error "pattern error ($pattern)"
16643
16644         local stripe_count=$($LFS getstripe -c $DIR/$tfile) ||
16645                 error "getstripe"
16646         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
16647         stat $DIR/$tfile || error "failed to stat released file"
16648
16649         chown $RUNAS_ID $DIR/$tfile ||
16650                 error "chown $RUNAS_ID $DIR/$tfile failed"
16651
16652         chgrp $RUNAS_ID $DIR/$tfile ||
16653                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
16654
16655         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
16656         rm $DIR/$tfile || error "failed to remove released file"
16657 }
16658 run_test 229 "getstripe/stat/rm/attr changes work on released files"
16659
16660 test_230a() {
16661         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16662         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
16663         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
16664                 skip "Need MDS version at least 2.11.52"
16665
16666         local MDTIDX=1
16667
16668         test_mkdir $DIR/$tdir
16669         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
16670         local mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230_local)
16671         [ $mdt_idx -ne 0 ] &&
16672                 error "create local directory on wrong MDT $mdt_idx"
16673
16674         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
16675                         error "create remote directory failed"
16676         local mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230)
16677         [ $mdt_idx -ne $MDTIDX ] &&
16678                 error "create remote directory on wrong MDT $mdt_idx"
16679
16680         createmany -o $DIR/$tdir/test_230/t- 10 ||
16681                 error "create files on remote directory failed"
16682         mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230/t-0)
16683         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
16684         rm -r $DIR/$tdir || error "unlink remote directory failed"
16685 }
16686 run_test 230a "Create remote directory and files under the remote directory"
16687
16688 test_230b() {
16689         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16690         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
16691         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
16692                 skip "Need MDS version at least 2.11.52"
16693
16694         local MDTIDX=1
16695         local mdt_index
16696         local i
16697         local file
16698         local pid
16699         local stripe_count
16700         local migrate_dir=$DIR/$tdir/migrate_dir
16701         local other_dir=$DIR/$tdir/other_dir
16702
16703         test_mkdir $DIR/$tdir
16704         test_mkdir -i0 -c1 $migrate_dir
16705         test_mkdir -i0 -c1 $other_dir
16706         for ((i=0; i<10; i++)); do
16707                 mkdir -p $migrate_dir/dir_${i}
16708                 createmany -o $migrate_dir/dir_${i}/f 10 ||
16709                         error "create files under remote dir failed $i"
16710         done
16711
16712         cp /etc/passwd $migrate_dir/$tfile
16713         cp /etc/passwd $other_dir/$tfile
16714         chattr +SAD $migrate_dir
16715         chattr +SAD $migrate_dir/$tfile
16716
16717         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
16718         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
16719         local old_dir_mode=$(stat -c%f $migrate_dir)
16720         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
16721
16722         mkdir -p $migrate_dir/dir_default_stripe2
16723         $LFS setstripe -c 2 $migrate_dir/dir_default_stripe2
16724         $LFS setstripe -c 2 $migrate_dir/${tfile}_stripe2
16725
16726         mkdir -p $other_dir
16727         ln $migrate_dir/$tfile $other_dir/luna
16728         ln $migrate_dir/$tfile $migrate_dir/sofia
16729         ln $other_dir/$tfile $migrate_dir/david
16730         ln -s $migrate_dir/$tfile $other_dir/zachary
16731         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
16732         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
16733
16734         local len
16735         local lnktgt
16736
16737         # inline symlink
16738         for len in 58 59 60; do
16739                 lnktgt=$(str_repeat 'l' $len)
16740                 touch $migrate_dir/$lnktgt
16741                 ln -s $lnktgt $migrate_dir/${len}char_ln
16742         done
16743
16744         # PATH_MAX
16745         for len in 4094 4095; do
16746                 lnktgt=$(str_repeat 'l' $len)
16747                 ln -s $lnktgt $migrate_dir/${len}char_ln
16748         done
16749
16750         # NAME_MAX
16751         for len in 254 255; do
16752                 touch $migrate_dir/$(str_repeat 'l' $len)
16753         done
16754
16755         $LFS migrate -m $MDTIDX $migrate_dir ||
16756                 error "fails on migrating remote dir to MDT1"
16757
16758         echo "migratate to MDT1, then checking.."
16759         for ((i = 0; i < 10; i++)); do
16760                 for file in $(find $migrate_dir/dir_${i}); do
16761                         mdt_index=$($LFS getstripe -m $file)
16762                         # broken symlink getstripe will fail
16763                         [ $mdt_index -ne $MDTIDX ] && stat -L $file &&
16764                                 error "$file is not on MDT${MDTIDX}"
16765                 done
16766         done
16767
16768         # the multiple link file should still in MDT0
16769         mdt_index=$($LFS getstripe -m $migrate_dir/$tfile)
16770         [ $mdt_index == 0 ] ||
16771                 error "$file is not on MDT${MDTIDX}"
16772
16773         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
16774         [ "$old_dir_flag" = "$new_dir_flag" ] ||
16775                 error " expect $old_dir_flag get $new_dir_flag"
16776
16777         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
16778         [ "$old_file_flag" = "$new_file_flag" ] ||
16779                 error " expect $old_file_flag get $new_file_flag"
16780
16781         local new_dir_mode=$(stat -c%f $migrate_dir)
16782         [ "$old_dir_mode" = "$new_dir_mode" ] ||
16783                 error "expect mode $old_dir_mode get $new_dir_mode"
16784
16785         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
16786         [ "$old_file_mode" = "$new_file_mode" ] ||
16787                 error "expect mode $old_file_mode get $new_file_mode"
16788
16789         diff /etc/passwd $migrate_dir/$tfile ||
16790                 error "$tfile different after migration"
16791
16792         diff /etc/passwd $other_dir/luna ||
16793                 error "luna different after migration"
16794
16795         diff /etc/passwd $migrate_dir/sofia ||
16796                 error "sofia different after migration"
16797
16798         diff /etc/passwd $migrate_dir/david ||
16799                 error "david different after migration"
16800
16801         diff /etc/passwd $other_dir/zachary ||
16802                 error "zachary different after migration"
16803
16804         diff /etc/passwd $migrate_dir/${tfile}_ln ||
16805                 error "${tfile}_ln different after migration"
16806
16807         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
16808                 error "${tfile}_ln_other different after migration"
16809
16810         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
16811         [ $stripe_count = 2 ] ||
16812                 error "dir strpe_count $d != 2 after migration."
16813
16814         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
16815         [ $stripe_count = 2 ] ||
16816                 error "file strpe_count $d != 2 after migration."
16817
16818         #migrate back to MDT0
16819         MDTIDX=0
16820
16821         $LFS migrate -m $MDTIDX $migrate_dir ||
16822                 error "fails on migrating remote dir to MDT0"
16823
16824         echo "migrate back to MDT0, checking.."
16825         for file in $(find $migrate_dir); do
16826                 mdt_index=$($LFS getstripe -m $file)
16827                 [ $mdt_index -ne $MDTIDX ] && stat -L $file &&
16828                         error "$file is not on MDT${MDTIDX}"
16829         done
16830
16831         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
16832         [ "$old_dir_flag" = "$new_dir_flag" ] ||
16833                 error " expect $old_dir_flag get $new_dir_flag"
16834
16835         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
16836         [ "$old_file_flag" = "$new_file_flag" ] ||
16837                 error " expect $old_file_flag get $new_file_flag"
16838
16839         local new_dir_mode=$(stat -c%f $migrate_dir)
16840         [ "$old_dir_mode" = "$new_dir_mode" ] ||
16841                 error "expect mode $old_dir_mode get $new_dir_mode"
16842
16843         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
16844         [ "$old_file_mode" = "$new_file_mode" ] ||
16845                 error "expect mode $old_file_mode get $new_file_mode"
16846
16847         diff /etc/passwd ${migrate_dir}/$tfile ||
16848                 error "$tfile different after migration"
16849
16850         diff /etc/passwd ${other_dir}/luna ||
16851                 error "luna different after migration"
16852
16853         diff /etc/passwd ${migrate_dir}/sofia ||
16854                 error "sofia different after migration"
16855
16856         diff /etc/passwd ${other_dir}/zachary ||
16857                 error "zachary different after migration"
16858
16859         diff /etc/passwd $migrate_dir/${tfile}_ln ||
16860                 error "${tfile}_ln different after migration"
16861
16862         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
16863                 error "${tfile}_ln_other different after migration"
16864
16865         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
16866         [ $stripe_count = 2 ] ||
16867                 error "dir strpe_count $d != 2 after migration."
16868
16869         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
16870         [ $stripe_count = 2 ] ||
16871                 error "file strpe_count $d != 2 after migration."
16872
16873         rm -rf $DIR/$tdir || error "rm dir failed after migration"
16874 }
16875 run_test 230b "migrate directory"
16876
16877 test_230c() {
16878         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16879         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
16880         remote_mds_nodsh && skip "remote MDS with nodsh"
16881         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
16882                 skip "Need MDS version at least 2.11.52"
16883
16884         local MDTIDX=1
16885         local total=3
16886         local mdt_index
16887         local file
16888         local migrate_dir=$DIR/$tdir/migrate_dir
16889
16890         #If migrating directory fails in the middle, all entries of
16891         #the directory is still accessiable.
16892         test_mkdir $DIR/$tdir
16893         test_mkdir -i0 -c1 $migrate_dir
16894         test_mkdir -i1 -c1 $DIR/$tdir/remote_dir
16895         stat $migrate_dir
16896         createmany -o $migrate_dir/f $total ||
16897                 error "create files under ${migrate_dir} failed"
16898
16899         # fail after migrating top dir, and this will fail only once, so the
16900         # first sub file migration will fail (currently f3), others succeed.
16901         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
16902         do_facet mds1 lctl set_param fail_loc=0x1801
16903         local t=$(ls $migrate_dir | wc -l)
16904         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
16905                 error "migrate should fail"
16906         local u=$(ls $migrate_dir | wc -l)
16907         [ "$u" == "$t" ] || error "$u != $t during migration"
16908
16909         # add new dir/file should succeed
16910         mkdir $migrate_dir/dir ||
16911                 error "mkdir failed under migrating directory"
16912         touch $migrate_dir/file ||
16913                 error "create file failed under migrating directory"
16914
16915         # add file with existing name should fail
16916         for file in $migrate_dir/f*; do
16917                 stat $file > /dev/null || error "stat $file failed"
16918                 $OPENFILE -f O_CREAT:O_EXCL $file &&
16919                         error "open(O_CREAT|O_EXCL) $file should fail"
16920                 $MULTIOP $file m && error "create $file should fail"
16921                 touch $DIR/$tdir/remote_dir/$tfile ||
16922                         error "touch $tfile failed"
16923                 ln $DIR/$tdir/remote_dir/$tfile $file &&
16924                         error "link $file should fail"
16925                 mdt_index=$($LFS getstripe -m $file)
16926                 if [ $mdt_index == 0 ]; then
16927                         # file failed to migrate is not allowed to rename to
16928                         mv $DIR/$tdir/remote_dir/$tfile $file &&
16929                                 error "rename to $file should fail"
16930                 else
16931                         mv $DIR/$tdir/remote_dir/$tfile $file ||
16932                                 error "rename to $file failed"
16933                 fi
16934                 echo hello >> $file || error "write $file failed"
16935         done
16936
16937         # resume migration with different options should fail
16938         $LFS migrate -m 0 $migrate_dir &&
16939                 error "migrate -m 0 $migrate_dir should fail"
16940
16941         $LFS migrate -m $MDTIDX -c 2 $migrate_dir &&
16942                 error "migrate -c 2 $migrate_dir should fail"
16943
16944         # resume migration should succeed
16945         $LFS migrate -m $MDTIDX $migrate_dir ||
16946                 error "migrate $migrate_dir failed"
16947
16948         echo "Finish migration, then checking.."
16949         for file in $(find $migrate_dir); do
16950                 mdt_index=$($LFS getstripe -m $file)
16951                 [ $mdt_index == $MDTIDX ] ||
16952                         error "$file is not on MDT${MDTIDX}"
16953         done
16954
16955         rm -rf $DIR/$tdir || error "rm dir failed after migration"
16956 }
16957 run_test 230c "check directory accessiblity if migration failed"
16958
16959 test_230d() {
16960         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16961         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
16962         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
16963                 skip "Need MDS version at least 2.11.52"
16964         # LU-11235
16965         [ "$mds1_FSTYPE" == "zfs" ] && skip "skip ZFS backend"
16966
16967         local migrate_dir=$DIR/$tdir/migrate_dir
16968         local old_index
16969         local new_index
16970         local old_count
16971         local new_count
16972         local new_hash
16973         local mdt_index
16974         local i
16975         local j
16976
16977         old_index=$((RANDOM % MDSCOUNT))
16978         old_count=$((MDSCOUNT - old_index))
16979         new_index=$((RANDOM % MDSCOUNT))
16980         new_count=$((MDSCOUNT - new_index))
16981         new_hash="all_char"
16982
16983         [ $old_count -gt 1 ] && old_count=$((old_count - RANDOM % old_count))
16984         [ $new_count -gt 1 ] && new_count=$((new_count - RANDOM % new_count))
16985
16986         test_mkdir $DIR/$tdir
16987         test_mkdir -i $old_index -c $old_count $migrate_dir
16988
16989         for ((i=0; i<100; i++)); do
16990                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
16991                 createmany -o $migrate_dir/dir_${i}/f 100 ||
16992                         error "create files under remote dir failed $i"
16993         done
16994
16995         echo -n "Migrate from MDT$old_index "
16996         [ $old_count -gt 1 ] && echo -n "... MDT$((old_index + old_count - 1)) "
16997         echo -n "to MDT$new_index"
16998         [ $new_count -gt 1 ] && echo -n " ... MDT$((new_index + new_count - 1))"
16999         echo
17000
17001         echo "$LFS migrate -m$new_index -c$new_count -H $new_hash $migrate_dir"
17002         $LFS migrate -m $new_index -c $new_count -H $new_hash $migrate_dir ||
17003                 error "migrate remote dir error"
17004
17005         echo "Finish migration, then checking.."
17006         for file in $(find $migrate_dir); do
17007                 mdt_index=$($LFS getstripe -m $file)
17008                 if [ $mdt_index -lt $new_index ] ||
17009                    [ $mdt_index -gt $((new_index + new_count - 1)) ]; then
17010                         error "$file is on MDT$mdt_index"
17011                 fi
17012         done
17013
17014         rm -rf $DIR/$tdir || error "rm dir failed after migration"
17015 }
17016 run_test 230d "check migrate big directory"
17017
17018 test_230e() {
17019         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17020         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17021         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
17022                 skip "Need MDS version at least 2.11.52"
17023
17024         local i
17025         local j
17026         local a_fid
17027         local b_fid
17028
17029         mkdir -p $DIR/$tdir
17030         mkdir $DIR/$tdir/migrate_dir
17031         mkdir $DIR/$tdir/other_dir
17032         touch $DIR/$tdir/migrate_dir/a
17033         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
17034         ls $DIR/$tdir/other_dir
17035
17036         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
17037                 error "migrate dir fails"
17038
17039         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
17040         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
17041
17042         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
17043         [ $mdt_index == 0 ] || error "a is not on MDT0"
17044
17045         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
17046                 error "migrate dir fails"
17047
17048         mdt_index=$($LFS getstripe -m $DIR/$tdir/other_dir)
17049         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
17050
17051         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
17052         [ $mdt_index == 1 ] || error "a is not on MDT1"
17053
17054         mdt_index=$($LFS getstripe -m $DIR/$tdir/other_dir/b)
17055         [ $mdt_index == 1 ] || error "b is not on MDT1"
17056
17057         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
17058         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
17059
17060         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
17061
17062         rm -rf $DIR/$tdir || error "rm dir failed after migration"
17063 }
17064 run_test 230e "migrate mulitple local link files"
17065
17066 test_230f() {
17067         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17068         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17069         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
17070                 skip "Need MDS version at least 2.11.52"
17071
17072         local a_fid
17073         local ln_fid
17074
17075         mkdir -p $DIR/$tdir
17076         mkdir $DIR/$tdir/migrate_dir
17077         $LFS mkdir -i1 $DIR/$tdir/other_dir
17078         touch $DIR/$tdir/migrate_dir/a
17079         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
17080         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
17081         ls $DIR/$tdir/other_dir
17082
17083         # a should be migrated to MDT1, since no other links on MDT0
17084         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
17085                 error "#1 migrate dir fails"
17086         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
17087         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
17088         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
17089         [ $mdt_index == 1 ] || error "a is not on MDT1"
17090
17091         # a should stay on MDT1, because it is a mulitple link file
17092         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
17093                 error "#2 migrate dir fails"
17094         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
17095         [ $mdt_index == 1 ] || error "a is not on MDT1"
17096
17097         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
17098                 error "#3 migrate dir fails"
17099
17100         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
17101         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
17102         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
17103
17104         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
17105         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
17106
17107         # a should be migrated to MDT0, since no other links on MDT1
17108         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
17109                 error "#4 migrate dir fails"
17110         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
17111         [ $mdt_index == 0 ] || error "a is not on MDT0"
17112
17113         rm -rf $DIR/$tdir || error "rm dir failed after migration"
17114 }
17115 run_test 230f "migrate mulitple remote link files"
17116
17117 test_230g() {
17118         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17119         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17120         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
17121                 skip "Need MDS version at least 2.11.52"
17122
17123         mkdir -p $DIR/$tdir/migrate_dir
17124
17125         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
17126                 error "migrating dir to non-exist MDT succeeds"
17127         true
17128 }
17129 run_test 230g "migrate dir to non-exist MDT"
17130
17131 test_230h() {
17132         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17133         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17134         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
17135                 skip "Need MDS version at least 2.11.52"
17136
17137         local mdt_index
17138
17139         mkdir -p $DIR/$tdir/migrate_dir
17140
17141         $LFS migrate -m1 $DIR &&
17142                 error "migrating mountpoint1 should fail"
17143
17144         $LFS migrate -m1 $DIR/$tdir/.. &&
17145                 error "migrating mountpoint2 should fail"
17146
17147         # same as mv
17148         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. &&
17149                 error "migrating $tdir/migrate_dir/.. should fail"
17150
17151         true
17152 }
17153 run_test 230h "migrate .. and root"
17154
17155 test_230i() {
17156         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17157         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17158         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
17159                 skip "Need MDS version at least 2.11.52"
17160
17161         mkdir -p $DIR/$tdir/migrate_dir
17162
17163         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
17164                 error "migration fails with a tailing slash"
17165
17166         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
17167                 error "migration fails with two tailing slashes"
17168 }
17169 run_test 230i "lfs migrate -m tolerates trailing slashes"
17170
17171 test_230j() {
17172         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
17173         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
17174                 skip "Need MDS version at least 2.11.52"
17175
17176         $LFS mkdir -m 0 -c 1 $DIR/$tdir || error "mkdir $tdir failed"
17177         $LFS setstripe -E 1M -L mdt $DIR/$tdir/$tfile ||
17178                 error "create $tfile failed"
17179         cat /etc/passwd > $DIR/$tdir/$tfile
17180
17181         $LFS migrate -m 1 $DIR/$tdir
17182
17183         cmp /etc/passwd $DIR/$tdir/$tfile ||
17184                 error "DoM file mismatch after migration"
17185 }
17186 run_test 230j "DoM file data not changed after dir migration"
17187
17188 test_230k() {
17189         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs"
17190         [ $MDS1_VERSION -lt $(version_code 2.11.56) ] &&
17191                 skip "Need MDS version at least 2.11.56"
17192
17193         local total=20
17194         local files_on_starting_mdt=0
17195
17196         $LFS mkdir -i -1 -c 2 $DIR/$tdir || error "mkdir failed"
17197         $LFS getdirstripe $DIR/$tdir
17198         for i in $(seq $total); do
17199                 echo $((i*i - i)) > $DIR/$tdir/$tfile.$i || error "write failed"
17200                 [[ $($LFS getstripe -m $DIR/$tdir/$tfile.$i) -eq 0 ]] &&
17201                         files_on_starting_mdt=$((files_on_starting_mdt + 1))
17202         done
17203
17204         echo "$files_on_starting_mdt files on MDT0"
17205
17206         $LFS migrate -m 1,3 $DIR/$tdir || error "migrate -m 1,3 failed"
17207         $LFS getdirstripe $DIR/$tdir
17208
17209         files_on_starting_mdt=0
17210         for i in $(seq $total); do
17211                 $(echo $((i*i - i)) | cmp $DIR/$tdir/$tfile.$i -) ||
17212                         error "file $tfile.$i mismatch after migration"
17213                 [[ $($LFS getstripe -m $DIR/$tdir/$tfile.$i) -eq 1 ]] &&
17214                         files_on_starting_mdt=$((files_on_starting_mdt + 1))
17215         done
17216
17217         echo "$files_on_starting_mdt files on MDT1 after migration"
17218         [[ $files_on_starting_mdt -eq $total ]] && error "all files on MDT1"
17219
17220         $LFS migrate -m 0 -c 2 $DIR/$tdir || error "migrate -m 0 -c 2 failed"
17221         $LFS getdirstripe $DIR/$tdir
17222
17223         files_on_starting_mdt=0
17224         for i in $(seq $total); do
17225                 $(echo $((i*i - i)) | cmp $DIR/$tdir/$tfile.$i -) ||
17226                         error "file $tfile.$i mismatch after 2nd migration"
17227                 [[ $($LFS getstripe -m $DIR/$tdir/$tfile.$i) -eq 0 ]] &&
17228                         files_on_starting_mdt=$((files_on_starting_mdt + 1))
17229         done
17230
17231         echo "$files_on_starting_mdt files on MDT0 after 2nd migration"
17232         [[ $files_on_starting_mdt -eq $total ]] && error "all files on MDT0"
17233
17234         true
17235 }
17236 run_test 230k "file data not changed after dir migration"
17237
17238 test_230l() {
17239         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
17240         [ $MDS1_VERSION -lt $(version_code 2.11.56) ] &&
17241                 skip "Need MDS version at least 2.11.56"
17242
17243         $LFS mkdir -i 0 -c 1 $DIR/$tdir || error "mkdir failed"
17244         createmany -o $DIR/$tdir/f___________________________________ 1000 ||
17245                 error "create files under remote dir failed $i"
17246         $LFS migrate -m 1 $DIR/$tdir || error "migrate failed"
17247 }
17248 run_test 230l "readdir between MDTs won't crash"
17249
17250 test_230m() {
17251         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
17252         [ $MDS1_VERSION -lt $(version_code 2.11.56) ] &&
17253                 skip "Need MDS version at least 2.11.56"
17254
17255         local MDTIDX=1
17256         local mig_dir=$DIR/$tdir/migrate_dir
17257         local longstr="aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
17258         local shortstr="b"
17259         local val
17260
17261         echo "Creating files and dirs with xattrs"
17262         test_mkdir $DIR/$tdir
17263         test_mkdir -i0 -c1 $mig_dir
17264         mkdir $mig_dir/dir
17265         setfattr -n user.attr1 -v $longstr $mig_dir/dir ||
17266                 error "cannot set xattr attr1 on dir"
17267         setfattr -n user.attr2 -v $shortstr $mig_dir/dir ||
17268                 error "cannot set xattr attr2 on dir"
17269         touch $mig_dir/dir/f0
17270         setfattr -n user.attr1 -v $longstr $mig_dir/dir/f0 ||
17271                 error "cannot set xattr attr1 on file"
17272         setfattr -n user.attr2 -v $shortstr $mig_dir/dir/f0 ||
17273                 error "cannot set xattr attr2 on file"
17274         sync ; sync ; echo 3 > /proc/sys/vm/drop_caches
17275         val=$(getfattr --only-values -n user.attr1 $mig_dir/dir 2>/dev/null)
17276         [ "$val" = $longstr ] || error "xattr attr1 not set properly on dir"
17277         val=$(getfattr --only-values -n user.attr2 $mig_dir/dir 2>/dev/null)
17278         [ "$val" = $shortstr ] || error "xattr attr2 not set properly on dir"
17279         val=$(getfattr --only-values -n user.attr1 $mig_dir/dir/f0 2>/dev/null)
17280         [ "$val" = $longstr ] || error "xattr attr1 not set properly on file"
17281         val=$(getfattr --only-values -n user.attr2 $mig_dir/dir/f0 2>/dev/null)
17282         [ "$val" = $shortstr ] || error "xattr attr2 not set properly on file"
17283
17284         echo "Migrating to MDT1"
17285         $LFS migrate -m $MDTIDX $mig_dir ||
17286                 error "fails on migrating dir to MDT1"
17287
17288         sync ; sync ; echo 3 > /proc/sys/vm/drop_caches
17289         echo "Checking xattrs"
17290         val=$(getfattr --only-values -n user.attr1 $mig_dir/dir 2>/dev/null)
17291         [ "$val" = $longstr ] ||
17292                 error "expecting xattr1 $longstr on dir, found $val"
17293         val=$(getfattr --only-values -n user.attr2 $mig_dir/dir 2>/dev/null)
17294         [ "$val" = $shortstr ] ||
17295                 error "expecting xattr2 $shortstr on dir, found $val"
17296         val=$(getfattr --only-values -n user.attr1 $mig_dir/dir/f0 2>/dev/null)
17297         [ "$val" = $longstr ] ||
17298                 error "expecting xattr1 $longstr on file, found $val"
17299         val=$(getfattr --only-values -n user.attr2 $mig_dir/dir/f0 2>/dev/null)
17300         [ "$val" = $shortstr ] ||
17301                 error "expecting xattr2 $shortstr on file, found $val"
17302 }
17303 run_test 230m "xattrs not changed after dir migration"
17304
17305 test_231a()
17306 {
17307         # For simplicity this test assumes that max_pages_per_rpc
17308         # is the same across all OSCs
17309         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
17310         local bulk_size=$((max_pages * PAGE_SIZE))
17311         local brw_size=$(do_facet ost1 $LCTL get_param -n obdfilter.*.brw_size |
17312                                        head -n 1)
17313
17314         mkdir -p $DIR/$tdir
17315         $LFS setstripe -S ${brw_size}M $DIR/$tdir ||
17316                 error "failed to set stripe with -S ${brw_size}M option"
17317
17318         # clear the OSC stats
17319         $LCTL set_param osc.*.stats=0 &>/dev/null
17320         stop_writeback
17321
17322         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
17323         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
17324                 oflag=direct &>/dev/null || error "dd failed"
17325
17326         sync; sleep 1; sync # just to be safe
17327         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
17328         if [ x$nrpcs != "x1" ]; then
17329                 $LCTL get_param osc.*.stats
17330                 error "found $nrpcs ost_write RPCs, not 1 as expected"
17331         fi
17332
17333         start_writeback
17334         # Drop the OSC cache, otherwise we will read from it
17335         cancel_lru_locks osc
17336
17337         # clear the OSC stats
17338         $LCTL set_param osc.*.stats=0 &>/dev/null
17339
17340         # Client reads $bulk_size.
17341         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
17342                 iflag=direct &>/dev/null || error "dd failed"
17343
17344         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
17345         if [ x$nrpcs != "x1" ]; then
17346                 $LCTL get_param osc.*.stats
17347                 error "found $nrpcs ost_read RPCs, not 1 as expected"
17348         fi
17349 }
17350 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
17351
17352 test_231b() {
17353         mkdir -p $DIR/$tdir
17354         local i
17355         for i in {0..1023}; do
17356                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
17357                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
17358                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
17359         done
17360         sync
17361 }
17362 run_test 231b "must not assert on fully utilized OST request buffer"
17363
17364 test_232a() {
17365         mkdir -p $DIR/$tdir
17366         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
17367
17368         #define OBD_FAIL_LDLM_OST_LVB            0x31c
17369         do_facet ost1 $LCTL set_param fail_loc=0x31c
17370
17371         # ignore dd failure
17372         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
17373
17374         do_facet ost1 $LCTL set_param fail_loc=0
17375         umount_client $MOUNT || error "umount failed"
17376         mount_client $MOUNT || error "mount failed"
17377         stop ost1 || error "cannot stop ost1"
17378         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
17379 }
17380 run_test 232a "failed lock should not block umount"
17381
17382 test_232b() {
17383         [ $MDS1_VERSION -ge $(version_code 2.10.58) ] ||
17384                 skip "Need MDS version at least 2.10.58"
17385
17386         mkdir -p $DIR/$tdir
17387         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
17388         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1
17389         sync
17390         cancel_lru_locks osc
17391
17392         #define OBD_FAIL_LDLM_OST_LVB            0x31c
17393         do_facet ost1 $LCTL set_param fail_loc=0x31c
17394
17395         # ignore failure
17396         $LFS data_version $DIR/$tdir/$tfile || true
17397
17398         do_facet ost1 $LCTL set_param fail_loc=0
17399         umount_client $MOUNT || error "umount failed"
17400         mount_client $MOUNT || error "mount failed"
17401         stop ost1 || error "cannot stop ost1"
17402         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
17403 }
17404 run_test 232b "failed data version lock should not block umount"
17405
17406 test_233a() {
17407         [ $MDS1_VERSION -ge $(version_code 2.3.64) ] ||
17408                 skip "Need MDS version at least 2.3.64"
17409         [ -n "$FILESET" ] && skip_env "SKIP due to FILESET set"
17410
17411         local fid=$($LFS path2fid $MOUNT)
17412
17413         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
17414                 error "cannot access $MOUNT using its FID '$fid'"
17415 }
17416 run_test 233a "checking that OBF of the FS root succeeds"
17417
17418 test_233b() {
17419         [ $MDS1_VERSION -ge $(version_code 2.5.90) ] ||
17420                 skip "Need MDS version at least 2.5.90"
17421         [ -n "$FILESET" ] && skip_env "SKIP due to FILESET set"
17422
17423         local fid=$($LFS path2fid $MOUNT/.lustre)
17424
17425         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
17426                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
17427
17428         fid=$($LFS path2fid $MOUNT/.lustre/fid)
17429         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
17430                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
17431 }
17432 run_test 233b "checking that OBF of the FS .lustre succeeds"
17433
17434 test_234() {
17435         local p="$TMP/sanityN-$TESTNAME.parameters"
17436         save_lustre_params client "llite.*.xattr_cache" > $p
17437         lctl set_param llite.*.xattr_cache 1 ||
17438                 skip_env "xattr cache is not supported"
17439
17440         mkdir -p $DIR/$tdir || error "mkdir failed"
17441         touch $DIR/$tdir/$tfile || error "touch failed"
17442         # OBD_FAIL_LLITE_XATTR_ENOMEM
17443         $LCTL set_param fail_loc=0x1405
17444         getfattr -n user.attr $DIR/$tdir/$tfile &&
17445                 error "getfattr should have failed with ENOMEM"
17446         $LCTL set_param fail_loc=0x0
17447         rm -rf $DIR/$tdir
17448
17449         restore_lustre_params < $p
17450         rm -f $p
17451 }
17452 run_test 234 "xattr cache should not crash on ENOMEM"
17453
17454 test_235() {
17455         [ $MDS1_VERSION -lt $(version_code 2.4.52) ] &&
17456                 skip "Need MDS version at least 2.4.52"
17457
17458         flock_deadlock $DIR/$tfile
17459         local RC=$?
17460         case $RC in
17461                 0)
17462                 ;;
17463                 124) error "process hangs on a deadlock"
17464                 ;;
17465                 *) error "error executing flock_deadlock $DIR/$tfile"
17466                 ;;
17467         esac
17468 }
17469 run_test 235 "LU-1715: flock deadlock detection does not work properly"
17470
17471 #LU-2935
17472 test_236() {
17473         check_swap_layouts_support
17474
17475         local ref1=/etc/passwd
17476         local ref2=/etc/group
17477         local file1=$DIR/$tdir/f1
17478         local file2=$DIR/$tdir/f2
17479
17480         test_mkdir -c1 $DIR/$tdir
17481         $LFS setstripe -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
17482         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
17483         $LFS setstripe -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
17484         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
17485         local fd=$(free_fd)
17486         local cmd="exec $fd<>$file2"
17487         eval $cmd
17488         rm $file2
17489         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
17490                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
17491         cmd="exec $fd>&-"
17492         eval $cmd
17493         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
17494
17495         #cleanup
17496         rm -rf $DIR/$tdir
17497 }
17498 run_test 236 "Layout swap on open unlinked file"
17499
17500 # LU-4659 linkea consistency
17501 test_238() {
17502         [[ $MDS1_VERSION -gt $(version_code 2.5.57) ]] ||
17503                 [[ $MDS1_VERSION -gt $(version_code 2.5.1) &&
17504                    $MDS1_VERSION -lt $(version_code 2.5.50) ]] ||
17505                 skip "Need MDS version at least 2.5.58 or 2.5.2+"
17506
17507         touch $DIR/$tfile
17508         ln $DIR/$tfile $DIR/$tfile.lnk
17509         touch $DIR/$tfile.new
17510         mv $DIR/$tfile.new $DIR/$tfile
17511         local fid1=$($LFS path2fid $DIR/$tfile)
17512         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
17513         local path1=$($LFS fid2path $FSNAME "$fid1")
17514         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
17515         local path2=$($LFS fid2path $FSNAME "$fid2")
17516         [ $tfile.lnk == $path2 ] ||
17517                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
17518         rm -f $DIR/$tfile*
17519 }
17520 run_test 238 "Verify linkea consistency"
17521
17522 test_239A() { # was test_239
17523         [ $MDS1_VERSION -lt $(version_code 2.5.60) ] &&
17524                 skip "Need MDS version at least 2.5.60"
17525
17526         local list=$(comma_list $(mdts_nodes))
17527
17528         mkdir -p $DIR/$tdir
17529         createmany -o $DIR/$tdir/f- 5000
17530         unlinkmany $DIR/$tdir/f- 5000
17531         [ $MDS1_VERSION -gt $(version_code 2.10.4) ] &&
17532                 do_nodes $list "lctl set_param -n osp.*.force_sync=1"
17533         changes=$(do_nodes $list "lctl get_param -n osp.*MDT*.sync_changes \
17534                         osp.*MDT*.sync_in_flight" | calc_sum)
17535         [ "$changes" -eq 0 ] || error "$changes not synced"
17536 }
17537 run_test 239A "osp_sync test"
17538
17539 test_239a() { #LU-5297
17540         remote_mds_nodsh && skip "remote MDS with nodsh"
17541
17542         touch $DIR/$tfile
17543         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
17544         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
17545         chgrp $RUNAS_GID $DIR/$tfile
17546         wait_delete_completed
17547 }
17548 run_test 239a "process invalid osp sync record correctly"
17549
17550 test_239b() { #LU-5297
17551         remote_mds_nodsh && skip "remote MDS with nodsh"
17552
17553         touch $DIR/$tfile1
17554         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
17555         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
17556         chgrp $RUNAS_GID $DIR/$tfile1
17557         wait_delete_completed
17558         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
17559         touch $DIR/$tfile2
17560         chgrp $RUNAS_GID $DIR/$tfile2
17561         wait_delete_completed
17562 }
17563 run_test 239b "process osp sync record with ENOMEM error correctly"
17564
17565 test_240() {
17566         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17567         remote_mds_nodsh && skip "remote MDS with nodsh"
17568
17569         mkdir -p $DIR/$tdir
17570
17571         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
17572                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
17573         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
17574                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
17575
17576         umount_client $MOUNT || error "umount failed"
17577         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
17578         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
17579         mount_client $MOUNT || error "failed to mount client"
17580
17581         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
17582         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
17583 }
17584 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
17585
17586 test_241_bio() {
17587         local count=$1
17588         local bsize=$2
17589
17590         for LOOP in $(seq $count); do
17591                 dd if=$DIR/$tfile of=/dev/null bs=$bsize count=1 2>/dev/null
17592                 cancel_lru_locks $OSC || true
17593         done
17594 }
17595
17596 test_241_dio() {
17597         local count=$1
17598         local bsize=$2
17599
17600         for LOOP in $(seq $1); do
17601                 dd if=$DIR/$tfile of=/dev/null bs=$bsize count=1 iflag=direct \
17602                         2>/dev/null
17603         done
17604 }
17605
17606 test_241a() { # was test_241
17607         local bsize=$PAGE_SIZE
17608
17609         (( bsize < 40960 )) && bsize=40960
17610         dd if=/dev/zero of=$DIR/$tfile count=1 bs=$bsize
17611         ls -la $DIR/$tfile
17612         cancel_lru_locks $OSC
17613         test_241_bio 1000 $bsize &
17614         PID=$!
17615         test_241_dio 1000 $bsize
17616         wait $PID
17617 }
17618 run_test 241a "bio vs dio"
17619
17620 test_241b() {
17621         local bsize=$PAGE_SIZE
17622
17623         (( bsize < 40960 )) && bsize=40960
17624         dd if=/dev/zero of=$DIR/$tfile count=1 bs=$bsize
17625         ls -la $DIR/$tfile
17626         test_241_dio 1000 $bsize &
17627         PID=$!
17628         test_241_dio 1000 $bsize
17629         wait $PID
17630 }
17631 run_test 241b "dio vs dio"
17632
17633 test_242() {
17634         remote_mds_nodsh && skip "remote MDS with nodsh"
17635
17636         mkdir -p $DIR/$tdir
17637         touch $DIR/$tdir/$tfile
17638
17639         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
17640         do_facet mds1 lctl set_param fail_loc=0x105
17641         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
17642
17643         do_facet mds1 lctl set_param fail_loc=0
17644         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
17645 }
17646 run_test 242 "mdt_readpage failure should not cause directory unreadable"
17647
17648 test_243()
17649 {
17650         test_mkdir $DIR/$tdir
17651         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
17652 }
17653 run_test 243 "various group lock tests"
17654
17655 test_244a()
17656 {
17657         test_mkdir $DIR/$tdir
17658         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
17659         sendfile_grouplock $DIR/$tdir/$tfile || \
17660                 error "sendfile+grouplock failed"
17661         rm -rf $DIR/$tdir
17662 }
17663 run_test 244a "sendfile with group lock tests"
17664
17665 test_244b()
17666 {
17667         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
17668
17669         local threads=50
17670         local size=$((1024*1024))
17671
17672         test_mkdir $DIR/$tdir
17673         for i in $(seq 1 $threads); do
17674                 local file=$DIR/$tdir/file_$((i / 10))
17675                 $MULTIOP $file OG1234w$size_$((i % 3))w$size_$((i % 4))g1234c &
17676                 local pids[$i]=$!
17677         done
17678         for i in $(seq 1 $threads); do
17679                 wait ${pids[$i]}
17680         done
17681 }
17682 run_test 244b "multi-threaded write with group lock"
17683
17684 test_245() {
17685         local flagname="multi_mod_rpcs"
17686         local connect_data_name="max_mod_rpcs"
17687         local out
17688
17689         # check if multiple modify RPCs flag is set
17690         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
17691                 grep "connect_flags:")
17692         echo "$out"
17693
17694         echo "$out" | grep -qw $flagname
17695         if [ $? -ne 0 ]; then
17696                 echo "connect flag $flagname is not set"
17697                 return
17698         fi
17699
17700         # check if multiple modify RPCs data is set
17701         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
17702         echo "$out"
17703
17704         echo "$out" | grep -qw $connect_data_name ||
17705                 error "import should have connect data $connect_data_name"
17706 }
17707 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
17708
17709 cleanup_247() {
17710         local submount=$1
17711
17712         trap 0
17713         umount_client $submount
17714         rmdir $submount
17715 }
17716
17717 test_247a() {
17718         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
17719                 grep -q subtree ||
17720                 skip_env "Fileset feature is not supported"
17721
17722         local submount=${MOUNT}_$tdir
17723
17724         mkdir $MOUNT/$tdir
17725         mkdir -p $submount || error "mkdir $submount failed"
17726         FILESET="$FILESET/$tdir" mount_client $submount ||
17727                 error "mount $submount failed"
17728         trap "cleanup_247 $submount" EXIT
17729         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
17730         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
17731                 error "read $MOUNT/$tdir/$tfile failed"
17732         cleanup_247 $submount
17733 }
17734 run_test 247a "mount subdir as fileset"
17735
17736 test_247b() {
17737         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
17738                 skip_env "Fileset feature is not supported"
17739
17740         local submount=${MOUNT}_$tdir
17741
17742         rm -rf $MOUNT/$tdir
17743         mkdir -p $submount || error "mkdir $submount failed"
17744         SKIP_FILESET=1
17745         FILESET="$FILESET/$tdir" mount_client $submount &&
17746                 error "mount $submount should fail"
17747         rmdir $submount
17748 }
17749 run_test 247b "mount subdir that dose not exist"
17750
17751 test_247c() {
17752         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
17753                 skip_env "Fileset feature is not supported"
17754
17755         local submount=${MOUNT}_$tdir
17756
17757         mkdir -p $MOUNT/$tdir/dir1
17758         mkdir -p $submount || error "mkdir $submount failed"
17759         trap "cleanup_247 $submount" EXIT
17760         FILESET="$FILESET/$tdir" mount_client $submount ||
17761                 error "mount $submount failed"
17762         local fid=$($LFS path2fid $MOUNT/)
17763         $LFS fid2path $submount $fid && error "fid2path should fail"
17764         cleanup_247 $submount
17765 }
17766 run_test 247c "running fid2path outside root"
17767
17768 test_247d() {
17769         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
17770                 skip "Fileset feature is not supported"
17771
17772         local submount=${MOUNT}_$tdir
17773
17774         mkdir -p $MOUNT/$tdir/dir1
17775         mkdir -p $submount || error "mkdir $submount failed"
17776         FILESET="$FILESET/$tdir" mount_client $submount ||
17777                 error "mount $submount failed"
17778         trap "cleanup_247 $submount" EXIT
17779         local fid=$($LFS path2fid $submount/dir1)
17780         $LFS fid2path $submount $fid || error "fid2path should succeed"
17781         cleanup_247 $submount
17782 }
17783 run_test 247d "running fid2path inside root"
17784
17785 # LU-8037
17786 test_247e() {
17787         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
17788                 grep -q subtree ||
17789                 skip "Fileset feature is not supported"
17790
17791         local submount=${MOUNT}_$tdir
17792
17793         mkdir $MOUNT/$tdir
17794         mkdir -p $submount || error "mkdir $submount failed"
17795         FILESET="$FILESET/.." mount_client $submount &&
17796                 error "mount $submount should fail"
17797         rmdir $submount
17798 }
17799 run_test 247e "mount .. as fileset"
17800
17801 test_248a() {
17802         local fast_read_sav=$($LCTL get_param -n llite.*.fast_read 2>/dev/null)
17803         [ -z "$fast_read_sav" ] && skip "no fast read support"
17804
17805         # create a large file for fast read verification
17806         dd if=/dev/zero of=$DIR/$tfile bs=1M count=128 > /dev/null 2>&1
17807
17808         # make sure the file is created correctly
17809         $CHECKSTAT -s $((128*1024*1024)) $DIR/$tfile ||
17810                 { rm -f $DIR/$tfile; skip "file creation error"; }
17811
17812         echo "Test 1: verify that fast read is 4 times faster on cache read"
17813
17814         # small read with fast read enabled
17815         $LCTL set_param -n llite.*.fast_read=1
17816         local t_fast=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
17817                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
17818                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
17819         # small read with fast read disabled
17820         $LCTL set_param -n llite.*.fast_read=0
17821         local t_slow=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
17822                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
17823                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
17824
17825         # verify that fast read is 4 times faster for cache read
17826         [ $(bc <<< "4 * $t_fast < $t_slow") -eq 1 ] ||
17827                 error_not_in_vm "fast read was not 4 times faster: " \
17828                            "$t_fast vs $t_slow"
17829
17830         echo "Test 2: verify the performance between big and small read"
17831         $LCTL set_param -n llite.*.fast_read=1
17832
17833         # 1k non-cache read
17834         cancel_lru_locks osc
17835         local t_1k=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
17836                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
17837                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
17838
17839         # 1M non-cache read
17840         cancel_lru_locks osc
17841         local t_1m=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
17842                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
17843                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
17844
17845         # verify that big IO is not 4 times faster than small IO
17846         [ $(bc <<< "4 * $t_1k >= $t_1m") -eq 1 ] ||
17847                 error_not_in_vm "bigger IO is way too fast: $t_1k vs $t_1m"
17848
17849         $LCTL set_param -n llite.*.fast_read=$fast_read_sav
17850         rm -f $DIR/$tfile
17851 }
17852 run_test 248a "fast read verification"
17853
17854 test_248b() {
17855         # Default short_io_bytes=16384, try both smaller and larger sizes.
17856         # Lustre O_DIRECT read and write needs to be a multiple of PAGE_SIZE.
17857         # 6017024 = 2^12*13*113 = 47008*128 = 11752*512 = 4096*1469 = 53248*113
17858         echo "bs=53248 count=113 normal buffered write"
17859         dd if=/dev/urandom of=$TMP/$tfile.0 bs=53248 count=113 ||
17860                 error "dd of initial data file failed"
17861         stack_trap "rm -f $DIR/$tfile.[0-3] $TMP/$tfile.[0-3]" EXIT
17862
17863         echo "bs=47008 count=128 oflag=dsync normal write $tfile.0"
17864         dd if=$TMP/$tfile.0 of=$DIR/$tfile.0 bs=47008 count=128 oflag=dsync ||
17865                 error "dd with sync normal writes failed"
17866         cmp $TMP/$tfile.0 $DIR/$tfile.0 || error "compare $DIR/$tfile.0 failed"
17867
17868         echo "bs=11752 count=512 oflag=dsync small write $tfile.1"
17869         dd if=$TMP/$tfile.0 of=$DIR/$tfile.1 bs=11752 count=512 oflag=dsync ||
17870                 error "dd with sync small writes failed"
17871         cmp $TMP/$tfile.0 $DIR/$tfile.1 || error "compare $DIR/$tfile.1 failed"
17872
17873         cancel_lru_locks osc
17874
17875         # calculate the small O_DIRECT size and count for the client PAGE_SIZE
17876         local num=$((13 * 113 / (PAGE_SIZE / 4096)))
17877         echo "bs=$PAGE_SIZE count=$num iflag=direct small read $tfile.1"
17878         dd if=$DIR/$tfile.1 of=$TMP/$tfile.1 bs=$PAGE_SIZE count=$num \
17879                 iflag=direct || error "dd with O_DIRECT small read failed"
17880         # adjust bytes checked to handle larger PAGE_SIZE for ARM/PPC
17881         cmp --bytes=$((PAGE_SIZE * num)) $TMP/$tfile.0 $TMP/$tfile.1 ||
17882                 error "compare $TMP/$tfile.1 failed"
17883
17884         local save=$($LCTL get_param -n osc.*OST000*.short_io_bytes | head -n 1)
17885         stack_trap "$LCTL set_param osc.$FSNAME-*.short_io_bytes=$save" EXIT
17886
17887         # just to see what the maximum tunable value is, and test parsing
17888         echo "test invalid parameter 2MB"
17889         $LCTL set_param osc.$FSNAME-OST0000*.short_io_bytes=2M &&
17890                 error "too-large short_io_bytes allowed"
17891         echo "test maximum parameter 512KB"
17892         # if we can set a larger short_io_bytes, run test regardless of version
17893         if ! $LCTL set_param osc.$FSNAME-OST0000*.short_io_bytes=512K; then
17894                 # older clients may not allow setting it this large, that's OK
17895                 [ $CLIENT_VERSION -ge $(version_code 2.13.50) ] ||
17896                         skip "Need at least client version 2.13.50"
17897                 error "medium short_io_bytes failed"
17898         fi
17899         $LCTL get_param osc.$FSNAME-OST0000*.short_io_bytes
17900         size=$($LCTL get_param -n osc.$FSNAME-OST0000*.short_io_bytes)
17901
17902         echo "test large parameter 64KB"
17903         $LCTL set_param osc.$FSNAME-*.short_io_bytes=65536
17904         $LCTL get_param osc.$FSNAME-OST0000*.short_io_bytes
17905
17906         echo "bs=47008 count=128 oflag=dsync large write $tfile.2"
17907         dd if=$TMP/$tfile.0 of=$DIR/$tfile.2 bs=47008 count=128 oflag=dsync ||
17908                 error "dd with sync large writes failed"
17909         cmp $TMP/$tfile.0 $DIR/$tfile.2 || error "compare $DIR/$tfile.2 failed"
17910
17911         # calculate the large O_DIRECT size and count for the client PAGE_SIZE
17912         local size=$(((4096 * 13 + PAGE_SIZE - 1) / PAGE_SIZE * PAGE_SIZE))
17913         num=$((113 * 4096 / PAGE_SIZE))
17914         echo "bs=$size count=$num oflag=direct large write $tfile.3"
17915         dd if=$TMP/$tfile.0 of=$DIR/$tfile.3 bs=$size count=$num oflag=direct ||
17916                 error "dd with O_DIRECT large writes failed"
17917         cmp --bytes=$((size * num)) $TMP/$tfile.0 $DIR/$tfile.3 ||
17918                 error "compare $DIR/$tfile.3 failed"
17919
17920         cancel_lru_locks osc
17921
17922         echo "bs=$size count=$num iflag=direct large read $tfile.2"
17923         dd if=$DIR/$tfile.2 of=$TMP/$tfile.2 bs=$size count=$num iflag=direct ||
17924                 error "dd with O_DIRECT large read failed"
17925         cmp --bytes=$((size * num)) $TMP/$tfile.0 $TMP/$tfile.2 ||
17926                 error "compare $TMP/$tfile.2 failed"
17927
17928         echo "bs=$size count=$num iflag=direct large read $tfile.3"
17929         dd if=$DIR/$tfile.3 of=$TMP/$tfile.3 bs=$size count=$num iflag=direct ||
17930                 error "dd with O_DIRECT large read failed"
17931         cmp --bytes=$((size * num)) $TMP/$tfile.0 $TMP/$tfile.3 ||
17932                 error "compare $TMP/$tfile.3 failed"
17933 }
17934 run_test 248b "test short_io read and write for both small and large sizes"
17935
17936 test_249() { # LU-7890
17937         [ $MDS1_VERSION -lt $(version_code 2.8.53) ] &&
17938                 skip "Need at least version 2.8.54"
17939
17940         rm -f $DIR/$tfile
17941         $LFS setstripe -c 1 $DIR/$tfile
17942         # Offset 2T == 4k * 512M
17943         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 seek=512M ||
17944                 error "dd to 2T offset failed"
17945 }
17946 run_test 249 "Write above 2T file size"
17947
17948 test_250() {
17949         [ "$(facet_fstype ost$(($($LFS getstripe -i $DIR/$tfile) + 1)))" = "zfs" ] \
17950          && skip "no 16TB file size limit on ZFS"
17951
17952         $LFS setstripe -c 1 $DIR/$tfile
17953         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
17954         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
17955         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
17956         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
17957                 conv=notrunc,fsync && error "append succeeded"
17958         return 0
17959 }
17960 run_test 250 "Write above 16T limit"
17961
17962 test_251() {
17963         $LFS setstripe -c -1 -S 1048576 $DIR/$tfile
17964
17965         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
17966         #Skip once - writing the first stripe will succeed
17967         $LCTL set_param fail_loc=0xa0001407 fail_val=1
17968         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
17969                 error "short write happened"
17970
17971         $LCTL set_param fail_loc=0xa0001407 fail_val=1
17972         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
17973                 error "short read happened"
17974
17975         rm -f $DIR/$tfile
17976 }
17977 run_test 251 "Handling short read and write correctly"
17978
17979 test_252() {
17980         remote_mds_nodsh && skip "remote MDS with nodsh"
17981         remote_ost_nodsh && skip "remote OST with nodsh"
17982         if [ "$ost1_FSTYPE" != ldiskfs ] || [ "$mds1_FSTYPE" != ldiskfs ]; then
17983                 skip_env "ldiskfs only test"
17984         fi
17985
17986         local tgt
17987         local dev
17988         local out
17989         local uuid
17990         local num
17991         local gen
17992
17993         # check lr_reader on OST0000
17994         tgt=ost1
17995         dev=$(facet_device $tgt)
17996         out=$(do_facet $tgt $LR_READER $dev)
17997         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
17998         echo "$out"
17999         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
18000         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
18001                 error "Invalid uuid returned by $LR_READER on target $tgt"
18002         echo -e "uuid returned by $LR_READER is '$uuid'\n"
18003
18004         # check lr_reader -c on MDT0000
18005         tgt=mds1
18006         dev=$(facet_device $tgt)
18007         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
18008                 skip "$LR_READER does not support additional options"
18009         fi
18010         out=$(do_facet $tgt $LR_READER -c $dev)
18011         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
18012         echo "$out"
18013         num=$(echo "$out" | grep -c "mdtlov")
18014         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
18015                 error "Invalid number of mdtlov clients returned by $LR_READER"
18016         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
18017
18018         # check lr_reader -cr on MDT0000
18019         out=$(do_facet $tgt $LR_READER -cr $dev)
18020         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
18021         echo "$out"
18022         echo "$out" | grep -q "^reply_data:$" ||
18023                 error "$LR_READER should have returned 'reply_data' section"
18024         num=$(echo "$out" | grep -c "client_generation")
18025         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
18026 }
18027 run_test 252 "check lr_reader tool"
18028
18029 test_253() {
18030         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18031         remote_mds_nodsh && skip "remote MDS with nodsh"
18032         remote_mgs_nodsh && skip "remote MGS with nodsh"
18033
18034         local ostidx=0
18035         local rc=0
18036         local ost_name=$(ostname_from_index $ostidx)
18037
18038         # on the mdt's osc
18039         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $ost_name)
18040         do_facet $SINGLEMDS $LCTL get_param -n \
18041                 osp.$mdtosc_proc1.reserved_mb_high ||
18042                 skip  "remote MDS does not support reserved_mb_high"
18043
18044         rm -rf $DIR/$tdir
18045         wait_mds_ost_sync
18046         wait_delete_completed
18047         mkdir $DIR/$tdir
18048
18049         pool_add $TESTNAME || error "Pool creation failed"
18050         pool_add_targets $TESTNAME 0 || error "Pool add targets failed"
18051
18052         $LFS setstripe $DIR/$tdir -i $ostidx -c 1 -p $FSNAME.$TESTNAME ||
18053                 error "Setstripe failed"
18054
18055         dd if=/dev/zero of=$DIR/$tdir/$tfile.0 bs=1M count=10
18056
18057         local wms=$(ost_watermarks_set_enospc $tfile $ostidx |
18058                     grep "watermarks")
18059         stack_trap "ost_watermarks_clear_enospc $tfile $ostidx $wms" EXIT
18060
18061         local oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
18062                         osp.$mdtosc_proc1.prealloc_status)
18063         echo "prealloc_status $oa_status"
18064
18065         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=1M count=1 &&
18066                 error "File creation should fail"
18067
18068         #object allocation was stopped, but we still able to append files
18069         dd if=/dev/zero of=$DIR/$tdir/$tfile.0 bs=1M seek=6 count=5 \
18070                 oflag=append || error "Append failed"
18071
18072         rm -f $DIR/$tdir/$tfile.0
18073
18074         # For this test, we want to delete the files we created to go out of
18075         # space but leave the watermark, so we remain nearly out of space
18076         ost_watermarks_enospc_delete_files $tfile $ostidx
18077
18078         wait_delete_completed
18079
18080         sleep_maxage
18081
18082         for i in $(seq 10 12); do
18083                 dd if=/dev/zero of=$DIR/$tdir/$tfile.$i bs=1M count=1 \
18084                         2>/dev/null || error "File creation failed after rm"
18085         done
18086
18087         oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
18088                         osp.$mdtosc_proc1.prealloc_status)
18089         echo "prealloc_status $oa_status"
18090
18091         if (( oa_status != 0 )); then
18092                 error "Object allocation still disable after rm"
18093         fi
18094 }
18095 run_test 253 "Check object allocation limit"
18096
18097 test_254() {
18098         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18099         remote_mds_nodsh && skip "remote MDS with nodsh"
18100         do_facet $SINGLEMDS $LCTL get_param -n mdd.$MDT0.changelog_size ||
18101                 skip "MDS does not support changelog_size"
18102
18103         local cl_user
18104         local MDT0=$(facet_svc $SINGLEMDS)
18105
18106         changelog_register || error "changelog_register failed"
18107
18108         changelog_clear 0 || error "changelog_clear failed"
18109
18110         local size1=$(do_facet $SINGLEMDS \
18111                       $LCTL get_param -n mdd.$MDT0.changelog_size)
18112         echo "Changelog size $size1"
18113
18114         rm -rf $DIR/$tdir
18115         $LFS mkdir -i 0 $DIR/$tdir
18116         # change something
18117         mkdir -p $DIR/$tdir/pics/2008/zachy
18118         touch $DIR/$tdir/pics/2008/zachy/timestamp
18119         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
18120         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
18121         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
18122         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
18123         rm $DIR/$tdir/pics/desktop.jpg
18124
18125         local size2=$(do_facet $SINGLEMDS \
18126                       $LCTL get_param -n mdd.$MDT0.changelog_size)
18127         echo "Changelog size after work $size2"
18128
18129         (( $size2 > $size1 )) ||
18130                 error "new Changelog size=$size2 less than old size=$size1"
18131 }
18132 run_test 254 "Check changelog size"
18133
18134 ladvise_no_type()
18135 {
18136         local type=$1
18137         local file=$2
18138
18139         lfs ladvise -a invalid $file 2>&1 | grep "Valid types" |
18140                 awk -F: '{print $2}' | grep $type > /dev/null
18141         if [ $? -ne 0 ]; then
18142                 return 0
18143         fi
18144         return 1
18145 }
18146
18147 ladvise_no_ioctl()
18148 {
18149         local file=$1
18150
18151         lfs ladvise -a willread $file > /dev/null 2>&1
18152         if [ $? -eq 0 ]; then
18153                 return 1
18154         fi
18155
18156         lfs ladvise -a willread $file 2>&1 |
18157                 grep "Inappropriate ioctl for device" > /dev/null
18158         if [ $? -eq 0 ]; then
18159                 return 0
18160         fi
18161         return 1
18162 }
18163
18164 percent() {
18165         bc <<<"scale=2; ($1 - $2) * 100 / $2"
18166 }
18167
18168 # run a random read IO workload
18169 # usage: random_read_iops <filename> <filesize> <iosize>
18170 random_read_iops() {
18171         local file=$1
18172         local fsize=$2
18173         local iosize=${3:-4096}
18174
18175         $READS -f $file -s $fsize -b $iosize -n $((fsize / iosize)) -t 60 |
18176                 sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##'
18177 }
18178
18179 drop_file_oss_cache() {
18180         local file="$1"
18181         local nodes="$2"
18182
18183         $LFS ladvise -a dontneed $file 2>/dev/null ||
18184                 do_nodes $nodes "echo 3 > /proc/sys/vm/drop_caches"
18185 }
18186
18187 ladvise_willread_performance()
18188 {
18189         local repeat=10
18190         local average_origin=0
18191         local average_cache=0
18192         local average_ladvise=0
18193
18194         for ((i = 1; i <= $repeat; i++)); do
18195                 echo "Iter $i/$repeat: reading without willread hint"
18196                 cancel_lru_locks osc
18197                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
18198                 local speed_origin=$(random_read_iops $DIR/$tfile $size)
18199                 echo "Iter $i/$repeat: uncached speed: $speed_origin"
18200                 average_origin=$(bc <<<"$average_origin + $speed_origin")
18201
18202                 cancel_lru_locks osc
18203                 local speed_cache=$(random_read_iops $DIR/$tfile $size)
18204                 echo "Iter $i/$repeat: OSS cache speed: $speed_cache"
18205                 average_cache=$(bc <<<"$average_cache + $speed_cache")
18206
18207                 cancel_lru_locks osc
18208                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
18209                 $LFS ladvise -a willread $DIR/$tfile || error "ladvise failed"
18210                 local speed_ladvise=$(random_read_iops $DIR/$tfile $size)
18211                 echo "Iter $i/$repeat: ladvise speed: $speed_ladvise"
18212                 average_ladvise=$(bc <<<"$average_ladvise + $speed_ladvise")
18213         done
18214         average_origin=$(bc <<<"scale=2; $average_origin / $repeat")
18215         average_cache=$(bc <<<"scale=2; $average_cache / $repeat")
18216         average_ladvise=$(bc <<<"scale=2; $average_ladvise / $repeat")
18217
18218         speedup_cache=$(percent $average_cache $average_origin)
18219         speedup_ladvise=$(percent $average_ladvise $average_origin)
18220
18221         echo "Average uncached read: $average_origin"
18222         echo "Average speedup with OSS cached read: " \
18223                 "$average_cache = +$speedup_cache%"
18224         echo "Average speedup with ladvise willread: " \
18225                 "$average_ladvise = +$speedup_ladvise%"
18226
18227         local lowest_speedup=20
18228         if [ ${average_cache%.*} -lt $lowest_speedup ]; then
18229                 echo "Speedup with OSS cached read less than $lowest_speedup%," \
18230                         "got $average_cache%. Skipping ladvise willread check."
18231                 return 0
18232         fi
18233
18234         # the test won't work on ZFS until it supports 'ladvise dontneed', but
18235         # it is still good to run until then to exercise 'ladvise willread'
18236         ! $LFS ladvise -a dontneed $DIR/$tfile &&
18237                 [ "$ost1_FSTYPE" = "zfs" ] &&
18238                 echo "osd-zfs does not support dontneed or drop_caches" &&
18239                 return 0
18240
18241         lowest_speedup=$(bc <<<"scale=2; $average_cache / 2")
18242         [ ${average_ladvise%.*} -gt $lowest_speedup ] ||
18243                 error_not_in_vm "Speedup with willread is less than " \
18244                         "$lowest_speedup%, got $average_ladvise%"
18245 }
18246
18247 test_255a() {
18248         [ $OST1_VERSION -lt $(version_code 2.8.54) ] &&
18249                 skip "lustre < 2.8.54 does not support ladvise "
18250         remote_ost_nodsh && skip "remote OST with nodsh"
18251
18252         lfs setstripe -c -1 -i 0 $DIR/$tfile || error "$tfile failed"
18253
18254         ladvise_no_type willread $DIR/$tfile &&
18255                 skip "willread ladvise is not supported"
18256
18257         ladvise_no_ioctl $DIR/$tfile &&
18258                 skip "ladvise ioctl is not supported"
18259
18260         local size_mb=100
18261         local size=$((size_mb * 1048576))
18262         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
18263                 error "dd to $DIR/$tfile failed"
18264
18265         lfs ladvise -a willread $DIR/$tfile ||
18266                 error "Ladvise failed with no range argument"
18267
18268         lfs ladvise -a willread -s 0 $DIR/$tfile ||
18269                 error "Ladvise failed with no -l or -e argument"
18270
18271         lfs ladvise -a willread -e 1 $DIR/$tfile ||
18272                 error "Ladvise failed with only -e argument"
18273
18274         lfs ladvise -a willread -l 1 $DIR/$tfile ||
18275                 error "Ladvise failed with only -l argument"
18276
18277         lfs ladvise -a willread -s 2 -e 1 $DIR/$tfile &&
18278                 error "End offset should not be smaller than start offset"
18279
18280         lfs ladvise -a willread -s 2 -e 2 $DIR/$tfile &&
18281                 error "End offset should not be equal to start offset"
18282
18283         lfs ladvise -a willread -s $size -l 1 $DIR/$tfile ||
18284                 error "Ladvise failed with overflowing -s argument"
18285
18286         lfs ladvise -a willread -s 1 -e $((size + 1)) $DIR/$tfile ||
18287                 error "Ladvise failed with overflowing -e argument"
18288
18289         lfs ladvise -a willread -s 1 -l $size $DIR/$tfile ||
18290                 error "Ladvise failed with overflowing -l argument"
18291
18292         lfs ladvise -a willread -l 1 -e 2 $DIR/$tfile &&
18293                 error "Ladvise succeeded with conflicting -l and -e arguments"
18294
18295         echo "Synchronous ladvise should wait"
18296         local delay=4
18297 #define OBD_FAIL_OST_LADVISE_PAUSE       0x237
18298         do_nodes $(comma_list $(osts_nodes)) \
18299                 $LCTL set_param fail_val=$delay fail_loc=0x237
18300
18301         local start_ts=$SECONDS
18302         lfs ladvise -a willread $DIR/$tfile ||
18303                 error "Ladvise failed with no range argument"
18304         local end_ts=$SECONDS
18305         local inteval_ts=$((end_ts - start_ts))
18306
18307         if [ $inteval_ts -lt $(($delay - 1)) ]; then
18308                 error "Synchronous advice didn't wait reply"
18309         fi
18310
18311         echo "Asynchronous ladvise shouldn't wait"
18312         local start_ts=$SECONDS
18313         lfs ladvise -a willread -b $DIR/$tfile ||
18314                 error "Ladvise failed with no range argument"
18315         local end_ts=$SECONDS
18316         local inteval_ts=$((end_ts - start_ts))
18317
18318         if [ $inteval_ts -gt $(($delay / 2)) ]; then
18319                 error "Asynchronous advice blocked"
18320         fi
18321
18322         do_nodes $(comma_list $(osts_nodes)) $LCTL set_param fail_loc=0
18323         ladvise_willread_performance
18324 }
18325 run_test 255a "check 'lfs ladvise -a willread'"
18326
18327 facet_meminfo() {
18328         local facet=$1
18329         local info=$2
18330
18331         do_facet $facet "cat /proc/meminfo | grep ^${info}:" | awk '{print $2}'
18332 }
18333
18334 test_255b() {
18335         [ $OST1_VERSION -lt $(version_code 2.8.54) ] &&
18336                 skip "lustre < 2.8.54 does not support ladvise "
18337         remote_ost_nodsh && skip "remote OST with nodsh"
18338
18339         lfs setstripe -c 1 -i 0 $DIR/$tfile
18340
18341         ladvise_no_type dontneed $DIR/$tfile &&
18342                 skip "dontneed ladvise is not supported"
18343
18344         ladvise_no_ioctl $DIR/$tfile &&
18345                 skip "ladvise ioctl is not supported"
18346
18347         ! $LFS ladvise -a dontneed $DIR/$tfile &&
18348                 [ "$ost1_FSTYPE" = "zfs" ] &&
18349                 skip "zfs-osd does not support 'ladvise dontneed'"
18350
18351         local size_mb=100
18352         local size=$((size_mb * 1048576))
18353         # In order to prevent disturbance of other processes, only check 3/4
18354         # of the memory usage
18355         local kibibytes=$((size_mb * 1024 * 3 / 4))
18356
18357         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
18358                 error "dd to $DIR/$tfile failed"
18359
18360         #force write to complete before dropping OST cache & checking memory
18361         sync
18362
18363         local total=$(facet_meminfo ost1 MemTotal)
18364         echo "Total memory: $total KiB"
18365
18366         do_facet ost1 "sync && echo 3 > /proc/sys/vm/drop_caches"
18367         local before_read=$(facet_meminfo ost1 Cached)
18368         echo "Cache used before read: $before_read KiB"
18369
18370         lfs ladvise -a willread $DIR/$tfile ||
18371                 error "Ladvise willread failed"
18372         local after_read=$(facet_meminfo ost1 Cached)
18373         echo "Cache used after read: $after_read KiB"
18374
18375         lfs ladvise -a dontneed $DIR/$tfile ||
18376                 error "Ladvise dontneed again failed"
18377         local no_read=$(facet_meminfo ost1 Cached)
18378         echo "Cache used after dontneed ladvise: $no_read KiB"
18379
18380         if [ $total -lt $((before_read + kibibytes)) ]; then
18381                 echo "Memory is too small, abort checking"
18382                 return 0
18383         fi
18384
18385         if [ $((before_read + kibibytes)) -gt $after_read ]; then
18386                 error "Ladvise willread should use more memory" \
18387                         "than $kibibytes KiB"
18388         fi
18389
18390         if [ $((no_read + kibibytes)) -gt $after_read ]; then
18391                 error "Ladvise dontneed should release more memory" \
18392                         "than $kibibytes KiB"
18393         fi
18394 }
18395 run_test 255b "check 'lfs ladvise -a dontneed'"
18396
18397 test_255c() {
18398         [ $OST1_VERSION -lt $(version_code 2.10.50) ] &&
18399                 skip "lustre < 2.10.50 does not support lockahead"
18400
18401         local count
18402         local new_count
18403         local difference
18404         local i
18405         local rc
18406
18407         test_mkdir -p $DIR/$tdir
18408         $LFS setstripe -i 0 -c 1 $DIR/$tdir
18409
18410         #test 10 returns only success/failure
18411         i=10
18412         lockahead_test -d $DIR/$tdir -t $i -f $tfile
18413         rc=$?
18414         if [ $rc -eq 255 ]; then
18415                 error "Ladvise test${i} failed, ${rc}"
18416         fi
18417
18418         #test 11 counts lock enqueue requests, all others count new locks
18419         i=11
18420         count=$(do_facet ost1 \
18421                 $LCTL get_param -n ost.OSS.ost.stats)
18422         count=$(echo "$count" | grep ldlm_extent_enqueue | awk '{ print $2 }')
18423
18424         lockahead_test -d $DIR/$tdir -t $i -f $tfile
18425         rc=$?
18426         if [ $rc -eq 255 ]; then
18427                 error "Ladvise test${i} failed, ${rc}"
18428         fi
18429
18430         new_count=$(do_facet ost1 \
18431                 $LCTL get_param -n ost.OSS.ost.stats)
18432         new_count=$(echo "$new_count" | grep ldlm_extent_enqueue | \
18433                    awk '{ print $2 }')
18434
18435         difference="$((new_count - count))"
18436         if [ $difference -ne $rc ]; then
18437                 error "Ladvise test${i}, bad enqueue count, returned " \
18438                       "${rc}, actual ${difference}"
18439         fi
18440
18441         for i in $(seq 12 21); do
18442                 # If we do not do this, we run the risk of having too many
18443                 # locks and starting lock cancellation while we are checking
18444                 # lock counts.
18445                 cancel_lru_locks osc
18446
18447                 count=$($LCTL get_param -n \
18448                        ldlm.namespaces.$FSNAME-OST0000*osc-[-0-9a-f]*.lock_unused_count)
18449
18450                 lockahead_test -d $DIR/$tdir -t $i -f $tfile
18451                 rc=$?
18452                 if [ $rc -eq 255 ]; then
18453                         error "Ladvise test ${i} failed, ${rc}"
18454                 fi
18455
18456                 new_count=$($LCTL get_param -n \
18457                        ldlm.namespaces.$FSNAME-OST0000*osc-[-0-9a-f]*.lock_unused_count)
18458                 difference="$((new_count - count))"
18459
18460                 # Test 15 output is divided by 100 to map down to valid return
18461                 if [ $i -eq 15 ]; then
18462                         rc="$((rc * 100))"
18463                 fi
18464
18465                 if [ $difference -ne $rc ]; then
18466                         error "Ladvise test ${i}, bad lock count, returned " \
18467                               "${rc}, actual ${difference}"
18468                 fi
18469         done
18470
18471         #test 22 returns only success/failure
18472         i=22
18473         lockahead_test -d $DIR/$tdir -t $i -f $tfile
18474         rc=$?
18475         if [ $rc -eq 255 ]; then
18476                 error "Ladvise test${i} failed, ${rc}"
18477         fi
18478 }
18479 run_test 255c "suite of ladvise lockahead tests"
18480
18481 test_256() {
18482         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18483         remote_mds_nodsh && skip "remote MDS with nodsh"
18484         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip "ldiskfs only test"
18485         changelog_users $SINGLEMDS | grep "^cl" &&
18486                 skip "active changelog user"
18487
18488         local cl_user
18489         local cat_sl
18490         local mdt_dev
18491
18492         mdt_dev=$(mdsdevname 1)
18493         echo $mdt_dev
18494
18495         changelog_register || error "changelog_register failed"
18496
18497         rm -rf $DIR/$tdir
18498         mkdir -p $DIR/$tdir
18499
18500         changelog_clear 0 || error "changelog_clear failed"
18501
18502         # change something
18503         touch $DIR/$tdir/{1..10}
18504
18505         # stop the MDT
18506         stop $SINGLEMDS || error "Fail to stop MDT"
18507
18508         # remount the MDT
18509
18510         start $SINGLEMDS $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT"
18511
18512         #after mount new plainllog is used
18513         touch $DIR/$tdir/{11..19}
18514         local tmpfile="$(mktemp --tmpdir -u $tfile.XXXXXX)"
18515         stack_trap "rm -f $tmpfile"
18516         cat_sl=$(do_facet $SINGLEMDS "sync; \
18517                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
18518                  llog_reader $tmpfile | grep -c type=1064553b")
18519         do_facet $SINGLEMDS llog_reader $tmpfile
18520
18521         [ $cat_sl != 2 ] && error "Changelog catalog has $cat_sl != 2 slots"
18522
18523         changelog_clear 0 || error "changelog_clear failed"
18524
18525         cat_sl=$(do_facet $SINGLEMDS "sync; \
18526                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
18527                  llog_reader $tmpfile | grep -c type=1064553b")
18528
18529         if (( cat_sl == 2 )); then
18530                 error "Empty plain llog was not deleted from changelog catalog"
18531         elif (( cat_sl != 1 )); then
18532                 error "Active plain llog shouldn't be deleted from catalog"
18533         fi
18534 }
18535 run_test 256 "Check llog delete for empty and not full state"
18536
18537 test_257() {
18538         remote_mds_nodsh && skip "remote MDS with nodsh"
18539         [[ $MDS1_VERSION -lt $(version_code 2.8.55) ]] &&
18540                 skip "Need MDS version at least 2.8.55"
18541
18542         test_mkdir $DIR/$tdir
18543
18544         setfattr -n trusted.name1 -v value1 $DIR/$tdir ||
18545                 error "setfattr -n trusted.name1=value1 $DIR/$tdir failed"
18546         stat $DIR/$tdir
18547
18548 #define OBD_FAIL_MDS_XATTR_REP                  0x161
18549         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
18550         local facet=mds$((mdtidx + 1))
18551         set_nodes_failloc $(facet_active_host $facet) 0x80000161
18552         getfattr -n trusted.name1 $DIR/$tdir 2> /dev/null
18553
18554         stop $facet || error "stop MDS failed"
18555         start $facet $(mdsdevname $((mdtidx + 1))) $MDS_MOUNT_OPTS ||
18556                 error "start MDS fail"
18557         wait_recovery_complete $facet
18558 }
18559 run_test 257 "xattr locks are not lost"
18560
18561 # Verify we take the i_mutex when security requires it
18562 test_258a() {
18563 #define OBD_FAIL_IMUTEX_SEC 0x141c
18564         $LCTL set_param fail_loc=0x141c
18565         touch $DIR/$tfile
18566         chmod u+s $DIR/$tfile
18567         chmod a+rwx $DIR/$tfile
18568         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
18569         RC=$?
18570         if [ $RC -ne 0 ]; then
18571                 error "error, failed to take i_mutex, rc=$?"
18572         fi
18573         rm -f $DIR/$tfile
18574 }
18575 run_test 258a "verify i_mutex security behavior when suid attributes is set"
18576
18577 # Verify we do NOT take the i_mutex in the normal case
18578 test_258b() {
18579 #define OBD_FAIL_IMUTEX_NOSEC 0x141d
18580         $LCTL set_param fail_loc=0x141d
18581         touch $DIR/$tfile
18582         chmod a+rwx $DIR
18583         chmod a+rw $DIR/$tfile
18584         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
18585         RC=$?
18586         if [ $RC -ne 0 ]; then
18587                 error "error, took i_mutex unnecessarily, rc=$?"
18588         fi
18589         rm -f $DIR/$tfile
18590
18591 }
18592 run_test 258b "verify i_mutex security behavior"
18593
18594 test_259() {
18595         local file=$DIR/$tfile
18596         local before
18597         local after
18598
18599         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip "ldiskfs only test"
18600
18601         stack_trap "rm -f $file" EXIT
18602
18603         wait_delete_completed
18604         before=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
18605         echo "before: $before"
18606
18607         $LFS setstripe -i 0 -c 1 $file
18608         dd if=/dev/zero of=$file bs=1M count=10 || error "couldn't write"
18609         sync_all_data
18610         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
18611         echo "after write: $after"
18612
18613 #define OBD_FAIL_OSD_FAIL_AT_TRUNCATE          0x2301
18614         do_facet ost1 $LCTL set_param fail_loc=0x2301
18615         $TRUNCATE $file 0
18616         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
18617         echo "after truncate: $after"
18618
18619         stop ost1
18620         do_facet ost1 $LCTL set_param fail_loc=0
18621         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
18622         sleep 2
18623         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
18624         echo "after restart: $after"
18625         [ $((after - before)) -ge $(fs_log_size ost1) ] &&
18626                 error "missing truncate?"
18627
18628         return 0
18629 }
18630 run_test 259 "crash at delayed truncate"
18631
18632 test_260() {
18633 #define OBD_FAIL_MDC_CLOSE               0x806
18634         $LCTL set_param fail_loc=0x80000806
18635         touch $DIR/$tfile
18636
18637 }
18638 run_test 260 "Check mdc_close fail"
18639
18640 ### Data-on-MDT sanity tests ###
18641 test_270a() {
18642         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
18643                 skip "Need MDS version at least 2.10.55 for DoM"
18644
18645         # create DoM file
18646         local dom=$DIR/$tdir/dom_file
18647         local tmp=$DIR/$tdir/tmp_file
18648
18649         mkdir -p $DIR/$tdir
18650
18651         # basic checks for DoM component creation
18652         $LFS setstripe -E 1024K -E 2048K -L mdt $dom 2>/dev/null &&
18653                 error "Can set MDT layout to non-first entry"
18654
18655         $LFS setstripe -E 1024K -L mdt -E 2048K -L mdt $dom 2>/dev/null &&
18656                 error "Can define multiple entries as MDT layout"
18657
18658         $LFS setstripe -E 1M -L mdt $dom || error "Can't create DoM layout"
18659
18660         [ $($LFS getstripe -L $dom) == "mdt" ] || error "bad pattern"
18661         [ $($LFS getstripe -c $dom) == 0 ] || error "bad stripe count"
18662         [ $($LFS getstripe -S $dom) == 1048576 ] || error "bad stripe size"
18663
18664         local mdtidx=$($LFS getstripe -m $dom)
18665         local mdtname=MDT$(printf %04x $mdtidx)
18666         local facet=mds$((mdtidx + 1))
18667         local space_check=1
18668
18669         # Skip free space checks with ZFS
18670         [ "$(facet_fstype $facet)" == "zfs" ] && space_check=0
18671
18672         # write
18673         sync
18674         local size_tmp=$((65536 * 3))
18675         local mdtfree1=$(do_facet $facet \
18676                          lctl get_param -n osd*.*$mdtname.kbytesfree)
18677
18678         dd if=/dev/urandom of=$tmp bs=1024 count=$((size_tmp / 1024))
18679         # check also direct IO along write
18680         # IO size must be a multiple of PAGE_SIZE on all platforms (ARM=64KB)
18681         dd if=$tmp of=$dom bs=65536 count=$((size_tmp / 65536)) oflag=direct
18682         sync
18683         cmp $tmp $dom || error "file data is different"
18684         [ $(stat -c%s $dom) == $size_tmp ] ||
18685                 error "bad size after write: $(stat -c%s $dom) != $size_tmp"
18686         if [ $space_check == 1 ]; then
18687                 local mdtfree2=$(do_facet $facet \
18688                                  lctl get_param -n osd*.*$mdtname.kbytesfree)
18689
18690                 # increase in usage from by $size_tmp
18691                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_tmp / 1024)) ] ||
18692                         error "MDT free space wrong after write: " \
18693                               "$mdtfree1 >= $mdtfree2 + $size_tmp/1024"
18694         fi
18695
18696         # truncate
18697         local size_dom=10000
18698
18699         $TRUNCATE $dom $size_dom
18700         [ $(stat -c%s $dom) == $size_dom ] ||
18701                 error "bad size after truncate: $(stat -c%s $dom) != $size_dom"
18702         if [ $space_check == 1 ]; then
18703                 mdtfree1=$(do_facet $facet \
18704                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
18705                 # decrease in usage from $size_tmp to new $size_dom
18706                 [ $(($mdtfree1 - $mdtfree2)) -ge \
18707                   $(((size_tmp - size_dom) / 1024)) ] ||
18708                         error "MDT free space is wrong after truncate: " \
18709                               "$mdtfree1 >= $mdtfree2 + ($size_tmp - $size_dom) / 1024"
18710         fi
18711
18712         # append
18713         cat $tmp >> $dom
18714         sync
18715         size_dom=$((size_dom + size_tmp))
18716         [ $(stat -c%s $dom) == $size_dom ] ||
18717                 error "bad size after append: $(stat -c%s $dom) != $size_dom"
18718         if [ $space_check == 1 ]; then
18719                 mdtfree2=$(do_facet $facet \
18720                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
18721                 # increase in usage by $size_tmp from previous
18722                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_tmp / 1024)) ] ||
18723                         error "MDT free space is wrong after append: " \
18724                               "$mdtfree1 >= $mdtfree2 + $size_tmp/1024"
18725         fi
18726
18727         # delete
18728         rm $dom
18729         if [ $space_check == 1 ]; then
18730                 mdtfree1=$(do_facet $facet \
18731                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
18732                 # decrease in usage by $size_dom from previous
18733                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_dom / 1024)) ] ||
18734                         error "MDT free space is wrong after removal: " \
18735                               "$mdtfree1 >= $mdtfree2 + $size_dom/1024"
18736         fi
18737
18738         # combined striping
18739         $LFS setstripe -E 1024K -L mdt -E EOF $dom ||
18740                 error "Can't create DoM + OST striping"
18741
18742         size_tmp=2031616 # must be a multiple of PAGE_SIZE=65536 on ARM
18743         dd if=/dev/urandom of=$tmp bs=1024 count=$((size_tmp / 1024))
18744         # check also direct IO along write
18745         dd if=$tmp of=$dom bs=65536 count=$((size_tmp / 65536)) oflag=direct
18746         sync
18747         cmp $tmp $dom || error "file data is different"
18748         [ $(stat -c%s $dom) == $size_tmp ] ||
18749                 error "bad size after write: $(stat -c%s $dom) != $size_tmp"
18750         rm $dom $tmp
18751
18752         return 0
18753 }
18754 run_test 270a "DoM: basic functionality tests"
18755
18756 test_270b() {
18757         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
18758                 skip "Need MDS version at least 2.10.55"
18759
18760         local dom=$DIR/$tdir/dom_file
18761         local max_size=1048576
18762
18763         mkdir -p $DIR/$tdir
18764         $LFS setstripe -E $max_size -L mdt $dom
18765
18766         # truncate over the limit
18767         $TRUNCATE $dom $(($max_size + 1)) &&
18768                 error "successful truncate over the maximum size"
18769         # write over the limit
18770         dd if=/dev/zero of=$dom bs=$max_size seek=1 count=1 &&
18771                 error "successful write over the maximum size"
18772         # append over the limit
18773         dd if=/dev/zero of=$dom bs=$(($max_size - 3)) count=1
18774         echo "12345" >> $dom && error "successful append over the maximum size"
18775         rm $dom
18776
18777         return 0
18778 }
18779 run_test 270b "DoM: maximum size overflow checks for DoM-only file"
18780
18781 test_270c() {
18782         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
18783                 skip "Need MDS version at least 2.10.55"
18784
18785         mkdir -p $DIR/$tdir
18786         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
18787
18788         # check files inherit DoM EA
18789         touch $DIR/$tdir/first
18790         [ $($LFS getstripe -L $DIR/$tdir/first) == "mdt" ] ||
18791                 error "bad pattern"
18792         [ $($LFS getstripe -c $DIR/$tdir/first) == 0 ] ||
18793                 error "bad stripe count"
18794         [ $($LFS getstripe -S $DIR/$tdir/first) == 1048576 ] ||
18795                 error "bad stripe size"
18796
18797         # check directory inherits DoM EA and uses it as default
18798         mkdir $DIR/$tdir/subdir
18799         touch $DIR/$tdir/subdir/second
18800         [ $($LFS getstripe -L $DIR/$tdir/subdir/second) == "mdt" ] ||
18801                 error "bad pattern in sub-directory"
18802         [ $($LFS getstripe -c $DIR/$tdir/subdir/second) == 0 ] ||
18803                 error "bad stripe count in sub-directory"
18804         [ $($LFS getstripe -S $DIR/$tdir/subdir/second) == 1048576 ] ||
18805                 error "bad stripe size in sub-directory"
18806         return 0
18807 }
18808 run_test 270c "DoM: DoM EA inheritance tests"
18809
18810 test_270d() {
18811         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
18812                 skip "Need MDS version at least 2.10.55"
18813
18814         mkdir -p $DIR/$tdir
18815         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
18816
18817         # inherit default DoM striping
18818         mkdir $DIR/$tdir/subdir
18819         touch $DIR/$tdir/subdir/f1
18820
18821         # change default directory striping
18822         $LFS setstripe -c 1 $DIR/$tdir/subdir
18823         touch $DIR/$tdir/subdir/f2
18824         [ $($LFS getstripe -c $DIR/$tdir/subdir/f2) == 1 ] ||
18825                 error "wrong default striping in file 2"
18826         [ $($LFS getstripe -L $DIR/$tdir/subdir/f2) == "raid0" ] ||
18827                 error "bad pattern in file 2"
18828         return 0
18829 }
18830 run_test 270d "DoM: change striping from DoM to RAID0"
18831
18832 test_270e() {
18833         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
18834                 skip "Need MDS version at least 2.10.55"
18835
18836         mkdir -p $DIR/$tdir/dom
18837         mkdir -p $DIR/$tdir/norm
18838         DOMFILES=20
18839         NORMFILES=10
18840         $LFS setstripe -E 1M -L mdt $DIR/$tdir/dom
18841         $LFS setstripe -i 0 -S 2M $DIR/$tdir/norm
18842
18843         createmany -o $DIR/$tdir/dom/dom- $DOMFILES
18844         createmany -o $DIR/$tdir/norm/norm- $NORMFILES
18845
18846         # find DoM files by layout
18847         NUM=$($LFS find -L mdt -type f $DIR/$tdir 2>/dev/null | wc -l)
18848         [ $NUM -eq  $DOMFILES ] ||
18849                 error "lfs find -L: found $NUM, expected $DOMFILES"
18850         echo "Test 1: lfs find 20 DOM files by layout: OK"
18851
18852         # there should be 1 dir with default DOM striping
18853         NUM=$($LFS find -L mdt -type d $DIR/$tdir 2>/dev/null | wc -l)
18854         [ $NUM -eq  1 ] ||
18855                 error "lfs find -L: found $NUM, expected 1 dir"
18856         echo "Test 2: lfs find 1 DOM dir by layout: OK"
18857
18858         # find DoM files by stripe size
18859         NUM=$($LFS find -S -1200K -type f $DIR/$tdir 2>/dev/null | wc -l)
18860         [ $NUM -eq  $DOMFILES ] ||
18861                 error "lfs find -S: found $NUM, expected $DOMFILES"
18862         echo "Test 4: lfs find 20 DOM files by stripe size: OK"
18863
18864         # find files by stripe offset except DoM files
18865         NUM=$($LFS find -i 0 -type f $DIR/$tdir 2>/dev/null | wc -l)
18866         [ $NUM -eq  $NORMFILES ] ||
18867                 error "lfs find -i: found $NUM, expected $NORMFILES"
18868         echo "Test 5: lfs find no DOM files by stripe index: OK"
18869         return 0
18870 }
18871 run_test 270e "DoM: lfs find with DoM files test"
18872
18873 test_270f() {
18874         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
18875                 skip "Need MDS version at least 2.10.55"
18876
18877         local mdtname=${FSNAME}-MDT0000-mdtlov
18878         local dom=$DIR/$tdir/dom_file
18879         local dom_limit_saved=$(do_facet mds1 $LCTL get_param -n \
18880                                                 lod.$mdtname.dom_stripesize)
18881         local dom_limit=131072
18882
18883         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=$dom_limit
18884         local dom_current=$(do_facet mds1 $LCTL get_param -n \
18885                                                 lod.$mdtname.dom_stripesize)
18886         [ ${dom_limit} -eq ${dom_current} ] ||
18887                 error "Cannot change per-MDT DoM stripe limit to $dom_limit"
18888
18889         $LFS mkdir -i 0 -c 1 $DIR/$tdir
18890         $LFS setstripe -d $DIR/$tdir
18891         $LFS setstripe -E $dom_limit -L mdt $DIR/$tdir ||
18892                 error "Can't set directory default striping"
18893
18894         # exceed maximum stripe size
18895         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
18896                 error "Can't create file with $((dom_limit * 2)) DoM stripe"
18897         [ $($LFS getstripe -S $dom) -eq $((dom_limit * 2)) ] &&
18898                 error "Able to create DoM component size more than LOD limit"
18899
18900         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=0
18901         dom_current=$(do_facet mds1 $LCTL get_param -n \
18902                                                 lod.$mdtname.dom_stripesize)
18903         [ 0 -eq ${dom_current} ] ||
18904                 error "Can't set zero DoM stripe limit"
18905         rm $dom
18906
18907         # attempt to create DoM file on server with disabled DoM should
18908         # remove DoM entry from layout and be succeed
18909         $LFS setstripe -E $dom_limit -L mdt -E -1 $dom ||
18910                 error "Can't create DoM file (DoM is disabled)"
18911         [ $($LFS getstripe -L $dom) == "mdt" ] &&
18912                 error "File has DoM component while DoM is disabled"
18913         rm $dom
18914
18915         # attempt to create DoM file with only DoM stripe should return error
18916         $LFS setstripe -E $dom_limit -L mdt $dom &&
18917                 error "Able to create DoM-only file while DoM is disabled"
18918
18919         # too low values to be aligned with smallest stripe size 64K
18920         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=30000
18921         dom_current=$(do_facet mds1 $LCTL get_param -n \
18922                                                 lod.$mdtname.dom_stripesize)
18923         [ 30000 -eq ${dom_current} ] &&
18924                 error "Can set too small DoM stripe limit"
18925
18926         # 64K is a minimal stripe size in Lustre, expect limit of that size
18927         [ 65536 -eq ${dom_current} ] ||
18928                 error "Limit is not set to 64K but ${dom_current}"
18929
18930         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=2147483648
18931         dom_current=$(do_facet mds1 $LCTL get_param -n \
18932                                                 lod.$mdtname.dom_stripesize)
18933         echo $dom_current
18934         [ 2147483648 -eq ${dom_current} ] &&
18935                 error "Can set too large DoM stripe limit"
18936
18937         do_facet mds1 $LCTL set_param -n \
18938                                 lod.$mdtname.dom_stripesize=$((dom_limit * 2))
18939         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
18940                 error "Can't create DoM component size after limit change"
18941         do_facet mds1 $LCTL set_param -n \
18942                                 lod.$mdtname.dom_stripesize=$((dom_limit / 2))
18943         $LFS setstripe -E $dom_limit -L mdt ${dom}_big ||
18944                 error "Can't create DoM file after limit decrease"
18945         [ $($LFS getstripe -S ${dom}_big) -eq $((dom_limit / 2)) ] ||
18946                 error "Can create big DoM component after limit decrease"
18947         touch ${dom}_def ||
18948                 error "Can't create file with old default layout"
18949
18950         do_facet mds1 $LCTL set_param -n lod.*.dom_stripesize=$dom_limit_saved
18951         return 0
18952 }
18953 run_test 270f "DoM: maximum DoM stripe size checks"
18954
18955 test_271a() {
18956         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
18957                 skip "Need MDS version at least 2.10.55"
18958
18959         local dom=$DIR/$tdir/dom
18960
18961         mkdir -p $DIR/$tdir
18962
18963         $LFS setstripe -E 1024K -L mdt $dom
18964
18965         lctl set_param -n mdc.*.stats=clear
18966         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
18967         cat $dom > /dev/null
18968         local reads=$(lctl get_param -n mdc.*.stats | grep -c ost_read)
18969         [ $reads -eq 0 ] || error "Unexpected $reads READ RPCs"
18970         ls $dom
18971         rm -f $dom
18972 }
18973 run_test 271a "DoM: data is cached for read after write"
18974
18975 test_271b() {
18976         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
18977                 skip "Need MDS version at least 2.10.55"
18978
18979         local dom=$DIR/$tdir/dom
18980
18981         mkdir -p $DIR/$tdir
18982
18983         $LFS setstripe -E 1024K -L mdt -E EOF $dom
18984
18985         lctl set_param -n mdc.*.stats=clear
18986         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
18987         cancel_lru_locks mdc
18988         $CHECKSTAT -t file -s 4096 $dom || error "stat #1 fails"
18989         # second stat to check size is cached on client
18990         $CHECKSTAT -t file -s 4096 $dom || error "stat #2 fails"
18991         local gls=$(lctl get_param -n mdc.*.stats | grep -c ldlm_glimpse)
18992         [ $gls -eq 0 ] || error "Unexpected $gls glimpse RPCs"
18993         rm -f $dom
18994 }
18995 run_test 271b "DoM: no glimpse RPC for stat (DoM only file)"
18996
18997 test_271ba() {
18998         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
18999                 skip "Need MDS version at least 2.10.55"
19000
19001         local dom=$DIR/$tdir/dom
19002
19003         mkdir -p $DIR/$tdir
19004
19005         $LFS setstripe -E 1024K -L mdt -E EOF $dom
19006
19007         lctl set_param -n mdc.*.stats=clear
19008         lctl set_param -n osc.*.stats=clear
19009         dd if=/dev/zero of=$dom bs=2048K count=1 || return 1
19010         cancel_lru_locks mdc
19011         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
19012         # second stat to check size is cached on client
19013         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
19014         local gls=$(lctl get_param -n mdc.*.stats | grep -c ldlm_glimpse)
19015         [ $gls == 0 ] || error "Unexpected $gls glimpse RPCs"
19016         local gls=$(lctl get_param -n osc.*.stats | grep -c ldlm_glimpse)
19017         [ $gls == 0 ] || error "Unexpected $gls OSC glimpse RPCs"
19018         rm -f $dom
19019 }
19020 run_test 271ba "DoM: no glimpse RPC for stat (combined file)"
19021
19022
19023 get_mdc_stats() {
19024         local mdtidx=$1
19025         local param=$2
19026         local mdt=MDT$(printf %04x $mdtidx)
19027
19028         if [ -z $param ]; then
19029                 lctl get_param -n mdc.*$mdt*.stats
19030         else
19031                 lctl get_param -n mdc.*$mdt*.stats | awk "/$param/"'{print $2}'
19032         fi
19033 }
19034
19035 test_271c() {
19036         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
19037                 skip "Need MDS version at least 2.10.55"
19038
19039         local dom=$DIR/$tdir/dom
19040
19041         mkdir -p $DIR/$tdir
19042
19043         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
19044
19045         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
19046         local facet=mds$((mdtidx + 1))
19047
19048         cancel_lru_locks mdc
19049         do_facet $facet lctl set_param -n mdt.*.dom_lock=0
19050         createmany -o $dom 1000
19051         lctl set_param -n mdc.*.stats=clear
19052         smalliomany -w $dom 1000 200
19053         get_mdc_stats $mdtidx
19054         local enq=$(get_mdc_stats $mdtidx ldlm_ibits_enqueue)
19055         # Each file has 1 open, 1 IO enqueues, total 2000
19056         # but now we have also +1 getxattr for security.capability, total 3000
19057         [ $enq -ge 2000 ] || error "Too few enqueues $enq, expected > 2000"
19058         unlinkmany $dom 1000
19059
19060         cancel_lru_locks mdc
19061         do_facet $facet lctl set_param -n mdt.*.dom_lock=1
19062         createmany -o $dom 1000
19063         lctl set_param -n mdc.*.stats=clear
19064         smalliomany -w $dom 1000 200
19065         local enq_2=$(get_mdc_stats $mdtidx ldlm_ibits_enqueue)
19066         # Expect to see reduced amount of RPCs by 1000 due to single enqueue
19067         # for OPEN and IO lock.
19068         [ $((enq - enq_2)) -ge 1000 ] ||
19069                 error "Too many enqueues $enq_2, expected about $((enq - 1000))"
19070         unlinkmany $dom 1000
19071         return 0
19072 }
19073 run_test 271c "DoM: IO lock at open saves enqueue RPCs"
19074
19075 cleanup_271def_tests() {
19076         trap 0
19077         rm -f $1
19078 }
19079
19080 test_271d() {
19081         [ $MDS1_VERSION -lt $(version_code 2.10.57) ] &&
19082                 skip "Need MDS version at least 2.10.57"
19083
19084         local dom=$DIR/$tdir/dom
19085         local tmp=$TMP/$tfile
19086         trap "cleanup_271def_tests $tmp" EXIT
19087
19088         mkdir -p $DIR/$tdir
19089
19090         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
19091
19092         local mdtidx=$($LFS getstripe --mdt-index $DIR/$tdir)
19093
19094         cancel_lru_locks mdc
19095         dd if=/dev/urandom of=$tmp bs=1000 count=1
19096         dd if=$tmp of=$dom bs=1000 count=1
19097         cancel_lru_locks mdc
19098
19099         cat /etc/hosts >> $tmp
19100         lctl set_param -n mdc.*.stats=clear
19101
19102         # append data to the same file it should update local page
19103         echo "Append to the same page"
19104         cat /etc/hosts >> $dom
19105         local num=$(get_mdc_stats $mdtidx ost_read)
19106         local ra=$(get_mdc_stats $mdtidx req_active)
19107         local rw=$(get_mdc_stats $mdtidx req_waittime)
19108
19109         [ -z $num ] || error "$num READ RPC occured"
19110         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
19111         echo "... DONE"
19112
19113         # compare content
19114         cmp $tmp $dom || error "file miscompare"
19115
19116         cancel_lru_locks mdc
19117         lctl set_param -n mdc.*.stats=clear
19118
19119         echo "Open and read file"
19120         cat $dom > /dev/null
19121         local num=$(get_mdc_stats $mdtidx ost_read)
19122         local ra=$(get_mdc_stats $mdtidx req_active)
19123         local rw=$(get_mdc_stats $mdtidx req_waittime)
19124
19125         [ -z $num ] || error "$num READ RPC occured"
19126         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
19127         echo "... DONE"
19128
19129         # compare content
19130         cmp $tmp $dom || error "file miscompare"
19131
19132         return 0
19133 }
19134 run_test 271d "DoM: read on open (1K file in reply buffer)"
19135
19136 test_271f() {
19137         [ $MDS1_VERSION -lt $(version_code 2.10.57) ] &&
19138                 skip "Need MDS version at least 2.10.57"
19139
19140         local dom=$DIR/$tdir/dom
19141         local tmp=$TMP/$tfile
19142         trap "cleanup_271def_tests $tmp" EXIT
19143
19144         mkdir -p $DIR/$tdir
19145
19146         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
19147
19148         local mdtidx=$($LFS getstripe --mdt-index $DIR/$tdir)
19149
19150         cancel_lru_locks mdc
19151         dd if=/dev/urandom of=$tmp bs=265000 count=1
19152         dd if=$tmp of=$dom bs=265000 count=1
19153         cancel_lru_locks mdc
19154         cat /etc/hosts >> $tmp
19155         lctl set_param -n mdc.*.stats=clear
19156
19157         echo "Append to the same page"
19158         cat /etc/hosts >> $dom
19159         local num=$(get_mdc_stats $mdtidx ost_read)
19160         local ra=$(get_mdc_stats $mdtidx req_active)
19161         local rw=$(get_mdc_stats $mdtidx req_waittime)
19162
19163         [ -z $num ] || error "$num READ RPC occured"
19164         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
19165         echo "... DONE"
19166
19167         # compare content
19168         cmp $tmp $dom || error "file miscompare"
19169
19170         cancel_lru_locks mdc
19171         lctl set_param -n mdc.*.stats=clear
19172
19173         echo "Open and read file"
19174         cat $dom > /dev/null
19175         local num=$(get_mdc_stats $mdtidx ost_read)
19176         local ra=$(get_mdc_stats $mdtidx req_active)
19177         local rw=$(get_mdc_stats $mdtidx req_waittime)
19178
19179         [ -z $num ] && num=0
19180         [ $num -eq 1 ] || error "expect 1 READ RPC, $num occured"
19181         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
19182         echo "... DONE"
19183
19184         # compare content
19185         cmp $tmp $dom || error "file miscompare"
19186
19187         return 0
19188 }
19189 run_test 271f "DoM: read on open (200K file and read tail)"
19190
19191 test_271g() {
19192         [[ $($LCTL get_param mdc.*.import) =~ async_discard ]] ||
19193                 skip "Skipping due to old client or server version"
19194
19195         $LFS setstripe -E 1024K -L mdt -E EOF $DIR1/$tfile
19196         # to get layout
19197         $CHECKSTAT -t file $DIR1/$tfile
19198
19199         $MULTIOP $DIR1/$tfile Ow40960_w4096c &
19200         MULTIOP_PID=$!
19201         sleep 1
19202         #define OBD_FAIL_LDLM_CANCEL_BL_CB_RACE
19203         $LCTL set_param fail_loc=0x80000314
19204         rm $DIR1/$tfile || error "Unlink fails"
19205         RC=$?
19206         kill -USR1 $MULTIOP_PID && wait $MULTIOP_PID || error "multiop failure"
19207         [ $RC -eq 0 ] || error "Failed write to stale object"
19208 }
19209 run_test 271g "Discard DoM data vs client flush race"
19210
19211 test_272a() {
19212         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
19213                 skip "Need MDS version at least 2.11.50"
19214
19215         local dom=$DIR/$tdir/dom
19216         mkdir -p $DIR/$tdir
19217
19218         $LFS setstripe -E 256K -L mdt -E -1 -c1 $dom
19219         dd if=/dev/urandom of=$dom bs=512K count=1 ||
19220                 error "failed to write data into $dom"
19221         local old_md5=$(md5sum $dom)
19222
19223         $LFS migrate -E 256K -L mdt -E -1 -c2 $dom ||
19224                 error "failed to migrate to the same DoM component"
19225
19226         local new_md5=$(md5sum $dom)
19227
19228         [ "$old_md5" == "$new_md5" ] ||
19229                 error "md5sum differ: $old_md5, $new_md5"
19230
19231         [ $($LFS getstripe -c $dom) -eq 2 ] ||
19232                 error "bad final stripe count: $($LFS getstripe -c $dom) != 2"
19233 }
19234 run_test 272a "DoM migration: new layout with the same DOM component"
19235
19236 test_272b() {
19237         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
19238                 skip "Need MDS version at least 2.11.50"
19239
19240         local dom=$DIR/$tdir/dom
19241         mkdir -p $DIR/$tdir
19242         $LFS setstripe -E 1M -L mdt -E -1 -c1 $dom
19243
19244         local mdtidx=$($LFS getstripe -m $dom)
19245         local mdtname=MDT$(printf %04x $mdtidx)
19246         local facet=mds$((mdtidx + 1))
19247
19248         local mdtfree1=$(do_facet $facet \
19249                 lctl get_param -n osd*.*$mdtname.kbytesfree)
19250         dd if=/dev/urandom of=$dom bs=2M count=1 ||
19251                 error "failed to write data into $dom"
19252         local old_md5=$(md5sum $dom)
19253         cancel_lru_locks mdc
19254         local mdtfree1=$(do_facet $facet \
19255                 lctl get_param -n osd*.*$mdtname.kbytesfree)
19256
19257         $LFS migrate -c2 $dom ||
19258                 error "failed to migrate to the new composite layout"
19259         [ $($LFS getstripe -L $dom) != 'mdt' ] ||
19260                 error "MDT stripe was not removed"
19261
19262         cancel_lru_locks mdc
19263         local new_md5=$(md5sum $dom)
19264         [ "$old_md5" == "$new_md5" ] ||
19265                 error "$old_md5 != $new_md5"
19266
19267         # Skip free space checks with ZFS
19268         if [ "$(facet_fstype $facet)" != "zfs" ]; then
19269                 local mdtfree2=$(do_facet $facet \
19270                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
19271                 [ $mdtfree2 -gt $mdtfree1 ] ||
19272                         error "MDT space is not freed after migration"
19273         fi
19274         return 0
19275 }
19276 run_test 272b "DoM migration: DOM file to the OST-striped file (plain)"
19277
19278 test_272c() {
19279         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
19280                 skip "Need MDS version at least 2.11.50"
19281
19282         local dom=$DIR/$tdir/$tfile
19283         mkdir -p $DIR/$tdir
19284         $LFS setstripe -E 1M -L mdt -E -1 -c1 $dom
19285
19286         local mdtidx=$($LFS getstripe -m $dom)
19287         local mdtname=MDT$(printf %04x $mdtidx)
19288         local facet=mds$((mdtidx + 1))
19289
19290         dd if=/dev/urandom of=$dom bs=2M count=1 oflag=direct ||
19291                 error "failed to write data into $dom"
19292         local old_md5=$(md5sum $dom)
19293         cancel_lru_locks mdc
19294         local mdtfree1=$(do_facet $facet \
19295                 lctl get_param -n osd*.*$mdtname.kbytesfree)
19296
19297         $LFS migrate -E 2M -c1 -E -1 -c2 $dom ||
19298                 error "failed to migrate to the new composite layout"
19299         [ $($LFS getstripe -L $dom) == 'mdt' ] &&
19300                 error "MDT stripe was not removed"
19301
19302         cancel_lru_locks mdc
19303         local new_md5=$(md5sum $dom)
19304         [ "$old_md5" == "$new_md5" ] ||
19305                 error "$old_md5 != $new_md5"
19306
19307         # Skip free space checks with ZFS
19308         if [ "$(facet_fstype $facet)" != "zfs" ]; then
19309                 local mdtfree2=$(do_facet $facet \
19310                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
19311                 [ $mdtfree2 -gt $mdtfree1 ] ||
19312                         error "MDS space is not freed after migration"
19313         fi
19314         return 0
19315 }
19316 run_test 272c "DoM migration: DOM file to the OST-striped file (composite)"
19317
19318 test_272d() {
19319         [ $MDS1_VERSION -lt $(version_code 2.12.55) ] &&
19320                 skip "Need MDS version at least 2.12.55"
19321
19322         local dom=$DIR/$tdir/$tfile
19323         mkdir -p $DIR/$tdir
19324         $LFS setstripe -E 1M -L mdt -E -1 -c1 $dom
19325
19326         local mdtidx=$($LFS getstripe -m $dom)
19327         local mdtname=MDT$(printf %04x $mdtidx)
19328         local facet=mds$((mdtidx + 1))
19329
19330         dd if=/dev/urandom of=$dom bs=2M count=1 oflag=direct ||
19331                 error "failed to write data into $dom"
19332         local old_md5=$(md5sum $dom)
19333         cancel_lru_locks mdc
19334         local mdtfree1=$(do_facet $facet \
19335                 lctl get_param -n osd*.*$mdtname.kbytesfree)
19336
19337         $LFS mirror extend -N -E 2M -c1 -E -1 -c2 $dom ||
19338                 error "failed mirroring to the new composite layout"
19339         $LFS mirror resync $dom ||
19340                 error "failed mirror resync"
19341         $LFS mirror split --mirror-id 1 -d $dom ||
19342                 error "failed mirror split"
19343
19344         [ $($LFS getstripe -L $dom) != 'mdt' ] ||
19345                 error "MDT stripe was not removed"
19346
19347         cancel_lru_locks mdc
19348         local new_md5=$(md5sum $dom)
19349         [ "$old_md5" == "$new_md5" ] ||
19350                 error "$old_md5 != $new_md5"
19351
19352         # Skip free space checks with ZFS
19353         if [ "$(facet_fstype $facet)" != "zfs" ]; then
19354                 local mdtfree2=$(do_facet $facet \
19355                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
19356                 [ $mdtfree2 -gt $mdtfree1 ] ||
19357                         error "MDS space is not freed after DOM mirror deletion"
19358         fi
19359         return 0
19360 }
19361 run_test 272d "DoM mirroring: OST-striped mirror to DOM file"
19362
19363 test_272e() {
19364         [ $MDS1_VERSION -lt $(version_code 2.12.55) ] &&
19365                 skip "Need MDS version at least 2.12.55"
19366
19367         local dom=$DIR/$tdir/$tfile
19368         mkdir -p $DIR/$tdir
19369         $LFS setstripe -c 2 $dom
19370
19371         dd if=/dev/urandom of=$dom bs=512K count=1 oflag=direct ||
19372                 error "failed to write data into $dom"
19373         local old_md5=$(md5sum $dom)
19374         cancel_lru_locks mdc
19375
19376         $LFS mirror extend -N -E 1M -L mdt -E eof -c2 $dom ||
19377                 error "failed mirroring to the DOM layout"
19378         $LFS mirror resync $dom ||
19379                 error "failed mirror resync"
19380         $LFS mirror split --mirror-id 1 -d $dom ||
19381                 error "failed mirror split"
19382
19383         [ $($LFS getstripe -L $dom) != 'mdt' ] ||
19384                 error "MDT stripe was not removed"
19385
19386         cancel_lru_locks mdc
19387         local new_md5=$(md5sum $dom)
19388         [ "$old_md5" == "$new_md5" ] ||
19389                 error "$old_md5 != $new_md5"
19390
19391         return 0
19392 }
19393 run_test 272e "DoM mirroring: DOM mirror to the OST-striped file"
19394
19395 test_272f() {
19396         [ $MDS1_VERSION -lt $(version_code 2.12.55) ] &&
19397                 skip "Need MDS version at least 2.12.55"
19398
19399         local dom=$DIR/$tdir/$tfile
19400         mkdir -p $DIR/$tdir
19401         $LFS setstripe -c 2 $dom
19402
19403         dd if=/dev/urandom of=$dom bs=512K count=1 oflag=direct ||
19404                 error "failed to write data into $dom"
19405         local old_md5=$(md5sum $dom)
19406         cancel_lru_locks mdc
19407
19408         $LFS migrate -E 1M -L mdt -E eof -c2 -v $dom ||
19409                 error "failed migrating to the DOM file"
19410
19411         cancel_lru_locks mdc
19412         local new_md5=$(md5sum $dom)
19413         [ "$old_md5" != "$new_md5" ] &&
19414                 error "$old_md5 != $new_md5"
19415
19416         return 0
19417 }
19418 run_test 272f "DoM migration: OST-striped file to DOM file"
19419
19420 test_273a() {
19421         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
19422                 skip "Need MDS version at least 2.11.50"
19423
19424         # Layout swap cannot be done if either file has DOM component,
19425         # this will never be supported, migration should be used instead
19426
19427         local dom=$DIR/$tdir/$tfile
19428         mkdir -p $DIR/$tdir
19429
19430         $LFS setstripe -c2 ${dom}_plain
19431         $LFS setstripe -E 1M -L mdt -E -1 -c2 ${dom}_dom
19432         $LFS swap_layouts ${dom}_plain ${dom}_dom &&
19433                 error "can swap layout with DoM component"
19434         $LFS swap_layouts ${dom}_dom ${dom}_plain &&
19435                 error "can swap layout with DoM component"
19436
19437         $LFS setstripe -E 1M -c1 -E -1 -c2 ${dom}_comp
19438         $LFS swap_layouts ${dom}_comp ${dom}_dom &&
19439                 error "can swap layout with DoM component"
19440         $LFS swap_layouts ${dom}_dom ${dom}_comp &&
19441                 error "can swap layout with DoM component"
19442         return 0
19443 }
19444 run_test 273a "DoM: layout swapping should fail with DOM"
19445
19446 test_275() {
19447         remote_ost_nodsh && skip "remote OST with nodsh"
19448         [ $OST1_VERSION -lt $(version_code 2.10.57) ] &&
19449                 skip "Need OST version >= 2.10.57"
19450
19451         local file=$DIR/$tfile
19452         local oss
19453
19454         oss=$(comma_list $(osts_nodes))
19455
19456         dd if=/dev/urandom of=$file bs=1M count=2 ||
19457                 error "failed to create a file"
19458         cancel_lru_locks osc
19459
19460         #lock 1
19461         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
19462                 error "failed to read a file"
19463
19464 #define OBD_FAIL_LDLM_PAUSE_CANCEL2      0x31f
19465         $LCTL set_param fail_loc=0x8000031f
19466
19467         cancel_lru_locks osc &
19468         sleep 1
19469
19470 #define OBD_FAIL_LDLM_PROLONG_PAUSE      0x32b
19471         do_nodes $oss $LCTL set_param fail_loc=0x8000032b
19472         #IO takes another lock, but matches the PENDING one
19473         #and places it to the IO RPC
19474         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
19475                 error "failed to read a file with PENDING lock"
19476 }
19477 run_test 275 "Read on a canceled duplicate lock"
19478
19479 test_276() {
19480         remote_ost_nodsh && skip "remote OST with nodsh"
19481         local pid
19482
19483         do_facet ost1 "(while true; do \
19484                 $LCTL get_param obdfilter.*.filesfree > /dev/null 2>&1; \
19485                 done) & pid=\\\$!; echo \\\$pid > $TMP/sanity_276_pid" &
19486         pid=$!
19487
19488         for LOOP in $(seq 20); do
19489                 stop ost1
19490                 start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
19491         done
19492         kill -9 $pid
19493         do_facet ost1 "pid=\\\$(cat $TMP/sanity_276_pid); kill -9 \\\$pid; \
19494                 rm $TMP/sanity_276_pid"
19495 }
19496 run_test 276 "Race between mount and obd_statfs"
19497
19498 test_277() {
19499         $LCTL set_param ldlm.namespaces.*.lru_size=0
19500         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
19501         local cached_mb=$($LCTL get_param llite.*.max_cached_mb |
19502                         grep ^used_mb | awk '{print $2}')
19503         [ $cached_mb -eq 1 ] || error "expected mb 1 got $cached_mb"
19504         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 \
19505                 oflag=direct conv=notrunc
19506         cached_mb=$($LCTL get_param llite.*.max_cached_mb |
19507                         grep ^used_mb | awk '{print $2}')
19508         [ $cached_mb -eq 0 ] || error "expected mb 0 got $cached_mb"
19509 }
19510 run_test 277 "Direct IO shall drop page cache"
19511
19512 test_278() {
19513         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
19514         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
19515         [[ "$(facet_host mds1)" != "$(facet_host mds2)" ]] &&
19516                 skip "needs the same host for mdt1 mdt2" && return
19517
19518         local pid1
19519         local pid2
19520
19521 #define OBD_FAIL_OBD_STOP_MDS_RACE     0x60b
19522         do_facet mds2 $LCTL set_param fail_loc=0x8000060c
19523         stop mds2 &
19524         pid2=$!
19525
19526         stop mds1
19527
19528         echo "Starting MDTs"
19529         start mds1 $(mdsdevname 1) $MDS_MOUNT_OPTS
19530         wait $pid2
19531 #For the error assertion will happen. lu_env_get_key(..., &mdt_thread_key)
19532 #will return NULL
19533         do_facet mds2 $LCTL set_param fail_loc=0
19534
19535         start mds2 $(mdsdevname 2) $MDS_MOUNT_OPTS
19536         wait_recovery_complete mds2
19537 }
19538 run_test 278 "Race starting MDS between MDTs stop/start"
19539
19540 test_280() {
19541         [ $MGS_VERSION -lt $(version_code 2.13.52) ] &&
19542                 skip "Need MGS version at least 2.13.52"
19543         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19544         combined_mgs_mds || skip "needs combined MGS/MDT"
19545
19546         umount_client $MOUNT
19547 #define OBD_FAIL_MDS_LLOG_UMOUNT_RACE   0x15e
19548         do_facet mgs $LCTL set_param fail_loc=0x8000015e fail_val=0
19549
19550         mount_client $MOUNT &
19551         sleep 1
19552         stop mgs || error "stop mgs failed"
19553         #for a race mgs would crash
19554         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
19555         mount_client $MOUNT || error "mount client failed"
19556 }
19557 run_test 280 "Race between MGS umount and client llog processing"
19558
19559 cleanup_test_300() {
19560         trap 0
19561         umask $SAVE_UMASK
19562 }
19563 test_striped_dir() {
19564         local mdt_index=$1
19565         local stripe_count
19566         local stripe_index
19567
19568         mkdir -p $DIR/$tdir
19569
19570         SAVE_UMASK=$(umask)
19571         trap cleanup_test_300 RETURN EXIT
19572
19573         $LFS setdirstripe -i $mdt_index -c 2 -H all_char -o 755 \
19574                                                 $DIR/$tdir/striped_dir ||
19575                 error "set striped dir error"
19576
19577         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
19578         [ "$mode" = "755" ] || error "expect 755 got $mode"
19579
19580         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
19581                 error "getdirstripe failed"
19582         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
19583         if [ "$stripe_count" != "2" ]; then
19584                 error "1:stripe_count is $stripe_count, expect 2"
19585         fi
19586         stripe_count=$($LFS getdirstripe -T $DIR/$tdir/striped_dir)
19587         if [ "$stripe_count" != "2" ]; then
19588                 error "2:stripe_count is $stripe_count, expect 2"
19589         fi
19590
19591         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
19592         if [ "$stripe_index" != "$mdt_index" ]; then
19593                 error "stripe_index is $stripe_index, expect $mdt_index"
19594         fi
19595
19596         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
19597                 error "nlink error after create striped dir"
19598
19599         mkdir $DIR/$tdir/striped_dir/a
19600         mkdir $DIR/$tdir/striped_dir/b
19601
19602         stat $DIR/$tdir/striped_dir/a ||
19603                 error "create dir under striped dir failed"
19604         stat $DIR/$tdir/striped_dir/b ||
19605                 error "create dir under striped dir failed"
19606
19607         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
19608                 error "nlink error after mkdir"
19609
19610         rmdir $DIR/$tdir/striped_dir/a
19611         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
19612                 error "nlink error after rmdir"
19613
19614         rmdir $DIR/$tdir/striped_dir/b
19615         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
19616                 error "nlink error after rmdir"
19617
19618         chattr +i $DIR/$tdir/striped_dir
19619         createmany -o $DIR/$tdir/striped_dir/f 10 &&
19620                 error "immutable flags not working under striped dir!"
19621         chattr -i $DIR/$tdir/striped_dir
19622
19623         rmdir $DIR/$tdir/striped_dir ||
19624                 error "rmdir striped dir error"
19625
19626         cleanup_test_300
19627
19628         true
19629 }
19630
19631 test_300a() {
19632         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
19633                 skip "skipped for lustre < 2.7.0"
19634         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19635         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19636
19637         test_striped_dir 0 || error "failed on striped dir on MDT0"
19638         test_striped_dir 1 || error "failed on striped dir on MDT0"
19639 }
19640 run_test 300a "basic striped dir sanity test"
19641
19642 test_300b() {
19643         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
19644                 skip "skipped for lustre < 2.7.0"
19645         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19646         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19647
19648         local i
19649         local mtime1
19650         local mtime2
19651         local mtime3
19652
19653         test_mkdir $DIR/$tdir || error "mkdir fail"
19654         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
19655                 error "set striped dir error"
19656         for i in {0..9}; do
19657                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
19658                 sleep 1
19659                 touch $DIR/$tdir/striped_dir/file_$i || error "touch error $i"
19660                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
19661                 [ $mtime1 -eq $mtime2 ] && error "mtime unchanged after create"
19662                 sleep 1
19663                 rm -f $DIR/$tdir/striped_dir/file_$i || error "unlink error $i"
19664                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
19665                 [ $mtime2 -eq $mtime3 ] && error "mtime unchanged after unlink"
19666         done
19667         true
19668 }
19669 run_test 300b "check ctime/mtime for striped dir"
19670
19671 test_300c() {
19672         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
19673                 skip "skipped for lustre < 2.7.0"
19674         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19675         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19676
19677         local file_count
19678
19679         mkdir -p $DIR/$tdir
19680         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
19681                 error "set striped dir error"
19682
19683         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
19684                 error "chown striped dir failed"
19685
19686         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
19687                 error "create 5k files failed"
19688
19689         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
19690
19691         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
19692
19693         rm -rf $DIR/$tdir
19694 }
19695 run_test 300c "chown && check ls under striped directory"
19696
19697 test_300d() {
19698         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
19699                 skip "skipped for lustre < 2.7.0"
19700         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19701         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19702
19703         local stripe_count
19704         local file
19705
19706         mkdir -p $DIR/$tdir
19707         $LFS setstripe -c 2 $DIR/$tdir
19708
19709         #local striped directory
19710         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
19711                 error "set striped dir error"
19712         #look at the directories for debug purposes
19713         ls -l $DIR/$tdir
19714         $LFS getdirstripe $DIR/$tdir
19715         ls -l $DIR/$tdir/striped_dir
19716         $LFS getdirstripe $DIR/$tdir/striped_dir
19717         createmany -o $DIR/$tdir/striped_dir/f 10 ||
19718                 error "create 10 files failed"
19719
19720         #remote striped directory
19721         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
19722                 error "set striped dir error"
19723         #look at the directories for debug purposes
19724         ls -l $DIR/$tdir
19725         $LFS getdirstripe $DIR/$tdir
19726         ls -l $DIR/$tdir/remote_striped_dir
19727         $LFS getdirstripe $DIR/$tdir/remote_striped_dir
19728         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
19729                 error "create 10 files failed"
19730
19731         for file in $(find $DIR/$tdir); do
19732                 stripe_count=$($LFS getstripe -c $file)
19733                 [ $stripe_count -eq 2 ] ||
19734                         error "wrong stripe $stripe_count for $file"
19735         done
19736
19737         rm -rf $DIR/$tdir
19738 }
19739 run_test 300d "check default stripe under striped directory"
19740
19741 test_300e() {
19742         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
19743                 skip "Need MDS version at least 2.7.55"
19744         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19745         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19746
19747         local stripe_count
19748         local file
19749
19750         mkdir -p $DIR/$tdir
19751
19752         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
19753                 error "set striped dir error"
19754
19755         touch $DIR/$tdir/striped_dir/a
19756         touch $DIR/$tdir/striped_dir/b
19757         touch $DIR/$tdir/striped_dir/c
19758
19759         mkdir $DIR/$tdir/striped_dir/dir_a
19760         mkdir $DIR/$tdir/striped_dir/dir_b
19761         mkdir $DIR/$tdir/striped_dir/dir_c
19762
19763         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_a ||
19764                 error "set striped adir under striped dir error"
19765
19766         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_b ||
19767                 error "set striped bdir under striped dir error"
19768
19769         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_c ||
19770                 error "set striped cdir under striped dir error"
19771
19772         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
19773                 error "rename dir under striped dir fails"
19774
19775         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
19776                 error "rename dir under different stripes fails"
19777
19778         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
19779                 error "rename file under striped dir should succeed"
19780
19781         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
19782                 error "rename dir under striped dir should succeed"
19783
19784         rm -rf $DIR/$tdir
19785 }
19786 run_test 300e "check rename under striped directory"
19787
19788 test_300f() {
19789         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19790         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19791         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
19792                 skip "Need MDS version at least 2.7.55"
19793
19794         local stripe_count
19795         local file
19796
19797         rm -rf $DIR/$tdir
19798         mkdir -p $DIR/$tdir
19799
19800         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
19801                 error "set striped dir error"
19802
19803         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir1 ||
19804                 error "set striped dir error"
19805
19806         touch $DIR/$tdir/striped_dir/a
19807         mkdir $DIR/$tdir/striped_dir/dir_a
19808         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
19809                 error "create striped dir under striped dir fails"
19810
19811         touch $DIR/$tdir/striped_dir1/b
19812         mkdir $DIR/$tdir/striped_dir1/dir_b
19813         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
19814                 error "create striped dir under striped dir fails"
19815
19816         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
19817                 error "rename dir under different striped dir should fail"
19818
19819         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
19820                 error "rename striped dir under diff striped dir should fail"
19821
19822         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
19823                 error "rename file under diff striped dirs fails"
19824
19825         rm -rf $DIR/$tdir
19826 }
19827 run_test 300f "check rename cross striped directory"
19828
19829 test_300_check_default_striped_dir()
19830 {
19831         local dirname=$1
19832         local default_count=$2
19833         local default_index=$3
19834         local stripe_count
19835         local stripe_index
19836         local dir_stripe_index
19837         local dir
19838
19839         echo "checking $dirname $default_count $default_index"
19840         $LFS setdirstripe -D -c $default_count -i $default_index \
19841                                 -t all_char $DIR/$tdir/$dirname ||
19842                 error "set default stripe on striped dir error"
19843         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
19844         [ $stripe_count -eq $default_count ] ||
19845                 error "expect $default_count get $stripe_count for $dirname"
19846
19847         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
19848         [ $stripe_index -eq $default_index ] ||
19849                 error "expect $default_index get $stripe_index for $dirname"
19850
19851         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
19852                                                 error "create dirs failed"
19853
19854         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
19855         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
19856         for dir in $(find $DIR/$tdir/$dirname/*); do
19857                 stripe_count=$($LFS getdirstripe -c $dir)
19858                 [ $stripe_count -eq $default_count ] ||
19859                 [ $stripe_count -eq 0 ] || [ $default_count -eq 1 ] ||
19860                 error "stripe count $default_count != $stripe_count for $dir"
19861
19862                 stripe_index=$($LFS getdirstripe -i $dir)
19863                 [ $default_index -eq -1 ] ||
19864                         [ $stripe_index -eq $default_index ] ||
19865                         error "$stripe_index != $default_index for $dir"
19866
19867                 #check default stripe
19868                 stripe_count=$($LFS getdirstripe -D -c $dir)
19869                 [ $stripe_count -eq $default_count ] ||
19870                 error "default count $default_count != $stripe_count for $dir"
19871
19872                 stripe_index=$($LFS getdirstripe -D -i $dir)
19873                 [ $stripe_index -eq $default_index ] ||
19874                 error "default index $default_index != $stripe_index for $dir"
19875         done
19876         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
19877 }
19878
19879 test_300g() {
19880         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19881         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
19882                 skip "Need MDS version at least 2.7.55"
19883
19884         local dir
19885         local stripe_count
19886         local stripe_index
19887
19888         mkdir $DIR/$tdir
19889         mkdir $DIR/$tdir/normal_dir
19890
19891         #Checking when client cache stripe index
19892         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
19893         $LFS setdirstripe -D -i1 $DIR/$tdir/striped_dir ||
19894                 error "create striped_dir failed"
19895
19896         $LFS setdirstripe -i0 $DIR/$tdir/striped_dir/dir0 ||
19897                 error "create dir0 fails"
19898         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir0)
19899         [ $stripe_index -eq 0 ] ||
19900                 error "dir0 expect index 0 got $stripe_index"
19901
19902         mkdir $DIR/$tdir/striped_dir/dir1 ||
19903                 error "create dir1 fails"
19904         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir1)
19905         [ $stripe_index -eq 1 ] ||
19906                 error "dir1 expect index 1 got $stripe_index"
19907
19908         #check default stripe count/stripe index
19909         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
19910         test_300_check_default_striped_dir normal_dir 1 0
19911         test_300_check_default_striped_dir normal_dir 2 1
19912         test_300_check_default_striped_dir normal_dir 2 -1
19913
19914         #delete default stripe information
19915         echo "delete default stripeEA"
19916         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
19917                 error "set default stripe on striped dir error"
19918
19919         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
19920         for dir in $(find $DIR/$tdir/normal_dir/*); do
19921                 stripe_count=$($LFS getdirstripe -c $dir)
19922                 [ $stripe_count -eq 0 ] ||
19923                         error "expect 1 get $stripe_count for $dir"
19924                 stripe_index=$($LFS getdirstripe -i $dir)
19925                 [ $stripe_index -eq 0 ] ||
19926                         error "expect 0 get $stripe_index for $dir"
19927         done
19928 }
19929 run_test 300g "check default striped directory for normal directory"
19930
19931 test_300h() {
19932         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19933         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
19934                 skip "Need MDS version at least 2.7.55"
19935
19936         local dir
19937         local stripe_count
19938
19939         mkdir $DIR/$tdir
19940         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
19941                 error "set striped dir error"
19942
19943         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
19944         test_300_check_default_striped_dir striped_dir 1 0
19945         test_300_check_default_striped_dir striped_dir 2 1
19946         test_300_check_default_striped_dir striped_dir 2 -1
19947
19948         #delete default stripe information
19949         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
19950                 error "set default stripe on striped dir error"
19951
19952         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
19953         for dir in $(find $DIR/$tdir/striped_dir/*); do
19954                 stripe_count=$($LFS getdirstripe -c $dir)
19955                 [ $stripe_count -eq 0 ] ||
19956                         error "expect 1 get $stripe_count for $dir"
19957         done
19958 }
19959 run_test 300h "check default striped directory for striped directory"
19960
19961 test_300i() {
19962         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19963         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19964         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
19965                 skip "Need MDS version at least 2.7.55"
19966
19967         local stripe_count
19968         local file
19969
19970         mkdir $DIR/$tdir
19971
19972         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
19973                 error "set striped dir error"
19974
19975         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
19976                 error "create files under striped dir failed"
19977
19978         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir ||
19979                 error "set striped hashdir error"
19980
19981         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir/d0 ||
19982                 error "create dir0 under hash dir failed"
19983         $LFS setdirstripe -i0 -c$MDSCOUNT -H fnv_1a_64 $DIR/$tdir/hashdir/d1 ||
19984                 error "create dir1 under hash dir failed"
19985
19986         # unfortunately, we need to umount to clear dir layout cache for now
19987         # once we fully implement dir layout, we can drop this
19988         umount_client $MOUNT || error "umount failed"
19989         mount_client $MOUNT || error "mount failed"
19990
19991         $LFS find -H fnv_1a_64 $DIR/$tdir/hashdir
19992         local dircnt=$($LFS find -H fnv_1a_64 $DIR/$tdir/hashdir | wc -l)
19993         [ $dircnt -eq 1 ] || error "lfs find striped dir got:$dircnt,except:1"
19994
19995         #set the stripe to be unknown hash type
19996         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
19997         $LCTL set_param fail_loc=0x1901
19998         for ((i = 0; i < 10; i++)); do
19999                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
20000                         error "stat f-$i failed"
20001                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
20002         done
20003
20004         touch $DIR/$tdir/striped_dir/f0 &&
20005                 error "create under striped dir with unknown hash should fail"
20006
20007         $LCTL set_param fail_loc=0
20008
20009         umount_client $MOUNT || error "umount failed"
20010         mount_client $MOUNT || error "mount failed"
20011
20012         return 0
20013 }
20014 run_test 300i "client handle unknown hash type striped directory"
20015
20016 test_300j() {
20017         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
20018         [ $PARALLEL == "yes" ] && skip "skip parallel run"
20019         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
20020                 skip "Need MDS version at least 2.7.55"
20021
20022         local stripe_count
20023         local file
20024
20025         mkdir $DIR/$tdir
20026
20027         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
20028         $LCTL set_param fail_loc=0x1702
20029         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
20030                 error "set striped dir error"
20031
20032         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
20033                 error "create files under striped dir failed"
20034
20035         $LCTL set_param fail_loc=0
20036
20037         rm -rf $DIR/$tdir || error "unlink striped dir fails"
20038
20039         return 0
20040 }
20041 run_test 300j "test large update record"
20042
20043 test_300k() {
20044         [ $PARALLEL == "yes" ] && skip "skip parallel run"
20045         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
20046         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
20047                 skip "Need MDS version at least 2.7.55"
20048
20049         # this test needs a huge transaction
20050         local kb
20051         kb=$(do_facet $SINGLEMDS "$LCTL get_param -n \
20052              osd*.$FSNAME-MDT0000.kbytestotal")
20053         [ $kb -lt $((1024*1024)) ] && skip "MDT0 too small: $kb"
20054
20055         local stripe_count
20056         local file
20057
20058         mkdir $DIR/$tdir
20059
20060         #define OBD_FAIL_LARGE_STRIPE   0x1703
20061         $LCTL set_param fail_loc=0x1703
20062         $LFS setdirstripe -i 0 -c192 $DIR/$tdir/striped_dir ||
20063                 error "set striped dir error"
20064         $LCTL set_param fail_loc=0
20065
20066         $LFS getdirstripe $DIR/$tdir/striped_dir ||
20067                 error "getstripeddir fails"
20068         rm -rf $DIR/$tdir/striped_dir ||
20069                 error "unlink striped dir fails"
20070
20071         return 0
20072 }
20073 run_test 300k "test large striped directory"
20074
20075 test_300l() {
20076         [ $PARALLEL == "yes" ] && skip "skip parallel run"
20077         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
20078         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
20079                 skip "Need MDS version at least 2.7.55"
20080
20081         local stripe_index
20082
20083         test_mkdir -p $DIR/$tdir/striped_dir
20084         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
20085                         error "chown $RUNAS_ID failed"
20086         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
20087                 error "set default striped dir failed"
20088
20089         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
20090         $LCTL set_param fail_loc=0x80000158
20091         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
20092
20093         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
20094         [ $stripe_index -eq 1 ] ||
20095                 error "expect 1 get $stripe_index for $dir"
20096 }
20097 run_test 300l "non-root user to create dir under striped dir with stale layout"
20098
20099 test_300m() {
20100         [ $PARALLEL == "yes" ] && skip "skip parallel run"
20101         [ $MDSCOUNT -ge 2 ] && skip_env "Only for single MDT"
20102         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
20103                 skip "Need MDS version at least 2.7.55"
20104
20105         mkdir -p $DIR/$tdir/striped_dir
20106         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
20107                 error "set default stripes dir error"
20108
20109         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
20110
20111         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
20112         [ $stripe_count -eq 0 ] ||
20113                         error "expect 0 get $stripe_count for a"
20114
20115         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
20116                 error "set default stripes dir error"
20117
20118         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
20119
20120         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
20121         [ $stripe_count -eq 0 ] ||
20122                         error "expect 0 get $stripe_count for b"
20123
20124         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
20125                 error "set default stripes dir error"
20126
20127         mkdir $DIR/$tdir/striped_dir/c &&
20128                 error "default stripe_index is invalid, mkdir c should fails"
20129
20130         rm -rf $DIR/$tdir || error "rmdir fails"
20131 }
20132 run_test 300m "setstriped directory on single MDT FS"
20133
20134 cleanup_300n() {
20135         local list=$(comma_list $(mdts_nodes))
20136
20137         trap 0
20138         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
20139 }
20140
20141 test_300n() {
20142         [ $PARALLEL == "yes" ] && skip "skip parallel run"
20143         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
20144         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
20145                 skip "Need MDS version at least 2.7.55"
20146         remote_mds_nodsh && skip "remote MDS with nodsh"
20147
20148         local stripe_index
20149         local list=$(comma_list $(mdts_nodes))
20150
20151         trap cleanup_300n RETURN EXIT
20152         mkdir -p $DIR/$tdir
20153         chmod 777 $DIR/$tdir
20154         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
20155                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
20156                 error "create striped dir succeeds with gid=0"
20157
20158         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
20159         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
20160                 error "create striped dir fails with gid=-1"
20161
20162         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
20163         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
20164                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
20165                 error "set default striped dir succeeds with gid=0"
20166
20167
20168         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
20169         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
20170                 error "set default striped dir fails with gid=-1"
20171
20172
20173         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
20174         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
20175                                         error "create test_dir fails"
20176         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
20177                                         error "create test_dir1 fails"
20178         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
20179                                         error "create test_dir2 fails"
20180         cleanup_300n
20181 }
20182 run_test 300n "non-root user to create dir under striped dir with default EA"
20183
20184 test_300o() {
20185         [ $PARALLEL == "yes" ] && skip "skip parallel run"
20186         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
20187         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
20188                 skip "Need MDS version at least 2.7.55"
20189
20190         local numfree1
20191         local numfree2
20192
20193         mkdir -p $DIR/$tdir
20194
20195         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
20196         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
20197         if [ $numfree1 -lt 66000 ] || [ $numfree2 -lt 66000 ]; then
20198                 skip "not enough free inodes $numfree1 $numfree2"
20199         fi
20200
20201         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
20202         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
20203         if [ $numfree1 -lt 300000 ] || [ $numfree2 -lt 300000 ]; then
20204                 skip "not enough free space $numfree1 $numfree2"
20205         fi
20206
20207         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
20208                 error "setdirstripe fails"
20209
20210         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
20211                 error "create dirs fails"
20212
20213         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
20214         ls $DIR/$tdir/striped_dir > /dev/null ||
20215                 error "ls striped dir fails"
20216         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
20217                 error "unlink big striped dir fails"
20218 }
20219 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
20220
20221 test_300p() {
20222         [ $PARALLEL == "yes" ] && skip "skip parallel run"
20223         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
20224         remote_mds_nodsh && skip "remote MDS with nodsh"
20225
20226         mkdir -p $DIR/$tdir
20227
20228         #define OBD_FAIL_OUT_ENOSPC     0x1704
20229         do_facet mds2 lctl set_param fail_loc=0x80001704
20230         $LFS setdirstripe -i 0 -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 \
20231                  && error "create striped directory should fail"
20232
20233         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
20234
20235         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
20236         true
20237 }
20238 run_test 300p "create striped directory without space"
20239
20240 test_300q() {
20241         [ $PARALLEL == "yes" ] && skip "skip parallel run"
20242         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
20243
20244         local fd=$(free_fd)
20245         local cmd="exec $fd<$tdir"
20246         cd $DIR
20247         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
20248         eval $cmd
20249         cmd="exec $fd<&-"
20250         trap "eval $cmd" EXIT
20251         cd $tdir || error "cd $tdir fails"
20252         rmdir  ../$tdir || error "rmdir $tdir fails"
20253         mkdir local_dir && error "create dir succeeds"
20254         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
20255         eval $cmd
20256         return 0
20257 }
20258 run_test 300q "create remote directory under orphan directory"
20259
20260 test_300r() {
20261         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
20262                 skip "Need MDS version at least 2.7.55" && return
20263         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
20264
20265         mkdir $DIR/$tdir
20266
20267         $LFS setdirstripe -i 0 -c -1 $DIR/$tdir/striped_dir ||
20268                 error "set striped dir error"
20269
20270         $LFS getdirstripe $DIR/$tdir/striped_dir ||
20271                 error "getstripeddir fails"
20272
20273         local stripe_count
20274         stripe_count=$($LFS getdirstripe $DIR/$tdir/striped_dir |
20275                       awk '/lmv_stripe_count:/ { print $2 }')
20276
20277         [ $MDSCOUNT -ne $stripe_count ] &&
20278                 error "wrong stripe count $stripe_count expected $MDSCOUNT"
20279
20280         rm -rf $DIR/$tdir/striped_dir ||
20281                 error "unlink striped dir fails"
20282 }
20283 run_test 300r "test -1 striped directory"
20284
20285 prepare_remote_file() {
20286         mkdir $DIR/$tdir/src_dir ||
20287                 error "create remote source failed"
20288
20289         cp /etc/hosts $DIR/$tdir/src_dir/a ||
20290                  error "cp to remote source failed"
20291         touch $DIR/$tdir/src_dir/a
20292
20293         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
20294                 error "create remote target dir failed"
20295
20296         touch $DIR/$tdir/tgt_dir/b
20297
20298         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
20299                 error "rename dir cross MDT failed!"
20300
20301         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
20302                 error "src_child still exists after rename"
20303
20304         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
20305                 error "missing file(a) after rename"
20306
20307         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
20308                 error "diff after rename"
20309 }
20310
20311 test_310a() {
20312         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 4 MDTs"
20313         [ $PARALLEL == "yes" ] && skip "skip parallel run"
20314
20315         local remote_file=$DIR/$tdir/tgt_dir/b
20316
20317         mkdir -p $DIR/$tdir
20318
20319         prepare_remote_file || error "prepare remote file failed"
20320
20321         #open-unlink file
20322         $OPENUNLINK $remote_file $remote_file ||
20323                 error "openunlink $remote_file failed"
20324         $CHECKSTAT -a $remote_file || error "$remote_file exists"
20325 }
20326 run_test 310a "open unlink remote file"
20327
20328 test_310b() {
20329         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 4 MDTs"
20330         [ $PARALLEL == "yes" ] && skip "skip parallel run"
20331
20332         local remote_file=$DIR/$tdir/tgt_dir/b
20333
20334         mkdir -p $DIR/$tdir
20335
20336         prepare_remote_file || error "prepare remote file failed"
20337
20338         ln $remote_file $DIR/$tfile || error "link failed for remote file"
20339         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
20340         $CHECKSTAT -t file $remote_file || error "check file failed"
20341 }
20342 run_test 310b "unlink remote file with multiple links while open"
20343
20344 test_310c() {
20345         [ $PARALLEL == "yes" ] && skip "skip parallel run"
20346         [[ $MDSCOUNT -lt 4 ]] && skip_env "needs >= 4 MDTs"
20347
20348         local remote_file=$DIR/$tdir/tgt_dir/b
20349
20350         mkdir -p $DIR/$tdir
20351
20352         prepare_remote_file || error "prepare remote file failed"
20353
20354         ln $remote_file $DIR/$tfile || error "link failed for remote file"
20355         multiop_bg_pause $remote_file O_uc ||
20356                         error "mulitop failed for remote file"
20357         MULTIPID=$!
20358         $MULTIOP $DIR/$tfile Ouc
20359         kill -USR1 $MULTIPID
20360         wait $MULTIPID
20361 }
20362 run_test 310c "open-unlink remote file with multiple links"
20363
20364 #LU-4825
20365 test_311() {
20366         [ $PARALLEL == "yes" ] && skip "skip parallel run"
20367         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
20368         [ $MDS1_VERSION -lt $(version_code 2.8.54) ] &&
20369                 skip "lustre < 2.8.54 does not contain LU-4825 fix"
20370         remote_mds_nodsh && skip "remote MDS with nodsh"
20371
20372         local old_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
20373         local mdts=$(comma_list $(mdts_nodes))
20374
20375         mkdir -p $DIR/$tdir
20376         $LFS setstripe -i 0 -c 1 $DIR/$tdir
20377         createmany -o $DIR/$tdir/$tfile. 1000
20378
20379         # statfs data is not real time, let's just calculate it
20380         old_iused=$((old_iused + 1000))
20381
20382         local count=$(do_facet $SINGLEMDS "$LCTL get_param -n \
20383                         osp.*OST0000*MDT0000.create_count")
20384         local max_count=$(do_facet $SINGLEMDS "$LCTL get_param -n \
20385                                 osp.*OST0000*MDT0000.max_create_count")
20386         do_nodes $mdts "$LCTL set_param -n osp.*OST0000*.max_create_count=0"
20387
20388         $LFS setstripe -i 0 $DIR/$tdir/$tfile || error "setstripe failed"
20389         local index=$($LFS getstripe -i $DIR/$tdir/$tfile)
20390         [ $index -ne 0 ] || error "$tfile stripe index is 0"
20391
20392         unlinkmany $DIR/$tdir/$tfile. 1000
20393
20394         do_nodes $mdts "$LCTL set_param -n \
20395                         osp.*OST0000*.max_create_count=$max_count"
20396         [ $MDS1_VERSION -lt $(version_code 2.12.51) ] &&
20397                 do_nodes $mdts "$LCTL set_param -n \
20398                                 osp.*OST0000*.create_count=$count"
20399         do_nodes $mdts "$LCTL get_param osp.*OST0000*.create_count" |
20400                         grep "=0" && error "create_count is zero"
20401
20402         local new_iused
20403         for i in $(seq 120); do
20404                 new_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
20405                 # system may be too busy to destroy all objs in time, use
20406                 # a somewhat small value to not fail autotest
20407                 [ $((old_iused - new_iused)) -gt 400 ] && break
20408                 sleep 1
20409         done
20410
20411         echo "waited $i sec, old Iused $old_iused, new Iused $new_iused"
20412         [ $((old_iused - new_iused)) -gt 400 ] ||
20413                 error "objs not destroyed after unlink"
20414 }
20415 run_test 311 "disable OSP precreate, and unlink should destroy objs"
20416
20417 zfs_oid_to_objid()
20418 {
20419         local ost=$1
20420         local objid=$2
20421
20422         local vdevdir=$(dirname $(facet_vdevice $ost))
20423         local cmd="$ZDB -e -p $vdevdir -ddddd $(facet_device $ost)"
20424         local zfs_zapid=$(do_facet $ost $cmd |
20425                           grep -w "/O/0/d$((objid%32))" -C 5 |
20426                           awk '/Object/{getline; print $1}')
20427         local zfs_objid=$(do_facet $ost $cmd $zfs_zapid |
20428                           awk "/$objid = /"'{printf $3}')
20429
20430         echo $zfs_objid
20431 }
20432
20433 zfs_object_blksz() {
20434         local ost=$1
20435         local objid=$2
20436
20437         local vdevdir=$(dirname $(facet_vdevice $ost))
20438         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
20439         local blksz=$(do_facet $ost $cmd $objid |
20440                       awk '/dblk/{getline; printf $4}')
20441
20442         case "${blksz: -1}" in
20443                 k|K) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024)) ;;
20444                 m|M) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024*1024)) ;;
20445                 *) ;;
20446         esac
20447
20448         echo $blksz
20449 }
20450
20451 test_312() { # LU-4856
20452         remote_ost_nodsh && skip "remote OST with nodsh"
20453         [ "$ost1_FSTYPE" = "zfs" ] ||
20454                 skip_env "the test only applies to zfs"
20455
20456         local max_blksz=$(do_facet ost1 \
20457                           $ZFS get -p recordsize $(facet_device ost1) |
20458                           awk '!/VALUE/{print $3}')
20459
20460         # to make life a little bit easier
20461         $LFS mkdir -c 1 -i 0 $DIR/$tdir
20462         $LFS setstripe -c 1 -i 0 $DIR/$tdir
20463
20464         local tf=$DIR/$tdir/$tfile
20465         touch $tf
20466         local oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
20467
20468         # Get ZFS object id
20469         local zfs_objid=$(zfs_oid_to_objid ost1 $oid)
20470         # block size change by sequential overwrite
20471         local bs
20472
20473         for ((bs=$PAGE_SIZE; bs <= max_blksz; bs *= 4)) ; do
20474                 dd if=/dev/zero of=$tf bs=$bs count=1 oflag=sync conv=notrunc
20475
20476                 local blksz=$(zfs_object_blksz ost1 $zfs_objid)
20477                 [ $blksz -eq $bs ] || error "blksz error: $blksz, expected: $bs"
20478         done
20479         rm -f $tf
20480
20481         # block size change by sequential append write
20482         dd if=/dev/zero of=$tf bs=$PAGE_SIZE count=1 oflag=sync conv=notrunc
20483         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
20484         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
20485         local count
20486
20487         for ((count = 1; count < $((max_blksz / PAGE_SIZE)); count *= 2)); do
20488                 dd if=/dev/zero of=$tf bs=$PAGE_SIZE count=$count seek=$count \
20489                         oflag=sync conv=notrunc
20490
20491                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
20492                 [ $blksz -eq $((2 * count * PAGE_SIZE)) ] ||
20493                         error "blksz error, actual $blksz, " \
20494                                 "expected: 2 * $count * $PAGE_SIZE"
20495         done
20496         rm -f $tf
20497
20498         # random write
20499         touch $tf
20500         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
20501         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
20502
20503         dd if=/dev/zero of=$tf bs=1K count=1 oflag=sync conv=notrunc
20504         blksz=$(zfs_object_blksz ost1 $zfs_objid)
20505         [ $blksz -eq $PAGE_SIZE ] ||
20506                 error "blksz error: $blksz, expected: $PAGE_SIZE"
20507
20508         dd if=/dev/zero of=$tf bs=64K count=1 oflag=sync conv=notrunc seek=128
20509         blksz=$(zfs_object_blksz ost1 $zfs_objid)
20510         [ $blksz -eq 65536 ] || error "blksz error: $blksz, expected: 64k"
20511
20512         dd if=/dev/zero of=$tf bs=1M count=1 oflag=sync conv=notrunc
20513         blksz=$(zfs_object_blksz ost1 $zfs_objid)
20514         [ $blksz -eq 65536 ] || error "rewrite error: $blksz, expected: 64k"
20515 }
20516 run_test 312 "make sure ZFS adjusts its block size by write pattern"
20517
20518 test_313() {
20519         remote_ost_nodsh && skip "remote OST with nodsh"
20520
20521         local file=$DIR/$tfile
20522
20523         rm -f $file
20524         $LFS setstripe -c 1 -i 0 $file || error "setstripe failed"
20525
20526         # define OBD_FAIL_TGT_RCVD_EIO           0x720
20527         do_facet ost1 "$LCTL set_param fail_loc=0x720"
20528         dd if=/dev/zero of=$file bs=$PAGE_SIZE oflag=direct count=1 &&
20529                 error "write should failed"
20530         do_facet ost1 "$LCTL set_param fail_loc=0"
20531         rm -f $file
20532 }
20533 run_test 313 "io should fail after last_rcvd update fail"
20534
20535 test_314() {
20536         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
20537
20538         $LFS setstripe -c 2 -i 0 $DIR/$tfile || error "setstripe failed"
20539         do_facet ost1 "$LCTL set_param fail_loc=0x720"
20540         rm -f $DIR/$tfile
20541         wait_delete_completed
20542         do_facet ost1 "$LCTL set_param fail_loc=0"
20543 }
20544 run_test 314 "OSP shouldn't fail after last_rcvd update failure"
20545
20546 test_315() { # LU-618
20547         [ -f /proc/$$/io ] || skip_env "no IO accounting in kernel"
20548
20549         local file=$DIR/$tfile
20550         rm -f $file
20551
20552         $MULTIOP $file oO_CREAT:O_DIRECT:O_RDWR:w4063232c ||
20553                 error "multiop file write failed"
20554         $MULTIOP $file oO_RDONLY:r4063232_c &
20555         PID=$!
20556
20557         sleep 2
20558
20559         local rbytes=$(awk '/read_bytes/ { print $2 }' /proc/$PID/io)
20560         kill -USR1 $PID
20561
20562         [ $rbytes -gt 4000000 ] || error "read is not accounted ($rbytes)"
20563         rm -f $file
20564 }
20565 run_test 315 "read should be accounted"
20566
20567 test_316() {
20568         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
20569         large_xattr_enabled || skip_env "ea_inode feature disabled"
20570
20571         rm -rf $DIR/$tdir/d
20572         mkdir -p $DIR/$tdir/d
20573         chown nobody $DIR/$tdir/d
20574         touch $DIR/$tdir/d/file
20575
20576         $LFS mv -m1 $DIR/$tdir/d || error "lfs mv failed"
20577 }
20578 run_test 316 "lfs mv"
20579
20580 test_317() {
20581         [ $MDS1_VERSION -lt $(version_code 2.11.53) ] &&
20582                 skip "Need MDS version at least 2.11.53"
20583         if [ "$ost1_FSTYPE" == "zfs" ]; then
20584                 skip "LU-10370: no implementation for ZFS"
20585         fi
20586
20587         local trunc_sz
20588         local grant_blk_size
20589
20590         grant_blk_size=$($LCTL get_param osc.$FSNAME*.import |
20591                         awk '/grant_block_size:/ { print $2; exit; }')
20592         #
20593         # Create File of size 5M. Truncate it to below size's and verify
20594         # blocks count.
20595         #
20596         dd if=/dev/zero of=$DIR/$tfile bs=5M count=1 conv=fsync ||
20597                 error "Create file $DIR/$tfile failed"
20598         stack_trap "rm -f $DIR/$tfile" EXIT
20599
20600         for trunc_sz in 2097152 4097 4000 509 0; do
20601                 $TRUNCATE $DIR/$tfile $trunc_sz ||
20602                         error "truncate $tfile to $trunc_sz failed"
20603                 local sz=$(stat --format=%s $DIR/$tfile)
20604                 local blk=$(stat --format=%b $DIR/$tfile)
20605                 local trunc_blk=$((((trunc_sz + (grant_blk_size - 1) ) /
20606                                      grant_blk_size) * 8))
20607
20608                 if [[ $blk -ne $trunc_blk ]]; then
20609                         $(which stat) $DIR/$tfile
20610                         error "Expected Block $trunc_blk got $blk for $tfile"
20611                 fi
20612
20613                 $CHECKSTAT -s $trunc_sz $DIR/$tfile ||
20614                         error "Expected Size $trunc_sz got $sz for $tfile"
20615         done
20616
20617         #
20618         # sparse file test
20619         # Create file with a hole and write actual two blocks. Block count
20620         # must be 16.
20621         #
20622         dd if=/dev/zero of=$DIR/$tfile bs=$grant_blk_size count=2 seek=5 \
20623                 conv=fsync || error "Create file : $DIR/$tfile"
20624
20625         # Calculate the final truncate size.
20626         trunc_sz=$(($(stat --format=%s $DIR/$tfile) - (grant_blk_size + 1)))
20627
20628         #
20629         # truncate to size $trunc_sz bytes. Strip the last block
20630         # The block count must drop to 8
20631         #
20632         $TRUNCATE $DIR/$tfile $trunc_sz ||
20633                 error "truncate $tfile to $trunc_sz failed"
20634
20635         local trunc_bsz=$((grant_blk_size / $(stat --format=%B $DIR/$tfile)))
20636         sz=$(stat --format=%s $DIR/$tfile)
20637         blk=$(stat --format=%b $DIR/$tfile)
20638
20639         if [[ $blk -ne $trunc_bsz ]]; then
20640                 $(which stat) $DIR/$tfile
20641                 error "Expected Block $trunc_bsz got $blk for $tfile"
20642         fi
20643
20644         $CHECKSTAT -s $trunc_sz $DIR/$tfile ||
20645                 error "Expected Size $trunc_sz got $sz for $tfile"
20646 }
20647 run_test 317 "Verify blocks get correctly update after truncate"
20648
20649 test_318() {
20650         local old_max_active=$($LCTL get_param -n \
20651                             llite.*.max_read_ahead_async_active 2>/dev/null)
20652
20653         $LCTL set_param llite.*.max_read_ahead_async_active=256
20654         local max_active=$($LCTL get_param -n \
20655                            llite.*.max_read_ahead_async_active 2>/dev/null)
20656         [ $max_active -ne 256 ] && error "expected 256 but got $max_active"
20657
20658         $LCTL set_param llite.*.max_read_ahead_async_active=0 ||
20659                 error "set max_read_ahead_async_active should succeed"
20660
20661         $LCTL set_param llite.*.max_read_ahead_async_active=512
20662         max_active=$($LCTL get_param -n \
20663                      llite.*.max_read_ahead_async_active 2>/dev/null)
20664         [ $max_active -eq 512 ] || error "expected 512 but got $max_active"
20665
20666         # restore @max_active
20667         [ $old_max_active -ne 0 ] && $LCTL set_param \
20668                 llite.*.max_read_ahead_async_active=$old_max_active
20669
20670         local old_threshold=$($LCTL get_param -n \
20671                 llite.*.read_ahead_async_file_threshold_mb 2>/dev/null)
20672         local max_per_file_mb=$($LCTL get_param -n \
20673                 llite.*.max_read_ahead_per_file_mb 2>/dev/null)
20674
20675         local invalid=$(($max_per_file_mb + 1))
20676         $LCTL set_param \
20677                 llite.*.read_ahead_async_file_threshold_mb=$invalid\
20678                         && error "set $invalid should fail"
20679
20680         local valid=$(($invalid - 1))
20681         $LCTL set_param \
20682                 llite.*.read_ahead_async_file_threshold_mb=$valid ||
20683                         error "set $valid should succeed"
20684         local threshold=$($LCTL get_param -n \
20685                 llite.*.read_ahead_async_file_threshold_mb 2>/dev/null)
20686         [ $threshold -eq $valid ] || error \
20687                 "expect threshold $valid got $threshold"
20688         $LCTL set_param \
20689                 llite.*.read_ahead_async_file_threshold_mb=$old_threshold
20690 }
20691 run_test 318 "Verify async readahead tunables"
20692
20693 test_319() {
20694         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
20695
20696         local before=$(date +%s)
20697         local evict
20698         local mdir=$DIR/$tdir
20699         local file=$mdir/xxx
20700
20701         $LFS mkdir -i0 $mdir || error "mkdir $mdir fails"
20702         touch $file
20703
20704 #define OBD_FAIL_LDLM_LOCAL_CANCEL_PAUSE 0x32c
20705         $LCTL set_param fail_val=5 fail_loc=0x8000032c
20706         $LFS mv -m1 $file &
20707
20708         sleep 1
20709         dd if=$file of=/dev/null
20710         wait
20711         evict=$($LCTL get_param mdc.$FSNAME-MDT*.state |
20712           awk -F"[ [,]" '/EVICTED ]$/ { if (mx<$5) {mx=$5;} } END { print mx }')
20713
20714         [ -z "$evict" ] || [[ $evict -le $before ]] || error "eviction happened"
20715 }
20716 run_test 319 "lost lease lock on migrate error"
20717
20718 test_398a() { # LU-4198
20719         $LFS setstripe -c 1 -i 0 $DIR/$tfile
20720         $LCTL set_param ldlm.namespaces.*.lru_size=clear
20721
20722         # request a new lock on client
20723         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
20724
20725         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=direct conv=notrunc
20726         local lock_count=$($LCTL get_param -n \
20727                            ldlm.namespaces.*-OST0000-osc-ffff*.lru_size)
20728         [[ $lock_count -eq 0 ]] || error "lock should be cancelled by direct IO"
20729
20730         $LCTL set_param ldlm.namespaces.*-OST0000-osc-ffff*.lru_size=clear
20731
20732         # no lock cached, should use lockless IO and not enqueue new lock
20733         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=direct conv=notrunc
20734         lock_count=$($LCTL get_param -n \
20735                      ldlm.namespaces.*-OST0000-osc-ffff*.lru_size)
20736         [[ $lock_count -eq 0 ]] || error "no lock should be held by direct IO"
20737 }
20738 run_test 398a "direct IO should cancel lock otherwise lockless"
20739
20740 test_398b() { # LU-4198
20741         which fio || skip_env "no fio installed"
20742         $LFS setstripe -c -1 $DIR/$tfile
20743
20744         local size=12
20745         dd if=/dev/zero of=$DIR/$tfile bs=1M count=$size
20746
20747         local njobs=4
20748         echo "mix direct rw ${size}M to OST0 by fio with $njobs jobs..."
20749         fio --name=rand-rw --rw=randrw --bs=$PAGE_SIZE --direct=1 \
20750                 --numjobs=$njobs --fallocate=none \
20751                 --iodepth=16 --allow_file_create=0 --size=$((size/njobs))M \
20752                 --filename=$DIR/$tfile &
20753         bg_pid=$!
20754
20755         echo "mix buffer rw ${size}M to OST0 by fio with $njobs jobs..."
20756         fio --name=rand-rw --rw=randrw --bs=$PAGE_SIZE \
20757                 --numjobs=$njobs --fallocate=none \
20758                 --iodepth=16 --allow_file_create=0 --size=$((size/njobs))M \
20759                 --filename=$DIR/$tfile || true
20760         wait $bg_pid
20761
20762         rm -rf $DIR/$tfile
20763 }
20764 run_test 398b "DIO and buffer IO race"
20765
20766 test_398c() { # LU-4198
20767         which fio || skip_env "no fio installed"
20768
20769         saved_debug=$($LCTL get_param -n debug)
20770         $LCTL set_param debug=0
20771
20772         local size=$(lctl get_param -n osc.$FSNAME-OST0000*.kbytesavail | head -1)
20773         ((size /= 1024)) # by megabytes
20774         ((size /= 2)) # write half of the OST at most
20775         [ $size -gt 40 ] && size=40 #reduce test time anyway
20776
20777         $LFS setstripe -c 1 $DIR/$tfile
20778
20779         # it seems like ldiskfs reserves more space than necessary if the
20780         # writing blocks are not mapped, so it extends the file firstly
20781         dd if=/dev/zero of=$DIR/$tfile bs=1M count=$size && sync
20782         cancel_lru_locks osc
20783
20784         # clear and verify rpc_stats later
20785         $LCTL set_param osc.${FSNAME}-OST0000-osc-ffff*.rpc_stats=clear
20786
20787         local njobs=4
20788         echo "writing ${size}M to OST0 by fio with $njobs jobs..."
20789         fio --name=rand-write --rw=randwrite --bs=$PAGE_SIZE --direct=1 \
20790                 --numjobs=$njobs --fallocate=none --ioengine=libaio \
20791                 --iodepth=16 --allow_file_create=0 --size=$((size/njobs))M \
20792                 --filename=$DIR/$tfile
20793         [ $? -eq 0 ] || error "fio write error"
20794
20795         [ $($LCTL get_param -n \
20796          ldlm.namespaces.${FSNAME}-OST0000-osc-ffff*.lock_count) -eq 0 ] ||
20797                 error "Locks were requested while doing AIO"
20798
20799         # get the percentage of 1-page I/O
20800         pct=$($LCTL get_param osc.${FSNAME}-OST0000-osc-ffff*.rpc_stats |
20801                 grep -A 1 'pages per rpc' | grep -v 'pages per rpc' |
20802                 awk '{print $7}')
20803         [ $pct -le 50 ] || error "$pct% of I/O are 1-page"
20804
20805         echo "mix rw ${size}M to OST0 by fio with $njobs jobs..."
20806         fio --name=rand-rw --rw=randrw --bs=$PAGE_SIZE --direct=1 \
20807                 --numjobs=$njobs --fallocate=none --ioengine=libaio \
20808                 --iodepth=16 --allow_file_create=0 --size=$((size/njobs))M \
20809                 --filename=$DIR/$tfile
20810         [ $? -eq 0 ] || error "fio mixed read write error"
20811
20812         rm -rf $DIR/$tfile
20813         $LCTL set_param debug="$saved_debug"
20814 }
20815 run_test 398c "run fio to test AIO"
20816
20817 test_fake_rw() {
20818         local read_write=$1
20819         if [ "$read_write" = "write" ]; then
20820                 local dd_cmd="dd if=/dev/zero of=$DIR/$tfile"
20821         elif [ "$read_write" = "read" ]; then
20822                 local dd_cmd="dd of=/dev/null if=$DIR/$tfile"
20823         else
20824                 error "argument error"
20825         fi
20826
20827         # turn off debug for performance testing
20828         local saved_debug=$($LCTL get_param -n debug)
20829         $LCTL set_param debug=0
20830
20831         $LFS setstripe -c 1 -i 0 $DIR/$tfile
20832
20833         # get ost1 size - $FSNAME-OST0000
20834         local ost1_avail_size=$($LFS df | awk /${ost1_svc}/'{ print $4 }')
20835         local blocks=$((ost1_avail_size/2/1024)) # half avail space by megabytes
20836         [ $blocks -gt 1000 ] && blocks=1000 # 1G in maximum
20837
20838         if [ "$read_write" = "read" ]; then
20839                 truncate -s $(expr 1048576 \* $blocks) $DIR/$tfile
20840         fi
20841
20842         local start_time=$(date +%s.%N)
20843         $dd_cmd bs=1M count=$blocks oflag=sync ||
20844                 error "real dd $read_write error"
20845         local duration=$(bc <<< "$(date +%s.%N) - $start_time")
20846
20847         if [ "$read_write" = "write" ]; then
20848                 rm -f $DIR/$tfile
20849         fi
20850
20851         # define OBD_FAIL_OST_FAKE_RW           0x238
20852         do_facet ost1 $LCTL set_param fail_loc=0x238
20853
20854         local start_time=$(date +%s.%N)
20855         $dd_cmd bs=1M count=$blocks oflag=sync ||
20856                 error "fake dd $read_write error"
20857         local duration_fake=$(bc <<< "$(date +%s.%N) - $start_time")
20858
20859         if [ "$read_write" = "write" ]; then
20860                 # verify file size
20861                 cancel_lru_locks osc
20862                 $CHECKSTAT -t file -s $((blocks * 1024 * 1024)) $DIR/$tfile ||
20863                         error "$tfile size not $blocks MB"
20864         fi
20865         do_facet ost1 $LCTL set_param fail_loc=0
20866
20867         echo "fake $read_write $duration_fake vs. normal $read_write" \
20868                 "$duration in seconds"
20869         [ $(bc <<< "$duration_fake < $duration") -eq 1 ] ||
20870                 error_not_in_vm "fake write is slower"
20871
20872         $LCTL set_param -n debug="$saved_debug"
20873         rm -f $DIR/$tfile
20874 }
20875 test_399a() { # LU-7655 for OST fake write
20876         remote_ost_nodsh && skip "remote OST with nodsh"
20877
20878         test_fake_rw write
20879 }
20880 run_test 399a "fake write should not be slower than normal write"
20881
20882 test_399b() { # LU-8726 for OST fake read
20883         remote_ost_nodsh && skip "remote OST with nodsh"
20884         if [ "$ost1_FSTYPE" != "ldiskfs" ]; then
20885                 skip_env "ldiskfs only test"
20886         fi
20887
20888         test_fake_rw read
20889 }
20890 run_test 399b "fake read should not be slower than normal read"
20891
20892 test_400a() { # LU-1606, was conf-sanity test_74
20893         if ! which $CC > /dev/null 2>&1; then
20894                 skip_env "$CC is not installed"
20895         fi
20896
20897         local extra_flags=''
20898         local out=$TMP/$tfile
20899         local prefix=/usr/include/lustre
20900         local prog
20901
20902         # Oleg removes c files in his test rig so test if any c files exist
20903         [ -z "$(ls -A $LUSTRE_TESTS_API_DIR)" ] && \
20904                 skip_env "Needed c test files are missing"
20905
20906         if ! [[ -d $prefix ]]; then
20907                 # Assume we're running in tree and fixup the include path.
20908                 extra_flags+=" -I$LUSTRE/../lnet/include/uapi -I$LUSTRE/include/uapi -I$LUSTRE/include"
20909                 extra_flags+=" -L$LUSTRE/utils/.lib"
20910         fi
20911
20912         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
20913                 $CC -Wall -Werror -std=c99 $extra_flags -o $out $prog -llustreapi ||
20914                         error "client api broken"
20915         done
20916         rm -f $out
20917 }
20918 run_test 400a "Lustre client api program can compile and link"
20919
20920 test_400b() { # LU-1606, LU-5011
20921         local header
20922         local out=$TMP/$tfile
20923         local prefix=/usr/include/linux/lustre
20924
20925         # We use a hard coded prefix so that this test will not fail
20926         # when run in tree. There are headers in lustre/include/lustre/
20927         # that are not packaged (like lustre_idl.h) and have more
20928         # complicated include dependencies (like config.h and lnet/types.h).
20929         # Since this test about correct packaging we just skip them when
20930         # they don't exist (see below) rather than try to fixup cppflags.
20931
20932         if ! which $CC > /dev/null 2>&1; then
20933                 skip_env "$CC is not installed"
20934         fi
20935
20936         for header in $prefix/*.h; do
20937                 if ! [[ -f "$header" ]]; then
20938                         continue
20939                 fi
20940
20941                 if [[ "$(basename $header)" == lustre_ioctl.h ]]; then
20942                         continue # lustre_ioctl.h is internal header
20943                 fi
20944
20945                 $CC -Wall -Werror -std=c99 -include $header -c -x c /dev/null -o $out ||
20946                         error "cannot compile '$header'"
20947         done
20948         rm -f $out
20949 }
20950 run_test 400b "packaged headers can be compiled"
20951
20952 test_401a() { #LU-7437
20953         local printf_arg=$(find -printf 2>&1 | grep "unrecognized:")
20954         [ -n "$printf_arg" ] && skip_env "find does not support -printf"
20955
20956         #count the number of parameters by "list_param -R"
20957         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
20958         #count the number of parameters by listing proc files
20959         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
20960         echo "proc_dirs='$proc_dirs'"
20961         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
20962         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
20963                       sort -u | wc -l)
20964
20965         [ $params -eq $procs ] ||
20966                 error "found $params parameters vs. $procs proc files"
20967
20968         # test the list_param -D option only returns directories
20969         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
20970         #count the number of parameters by listing proc directories
20971         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
20972                 sort -u | wc -l)
20973
20974         [ $params -eq $procs ] ||
20975                 error "found $params parameters vs. $procs proc files"
20976 }
20977 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
20978
20979 test_401b() {
20980         local save=$($LCTL get_param -n jobid_var)
20981         local tmp=testing
20982
20983         $LCTL set_param foo=bar jobid_var=$tmp bar=baz &&
20984                 error "no error returned when setting bad parameters"
20985
20986         local jobid_new=$($LCTL get_param -n foe jobid_var baz)
20987         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
20988
20989         $LCTL set_param -n fog=bam jobid_var=$save bat=fog
20990         local jobid_old=$($LCTL get_param -n foe jobid_var bag)
20991         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
20992 }
20993 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
20994
20995 test_401c() {
20996         local jobid_var_old=$($LCTL get_param -n jobid_var)
20997         local jobid_var_new
20998
20999         $LCTL set_param jobid_var= &&
21000                 error "no error returned for 'set_param a='"
21001
21002         jobid_var_new=$($LCTL get_param -n jobid_var)
21003         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
21004                 error "jobid_var was changed by setting without value"
21005
21006         $LCTL set_param jobid_var &&
21007                 error "no error returned for 'set_param a'"
21008
21009         jobid_var_new=$($LCTL get_param -n jobid_var)
21010         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
21011                 error "jobid_var was changed by setting without value"
21012 }
21013 run_test 401c "Verify 'lctl set_param' without value fails in either format."
21014
21015 test_401d() {
21016         local jobid_var_old=$($LCTL get_param -n jobid_var)
21017         local jobid_var_new
21018         local new_value="foo=bar"
21019
21020         $LCTL set_param jobid_var=$new_value ||
21021                 error "'set_param a=b' did not accept a value containing '='"
21022
21023         jobid_var_new=$($LCTL get_param -n jobid_var)
21024         [[ "$jobid_var_new" == "$new_value" ]] ||
21025                 error "'set_param a=b' failed on a value containing '='"
21026
21027         # Reset the jobid_var to test the other format
21028         $LCTL set_param jobid_var=$jobid_var_old
21029         jobid_var_new=$($LCTL get_param -n jobid_var)
21030         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
21031                 error "failed to reset jobid_var"
21032
21033         $LCTL set_param jobid_var $new_value ||
21034                 error "'set_param a b' did not accept a value containing '='"
21035
21036         jobid_var_new=$($LCTL get_param -n jobid_var)
21037         [[ "$jobid_var_new" == "$new_value" ]] ||
21038                 error "'set_param a b' failed on a value containing '='"
21039
21040         $LCTL set_param jobid_var $jobid_var_old
21041         jobid_var_new=$($LCTL get_param -n jobid_var)
21042         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
21043                 error "failed to reset jobid_var"
21044 }
21045 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
21046
21047 test_402() {
21048         [[ $MDS1_VERSION -ge $(version_code 2.7.66) ]] ||
21049         [[ $MDS1_VERSION -ge $(version_code 2.7.18.4) &&
21050                 $MDS1_VERSION -lt $(version_code 2.7.50) ]] ||
21051         [[ $MDS1_VERSION -ge $(version_code 2.7.2) &&
21052                 $MDS1_VERSION -lt $(version_code 2.7.11) ]] ||
21053                 skip "Need MDS version 2.7.2+ or 2.7.18.4+ or 2.7.66+"
21054         remote_mds_nodsh && skip "remote MDS with nodsh"
21055
21056         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
21057 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
21058         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
21059         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
21060                 echo "Touch failed - OK"
21061 }
21062 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
21063
21064 test_403() {
21065         local file1=$DIR/$tfile.1
21066         local file2=$DIR/$tfile.2
21067         local tfile=$TMP/$tfile
21068
21069         rm -f $file1 $file2 $tfile
21070
21071         touch $file1
21072         ln $file1 $file2
21073
21074         # 30 sec OBD_TIMEOUT in ll_getattr()
21075         # right before populating st_nlink
21076         $LCTL set_param fail_loc=0x80001409
21077         stat -c %h $file1 > $tfile &
21078
21079         # create an alias, drop all locks and reclaim the dentry
21080         < $file2
21081         cancel_lru_locks mdc
21082         cancel_lru_locks osc
21083         sysctl -w vm.drop_caches=2
21084
21085         wait
21086
21087         [ $(cat $tfile) -gt 0 ] || error "wrong nlink count: $(cat $tfile)"
21088
21089         rm -f $tfile $file1 $file2
21090 }
21091 run_test 403 "i_nlink should not drop to zero due to aliasing"
21092
21093 test_404() { # LU-6601
21094         [[ $MDS1_VERSION -ge $(version_code 2.8.53) ]] ||
21095                 skip "Need server version newer than 2.8.52"
21096         remote_mds_nodsh && skip "remote MDS with nodsh"
21097
21098         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
21099                 awk '/osp .*-osc-MDT/ { print $4}')
21100
21101         local osp
21102         for osp in $mosps; do
21103                 echo "Deactivate: " $osp
21104                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
21105                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
21106                         awk -vp=$osp '$4 == p { print $2 }')
21107                 [ $stat = IN ] || {
21108                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
21109                         error "deactivate error"
21110                 }
21111                 echo "Activate: " $osp
21112                 do_facet $SINGLEMDS $LCTL --device %$osp activate
21113                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
21114                         awk -vp=$osp '$4 == p { print $2 }')
21115                 [ $stat = UP ] || {
21116                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
21117                         error "activate error"
21118                 }
21119         done
21120 }
21121 run_test 404 "validate manual {de}activated works properly for OSPs"
21122
21123 test_405() {
21124         [ -n "$FILESET" ] && skip "Not functional for FILESET set"
21125         [ $MDS1_VERSION -lt $(version_code 2.6.92) ] ||
21126                 [ $CLIENT_VERSION -lt $(version_code 2.6.99) ] &&
21127                         skip "Layout swap lock is not supported"
21128
21129         check_swap_layouts_support
21130
21131         test_mkdir $DIR/$tdir
21132         swap_lock_test -d $DIR/$tdir ||
21133                 error "One layout swap locked test failed"
21134 }
21135 run_test 405 "Various layout swap lock tests"
21136
21137 test_406() {
21138         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
21139         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
21140         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
21141         [ $PARALLEL == "yes" ] && skip "skip parallel run"
21142         [ $MDS1_VERSION -lt $(version_code 2.8.50) ] &&
21143                 skip "Need MDS version at least 2.8.50"
21144
21145         local def_stripe_size=$($LFS getstripe -S $MOUNT)
21146         local test_pool=$TESTNAME
21147
21148         pool_add $test_pool || error "pool_add failed"
21149         pool_add_targets $test_pool 0 $(($OSTCOUNT - 1)) 1 ||
21150                 error "pool_add_targets failed"
21151
21152         save_layout_restore_at_exit $MOUNT
21153
21154         # parent set default stripe count only, child will stripe from both
21155         # parent and fs default
21156         $LFS setstripe -c 1 -i 1 -S $((def_stripe_size * 2)) -p $test_pool $MOUNT ||
21157                 error "setstripe $MOUNT failed"
21158         $LFS mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
21159         $LFS setstripe -c $OSTCOUNT $DIR/$tdir || error "setstripe $tdir failed"
21160         for i in $(seq 10); do
21161                 local f=$DIR/$tdir/$tfile.$i
21162                 touch $f || error "touch failed"
21163                 local count=$($LFS getstripe -c $f)
21164                 [ $count -eq $OSTCOUNT ] ||
21165                         error "$f stripe count $count != $OSTCOUNT"
21166                 local offset=$($LFS getstripe -i $f)
21167                 [ $offset -eq 1 ] || error "$f stripe offset $offset != 1"
21168                 local size=$($LFS getstripe -S $f)
21169                 [ $size -eq $((def_stripe_size * 2)) ] ||
21170                         error "$f stripe size $size != $((def_stripe_size * 2))"
21171                 local pool=$($LFS getstripe -p $f)
21172                 [ $pool == $test_pool ] || error "$f pool $pool != $test_pool"
21173         done
21174
21175         # change fs default striping, delete parent default striping, now child
21176         # will stripe from new fs default striping only
21177         $LFS setstripe -c 1 -S $def_stripe_size -i 0 $MOUNT ||
21178                 error "change $MOUNT default stripe failed"
21179         $LFS setstripe -c 0 $DIR/$tdir ||
21180                 error "delete $tdir default stripe failed"
21181         for i in $(seq 11 20); do
21182                 local f=$DIR/$tdir/$tfile.$i
21183                 touch $f || error "touch $f failed"
21184                 local count=$($LFS getstripe -c $f)
21185                 [ $count -eq 1 ] || error "$f stripe count $count != 1"
21186                 local offset=$($LFS getstripe -i $f)
21187                 [ $offset -eq 0 ] || error "$f stripe offset $offset != 0"
21188                 local size=$($LFS getstripe -S $f)
21189                 [ $size -eq $def_stripe_size ] ||
21190                         error "$f stripe size $size != $def_stripe_size"
21191                 local pool=$($LFS getstripe -p $f)
21192                 [ $pool == $test_pool ] || error "$f pool $pool isn't set"
21193         done
21194
21195         unlinkmany $DIR/$tdir/$tfile. 1 20
21196
21197         local f=$DIR/$tdir/$tfile
21198         pool_remove_all_targets $test_pool $f
21199         pool_remove $test_pool $f
21200 }
21201 run_test 406 "DNE support fs default striping"
21202
21203 test_407() {
21204         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
21205         [[ $MDS1_VERSION -lt $(version_code 2.8.55) ]] &&
21206                 skip "Need MDS version at least 2.8.55"
21207         remote_mds_nodsh && skip "remote MDS with nodsh"
21208
21209         $LFS mkdir -i 0 -c 1 $DIR/$tdir.0 ||
21210                 error "$LFS mkdir -i 0 -c 1 $tdir.0 failed"
21211         $LFS mkdir -i 1 -c 1 $DIR/$tdir.1 ||
21212                 error "$LFS mkdir -i 1 -c 1 $tdir.1 failed"
21213         touch $DIR/$tdir.0/$tfile.0 || error "touch $tdir.0/$tfile.0 failed"
21214
21215         #define OBD_FAIL_DT_TXN_STOP    0x2019
21216         for idx in $(seq $MDSCOUNT); do
21217                 do_facet mds$idx "lctl set_param fail_loc=0x2019"
21218         done
21219         $LFS mkdir -c 2 $DIR/$tdir && error "$LFS mkdir -c 2 $tdir should fail"
21220         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1/$tfile.1 &&
21221                 error "mv $tdir.0/$tfile.0 $tdir.1/$tfile.1 should fail"
21222         true
21223 }
21224 run_test 407 "transaction fail should cause operation fail"
21225
21226 test_408() {
21227         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1 oflag=direct
21228
21229         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
21230         lctl set_param fail_loc=0x8000040a
21231         # let ll_prepare_partial_page() fail
21232         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 conv=notrunc || true
21233
21234         rm -f $DIR/$tfile
21235
21236         # create at least 100 unused inodes so that
21237         # shrink_icache_memory(0) should not return 0
21238         touch $DIR/$tfile-{0..100}
21239         rm -f $DIR/$tfile-{0..100}
21240         sync
21241
21242         echo 2 > /proc/sys/vm/drop_caches
21243 }
21244 run_test 408 "drop_caches should not hang due to page leaks"
21245
21246 test_409()
21247 {
21248         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
21249
21250         mkdir -p $DIR/$tdir || error "(0) Fail to mkdir"
21251         $LFS mkdir -i 1 -c 2 $DIR/$tdir/foo || error "(1) Fail to mkdir"
21252         touch $DIR/$tdir/guard || error "(2) Fail to create"
21253
21254         local PREFIX=$(str_repeat 'A' 128)
21255         echo "Create 1K hard links start at $(date)"
21256         createmany -l $DIR/$tdir/guard $DIR/$tdir/foo/${PREFIX}_ 1000 ||
21257                 error "(3) Fail to hard link"
21258
21259         echo "Links count should be right although linkEA overflow"
21260         stat $DIR/$tdir/guard || error "(4) Fail to stat"
21261         local linkcount=$(stat --format=%h $DIR/$tdir/guard)
21262         [ $linkcount -eq 1001 ] ||
21263                 error "(5) Unexpected hard links count: $linkcount"
21264
21265         echo "List all links start at $(date)"
21266         ls -l $DIR/$tdir/foo > /dev/null ||
21267                 error "(6) Fail to list $DIR/$tdir/foo"
21268
21269         echo "Unlink hard links start at $(date)"
21270         unlinkmany $DIR/$tdir/foo/${PREFIX}_ 1000 ||
21271                 error "(7) Fail to unlink"
21272         echo "Unlink hard links finished at $(date)"
21273 }
21274 run_test 409 "Large amount of cross-MDTs hard links on the same file"
21275
21276 test_410()
21277 {
21278         [[ $CLIENT_VERSION -lt $(version_code 2.9.59) ]] &&
21279                 skip "Need client version at least 2.9.59"
21280
21281         # Create a file, and stat it from the kernel
21282         local testfile=$DIR/$tfile
21283         touch $testfile
21284
21285         local run_id=$RANDOM
21286         local my_ino=$(stat --format "%i" $testfile)
21287
21288         # Try to insert the module. This will always fail as the
21289         # module is designed to not be inserted.
21290         insmod $LUSTRE/tests/kernel/kinode.ko run_id=$run_id fname=$testfile \
21291             &> /dev/null
21292
21293         # Anything but success is a test failure
21294         dmesg | grep -q \
21295             "lustre_kinode_$run_id: inode numbers are identical: $my_ino" ||
21296             error "no inode match"
21297 }
21298 run_test 410 "Test inode number returned from kernel thread"
21299
21300 cleanup_test411_cgroup() {
21301         trap 0
21302         rmdir "$1"
21303 }
21304
21305 test_411() {
21306         local cg_basedir=/sys/fs/cgroup/memory
21307         # LU-9966
21308         test -f "$cg_basedir/memory.kmem.limit_in_bytes" ||
21309                 skip "no setup for cgroup"
21310
21311         dd if=/dev/zero of=$DIR/$tfile bs=1M count=100 conv=fsync ||
21312                 error "test file creation failed"
21313         cancel_lru_locks osc
21314
21315         # Create a very small memory cgroup to force a slab allocation error
21316         local cgdir=$cg_basedir/osc_slab_alloc
21317         mkdir $cgdir || error "cgroup mkdir '$cgdir' failed"
21318         trap "cleanup_test411_cgroup $cgdir" EXIT
21319         echo 2M > $cgdir/memory.kmem.limit_in_bytes
21320         echo 1M > $cgdir/memory.limit_in_bytes
21321
21322         # Should not LBUG, just be killed by oom-killer
21323         # dd will return 0 even allocation failure in some environment.
21324         # So don't check return value
21325         sh -c "echo \$$ > $cgdir/tasks && dd if=$DIR/$tfile of=/dev/null"
21326         cleanup_test411_cgroup $cgdir
21327
21328         return 0
21329 }
21330 run_test 411 "Slab allocation error with cgroup does not LBUG"
21331
21332 test_412() {
21333         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
21334         if [ $MDS1_VERSION -lt $(version_code 2.10.55) ]; then
21335                 skip "Need server version at least 2.10.55"
21336         fi
21337
21338         $LFS mkdir -i $((MDSCOUNT - 1)),$((MDSCOUNT - 2)) $DIR/$tdir ||
21339                 error "mkdir failed"
21340         $LFS getdirstripe $DIR/$tdir
21341         local stripe_index=$($LFS getdirstripe -i $DIR/$tdir)
21342         [ $stripe_index -eq $((MDSCOUNT - 1)) ] ||
21343                 error "expect $((MDSCOUT - 1)) get $stripe_index"
21344         local stripe_count=$($LFS getdirstripe -T $DIR/$tdir)
21345         [ $stripe_count -eq 2 ] ||
21346                 error "expect 2 get $stripe_count"
21347 }
21348 run_test 412 "mkdir on specific MDTs"
21349
21350 test_qos_mkdir() {
21351         local mkdir_cmd=$1
21352         local stripe_count=$2
21353         local mdts=$(comma_list $(mdts_nodes))
21354
21355         local testdir
21356         local lmv_qos_prio_free
21357         local lmv_qos_threshold_rr
21358         local lmv_qos_maxage
21359         local lod_qos_prio_free
21360         local lod_qos_threshold_rr
21361         local lod_qos_maxage
21362         local count
21363         local i
21364
21365         lmv_qos_prio_free=$($LCTL get_param -n lmv.*.qos_prio_free | head -n1)
21366         lmv_qos_prio_free=${lmv_qos_prio_free%%%}
21367         lmv_qos_threshold_rr=$($LCTL get_param -n lmv.*.qos_threshold_rr |
21368                 head -n1)
21369         lmv_qos_threshold_rr=${lmv_qos_threshold_rr%%%}
21370         lmv_qos_maxage=$($LCTL get_param -n lmv.*.qos_maxage)
21371         stack_trap "$LCTL set_param \
21372                 lmv.*.qos_prio_free=$lmv_qos_prio_free > /dev/null" EXIT
21373         stack_trap "$LCTL set_param \
21374                 lmv.*.qos_threshold_rr=$lmv_qos_threshold_rr > /dev/null" EXIT
21375         stack_trap "$LCTL set_param \
21376                 lmv.*.qos_maxage=$lmv_qos_maxage > /dev/null" EXIT
21377
21378         lod_qos_prio_free=$(do_facet mds1 $LCTL get_param -n \
21379                 lod.$FSNAME-MDT0000-mdtlov.mdt_qos_prio_free | head -n1)
21380         lod_qos_prio_free=${lod_qos_prio_free%%%}
21381         lod_qos_threshold_rr=$(do_facet mds1 $LCTL get_param -n \
21382                 lod.$FSNAME-MDT0000-mdtlov.mdt_qos_threshold_rr | head -n1)
21383         lod_qos_threshold_rr=${lod_qos_threshold_rr%%%}
21384         lod_qos_maxage=$(do_facet mds1 $LCTL get_param -n \
21385                 lod.$FSNAME-MDT0000-mdtlov.qos_maxage | awk '{ print $1 }')
21386         stack_trap "do_nodes $mdts $LCTL set_param \
21387                 lod.*.mdt_qos_prio_free=$lod_qos_prio_free > /dev/null" EXIT
21388         stack_trap "do_nodes $mdts $LCTL set_param \
21389                 lod.*.mdt_qos_threshold_rr=$lod_qos_threshold_rr > /dev/null" \
21390                 EXIT
21391         stack_trap "do_nodes $mdts $LCTL set_param \
21392                 lod.*.mdt_qos_maxage=$lod_qos_maxage > /dev/null" EXIT
21393
21394         echo
21395         echo "Mkdir (stripe_count $stripe_count) roundrobin:"
21396
21397         $LCTL set_param lmv.*.qos_threshold_rr=100 > /dev/null
21398         do_nodes $mdts $LCTL set_param lod.*.mdt_qos_threshold_rr=100 > /dev/null
21399
21400         testdir=$DIR/$tdir-s$stripe_count/rr
21401
21402         for i in $(seq $((100 * MDSCOUNT))); do
21403                 eval $mkdir_cmd $testdir/subdir$i ||
21404                         error "$mkdir_cmd subdir$i failed"
21405         done
21406
21407         for i in $(seq $MDSCOUNT); do
21408                 count=$($LFS getdirstripe -i $testdir/* |
21409                                 grep ^$((i - 1))$ | wc -l)
21410                 echo "$count directories created on MDT$((i - 1))"
21411                 [ $count -eq 100 ] || error "subdirs are not evenly distributed"
21412
21413                 if [ $stripe_count -gt 1 ]; then
21414                         count=$($LFS getdirstripe $testdir/* |
21415                                 grep -P "^\s+$((i - 1))\t" | wc -l)
21416                         echo "$count stripes created on MDT$((i - 1))"
21417                         # deviation should < 5% of average
21418                         [ $count -lt $((95 * stripe_count)) ] ||
21419                         [ $count -gt $((105 * stripe_count)) ] &&
21420                                 error "stripes are not evenly distributed"
21421                 fi
21422         done
21423
21424         $LCTL set_param lmv.*.qos_threshold_rr=$lmv_qos_threshold_rr > /dev/null
21425         do_nodes $mdts $LCTL set_param \
21426                 lod.*.mdt_qos_threshold_rr=$lod_qos_threshold_rr > /dev/null
21427
21428         echo
21429         echo "Check for uneven MDTs: "
21430
21431         local ffree
21432         local bavail
21433         local max
21434         local min
21435         local max_index
21436         local min_index
21437         local tmp
21438
21439         ffree=($(lctl get_param -n mdc.*[mM][dD][cC]-[^M]*.filesfree))
21440         bavail=($(lctl get_param -n mdc.*[mM][dD][cC]-[^M]*.kbytesavail))
21441         bsize=$(lctl get_param -n mdc.*MDT0000*.blocksize)
21442
21443         max=$(((${ffree[0]} >> 8) * (${bavail[0]} * bsize >> 16)))
21444         min=$(((${ffree[0]} >> 8) * (${bavail[0]} * bsize >> 16)))
21445         max_index=0
21446         min_index=0
21447         for ((i = 1; i < ${#ffree[@]}; i++)); do
21448                 tmp=$(((${ffree[i]} >> 8) * (${bavail[i]} * bsize >> 16)))
21449                 if [ $tmp -gt $max ]; then
21450                         max=$tmp
21451                         max_index=$i
21452                 fi
21453                 if [ $tmp -lt $min ]; then
21454                         min=$tmp
21455                         min_index=$i
21456                 fi
21457         done
21458
21459         [ ${ffree[min_index]} -eq 0 ] &&
21460                 skip "no free files in MDT$min_index"
21461         [ ${ffree[min_index]} -gt 100000000 ] &&
21462                 skip "too much free files in MDT$min_index"
21463
21464         # Check if we need to generate uneven MDTs
21465         local threshold=50
21466         local diff=$(((max - min) * 100 / min))
21467         local value="$(generate_string 1024)"
21468
21469         while [ $diff -lt $threshold ]; do
21470                 # generate uneven MDTs, create till $threshold% diff
21471                 echo -n "weight diff=$diff% must be > $threshold% ..."
21472                 count=$((${ffree[min_index]} / 10))
21473                 # 50 sec per 10000 files in vm
21474                 [ $count -gt 40000 ] && [ "$SLOW" = "no" ] &&
21475                         skip "$count files to create"
21476                 echo "Fill MDT$min_index with $count files"
21477                 [ -d $DIR/$tdir-MDT$min_index ] ||
21478                         $LFS mkdir -i $min_index $DIR/$tdir-MDT$min_index ||
21479                         error "mkdir $tdir-MDT$min_index failed"
21480                 for i in $(seq $count); do
21481                         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE \
21482                                 $DIR/$tdir-MDT$min_index/f$j_$i > /dev/null ||
21483                                 error "create f$j_$i failed"
21484                         setfattr -n user.413b -v $value \
21485                                 $DIR/$tdir-MDT$min_index/f$j_$i ||
21486                                 error "setfattr f$j_$i failed"
21487                 done
21488
21489                 ffree=($(lctl get_param -n mdc.*[mM][dD][cC]-*.filesfree))
21490                 bavail=($(lctl get_param -n mdc.*[mM][dD][cC]-*.kbytesavail))
21491                 max=$(((${ffree[max_index]} >> 8) * \
21492                         (${bavail[max_index]} * bsize >> 16)))
21493                 min=$(((${ffree[min_index]} >> 8) * \
21494                         (${bavail[min_index]} * bsize >> 16)))
21495                 diff=$(((max - min) * 100 / min))
21496         done
21497
21498         echo "MDT filesfree available: ${ffree[@]}"
21499         echo "MDT blocks available: ${bavail[@]}"
21500         echo "weight diff=$diff%"
21501
21502         echo
21503         echo "Mkdir (stripe_count $stripe_count) with balanced space usage:"
21504
21505         $LCTL set_param lmv.*.qos_prio_free=100 > /dev/null
21506         do_nodes $mdts $LCTL set_param lod.*.mdt_qos_prio_free=100 > /dev/null
21507         # decrease statfs age, so that it can be updated in time
21508         $LCTL set_param lmv.*.qos_maxage=1 > /dev/null
21509         do_nodes $mdts $LCTL set_param lod.*.mdt_qos_maxage=1 > /dev/null
21510
21511         sleep 1
21512
21513         testdir=$DIR/$tdir-s$stripe_count/qos
21514
21515         for i in $(seq $((100 * MDSCOUNT))); do
21516                 eval $mkdir_cmd $testdir/subdir$i ||
21517                         error "$mkdir_cmd subdir$i failed"
21518         done
21519
21520         for i in $(seq $MDSCOUNT); do
21521                 count=$($LFS getdirstripe -i $testdir/* | grep ^$((i - 1))$ |
21522                         wc -l)
21523                 echo "$count directories created on MDT$((i - 1))"
21524
21525                 if [ $stripe_count -gt 1 ]; then
21526                         count=$($LFS getdirstripe $testdir/* |
21527                                 grep -P "^\s+$((i - 1))\t" | wc -l)
21528                         echo "$count stripes created on MDT$((i - 1))"
21529                 fi
21530         done
21531
21532         max=$($LFS getdirstripe -i $testdir/* | grep ^$max_index$ | wc -l)
21533         min=$($LFS getdirstripe -i $testdir/* | grep ^$min_index$ | wc -l)
21534
21535         # D-value should > 10% of averge
21536         [ $((max - min)) -lt 10 ] &&
21537                 error "subdirs shouldn't be evenly distributed"
21538
21539         # ditto
21540         if [ $stripe_count -gt 1 ]; then
21541                 max=$($LFS getdirstripe $testdir/* |
21542                         grep -P "^\s+$max_index\t" | wc -l)
21543                 min=$($LFS getdirstripe $testdir/* |
21544                         grep -P "^\s+$min_index\t" | wc -l)
21545                 [ $((max - min)) -le $((10 * stripe_count)) ] &&
21546                         error "stripes shouldn't be evenly distributed"|| true
21547         fi
21548 }
21549
21550 test_413a() {
21551         [ $MDSCOUNT -lt 2 ] &&
21552                 skip "We need at least 2 MDTs for this test"
21553
21554         [ $MDS1_VERSION -lt $(version_code 2.12.52) ] &&
21555                 skip "Need server version at least 2.12.52"
21556
21557         local stripe_count
21558
21559         for stripe_count in $(seq 1 $((MDSCOUNT - 1))); do
21560                 mkdir $DIR/$tdir-s$stripe_count || error "mkdir failed"
21561                 mkdir $DIR/$tdir-s$stripe_count/rr || error "mkdir failed"
21562                 mkdir $DIR/$tdir-s$stripe_count/qos || error "mkdir failed"
21563                 test_qos_mkdir "$LFS mkdir -c $stripe_count" $stripe_count
21564         done
21565 }
21566 run_test 413a "QoS mkdir with 'lfs mkdir -i -1'"
21567
21568 test_413b() {
21569         [ $MDSCOUNT -lt 2 ] &&
21570                 skip "We need at least 2 MDTs for this test"
21571
21572         [ $MDS1_VERSION -lt $(version_code 2.12.52) ] &&
21573                 skip "Need server version at least 2.12.52"
21574
21575         local stripe_count
21576
21577         for stripe_count in $(seq 1 $((MDSCOUNT - 1))); do
21578                 mkdir $DIR/$tdir-s$stripe_count || error "mkdir failed"
21579                 mkdir $DIR/$tdir-s$stripe_count/rr || error "mkdir failed"
21580                 mkdir $DIR/$tdir-s$stripe_count/qos || error "mkdir failed"
21581                 $LFS setdirstripe -D -c $stripe_count \
21582                         $DIR/$tdir-s$stripe_count/rr ||
21583                         error "setdirstripe failed"
21584                 $LFS setdirstripe -D -c $stripe_count \
21585                         $DIR/$tdir-s$stripe_count/qos ||
21586                         error "setdirstripe failed"
21587                 test_qos_mkdir "mkdir" $stripe_count
21588         done
21589 }
21590 run_test 413b "QoS mkdir under dir whose default LMV starting MDT offset is -1"
21591
21592 test_414() {
21593 #define OBD_FAIL_PTLRPC_BULK_ATTACH      0x521
21594         $LCTL set_param fail_loc=0x80000521
21595         dd if=/dev/zero of=$DIR/$tfile bs=2M count=1 oflag=sync
21596         rm -f $DIR/$tfile
21597 }
21598 run_test 414 "simulate ENOMEM in ptlrpc_register_bulk()"
21599
21600 test_415() {
21601         [ $PARALLEL == "yes" ] && skip "skip parallel run"
21602         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
21603                 skip "Need server version at least 2.11.52"
21604
21605         # LU-11102
21606         local total
21607         local setattr_pid
21608         local start_time
21609         local end_time
21610         local duration
21611
21612         total=500
21613         # this test may be slow on ZFS
21614         [ "$mds1_FSTYPE" == "zfs" ] && total=100
21615
21616         # though this test is designed for striped directory, let's test normal
21617         # directory too since lock is always saved as CoS lock.
21618         test_mkdir $DIR/$tdir || error "mkdir $tdir"
21619         createmany -o $DIR/$tdir/$tfile. $total || error "createmany"
21620
21621         (
21622                 while true; do
21623                         touch $DIR/$tdir
21624                 done
21625         ) &
21626         setattr_pid=$!
21627
21628         start_time=$(date +%s)
21629         for i in $(seq $total); do
21630                 mrename $DIR/$tdir/$tfile.$i $DIR/$tdir/$tfile-new.$i \
21631                         > /dev/null
21632         done
21633         end_time=$(date +%s)
21634         duration=$((end_time - start_time))
21635
21636         kill -9 $setattr_pid
21637
21638         echo "rename $total files took $duration sec"
21639         [ $duration -lt 100 ] || error "rename took $duration sec"
21640 }
21641 run_test 415 "lock revoke is not missing"
21642
21643 test_416() {
21644         [ $MDS1_VERSION -lt $(version_code 2.11.55) ] &&
21645                 skip "Need server version at least 2.11.55"
21646
21647         # define OBD_FAIL_OSD_TXN_START    0x19a
21648         do_facet mds1 lctl set_param fail_loc=0x19a
21649
21650         lfs mkdir -c $MDSCOUNT $DIR/$tdir
21651
21652         true
21653 }
21654 run_test 416 "transaction start failure won't cause system hung"
21655
21656 cleanup_417() {
21657         trap 0
21658         do_nodes $(comma_list $(mdts_nodes)) \
21659                 "$LCTL set_param -n mdt.*MDT*.enable_dir_migration=1"
21660         do_nodes $(comma_list $(mdts_nodes)) \
21661                 "$LCTL set_param -n mdt.*MDT*.enable_remote_dir=1"
21662         do_nodes $(comma_list $(mdts_nodes)) \
21663                 "$LCTL set_param -n mdt.*MDT*.enable_striped_dir=1"
21664 }
21665
21666 test_417() {
21667         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
21668         [[ $MDS1_VERSION -lt $(version_code 2.11.56) ]] &&
21669                 skip "Need MDS version at least 2.11.56"
21670
21671         trap cleanup_417 RETURN EXIT
21672
21673         $LFS mkdir -i 1 $DIR/$tdir.1 || error "create remote dir $tdir.1 failed"
21674         do_nodes $(comma_list $(mdts_nodes)) \
21675                 "$LCTL set_param -n mdt.*MDT*.enable_dir_migration=0"
21676         $LFS migrate -m 0 $DIR/$tdir.1 &&
21677                 error "migrate dir $tdir.1 should fail"
21678
21679         do_nodes $(comma_list $(mdts_nodes)) \
21680                 "$LCTL set_param -n mdt.*MDT*.enable_remote_dir=0"
21681         $LFS mkdir -i 1 $DIR/$tdir.2 &&
21682                 error "create remote dir $tdir.2 should fail"
21683
21684         do_nodes $(comma_list $(mdts_nodes)) \
21685                 "$LCTL set_param -n mdt.*MDT*.enable_striped_dir=0"
21686         $LFS mkdir -c 2 $DIR/$tdir.3 &&
21687                 error "create striped dir $tdir.3 should fail"
21688         true
21689 }
21690 run_test 417 "disable remote dir, striped dir and dir migration"
21691
21692 # Checks that the outputs of df [-i] and lfs df [-i] match
21693 #
21694 # usage: check_lfs_df <blocks | inodes> <mountpoint>
21695 check_lfs_df() {
21696         local dir=$2
21697         local inodes
21698         local df_out
21699         local lfs_df_out
21700         local count
21701         local passed=false
21702
21703         # blocks or inodes
21704         [ "$1" == "blocks" ] && inodes= || inodes="-i"
21705
21706         for count in {1..100}; do
21707                 cancel_lru_locks
21708                 sync; sleep 0.2
21709
21710                 # read the lines of interest
21711                 df_out=($(df -P $inodes $dir | tail -n +2)) ||
21712                         error "df $inodes $dir | tail -n +2 failed"
21713                 lfs_df_out=($($LFS df $inodes $dir | grep summary:)) ||
21714                         error "lfs df $inodes $dir | grep summary: failed"
21715
21716                 # skip first substrings of each output as they are different
21717                 # "<NID>:/<fsname>" for df, "filesystem_summary:" for lfs df
21718                 # compare the two outputs
21719                 passed=true
21720                 for i in {1..5}; do
21721                         [ "${df_out[i]}" != "${lfs_df_out[i]}" ] && passed=false
21722                 done
21723                 $passed && break
21724         done
21725
21726         if ! $passed; then
21727                 df -P $inodes $dir
21728                 echo
21729                 lfs df $inodes $dir
21730                 error "df and lfs df $1 output mismatch: "      \
21731                       "df ${inodes}: ${df_out[*]}, "            \
21732                       "lfs df ${inodes}: ${lfs_df_out[*]}"
21733         fi
21734 }
21735
21736 test_418() {
21737         [ $PARALLEL == "yes" ] && skip "skip parallel run"
21738
21739         local dir=$DIR/$tdir
21740         local numfiles=$((RANDOM % 4096 + 2))
21741         local numblocks=$((RANDOM % 256 + 1))
21742
21743         wait_delete_completed
21744         test_mkdir $dir
21745
21746         # check block output
21747         check_lfs_df blocks $dir
21748         # check inode output
21749         check_lfs_df inodes $dir
21750
21751         # create a single file and retest
21752         echo "Creating a single file and testing"
21753         createmany -o $dir/$tfile- 1 &>/dev/null ||
21754                 error "creating 1 file in $dir failed"
21755         check_lfs_df blocks $dir
21756         check_lfs_df inodes $dir
21757
21758         # create a random number of files
21759         echo "Creating $((numfiles - 1)) files and testing"
21760         createmany -o $dir/$tfile- 1 $((numfiles - 1)) &>/dev/null ||
21761                 error "creating $((numfiles - 1)) files in $dir failed"
21762
21763         # write a random number of blocks to the first test file
21764         echo "Writing $numblocks 4K blocks and testing"
21765         dd if=/dev/urandom of=$dir/${tfile}-0 bs=4K conv=fsync \
21766                 count=$numblocks &>/dev/null ||
21767                 error "dd to $dir/${tfile}-0 failed"
21768
21769         # retest
21770         check_lfs_df blocks $dir
21771         check_lfs_df inodes $dir
21772
21773         unlinkmany $dir/$tfile- $numfiles &>/dev/null ||
21774                 error "unlinking $numfiles files in $dir failed"
21775 }
21776 run_test 418 "df and lfs df outputs match"
21777
21778 test_419()
21779 {
21780         local dir=$DIR/$tdir
21781
21782         mkdir -p $dir
21783         touch $dir/file
21784
21785         cancel_lru_locks mdc
21786
21787         #OBD_FAIL_LLITE_OPEN_BY_NAME    0x1410
21788         $LCTL set_param fail_loc=0x1410
21789         cat $dir/file
21790         $LCTL set_param fail_loc=0
21791         rm -rf $dir
21792 }
21793 run_test 419 "Verify open file by name doesn't crash kernel"
21794
21795 test_420()
21796 {
21797         [[ $MDS1_VERSION -ge $(version_code 2.12.53) ]] ||
21798                 skip "Need MDS version at least 2.12.53"
21799
21800         local SAVE_UMASK=$(umask)
21801         local dir=$DIR/$tdir
21802         local uname=$(getent passwd $RUNAS_ID | cut -d: -f1)
21803
21804         mkdir -p $dir
21805         umask 0000
21806         mkdir -m03777 $dir/testdir
21807         ls -dn $dir/testdir
21808         # Need to remove trailing '.' when SELinux is enabled
21809         local dirperms=$(ls -dn $dir/testdir |
21810                          awk '{ sub(/\.$/, "", $1); print $1}')
21811         [ $dirperms == "drwxrwsrwt" ] ||
21812                 error "incorrect perms on $dir/testdir"
21813
21814         su - $uname -c "PATH=$LUSTRE/tests:\$PATH; \
21815                 openfile -f O_RDONLY:O_CREAT -m 02755 $dir/testdir/testfile"
21816         ls -n $dir/testdir/testfile
21817         local fileperms=$(ls -n $dir/testdir/testfile |
21818                           awk '{ sub(/\.$/, "", $1); print $1}')
21819         [ $fileperms == "-rwxr-xr-x" ] ||
21820                 error "incorrect perms on $dir/testdir/testfile"
21821
21822         umask $SAVE_UMASK
21823 }
21824 run_test 420 "clear SGID bit on non-directories for non-members"
21825
21826 test_421a() {
21827         local cnt
21828         local fid1
21829         local fid2
21830
21831         [ $MDS1_VERSION -lt $(version_code 2.12.54) ] &&
21832                 skip "Need MDS version at least 2.12.54"
21833
21834         test_mkdir $DIR/$tdir
21835         createmany -o $DIR/$tdir/f 3
21836         cnt=$(ls -1 $DIR/$tdir | wc -l)
21837         [ $cnt != 3 ] && error "unexpected #files: $cnt"
21838
21839         fid1=$(lfs path2fid $DIR/$tdir/f1)
21840         fid2=$(lfs path2fid $DIR/$tdir/f2)
21841         $LFS rmfid $DIR $fid1 $fid2 || error "rmfid failed"
21842
21843         stat $DIR/$tdir/f1 && error "f1 still visible on the client"
21844         stat $DIR/$tdir/f2 && error "f2 still visible on the client"
21845
21846         cnt=$(ls -1 $DIR/$tdir | wc -l)
21847         [ $cnt == 1 ] || error "unexpected #files after: $cnt"
21848
21849         rm -f $DIR/$tdir/f3 || error "can't remove f3"
21850         createmany -o $DIR/$tdir/f 3
21851         cnt=$(ls -1 $DIR/$tdir | wc -l)
21852         [ $cnt != 3 ] && error "unexpected #files: $cnt"
21853
21854         fid1=$(lfs path2fid $DIR/$tdir/f1)
21855         fid2=$(lfs path2fid $DIR/$tdir/f2)
21856         echo "remove using fsname $FSNAME"
21857         $LFS rmfid $FSNAME $fid1 $fid2 || error "rmfid with fsname failed"
21858
21859         cnt=$(ls -1 $DIR/$tdir | wc -l)
21860         [ $cnt == 1 ] || error "unexpected #files after: $cnt"
21861 }
21862 run_test 421a "simple rm by fid"
21863
21864 test_421b() {
21865         local cnt
21866         local FID1
21867         local FID2
21868
21869         [ $MDS1_VERSION -lt $(version_code 2.12.54) ] &&
21870                 skip "Need MDS version at least 2.12.54"
21871
21872         test_mkdir $DIR/$tdir
21873         createmany -o $DIR/$tdir/f 3
21874         multiop_bg_pause $DIR/$tdir/f1 o_c || error "multiop failed to start"
21875         MULTIPID=$!
21876
21877         FID1=$(lfs path2fid $DIR/$tdir/f1)
21878         FID2=$(lfs path2fid $DIR/$tdir/f2)
21879         $LFS rmfid $DIR $FID1 $FID2 && error "rmfid didn't fail"
21880
21881         kill -USR1 $MULTIPID
21882         wait
21883
21884         cnt=$(ls $DIR/$tdir | wc -l)
21885         [ $cnt == 2 ] || error "unexpected #files after: $cnt"
21886 }
21887 run_test 421b "rm by fid on open file"
21888
21889 test_421c() {
21890         local cnt
21891         local FIDS
21892
21893         [ $MDS1_VERSION -lt $(version_code 2.12.54) ] &&
21894                 skip "Need MDS version at least 2.12.54"
21895
21896         test_mkdir $DIR/$tdir
21897         createmany -o $DIR/$tdir/f 3
21898         touch $DIR/$tdir/$tfile
21899         createmany -l$DIR/$tdir/$tfile $DIR/$tdir/h 180
21900         cnt=$(ls -1 $DIR/$tdir | wc -l)
21901         [ $cnt != 184 ] && error "unexpected #files: $cnt"
21902
21903         FID1=$(lfs path2fid $DIR/$tdir/$tfile)
21904         $LFS rmfid $DIR $FID1 || error "rmfid failed"
21905
21906         cnt=$(ls $DIR/$tdir | wc -l)
21907         [ $cnt == 3 ] || error "unexpected #files after: $cnt"
21908 }
21909 run_test 421c "rm by fid against hardlinked files"
21910
21911 test_421d() {
21912         local cnt
21913         local FIDS
21914
21915         [ $MDS1_VERSION -lt $(version_code 2.12.54) ] &&
21916                 skip "Need MDS version at least 2.12.54"
21917
21918         test_mkdir $DIR/$tdir
21919         createmany -o $DIR/$tdir/f 4097
21920         cnt=$(ls -1 $DIR/$tdir | wc -l)
21921         [ $cnt != 4097 ] && error "unexpected #files: $cnt"
21922
21923         FIDS=$(lfs path2fid $DIR/$tdir/f* | sed "s/[/][^:]*://g")
21924         $LFS rmfid $DIR $FIDS || error "rmfid failed"
21925
21926         cnt=$(ls $DIR/$tdir | wc -l)
21927         rm -rf $DIR/$tdir
21928         [ $cnt == 0 ] || error "unexpected #files after: $cnt"
21929 }
21930 run_test 421d "rmfid en masse"
21931
21932 test_421e() {
21933         local cnt
21934         local FID
21935
21936         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
21937         [ $MDS1_VERSION -lt $(version_code 2.12.54) ] &&
21938                 skip "Need MDS version at least 2.12.54"
21939
21940         mkdir -p $DIR/$tdir
21941         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
21942         createmany -o $DIR/$tdir/striped_dir/f 512
21943         cnt=$(ls -1 $DIR/$tdir/striped_dir | wc -l)
21944         [ $cnt != 512 ] && error "unexpected #files: $cnt"
21945
21946         FIDS=$(lfs path2fid $DIR/$tdir/striped_dir/f* |
21947                 sed "s/[/][^:]*://g")
21948         $LFS rmfid $DIR $FIDS || error "rmfid failed"
21949
21950         cnt=$(ls $DIR/$tdir/striped_dir | wc -l)
21951         rm -rf $DIR/$tdir
21952         [ $cnt == 0 ] || error "unexpected #files after: $cnt"
21953 }
21954 run_test 421e "rmfid in DNE"
21955
21956 test_421f() {
21957         local cnt
21958         local FID
21959
21960         [ $MDS1_VERSION -lt $(version_code 2.12.54) ] &&
21961                 skip "Need MDS version at least 2.12.54"
21962
21963         test_mkdir $DIR/$tdir
21964         touch $DIR/$tdir/f
21965         cnt=$(ls -1 $DIR/$tdir | wc -l)
21966         [ $cnt != 1 ] && error "unexpected #files: $cnt"
21967
21968         FID=$(lfs path2fid $DIR/$tdir/f)
21969         $RUNAS $LFS rmfid $DIR $FID && error "rmfid didn't fail (1)"
21970         # rmfid should fail
21971         cnt=$(ls -1 $DIR/$tdir | wc -l)
21972         [ $cnt != 1 ] && error "unexpected #files after (2): $cnt"
21973
21974         chmod a+rw $DIR/$tdir
21975         ls -la $DIR/$tdir
21976         $RUNAS $LFS rmfid $DIR $FID && error "rmfid didn't fail (2)"
21977         # rmfid should fail
21978         cnt=$(ls -1 $DIR/$tdir | wc -l)
21979         [ $cnt != 1 ] && error "unexpected #files after (3): $cnt"
21980
21981         rm -f $DIR/$tdir/f
21982         $RUNAS touch $DIR/$tdir/f
21983         FID=$(lfs path2fid $DIR/$tdir/f)
21984         echo "rmfid as root"
21985         $LFS rmfid $DIR $FID || error "rmfid as root failed"
21986         cnt=$(ls -1 $DIR/$tdir | wc -l)
21987         [ $cnt == 0 ] || error "unexpected #files after (4): $cnt"
21988
21989         rm -f $DIR/$tdir/f
21990         $RUNAS touch $DIR/$tdir/f
21991         cnt=$(ls -1 $DIR/$tdir | wc -l)
21992         [ $cnt != 1 ] && error "unexpected #files (4): $cnt"
21993         FID=$(lfs path2fid $DIR/$tdir/f)
21994         # rmfid w/o user_fid2path mount option should fail
21995         $RUNAS $LFS rmfid $DIR $FID && error "rmfid didn't fail(3)"
21996         cnt=$(ls -1 $DIR/$tdir | wc -l)
21997         [ $cnt == 1 ] || error "unexpected #files after (5): $cnt"
21998
21999         umount_client $MOUNT || error "failed to umount client"
22000         mount_client $MOUNT "$MOUNT_OPTS,user_fid2path" ||
22001                 error "failed to mount client'"
22002
22003         $RUNAS $LFS rmfid $DIR $FID || error "rmfid failed"
22004         # rmfid should succeed
22005         cnt=$(ls -1 $DIR/$tdir | wc -l)
22006         [ $cnt == 0 ] || error "unexpected #files after (6): $cnt"
22007
22008         # rmfid shouldn't allow to remove files due to dir's permission
22009         chmod a+rwx $DIR/$tdir
22010         touch $DIR/$tdir/f
22011         ls -la $DIR/$tdir
22012         FID=$(lfs path2fid $DIR/$tdir/f)
22013         $RUNAS $LFS rmfid $DIR $FID && error "rmfid didn't fail"
22014
22015         umount_client $MOUNT || error "failed to umount client"
22016         mount_client $MOUNT "$MOUNT_OPTS" ||
22017                 error "failed to mount client'"
22018
22019 }
22020 run_test 421f "rmfid checks permissions"
22021
22022 test_421g() {
22023         local cnt
22024         local FIDS
22025
22026         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
22027         [ $MDS1_VERSION -lt $(version_code 2.12.54) ] &&
22028                 skip "Need MDS version at least 2.12.54"
22029
22030         mkdir -p $DIR/$tdir
22031         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
22032         createmany -o $DIR/$tdir/striped_dir/f 512
22033         cnt=$(ls -1 $DIR/$tdir/striped_dir | wc -l)
22034         [ $cnt != 512 ] && error "unexpected #files: $cnt"
22035
22036         FIDS=$(lfs path2fid $DIR/$tdir/striped_dir/f* |
22037                 sed "s/[/][^:]*://g")
22038
22039         rm -f $DIR/$tdir/striped_dir/f1*
22040         cnt=$(ls -1 $DIR/$tdir/striped_dir | wc -l)
22041         removed=$((512 - cnt))
22042
22043         # few files have been just removed, so we expect
22044         # rmfid to fail on their fids
22045         errors=$($LFS rmfid $DIR $FIDS 2>&1 | wc -l)
22046         [ $removed != $errors ] && error "$errors != $removed"
22047
22048         cnt=$(ls $DIR/$tdir/striped_dir | wc -l)
22049         rm -rf $DIR/$tdir
22050         [ $cnt == 0 ] || error "unexpected #files after: $cnt"
22051 }
22052 run_test 421g "rmfid to return errors properly"
22053
22054 test_422() {
22055         test_mkdir -i 0 -c 1 -p $DIR/$tdir/d1
22056         test_mkdir -i 0 -c 1 -p $DIR/$tdir/d2
22057         test_mkdir -i 0 -c 1 -p $DIR/$tdir/d3
22058         dd if=/dev/zero of=$DIR/$tdir/d1/file1 bs=1k count=1
22059         dd if=/dev/zero of=$DIR/$tdir/d2/file1 bs=1k count=1
22060
22061         local amc=$(at_max_get client)
22062         local amo=$(at_max_get mds1)
22063         local timeout=`lctl get_param -n timeout`
22064
22065         at_max_set 0 client
22066         at_max_set 0 mds1
22067
22068 #define OBD_FAIL_PTLRPC_PAUSE_REQ        0x50a
22069         do_facet mds1 $LCTL set_param fail_loc=0x8000050a \
22070                         fail_val=$(((2*timeout + 10)*1000))
22071         touch $DIR/$tdir/d3/file &
22072         sleep 2
22073 #define OBD_FAIL_TGT_REPLY_DATA_RACE     0x722
22074         do_facet mds1 $LCTL set_param fail_loc=0x80000722 \
22075                         fail_val=$((2*timeout + 5))
22076         mv $DIR/$tdir/d1/file1 $DIR/$tdir/d1/file2 &
22077         local pid=$!
22078         sleep 1
22079         kill -9 $pid
22080         sleep $((2 * timeout))
22081         echo kill $pid
22082         kill -9 $pid
22083         lctl mark touch
22084         touch $DIR/$tdir/d2/file3
22085         touch $DIR/$tdir/d2/file4
22086         touch $DIR/$tdir/d2/file5
22087
22088         wait
22089         at_max_set $amc client
22090         at_max_set $amo mds1
22091
22092         # LU-12838 - verify the ptlrpc thread watchdog is not always throttled
22093         do_facet mds1 "dmesg | grep 'Dumping the stack trace for debugging'" ||
22094                 error "Watchdog is always throttled"
22095 }
22096 run_test 422 "kill a process with RPC in progress"
22097
22098 stat_test() {
22099     df -h $MOUNT &
22100     df -h $MOUNT &
22101     df -h $MOUNT &
22102     df -h $MOUNT &
22103     df -h $MOUNT &
22104     df -h $MOUNT &
22105 }
22106
22107 test_423() {
22108     local _stats
22109     # ensure statfs cache is expired
22110     sleep 2;
22111
22112     _stats=$(stat_test | grep $MOUNT | sort -u | wc -l)
22113     [[ ${_stats} -ne 1 ]] && error "statfs wrong"
22114
22115     return 0
22116 }
22117 run_test 423 "statfs should return a right data"
22118
22119 prep_801() {
22120         [[ $MDS1_VERSION -lt $(version_code 2.9.55) ]] ||
22121         [[ $OST1_VERSION -lt $(version_code 2.9.55) ]] &&
22122                 skip "Need server version at least 2.9.55"
22123
22124         start_full_debug_logging
22125 }
22126
22127 post_801() {
22128         stop_full_debug_logging
22129 }
22130
22131 barrier_stat() {
22132         if [ $MGS_VERSION -le $(version_code 2.10.0) ]; then
22133                 local st=$(do_facet mgs $LCTL barrier_stat $FSNAME |
22134                            awk '/The barrier for/ { print $7 }')
22135                 echo $st
22136         else
22137                 local st=$(do_facet mgs $LCTL barrier_stat -s $FSNAME)
22138                 echo \'$st\'
22139         fi
22140 }
22141
22142 barrier_expired() {
22143         local expired
22144
22145         if [ $MGS_VERSION -le $(version_code 2.10.0) ]; then
22146                 expired=$(do_facet mgs $LCTL barrier_stat $FSNAME |
22147                           awk '/will be expired/ { print $7 }')
22148         else
22149                 expired=$(do_facet mgs $LCTL barrier_stat -t $FSNAME)
22150         fi
22151
22152         echo $expired
22153 }
22154
22155 test_801a() {
22156         prep_801
22157
22158         echo "Start barrier_freeze at: $(date)"
22159         #define OBD_FAIL_BARRIER_DELAY          0x2202
22160         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
22161         # Do not reduce barrier time - See LU-11873
22162         do_facet mgs $LCTL barrier_freeze $FSNAME 20 &
22163
22164         sleep 2
22165         local b_status=$(barrier_stat)
22166         echo "Got barrier status at: $(date)"
22167         [ "$b_status" = "'freezing_p1'" ] ||
22168                 error "(1) unexpected barrier status $b_status"
22169
22170         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
22171         wait
22172         b_status=$(barrier_stat)
22173         [ "$b_status" = "'frozen'" ] ||
22174                 error "(2) unexpected barrier status $b_status"
22175
22176         local expired=$(barrier_expired)
22177         echo "sleep $((expired + 3)) seconds, then the barrier will be expired"
22178         sleep $((expired + 3))
22179
22180         b_status=$(barrier_stat)
22181         [ "$b_status" = "'expired'" ] ||
22182                 error "(3) unexpected barrier status $b_status"
22183
22184         # Do not reduce barrier time - See LU-11873
22185         do_facet mgs $LCTL barrier_freeze $FSNAME 20 ||
22186                 error "(4) fail to freeze barrier"
22187
22188         b_status=$(barrier_stat)
22189         [ "$b_status" = "'frozen'" ] ||
22190                 error "(5) unexpected barrier status $b_status"
22191
22192         echo "Start barrier_thaw at: $(date)"
22193         #define OBD_FAIL_BARRIER_DELAY          0x2202
22194         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
22195         do_facet mgs $LCTL barrier_thaw $FSNAME &
22196
22197         sleep 2
22198         b_status=$(barrier_stat)
22199         echo "Got barrier status at: $(date)"
22200         [ "$b_status" = "'thawing'" ] ||
22201                 error "(6) unexpected barrier status $b_status"
22202
22203         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
22204         wait
22205         b_status=$(barrier_stat)
22206         [ "$b_status" = "'thawed'" ] ||
22207                 error "(7) unexpected barrier status $b_status"
22208
22209         #define OBD_FAIL_BARRIER_FAILURE        0x2203
22210         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2203
22211         do_facet mgs $LCTL barrier_freeze $FSNAME
22212
22213         b_status=$(barrier_stat)
22214         [ "$b_status" = "'failed'" ] ||
22215                 error "(8) unexpected barrier status $b_status"
22216
22217         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
22218         do_facet mgs $LCTL barrier_thaw $FSNAME
22219
22220         post_801
22221 }
22222 run_test 801a "write barrier user interfaces and stat machine"
22223
22224 test_801b() {
22225         prep_801
22226
22227         mkdir $DIR/$tdir || error "(1) fail to mkdir"
22228         createmany -d $DIR/$tdir/d 6 || "(2) fail to mkdir"
22229         touch $DIR/$tdir/d2/f10 || error "(3) fail to touch"
22230         touch $DIR/$tdir/d3/f11 || error "(4) fail to touch"
22231         touch $DIR/$tdir/d4/f12 || error "(5) fail to touch"
22232
22233         cancel_lru_locks mdc
22234
22235         # 180 seconds should be long enough
22236         do_facet mgs $LCTL barrier_freeze $FSNAME 180
22237
22238         local b_status=$(barrier_stat)
22239         [ "$b_status" = "'frozen'" ] ||
22240                 error "(6) unexpected barrier status $b_status"
22241
22242         mkdir $DIR/$tdir/d0/d10 &
22243         mkdir_pid=$!
22244
22245         touch $DIR/$tdir/d1/f13 &
22246         touch_pid=$!
22247
22248         ln $DIR/$tdir/d2/f10 $DIR/$tdir/d2/f14 &
22249         ln_pid=$!
22250
22251         mv $DIR/$tdir/d3/f11 $DIR/$tdir/d3/f15 &
22252         mv_pid=$!
22253
22254         rm -f $DIR/$tdir/d4/f12 &
22255         rm_pid=$!
22256
22257         stat $DIR/$tdir/d5 || error "(7) stat should succeed"
22258
22259         # To guarantee taht the 'stat' is not blocked
22260         b_status=$(barrier_stat)
22261         [ "$b_status" = "'frozen'" ] ||
22262                 error "(8) unexpected barrier status $b_status"
22263
22264         # let above commands to run at background
22265         sleep 5
22266
22267         ps -p $mkdir_pid || error "(9) mkdir should be blocked"
22268         ps -p $touch_pid || error "(10) touch should be blocked"
22269         ps -p $ln_pid || error "(11) link should be blocked"
22270         ps -p $mv_pid || error "(12) rename should be blocked"
22271         ps -p $rm_pid || error "(13) unlink should be blocked"
22272
22273         b_status=$(barrier_stat)
22274         [ "$b_status" = "'frozen'" ] ||
22275                 error "(14) unexpected barrier status $b_status"
22276
22277         do_facet mgs $LCTL barrier_thaw $FSNAME
22278         b_status=$(barrier_stat)
22279         [ "$b_status" = "'thawed'" ] ||
22280                 error "(15) unexpected barrier status $b_status"
22281
22282         wait $mkdir_pid || error "(16) mkdir should succeed"
22283         wait $touch_pid || error "(17) touch should succeed"
22284         wait $ln_pid || error "(18) link should succeed"
22285         wait $mv_pid || error "(19) rename should succeed"
22286         wait $rm_pid || error "(20) unlink should succeed"
22287
22288         post_801
22289 }
22290 run_test 801b "modification will be blocked by write barrier"
22291
22292 test_801c() {
22293         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
22294
22295         prep_801
22296
22297         stop mds2 || error "(1) Fail to stop mds2"
22298
22299         do_facet mgs $LCTL barrier_freeze $FSNAME 30
22300
22301         local b_status=$(barrier_stat)
22302         [ "$b_status" = "'expired'" ] || [ "$b_status" = "'failed'" ] || {
22303                 do_facet mgs $LCTL barrier_thaw $FSNAME
22304                 error "(2) unexpected barrier status $b_status"
22305         }
22306
22307         do_facet mgs $LCTL barrier_rescan $FSNAME ||
22308                 error "(3) Fail to rescan barrier bitmap"
22309
22310         # Do not reduce barrier time - See LU-11873
22311         do_facet mgs $LCTL barrier_freeze $FSNAME 20
22312
22313         b_status=$(barrier_stat)
22314         [ "$b_status" = "'frozen'" ] ||
22315                 error "(4) unexpected barrier status $b_status"
22316
22317         do_facet mgs $LCTL barrier_thaw $FSNAME
22318         b_status=$(barrier_stat)
22319         [ "$b_status" = "'thawed'" ] ||
22320                 error "(5) unexpected barrier status $b_status"
22321
22322         local devname=$(mdsdevname 2)
22323
22324         start mds2 $devname $MDS_MOUNT_OPTS || error "(6) Fail to start mds2"
22325
22326         do_facet mgs $LCTL barrier_rescan $FSNAME ||
22327                 error "(7) Fail to rescan barrier bitmap"
22328
22329         post_801
22330 }
22331 run_test 801c "rescan barrier bitmap"
22332
22333 saved_MGS_MOUNT_OPTS=$MGS_MOUNT_OPTS
22334 saved_MDS_MOUNT_OPTS=$MDS_MOUNT_OPTS
22335 saved_OST_MOUNT_OPTS=$OST_MOUNT_OPTS
22336 saved_MOUNT_OPTS=$MOUNT_OPTS
22337
22338 cleanup_802a() {
22339         trap 0
22340
22341         stopall
22342         MGS_MOUNT_OPTS=$saved_MGS_MOUNT_OPTS
22343         MDS_MOUNT_OPTS=$saved_MDS_MOUNT_OPTS
22344         OST_MOUNT_OPTS=$saved_OST_MOUNT_OPTS
22345         MOUNT_OPTS=$saved_MOUNT_OPTS
22346         setupall
22347 }
22348
22349 test_802a() {
22350         [[ $mds1_FSTYPE = zfs ]] || skip "ZFS specific test"
22351         [[ $MDS1_VERSION -lt $(version_code 2.9.55) ]] ||
22352         [[ $OST1_VERSION -lt $(version_code 2.9.55) ]] &&
22353                 skip "Need server version at least 2.9.55"
22354
22355         [[ $ENABLE_QUOTA ]] && skip "Quota enabled for read-only test"
22356
22357         mkdir $DIR/$tdir || error "(1) fail to mkdir"
22358
22359         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
22360                 error "(2) Fail to copy"
22361
22362         trap cleanup_802a EXIT
22363
22364         # sync by force before remount as readonly
22365         sync; sync_all_data; sleep 3; sync_all_data
22366
22367         stopall
22368
22369         MGS_MOUNT_OPTS=$(csa_add "$MGS_MOUNT_OPTS" -o rdonly_dev)
22370         MDS_MOUNT_OPTS=$(csa_add "$MDS_MOUNT_OPTS" -o rdonly_dev)
22371         OST_MOUNT_OPTS=$(csa_add "$OST_MOUNT_OPTS" -o rdonly_dev)
22372
22373         echo "Mount the server as read only"
22374         setupall server_only || error "(3) Fail to start servers"
22375
22376         echo "Mount client without ro should fail"
22377         mount_client $MOUNT &&
22378                 error "(4) Mount client without 'ro' should fail"
22379
22380         echo "Mount client with ro should succeed"
22381         MOUNT_OPTS=$(csa_add "$MOUNT_OPTS" -o ro)
22382         mount_client $MOUNT ||
22383                 error "(5) Mount client with 'ro' should succeed"
22384
22385         echo "Modify should be refused"
22386         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
22387
22388         echo "Read should be allowed"
22389         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
22390                 error "(7) Read should succeed under ro mode"
22391
22392         cleanup_802a
22393 }
22394 run_test 802a "simulate readonly device"
22395
22396 test_802b() {
22397         [ $PARALLEL == "yes" ] && skip "skip parallel run"
22398         remote_mds_nodsh && skip "remote MDS with nodsh"
22399
22400         do_facet $SINGLEMDS $LCTL get_param mdt.*.readonly ||
22401                 skip "readonly option not available"
22402
22403         $LFS mkdir -i 0 -c 1 $DIR/$tdir || error "(1) fail to mkdir"
22404
22405         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
22406                 error "(2) Fail to copy"
22407
22408         # write back all cached data before setting MDT to readonly
22409         cancel_lru_locks
22410         sync_all_data
22411
22412         do_facet $SINGLEMDS $LCTL set_param mdt.*.readonly=1
22413         stack_trap "do_facet $SINGLEMDS $LCTL set_param mdt.*.readonly=0" EXIT
22414
22415         echo "Modify should be refused"
22416         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
22417
22418         echo "Read should be allowed"
22419         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
22420                 error "(7) Read should succeed under ro mode"
22421
22422         # disable readonly
22423         do_facet $SINGLEMDS $LCTL set_param mdt.*.readonly=0
22424 }
22425 run_test 802b "be able to set MDTs to readonly"
22426
22427 test_803() {
22428         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
22429         [ $MDS1_VERSION -lt $(version_code 2.10.54) ] &&
22430                 skip "MDS needs to be newer than 2.10.54"
22431
22432         mkdir -p $DIR/$tdir
22433         # Create some objects on all MDTs to trigger related logs objects
22434         for idx in $(seq $MDSCOUNT); do
22435                 $LFS mkdir -c $MDSCOUNT -i $((idx % $MDSCOUNT)) \
22436                         $DIR/$tdir/dir${idx} ||
22437                         error "Fail to create $DIR/$tdir/dir${idx}"
22438         done
22439
22440         sync; sleep 3
22441         wait_delete_completed # ensure old test cleanups are finished
22442         echo "before create:"
22443         $LFS df -i $MOUNT
22444         local before_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
22445
22446         for i in {1..10}; do
22447                 $LFS mkdir -c 1 -i 1 $DIR/$tdir/foo$i ||
22448                         error "Fail to create $DIR/$tdir/foo$i"
22449         done
22450
22451         sync; sleep 3
22452         echo "after create:"
22453         $LFS df -i $MOUNT
22454         local after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
22455
22456         # allow for an llog to be cleaned up during the test
22457         [ $after_used -ge $((before_used + 10 - 1)) ] ||
22458                 error "before ($before_used) + 10 > after ($after_used)"
22459
22460         for i in {1..10}; do
22461                 rm -rf $DIR/$tdir/foo$i ||
22462                         error "Fail to remove $DIR/$tdir/foo$i"
22463         done
22464
22465         sleep 3 # avoid MDT return cached statfs
22466         wait_delete_completed
22467         echo "after unlink:"
22468         $LFS df -i $MOUNT
22469         after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
22470
22471         # allow for an llog to be created during the test
22472         [ $after_used -le $((before_used + 1)) ] ||
22473                 error "after ($after_used) > before ($before_used) + 1"
22474 }
22475 run_test 803 "verify agent object for remote object"
22476
22477 test_804() {
22478         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
22479         [ $MDS1_VERSION -lt $(version_code 2.10.54) ] &&
22480                 skip "MDS needs to be newer than 2.10.54"
22481         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
22482
22483         mkdir -p $DIR/$tdir
22484         $LFS mkdir -c 1 -i 1 $DIR/$tdir/dir0 ||
22485                 error "Fail to create $DIR/$tdir/dir0"
22486
22487         local fid=$($LFS path2fid $DIR/$tdir/dir0)
22488         local dev=$(mdsdevname 2)
22489
22490         do_facet mds2 "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
22491                 grep ${fid} || error "NOT found agent entry for dir0"
22492
22493         $LFS mkdir -c $MDSCOUNT -i 0 $DIR/$tdir/dir1 ||
22494                 error "Fail to create $DIR/$tdir/dir1"
22495
22496         touch $DIR/$tdir/dir1/foo0 ||
22497                 error "Fail to create $DIR/$tdir/dir1/foo0"
22498         fid=$($LFS path2fid $DIR/$tdir/dir1/foo0)
22499         local rc=0
22500
22501         for idx in $(seq $MDSCOUNT); do
22502                 dev=$(mdsdevname $idx)
22503                 do_facet mds${idx} \
22504                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
22505                         grep ${fid} && rc=$idx
22506         done
22507
22508         mv $DIR/$tdir/dir1/foo0 $DIR/$tdir/dir1/foo1 ||
22509                 error "Fail to rename foo0 to foo1"
22510         if [ $rc -eq 0 ]; then
22511                 for idx in $(seq $MDSCOUNT); do
22512                         dev=$(mdsdevname $idx)
22513                         do_facet mds${idx} \
22514                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
22515                         grep ${fid} && rc=$idx
22516                 done
22517         fi
22518
22519         mv $DIR/$tdir/dir1/foo1 $DIR/$tdir/dir1/foo2 ||
22520                 error "Fail to rename foo1 to foo2"
22521         if [ $rc -eq 0 ]; then
22522                 for idx in $(seq $MDSCOUNT); do
22523                         dev=$(mdsdevname $idx)
22524                         do_facet mds${idx} \
22525                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
22526                         grep ${fid} && rc=$idx
22527                 done
22528         fi
22529
22530         [ $rc -ne 0 ] || error "NOT found agent entry for foo"
22531
22532         ln $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir0/guard ||
22533                 error "Fail to link to $DIR/$tdir/dir1/foo2"
22534         mv $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir1/foo0 ||
22535                 error "Fail to rename foo2 to foo0"
22536         unlink $DIR/$tdir/dir1/foo0 ||
22537                 error "Fail to unlink $DIR/$tdir/dir1/foo0"
22538         rm -rf $DIR/$tdir/dir0 ||
22539                 error "Fail to rm $DIR/$tdir/dir0"
22540
22541         for idx in $(seq $MDSCOUNT); do
22542                 dev=$(mdsdevname $idx)
22543                 rc=0
22544
22545                 stop mds${idx}
22546                 run_e2fsck $(facet_active_host mds$idx) $dev -n ||
22547                         rc=$?
22548                 start mds${idx} $dev $MDS_MOUNT_OPTS ||
22549                         error "mount mds$idx failed"
22550                 df $MOUNT > /dev/null 2>&1
22551
22552                 # e2fsck should not return error
22553                 [ $rc -eq 0 ] ||
22554                         error "e2fsck detected error on MDT${idx}: rc=$rc"
22555         done
22556 }
22557 run_test 804 "verify agent entry for remote entry"
22558
22559 cleanup_805() {
22560         do_facet $SINGLEMDS zfs set quota=$old $fsset
22561         unlinkmany $DIR/$tdir/f- 1000000
22562         trap 0
22563 }
22564
22565 test_805() {
22566         local zfs_version=$(do_facet mds1 cat /sys/module/zfs/version)
22567         [ "$mds1_FSTYPE" != "zfs" ] && skip "ZFS specific test"
22568         [ $(version_code $zfs_version) -lt $(version_code 0.7.2) ] &&
22569                 skip "netfree not implemented before 0.7"
22570         [[ $MDS1_VERSION -ge $(version_code 2.10.57) ]] ||
22571                 skip "Need MDS version at least 2.10.57"
22572
22573         local fsset
22574         local freekb
22575         local usedkb
22576         local old
22577         local quota
22578         local pref="osd-zfs.$FSNAME-MDT0000."
22579
22580         # limit available space on MDS dataset to meet nospace issue
22581         # quickly. then ZFS 0.7.2 can use reserved space if asked
22582         # properly (using netfree flag in osd_declare_destroy()
22583         fsset=$(do_facet $SINGLEMDS lctl get_param -n $pref.mntdev)
22584         old=$(do_facet $SINGLEMDS zfs get -H quota $fsset | \
22585                 gawk '{print $3}')
22586         freekb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytesfree)
22587         usedkb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytestotal)
22588         let "usedkb=usedkb-freekb"
22589         let "freekb=freekb/2"
22590         if let "freekb > 5000"; then
22591                 let "freekb=5000"
22592         fi
22593         do_facet $SINGLEMDS zfs set quota=$(((usedkb+freekb)*1024)) $fsset
22594         trap cleanup_805 EXIT
22595         mkdir $DIR/$tdir
22596         $LFS setstripe -E 1M -L mdt $DIR/$tdir || error "DoM not working"
22597         createmany -m $DIR/$tdir/f- 1000000 && error "ENOSPC wasn't met"
22598         rm -rf $DIR/$tdir || error "not able to remove"
22599         do_facet $SINGLEMDS zfs set quota=$old $fsset
22600         trap 0
22601 }
22602 run_test 805 "ZFS can remove from full fs"
22603
22604 # Size-on-MDS test
22605 check_lsom_data()
22606 {
22607         local file=$1
22608         local size=$($LFS getsom -s $file)
22609         local expect=$(stat -c %s $file)
22610
22611         [[ $size == $expect ]] ||
22612                 error "$file expected size: $expect, got: $size"
22613
22614         local blocks=$($LFS getsom -b $file)
22615         expect=$(stat -c %b $file)
22616         [[ $blocks == $expect ]] ||
22617                 error "$file expected blocks: $expect, got: $blocks"
22618 }
22619
22620 check_lsom_size()
22621 {
22622         local size=$($LFS getsom -s $1)
22623         local expect=$2
22624
22625         [[ $size == $expect ]] ||
22626                 error "$file expected size: $expect, got: $size"
22627 }
22628
22629 test_806() {
22630         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
22631                 skip "Need MDS version at least 2.11.52"
22632
22633         local bs=1048576
22634
22635         touch $DIR/$tfile || error "touch $tfile failed"
22636
22637         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
22638         save_lustre_params client "llite.*.xattr_cache" > $save
22639         lctl set_param llite.*.xattr_cache=0
22640         stack_trap "restore_lustre_params < $save; rm -f $save" EXIT
22641
22642         # single-threaded write
22643         echo "Test SOM for single-threaded write"
22644         dd if=/dev/zero of=$DIR/$tfile bs=$bs count=1 ||
22645                 error "write $tfile failed"
22646         check_lsom_size $DIR/$tfile $bs
22647
22648         local num=32
22649         local size=$(($num * $bs))
22650         local offset=0
22651         local i
22652
22653         echo "Test SOM for single client multi-threaded($num) write"
22654         $TRUNCATE $DIR/$tfile 0
22655         for ((i = 0; i < $num; i++)); do
22656                 $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
22657                 local pids[$i]=$!
22658                 offset=$((offset + $bs))
22659         done
22660         for (( i=0; i < $num; i++ )); do
22661                 wait ${pids[$i]}
22662         done
22663         check_lsom_size $DIR/$tfile $size
22664
22665         $TRUNCATE $DIR/$tfile 0
22666         for ((i = 0; i < $num; i++)); do
22667                 offset=$((offset - $bs))
22668                 $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
22669                 local pids[$i]=$!
22670         done
22671         for (( i=0; i < $num; i++ )); do
22672                 wait ${pids[$i]}
22673         done
22674         check_lsom_size $DIR/$tfile $size
22675
22676         # multi-client writes
22677         num=$(get_node_count ${CLIENTS//,/ })
22678         size=$(($num * $bs))
22679         offset=0
22680         i=0
22681
22682         echo "Test SOM for multi-client ($num) writes"
22683         $TRUNCATE $DIR/$tfile 0
22684         for client in ${CLIENTS//,/ }; do
22685                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
22686                 local pids[$i]=$!
22687                 i=$((i + 1))
22688                 offset=$((offset + $bs))
22689         done
22690         for (( i=0; i < $num; i++ )); do
22691                 wait ${pids[$i]}
22692         done
22693         check_lsom_size $DIR/$tfile $offset
22694
22695         i=0
22696         $TRUNCATE $DIR/$tfile 0
22697         for client in ${CLIENTS//,/ }; do
22698                 offset=$((offset - $bs))
22699                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
22700                 local pids[$i]=$!
22701                 i=$((i + 1))
22702         done
22703         for (( i=0; i < $num; i++ )); do
22704                 wait ${pids[$i]}
22705         done
22706         check_lsom_size $DIR/$tfile $size
22707
22708         # verify truncate
22709         echo "Test SOM for truncate"
22710         $TRUNCATE $DIR/$tfile 1048576
22711         check_lsom_size $DIR/$tfile 1048576
22712         $TRUNCATE $DIR/$tfile 1234
22713         check_lsom_size $DIR/$tfile 1234
22714
22715         # verify SOM blocks count
22716         echo "Verify SOM block count"
22717         $TRUNCATE $DIR/$tfile 0
22718         $MULTIOP $DIR/$tfile oO_TRUNC:O_RDWR:w1048576YSc ||
22719                 error "failed to write file $tfile"
22720         check_lsom_data $DIR/$tfile
22721 }
22722 run_test 806 "Verify Lazy Size on MDS"
22723
22724 test_807() {
22725         [ -n "$FILESET" ] && skip "Not functional for FILESET set"
22726         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
22727                 skip "Need MDS version at least 2.11.52"
22728
22729         # Registration step
22730         changelog_register || error "changelog_register failed"
22731         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
22732         changelog_users $SINGLEMDS | grep -q $cl_user ||
22733                 error "User $cl_user not found in changelog_users"
22734
22735         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
22736         save_lustre_params client "llite.*.xattr_cache" > $save
22737         lctl set_param llite.*.xattr_cache=0
22738         stack_trap "restore_lustre_params < $save; rm -f $save" EXIT
22739
22740         rm -rf $DIR/$tdir || error "rm $tdir failed"
22741         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
22742         touch $DIR/$tdir/trunc || error "touch $tdir/trunc failed"
22743         $TRUNCATE $DIR/$tdir/trunc 1024 || error "truncate $tdir/trunc failed"
22744         $TRUNCATE $DIR/$tdir/trunc 1048576 ||
22745                 error "truncate $tdir/trunc failed"
22746
22747         local bs=1048576
22748         dd if=/dev/zero of=$DIR/$tdir/single_dd bs=$bs count=1 ||
22749                 error "write $tfile failed"
22750
22751         # multi-client wirtes
22752         local num=$(get_node_count ${CLIENTS//,/ })
22753         local offset=0
22754         local i=0
22755
22756         echo "Test SOM for multi-client ($num) writes"
22757         touch $DIR/$tfile || error "touch $tfile failed"
22758         $TRUNCATE $DIR/$tfile 0
22759         for client in ${CLIENTS//,/ }; do
22760                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
22761                 local pids[$i]=$!
22762                 i=$((i + 1))
22763                 offset=$((offset + $bs))
22764         done
22765         for (( i=0; i < $num; i++ )); do
22766                 wait ${pids[$i]}
22767         done
22768
22769         sleep 5
22770         $LSOM_SYNC -u $cl_user -m $FSNAME-MDT0000 $MOUNT
22771         check_lsom_data $DIR/$tdir/trunc
22772         check_lsom_data $DIR/$tdir/single_dd
22773         check_lsom_data $DIR/$tfile
22774
22775         rm -rf $DIR/$tdir
22776         # Deregistration step
22777         changelog_deregister || error "changelog_deregister failed"
22778 }
22779 run_test 807 "verify LSOM syncing tool"
22780
22781 check_som_nologged()
22782 {
22783         local lines=$($LFS changelog $FSNAME-MDT0000 |
22784                 grep 'x=trusted.som' | wc -l)
22785         [ $lines -ne 0 ] && error "trusted.som xattr is logged in Changelogs"
22786 }
22787
22788 test_808() {
22789         [ $MDS1_VERSION -lt $(version_code 2.11.55) ] &&
22790                 skip "Need MDS version at least 2.11.55"
22791
22792         # Registration step
22793         changelog_register || error "changelog_register failed"
22794
22795         touch $DIR/$tfile || error "touch $tfile failed"
22796         check_som_nologged
22797
22798         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=1 ||
22799                 error "write $tfile failed"
22800         check_som_nologged
22801
22802         $TRUNCATE $DIR/$tfile 1234
22803         check_som_nologged
22804
22805         $TRUNCATE $DIR/$tfile 1048576
22806         check_som_nologged
22807
22808         # Deregistration step
22809         changelog_deregister || error "changelog_deregister failed"
22810 }
22811 run_test 808 "Check trusted.som xattr not logged in Changelogs"
22812
22813 check_som_nodata()
22814 {
22815         $LFS getsom $1
22816         [[ $? -eq 61 ]] || error "DoM-only file $1 has SOM xattr"
22817 }
22818
22819 test_809() {
22820         [ $MDS1_VERSION -lt $(version_code 2.11.56) ] &&
22821                 skip "Need MDS version at least 2.11.56"
22822
22823         $LFS setstripe -E 1M -L mdt $DIR/$tfile ||
22824                 error "failed to create DoM-only file $DIR/$tfile"
22825         touch $DIR/$tfile || error "touch $tfile failed"
22826         check_som_nodata $DIR/$tfile
22827
22828         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 ||
22829                 error "write $tfile failed"
22830         check_som_nodata $DIR/$tfile
22831
22832         $TRUNCATE $DIR/$tfile 1234
22833         check_som_nodata $DIR/$tfile
22834
22835         $TRUNCATE $DIR/$tfile 4097
22836         check_som_nodata $DIR/$file
22837 }
22838 run_test 809 "Verify no SOM xattr store for DoM-only files"
22839
22840 test_810() {
22841         [ $PARALLEL == "yes" ] && skip "skip parallel run"
22842         $GSS && skip_env "could not run with gss"
22843         [[ $OST1_VERSION -gt $(version_code 2.12.58) ]] ||
22844                 skip "OST < 2.12.58 doesn't align checksum"
22845
22846         set_checksums 1
22847         stack_trap "set_checksums $ORIG_CSUM" EXIT
22848         stack_trap "set_checksum_type $ORIG_CSUM_TYPE" EXIT
22849
22850         local csum
22851         local before
22852         local after
22853         for csum in $CKSUM_TYPES; do
22854                 #define OBD_FAIL_OSC_NO_GRANT   0x411
22855                 $LCTL set_param osc.*.checksum_type=$csum fail_loc=0x411
22856                 for i in "10240 0" "10000 0" "4000 1" "500 1"; do
22857                         eval set -- $i
22858                         dd if=/dev/urandom of=$DIR/$tfile bs=$1 count=2 seek=$2
22859                         before=$(md5sum $DIR/$tfile)
22860                         $LCTL set_param ldlm.namespaces.*osc*.lru_size=clear
22861                         after=$(md5sum $DIR/$tfile)
22862                         [ "$before" == "$after" ] ||
22863                                 error "$csum: $before != $after bs=$1 seek=$2"
22864                 done
22865         done
22866 }
22867 run_test 810 "partial page writes on ZFS (LU-11663)"
22868
22869 test_811() {
22870         [ $MDS1_VERSION -lt $(version_code 2.11.56) ] &&
22871                 skip "Need MDS version at least 2.11.56"
22872
22873         #define OBD_FAIL_MDS_ORPHAN_DELETE      0x165
22874         do_facet mds1 $LCTL set_param fail_loc=0x165
22875         $MULTIOP $DIR/$tfile Ouc || error "multiop failed"
22876
22877         stop mds1
22878         start mds1 $(mdsdevname 1) $MDS_MOUNT_OPTS
22879
22880         wait_update_facet mds1 "pgrep orph_.*-MDD | wc -l" "0" ||
22881                 error "MDD orphan cleanup thread not quit"
22882 }
22883 run_test 811 "orphan name stub can be cleaned up in startup"
22884
22885 test_812a() {
22886         [ $OST1_VERSION -lt $(version_code 2.12.51) ] &&
22887                 skip "OST < 2.12.51 doesn't support this fail_loc"
22888         [ "$SHARED_KEY" = true ] &&
22889                 skip "OSC connections never go IDLE with Shared-Keys enabled"
22890
22891         $LFS setstripe -c 1 -i 0 $DIR/$tfile
22892         # ensure ost1 is connected
22893         stat $DIR/$tfile >/dev/null || error "can't stat"
22894         wait_osc_import_state client ost1 FULL
22895         # no locks, no reqs to let the connection idle
22896         cancel_lru_locks osc
22897
22898         # delay OST_DISCONNECT on OST1 to put OSC into intermediate state
22899 #define OBD_FAIL_OST_DISCONNECT_DELAY    0x245
22900         do_facet ost1 "$LCTL set_param fail_loc=0x245 fail_val=8"
22901         wait_osc_import_state client ost1 CONNECTING
22902         do_facet ost1 "$LCTL set_param fail_loc=0 fail_val=0"
22903
22904         stat $DIR/$tfile >/dev/null || error "can't stat file"
22905 }
22906 run_test 812a "do not drop reqs generated when imp is going to idle (LU-11951)"
22907
22908 test_812b() { # LU-12378
22909         [ $OST1_VERSION -lt $(version_code 2.12.51) ] &&
22910                 skip "OST < 2.12.51 doesn't support this fail_loc"
22911         [ "$SHARED_KEY" = true ] &&
22912                 skip "OSC connections never go IDLE with Shared-Keys enabled"
22913
22914         $LFS setstripe -c 1 -i 0 $DIR/$tfile || error "setstripe failed"
22915         # ensure ost1 is connected
22916         stat $DIR/$tfile >/dev/null || error "can't stat"
22917         wait_osc_import_state client ost1 FULL
22918         # no locks, no reqs to let the connection idle
22919         cancel_lru_locks osc
22920
22921         # delay OST_DISCONNECT on OST1 to put OSC into intermediate state
22922 #define OBD_FAIL_OST_DISCONNECT_DELAY    0x245
22923         do_facet ost1 "$LCTL set_param fail_loc=0x245 fail_val=8"
22924         wait_osc_import_state client ost1 CONNECTING
22925         do_facet ost1 "$LCTL set_param fail_loc=0 fail_val=0"
22926
22927         $LFS quota -u 0 $DIR/ || error "lfs quota should succeed"
22928         wait_osc_import_state client ost1 IDLE
22929 }
22930 run_test 812b "do not drop no resend request for idle connect"
22931
22932 test_813() {
22933         local file_heat_sav=$($LCTL get_param -n llite.*.file_heat 2>/dev/null)
22934         [ -z "$file_heat_sav" ] && skip "no file heat support"
22935
22936         local readsample
22937         local writesample
22938         local readbyte
22939         local writebyte
22940         local readsample1
22941         local writesample1
22942         local readbyte1
22943         local writebyte1
22944
22945         local period_second=$($LCTL get_param -n llite.*.heat_period_second)
22946         local decay_pct=$($LCTL get_param -n llite.*.heat_decay_percentage)
22947
22948         $LCTL set_param -n llite.*.file_heat=1
22949         echo "Turn on file heat"
22950         echo "Period second: $period_second, Decay percentage: $decay_pct"
22951
22952         echo "QQQQ" > $DIR/$tfile
22953         echo "QQQQ" > $DIR/$tfile
22954         echo "QQQQ" > $DIR/$tfile
22955         cat $DIR/$tfile > /dev/null
22956         cat $DIR/$tfile > /dev/null
22957         cat $DIR/$tfile > /dev/null
22958         cat $DIR/$tfile > /dev/null
22959
22960         local out=$($LFS heat_get $DIR/$tfile)
22961
22962         $LFS heat_get $DIR/$tfile
22963         readsample=$(echo "$out" | grep 'readsample' | awk '{ print $2 }')
22964         writesample=$(echo "$out" | grep 'writesample' | awk '{ print $2 }')
22965         readbyte=$(echo "$out" | grep 'readbyte' | awk '{ print $2 }')
22966         writebyte=$(echo "$out" | grep 'writebyte' | awk '{ print $2 }')
22967
22968         [ $readsample -le 4 ] || error "read sample ($readsample) is wrong"
22969         [ $writesample -le 3 ] || error "write sample ($writesample) is wrong"
22970         [ $readbyte -le 20 ] || error "read bytes ($readbyte) is wrong"
22971         [ $writebyte -le 15 ] || error "write bytes ($writebyte) is wrong"
22972
22973         sleep $((period_second + 3))
22974         echo "Sleep $((period_second + 3)) seconds..."
22975         # The recursion formula to calculate the heat of the file f is as
22976         # follow:
22977         # Hi+1(f) = (1-P)*Hi(f)+ P*Ci
22978         # Where Hi is the heat value in the period between time points i*I and
22979         # (i+1)*I; Ci is the access count in the period; the symbol P refers
22980         # to the weight of Ci.
22981         out=$($LFS heat_get $DIR/$tfile)
22982         $LFS heat_get $DIR/$tfile
22983         readsample=$(echo "$out" | grep 'readsample' | awk '{ print $2 }')
22984         writesample=$(echo "$out" | grep 'writesample' | awk '{ print $2 }')
22985         readbyte=$(echo "$out" | grep 'readbyte' | awk '{ print $2 }')
22986         writebyte=$(echo "$out" | grep 'writebyte' | awk '{ print $2 }')
22987
22988         [ $(bc <<< "$readsample <= 4 * $decay_pct / 100") -eq 1 ] ||
22989                 error "read sample ($readsample) is wrong"
22990         [ $(bc <<< "$writesample <= 3 * $decay_pct / 100") -eq 1 ] ||
22991                 error "write sample ($writesample) is wrong"
22992         [ $(bc <<< "$readbyte <= 20 * $decay_pct / 100") -eq 1 ] ||
22993                 error "read bytes ($readbyte) is wrong"
22994         [ $(bc <<< "$writebyte <= 15 * $decay_pct / 100") -eq 1 ] ||
22995                 error "write bytes ($writebyte) is wrong"
22996
22997         echo "QQQQ" > $DIR/$tfile
22998         echo "QQQQ" > $DIR/$tfile
22999         echo "QQQQ" > $DIR/$tfile
23000         cat $DIR/$tfile > /dev/null
23001         cat $DIR/$tfile > /dev/null
23002         cat $DIR/$tfile > /dev/null
23003         cat $DIR/$tfile > /dev/null
23004
23005         sleep $((period_second + 3))
23006         echo "Sleep $((period_second + 3)) seconds..."
23007
23008         out=$($LFS heat_get $DIR/$tfile)
23009         $LFS heat_get $DIR/$tfile
23010         readsample1=$(echo "$out" | grep 'readsample' | awk '{ print $2 }')
23011         writesample1=$(echo "$out" | grep 'writesample' | awk '{ print $2 }')
23012         readbyte1=$(echo "$out" | grep 'readbyte' | awk '{ print $2 }')
23013         writebyte1=$(echo "$out" | grep 'writebyte' | awk '{ print $2 }')
23014
23015         [ $(bc <<< "$readsample1 <= ($readsample * (100 - $decay_pct) + \
23016                 4 * $decay_pct) / 100") -eq 1 ] ||
23017                 error "read sample ($readsample1) is wrong"
23018         [ $(bc <<< "$writesample1 <= ($writesample * (100 - $decay_pct) + \
23019                 3 * $decay_pct) / 100") -eq 1 ] ||
23020                 error "write sample ($writesample1) is wrong"
23021         [ $(bc <<< "$readbyte1 <= ($readbyte * (100 - $decay_pct) + \
23022                 20 * $decay_pct) / 100") -eq 1 ] ||
23023                 error "read bytes ($readbyte1) is wrong"
23024         [ $(bc <<< "$writebyte1 <= ($writebyte * (100 - $decay_pct) + \
23025                 15 * $decay_pct) / 100") -eq 1 ] ||
23026                 error "write bytes ($writebyte1) is wrong"
23027
23028         echo "Turn off file heat for the file $DIR/$tfile"
23029         $LFS heat_set -o $DIR/$tfile
23030
23031         echo "QQQQ" > $DIR/$tfile
23032         echo "QQQQ" > $DIR/$tfile
23033         echo "QQQQ" > $DIR/$tfile
23034         cat $DIR/$tfile > /dev/null
23035         cat $DIR/$tfile > /dev/null
23036         cat $DIR/$tfile > /dev/null
23037         cat $DIR/$tfile > /dev/null
23038
23039         out=$($LFS heat_get $DIR/$tfile)
23040         $LFS heat_get $DIR/$tfile
23041         readsample=$(echo "$out" | grep 'readsample' | awk '{ print $2 }')
23042         writesample=$(echo "$out" | grep 'writesample' | awk '{ print $2 }')
23043         readbyte=$(echo "$out" | grep 'readbyte' | awk '{ print $2 }')
23044         writebyte=$(echo "$out" | grep 'writebyte' | awk '{ print $2 }')
23045
23046         [ $readsample -eq 0 ] || error "read sample ($readsample) is wrong"
23047         [ $writesample -eq 0 ] || error "write sample ($writesample) is wrong"
23048         [ $readbyte -eq 0 ] || error "read bytes ($readbyte) is wrong"
23049         [ $writebyte -eq 0 ] || error "write bytes ($writebyte) is wrong"
23050
23051         echo "Trun on file heat for the file $DIR/$tfile"
23052         $LFS heat_set -O $DIR/$tfile
23053
23054         echo "QQQQ" > $DIR/$tfile
23055         echo "QQQQ" > $DIR/$tfile
23056         echo "QQQQ" > $DIR/$tfile
23057         cat $DIR/$tfile > /dev/null
23058         cat $DIR/$tfile > /dev/null
23059         cat $DIR/$tfile > /dev/null
23060         cat $DIR/$tfile > /dev/null
23061
23062         out=$($LFS heat_get $DIR/$tfile)
23063         $LFS heat_get $DIR/$tfile
23064         readsample=$(echo "$out" | grep 'readsample' | awk '{ print $2 }')
23065         writesample=$(echo "$out" | grep 'writesample' | awk '{ print $2 }')
23066         readbyte=$(echo "$out" | grep 'readbyte' | awk '{ print $2 }')
23067         writebyte=$(echo "$out" | grep 'writebyte' | awk '{ print $2 }')
23068
23069         [ $readsample -gt 0 ] || error "read sample ($readsample) is wrong"
23070         [ $writesample -gt 0 ] || error "write sample ($writesample) is wrong"
23071         [ $readbyte -gt 0 ] || error "read bytes ($readbyte) is wrong"
23072         [ $writebyte -gt 0 ] || error "write bytes ($writebyte) is wrong"
23073
23074         $LFS heat_set -c $DIR/$tfile
23075         $LCTL set_param -n llite.*.file_heat=0
23076         echo "Turn off file heat support for the Lustre filesystem"
23077
23078         echo "QQQQ" > $DIR/$tfile
23079         echo "QQQQ" > $DIR/$tfile
23080         echo "QQQQ" > $DIR/$tfile
23081         cat $DIR/$tfile > /dev/null
23082         cat $DIR/$tfile > /dev/null
23083         cat $DIR/$tfile > /dev/null
23084         cat $DIR/$tfile > /dev/null
23085
23086         out=$($LFS heat_get $DIR/$tfile)
23087         $LFS heat_get $DIR/$tfile
23088         readsample=$(echo "$out" | grep 'readsample' | awk '{ print $2 }')
23089         writesample=$(echo "$out" | grep 'writesample' | awk '{ print $2 }')
23090         readbyte=$(echo "$out" | grep 'readbyte' | awk '{ print $2 }')
23091         writebyte=$(echo "$out" | grep 'writebyte' | awk '{ print $2 }')
23092
23093         [ $readsample -eq 0 ] || error "read sample ($readsample) is wrong"
23094         [ $writesample -eq 0 ] || error "write sample ($writesample) is wrong"
23095         [ $readbyte -eq 0 ] || error "read bytes ($readbyte) is wrong"
23096         [ $writebyte -eq 0 ] || error "write bytes ($writebyte) is wrong"
23097
23098         $LCTL set_param -n llite.*.file_heat=$file_heat_sav
23099         rm -f $DIR/$tfile
23100 }
23101 run_test 813 "File heat verfication"
23102
23103 test_814()
23104 {
23105         dd of=$DIR/$tfile seek=128 bs=1k < /dev/null
23106         echo -n y >> $DIR/$tfile
23107         cp --sparse=always $DIR/$tfile $DIR/${tfile}.cp || error "copy failed"
23108         diff $DIR/$tfile $DIR/${tfile}.cp || error "files should be same"
23109 }
23110 run_test 814 "sparse cp works as expected (LU-12361)"
23111
23112 test_815()
23113 {
23114         writeme -b 100 $DIR/$tfile || error "write 100 bytes failed"
23115         writeme -b 0 $DIR/$tfile || error "write 0 byte failed"
23116 }
23117 run_test 815 "zero byte tiny write doesn't hang (LU-12382)"
23118
23119 test_816() {
23120         [ "$SHARED_KEY" = true ] &&
23121                 skip "OSC connections never go IDLE with Shared-Keys enabled"
23122
23123         $LFS setstripe -c 1 -i 0 $DIR/$tfile
23124         # ensure ost1 is connected
23125         stat $DIR/$tfile >/dev/null || error "can't stat"
23126         wait_osc_import_state client ost1 FULL
23127         # no locks, no reqs to let the connection idle
23128         cancel_lru_locks osc
23129         lru_resize_disable osc
23130         local before
23131         local now
23132         before=$($LCTL get_param -n \
23133                  ldlm.namespaces.$FSNAME-OST0000-osc-[^M]*.lru_size)
23134
23135         wait_osc_import_state client ost1 IDLE
23136         dd if=/dev/null of=$DIR/$tfile bs=1k count=1 conv=sync
23137         now=$($LCTL get_param -n \
23138               ldlm.namespaces.$FSNAME-OST0000-osc-[^M]*.lru_size)
23139         [ $before == $now ] || error "lru_size changed $before != $now"
23140 }
23141 run_test 816 "do not reset lru_resize on idle reconnect"
23142
23143 cleanup_817() {
23144         umount $tmpdir
23145         exportfs -u localhost:$DIR/nfsexp
23146         rm -rf $DIR/nfsexp
23147 }
23148
23149 test_817() {
23150         systemctl restart nfs-server.service || skip "failed to restart nfsd"
23151
23152         mkdir -p $DIR/nfsexp
23153         exportfs -orw,no_root_squash localhost:$DIR/nfsexp ||
23154                 error "failed to export nfs"
23155
23156         tmpdir=$(mktemp -d /tmp/nfs-XXXXXX)
23157         stack_trap cleanup_817 EXIT
23158
23159         mount -t nfs -orw localhost:$DIR/nfsexp $tmpdir ||
23160                 error "failed to mount nfs to $tmpdir"
23161
23162         cp /bin/true $tmpdir
23163         $DIR/nfsexp/true || error "failed to execute 'true' command"
23164 }
23165 run_test 817 "nfsd won't cache write lock for exec file"
23166
23167 test_818() {
23168         mkdir $DIR/$tdir
23169         $LFS setstripe -c1 -i0 $DIR/$tfile
23170         $LFS setstripe -c1 -i1 $DIR/$tfile
23171         stop $SINGLEMDS
23172         #define OBD_FAIL_OSP_CANT_PROCESS_LLOG          0x2105
23173         do_facet $SINGLEMDS lctl set_param fail_loc=0x80002105
23174         start $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) $MDS_MOUNT_OPTS ||
23175                 error "start $SINGLEMDS failed"
23176         rm -rf $DIR/$tdir
23177 }
23178 run_test 818 "unlink with failed llog"
23179
23180 test_819a() {
23181         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
23182         cancel_lru_locks osc
23183         #define OBD_FAIL_OST_2BIG_NIOBUF                0x248
23184         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000248
23185         dd if=$DIR/$tfile of=/dev/null bs=1M count=1
23186         rm -f $TDIR/$tfile
23187 }
23188 run_test 819a "too big niobuf in read"
23189
23190 test_819b() {
23191         #define OBD_FAIL_OST_2BIG_NIOBUF                0x248
23192         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000248
23193         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
23194         cancel_lru_locks osc
23195         sleep 1
23196         rm -f $TDIR/$tfile
23197 }
23198 run_test 819b "too big niobuf in write"
23199
23200
23201 function test_820_start_ost() {
23202         sleep 5
23203
23204         for num in $(seq $OSTCOUNT); do
23205                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS
23206         done
23207 }
23208
23209 test_820() {
23210         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
23211
23212         mkdir $DIR/$tdir
23213         umount_client $MOUNT || error "umount failed"
23214         for num in $(seq $OSTCOUNT); do
23215                 stop ost$num
23216         done
23217
23218         # mount client with no active OSTs
23219         # so that the client can't initialize max LOV EA size
23220         # from OSC notifications
23221         mount_client $MOUNT || error "mount failed"
23222         # delay OST starting to keep this 0 max EA size for a while
23223         test_820_start_ost &
23224
23225         # create a directory on MDS2
23226         test_mkdir -i 1 -c1 $DIR/$tdir/mds2 ||
23227                 error "Failed to create directory"
23228         # open intent should update default EA size
23229         # see mdc_update_max_ea_from_body()
23230         # notice this is the very first RPC to MDS2
23231         cp /etc/services $DIR/$tdir/mds2 ||
23232                 error "Failed to copy files to mds$n"
23233 }
23234 run_test 820 "update max EA from open intent"
23235
23236 #
23237 # tests that do cleanup/setup should be run at the end
23238 #
23239
23240 test_900() {
23241         [ $PARALLEL == "yes" ] && skip "skip parallel run"
23242         local ls
23243
23244         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
23245         $LCTL set_param fail_loc=0x903
23246
23247         cancel_lru_locks MGC
23248
23249         FAIL_ON_ERROR=true cleanup
23250         FAIL_ON_ERROR=true setup
23251 }
23252 run_test 900 "umount should not race with any mgc requeue thread"
23253
23254 # LUS-6253/LU-11185
23255 test_901() {
23256         local oldc
23257         local newc
23258         local olds
23259         local news
23260         [ $PARALLEL == "yes" ] && skip "skip parallel run"
23261
23262         # some get_param have a bug to handle dot in param name
23263         cancel_lru_locks MGC
23264         oldc=$($LCTL get_param -n 'ldlm.namespaces.MGC*.lock_count')
23265         olds=$(do_facet mgs $LCTL get_param -n 'ldlm.namespaces.MGS*.lock_count')
23266         umount_client $MOUNT || error "umount failed"
23267         mount_client $MOUNT || error "mount failed"
23268         cancel_lru_locks MGC
23269         newc=$($LCTL get_param -n 'ldlm.namespaces.MGC*.lock_count')
23270         news=$(do_facet mgs $LCTL get_param -n 'ldlm.namespaces.MGS*.lock_count')
23271
23272         [ $oldc -lt $newc ] && error "mgc lock leak ($oldc != $newc)"
23273         [ $olds -lt $news ] && error "mgs lock leak ($olds != $news)"
23274
23275         return 0
23276 }
23277 run_test 901 "don't leak a mgc lock on client umount"
23278
23279 # LU-13377
23280 test_902() {
23281         [ $CLIENT_VERSION -lt $(version_code 2.13.52) ] &&
23282                 skip "client does not have LU-13377 fix"
23283         #define OBD_FAIL_LLITE_SHORT_COMMIT 0x1415
23284         $LCTL set_param fail_loc=0x1415
23285         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
23286         cancel_lru_locks osc
23287         rm -f $DIR/$tfile
23288 }
23289 run_test 902 "test short write doesn't hang lustre"
23290
23291 complete $SECONDS
23292 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
23293 check_and_cleanup_lustre
23294 if [ "$I_MOUNTED" != "yes" ]; then
23295         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
23296 fi
23297 exit_status