Whamcloud - gitweb
LU-15259 tests: use existing usernames for setfacl
[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
32 TRACE=${TRACE:-""}
33 LUSTRE=${LUSTRE:-$(dirname $0)/..}
34 LUSTRE_TESTS_API_DIR=${LUSTRE_TESTS_API_DIR:-${LUSTRE}/tests/clientapi}
35 . $LUSTRE/tests/test-framework.sh
36 init_test_env "$@"
37
38 init_logging
39
40 ALWAYS_EXCEPT="$SANITY_EXCEPT "
41 always_except LU-9693  42a 42c
42 always_except LU-6493  42b
43 always_except LU-14541 277
44 always_except LU-9054  312
45 always_except LU-8411  407
46
47 if $SHARED_KEY; then
48         always_except LU-14181 64e 64f
49 fi
50
51 # skip the grant tests for ARM until they are fixed
52 if [[ $(uname -m) = aarch64 ]]; then
53         always_except LU-11671 45
54 fi
55
56 # skip nfs tests on kernels >= 4.12.0 until they are fixed
57 if [ $LINUX_VERSION_CODE -ge $(version_code 4.12.0) ]; then
58         always_except LU-12661 817
59 fi
60 # skip cgroup tests on RHEL8.1 kernels until they are fixed
61 if (( $LINUX_VERSION_CODE >= $(version_code 4.18.0) &&
62       $LINUX_VERSION_CODE <  $(version_code 5.4.0) )); then
63         always_except LU-13063 411
64 fi
65
66 #                                  5              12     8   12  15   (min)"
67 [ "$SLOW" = "no" ] && EXCEPT_SLOW="27m 60i 64b 68 71 115 135 136 230d 300o"
68
69 if [ "$mds1_FSTYPE" = "zfs" ]; then
70         #                                               13    (min)"
71         [ "$SLOW" = "no" ] && EXCEPT_SLOW="$EXCEPT_SLOW 51b"
72 fi
73
74 if [ "$ost1_FSTYPE" = "zfs" ]; then
75         always_except LU-1941 130b 130c 130d 130e 130f 130g
76 fi
77
78 proc_regexp="/{proc,sys}/{fs,sys,kernel/debug}/{lustre,lnet}/"
79
80 # Get the SLES distro version
81 #
82 # Returns a version string that should only be used in comparing
83 # strings returned by version_code()
84 sles_version_code()
85 {
86         local version=$(grep VERSION_ID /etc/os-release | cut -d'"' -f2)
87
88         # All SuSE Linux versions have one decimal. version_code expects two
89         local sles_version=$version.0
90         version_code $sles_version
91 }
92
93 # Check if we are running on Ubuntu or SLES so we can make decisions on
94 # what tests to run
95 if [ -r /etc/SuSE-release ]; then
96         sles_version=$(sles_version_code)
97         [ $sles_version -lt $(version_code 11.4.0) ] &&
98                 always_except LU-4341 170
99
100         [ $sles_version -lt $(version_code 12.0.0) ] &&
101                 always_except LU-3703 234
102 elif [ -r /etc/os-release ]; then
103         if grep -qi ubuntu /etc/os-release; then
104                 ubuntu_version=$(version_code $(sed -n -e 's/"//g' \
105                                                 -e 's/^VERSION=//p' \
106                                                 /etc/os-release |
107                                                 awk '{ print $1 }'))
108
109                 if [[ $ubuntu_version -gt $(version_code 16.0.0) ]]; then
110                         always_except LU-10366 410
111                 fi
112         fi
113 fi
114
115 build_test_filter
116 FAIL_ON_ERROR=false
117
118 cleanup() {
119         echo -n "cln.."
120         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
121         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
122 }
123 setup() {
124         echo -n "mnt.."
125         load_modules
126         setupall || exit 10
127         echo "done"
128 }
129
130 check_swap_layouts_support()
131 {
132         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
133                 skip "Does not support layout lock."
134 }
135
136 check_swap_layout_no_dom()
137 {
138         local FOLDER=$1
139         local SUPP=$(lfs getstripe $FOLDER | grep "pattern:       mdt" | wc -l)
140         [ $SUPP -eq 0 ] || skip "layout swap does not support DOM files so far"
141 }
142
143 check_and_setup_lustre
144 DIR=${DIR:-$MOUNT}
145 assert_DIR
146
147 MAXFREE=${MAXFREE:-$((300000 * $OSTCOUNT))}
148
149 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
150 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
151 rm -rf $DIR/[Rdfs][0-9]*
152
153 # $RUNAS_ID may get set incorrectly somewhere else
154 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] &&
155         error "\$RUNAS_ID set to 0, but \$UID is also 0!"
156
157 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
158
159 if [ "${ONLY}" = "MOUNT" ] ; then
160         echo "Lustre is up, please go on"
161         exit
162 fi
163
164 echo "preparing for tests involving mounts"
165 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
166 touch $EXT2_DEV
167 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
168 echo # add a newline after mke2fs.
169
170 umask 077
171
172 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
173 lctl set_param debug=-1 2> /dev/null || true
174 test_0a() {
175         touch $DIR/$tfile
176         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
177         rm $DIR/$tfile
178         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
179 }
180 run_test 0a "touch; rm ====================="
181
182 test_0b() {
183         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
184         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
185 }
186 run_test 0b "chmod 0755 $DIR ============================="
187
188 test_0c() {
189         $LCTL get_param mdc.*.import | grep "state: FULL" ||
190                 error "import not FULL"
191         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
192                 error "bad target"
193 }
194 run_test 0c "check import proc"
195
196 test_0d() { # LU-3397
197         [ $MGS_VERSION -lt $(version_code 2.10.57) ] &&
198                 skip "proc exports not supported before 2.10.57"
199
200         local mgs_exp="mgs.MGS.exports"
201         local client_uuid=$($LCTL get_param -n mgc.*.uuid)
202         local exp_client_nid
203         local exp_client_version
204         local exp_val
205         local imp_val
206         local temp_imp=$DIR/$tfile.import
207         local temp_exp=$DIR/$tfile.export
208
209         # save mgc import file to $temp_imp
210         $LCTL get_param mgc.*.import | tee $temp_imp
211         # Check if client uuid is found in MGS export
212         for exp_client_nid in $(do_facet mgs $LCTL get_param -N $mgs_exp.*); do
213                 [ $(do_facet mgs $LCTL get_param -n $exp_client_nid.uuid) == \
214                         $client_uuid ] &&
215                         break;
216         done
217         # save mgs export file to $temp_exp
218         do_facet mgs $LCTL get_param $exp_client_nid.export | tee $temp_exp
219
220         # Compare the value of field "connect_flags"
221         imp_val=$(grep "connect_flags" $temp_imp)
222         exp_val=$(grep "connect_flags" $temp_exp)
223         [ "$exp_val" == "$imp_val" ] ||
224                 error "export flags '$exp_val' != import flags '$imp_val'"
225
226         # Compare client versions.  Only compare top-3 fields for compatibility
227         exp_client_version=$(awk '/target_version:/ { print $2 }' $temp_exp)
228         exp_val=$(version_code $(cut -d. -f1,2,3 <<<$exp_client_version))
229         imp_val=$(version_code $(lustre_build_version client | cut -d. -f1,2,3))
230         [ "$exp_val" == "$imp_val" ] ||
231                 error "exp version '$exp_client_version'($exp_val) != " \
232                         "'$(lustre_build_version client)'($imp_val)"
233 }
234 run_test 0d "check export proc ============================="
235
236 test_0e() { # LU-13417
237         (( $MDSCOUNT > 1 )) ||
238                 skip "We need at least 2 MDTs for this test"
239
240         (( $MDS1_VERSION >= $(version_code 2.14.51) )) ||
241                 skip "Need server version at least 2.14.51"
242
243         local default_lmv_count=$($LFS getdirstripe -D -c $MOUNT)
244         local default_lmv_index=$($LFS getdirstripe -D -i $MOUNT)
245
246         [ $default_lmv_count -eq 1 ] ||
247                 error "$MOUNT default stripe count $default_lmv_count"
248
249         [ $default_lmv_index -eq -1 ] ||
250                 error "$MOUNT default stripe index $default_lmv_index"
251
252         mkdir $MOUNT/$tdir.1 || error "mkdir $MOUNT/$tdir.1 failed"
253         mkdir $MOUNT/$tdir.2 || error "mkdir $MOUNT/$tdir.2 failed"
254
255         local mdt_index1=$($LFS getdirstripe -i $MOUNT/$tdir.1)
256         local mdt_index2=$($LFS getdirstripe -i $MOUNT/$tdir.2)
257
258         [ $mdt_index1 -eq $mdt_index2 ] &&
259                 error "directories are on the same MDT $mdt_index1=$mdt_index2"
260
261         rmdir $MOUNT/$tdir.1 $MOUNT/$tdir.2
262 }
263 run_test 0e "Enable DNE MDT balancing for mkdir in the ROOT"
264
265 test_1() {
266         test_mkdir $DIR/$tdir
267         test_mkdir $DIR/$tdir/d2
268         mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
269         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
270         rmdir $DIR/$tdir/d2
271         rmdir $DIR/$tdir
272         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
273 }
274 run_test 1 "mkdir; remkdir; rmdir"
275
276 test_2() {
277         test_mkdir $DIR/$tdir
278         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
279         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
280         rm -r $DIR/$tdir
281         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
282 }
283 run_test 2 "mkdir; touch; rmdir; check file"
284
285 test_3() {
286         test_mkdir $DIR/$tdir
287         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
288         touch $DIR/$tdir/$tfile
289         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
290         rm -r $DIR/$tdir
291         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
292 }
293 run_test 3 "mkdir; touch; rmdir; check dir"
294
295 # LU-4471 - failed rmdir on remote directories still removes directory on MDT0
296 test_4() {
297         test_mkdir -i 1 $DIR/$tdir
298
299         touch $DIR/$tdir/$tfile ||
300                 error "Create file under remote directory failed"
301
302         rmdir $DIR/$tdir &&
303                 error "Expect error removing in-use dir $DIR/$tdir"
304
305         test -d $DIR/$tdir || error "Remote directory disappeared"
306
307         rm -rf $DIR/$tdir || error "remove remote dir error"
308 }
309 run_test 4 "mkdir; touch dir/file; rmdir; checkdir (expect error)"
310
311 test_5() {
312         test_mkdir $DIR/$tdir
313         test_mkdir $DIR/$tdir/d2
314         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
315         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
316         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
317 }
318 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2"
319
320 test_6a() {
321         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
322         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
323         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
324                 error "$tfile does not have perm 0666 or UID $UID"
325         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
326         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
327                 error "$tfile should be 0666 and owned by UID $UID"
328 }
329 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
330
331 test_6c() {
332         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
333
334         touch $DIR/$tfile
335         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
336         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
337                 error "$tfile should be owned by UID $RUNAS_ID"
338         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
339         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
340                 error "$tfile should be owned by UID $RUNAS_ID"
341 }
342 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
343
344 test_6e() {
345         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
346
347         touch $DIR/$tfile
348         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
349         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
350                 error "$tfile should be owned by GID $UID"
351         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
352         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
353                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
354 }
355 run_test 6e "touch+chgrp $tfile; $RUNAS chgrp $tfile (should return error)"
356
357 test_6g() {
358         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
359
360         test_mkdir $DIR/$tdir
361         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
362         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
363         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
364         test_mkdir $DIR/$tdir/d/subdir
365         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
366                 error "$tdir/d/subdir should be GID $RUNAS_GID"
367         if [[ $MDSCOUNT -gt 1 ]]; then
368                 # check remote dir sgid inherite
369                 $LFS mkdir -i 0 $DIR/$tdir.local ||
370                         error "mkdir $tdir.local failed"
371                 chmod g+s $DIR/$tdir.local ||
372                         error "chmod $tdir.local failed"
373                 chgrp $RUNAS_GID $DIR/$tdir.local ||
374                         error "chgrp $tdir.local failed"
375                 $LFS mkdir -i 1 $DIR/$tdir.local/$tdir.remote ||
376                         error "mkdir $tdir.remote failed"
377                 $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir.local/$tdir.remote ||
378                         error "$tdir.remote should be owned by $UID.$RUNAS_ID"
379                 $CHECKSTAT -p 02755 $DIR/$tdir.local/$tdir.remote ||
380                         error "$tdir.remote should be mode 02755"
381         fi
382 }
383 run_test 6g "verify new dir in sgid dir inherits group"
384
385 test_6h() { # bug 7331
386         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
387
388         touch $DIR/$tfile || error "touch failed"
389         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
390         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
391                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
392         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
393                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
394 }
395 run_test 6h "$RUNAS chown RUNAS_ID.0 .../$tfile (should return error)"
396
397 test_7a() {
398         test_mkdir $DIR/$tdir
399         $MCREATE $DIR/$tdir/$tfile
400         chmod 0666 $DIR/$tdir/$tfile
401         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
402                 error "$tdir/$tfile should be mode 0666"
403 }
404 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
405
406 test_7b() {
407         if [ ! -d $DIR/$tdir ]; then
408                 test_mkdir $DIR/$tdir
409         fi
410         $MCREATE $DIR/$tdir/$tfile
411         echo -n foo > $DIR/$tdir/$tfile
412         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
413         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
414 }
415 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
416
417 test_8() {
418         test_mkdir $DIR/$tdir
419         touch $DIR/$tdir/$tfile
420         chmod 0666 $DIR/$tdir/$tfile
421         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
422                 error "$tfile mode not 0666"
423 }
424 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
425
426 test_9() {
427         test_mkdir $DIR/$tdir
428         test_mkdir $DIR/$tdir/d2
429         test_mkdir $DIR/$tdir/d2/d3
430         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
431 }
432 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
433
434 test_10() {
435         test_mkdir $DIR/$tdir
436         test_mkdir $DIR/$tdir/d2
437         touch $DIR/$tdir/d2/$tfile
438         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
439                 error "$tdir/d2/$tfile not a file"
440 }
441 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
442
443 test_11() {
444         test_mkdir $DIR/$tdir
445         test_mkdir $DIR/$tdir/d2
446         chmod 0666 $DIR/$tdir/d2
447         chmod 0705 $DIR/$tdir/d2
448         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
449                 error "$tdir/d2 mode not 0705"
450 }
451 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
452
453 test_12() {
454         test_mkdir $DIR/$tdir
455         touch $DIR/$tdir/$tfile
456         chmod 0666 $DIR/$tdir/$tfile
457         chmod 0654 $DIR/$tdir/$tfile
458         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
459                 error "$tdir/d2 mode not 0654"
460 }
461 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
462
463 test_13() {
464         test_mkdir $DIR/$tdir
465         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
466         >  $DIR/$tdir/$tfile
467         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
468                 error "$tdir/$tfile size not 0 after truncate"
469 }
470 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
471
472 test_14() {
473         test_mkdir $DIR/$tdir
474         touch $DIR/$tdir/$tfile
475         rm $DIR/$tdir/$tfile
476         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
477 }
478 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
479
480 test_15() {
481         test_mkdir $DIR/$tdir
482         touch $DIR/$tdir/$tfile
483         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
484         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
485                 error "$tdir/${tfile_2} not a file after rename"
486         rm $DIR/$tdir/${tfile}_2 || error "unlink failed after rename"
487 }
488 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
489
490 test_16() {
491         test_mkdir $DIR/$tdir
492         touch $DIR/$tdir/$tfile
493         rm -rf $DIR/$tdir/$tfile
494         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
495 }
496 run_test 16 "touch .../d16/f; rm -rf .../d16/f"
497
498 test_17a() {
499         test_mkdir $DIR/$tdir
500         touch $DIR/$tdir/$tfile
501         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
502         ls -l $DIR/$tdir
503         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
504                 error "$tdir/l-exist not a symlink"
505         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
506                 error "$tdir/l-exist not referencing a file"
507         rm -f $DIR/$tdir/l-exist
508         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
509 }
510 run_test 17a "symlinks: create, remove (real)"
511
512 test_17b() {
513         test_mkdir $DIR/$tdir
514         ln -s no-such-file $DIR/$tdir/l-dangle
515         ls -l $DIR/$tdir
516         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
517                 error "$tdir/l-dangle not referencing no-such-file"
518         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
519                 error "$tdir/l-dangle not referencing non-existent file"
520         rm -f $DIR/$tdir/l-dangle
521         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
522 }
523 run_test 17b "symlinks: create, remove (dangling)"
524
525 test_17c() { # bug 3440 - don't save failed open RPC for replay
526         test_mkdir $DIR/$tdir
527         ln -s foo $DIR/$tdir/$tfile
528         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
529 }
530 run_test 17c "symlinks: open dangling (should return error)"
531
532 test_17d() {
533         test_mkdir $DIR/$tdir
534         ln -s foo $DIR/$tdir/$tfile
535         touch $DIR/$tdir/$tfile || error "creating to new symlink"
536 }
537 run_test 17d "symlinks: create dangling"
538
539 test_17e() {
540         test_mkdir $DIR/$tdir
541         local foo=$DIR/$tdir/$tfile
542         ln -s $foo $foo || error "create symlink failed"
543         ls -l $foo || error "ls -l failed"
544         ls $foo && error "ls not failed" || true
545 }
546 run_test 17e "symlinks: create recursive symlink (should return error)"
547
548 test_17f() {
549         test_mkdir $DIR/$tdir
550         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/$tdir/111
551         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/$tdir/222
552         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/$tdir/333
553         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/$tdir/444
554         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/$tdir/555
555         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
556         ls -l  $DIR/$tdir
557 }
558 run_test 17f "symlinks: long and very long symlink name"
559
560 # str_repeat(S, N) generate a string that is string S repeated N times
561 str_repeat() {
562         local s=$1
563         local n=$2
564         local ret=''
565         while [ $((n -= 1)) -ge 0 ]; do
566                 ret=$ret$s
567         done
568         echo $ret
569 }
570
571 # Long symlinks and LU-2241
572 test_17g() {
573         test_mkdir $DIR/$tdir
574         local TESTS="59 60 61 4094 4095"
575
576         # Fix for inode size boundary in 2.1.4
577         [ $MDS1_VERSION -lt $(version_code 2.1.4) ] &&
578                 TESTS="4094 4095"
579
580         # Patch not applied to 2.2 or 2.3 branches
581         [ $MDS1_VERSION -ge $(version_code 2.2.0) ] &&
582         [ $MDS1_VERSION -le $(version_code 2.3.55) ] &&
583                 TESTS="4094 4095"
584
585         for i in $TESTS; do
586                 local SYMNAME=$(str_repeat 'x' $i)
587                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
588                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
589         done
590 }
591 run_test 17g "symlinks: really long symlink name and inode boundaries"
592
593 test_17h() { #bug 17378
594         [ $PARALLEL == "yes" ] && skip "skip parallel run"
595         remote_mds_nodsh && skip "remote MDS with nodsh"
596
597         local mdt_idx
598
599         test_mkdir $DIR/$tdir
600         mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
601         $LFS setstripe -c -1 $DIR/$tdir
602         #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
603         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
604         touch $DIR/$tdir/$tfile || true
605 }
606 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
607
608 test_17i() { #bug 20018
609         [ $PARALLEL == "yes" ] && skip "skip parallel run"
610         remote_mds_nodsh && skip "remote MDS with nodsh"
611
612         local foo=$DIR/$tdir/$tfile
613         local mdt_idx
614
615         test_mkdir -c1 $DIR/$tdir
616         mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
617         ln -s $foo $foo || error "create symlink failed"
618 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
619         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
620         ls -l $foo && error "error not detected"
621         return 0
622 }
623 run_test 17i "don't panic on short symlink (should return error)"
624
625 test_17k() { #bug 22301
626         [ $PARALLEL == "yes" ] && skip "skip parallel run"
627         [[ -z "$(which rsync 2>/dev/null)" ]] &&
628                 skip "no rsync command"
629         rsync --help | grep -q xattr ||
630                 skip_env "$(rsync --version | head -n1) does not support xattrs"
631         test_mkdir $DIR/$tdir
632         test_mkdir $DIR/$tdir.new
633         touch $DIR/$tdir/$tfile
634         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
635         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
636                 error "rsync failed with xattrs enabled"
637 }
638 run_test 17k "symlinks: rsync with xattrs enabled"
639
640 test_17l() { # LU-279
641         [[ -z "$(which getfattr 2>/dev/null)" ]] &&
642                 skip "no getfattr command"
643
644         test_mkdir $DIR/$tdir
645         touch $DIR/$tdir/$tfile
646         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
647         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
648                 # -h to not follow symlinks. -m '' to list all the xattrs.
649                 # grep to remove first line: '# file: $path'.
650                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
651                 do
652                         lgetxattr_size_check $path $xattr ||
653                                 error "lgetxattr_size_check $path $xattr failed"
654                 done
655         done
656 }
657 run_test 17l "Ensure lgetxattr's returned xattr size is consistent"
658
659 # LU-1540
660 test_17m() {
661         [ $PARALLEL == "yes" ] && skip "skip parallel run"
662         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
663         remote_mds_nodsh && skip "remote MDS with nodsh"
664         [ $MDS1_VERSION -ge $(version_code 2.2.0) ] &&
665         [ $MDS1_VERSION -le $(version_code 2.2.93) ] &&
666                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks"
667
668         local short_sym="0123456789"
669         local wdir=$DIR/$tdir
670         local i
671
672         test_mkdir $wdir
673         long_sym=$short_sym
674         # create a long symlink file
675         for ((i = 0; i < 4; ++i)); do
676                 long_sym=${long_sym}${long_sym}
677         done
678
679         echo "create 512 short and long symlink files under $wdir"
680         for ((i = 0; i < 256; ++i)); do
681                 ln -sf ${long_sym}"a5a5" $wdir/long-$i
682                 ln -sf ${short_sym}"a5a5" $wdir/short-$i
683         done
684
685         echo "erase them"
686         rm -f $wdir/*
687         sync
688         wait_delete_completed
689
690         echo "recreate the 512 symlink files with a shorter string"
691         for ((i = 0; i < 512; ++i)); do
692                 # rewrite the symlink file with a shorter string
693                 ln -sf ${long_sym} $wdir/long-$i || error "long_sym failed"
694                 ln -sf ${short_sym} $wdir/short-$i || error "short_sym failed"
695         done
696
697         local mds_index=$(($($LFS getstripe -m $wdir) + 1))
698
699         echo "stop and checking mds${mds_index}:"
700         # e2fsck should not return error
701         stop mds${mds_index}
702         local devname=$(mdsdevname $mds_index)
703         run_e2fsck $(facet_active_host mds${mds_index}) $devname -n
704         rc=$?
705
706         start mds${mds_index} $devname $MDS_MOUNT_OPTS ||
707                 error "start mds${mds_index} failed"
708         df $MOUNT > /dev/null 2>&1
709         [ $rc -eq 0 ] ||
710                 error "e2fsck detected error for short/long symlink: rc=$rc"
711         rm -f $wdir/*
712 }
713 run_test 17m "run e2fsck against MDT which contains short/long symlink"
714
715 check_fs_consistency_17n() {
716         local mdt_index
717         local rc=0
718
719         # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
720         # so it only check MDT1/MDT2 instead of all of MDTs.
721         for mdt_index in 1 2; do
722                 # e2fsck should not return error
723                 stop mds${mdt_index}
724                 local devname=$(mdsdevname $mdt_index)
725                 run_e2fsck $(facet_active_host mds$mdt_index) $devname -n ||
726                         rc=$((rc + $?))
727
728                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS ||
729                         error "mount mds$mdt_index failed"
730                 df $MOUNT > /dev/null 2>&1
731         done
732         return $rc
733 }
734
735 test_17n() {
736         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
737         [ $PARALLEL == "yes" ] && skip "skip parallel run"
738         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
739         remote_mds_nodsh && skip "remote MDS with nodsh"
740         [ $MDS1_VERSION -ge $(version_code 2.2.0) ] &&
741         [ $MDS1_VERSION -le $(version_code 2.2.93) ] &&
742                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks"
743
744         local i
745
746         test_mkdir $DIR/$tdir
747         for ((i=0; i<10; i++)); do
748                 $LFS mkdir -i1 -c2 $DIR/$tdir/remote_dir_${i} ||
749                         error "create remote dir error $i"
750                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
751                         error "create files under remote dir failed $i"
752         done
753
754         check_fs_consistency_17n ||
755                 error "e2fsck report error after create files under remote dir"
756
757         for ((i = 0; i < 10; i++)); do
758                 rm -rf $DIR/$tdir/remote_dir_${i} ||
759                         error "destroy remote dir error $i"
760         done
761
762         check_fs_consistency_17n ||
763                 error "e2fsck report error after unlink files under remote dir"
764
765         [ $MDS1_VERSION -lt $(version_code 2.4.50) ] &&
766                 skip "lustre < 2.4.50 does not support migrate mv"
767
768         for ((i = 0; i < 10; i++)); do
769                 mkdir -p $DIR/$tdir/remote_dir_${i}
770                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
771                         error "create files under remote dir failed $i"
772                 $LFS migrate --mdt-index 1 $DIR/$tdir/remote_dir_${i} ||
773                         error "migrate remote dir error $i"
774         done
775         check_fs_consistency_17n || error "e2fsck report error after migration"
776
777         for ((i = 0; i < 10; i++)); do
778                 rm -rf $DIR/$tdir/remote_dir_${i} ||
779                         error "destroy remote dir error $i"
780         done
781
782         check_fs_consistency_17n || error "e2fsck report error after unlink"
783 }
784 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
785
786 test_17o() {
787         remote_mds_nodsh && skip "remote MDS with nodsh"
788         [ $MDS1_VERSION -lt $(version_code 2.3.64) ] &&
789                 skip "Need MDS version at least 2.3.64"
790
791         local wdir=$DIR/${tdir}o
792         local mdt_index
793         local rc=0
794
795         test_mkdir $wdir
796         touch $wdir/$tfile
797         mdt_index=$($LFS getstripe -m $wdir/$tfile)
798         mdt_index=$((mdt_index + 1))
799
800         cancel_lru_locks mdc
801         #fail mds will wait the failover finish then set
802         #following fail_loc to avoid interfer the recovery process.
803         fail mds${mdt_index}
804
805         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
806         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
807         ls -l $wdir/$tfile && rc=1
808         do_facet mds${mdt_index} lctl set_param fail_loc=0
809         [[ $rc -eq 0 ]] || error "stat file should fail"
810 }
811 run_test 17o "stat file with incompat LMA feature"
812
813 test_18() {
814         touch $DIR/$tfile || error "Failed to touch $DIR/$tfile: $?"
815         ls $DIR || error "Failed to ls $DIR: $?"
816 }
817 run_test 18 "touch .../f ; ls ... =============================="
818
819 test_19a() {
820         touch $DIR/$tfile
821         ls -l $DIR
822         rm $DIR/$tfile
823         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
824 }
825 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
826
827 test_19b() {
828         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
829 }
830 run_test 19b "ls -l .../f19 (should return error) =============="
831
832 test_19c() {
833         [ $RUNAS_ID -eq $UID ] &&
834                 skip_env "RUNAS_ID = UID = $UID -- skipping"
835
836         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
837 }
838 run_test 19c "$RUNAS touch .../f19 (should return error) =="
839
840 test_19d() {
841         cat $DIR/f19 && error || true
842 }
843 run_test 19d "cat .../f19 (should return error) =============="
844
845 test_20() {
846         touch $DIR/$tfile
847         rm $DIR/$tfile
848         touch $DIR/$tfile
849         rm $DIR/$tfile
850         touch $DIR/$tfile
851         rm $DIR/$tfile
852         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
853 }
854 run_test 20 "touch .../f ; ls -l ..."
855
856 test_21() {
857         test_mkdir $DIR/$tdir
858         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
859         ln -s dangle $DIR/$tdir/link
860         echo foo >> $DIR/$tdir/link
861         cat $DIR/$tdir/dangle
862         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
863         $CHECKSTAT -f -t file $DIR/$tdir/link ||
864                 error "$tdir/link not linked to a file"
865 }
866 run_test 21 "write to dangling link"
867
868 test_22() {
869         local wdir=$DIR/$tdir
870         test_mkdir $wdir
871         chown $RUNAS_ID:$RUNAS_GID $wdir
872         (cd $wdir || error "cd $wdir failed";
873                 $RUNAS tar cf - /etc/hosts /etc/sysconfig/network |
874                 $RUNAS tar xf -)
875         ls -lR $wdir/etc || error "ls -lR $wdir/etc failed"
876         $CHECKSTAT -t dir $wdir/etc || error "checkstat -t dir failed"
877         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $wdir/etc ||
878                 error "checkstat -u failed"
879 }
880 run_test 22 "unpack tar archive as non-root user"
881
882 # was test_23
883 test_23a() {
884         test_mkdir $DIR/$tdir
885         local file=$DIR/$tdir/$tfile
886
887         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
888         openfile -f O_CREAT:O_EXCL $file &&
889                 error "$file recreate succeeded" || true
890 }
891 run_test 23a "O_CREAT|O_EXCL in subdir"
892
893 test_23b() { # bug 18988
894         test_mkdir $DIR/$tdir
895         local file=$DIR/$tdir/$tfile
896
897         rm -f $file
898         echo foo > $file || error "write filed"
899         echo bar >> $file || error "append filed"
900         $CHECKSTAT -s 8 $file || error "wrong size"
901         rm $file
902 }
903 run_test 23b "O_APPEND check"
904
905 # LU-9409, size with O_APPEND and tiny writes
906 test_23c() {
907         local file=$DIR/$tfile
908
909         # single dd
910         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800
911         $CHECKSTAT -s 6400 $file || error "wrong size, expected 6400"
912         rm -f $file
913
914         # racing tiny writes
915         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800 &
916         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800 &
917         wait
918         $CHECKSTAT -s 12800 $file || error "wrong size, expected 12800"
919         rm -f $file
920
921         #racing tiny & normal writes
922         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=4096 count=4 &
923         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=100 &
924         wait
925         $CHECKSTAT -s 17184 $file || error "wrong size, expected 17184"
926         rm -f $file
927
928         #racing tiny & normal writes 2, ugly numbers
929         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=4099 count=11 &
930         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=17 count=173 &
931         wait
932         $CHECKSTAT -s 48030 $file || error "wrong size, expected 48030"
933         rm -f $file
934 }
935 run_test 23c "O_APPEND size checks for tiny writes"
936
937 # LU-11069 file offset is correct after appending writes
938 test_23d() {
939         local file=$DIR/$tfile
940         local offset
941
942         echo CentaurHauls > $file
943         offset=$($MULTIOP $file oO_WRONLY:O_APPEND:w13Zp)
944         if ((offset != 26)); then
945                 error "wrong offset, expected 26, got '$offset'"
946         fi
947 }
948 run_test 23d "file offset is correct after appending writes"
949
950 # rename sanity
951 test_24a() {
952         echo '-- same directory rename'
953         test_mkdir $DIR/$tdir
954         touch $DIR/$tdir/$tfile.1
955         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
956         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
957 }
958 run_test 24a "rename file to non-existent target"
959
960 test_24b() {
961         test_mkdir $DIR/$tdir
962         touch $DIR/$tdir/$tfile.{1,2}
963         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
964         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
965         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
966 }
967 run_test 24b "rename file to existing target"
968
969 test_24c() {
970         test_mkdir $DIR/$tdir
971         test_mkdir $DIR/$tdir/d$testnum.1
972         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
973         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
974         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
975 }
976 run_test 24c "rename directory to non-existent target"
977
978 test_24d() {
979         test_mkdir -c1 $DIR/$tdir
980         test_mkdir -c1 $DIR/$tdir/d$testnum.1
981         test_mkdir -c1 $DIR/$tdir/d$testnum.2
982         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
983         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
984         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
985 }
986 run_test 24d "rename directory to existing target"
987
988 test_24e() {
989         echo '-- cross directory renames --'
990         test_mkdir $DIR/R5a
991         test_mkdir $DIR/R5b
992         touch $DIR/R5a/f
993         mv $DIR/R5a/f $DIR/R5b/g
994         $CHECKSTAT -a $DIR/R5a/f || error "$DIR/R5a/f exists"
995         $CHECKSTAT -t file $DIR/R5b/g || error "$DIR/R5b/g not file type"
996 }
997 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
998
999 test_24f() {
1000         test_mkdir $DIR/R6a
1001         test_mkdir $DIR/R6b
1002         touch $DIR/R6a/f $DIR/R6b/g
1003         mv $DIR/R6a/f $DIR/R6b/g
1004         $CHECKSTAT -a $DIR/R6a/f || error "$DIR/R6a/f exists"
1005         $CHECKSTAT -t file $DIR/R6b/g || error "$DIR/R6b/g not file type"
1006 }
1007 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
1008
1009 test_24g() {
1010         test_mkdir $DIR/R7a
1011         test_mkdir $DIR/R7b
1012         test_mkdir $DIR/R7a/d
1013         mv $DIR/R7a/d $DIR/R7b/e
1014         $CHECKSTAT -a $DIR/R7a/d || error "$DIR/R7a/d exists"
1015         $CHECKSTAT -t dir $DIR/R7b/e || error "$DIR/R7b/e not dir type"
1016 }
1017 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
1018
1019 test_24h() {
1020         test_mkdir -c1 $DIR/R8a
1021         test_mkdir -c1 $DIR/R8b
1022         test_mkdir -c1 $DIR/R8a/d
1023         test_mkdir -c1 $DIR/R8b/e
1024         mrename $DIR/R8a/d $DIR/R8b/e
1025         $CHECKSTAT -a $DIR/R8a/d || error "$DIR/R8a/d exists"
1026         $CHECKSTAT -t dir $DIR/R8b/e || error "$DIR/R8b/e not dir type"
1027 }
1028 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
1029
1030 test_24i() {
1031         echo "-- rename error cases"
1032         test_mkdir $DIR/R9
1033         test_mkdir $DIR/R9/a
1034         touch $DIR/R9/f
1035         mrename $DIR/R9/f $DIR/R9/a
1036         $CHECKSTAT -t file $DIR/R9/f || error "$DIR/R9/f not file type"
1037         $CHECKSTAT -t dir  $DIR/R9/a || error "$DIR/R9/a not dir type"
1038         $CHECKSTAT -a $DIR/R9/a/f || error "$DIR/R9/a/f exists"
1039 }
1040 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
1041
1042 test_24j() {
1043         test_mkdir $DIR/R10
1044         mrename $DIR/R10/f $DIR/R10/g
1045         $CHECKSTAT -t dir $DIR/R10 || error "$DIR/R10 not dir type"
1046         $CHECKSTAT -a $DIR/R10/f || error "$DIR/R10/f exists"
1047         $CHECKSTAT -a $DIR/R10/g || error "$DIR/R10/g exists"
1048 }
1049 run_test 24j "source does not exist ============================"
1050
1051 test_24k() {
1052         test_mkdir $DIR/R11a
1053         test_mkdir $DIR/R11a/d
1054         touch $DIR/R11a/f
1055         mv $DIR/R11a/f $DIR/R11a/d
1056         $CHECKSTAT -a $DIR/R11a/f || error "$DIR/R11a/f exists"
1057         $CHECKSTAT -t file $DIR/R11a/d/f || error "$DIR/R11a/d/f not file type"
1058 }
1059 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
1060
1061 # bug 2429 - rename foo foo foo creates invalid file
1062 test_24l() {
1063         f="$DIR/f24l"
1064         $MULTIOP $f OcNs || error "rename of ${f} to itself failed"
1065 }
1066 run_test 24l "Renaming a file to itself ========================"
1067
1068 test_24m() {
1069         f="$DIR/f24m"
1070         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
1071         # on ext3 this does not remove either the source or target files
1072         # though the "expected" operation would be to remove the source
1073         $CHECKSTAT -t file ${f} || error "${f} missing"
1074         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
1075 }
1076 run_test 24m "Renaming a file to a hard link to itself ========="
1077
1078 test_24n() {
1079     f="$DIR/f24n"
1080     # this stats the old file after it was renamed, so it should fail
1081     touch ${f}
1082     $CHECKSTAT ${f} || error "${f} missing"
1083     mv ${f} ${f}.rename
1084     $CHECKSTAT ${f}.rename || error "${f}.rename missing"
1085     $CHECKSTAT -a ${f} || error "${f} exists"
1086 }
1087 run_test 24n "Statting the old file after renaming (Posix rename 2)"
1088
1089 test_24o() {
1090         test_mkdir $DIR/$tdir
1091         rename_many -s random -v -n 10 $DIR/$tdir
1092 }
1093 run_test 24o "rename of files during htree split"
1094
1095 test_24p() {
1096         test_mkdir $DIR/R12a
1097         test_mkdir $DIR/R12b
1098         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
1099         mrename $DIR/R12a $DIR/R12b
1100         $CHECKSTAT -a $DIR/R12a || error "$DIR/R12a exists"
1101         $CHECKSTAT -t dir $DIR/R12b || error "$DIR/R12b not dir type"
1102         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
1103         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
1104 }
1105 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
1106
1107 cleanup_multiop_pause() {
1108         trap 0
1109         kill -USR1 $MULTIPID
1110 }
1111
1112 test_24q() {
1113         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1114
1115         test_mkdir $DIR/R13a
1116         test_mkdir $DIR/R13b
1117         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
1118         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
1119         MULTIPID=$!
1120
1121         trap cleanup_multiop_pause EXIT
1122         mrename $DIR/R13a $DIR/R13b
1123         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
1124         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
1125         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
1126         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
1127         cleanup_multiop_pause
1128         wait $MULTIPID || error "multiop close failed"
1129 }
1130 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
1131
1132 test_24r() { #bug 3789
1133         test_mkdir $DIR/R14a
1134         test_mkdir $DIR/R14a/b
1135         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
1136         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
1137         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
1138 }
1139 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
1140
1141 test_24s() {
1142         test_mkdir $DIR/R15a
1143         test_mkdir $DIR/R15a/b
1144         test_mkdir $DIR/R15a/b/c
1145         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
1146         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
1147         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
1148 }
1149 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
1150 test_24t() {
1151         test_mkdir $DIR/R16a
1152         test_mkdir $DIR/R16a/b
1153         test_mkdir $DIR/R16a/b/c
1154         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1155         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1156         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1157 }
1158 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1159
1160 test_24u() { # bug12192
1161         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error "multiop failed"
1162         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1163 }
1164 run_test 24u "create stripe file"
1165
1166 simple_cleanup_common() {
1167         local createmany=$1
1168         local rc=0
1169
1170         [[ -z "$DIR" || -z "$tdir" || ! -d "$DIR/$tdir" ]] && return 0
1171
1172         local start=$SECONDS
1173
1174         [[ -n "$createmany" ]] && unlinkmany $DIR/$tdir/$tfile $createmany
1175         rm -rf $DIR/$tdir || error "cleanup $DIR/$tdir failed"
1176         rc=$?
1177         wait_delete_completed
1178         echo "cleanup time $((SECONDS - start))"
1179         return $rc
1180 }
1181
1182 max_pages_per_rpc() {
1183         local mdtname="$(printf "MDT%04x" ${1:-0})"
1184         $LCTL get_param -n mdc.*$mdtname*.max_pages_per_rpc
1185 }
1186
1187 test_24v() {
1188         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1189
1190         local nrfiles=${COUNT:-100000}
1191         local fname="$DIR/$tdir/$tfile"
1192
1193         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1194         [ "$mds1_FSTYPE" = "zfs" ] && nrfiles=${COUNT:-10000}
1195
1196         test_mkdir "$(dirname $fname)"
1197         # assume MDT0000 has the fewest inodes
1198         local stripes=$($LFS getdirstripe -c $(dirname $fname))
1199         local free_inodes=$(($(mdt_free_inodes 0) * ${stripes/#0/1}))
1200         [[ $free_inodes -lt $nrfiles ]] && nrfiles=$free_inodes
1201
1202         stack_trap "simple_cleanup_common $nrfiles"
1203
1204         createmany -m "$fname" $nrfiles
1205
1206         cancel_lru_locks mdc
1207         lctl set_param mdc.*.stats clear
1208
1209         # was previously test_24D: LU-6101
1210         # readdir() returns correct number of entries after cursor reload
1211         local num_ls=$(ls $DIR/$tdir | wc -l)
1212         local num_uniq=$(ls $DIR/$tdir | sort -u | wc -l)
1213         local num_all=$(ls -a $DIR/$tdir | wc -l)
1214         if [ $num_ls -ne $nrfiles ] || [ $num_uniq -ne $nrfiles ] ||
1215                 [ $num_all -ne $((nrfiles + 2)) ]; then
1216                         error "Expected $nrfiles files, got $num_ls " \
1217                                 "($num_uniq unique $num_all .&..)"
1218         fi
1219         # LU-5 large readdir
1220         # dirent_size = 32 bytes for sizeof(struct lu_dirent) +
1221         #               N bytes for name (len($nrfiles) rounded to 8 bytes) +
1222         #               8 bytes for luda_type (4 bytes rounded to 8 bytes)
1223         # take into account of overhead in lu_dirpage header and end mark in
1224         # each page, plus one in rpc_num calculation.
1225         local dirent_size=$((32 + (${#tfile} | 7) + 1 + 8))
1226         local page_entries=$(((PAGE_SIZE - 24) / dirent_size))
1227         local mdt_idx=$($LFS getdirstripe -i $(dirname $fname))
1228         local rpc_pages=$(max_pages_per_rpc $mdt_idx)
1229         local rpc_max=$((nrfiles / (page_entries * rpc_pages) + stripes))
1230         local mds_readpage=$(calc_stats mdc.*.stats mds_readpage)
1231         echo "readpages: $mds_readpage rpc_max: $rpc_max-2/+1"
1232         (( $mds_readpage >= $rpc_max - 2 && $mds_readpage <= $rpc_max + 1)) ||
1233                 error "large readdir doesn't take effect: " \
1234                       "$mds_readpage should be about $rpc_max"
1235 }
1236 run_test 24v "list large directory (test hash collision, b=17560)"
1237
1238 test_24w() { # bug21506
1239         SZ1=234852
1240         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1241         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1242         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1243         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1244         [[ "$SZ1" -eq "$SZ2" ]] ||
1245                 error "Error reading at the end of the file $tfile"
1246 }
1247 run_test 24w "Reading a file larger than 4Gb"
1248
1249 test_24x() {
1250         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
1251         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1252         [[ $MDS1_VERSION -lt $(version_code 2.7.56) ]] &&
1253                 skip "Need MDS version at least 2.7.56"
1254
1255         local MDTIDX=1
1256         local remote_dir=$DIR/$tdir/remote_dir
1257
1258         test_mkdir $DIR/$tdir
1259         $LFS mkdir -i $MDTIDX $remote_dir ||
1260                 error "create remote directory failed"
1261
1262         test_mkdir $DIR/$tdir/src_dir
1263         touch $DIR/$tdir/src_file
1264         test_mkdir $remote_dir/tgt_dir
1265         touch $remote_dir/tgt_file
1266
1267         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir ||
1268                 error "rename dir cross MDT failed!"
1269
1270         mrename $DIR/$tdir/src_file $remote_dir/tgt_file ||
1271                 error "rename file cross MDT failed!"
1272
1273         touch $DIR/$tdir/ln_file
1274         ln $DIR/$tdir/ln_file $remote_dir/ln_name ||
1275                 error "ln file cross MDT failed"
1276
1277         rm -rf $DIR/$tdir || error "Can not delete directories"
1278 }
1279 run_test 24x "cross MDT rename/link"
1280
1281 test_24y() {
1282         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
1283         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1284
1285         local remote_dir=$DIR/$tdir/remote_dir
1286         local mdtidx=1
1287
1288         test_mkdir $DIR/$tdir
1289         $LFS mkdir -i $mdtidx $remote_dir ||
1290                 error "create remote directory failed"
1291
1292         test_mkdir $remote_dir/src_dir
1293         touch $remote_dir/src_file
1294         test_mkdir $remote_dir/tgt_dir
1295         touch $remote_dir/tgt_file
1296
1297         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1298                 error "rename subdir in the same remote dir failed!"
1299
1300         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1301                 error "rename files in the same remote dir failed!"
1302
1303         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1304                 error "link files in the same remote dir failed!"
1305
1306         rm -rf $DIR/$tdir || error "Can not delete directories"
1307 }
1308 run_test 24y "rename/link on the same dir should succeed"
1309
1310 test_24z() {
1311         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
1312         [[ $MDS1_VERSION -lt $(version_code 2.12.51) ]] &&
1313                 skip "Need MDS version at least 2.12.51"
1314
1315         local index
1316
1317         for index in 0 1; do
1318                 $LFS mkdir -i $index $DIR/$tdir.$index || error "mkdir failed"
1319                 touch $DIR/$tdir.0/$tfile.$index || error "touch failed"
1320         done
1321
1322         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1 || error "mv $tfile.0 failed"
1323
1324         index=$($LFS getstripe -m $DIR/$tdir.1/$tfile.0)
1325         [ $index -eq 0 ] || error "$tfile.0 is on MDT$index"
1326
1327         local mdts=$(comma_list $(mdts_nodes))
1328
1329         do_nodes $mdts $LCTL set_param mdt.*.enable_remote_rename=0
1330         stack_trap "do_nodes $mdts $LCTL \
1331                 set_param mdt.*.enable_remote_rename=1" EXIT
1332
1333         mv $DIR/$tdir.0/$tfile.1 $DIR/$tdir.1 || error "mv $tfile.1 failed"
1334
1335         index=$($LFS getstripe -m $DIR/$tdir.1/$tfile.1)
1336         [ $index -eq 1 ] || error "$tfile.1 is on MDT$index"
1337 }
1338 run_test 24z "cross-MDT rename is done as cp"
1339
1340 test_24A() { # LU-3182
1341         local NFILES=5000
1342
1343         test_mkdir $DIR/$tdir
1344         stack_trap "simple_cleanup_common $NFILES"
1345         createmany -m $DIR/$tdir/$tfile $NFILES
1346         local t=$(ls $DIR/$tdir | wc -l)
1347         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1348         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1349
1350         (( $t == $NFILES && $u == $NFILES && $v == NFILES + 2 )) ||
1351                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1352 }
1353 run_test 24A "readdir() returns correct number of entries."
1354
1355 test_24B() { # LU-4805
1356         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
1357
1358         local count
1359
1360         test_mkdir $DIR/$tdir
1361         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1362                 error "create striped dir failed"
1363
1364         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1365         [ $count -eq 2 ] || error "Expected 2, got $count"
1366
1367         touch $DIR/$tdir/striped_dir/a
1368
1369         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1370         [ $count -eq 3 ] || error "Expected 3, got $count"
1371
1372         touch $DIR/$tdir/striped_dir/.f
1373
1374         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1375         [ $count -eq 4 ] || error "Expected 4, got $count"
1376
1377         rm -rf $DIR/$tdir || error "Can not delete directories"
1378 }
1379 run_test 24B "readdir for striped dir return correct number of entries"
1380
1381 test_24C() {
1382         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
1383
1384         mkdir $DIR/$tdir
1385         mkdir $DIR/$tdir/d0
1386         mkdir $DIR/$tdir/d1
1387
1388         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1389                 error "create striped dir failed"
1390
1391         cd $DIR/$tdir/d0/striped_dir
1392
1393         local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1394         local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1395         local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1396
1397         [ "$d0_ino" = "$parent_ino" ] ||
1398                 error ".. wrong, expect $d0_ino, get $parent_ino"
1399
1400         mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1401                 error "mv striped dir failed"
1402
1403         parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1404
1405         [ "$d1_ino" = "$parent_ino" ] ||
1406                 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1407 }
1408 run_test 24C "check .. in striped dir"
1409
1410 test_24E() {
1411         [[ $MDSCOUNT -lt 4 ]] && skip_env "needs >= 4 MDTs"
1412         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1413
1414         mkdir -p $DIR/$tdir
1415         mkdir $DIR/$tdir/src_dir
1416         $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
1417                 error "create remote source failed"
1418
1419         touch $DIR/$tdir/src_dir/src_child/a
1420
1421         $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
1422                 error "create remote target dir failed"
1423
1424         $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
1425                 error "create remote target child failed"
1426
1427         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
1428                 error "rename dir cross MDT failed!"
1429
1430         find $DIR/$tdir
1431
1432         $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
1433                 error "src_child still exists after rename"
1434
1435         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
1436                 error "missing file(a) after rename"
1437
1438         rm -rf $DIR/$tdir || error "Can not delete directories"
1439 }
1440 run_test 24E "cross MDT rename/link"
1441
1442 test_24F () {
1443         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
1444
1445         local repeats=1000
1446         [ "$SLOW" = "no" ] && repeats=100
1447
1448         mkdir -p $DIR/$tdir
1449
1450         echo "$repeats repeats"
1451         for ((i = 0; i < repeats; i++)); do
1452                 $LFS mkdir -i0 -c2 $DIR/$tdir/test || error "mkdir fails"
1453                 touch $DIR/$tdir/test/a || error "touch fails"
1454                 mkdir $DIR/$tdir/test/b || error "mkdir fails"
1455                 rm -rf $DIR/$tdir/test || error "rmdir fails"
1456         done
1457
1458         true
1459 }
1460 run_test 24F "hash order vs readdir (LU-11330)"
1461
1462 test_24G () {
1463         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
1464
1465         local ino1
1466         local ino2
1467
1468         $LFS mkdir -i 0 $DIR/$tdir-0 || error "mkdir $tdir-0"
1469         $LFS mkdir -i 1 $DIR/$tdir-1 || error "mkdir $tdir-1"
1470         touch $DIR/$tdir-0/f1 || error "touch f1"
1471         ln -s $DIR/$tdir-0/f1 $DIR/$tdir-0/s1 || error "ln s1"
1472         ino1=$(stat -c%i $DIR/$tdir-0/s1)
1473         mv $DIR/$tdir-0/s1 $DIR/$tdir-1 || error "mv s1"
1474         ino2=$(stat -c%i $DIR/$tdir-1/s1)
1475         [ $ino1 -ne $ino2 ] || error "s1 should be migrated"
1476 }
1477 run_test 24G "migrate symlink in rename"
1478
1479 test_24H() {
1480         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
1481         [[ $(hostname) != $(facet_active_host mds2) ]] ||
1482                 skip "MDT1 should be on another node"
1483
1484         test_mkdir -i 1 -c 1 $DIR/$tdir
1485 #define OBD_FAIL_FLD_QUERY_REQ           0x1103
1486         do_facet mds2 $LCTL set_param fail_loc=0x80001103
1487         touch $DIR/$tdir/$tfile || error "touch failed"
1488 }
1489 run_test 24H "repeat FLD_QUERY rpc"
1490
1491 test_25a() {
1492         echo '== symlink sanity ============================================='
1493
1494         test_mkdir $DIR/d25
1495         ln -s d25 $DIR/s25
1496         touch $DIR/s25/foo ||
1497                 error "File creation in symlinked directory failed"
1498 }
1499 run_test 25a "create file in symlinked directory ==============="
1500
1501 test_25b() {
1502         [ ! -d $DIR/d25 ] && test_25a
1503         $CHECKSTAT -t file $DIR/s25/foo || error "$DIR/s25/foo not file type"
1504 }
1505 run_test 25b "lookup file in symlinked directory ==============="
1506
1507 test_26a() {
1508         test_mkdir $DIR/d26
1509         test_mkdir $DIR/d26/d26-2
1510         ln -s d26/d26-2 $DIR/s26
1511         touch $DIR/s26/foo || error "File creation failed"
1512 }
1513 run_test 26a "multiple component symlink ======================="
1514
1515 test_26b() {
1516         test_mkdir -p $DIR/$tdir/d26-2
1517         ln -s $tdir/d26-2/foo $DIR/s26-2
1518         touch $DIR/s26-2 || error "File creation failed"
1519 }
1520 run_test 26b "multiple component symlink at end of lookup ======"
1521
1522 test_26c() {
1523         test_mkdir $DIR/d26.2
1524         touch $DIR/d26.2/foo
1525         ln -s d26.2 $DIR/s26.2-1
1526         ln -s s26.2-1 $DIR/s26.2-2
1527         ln -s s26.2-2 $DIR/s26.2-3
1528         chmod 0666 $DIR/s26.2-3/foo
1529 }
1530 run_test 26c "chain of symlinks"
1531
1532 # recursive symlinks (bug 439)
1533 test_26d() {
1534         ln -s d26-3/foo $DIR/d26-3
1535 }
1536 run_test 26d "create multiple component recursive symlink"
1537
1538 test_26e() {
1539         [ ! -h $DIR/d26-3 ] && test_26d
1540         rm $DIR/d26-3
1541 }
1542 run_test 26e "unlink multiple component recursive symlink"
1543
1544 # recursive symlinks (bug 7022)
1545 test_26f() {
1546         test_mkdir $DIR/$tdir
1547         test_mkdir $DIR/$tdir/$tfile
1548         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1549         test_mkdir -p lndir/bar1
1550         test_mkdir $DIR/$tdir/$tfile/$tfile
1551         cd $tfile                || error "cd $tfile failed"
1552         ln -s .. dotdot          || error "ln dotdot failed"
1553         ln -s dotdot/lndir lndir || error "ln lndir failed"
1554         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1555         output=`ls $tfile/$tfile/lndir/bar1`
1556         [ "$output" = bar1 ] && error "unexpected output"
1557         rm -r $tfile             || error "rm $tfile failed"
1558         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1559 }
1560 run_test 26f "rm -r of a directory which has recursive symlink"
1561
1562 test_27a() {
1563         test_mkdir $DIR/$tdir
1564         $LFS getstripe $DIR/$tdir
1565         $LFS setstripe -c 1 $DIR/$tdir/$tfile || error "setstripe failed"
1566         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1567         cp /etc/hosts $DIR/$tdir/$tfile || error "Can't copy to one stripe file"
1568 }
1569 run_test 27a "one stripe file"
1570
1571 test_27b() {
1572         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1573
1574         test_mkdir $DIR/$tdir
1575         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1576         $LFS getstripe -c $DIR/$tdir/$tfile
1577         [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
1578                 error "two-stripe file doesn't have two stripes"
1579
1580         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1581 }
1582 run_test 27b "create and write to two stripe file"
1583
1584 # 27c family tests specific striping, setstripe -o
1585 test_27ca() {
1586         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test"
1587         test_mkdir -p $DIR/$tdir
1588         local osts="1"
1589
1590         $LFS setstripe -o $osts $DIR/$tdir/$tfile  || error "setstripe failed"
1591         $LFS getstripe -i $DIR/$tdir/$tfile
1592         [ $($LFS getstripe -i $DIR/$tdir/$tfile ) -eq $osts ] ||
1593                 error "stripe not on specified OST"
1594
1595         dd if=/dev/zero of=$DIR/$tdir/$tfile  bs=1M count=4 || error "dd failed"
1596 }
1597 run_test 27ca "one stripe on specified OST"
1598
1599 test_27cb() {
1600         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test"
1601         test_mkdir -p $DIR/$tdir
1602         local osts="1,0"
1603         $LFS setstripe -o $osts $DIR/$tdir/$tfile || error "setstripe failed"
1604         local getstripe=$($LFS getstripe $DIR/$tdir/$tfile)
1605         echo "$getstripe"
1606
1607         # Strip getstripe output to a space separated list of OSTs
1608         local getstripe_osts=$(echo "$getstripe" | sed -e '1,/obdidx/d' |\
1609                 awk '{print $1}' | tr '\n' ' ' | sed -e 's/[[:space:]]*$//')
1610         [ "$getstripe_osts" = "${osts//,/ }" ] ||
1611                 error "stripes not on specified OSTs"
1612
1613         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 || error "dd failed"
1614 }
1615 run_test 27cb "two stripes on specified OSTs"
1616
1617 test_27cc() {
1618         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test"
1619         [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
1620                 skip "server does not support overstriping"
1621
1622         test_mkdir -p $DIR/$tdir
1623         local osts="0,0"
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 27cc "two stripes on the same OST"
1637
1638 test_27cd() {
1639         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test"
1640         [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
1641                 skip "server does not support overstriping"
1642         test_mkdir -p $DIR/$tdir
1643         local osts="0,1,1,0"
1644         $LFS setstripe -o $osts $DIR/$tdir/$tfile || error "setstripe failed"
1645         local getstripe=$($LFS getstripe $DIR/$tdir/$tfile)
1646         echo "$getstripe"
1647
1648         # Strip getstripe output to a space separated list of OSTs
1649         local getstripe_osts=$(echo "$getstripe" | sed -e '1,/obdidx/d' |\
1650                 awk '{print $1}' | tr '\n' ' ' | sed -e 's/[[:space:]]*$//')
1651         [ "$getstripe_osts" = "${osts//,/ }" ] ||
1652                 error "stripes not on specified OSTs"
1653
1654         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 || error "dd failed"
1655 }
1656 run_test 27cd "four stripes on two OSTs"
1657
1658 test_27ce() {
1659         [[ $OSTCOUNT -ge $(($LOV_MAX_STRIPE_COUNT / 2)) ]] &&
1660                 skip_env "too many osts, skipping"
1661         [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
1662                 skip "server does not support overstriping"
1663         # We do one more stripe than we have OSTs
1664         [ $OSTCOUNT -lt 159 ] || large_xattr_enabled ||
1665                 skip_env "ea_inode feature disabled"
1666
1667         test_mkdir -p $DIR/$tdir
1668         local osts=""
1669         for i in $(seq 0 $OSTCOUNT);
1670         do
1671                 osts=$osts"0"
1672                 if [ $i -ne $OSTCOUNT ]; then
1673                         osts=$osts","
1674                 fi
1675         done
1676         $LFS setstripe -o $osts $DIR/$tdir/$tfile || error "setstripe failed"
1677         local getstripe=$($LFS getstripe $DIR/$tdir/$tfile)
1678         echo "$getstripe"
1679
1680         # Strip getstripe output to a space separated list of OSTs
1681         local getstripe_osts=$(echo "$getstripe" | sed -e '1,/obdidx/d' |\
1682                 awk '{print $1}' | tr '\n' ' ' | sed -e 's/[[:space:]]*$//')
1683         [ "$getstripe_osts" = "${osts//,/ }" ] ||
1684                 error "stripes not on specified OSTs"
1685
1686         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 || error "dd failed"
1687 }
1688 run_test 27ce "more stripes than OSTs with -o"
1689
1690 test_27cf() {
1691         local osp_proc="osp.$FSNAME-OST0000-osc-MDT000*.active"
1692         local pid=0
1693
1694         test_mkdir -p $DIR/$tdir || error "failed to mkdir $DIR/$tdir"
1695         do_facet $SINGLEMDS "$LCTL set_param -n $osp_proc=0"
1696         stack_trap "do_facet $SINGLEMDS $LCTL set_param -n $osp_proc=1" EXIT
1697         wait_update_facet $SINGLEMDS "$LCTL get_param -n $osp_proc | grep 1" ||
1698                 error "failed to set $osp_proc=0"
1699
1700         $LFS setstripe -o 0 $DIR/$tdir/$tfile &
1701         pid=$!
1702         sleep 1
1703         do_facet $SINGLEMDS "$LCTL set_param -n $osp_proc=1"
1704         wait_update_facet $SINGLEMDS "$LCTL get_param -n $osp_proc | grep 0" ||
1705                 error "failed to set $osp_proc=1"
1706         wait $pid
1707         [[ $pid -ne 0 ]] ||
1708                 error "should return error due to $osp_proc=0"
1709 }
1710 run_test 27cf "'setstripe -o' on inactive OSTs should return error"
1711
1712 test_27d() {
1713         test_mkdir $DIR/$tdir
1714         $LFS setstripe -c 0 -i -1 -S 0 $DIR/$tdir/$tfile ||
1715                 error "setstripe failed"
1716         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1717         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1718 }
1719 run_test 27d "create file with default settings"
1720
1721 test_27e() {
1722         # LU-5839 adds check for existed layout before setting it
1723         [[ $MDS1_VERSION -lt $(version_code 2.7.56) ]] &&
1724                 skip "Need MDS version at least 2.7.56"
1725
1726         test_mkdir $DIR/$tdir
1727         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1728         $LFS setstripe -c 2 $DIR/$tdir/$tfile && error "setstripe worked twice"
1729         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1730 }
1731 run_test 27e "setstripe existing file (should return error)"
1732
1733 test_27f() {
1734         test_mkdir $DIR/$tdir
1735         $LFS setstripe -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1736                 error "$LFS setstripe $DIR/$tdir/$tfile failed"
1737         $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1738                 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1739         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1740         $LFS getstripe $DIR/$tdir/$tfile || error "$LFS getstripe failed"
1741 }
1742 run_test 27f "setstripe with bad stripe size (should return error)"
1743
1744 test_27g() {
1745         test_mkdir $DIR/$tdir
1746         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1747         $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "no stripe info" ||
1748                 error "$DIR/$tdir/$tfile has object"
1749 }
1750 run_test 27g "$LFS getstripe with no objects"
1751
1752 test_27ga() {
1753         test_mkdir $DIR/$tdir
1754         touch $DIR/$tdir/$tfile || error "touch failed"
1755         ln -s bogus $DIR/$tdir/$tfile.2 || error "ln failed"
1756         $LFS getstripe -m $DIR/$tdir/$tfile $DIR/$tdir/$tfile.2
1757         local rc=$?
1758         (( rc == 2 )) || error "getstripe did not return ENOENT"
1759 }
1760 run_test 27ga "$LFS getstripe with missing file (should return error)"
1761
1762 test_27i() {
1763         test_mkdir $DIR/$tdir
1764         touch $DIR/$tdir/$tfile || error "touch failed"
1765         [[ $($LFS getstripe -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1766                 error "missing objects"
1767 }
1768 run_test 27i "$LFS getstripe with some objects"
1769
1770 test_27j() {
1771         test_mkdir $DIR/$tdir
1772         $LFS setstripe -i $OSTCOUNT $DIR/$tdir/$tfile &&
1773                 error "setstripe failed" || true
1774 }
1775 run_test 27j "setstripe with bad stripe offset (should return error)"
1776
1777 test_27k() { # bug 2844
1778         test_mkdir $DIR/$tdir
1779         local file=$DIR/$tdir/$tfile
1780         local ll_max_blksize=$((4 * 1024 * 1024))
1781         $LFS setstripe -S 67108864 $file || error "setstripe failed"
1782         local blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1783         [ $blksize -le $ll_max_blksize ] || error "1:$blksize > $ll_max_blksize"
1784         dd if=/dev/zero of=$file bs=4k count=1
1785         blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1786         [ $blksize -le $ll_max_blksize ] || error "2:$blksize > $ll_max_blksize"
1787 }
1788 run_test 27k "limit i_blksize for broken user apps"
1789
1790 test_27l() {
1791         mcreate $DIR/$tfile || error "creating file"
1792         $RUNAS $LFS setstripe -c 1 $DIR/$tfile &&
1793                 error "setstripe should have failed" || true
1794 }
1795 run_test 27l "check setstripe permissions (should return error)"
1796
1797 test_27m() {
1798         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1799
1800         [ -n "$RCLIENTS" -o -n "$MOUNT_2" ] &&
1801                 skip_env "multiple clients -- skipping"
1802
1803         ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1804                    head -n1)
1805         if [[ $ORIGFREE -gt $MAXFREE ]]; then
1806                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1807         fi
1808         stack_trap simple_cleanup_common
1809         test_mkdir $DIR/$tdir
1810         $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.1
1811         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=1024 count=$MAXFREE &&
1812                 error "dd should fill OST0"
1813         i=2
1814         while $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.$i; do
1815                 i=$((i + 1))
1816                 [ $i -gt 256 ] && break
1817         done
1818         i=$((i + 1))
1819         touch $DIR/$tdir/$tfile.$i
1820         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1821             awk '{print $1}'| grep -w "0") ] &&
1822                 error "OST0 was full but new created file still use it"
1823         i=$((i + 1))
1824         touch $DIR/$tdir/$tfile.$i
1825         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1826             awk '{print $1}'| grep -w "0") ] &&
1827                 error "OST0 was full but new created file still use it" || true
1828 }
1829 run_test 27m "create file while OST0 was full"
1830
1831 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1832 # if the OST isn't full anymore.
1833 reset_enospc() {
1834         local ostidx=${1:-""}
1835         local delay
1836         local ready
1837         local get_prealloc
1838
1839         local list=$(comma_list $(osts_nodes))
1840         [ "$ostidx" ] && list=$(facet_host ost$((ostidx + 1)))
1841
1842         do_nodes $list lctl set_param fail_loc=0
1843         wait_delete_completed   # initiate all OST_DESTROYs from MDS to OST
1844         delay=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage |
1845                 awk '{print $1 * 2;exit;}')
1846         get_prealloc="$LCTL get_param -n osc.*MDT*.prealloc_status |
1847                         grep -v \"^0$\""
1848         wait_update_facet $SINGLEMDS "$get_prealloc" "" $delay
1849 }
1850
1851 test_27n() {
1852         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1853         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1854         remote_mds_nodsh && skip "remote MDS with nodsh"
1855         remote_ost_nodsh && skip "remote OST with nodsh"
1856
1857         reset_enospc
1858         rm -f $DIR/$tdir/$tfile
1859         exhaust_precreations 0 0x80000215
1860         $LFS setstripe -c -1 $DIR/$tdir || error "setstripe failed"
1861         touch $DIR/$tdir/$tfile || error "touch failed"
1862         $LFS getstripe $DIR/$tdir/$tfile
1863         reset_enospc
1864 }
1865 run_test 27n "create file with some full OSTs"
1866
1867 test_27o() {
1868         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1869         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1870         remote_mds_nodsh && skip "remote MDS with nodsh"
1871         remote_ost_nodsh && skip "remote OST with nodsh"
1872
1873         reset_enospc
1874         rm -f $DIR/$tdir/$tfile
1875         exhaust_all_precreations 0x215
1876
1877         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1878
1879         reset_enospc
1880         rm -rf $DIR/$tdir/*
1881 }
1882 run_test 27o "create file with all full OSTs (should error)"
1883
1884 function create_and_checktime() {
1885         local fname=$1
1886         local loops=$2
1887         local i
1888
1889         for ((i=0; i < $loops; i++)); do
1890                 local start=$SECONDS
1891                 multiop $fname-$i Oc
1892                 ((SECONDS-start < TIMEOUT)) ||
1893                         error "creation took " $((SECONDS-$start)) && return 1
1894         done
1895 }
1896
1897 test_27oo() {
1898         local mdts=$(comma_list $(mdts_nodes))
1899
1900         [ $MDS1_VERSION -lt $(version_code 2.13.57) ] &&
1901                 skip "Need MDS version at least 2.13.57"
1902
1903         local f0=$DIR/${tfile}-0
1904         local f1=$DIR/${tfile}-1
1905
1906         wait_delete_completed
1907
1908         # refill precreated objects
1909         $LFS setstripe -i0 -c1 $f0
1910
1911         saved=$(do_facet mds1 $LCTL get_param -n lov.*0000*.qos_threshold_rr)
1912         # force QoS allocation policy
1913         do_nodes $mdts $LCTL set_param lov.*.qos_threshold_rr=0%
1914         stack_trap "do_nodes $mdts $LCTL set_param \
1915                 lov.*.qos_threshold_rr=$saved" EXIT
1916         sleep_maxage
1917
1918         # one OST is unavailable, but still have few objects preallocated
1919         stop ost1
1920         stack_trap "start ost1 $(ostdevname 1) $OST_MOUNT_OPTS; \
1921                 rm -rf $f1 $DIR/$tdir*" EXIT
1922
1923         for ((i=0; i < 7; i++)); do
1924                 mkdir $DIR/$tdir$i || error "can't create dir"
1925                 $LFS setstripe -c$((OSTCOUNT-1)) $DIR/$tdir$i ||
1926                         error "can't set striping"
1927         done
1928         for ((i=0; i < 7; i++)); do
1929                 create_and_checktime $DIR/$tdir$i/$tfile 100 &
1930         done
1931         wait
1932 }
1933 run_test 27oo "don't let few threads to reserve too many objects"
1934
1935 test_27p() {
1936         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1937         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1938         remote_mds_nodsh && skip "remote MDS with nodsh"
1939         remote_ost_nodsh && skip "remote OST with nodsh"
1940
1941         reset_enospc
1942         rm -f $DIR/$tdir/$tfile
1943         test_mkdir $DIR/$tdir
1944
1945         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1946         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1947         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1948
1949         exhaust_precreations 0 0x80000215
1950         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1951         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1952         $LFS getstripe $DIR/$tdir/$tfile
1953
1954         reset_enospc
1955 }
1956 run_test 27p "append to a truncated file with some full OSTs"
1957
1958 test_27q() {
1959         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1960         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1961         remote_mds_nodsh && skip "remote MDS with nodsh"
1962         remote_ost_nodsh && skip "remote OST with nodsh"
1963
1964         reset_enospc
1965         rm -f $DIR/$tdir/$tfile
1966
1967         mkdir_on_mdt0 $DIR/$tdir
1968         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1969         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||
1970                 error "truncate $DIR/$tdir/$tfile failed"
1971         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1972
1973         exhaust_all_precreations 0x215
1974
1975         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1976         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1977
1978         reset_enospc
1979 }
1980 run_test 27q "append to truncated file with all OSTs full (should error)"
1981
1982 test_27r() {
1983         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1984         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1985         remote_mds_nodsh && skip "remote MDS with nodsh"
1986         remote_ost_nodsh && skip "remote OST with nodsh"
1987
1988         reset_enospc
1989         rm -f $DIR/$tdir/$tfile
1990         exhaust_precreations 0 0x80000215
1991
1992         $LFS setstripe -i 0 -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1993
1994         reset_enospc
1995 }
1996 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1997
1998 test_27s() { # bug 10725
1999         test_mkdir $DIR/$tdir
2000         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
2001         local stripe_count=0
2002         [ $OSTCOUNT -eq 1 ] || stripe_count=2
2003         $LFS setstripe -S $stripe_size -c $stripe_count $DIR/$tdir &&
2004                 error "stripe width >= 2^32 succeeded" || true
2005
2006 }
2007 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
2008
2009 test_27t() { # bug 10864
2010         WDIR=$(pwd)
2011         WLFS=$(which lfs)
2012         cd $DIR
2013         touch $tfile
2014         $WLFS getstripe $tfile
2015         cd $WDIR
2016 }
2017 run_test 27t "check that utils parse path correctly"
2018
2019 test_27u() { # bug 4900
2020         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2021         remote_mds_nodsh && skip "remote MDS with nodsh"
2022
2023         local index
2024         local list=$(comma_list $(mdts_nodes))
2025
2026 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
2027         do_nodes $list $LCTL set_param fail_loc=0x139
2028         test_mkdir -p $DIR/$tdir
2029         stack_trap "simple_cleanup_common 1000"
2030         createmany -o $DIR/$tdir/$tfile 1000
2031         do_nodes $list $LCTL set_param fail_loc=0
2032
2033         TLOG=$TMP/$tfile.getstripe
2034         $LFS getstripe $DIR/$tdir > $TLOG
2035         OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
2036         [[ $OBJS -gt 0 ]] &&
2037                 error "$OBJS objects created on OST-0. See $TLOG" ||
2038                 rm -f $TLOG
2039 }
2040 run_test 27u "skip object creation on OSC w/o objects"
2041
2042 test_27v() { # bug 4900
2043         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2044         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2045         remote_mds_nodsh && skip "remote MDS with nodsh"
2046         remote_ost_nodsh && skip "remote OST with nodsh"
2047
2048         exhaust_all_precreations 0x215
2049         reset_enospc
2050
2051         $LFS setstripe -c 1 $DIR/$tdir         # 1 stripe / file
2052
2053         touch $DIR/$tdir/$tfile
2054         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
2055         # all except ost1
2056         for (( i=1; i < OSTCOUNT; i++ )); do
2057                 do_facet ost$i lctl set_param fail_loc=0x705
2058         done
2059         local START=`date +%s`
2060         createmany -o $DIR/$tdir/$tfile 32
2061
2062         local FINISH=`date +%s`
2063         local TIMEOUT=`lctl get_param -n timeout`
2064         local PROCESS=$((FINISH - START))
2065         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
2066                error "$FINISH - $START >= $TIMEOUT / 2"
2067         sleep $((TIMEOUT / 2 - PROCESS))
2068         reset_enospc
2069 }
2070 run_test 27v "skip object creation on slow OST"
2071
2072 test_27w() { # bug 10997
2073         test_mkdir $DIR/$tdir
2074         $LFS setstripe -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
2075         [ $($LFS getstripe -S $DIR/$tdir/f0) -ne 65536 ] &&
2076                 error "stripe size $size != 65536" || true
2077         [ $($LFS getstripe -d $DIR/$tdir | grep -c "stripe_count") -eq 0 ] &&
2078                 error "$LFS getstripe -d $DIR/$tdir no 'stripe_count'" || true
2079 }
2080 run_test 27w "check $LFS setstripe -S and getstrip -d options"
2081
2082 test_27wa() {
2083         [[ $OSTCOUNT -lt 2 ]] &&
2084                 skip_env "skipping multiple stripe count/offset test"
2085
2086         test_mkdir $DIR/$tdir
2087         for i in $(seq 1 $OSTCOUNT); do
2088                 offset=$((i - 1))
2089                 $LFS setstripe -c $i -i $offset $DIR/$tdir/f$i ||
2090                         error "setstripe -c $i -i $offset failed"
2091                 count=$($LFS getstripe -c $DIR/$tdir/f$i)
2092                 index=$($LFS getstripe -i $DIR/$tdir/f$i)
2093                 [ $count -ne $i ] && error "stripe count $count != $i" || true
2094                 [ $index -ne $offset ] &&
2095                         error "stripe offset $index != $offset" || true
2096         done
2097 }
2098 run_test 27wa "check $LFS setstripe -c -i options"
2099
2100 test_27x() {
2101         remote_ost_nodsh && skip "remote OST with nodsh"
2102         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2103         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2104
2105         OFFSET=$(($OSTCOUNT - 1))
2106         OSTIDX=0
2107         local OST=$(ostname_from_index $OSTIDX)
2108
2109         test_mkdir $DIR/$tdir
2110         $LFS setstripe -c 1 $DIR/$tdir  # 1 stripe per file
2111         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
2112         sleep_maxage
2113         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
2114         for i in $(seq 0 $OFFSET); do
2115                 [ $($LFS getstripe $DIR/$tdir/$tfile$i | grep -A 10 obdidx |
2116                         awk '{print $1}' | grep -w "$OSTIDX") ] &&
2117                 error "OST0 was degraded but new created file still use it"
2118         done
2119         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
2120 }
2121 run_test 27x "create files while OST0 is degraded"
2122
2123 test_27y() {
2124         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2125         remote_mds_nodsh && skip "remote MDS with nodsh"
2126         remote_ost_nodsh && skip "remote OST with nodsh"
2127         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2128
2129         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
2130         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
2131                 osp.$mdtosc.prealloc_last_id)
2132         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
2133                 osp.$mdtosc.prealloc_next_id)
2134         local fcount=$((last_id - next_id))
2135         [[ $fcount -eq 0 ]] && skip "not enough space on OST0"
2136         [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
2137
2138         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
2139                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
2140         local OST_DEACTIVE_IDX=-1
2141         local OSC
2142         local OSTIDX
2143         local OST
2144
2145         for OSC in $MDS_OSCS; do
2146                 OST=$(osc_to_ost $OSC)
2147                 OSTIDX=$(index_from_ostuuid $OST)
2148                 if [ $OST_DEACTIVE_IDX == -1 ]; then
2149                         OST_DEACTIVE_IDX=$OSTIDX
2150                 fi
2151                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
2152                         echo $OSC "is Deactivated:"
2153                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
2154                 fi
2155         done
2156
2157         OSTIDX=$(index_from_ostuuid $OST)
2158         test_mkdir $DIR/$tdir
2159         $LFS setstripe -c 1 $DIR/$tdir      # 1 stripe / file
2160
2161         for OSC in $MDS_OSCS; do
2162                 OST=$(osc_to_ost $OSC)
2163                 OSTIDX=$(index_from_ostuuid $OST)
2164                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
2165                         echo $OST "is degraded:"
2166                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
2167                                                 obdfilter.$OST.degraded=1
2168                 fi
2169         done
2170
2171         sleep_maxage
2172         createmany -o $DIR/$tdir/$tfile $fcount
2173
2174         for OSC in $MDS_OSCS; do
2175                 OST=$(osc_to_ost $OSC)
2176                 OSTIDX=$(index_from_ostuuid $OST)
2177                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
2178                         echo $OST "is recovered from degraded:"
2179                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
2180                                                 obdfilter.$OST.degraded=0
2181                 else
2182                         do_facet $SINGLEMDS lctl --device %$OSC activate
2183                 fi
2184         done
2185
2186         # all osp devices get activated, hence -1 stripe count restored
2187         local stripe_count=0
2188
2189         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
2190         # devices get activated.
2191         sleep_maxage
2192         $LFS setstripe -c -1 $DIR/$tfile
2193         stripe_count=$($LFS getstripe -c $DIR/$tfile)
2194         rm -f $DIR/$tfile
2195         [ $stripe_count -ne $OSTCOUNT ] &&
2196                 error "Of $OSTCOUNT OSTs, only $stripe_count is available"
2197         return 0
2198 }
2199 run_test 27y "create files while OST0 is degraded and the rest inactive"
2200
2201 check_seq_oid()
2202 {
2203         log "check file $1"
2204
2205         lmm_count=$($LFS getstripe -c $1)
2206         lmm_seq=$($LFS getstripe -v $1 | awk '/lmm_seq/ { print $2 }')
2207         lmm_oid=$($LFS getstripe -v $1 | awk '/lmm_object_id/ { print $2 }')
2208
2209         local old_ifs="$IFS"
2210         IFS=$'[:]'
2211         fid=($($LFS path2fid $1))
2212         IFS="$old_ifs"
2213
2214         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
2215         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
2216
2217         # compare lmm_seq and lu_fid->f_seq
2218         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
2219         # compare lmm_object_id and lu_fid->oid
2220         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
2221
2222         # check the trusted.fid attribute of the OST objects of the file
2223         local have_obdidx=false
2224         local stripe_nr=0
2225         $LFS getstripe $1 | while read obdidx oid hex seq; do
2226                 # skip lines up to and including "obdidx"
2227                 [ -z "$obdidx" ] && break
2228                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
2229                 $have_obdidx || continue
2230
2231                 local ost=$((obdidx + 1))
2232                 local dev=$(ostdevname $ost)
2233                 local oid_hex
2234
2235                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
2236
2237                 seq=$(echo $seq | sed -e "s/^0x//g")
2238                 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
2239                         oid_hex=$(echo $oid)
2240                 else
2241                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
2242                 fi
2243                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
2244
2245                 local ff=""
2246                 #
2247                 # Don't unmount/remount the OSTs if we don't need to do that.
2248                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
2249                 # update too, until that use mount/ll_decode_filter_fid/mount.
2250                 # Re-enable when debugfs will understand new filter_fid.
2251                 #
2252                 if [ $(facet_fstype ost$ost) == ldiskfs ]; then
2253                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
2254                                 $dev 2>/dev/null" | grep "parent=")
2255                 fi
2256                 if [ -z "$ff" ]; then
2257                         stop ost$ost
2258                         mount_fstype ost$ost
2259                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
2260                                 $(facet_mntpt ost$ost)/$obj_file)
2261                         unmount_fstype ost$ost
2262                         start ost$ost $dev $OST_MOUNT_OPTS
2263                         clients_up
2264                 fi
2265
2266                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
2267
2268                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
2269
2270                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
2271                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
2272                 #
2273                 # fid: parent=[0x200000400:0x1e:0x0] stripe=1 stripe_count=2 \
2274                 #       stripe_size=1048576 component_id=1 component_start=0 \
2275                 #       component_end=33554432
2276                 local ff_parent=$(sed -e 's/.*parent=.//' <<<$ff)
2277                 local ff_pseq=$(cut -d: -f1 <<<$ff_parent)
2278                 local ff_poid=$(cut -d: -f2 <<<$ff_parent)
2279                 local ff_pstripe
2280                 if grep -q 'stripe=' <<<$ff; then
2281                         ff_pstripe=$(sed -e 's/.*stripe=//' -e 's/ .*//' <<<$ff)
2282                 else
2283                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
2284                         # into f_ver in this case.  See comment on ff_parent.
2285                         ff_pstripe=$(cut -d: -f3 <<<$ff_parent | sed -e 's/]//')
2286                 fi
2287
2288                 # compare lmm_seq and filter_fid->ff_parent.f_seq
2289                 [ $ff_pseq = $lmm_seq ] ||
2290                         error "FF parent SEQ $ff_pseq != $lmm_seq"
2291                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
2292                 [ $ff_poid = $lmm_oid ] ||
2293                         error "FF parent OID $ff_poid != $lmm_oid"
2294                 (($ff_pstripe == $stripe_nr)) ||
2295                         error "FF stripe $ff_pstripe != $stripe_nr"
2296
2297                 stripe_nr=$((stripe_nr + 1))
2298                 [ $CLIENT_VERSION -lt $(version_code 2.9.55) ] &&
2299                         continue
2300                 if grep -q 'stripe_count=' <<<$ff; then
2301                         local ff_scnt=$(sed -e 's/.*stripe_count=//' \
2302                                             -e 's/ .*//' <<<$ff)
2303                         [ $lmm_count = $ff_scnt ] ||
2304                                 error "FF stripe count $lmm_count != $ff_scnt"
2305                 fi
2306         done
2307 }
2308
2309 test_27z() {
2310         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2311         remote_ost_nodsh && skip "remote OST with nodsh"
2312
2313         test_mkdir $DIR/$tdir
2314         $LFS setstripe -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
2315                 { error "setstripe -c -1 failed"; return 1; }
2316         # We need to send a write to every object to get parent FID info set.
2317         # This _should_ also work for setattr, but does not currently.
2318         # touch $DIR/$tdir/$tfile-1 ||
2319         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
2320                 { error "dd $tfile-1 failed"; return 2; }
2321         $LFS setstripe -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
2322                 { error "setstripe -c -1 failed"; return 3; }
2323         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
2324                 { error "dd $tfile-2 failed"; return 4; }
2325
2326         # make sure write RPCs have been sent to OSTs
2327         sync; sleep 5; sync
2328
2329         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
2330         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
2331 }
2332 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
2333
2334 test_27A() { # b=19102
2335         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2336
2337         save_layout_restore_at_exit $MOUNT
2338         $LFS setstripe -c 0 -i -1 -S 0 $MOUNT
2339         wait_update $HOSTNAME "$LFS getstripe -c $MOUNT | sed 's/  *//g'" "1" 20 ||
2340                 error "stripe count $($LFS getstripe -c $MOUNT) != 1"
2341         local default_size=$($LFS getstripe -S $MOUNT)
2342         local default_offset=$($LFS getstripe -i $MOUNT)
2343         local dsize=$(do_facet $SINGLEMDS \
2344                 "$LCTL get_param -n lod.$(facet_svc $SINGLEMDS)*.stripesize")
2345         [ $default_size -eq $dsize ] ||
2346                 error "stripe size $default_size != $dsize"
2347         [ $default_offset -eq -1 ] ||
2348                 error "stripe offset $default_offset != -1"
2349 }
2350 run_test 27A "check filesystem-wide default LOV EA values"
2351
2352 test_27B() { # LU-2523
2353         test_mkdir $DIR/$tdir
2354         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
2355         touch $DIR/$tdir/f0
2356         # open f1 with O_LOV_DELAY_CREATE
2357         # rename f0 onto f1
2358         # call setstripe ioctl on open file descriptor for f1
2359         # close
2360         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
2361                 $DIR/$tdir/f0
2362
2363         rm -f $DIR/$tdir/f1
2364         # open f1 with O_LOV_DELAY_CREATE
2365         # unlink f1
2366         # call setstripe ioctl on open file descriptor for f1
2367         # close
2368         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
2369
2370         # Allow multiop to fail in imitation of NFS's busted semantics.
2371         true
2372 }
2373 run_test 27B "call setstripe on open unlinked file/rename victim"
2374
2375 # 27C family tests full striping and overstriping
2376 test_27Ca() { #LU-2871
2377         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2378
2379         declare -a ost_idx
2380         local index
2381         local found
2382         local i
2383         local j
2384
2385         test_mkdir $DIR/$tdir
2386         cd $DIR/$tdir
2387         for i in $(seq 0 $((OSTCOUNT - 1))); do
2388                 # set stripe across all OSTs starting from OST$i
2389                 $LFS setstripe -i $i -c -1 $tfile$i
2390                 # get striping information
2391                 ost_idx=($($LFS getstripe $tfile$i |
2392                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2393                 echo "OST Index: ${ost_idx[*]}"
2394
2395                 # check the layout
2396                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2397                         error "${#ost_idx[@]} != $OSTCOUNT"
2398
2399                 for index in $(seq 0 $((OSTCOUNT - 1))); do
2400                         found=0
2401                         for j in "${ost_idx[@]}"; do
2402                                 if [ $index -eq $j ]; then
2403                                         found=1
2404                                         break
2405                                 fi
2406                         done
2407                         [ $found = 1 ] ||
2408                                 error "Can not find $index in ${ost_idx[*]}"
2409                 done
2410         done
2411 }
2412 run_test 27Ca "check full striping across all OSTs"
2413
2414 test_27Cb() {
2415         [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
2416                 skip "server does not support overstriping"
2417         [[ $OSTCOUNT -ge $(($LOV_MAX_STRIPE_COUNT / 2)) ]] &&
2418                 skip_env "too many osts, skipping"
2419
2420         test_mkdir -p $DIR/$tdir
2421         local setcount=$(($OSTCOUNT * 2))
2422         [ $setcount -lt 160 ] || large_xattr_enabled ||
2423                 skip_env "ea_inode feature disabled"
2424
2425         $LFS setstripe -C $setcount $DIR/$tdir/$tfile ||
2426                 error "setstripe failed"
2427
2428         local count=$($LFS getstripe -c $DIR/$tdir/$tfile)
2429         [ $count -eq $setcount ] ||
2430                 error "stripe count $count, should be $setcount"
2431
2432         $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "overstriped" ||
2433                 error "overstriped should be set in pattern"
2434
2435         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 conv=notrunc ||
2436                 error "dd failed"
2437 }
2438 run_test 27Cb "more stripes than OSTs with -C"
2439
2440 test_27Cc() {
2441         [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
2442                 skip "server does not support overstriping"
2443         [[ $OSTCOUNT -lt 2 ]] && skip_env "need > 1 OST"
2444
2445         test_mkdir -p $DIR/$tdir
2446         local setcount=$(($OSTCOUNT - 1))
2447
2448         [ $setcount -lt 160 ] || large_xattr_enabled ||
2449                 skip_env "ea_inode feature disabled"
2450
2451         $LFS setstripe -C $setcount $DIR/$tdir/$tfile ||
2452                 error "setstripe failed"
2453
2454         local count=$($LFS getstripe -c $DIR/$tdir/$tfile)
2455         [ $count -eq $setcount ] ||
2456                 error "stripe count $count, should be $setcount"
2457
2458         $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "overstriped" &&
2459                 error "overstriped should not be set in pattern"
2460
2461         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 conv=notrunc ||
2462                 error "dd failed"
2463 }
2464 run_test 27Cc "fewer stripes than OSTs does not set overstriping"
2465
2466 test_27Cd() {
2467         [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
2468                 skip "server does not support overstriping"
2469         [[ $OSTCOUNT -lt 2 ]] && skip_env "need > 1 OST"
2470         large_xattr_enabled || skip_env "ea_inode feature disabled"
2471
2472         test_mkdir -p $DIR/$tdir
2473         local setcount=$LOV_MAX_STRIPE_COUNT
2474
2475         $LFS setstripe -C $setcount $DIR/$tdir/$tfile ||
2476                 error "setstripe failed"
2477
2478         local count=$($LFS getstripe -c $DIR/$tdir/$tfile)
2479         [ $count -eq $setcount ] ||
2480                 error "stripe count $count, should be $setcount"
2481
2482         $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "overstriped" ||
2483                 error "overstriped should be set in pattern"
2484
2485         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 conv=notrunc ||
2486                 error "dd failed"
2487
2488         rm -f $DIR/$tdir/$tfile || error "Delete $tfile failed"
2489 }
2490 run_test 27Cd "test maximum stripe count"
2491
2492 test_27Ce() {
2493         [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
2494                 skip "server does not support overstriping"
2495         test_mkdir -p $DIR/$tdir
2496
2497         pool_add $TESTNAME || error "Pool creation failed"
2498         pool_add_targets $TESTNAME 0 || error "pool_add_targets failed"
2499
2500         local setcount=8
2501
2502         $LFS setstripe  -C $setcount -p "$TESTNAME" $DIR/$tdir/$tfile ||
2503                 error "setstripe failed"
2504
2505         local count=$($LFS getstripe -c $DIR/$tdir/$tfile)
2506         [ $count -eq $setcount ] ||
2507                 error "stripe count $count, should be $setcount"
2508
2509         $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "overstriped" ||
2510                 error "overstriped should be set in pattern"
2511
2512         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 conv=notrunc ||
2513                 error "dd failed"
2514
2515         rm -f $DIR/$tdir/$tfile || error "Delete $tfile failed"
2516 }
2517 run_test 27Ce "test pool with overstriping"
2518
2519 test_27Cf() {
2520         [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
2521                 skip "server does not support overstriping"
2522         [[ $OSTCOUNT -ge $(($LOV_MAX_STRIPE_COUNT / 2)) ]] &&
2523                 skip_env "too many osts, skipping"
2524
2525         test_mkdir -p $DIR/$tdir
2526
2527         local setcount=$(($OSTCOUNT * 2))
2528         [ $setcount -lt 160 ] || large_xattr_enabled ||
2529                 skip_env "ea_inode feature disabled"
2530
2531         $LFS setstripe  -C $setcount $DIR/$tdir/ ||
2532                 error "setstripe failed"
2533
2534         echo 1 > $DIR/$tdir/$tfile
2535
2536         local count=$($LFS getstripe -c $DIR/$tdir/$tfile)
2537         [ $count -eq $setcount ] ||
2538                 error "stripe count $count, should be $setcount"
2539
2540         $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "overstriped" ||
2541                 error "overstriped should be set in pattern"
2542
2543         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 conv=notrunc ||
2544                 error "dd failed"
2545
2546         rm -f $DIR/$tdir/$tfile || error "Delete $tfile failed"
2547 }
2548 run_test 27Cf "test default inheritance with overstriping"
2549
2550 test_27D() {
2551         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
2552         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
2553         remote_mds_nodsh && skip "remote MDS with nodsh"
2554
2555         local POOL=${POOL:-testpool}
2556         local first_ost=0
2557         local last_ost=$(($OSTCOUNT - 1))
2558         local ost_step=1
2559         local ost_list=$(seq $first_ost $ost_step $last_ost)
2560         local ost_range="$first_ost $last_ost $ost_step"
2561
2562         test_mkdir $DIR/$tdir
2563         pool_add $POOL || error "pool_add failed"
2564         pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2565
2566         local skip27D
2567         [ $MDS1_VERSION -lt $(version_code 2.8.55) ] &&
2568                 skip27D+="-s 29"
2569         [ $MDS1_VERSION -lt $(version_code 2.9.55) ] ||
2570                 [ $CLIENT_VERSION -lt $(version_code 2.9.55) ] &&
2571                         skip27D+=" -s 30,31"
2572         [[ ! $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ||
2573           $OSTCOUNT -ge $(($LOV_MAX_STRIPE_COUNT / 2)) ]] &&
2574                 skip27D+=" -s 32,33"
2575         [[ $MDS_VERSION -lt $(version_code $SEL_VER) ]] &&
2576                 skip27D+=" -s 34"
2577         llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT $skip27D ||
2578                 error "llapi_layout_test failed"
2579
2580         destroy_test_pools || error "destroy test pools failed"
2581 }
2582 run_test 27D "validate llapi_layout API"
2583
2584 # Verify that default_easize is increased from its initial value after
2585 # accessing a widely striped file.
2586 test_27E() {
2587         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
2588         [ $CLIENT_VERSION -lt $(version_code 2.5.57) ] &&
2589                 skip "client does not have LU-3338 fix"
2590
2591         # 72 bytes is the minimum space required to store striping
2592         # information for a file striped across one OST:
2593         # (sizeof(struct lov_user_md_v3) +
2594         #  sizeof(struct lov_user_ost_data_v1))
2595         local min_easize=72
2596         $LCTL set_param -n llite.*.default_easize $min_easize ||
2597                 error "lctl set_param failed"
2598         local easize=$($LCTL get_param -n llite.*.default_easize)
2599
2600         [ $easize -eq $min_easize ] ||
2601                 error "failed to set default_easize"
2602
2603         $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2604                 error "setstripe failed"
2605         # In order to ensure stat() call actually talks to MDS we need to
2606         # do something drastic to this file to shake off all lock, e.g.
2607         # rename it (kills lookup lock forcing cache cleaning)
2608         mv $DIR/$tfile $DIR/${tfile}-1
2609         ls -l $DIR/${tfile}-1
2610         rm $DIR/${tfile}-1
2611
2612         easize=$($LCTL get_param -n llite.*.default_easize)
2613
2614         [ $easize -gt $min_easize ] ||
2615                 error "default_easize not updated"
2616 }
2617 run_test 27E "check that default extended attribute size properly increases"
2618
2619 test_27F() { # LU-5346/LU-7975
2620         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2621         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs"
2622         [[ $MDS1_VERSION -lt $(version_code 2.8.51) ]] &&
2623                 skip "Need MDS version at least 2.8.51"
2624         remote_ost_nodsh && skip "remote OST with nodsh"
2625
2626         test_mkdir $DIR/$tdir
2627         rm -f $DIR/$tdir/f0
2628         $LFS setstripe -c 2 $DIR/$tdir
2629
2630         # stop all OSTs to reproduce situation for LU-7975 ticket
2631         for num in $(seq $OSTCOUNT); do
2632                 stop ost$num
2633         done
2634
2635         # open/create f0 with O_LOV_DELAY_CREATE
2636         # truncate f0 to a non-0 size
2637         # close
2638         multiop $DIR/$tdir/f0 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T1050000c
2639
2640         $CHECKSTAT -s 1050000 $DIR/$tdir/f0 || error "checkstat failed"
2641         # open/write it again to force delayed layout creation
2642         cat /etc/hosts > $DIR/$tdir/f0 &
2643         catpid=$!
2644
2645         # restart OSTs
2646         for num in $(seq $OSTCOUNT); do
2647                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
2648                         error "ost$num failed to start"
2649         done
2650
2651         wait $catpid || error "cat failed"
2652
2653         cmp /etc/hosts $DIR/$tdir/f0 || error "cmp failed"
2654         [[ $($LFS getstripe -c $DIR/$tdir/f0) == 2 ]] ||
2655                 error "wrong stripecount"
2656
2657 }
2658 run_test 27F "Client resend delayed layout creation with non-zero size"
2659
2660 test_27G() { #LU-10629
2661         [ $MDS1_VERSION -lt $(version_code 2.11.51) ] &&
2662                 skip "Need MDS version at least 2.11.51"
2663         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
2664         remote_mds_nodsh && skip "remote MDS with nodsh"
2665         local POOL=${POOL:-testpool}
2666         local ostrange="0 0 1"
2667
2668         test_mkdir $DIR/$tdir
2669         touch $DIR/$tdir/$tfile.nopool
2670         pool_add $POOL || error "pool_add failed"
2671         pool_add_targets $POOL $ostrange || error "pool_add_targets failed"
2672         $LFS setstripe -p $POOL $DIR/$tdir
2673
2674         local pool=$($LFS getstripe -p $DIR/$tdir)
2675
2676         [ "$pool" = "$POOL" ] || error "Striping failed got '$pool' not '$POOL'"
2677         touch $DIR/$tdir/$tfile.default
2678         $LFS setstripe -E 1M --pool $POOL -c 1 -E eof -c 1 $DIR/$tdir/$tfile.pfl
2679         $LFS find $DIR/$tdir -type f --pool $POOL
2680         local found=$($LFS find $DIR/$tdir -type f --pool $POOL | wc -l)
2681         [[ "$found" == "2" ]] ||
2682                 error "found $found != 2 files in '$DIR/$tdir' in '$POOL'"
2683
2684         $LFS setstripe -d $DIR/$tdir
2685
2686         pool=$($LFS getstripe -p -d $DIR/$tdir)
2687
2688         [[ "$pool" != "$POOL" ]] || error "$DIR/$tdir is still '$pool'"
2689 }
2690 run_test 27G "Clear OST pool from stripe"
2691
2692 test_27H() {
2693         [[ $MDS1_VERSION -le $(version_code 2.11.54) ]] &&
2694                 skip "Need MDS version newer than 2.11.54"
2695         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
2696         test_mkdir $DIR/$tdir
2697         $LFS setstripe -o 0 -o 2 $DIR/$tdir || error "setstripe failed"
2698         touch $DIR/$tdir/$tfile
2699         $LFS getstripe -c $DIR/$tdir/$tfile
2700         [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
2701                 error "two-stripe file doesn't have two stripes"
2702
2703         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
2704         $LFS getstripe -y $DIR/$tdir/$tfile
2705         (( $($LFS getstripe -y $DIR/$tdir/$tfile |
2706              egrep -c "l_ost_idx: [02]$") == "2" )) ||
2707                 error "expected l_ost_idx: [02]$ not matched"
2708
2709         # make sure ost list has been cleared
2710         local stripesize=$($LFS getstripe -S $DIR/$tdir)
2711         $LFS setstripe -S $((stripesize * 4)) -i 1 \
2712                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
2713         touch $DIR/$tdir/f3
2714         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
2715 }
2716 run_test 27H "Set specific OSTs stripe"
2717
2718 test_27I() {
2719         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2720         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2721         [[ $MDS1_VERSION -gt $(version_code 2.12.52) ]] ||
2722                 skip "Need MDS version newer than 2.12.52"
2723         local pool=$TESTNAME
2724         local ostrange="1 1 1"
2725
2726         save_layout_restore_at_exit $MOUNT
2727         $LFS setstripe -c 2 -i 0 $MOUNT
2728         pool_add $pool || error "pool_add failed"
2729         pool_add_targets $pool $ostrange ||
2730                 error "pool_add_targets failed"
2731         test_mkdir $DIR/$tdir
2732         $LFS setstripe -p $pool $DIR/$tdir
2733         $MULTIOP $DIR/$tdir/$tfile Oc || error "multiop failed"
2734         $LFS getstripe $DIR/$tdir/$tfile
2735 }
2736 run_test 27I "check that root dir striping does not break parent dir one"
2737
2738 test_27J() {
2739         [[ $MDS1_VERSION -le $(version_code 2.12.51) ]] &&
2740                 skip "Need MDS version newer than 2.12.51"
2741
2742         test_mkdir $DIR/$tdir
2743         local uuid1=$(cat /proc/sys/kernel/random/uuid)
2744         local uuid2=$(cat /proc/sys/kernel/random/uuid)
2745
2746         # create foreign file (raw way)
2747         ! $LFS setstripe --flags 0xda08 $DIR/$tdir/$tfile ||
2748                 error "creating $tfile w/ hex flags w/o --foreign should fail"
2749
2750         ! $LFS setstripe --foreign --flags foo \
2751                 --xattr ${uuid1}@${uuid2} $DIR/$tdir/$tfile ||
2752                         error "creating $tfile with '--flags foo' should fail"
2753
2754         ! $LFS setstripe --foreign --flags 0xffffffff \
2755                 --xattr ${uuid1}@${uuid2} $DIR/$tdir/$tfile ||
2756                         error "creating $tfile w/ 0xffffffff flags should fail"
2757
2758         create_foreign_file -f $DIR/$tdir/$tfile -x "${uuid1}@${uuid2}" \
2759                 -t 1 -F 0xda08 || error "create_foreign_file failed"
2760
2761         # verify foreign file (raw way)
2762         parse_foreign_file -f $DIR/$tdir/$tfile |
2763                 grep "lov_foreign_magic: 0x0BD70BD0" ||
2764                 error "$DIR/$tdir/$tfile: invalid LOV EA foreign magic"
2765         parse_foreign_file -f $DIR/$tdir/$tfile | grep "lov_xattr_size: 89" ||
2766                 error "$DIR/$tdir/$tfile: invalid LOV EA foreign size"
2767         parse_foreign_file -f $DIR/$tdir/$tfile |
2768                 grep "lov_foreign_size: 73" ||
2769                 error "$DIR/$tdir/$tfile: invalid LOV EA foreign size"
2770         parse_foreign_file -f $DIR/$tdir/$tfile |
2771                 grep "lov_foreign_type: 1" ||
2772                 error "$DIR/$tdir/$tfile: invalid LOV EA foreign type"
2773         parse_foreign_file -f $DIR/$tdir/$tfile |
2774                 grep "lov_foreign_flags: 0x0000DA08" ||
2775                 error "$DIR/$tdir/$tfile: invalid LOV EA foreign flags"
2776         local lov=$(parse_foreign_file -f $DIR/$tdir/$tfile |
2777                 grep "lov_foreign_value: 0x" |
2778                 sed -e 's/lov_foreign_value: 0x//')
2779         local lov2=$(echo -n "${uuid1}@${uuid2}" | od -A n -t x1 -w160)
2780         [[ $lov = ${lov2// /} ]] ||
2781                 error "$DIR/$tdir/$tfile: invalid LOV EA foreign value"
2782
2783         # create foreign file (lfs + API)
2784         $LFS setstripe --foreign=none --flags 0xda08 \
2785                 -x "${uuid1}@${uuid2}" $DIR/$tdir/${tfile}2 ||
2786                 error "$DIR/$tdir/${tfile}2: create failed"
2787
2788         $LFS getstripe -v $DIR/$tdir/${tfile}2 |
2789                 grep "lfm_magic:.*0x0BD70BD0" ||
2790                 error "$DIR/$tdir/${tfile}2: invalid LOV EA foreign magic"
2791         # lfm_length is LOV EA size - sizeof(lfm_magic) - sizeof(lfm_length)
2792         $LFS getstripe -v $DIR/$tdir/${tfile}2 | grep "lfm_length:.*73" ||
2793                 error "$DIR/$tdir/${tfile}2: invalid LOV EA foreign size"
2794         $LFS getstripe -v $DIR/$tdir/${tfile}2 | grep "lfm_type:.*none" ||
2795                 error "$DIR/$tdir/${tfile}2: invalid LOV EA foreign type"
2796         $LFS getstripe -v $DIR/$tdir/${tfile}2 |
2797                 grep "lfm_flags:.*0x0000DA08" ||
2798                 error "$DIR/$tdir/${tfile}2: invalid LOV EA foreign flags"
2799         $LFS getstripe $DIR/$tdir/${tfile}2 |
2800                 grep "lfm_value:.*${uuid1}@${uuid2}" ||
2801                 error "$DIR/$tdir/${tfile}2: invalid LOV EA foreign value"
2802
2803         # modify striping should fail
2804         $LFS setstripe -c 2 $DIR/$tdir/$tfile &&
2805                 error "$DIR/$tdir/$tfile: setstripe should fail"
2806         $LFS setstripe -c 2 $DIR/$tdir/${tfile}2 &&
2807                 error "$DIR/$tdir/${tfile}2: setstripe should fail"
2808
2809         # R/W should fail
2810         cat $DIR/$tdir/$tfile && error "$DIR/$tdir/$tfile: read should fail"
2811         cat $DIR/$tdir/${tfile}2 &&
2812                 error "$DIR/$tdir/${tfile}2: read should fail"
2813         cat /etc/passwd > $DIR/$tdir/$tfile &&
2814                 error "$DIR/$tdir/$tfile: write should fail"
2815         cat /etc/passwd > $DIR/$tdir/${tfile}2 &&
2816                 error "$DIR/$tdir/${tfile}2: write should fail"
2817
2818         # chmod should work
2819         chmod 222 $DIR/$tdir/$tfile ||
2820                 error "$DIR/$tdir/$tfile: chmod failed"
2821         chmod 222 $DIR/$tdir/${tfile}2 ||
2822                 error "$DIR/$tdir/${tfile}2: chmod failed"
2823
2824         # chown should work
2825         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/$tfile ||
2826                 error "$DIR/$tdir/$tfile: chown failed"
2827         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/${tfile}2 ||
2828                 error "$DIR/$tdir/${tfile}2: chown failed"
2829
2830         # rename should work
2831         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}.new ||
2832                 error "$DIR/$tdir/$tfile: rename of foreign file has failed"
2833         mv $DIR/$tdir/${tfile}2 $DIR/$tdir/${tfile}2.new ||
2834                 error "$DIR/$tdir/${tfile}2: rename of foreign file has failed"
2835
2836         #remove foreign file
2837         rm $DIR/$tdir/${tfile}.new ||
2838                 error "$DIR/$tdir/${tfile}.new: remove of foreign file has failed"
2839         rm $DIR/$tdir/${tfile}2.new ||
2840                 error "$DIR/$tdir/${tfile}2.new: remove of foreign file has failed"
2841 }
2842 run_test 27J "basic ops on file with foreign LOV"
2843
2844 test_27K() {
2845         [[ $MDS1_VERSION -le $(version_code 2.12.49) ]] &&
2846                 skip "Need MDS version newer than 2.12.49"
2847
2848         test_mkdir $DIR/$tdir
2849         local uuid1=$(cat /proc/sys/kernel/random/uuid)
2850         local uuid2=$(cat /proc/sys/kernel/random/uuid)
2851
2852         # create foreign dir (raw way)
2853         ! $LFS setdirstripe --flags 0xda08 $DIR/$tdir/$tdir ||
2854                 error "creating $tdir w/ hex flags w/o --foreign should fail"
2855
2856         ! $LFS setdirstripe --foreign --flags foo \
2857                 --xattr ${uuid1}@${uuid2} $DIR/$tdir/$tdir ||
2858                         error "creating $tdir with '--flags foo' should fail"
2859
2860         ! $LFS setdirstripe --foreign --flags 0xffffffff \
2861                 --xattr ${uuid1}@${uuid2} $DIR/$tdir/$tdir ||
2862                         error "creating $tdir w/ 0xffffffff flags should fail"
2863
2864         create_foreign_dir -d $DIR/$tdir/$tdir -x "${uuid1}@${uuid2}" -t 1 ||
2865                 error "create_foreign_dir FAILED"
2866
2867         # verify foreign dir (raw way)
2868         parse_foreign_dir -d $DIR/$tdir/$tdir |
2869                 grep "lmv_foreign_magic:.*0xcd50cd0" ||
2870                 error "$DIR/$tdir/$tfile: invalid LMV EA magic"
2871         parse_foreign_dir -d $DIR/$tdir/$tdir | grep "lmv_xattr_size:.*89$" ||
2872                 error "$DIR/$tdir/$tdir: invalid LMV EA size"
2873         parse_foreign_dir -d $DIR/$tdir/$tdir | grep "lmv_foreign_type: 1$" ||
2874                 error "$DIR/$tdir/$tdir: invalid LMV EA type"
2875         parse_foreign_dir -d $DIR/$tdir/$tdir |
2876                 grep "lmv_foreign_flags: 55813$" ||
2877                 error "$DIR/$tdir/$tdir: invalid LMV EA flags"
2878         local lmv=$(parse_foreign_dir -d $DIR/$tdir/$tdir |
2879                 grep "lmv_foreign_value: 0x" |
2880                 sed 's/lmv_foreign_value: 0x//')
2881         local lmv2=$(echo -n "${uuid1}@${uuid2}" | od -A n -t x1 -w160 |
2882                 sed 's/ //g')
2883         [[ $lmv == $lmv2 ]] || error "$DIR/$tdir/$tdir: invalid LMV EA value"
2884
2885         # create foreign dir (lfs + API)
2886         $LFS mkdir --foreign=none --xattr="${uuid1}@${uuid2}" --flags=0xda05 \
2887                 $DIR/$tdir/${tdir}2 ||
2888                 error "$DIR/$tdir/${tdir}2: create failed"
2889
2890         $LFS getdirstripe -v $DIR/$tdir/${tdir}2
2891
2892         $LFS getdirstripe -v $DIR/$tdir/${tdir}2 |
2893                 grep "lfm_magic:.*0x0CD50CD0" ||
2894                 error "$DIR/$tdir/${tdir}2: invalid LMV EA magic"
2895         # lfm_length is LMV EA size - sizeof(lfm_magic) - sizeof(lfm_length)
2896         # - sizeof(lfm_type) - sizeof(lfm_flags)
2897         $LFS getdirstripe -v $DIR/$tdir/${tdir}2 | grep "lfm_length:.*73" ||
2898                 error "$DIR/$tdir/${tdir}2: invalid LMV EA size"
2899         $LFS getdirstripe -v $DIR/$tdir/${tdir}2 | grep "lfm_type:.*none" ||
2900                 error "$DIR/$tdir/${tdir}2: invalid LMV EA type"
2901         $LFS getdirstripe -v $DIR/$tdir/${tdir}2 |
2902                 grep "lfm_flags:.*0x0000DA05" ||
2903                 error "$DIR/$tdir/${tdir}2: invalid LMV EA flags"
2904         $LFS getdirstripe $DIR/$tdir/${tdir}2 |
2905                 grep "lfm_value.*${uuid1}@${uuid2}" ||
2906                 error "$DIR/$tdir/${tdir}2: invalid LMV EA value"
2907
2908         # file create in dir should fail
2909         touch $DIR/$tdir/$tdir/$tfile && error "$DIR/$tdir: file create should fail"
2910         touch $DIR/$tdir/${tdir}2/$tfile &&
2911                 error "$DIR/${tdir}2: file create should fail"
2912
2913         # chmod should work
2914         chmod 777 $DIR/$tdir/$tdir ||
2915                 error "$DIR/$tdir: chmod failed"
2916         chmod 777 $DIR/$tdir/${tdir}2 ||
2917                 error "$DIR/${tdir}2: chmod failed"
2918
2919         # chown should work
2920         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/$tdir ||
2921                 error "$DIR/$tdir: chown failed"
2922         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/${tdir}2 ||
2923                 error "$DIR/${tdir}2: chown failed"
2924
2925         # rename should work
2926         mv $DIR/$tdir/$tdir $DIR/$tdir/${tdir}.new ||
2927                 error "$DIR/$tdir/$tdir: rename of foreign dir has failed"
2928         mv $DIR/$tdir/${tdir}2 $DIR/$tdir/${tdir}2.new ||
2929                 error "$DIR/$tdir/${tdir}2: rename of foreign dir has failed"
2930
2931         #remove foreign dir
2932         rmdir $DIR/$tdir/${tdir}.new ||
2933                 error "$DIR/$tdir/${tdir}.new: remove of foreign dir has failed"
2934         rmdir $DIR/$tdir/${tdir}2.new ||
2935                 error "$DIR/$tdir/${tdir}2.new: remove of foreign dir has failed"
2936 }
2937 run_test 27K "basic ops on dir with foreign LMV"
2938
2939 test_27L() {
2940         remote_mds_nodsh && skip "remote MDS with nodsh"
2941
2942         local POOL=${POOL:-$TESTNAME}
2943
2944         pool_add $POOL || error "pool_add failed"
2945
2946         lfs pool_list $MOUNT | grep -Fx "${FSNAME}.${POOL}" ||
2947                  error "pool_list does not contain ${FSNAME}.${POOL}:" \
2948                        "$(lfs pool_list $MOUNT | grep -F "${POOL}")"
2949 }
2950 run_test 27L "lfs pool_list gives correct pool name"
2951
2952 test_27M() {
2953         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.12.57) ]] &&
2954                 skip "Need MDS version >= than 2.12.57"
2955         remote_mds_nodsh && skip "remote MDS with nodsh"
2956         [[ $OSTCOUNT -lt 2 ]] && skip_env "need > 1 OST"
2957
2958         # Set default striping on directory
2959         local setcount=4
2960         local stripe_opt
2961         local mdts=$(comma_list $(mdts_nodes))
2962
2963         # if we run against a 2.12 server which lacks overstring support
2964         # then the connect_flag will not report overstriping, even if client
2965         # is 2.14+
2966         if [[ $($LCTL get_param mdc.*.connect_flags) =~ overstriping ]]; then
2967                 stripe_opt="-C $setcount"
2968         elif (( $OSTCOUNT >= $setcount )); then
2969                 stripe_opt="-c $setcount"
2970         else
2971                 skip "server does not support overstriping"
2972         fi
2973
2974         test_mkdir $DIR/$tdir
2975
2976         # Validate existing append_* params and ensure restore
2977         local pool=$(do_facet mds1 $LCTL get_param -n mdd.$FSNAME-MDT0000.append_pool)
2978         [[ "$pool" == "" ]] || error "expected append_pool == '', got '$pool'"
2979         stack_trap "do_nodes $mdts $LCTL set_param mdd.*.append_pool=none"
2980
2981         local orig_count=$(do_facet mds1 $LCTL get_param -n mdd.$FSNAME-MDT0000.append_stripe_count)
2982         ((orig_count == 1)) || error "expected append_stripe_count == 1, got $orig_count"
2983         stack_trap "do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=1"
2984
2985         $LFS setstripe $stripe_opt $DIR/$tdir
2986
2987         echo 1 > $DIR/$tdir/${tfile}.1
2988         local count=$($LFS getstripe -c $DIR/$tdir/${tfile}.1)
2989         [ $count -eq $setcount ] ||
2990                 error "(1) stripe count $count, should be $setcount"
2991
2992         local appendcount=$orig_count
2993         echo 1 >> $DIR/$tdir/${tfile}.2_append
2994         count=$($LFS getstripe -c $DIR/$tdir/${tfile}.2_append)
2995         [ $count -eq $appendcount ] ||
2996                 error "(2)stripe count $count, should be $appendcount for append"
2997
2998         # Disable O_APPEND striping, verify it works
2999         do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=0
3000
3001         # Should now get the default striping, which is 4
3002         setcount=4
3003         echo 1 >> $DIR/$tdir/${tfile}.3_append
3004         count=$($LFS getstripe -c $DIR/$tdir/${tfile}.3_append)
3005         [ $count -eq $setcount ] ||
3006                 error "(3) stripe count $count, should be $setcount"
3007
3008         # Try changing the stripe count for append files
3009         do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=2
3010
3011         # Append striping is now 2 (directory default is still 4)
3012         appendcount=2
3013         echo 1 >> $DIR/$tdir/${tfile}.4_append
3014         count=$($LFS getstripe -c $DIR/$tdir/${tfile}.4_append)
3015         [ $count -eq $appendcount ] ||
3016                 error "(4) stripe count $count, should be $appendcount for append"
3017
3018         # Test append stripe count of -1
3019         do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=-1
3020         appendcount=$OSTCOUNT
3021         echo 1 >> $DIR/$tdir/${tfile}.5
3022         count=$($LFS getstripe -c $DIR/$tdir/${tfile}.5)
3023         [ $count -eq $appendcount ] ||
3024                 error "(5) stripe count $count, should be $appendcount for append"
3025
3026         # Set append striping back to default of 1
3027         do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=1
3028
3029         # Try a new default striping, PFL + DOM
3030         $LFS setstripe -L mdt -E 1M -E -1 -c 2 $DIR/$tdir
3031
3032         # Create normal DOM file, DOM returns stripe count == 0
3033         setcount=0
3034         touch $DIR/$tdir/${tfile}.6
3035         count=$($LFS getstripe -c $DIR/$tdir/${tfile}.6)
3036         [ $count -eq $setcount ] ||
3037                 error "(6) stripe count $count, should be $setcount"
3038
3039         # Show
3040         appendcount=1
3041         echo 1 >> $DIR/$tdir/${tfile}.7_append
3042         count=$($LFS getstripe -c $DIR/$tdir/${tfile}.7_append)
3043         [ $count -eq $appendcount ] ||
3044                 error "(7) stripe count $count, should be $appendcount for append"
3045
3046         # Clean up DOM layout
3047         $LFS setstripe -d $DIR/$tdir
3048
3049         save_layout_restore_at_exit $MOUNT
3050         # Now test that append striping works when layout is from root
3051         $LFS setstripe -c 2 $MOUNT
3052         # Make a special directory for this
3053         mkdir $DIR/${tdir}/${tdir}.2
3054
3055         # Verify for normal file
3056         setcount=2
3057         echo 1 > $DIR/${tdir}/${tdir}.2/${tfile}.8
3058         count=$($LFS getstripe -c $DIR/$tdir/${tdir}.2/${tfile}.8)
3059         [ $count -eq $setcount ] ||
3060                 error "(8) stripe count $count, should be $setcount"
3061
3062         appendcount=1
3063         echo 1 >> $DIR/${tdir}/${tdir}.2/${tfile}.9_append
3064         count=$($LFS getstripe -c $DIR/${tdir}/${tdir}.2/${tfile}.9_append)
3065         [ $count -eq $appendcount ] ||
3066                 error "(9) stripe count $count, should be $appendcount for append"
3067
3068         # Now test O_APPEND striping with pools
3069         pool_add $TESTNAME || error "pool creation failed"
3070         pool_add_targets $TESTNAME 0 1 || error "Pool add targets failed"
3071         do_nodes $mdts $LCTL set_param mdd.*.append_pool="$TESTNAME"
3072
3073         echo 1 >> $DIR/$tdir/${tfile}.10_append
3074
3075         pool=$($LFS getstripe -p $DIR/$tdir/${tfile}.10_append)
3076         [ "$pool" = "$TESTNAME" ] || error "(10) incorrect pool: $pool"
3077
3078         # Check that count is still correct
3079         appendcount=1
3080         echo 1 >> $DIR/$tdir/${tfile}.11_append
3081         count=$($LFS getstripe -c $DIR/$tdir/${tfile}.11_append)
3082         [ $count -eq $appendcount ] ||
3083                 error "(11) stripe count $count, should be $appendcount for append"
3084
3085         # Disable O_APPEND stripe count, verify pool works separately
3086         do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=0
3087
3088         echo 1 >> $DIR/$tdir/${tfile}.12_append
3089
3090         pool=$($LFS getstripe -p $DIR/$tdir/${tfile}.12_append)
3091         [ "$pool" = "$TESTNAME" ] || error "(12) incorrect pool: $pool"
3092
3093         # Remove pool setting, verify it's not applied
3094         do_nodes $mdts $LCTL set_param mdd.*.append_pool='none'
3095
3096         echo 1 >> $DIR/$tdir/${tfile}.13_append
3097
3098         pool=$($LFS getstripe -p $DIR/$tdir/${tfile}.13_append)
3099         [ "$pool" = "" ] || error "(13) pool found: $pool"
3100 }
3101 run_test 27M "test O_APPEND striping"
3102
3103 test_27N() {
3104         combined_mgs_mds && skip "needs separate MGS/MDT"
3105
3106         pool_add $TESTNAME || error "pool_add failed"
3107         do_facet mgs "$LCTL pool_list $FSNAME" |
3108                 grep -Fx "${FSNAME}.${TESTNAME}" ||
3109                 error "lctl pool_list on MGS failed"
3110 }
3111 run_test 27N "lctl pool_list on separate MGS gives correct pool name"
3112
3113 clean_foreign_symlink() {
3114         trap 0
3115         lctl set_param llite/$FSNAME-*/foreign_symlink_enable=0
3116         for i in $DIR/$tdir/* ; do
3117                 $LFS unlink_foreign $i || true
3118         done
3119 }
3120
3121 test_27O() {
3122         [[ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.12.51) ]] &&
3123                 skip "Need MDS version newer than 2.12.51"
3124
3125         test_mkdir $DIR/$tdir
3126         local uuid1=$(cat /proc/sys/kernel/random/uuid)
3127         local uuid2=$(cat /proc/sys/kernel/random/uuid)
3128
3129         trap clean_foreign_symlink EXIT
3130
3131         # enable foreign_symlink behaviour
3132         $LCTL set_param llite/$FSNAME-*/foreign_symlink_enable=1
3133
3134         # foreign symlink LOV format is a partial path by default
3135
3136         # create foreign file (lfs + API)
3137         $LFS setstripe --foreign=symlink --flags 0xda05 \
3138                 -x "${uuid1}/${uuid2}" --mode 0600 $DIR/$tdir/${tfile} ||
3139                 error "$DIR/$tdir/${tfile}: create failed"
3140
3141         $LFS getstripe -v $DIR/$tdir/${tfile} |
3142                 grep "lfm_magic:.*0x0BD70BD0" ||
3143                 error "$DIR/$tdir/${tfile}: invalid LOV EA foreign magic"
3144         $LFS getstripe -v $DIR/$tdir/${tfile} | grep "lfm_type:.*symlink" ||
3145                 error "$DIR/$tdir/${tfile}: invalid LOV EA foreign type"
3146         $LFS getstripe -v $DIR/$tdir/${tfile} |
3147                 grep "lfm_flags:.*0x0000DA05" ||
3148                 error "$DIR/$tdir/${tfile}: invalid LOV EA foreign flags"
3149         $LFS getstripe $DIR/$tdir/${tfile} |
3150                 grep "lfm_value:.*${uuid1}/${uuid2}" ||
3151                 error "$DIR/$tdir/${tfile}: invalid LOV EA foreign value"
3152
3153         # modify striping should fail
3154         $LFS setstripe -c 2 $DIR/$tdir/$tfile &&
3155                 error "$DIR/$tdir/$tfile: setstripe should fail"
3156
3157         # R/W should fail ("/{foreign_symlink_prefix}/${uuid1}/" missing)
3158         cat $DIR/$tdir/$tfile && error "$DIR/$tdir/$tfile: read should fail"
3159         cat /etc/passwd > $DIR/$tdir/$tfile &&
3160                 error "$DIR/$tdir/$tfile: write should fail"
3161
3162         # rename should succeed
3163         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}.new ||
3164                 error "$DIR/$tdir/$tfile: rename has failed"
3165
3166         #remove foreign_symlink file should fail
3167         rm $DIR/$tdir/${tfile}.new &&
3168                 error "$DIR/$tdir/${tfile}.new: remove of foreign_symlink file should fail"
3169
3170         #test fake symlink
3171         mkdir /tmp/${uuid1} ||
3172                 error "/tmp/${uuid1}: mkdir has failed"
3173         echo FOOFOO > /tmp/${uuid1}/${uuid2} ||
3174                 error "/tmp/${uuid1}/${uuid2}: echo has failed"
3175         $LCTL set_param llite/$FSNAME-*/foreign_symlink_prefix=/tmp/
3176         $CHECKSTAT -t link -l /tmp/${uuid1}/${uuid2} $DIR/$tdir/${tfile}.new ||
3177                 error "$DIR/$tdir/${tfile}.new: not seen as a symlink"
3178         #read should succeed now
3179         cat $DIR/$tdir/${tfile}.new | grep FOOFOO ||
3180                 error "$DIR/$tdir/${tfile}.new: symlink resolution has failed"
3181         #write should succeed now
3182         cat /etc/passwd > $DIR/$tdir/${tfile}.new ||
3183                 error "$DIR/$tdir/${tfile}.new: write should succeed"
3184         diff /etc/passwd $DIR/$tdir/${tfile}.new ||
3185                 error "$DIR/$tdir/${tfile}.new: diff has failed"
3186         diff /etc/passwd /tmp/${uuid1}/${uuid2} ||
3187                 error "/tmp/${uuid1}/${uuid2}: diff has failed"
3188
3189         #check that getstripe still works
3190         $LFS getstripe $DIR/$tdir/${tfile}.new ||
3191                 error "$DIR/$tdir/${tfile}.new: getstripe should still work with foreign_symlink enabled"
3192
3193         # chmod should still succeed
3194         chmod 644 $DIR/$tdir/${tfile}.new ||
3195                 error "$DIR/$tdir/${tfile}.new: chmod has failed"
3196
3197         # chown should still succeed
3198         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/${tfile}.new ||
3199                 error "$DIR/$tdir/${tfile}.new: chown has failed"
3200
3201         # rename should still succeed
3202         mv $DIR/$tdir/${tfile}.new $DIR/$tdir/${tfile} ||
3203                 error "$DIR/$tdir/${tfile}.new: rename has failed"
3204
3205         #remove foreign_symlink file should still fail
3206         rm $DIR/$tdir/${tfile} &&
3207                 error "$DIR/$tdir/${tfile}: remove of foreign_symlink file should fail"
3208
3209         #use special ioctl() to unlink foreign_symlink file
3210         $LFS unlink_foreign $DIR/$tdir/${tfile} ||
3211                 error "$DIR/$tdir/$tfile: unlink/ioctl failed"
3212
3213 }
3214 run_test 27O "basic ops on foreign file of symlink type"
3215
3216 test_27P() {
3217         [[ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.12.49) ]] &&
3218                 skip "Need MDS version newer than 2.12.49"
3219
3220         test_mkdir $DIR/$tdir
3221         local uuid1=$(cat /proc/sys/kernel/random/uuid)
3222         local uuid2=$(cat /proc/sys/kernel/random/uuid)
3223
3224         trap clean_foreign_symlink EXIT
3225
3226         # enable foreign_symlink behaviour
3227         $LCTL set_param llite/$FSNAME-*/foreign_symlink_enable=1
3228
3229         # foreign symlink LMV format is a partial path by default
3230
3231         # create foreign dir (lfs + API)
3232         $LFS mkdir --foreign=symlink --xattr="${uuid1}/${uuid2}" \
3233                 --flags=0xda05 --mode 0750 $DIR/$tdir/${tdir} ||
3234                 error "$DIR/$tdir/${tdir}: create failed"
3235
3236         $LFS getdirstripe -v $DIR/$tdir/${tdir}
3237
3238         $LFS getdirstripe -v $DIR/$tdir/${tdir} |
3239                 grep "lfm_magic:.*0x0CD50CD0" ||
3240                 error "$DIR/$tdir/${tdir}: invalid LMV EA magic"
3241         $LFS getdirstripe -v $DIR/$tdir/${tdir} | grep "lfm_type:.*symlink" ||
3242                 error "$DIR/$tdir/${tdir}: invalid LMV EA type"
3243         $LFS getdirstripe -v $DIR/$tdir/${tdir} |
3244                 grep "lfm_flags:.*0x0000DA05" ||
3245                 error "$DIR/$tdir/${tdir}: invalid LMV EA flags"
3246         $LFS getdirstripe $DIR/$tdir/${tdir} |
3247                 grep "lfm_value.*${uuid1}/${uuid2}" ||
3248                 error "$DIR/$tdir/${tdir}: invalid LMV EA value"
3249
3250         # file create in dir should fail
3251         # ("/{foreign_symlink_prefix}/${uuid1}/${uuid2}/" missing)
3252         touch $DIR/$tdir/$tdir/$tfile && error "$DIR/$tdir: file create should fail"
3253
3254         # rename should succeed
3255         mv $DIR/$tdir/$tdir $DIR/$tdir/${tdir}.new ||
3256                 error "$DIR/$tdir/$tdir: rename of foreign_symlink dir has failed"
3257
3258         #remove foreign_symlink dir should fail
3259         rmdir $DIR/$tdir/${tdir}.new &&
3260                 error "$DIR/$tdir/${tdir}.new: remove of foreign_symlink dir should fail"
3261
3262         #test fake symlink
3263         mkdir -p /tmp/${uuid1}/${uuid2} ||
3264                 error "/tmp/${uuid1}/${uuid2}: mkdir has failed"
3265         echo FOOFOO > /tmp/${uuid1}/${uuid2}/foo ||
3266                 error "/tmp/${uuid1}/${uuid2}/foo: echo has failed"
3267         $LCTL set_param llite/$FSNAME-*/foreign_symlink_prefix=/tmp/
3268         $CHECKSTAT -t link -l /tmp/${uuid1}/${uuid2} $DIR/$tdir/${tdir}.new ||
3269                 error "$DIR/$tdir/${tdir}.new: not seen as a symlink"
3270         cat $DIR/$tdir/${tdir}.new/foo | grep FOOFOO ||
3271                 error "$DIR/$tdir/${tdir}.new: symlink resolution has failed"
3272
3273         #check that getstripe fails now that foreign_symlink enabled
3274         $LFS getdirstripe $DIR/$tdir/${tdir}.new ||
3275                 error "$DIR/$tdir/${tdir}.new: getdirstripe should still work with foreign_symlink enabled"
3276
3277         # file create in dir should work now
3278         cp /etc/passwd $DIR/$tdir/${tdir}.new/$tfile ||
3279                 error "$DIR/$tdir/${tdir}.new/$tfile: file create should fail"
3280         diff /etc/passwd $DIR/$tdir/${tdir}.new/$tfile ||
3281                 error "$DIR/$tdir/${tdir}.new/$tfile: diff has failed"
3282         diff /etc/passwd /tmp/${uuid1}/${uuid2}/$tfile ||
3283                 error "/tmp/${uuid1}/${uuid2}/$tfile: diff has failed"
3284
3285         # chmod should still succeed
3286         chmod 755 $DIR/$tdir/${tdir}.new ||
3287                 error "$DIR/$tdir/${tdir}.new: chmod has failed"
3288
3289         # chown should still succeed
3290         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/${tdir}.new ||
3291                 error "$DIR/$tdir/${tdir}.new: chown has failed"
3292
3293         # rename should still succeed
3294         mv $DIR/$tdir/${tdir}.new $DIR/$tdir/${tdir} ||
3295                 error "$DIR/$tdir/${tdir}.new: rename of foreign_symlink dir has failed"
3296
3297         #remove foreign_symlink dir should still fail
3298         rmdir $DIR/$tdir/${tdir} &&
3299                 error "$DIR/$tdir/${tdir}: remove of foreign_symlink dir should fail"
3300
3301         #use special ioctl() to unlink foreign_symlink file
3302         $LFS unlink_foreign $DIR/$tdir/${tdir} ||
3303                 error "$DIR/$tdir/$tdir: unlink/ioctl failed"
3304
3305         #created file should still exist
3306         [[ -f /tmp/${uuid1}/${uuid2}/$tfile ]] ||
3307                 error "/tmp/${uuid1}/${uuid2}/$tfile has been removed"
3308         diff /etc/passwd /tmp/${uuid1}/${uuid2}/$tfile ||
3309                 error "/tmp/${uuid1}/${uuid2}/$tfile: diff has failed"
3310 }
3311 run_test 27P "basic ops on foreign dir of foreign_symlink type"
3312
3313 test_27Q() {
3314         rm -f $TMP/$tfile $TMP/$tfile.loop $TMP/$tfile.none $TMP/$tfile.broken
3315         stack_trap "rm -f $TMP/$tfile*"
3316
3317         test_mkdir $DIR/$tdir-1
3318         test_mkdir $DIR/$tdir-2
3319
3320         echo 'It is what it is' > $DIR/$tdir-1/$tfile
3321         lov_getstripe_old $DIR/$tdir-1/$tfile || error "$DIR/$tdir-1/$tfile: rc = $?"
3322
3323         ln -s $DIR/$tdir-1/$tfile $DIR/$tdir-2/$tfile
3324         lov_getstripe_old $DIR/$tdir-2/$tfile || error "$DIR/$tdir-2/$tfile: rc = $?"
3325
3326         ln -s $DIR/$tdir-1/$tfile $TMP/$tfile
3327         lov_getstripe_old $TMP/$tfile || error "$TMP/$tfile: rc = $?"
3328
3329         # Create some bad symlinks and ensure that we don't loop
3330         # forever or something. These should return ELOOP (40) and
3331         # ENOENT (2) but I don't want to test for that because there's
3332         # always some weirdo architecture that needs to ruin
3333         # everything by defining these error numbers differently.
3334
3335         ln -s $TMP/$tfile.loop $TMP/$tfile.loop
3336         lov_getstripe_old $TMP/$tfile.loop && error "$TMP/$tfile.loop: rc = $?"
3337
3338         ln -s $TMP/$tfile.none $TMP/$tfile.broken
3339         lov_getstripe_old $TMP/$tfile.broken && error "$TMP/$tfile.broken: rc = $?"
3340
3341         return 0
3342 }
3343 run_test 27Q "llapi_file_get_stripe() works on symlinks"
3344
3345 test_27R() {
3346         (( $MDS1_VERSION >= $(version_code 2.14.55) )) ||
3347                 skip "need MDS 2.14.55 or later"
3348         (( $OSTCOUNT >= 2 )) || skip_env "needs at least 2 OSTs"
3349
3350         local testdir="$DIR/$tdir"
3351         test_mkdir -p $testdir
3352         stack_trap "rm -rf $testdir"
3353         $LFS setstripe -c -1 $testdir || error "setstripe failed"
3354
3355         local f1="$testdir/f1"
3356         touch $f1 || error "failed to touch $f1"
3357         local count=$($LFS getstripe -c $f1)
3358         (( $count == $OSTCOUNT )) || error "wrong stripe count"
3359
3360         do_facet $SINGLEMDS $LCTL set_param lod.*.max_stripecount=-1
3361         (( $? == 34 )) || error "setting max_stripecount to -1 should fail and return ERANGE"
3362
3363         local maxcount=$(($OSTCOUNT - 1))
3364         local mdts=$(comma_list $(mdts_nodes))
3365         do_nodes $mdts $LCTL set_param lod.*.max_stripecount=$maxcount
3366         stack_trap "do_nodes $mdts $LCTL set_param lod.*.max_stripecount=0"
3367
3368         local f2="$testdir/f2"
3369         touch $f2 || error "failed to touch $f2"
3370         local count=$($LFS getstripe -c $f2)
3371         (( $count == $maxcount )) || error "wrong stripe count"
3372 }
3373 run_test 27R "test max_stripecount limitation when stripe count is set to -1"
3374
3375 test_27T() {
3376         [ $(facet_host client) == $(facet_host ost1) ] &&
3377                 skip "need ost1 and client on different nodes"
3378
3379 #define OBD_FAIL_OSC_NO_GRANT            0x411
3380         $LCTL set_param fail_loc=0x20000411 fail_val=1
3381 #define OBD_FAIL_OST_ENOSPC              0x215
3382         do_facet ost1 "$LCTL set_param fail_loc=0x80000215"
3383         $LFS setstripe -i 0 -c 1 $DIR/$tfile
3384         $MULTIOP $DIR/$tfile oO_WRONLY:P$((4 * 1024 * 1024 + 10 * 4096))c ||
3385                 error "multiop failed"
3386 }
3387 run_test 27T "no eio on close on partial write due to enosp"
3388
3389 test_27U() {
3390         local dir=$DIR/$tdir
3391         local file=$dir/$tfile
3392         local append_pool=${TESTNAME}-append
3393         local normal_pool=${TESTNAME}-normal
3394         local pool
3395         local stripe_count
3396         local stripe_count2
3397         local mdts=$(comma_list $(mdts_nodes))
3398
3399         # FIMXE
3400         # (( $MDS1_VERSION >= $(version_code 2.15.42) )) ||
3401         #       skip "Need MDS version at least 2.15.42"
3402
3403         # Validate existing append_* params and ensure restore
3404         pool=$(do_facet mds1 $LCTL get_param -n mdd.$FSNAME-MDT0000.append_pool)
3405         [[ "$pool" == "" ]] || error "expected append_pool == '', got '$pool'"
3406         stack_trap "do_nodes $mdts $LCTL set_param mdd.*.append_pool=none"
3407
3408         stripe_count=$(do_facet mds1 $LCTL get_param -n mdd.$FSNAME-MDT0000.append_stripe_count)
3409         ((stripe_count == 1)) || error "expected append_stripe_count != 0, got $stripe_count"
3410         stack_trap "do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=$stripe_count"
3411
3412         pool_add $append_pool || error "pool creation failed"
3413         pool_add_targets $append_pool 0 1 || error "Pool add targets failed"
3414
3415         pool_add $normal_pool || error "pool creation failed"
3416         pool_add_targets $normal_pool 0 1 || error "Pool add targets failed"
3417
3418         test_mkdir $dir
3419         $LFS setstripe -E 1M -c 1 -p $normal_pool -E 2M -c 2 -p $normal_pool -E eof -c -1 $dir
3420
3421         echo XXX >> $file.1
3422         $LFS getstripe $file.1
3423
3424         pool=$($LFS getstripe -p $file.1)
3425         [[ "$pool" == "$normal_pool" ]] || error "got pool '$pool', expected '$normal_pool'"
3426
3427         stripe_count2=$($LFS getstripe -c $file.1)
3428         ((stripe_count2 == stripe_count)) ||
3429                 error "got stripe_count '$stripe_count2', expected '$stripe_count'"
3430
3431         do_nodes $mdts $LCTL set_param mdd.*.append_pool=$append_pool
3432
3433         echo XXX >> $file.2
3434         $LFS getstripe $file.2
3435
3436         pool=$($LFS getstripe -p $file.2)
3437         [[ "$pool" == "$append_pool" ]] || error "got pool '$pool', expected '$append_pool'"
3438
3439         do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=2
3440
3441         echo XXX >> $file.3
3442         $LFS getstripe $file.3
3443
3444         stripe_count2=$($LFS getstripe -c $file.3)
3445         ((stripe_count2 == 2)) || error "got stripe_count '$stripe_count2', expected 2"
3446 }
3447 run_test 27U "append pool and stripe count work with composite default layout"
3448
3449 # createtest also checks that device nodes are created and
3450 # then visible correctly (#2091)
3451 test_28() { # bug 2091
3452         test_mkdir $DIR/d28
3453         $CREATETEST $DIR/d28/ct || error "createtest failed"
3454 }
3455 run_test 28 "create/mknod/mkdir with bad file types ============"
3456
3457 test_29() {
3458         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3459
3460         [ $MDS1_VERSION -ge $(version_code 2.14.51) ] && {
3461                 disable_opencache
3462                 stack_trap "restore_opencache"
3463         }
3464
3465         sync; sleep 1; sync # flush out any dirty pages from previous tests
3466         cancel_lru_locks
3467         test_mkdir $DIR/d29
3468         touch $DIR/d29/foo
3469         log 'first d29'
3470         ls -l $DIR/d29
3471
3472         declare -i LOCKCOUNTORIG=0
3473         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
3474                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
3475         done
3476         [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
3477
3478         declare -i LOCKUNUSEDCOUNTORIG=0
3479         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
3480                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
3481         done
3482
3483         log 'second d29'
3484         ls -l $DIR/d29
3485         log 'done'
3486
3487         declare -i LOCKCOUNTCURRENT=0
3488         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
3489                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
3490         done
3491
3492         declare -i LOCKUNUSEDCOUNTCURRENT=0
3493         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
3494                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
3495         done
3496
3497         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
3498                 $LCTL set_param -n ldlm.dump_namespaces ""
3499                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
3500                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
3501                 log "dumped log to $TMP/test_29.dk (bug 5793)"
3502                 return 2
3503         fi
3504         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
3505                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
3506                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
3507                 log "dumped log to $TMP/test_29.dk (bug 5793)"
3508                 return 3
3509         fi
3510 }
3511 run_test 29 "IT_GETATTR regression  ============================"
3512
3513 test_30a() { # was test_30
3514         cp $(which ls) $DIR || cp /bin/ls $DIR
3515         $DIR/ls / || error "Can't execute binary from lustre"
3516         rm $DIR/ls
3517 }
3518 run_test 30a "execute binary from Lustre (execve) =============="
3519
3520 test_30b() {
3521         cp `which ls` $DIR || cp /bin/ls $DIR
3522         chmod go+rx $DIR/ls
3523         $RUNAS $DIR/ls / || error "Can't execute binary from lustre as non-root"
3524         rm $DIR/ls
3525 }
3526 run_test 30b "execute binary from Lustre as non-root ==========="
3527
3528 test_30c() { # b=22376
3529         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3530
3531         cp $(which ls) $DIR || cp /bin/ls $DIR
3532         chmod a-rw $DIR/ls
3533         cancel_lru_locks mdc
3534         cancel_lru_locks osc
3535         $RUNAS $DIR/ls / || error "Can't execute binary from lustre"
3536         rm -f $DIR/ls
3537 }
3538 run_test 30c "execute binary from Lustre without read perms ===="
3539
3540 test_30d() {
3541         cp $(which dd) $DIR || error "failed to copy dd to $DIR/dd"
3542
3543         for i in {1..10}; do
3544                 $DIR/dd bs=1M count=128 if=/dev/zero of=$DIR/$tfile &
3545                 local PID=$!
3546                 sleep 1
3547                 $LCTL set_param ldlm.namespaces.*MDT*.lru_size=clear
3548                 wait $PID || error "executing dd from Lustre failed"
3549                 rm -f $DIR/$tfile
3550         done
3551
3552         rm -f $DIR/dd
3553 }
3554 run_test 30d "execute binary from Lustre while clear locks"
3555
3556 test_31a() {
3557         $OPENUNLINK $DIR/f31 $DIR/f31 || error "openunlink failed"
3558         $CHECKSTAT -a $DIR/f31 || error "$DIR/f31 exists"
3559 }
3560 run_test 31a "open-unlink file =================================="
3561
3562 test_31b() {
3563         touch $DIR/f31 || error "touch $DIR/f31 failed"
3564         ln $DIR/f31 $DIR/f31b || error "ln failed"
3565         $MULTIOP $DIR/f31b Ouc || error "multiop failed"
3566         $CHECKSTAT -t file $DIR/f31 || error "$DIR/f31 not file type"
3567 }
3568 run_test 31b "unlink file with multiple links while open ======="
3569
3570 test_31c() {
3571         touch $DIR/f31 || error "touch $DIR/f31 failed"
3572         ln $DIR/f31 $DIR/f31c || error "ln failed"
3573         multiop_bg_pause $DIR/f31 O_uc ||
3574                 error "multiop_bg_pause for $DIR/f31 failed"
3575         MULTIPID=$!
3576         $MULTIOP $DIR/f31c Ouc
3577         kill -USR1 $MULTIPID
3578         wait $MULTIPID
3579 }
3580 run_test 31c "open-unlink file with multiple links ============="
3581
3582 test_31d() {
3583         opendirunlink $DIR/d31d $DIR/d31d || error "opendirunlink failed"
3584         $CHECKSTAT -a $DIR/d31d || error "$DIR/d31d exists"
3585 }
3586 run_test 31d "remove of open directory ========================="
3587
3588 test_31e() { # bug 2904
3589         openfilleddirunlink $DIR/d31e || error "openfilleddirunlink failed"
3590 }
3591 run_test 31e "remove of open non-empty directory ==============="
3592
3593 test_31f() { # bug 4554
3594         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3595
3596         set -vx
3597         test_mkdir $DIR/d31f
3598         $LFS setstripe -S 1048576 -c 1 $DIR/d31f
3599         cp /etc/hosts $DIR/d31f
3600         ls -l $DIR/d31f
3601         $LFS getstripe $DIR/d31f/hosts
3602         multiop_bg_pause $DIR/d31f D_c || return 1
3603         MULTIPID=$!
3604
3605         rm -rv $DIR/d31f || error "first of $DIR/d31f"
3606         test_mkdir $DIR/d31f
3607         $LFS setstripe -S 1048576 -c 1 $DIR/d31f
3608         cp /etc/hosts $DIR/d31f
3609         ls -l $DIR/d31f
3610         $LFS getstripe $DIR/d31f/hosts
3611         multiop_bg_pause $DIR/d31f D_c || return 1
3612         MULTIPID2=$!
3613
3614         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
3615         wait $MULTIPID || error "first opendir $MULTIPID failed"
3616
3617         sleep 6
3618
3619         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
3620         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
3621         set +vx
3622 }
3623 run_test 31f "remove of open directory with open-unlink file ==="
3624
3625 test_31g() {
3626         echo "-- cross directory link --"
3627         test_mkdir -c1 $DIR/${tdir}ga
3628         test_mkdir -c1 $DIR/${tdir}gb
3629         touch $DIR/${tdir}ga/f
3630         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
3631         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
3632         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
3633         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
3634         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
3635 }
3636 run_test 31g "cross directory link==============="
3637
3638 test_31h() {
3639         echo "-- cross directory link --"
3640         test_mkdir -c1 $DIR/${tdir}
3641         test_mkdir -c1 $DIR/${tdir}/dir
3642         touch $DIR/${tdir}/f
3643         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
3644         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
3645         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
3646         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
3647         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
3648 }
3649 run_test 31h "cross directory link under child==============="
3650
3651 test_31i() {
3652         echo "-- cross directory link --"
3653         test_mkdir -c1 $DIR/$tdir
3654         test_mkdir -c1 $DIR/$tdir/dir
3655         touch $DIR/$tdir/dir/f
3656         ln $DIR/$tdir/dir/f $DIR/$tdir/g
3657         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
3658         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
3659         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
3660         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
3661 }
3662 run_test 31i "cross directory link under parent==============="
3663
3664 test_31j() {
3665         test_mkdir -c1 -p $DIR/$tdir
3666         test_mkdir -c1 -p $DIR/$tdir/dir1
3667         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
3668         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
3669         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
3670         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
3671         return 0
3672 }
3673 run_test 31j "link for directory==============="
3674
3675 test_31k() {
3676         test_mkdir -c1 -p $DIR/$tdir
3677         touch $DIR/$tdir/s
3678         touch $DIR/$tdir/exist
3679         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
3680         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
3681         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
3682         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
3683         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
3684         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
3685         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
3686         return 0
3687 }
3688 run_test 31k "link to file: the same, non-existing, dir==============="
3689
3690 test_31m() {
3691         mkdir $DIR/d31m
3692         touch $DIR/d31m/s
3693         mkdir $DIR/d31m2
3694         touch $DIR/d31m2/exist
3695         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
3696         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
3697         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
3698         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
3699         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
3700         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
3701         return 0
3702 }
3703 run_test 31m "link to file: the same, non-existing, dir==============="
3704
3705 test_31n() {
3706         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
3707         nlink=$(stat --format=%h $DIR/$tfile)
3708         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
3709         local fd=$(free_fd)
3710         local cmd="exec $fd<$DIR/$tfile"
3711         eval $cmd
3712         cmd="exec $fd<&-"
3713         trap "eval $cmd" EXIT
3714         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
3715         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
3716         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
3717         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
3718         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
3719         eval $cmd
3720 }
3721 run_test 31n "check link count of unlinked file"
3722
3723 link_one() {
3724         local tempfile=$(mktemp $1_XXXXXX)
3725         mlink $tempfile $1 2> /dev/null &&
3726                 echo "$BASHPID: link $tempfile to $1 succeeded"
3727         munlink $tempfile
3728 }
3729
3730 test_31o() { # LU-2901
3731         test_mkdir $DIR/$tdir
3732         for LOOP in $(seq 100); do
3733                 rm -f $DIR/$tdir/$tfile*
3734                 for THREAD in $(seq 8); do
3735                         link_one $DIR/$tdir/$tfile.$LOOP &
3736                 done
3737                 wait
3738                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
3739                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
3740                         error "$LINKS duplicate links to $tfile.$LOOP" &&
3741                         break || true
3742         done
3743 }
3744 run_test 31o "duplicate hard links with same filename"
3745
3746 test_31p() {
3747         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3748
3749         test_mkdir $DIR/$tdir
3750         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3751         $LFS setdirstripe -D -c2 -H all_char $DIR/$tdir/striped_dir
3752
3753         opendirunlink $DIR/$tdir/striped_dir/test1 ||
3754                 error "open unlink test1 failed"
3755         opendirunlink $DIR/$tdir/striped_dir/test2 ||
3756                 error "open unlink test2 failed"
3757
3758         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
3759                 error "test1 still exists"
3760         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
3761                 error "test2 still exists"
3762 }
3763 run_test 31p "remove of open striped directory"
3764
3765 test_31q() {
3766         [ $MDSCOUNT -lt 3 ] && skip_env "needs >= 3 MDTs"
3767
3768         $LFS mkdir -i 3,1 $DIR/$tdir || error "mkdir failed"
3769         index=$($LFS getdirstripe -i $DIR/$tdir)
3770         [ $index -eq 3 ] || error "first stripe index $index != 3"
3771         index=$($LFS getdirstripe $DIR/$tdir | tail -1 | awk '{print $1}')
3772         [ $index -eq 1 ] || error "second stripe index $index != 1"
3773
3774         # when "-c <stripe_count>" is set, the number of MDTs specified after
3775         # "-i" should equal to the stripe count
3776         $LFS mkdir -i 3,1 -c 3 $DIR/$tdir.2 && error "mkdir should fail" || true
3777 }
3778 run_test 31q "create striped directory on specific MDTs"
3779
3780 #LU-14949
3781 test_31r() {
3782         touch $DIR/$tfile.target
3783         touch $DIR/$tfile.source
3784
3785         #OBD_FAIL_LLITE_OPEN_DELAY 0x1419
3786         $LCTL set_param fail_loc=0x1419 fail_val=3
3787         cat $DIR/$tfile.target &
3788         CATPID=$!
3789
3790         # Guarantee open is waiting before we get here
3791         sleep 1
3792         mv $DIR/$tfile.source $DIR/$tfile.target
3793
3794         wait $CATPID
3795         RC=$?
3796         if [[ $RC -ne 0 ]]; then
3797                 error "open with cat failed, rc=$RC"
3798         fi
3799 }
3800 run_test 31r "open-rename(replace) race"
3801
3802 cleanup_test32_mount() {
3803         local rc=0
3804         trap 0
3805         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$//p')
3806         $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
3807         losetup -d $loopdev || true
3808         rm -rf $DIR/$tdir
3809         return $rc
3810 }
3811
3812 test_32a() {
3813         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3814
3815         echo "== more mountpoints and symlinks ================="
3816         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
3817         trap cleanup_test32_mount EXIT
3818         test_mkdir -p $DIR/$tdir/ext2-mountpoint
3819         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3820                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3821         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. ||
3822                 error "$DIR/$tdir/ext2-mountpoint/.. not dir type"
3823         cleanup_test32_mount
3824 }
3825 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
3826
3827 test_32b() {
3828         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3829
3830         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
3831         trap cleanup_test32_mount EXIT
3832         test_mkdir -p $DIR/$tdir/ext2-mountpoint
3833         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3834                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3835         ls -al $DIR/$tdir/ext2-mountpoint/.. ||
3836                 error "Can't list $DIR/$tdir/ext2-mountpoint/.."
3837         cleanup_test32_mount
3838 }
3839 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
3840
3841 test_32c() {
3842         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3843
3844         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
3845         trap cleanup_test32_mount EXIT
3846         test_mkdir -p $DIR/$tdir/ext2-mountpoint
3847         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3848                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3849         test_mkdir -p $DIR/$tdir/d2/test_dir
3850         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
3851                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_dir not dir type"
3852         cleanup_test32_mount
3853 }
3854 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
3855
3856 test_32d() {
3857         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3858
3859         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
3860         trap cleanup_test32_mount EXIT
3861         test_mkdir -p $DIR/$tdir/ext2-mountpoint
3862         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3863                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3864         test_mkdir -p $DIR/$tdir/d2/test_dir
3865         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
3866                 error "Can't list $DIR/$tdir/ext2-mountpoint/../d2/test_dir"
3867         cleanup_test32_mount
3868 }
3869 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir"
3870
3871 test_32e() {
3872         rm -fr $DIR/$tdir
3873         test_mkdir -p $DIR/$tdir/tmp
3874         local tmp_dir=$DIR/$tdir/tmp
3875         ln -s $DIR/$tdir $tmp_dir/symlink11
3876         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
3877         $CHECKSTAT -t link $DIR/$tdir/tmp/symlink11 || error "symlink11 bad"
3878         $CHECKSTAT -t link $DIR/$tdir/symlink01 || error "symlink01 bad"
3879 }
3880 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir"
3881
3882 test_32f() {
3883         rm -fr $DIR/$tdir
3884         test_mkdir -p $DIR/$tdir/tmp
3885         local tmp_dir=$DIR/$tdir/tmp
3886         ln -s $DIR/$tdir $tmp_dir/symlink11
3887         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
3888         ls $DIR/$tdir/tmp/symlink11  || error "symlink11 bad"
3889         ls $DIR/$tdir/symlink01 || error "symlink01 bad"
3890 }
3891 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir"
3892
3893 test_32g() {
3894         local tmp_dir=$DIR/$tdir/tmp
3895         test_mkdir -p $tmp_dir
3896         test_mkdir $DIR/${tdir}2
3897         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
3898         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
3899         $CHECKSTAT -t link $tmp_dir/symlink12 || error "symlink12 not a link"
3900         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error "symlink02 not a link"
3901         $CHECKSTAT -t dir -f $tmp_dir/symlink12 || error "symlink12 not a dir"
3902         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error "symlink12 not a dir"
3903 }
3904 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
3905
3906 test_32h() {
3907         rm -fr $DIR/$tdir $DIR/${tdir}2
3908         tmp_dir=$DIR/$tdir/tmp
3909         test_mkdir -p $tmp_dir
3910         test_mkdir $DIR/${tdir}2
3911         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
3912         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
3913         ls $tmp_dir/symlink12 || error "listing symlink12"
3914         ls $DIR/$tdir/symlink02  || error "listing symlink02"
3915 }
3916 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
3917
3918 test_32i() {
3919         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3920
3921         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
3922         trap cleanup_test32_mount EXIT
3923         test_mkdir -p $DIR/$tdir/ext2-mountpoint
3924         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3925                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3926         touch $DIR/$tdir/test_file
3927         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file ||
3928                 error "$DIR/$tdir/ext2-mountpoint/../test_file not file type"
3929         cleanup_test32_mount
3930 }
3931 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
3932
3933 test_32j() {
3934         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3935
3936         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
3937         trap cleanup_test32_mount EXIT
3938         test_mkdir -p $DIR/$tdir/ext2-mountpoint
3939         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3940                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3941         touch $DIR/$tdir/test_file
3942         cat $DIR/$tdir/ext2-mountpoint/../test_file ||
3943                 error "Can't open $DIR/$tdir/ext2-mountpoint/../test_file"
3944         cleanup_test32_mount
3945 }
3946 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
3947
3948 test_32k() {
3949         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3950
3951         rm -fr $DIR/$tdir
3952         trap cleanup_test32_mount EXIT
3953         test_mkdir -p $DIR/$tdir/ext2-mountpoint
3954         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3955                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3956         test_mkdir -p $DIR/$tdir/d2
3957         touch $DIR/$tdir/d2/test_file || error "touch failed"
3958         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
3959                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_file not file type"
3960         cleanup_test32_mount
3961 }
3962 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
3963
3964 test_32l() {
3965         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3966
3967         rm -fr $DIR/$tdir
3968         trap cleanup_test32_mount EXIT
3969         test_mkdir -p $DIR/$tdir/ext2-mountpoint
3970         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3971                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3972         test_mkdir -p $DIR/$tdir/d2
3973         touch $DIR/$tdir/d2/test_file || error "touch failed"
3974         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
3975                 error "Can't open $DIR/$tdir/ext2-mountpoint/../d2/test_file"
3976         cleanup_test32_mount
3977 }
3978 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
3979
3980 test_32m() {
3981         rm -fr $DIR/d32m
3982         test_mkdir -p $DIR/d32m/tmp
3983         TMP_DIR=$DIR/d32m/tmp
3984         ln -s $DIR $TMP_DIR/symlink11
3985         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
3986         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 ||
3987                 error "symlink11 not a link"
3988         $CHECKSTAT -t link $DIR/d32m/symlink01 ||
3989                 error "symlink01 not a link"
3990 }
3991 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
3992
3993 test_32n() {
3994         rm -fr $DIR/d32n
3995         test_mkdir -p $DIR/d32n/tmp
3996         TMP_DIR=$DIR/d32n/tmp
3997         ln -s $DIR $TMP_DIR/symlink11
3998         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
3999         ls -l $DIR/d32n/tmp/symlink11  || error "listing symlink11"
4000         ls -l $DIR/d32n/symlink01 || error "listing symlink01"
4001 }
4002 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
4003
4004 test_32o() {
4005         touch $DIR/$tfile
4006         test_mkdir -p $DIR/d32o/tmp
4007         TMP_DIR=$DIR/d32o/tmp
4008         ln -s $DIR/$tfile $TMP_DIR/symlink12
4009         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
4010         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 ||
4011                 error "symlink12 not a link"
4012         $CHECKSTAT -t link $DIR/d32o/symlink02 || error "symlink02 not a link"
4013         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 ||
4014                 error "$DIR/d32o/tmp/symlink12 not file type"
4015         $CHECKSTAT -t file -f $DIR/d32o/symlink02 ||
4016                 error "$DIR/d32o/symlink02 not file type"
4017 }
4018 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
4019
4020 test_32p() {
4021         log 32p_1
4022         rm -fr $DIR/d32p
4023         log 32p_2
4024         rm -f $DIR/$tfile
4025         log 32p_3
4026         touch $DIR/$tfile
4027         log 32p_4
4028         test_mkdir -p $DIR/d32p/tmp
4029         log 32p_5
4030         TMP_DIR=$DIR/d32p/tmp
4031         log 32p_6
4032         ln -s $DIR/$tfile $TMP_DIR/symlink12
4033         log 32p_7
4034         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
4035         log 32p_8
4036         cat $DIR/d32p/tmp/symlink12 ||
4037                 error "Can't open $DIR/d32p/tmp/symlink12"
4038         log 32p_9
4039         cat $DIR/d32p/symlink02 || error "Can't open $DIR/d32p/symlink02"
4040         log 32p_10
4041 }
4042 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
4043
4044 test_32q() {
4045         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4046
4047         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
4048         trap cleanup_test32_mount EXIT
4049         test_mkdir -p $DIR/$tdir/ext2-mountpoint
4050         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
4051         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
4052                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
4053         ls $DIR/$tdir/ext2-mountpoint | grep "\<under_the_mount\>" && error
4054         cleanup_test32_mount
4055 }
4056 run_test 32q "stat follows mountpoints in Lustre (should return error)"
4057
4058 test_32r() {
4059         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4060
4061         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
4062         trap cleanup_test32_mount EXIT
4063         test_mkdir -p $DIR/$tdir/ext2-mountpoint
4064         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
4065         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
4066                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
4067         ls $DIR/$tdir/ext2-mountpoint | grep -q under_the_mount && error || true
4068         cleanup_test32_mount
4069 }
4070 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
4071
4072 test_33aa() {
4073         rm -f $DIR/$tfile
4074         touch $DIR/$tfile
4075         chmod 444 $DIR/$tfile
4076         chown $RUNAS_ID $DIR/$tfile
4077         log 33_1
4078         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
4079         log 33_2
4080 }
4081 run_test 33aa "write file with mode 444 (should return error)"
4082
4083 test_33a() {
4084         rm -fr $DIR/$tdir
4085         test_mkdir $DIR/$tdir
4086         chown $RUNAS_ID $DIR/$tdir
4087         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile ||
4088                 error "$RUNAS create $tdir/$tfile failed"
4089         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile &&
4090                 error "open RDWR" || true
4091 }
4092 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
4093
4094 test_33b() {
4095         rm -fr $DIR/$tdir
4096         test_mkdir $DIR/$tdir
4097         chown $RUNAS_ID $DIR/$tdir
4098         $RUNAS $OPENFILE -f 1286739555 $DIR/$tdir/$tfile || true
4099 }
4100 run_test 33b "test open file with malformed flags (No panic)"
4101
4102 test_33c() {
4103         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4104         remote_ost_nodsh && skip "remote OST with nodsh"
4105
4106         local ostnum
4107         local ostname
4108         local write_bytes
4109         local all_zeros
4110
4111         all_zeros=true
4112         test_mkdir $DIR/$tdir
4113         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
4114
4115         sync
4116         for ostnum in $(seq $OSTCOUNT); do
4117                 # test-framework's OST numbering is one-based, while Lustre's
4118                 # is zero-based
4119                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
4120                 # check if at least some write_bytes stats are counted
4121                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
4122                               obdfilter.$ostname.stats |
4123                               awk '/^write_bytes/ {print $7}' )
4124                 echo "baseline_write_bytes@ost$ostnum/$ostname=$write_bytes"
4125                 if (( ${write_bytes:-0} > 0 )); then
4126                         all_zeros=false
4127                         break
4128                 fi
4129         done
4130
4131         $all_zeros || return 0
4132
4133         # Write four bytes
4134         echo foo > $DIR/$tdir/bar
4135         # Really write them
4136         sync
4137
4138         # Total up write_bytes after writing.  We'd better find non-zeros.
4139         for ostnum in $(seq $OSTCOUNT); do
4140                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
4141                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
4142                               obdfilter/$ostname/stats |
4143                               awk '/^write_bytes/ {print $7}' )
4144                 echo "write_bytes@ost$ostnum/$ostname=$write_bytes"
4145                 if (( ${write_bytes:-0} > 0 )); then
4146                         all_zeros=false
4147                         break
4148                 fi
4149         done
4150
4151         if $all_zeros; then
4152                 for ostnum in $(seq $OSTCOUNT); do
4153                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
4154                         echo "Check write_bytes is in obdfilter.*.stats:"
4155                         do_facet ost$ostnum lctl get_param -n \
4156                                 obdfilter.$ostname.stats
4157                 done
4158                 error "OST not keeping write_bytes stats (b=22312)"
4159         fi
4160 }
4161 run_test 33c "test write_bytes stats"
4162
4163 test_33d() {
4164         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
4165         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4166
4167         local MDTIDX=1
4168         local remote_dir=$DIR/$tdir/remote_dir
4169
4170         test_mkdir $DIR/$tdir
4171         $LFS mkdir -i $MDTIDX $remote_dir ||
4172                 error "create remote directory failed"
4173
4174         touch $remote_dir/$tfile
4175         chmod 444 $remote_dir/$tfile
4176         chown $RUNAS_ID $remote_dir/$tfile
4177
4178         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
4179
4180         chown $RUNAS_ID $remote_dir
4181         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
4182                                         error "create" || true
4183         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
4184                                     error "open RDWR" || true
4185         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
4186 }
4187 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
4188
4189 test_33e() {
4190         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
4191
4192         mkdir $DIR/$tdir
4193
4194         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
4195         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
4196         mkdir $DIR/$tdir/local_dir
4197
4198         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
4199         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
4200         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
4201
4202         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
4203                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
4204
4205         rmdir $DIR/$tdir/* || error "rmdir failed"
4206
4207         umask 777
4208         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
4209         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
4210         mkdir $DIR/$tdir/local_dir
4211
4212         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
4213         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
4214         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
4215
4216         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
4217                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
4218
4219         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
4220
4221         umask 000
4222         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
4223         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
4224         mkdir $DIR/$tdir/local_dir
4225
4226         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
4227         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
4228         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
4229
4230         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
4231                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
4232 }
4233 run_test 33e "mkdir and striped directory should have same mode"
4234
4235 cleanup_33f() {
4236         trap 0
4237         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
4238 }
4239
4240 test_33f() {
4241         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
4242         remote_mds_nodsh && skip "remote MDS with nodsh"
4243
4244         mkdir $DIR/$tdir
4245         chmod go+rwx $DIR/$tdir
4246         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
4247         trap cleanup_33f EXIT
4248
4249         $RUNAS lfs mkdir -i 0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
4250                 error "cannot create striped directory"
4251
4252         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
4253                 error "cannot create files in striped directory"
4254
4255         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
4256                 error "cannot remove files in striped directory"
4257
4258         $RUNAS rmdir $DIR/$tdir/striped_dir ||
4259                 error "cannot remove striped directory"
4260
4261         cleanup_33f
4262 }
4263 run_test 33f "nonroot user can create, access, and remove a striped directory"
4264
4265 test_33g() {
4266         mkdir -p $DIR/$tdir/dir2
4267
4268         local err=$($RUNAS mkdir $DIR/$tdir/dir2 2>&1)
4269         echo $err
4270         [[ $err =~ "exists" ]] || error "Not exists error"
4271 }
4272 run_test 33g "nonroot user create already existing root created file"
4273
4274 sub_33h() {
4275         local hash_type=$1
4276         local count=250
4277
4278         test_mkdir -c $MDSCOUNT -H $hash_type $DIR/$tdir ||
4279                 error "lfs mkdir -H $hash_type $tdir failed"
4280         touch $DIR/$tdir/$tfile || error "touch $tfile failed"
4281
4282         local index=$($LFS getstripe -m $DIR/$tdir/$tfile)
4283         local index2
4284         local fname
4285
4286         for fname in $DIR/$tdir/$tfile.bak \
4287                      $DIR/$tdir/$tfile.SAV \
4288                      $DIR/$tdir/$tfile.orig \
4289                      $DIR/$tdir/$tfile~; do
4290                 touch $fname || error "touch $fname failed"
4291                 index2=$($LFS getstripe -m $fname)
4292                 (( $index == $index2 )) ||
4293                         error "$fname MDT index mismatch $index != $index2"
4294         done
4295
4296         local failed=0
4297         local patterns=(".$tfile.XXXXXX" "$tfile.XXXXXXXX")
4298         local pattern
4299
4300         for pattern in ${patterns[*]}; do
4301                 echo "pattern $pattern"
4302                 fname=$DIR/$tdir/$pattern
4303                 for (( i = 0; i < $count; i++ )); do
4304                         fname=$(mktemp $DIR/$tdir/$pattern) ||
4305                                 error "mktemp $DIR/$tdir/$pattern failed"
4306                         index2=$($LFS getstripe -m $fname)
4307                         (( $index == $index2 )) && continue
4308
4309                         failed=$((failed + 1))
4310                         echo "$fname MDT index mismatch $index != $index2"
4311                 done
4312         done
4313
4314         echo "$failed/$count MDT index mismatches, expect ~2-4"
4315         (( failed < 10 )) || error "MDT index mismatch $failed/$count times"
4316
4317         local same=0
4318         local expect
4319
4320         # verify that "crush" is still broken with all files on same MDT,
4321         # crush2 should have about 1/MDSCOUNT files on each MDT, with margin
4322         [[ "$hash_type" == "crush" ]] && expect=$count ||
4323                 expect=$((count / MDSCOUNT))
4324
4325         # crush2 doesn't put all-numeric suffixes on the same MDT,
4326         # filename like $tfile.12345678 should *not* be considered temp
4327         for pattern in ${patterns[*]}; do
4328                 local base=${pattern%%X*}
4329                 local suff=${pattern#$base}
4330
4331                 echo "pattern $pattern"
4332                 for (( i = 0; i < $count; i++ )); do
4333                         fname=$DIR/$tdir/$base$((${suff//X/1} + i))
4334                         touch $fname || error "touch $fname failed"
4335                         index2=$($LFS getstripe -m $fname)
4336                         (( $index != $index2 )) && continue
4337
4338                         same=$((same + 1))
4339                 done
4340         done
4341
4342         echo "$((same/${#patterns[*]}))/$count matches, expect ~$expect for $1"
4343         (( same / ${#patterns[*]} < expect * 5 / 4 &&
4344            same / ${#patterns[*]} > expect * 4 / 5 )) ||
4345                 error "MDT index match $((same / ${#patterns[*]}))/$count times"
4346         same=0
4347
4348         # crush2 doesn't put suffixes with special characters on the same MDT
4349         # filename like $tfile.txt.1234 should *not* be considered temp
4350         for pattern in ${patterns[*]}; do
4351                 local base=${pattern%%X*}
4352                 local suff=${pattern#$base}
4353
4354                 pattern=$base...${suff/XXX}
4355                 echo "pattern=$pattern"
4356                 for (( i = 0; i < $count; i++ )); do
4357                         fname=$(mktemp $DIR/$tdir/$pattern) ||
4358                                 error "touch $fname failed"
4359                         index2=$($LFS getstripe -m $fname)
4360                         (( $index != $index2 )) && continue
4361
4362                         same=$((same + 1))
4363                 done
4364         done
4365
4366         echo "$((same/${#patterns[*]}))/$count matches, expect ~$expect for $1"
4367         (( same / ${#patterns[*]} < expect * 5 / 4 &&
4368            same / ${#patterns[*]} > expect * 4 / 5 )) ||
4369                 error "MDT index match $((same / ${#patterns[*]}))/$count times"
4370 }
4371
4372 test_33h() {
4373         (( $MDSCOUNT >= 2 )) || skip "needs >= 2 MDTs"
4374         (( $MDS1_VERSION >= $(version_code 2.13.50) )) ||
4375                 skip "Need MDS version at least 2.13.50"
4376
4377         sub_33h crush
4378 }
4379 run_test 33h "temp file is located on the same MDT as target (crush)"
4380
4381 test_33hh() {
4382         (( $MDSCOUNT >= 2 )) || skip "needs >= 2 MDTs"
4383         echo "MDS1_VERSION=$MDS1_VERSION version_code=$(version_code 2.15.0)"
4384         (( $MDS1_VERSION > $(version_code 2.15.0) )) ||
4385                 skip "Need MDS version at least 2.15.0 for crush2"
4386
4387         sub_33h crush2
4388 }
4389 run_test 33hh "temp file is located on the same MDT as target (crush2)"
4390
4391 test_33i()
4392 {
4393         (( MDSCOUNT < 2 )) && skip "needs >= 2 MDTs"
4394
4395         local FNAME=$(str_repeat 'f' 250)
4396
4397         test_mkdir -i 0 -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
4398         createmany -o $DIR/$tdir/$FNAME 1000 || error "createmany failed"
4399
4400         local count
4401         local total
4402
4403         count=$($LFS getstripe -m $DIR/$tdir/* | grep -cw 1)
4404
4405         local MDC=$(lctl dl | awk '/MDT0001-mdc-[^M]/ { print $4 }')
4406
4407         lctl --device %$MDC deactivate
4408         stack_trap "lctl --device %$MDC activate"
4409         ls $DIR/$tdir > /dev/null && error "ls should return an error"
4410         total=$(\ls -l $DIR/$tdir | wc -l)
4411         # "ls -l" will list total in the first line
4412         total=$((total - 1))
4413         (( total + count == 1000 )) ||
4414                 error "ls list $total files, $count files on MDT1"
4415 }
4416 run_test 33i "striped directory can be accessed when one MDT is down"
4417
4418 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
4419 test_34a() {
4420         rm -f $DIR/f34
4421         $MCREATE $DIR/f34 || error "mcreate failed"
4422         $LFS getstripe $DIR/f34 2>&1 | grep -q "no stripe info" ||
4423                 error "getstripe failed"
4424         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error "truncate failed"
4425         $LFS getstripe $DIR/f34 2>&1 | grep -q "no stripe info" ||
4426                 error "getstripe failed"
4427         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
4428                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
4429 }
4430 run_test 34a "truncate file that has not been opened ==========="
4431
4432 test_34b() {
4433         [ ! -f $DIR/f34 ] && test_34a
4434         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
4435                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
4436         $OPENFILE -f O_RDONLY $DIR/f34
4437         $LFS getstripe $DIR/f34 2>&1 | grep -q "no stripe info" ||
4438                 error "getstripe failed"
4439         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
4440                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
4441 }
4442 run_test 34b "O_RDONLY opening file doesn't create objects ====="
4443
4444 test_34c() {
4445         [ ! -f $DIR/f34 ] && test_34a
4446         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
4447                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
4448         $OPENFILE -f O_RDWR $DIR/f34
4449         $LFS getstripe $DIR/f34 2>&1 | grep -q "no stripe info" &&
4450                 error "$LFS getstripe failed"
4451         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
4452                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
4453 }
4454 run_test 34c "O_RDWR opening file-with-size works =============="
4455
4456 test_34d() {
4457         [ ! -f $DIR/f34 ] && test_34a
4458         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 ||
4459                 error "dd failed"
4460         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
4461                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
4462         rm $DIR/f34
4463 }
4464 run_test 34d "write to sparse file ============================="
4465
4466 test_34e() {
4467         rm -f $DIR/f34e
4468         $MCREATE $DIR/f34e || error "mcreate failed"
4469         $TRUNCATE $DIR/f34e 1000 || error "truncate failed"
4470         $CHECKSTAT -s 1000 $DIR/f34e ||
4471                 error "Size of $DIR/f34e not equal to 1000 bytes"
4472         $OPENFILE -f O_RDWR $DIR/f34e
4473         $CHECKSTAT -s 1000 $DIR/f34e ||
4474                 error "Size of $DIR/f34e not equal to 1000 bytes"
4475 }
4476 run_test 34e "create objects, some with size and some without =="
4477
4478 test_34f() { # bug 6242, 6243
4479         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4480
4481         SIZE34F=48000
4482         rm -f $DIR/f34f
4483         $MCREATE $DIR/f34f || error "mcreate failed"
4484         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
4485         dd if=$DIR/f34f of=$TMP/f34f
4486         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
4487         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
4488         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
4489         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
4490         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
4491 }
4492 run_test 34f "read from a file with no objects until EOF ======="
4493
4494 test_34g() {
4495         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4496
4497         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE ||
4498                 error "dd failed"
4499         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error "truncate failed"
4500         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
4501                 error "Size of $DIR/$tfile not equal to $((TEST_34_SIZE / 2))"
4502         cancel_lru_locks osc
4503         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
4504                 error "wrong size after lock cancel"
4505
4506         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error "truncate failed"
4507         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
4508                 error "expanding truncate failed"
4509         cancel_lru_locks osc
4510         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
4511                 error "wrong expanded size after lock cancel"
4512 }
4513 run_test 34g "truncate long file ==============================="
4514
4515 test_34h() {
4516         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4517
4518         local gid=10
4519         local sz=1000
4520
4521         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error "dd failed"
4522         sync # Flush the cache so that multiop below does not block on cache
4523              # flush when getting the group lock
4524         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
4525         MULTIPID=$!
4526
4527         # Since just timed wait is not good enough, let's do a sync write
4528         # that way we are sure enough time for a roundtrip + processing
4529         # passed + 2 seconds of extra margin.
4530         dd if=/dev/zero of=$DIR/${tfile}-1 bs=$PAGE_SIZE oflag=direct count=1
4531         rm $DIR/${tfile}-1
4532         sleep 2
4533
4534         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
4535                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
4536                 kill -9 $MULTIPID
4537         fi
4538         wait $MULTIPID
4539         local nsz=`stat -c %s $DIR/$tfile`
4540         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
4541 }
4542 run_test 34h "ftruncate file under grouplock should not block"
4543
4544 test_35a() {
4545         cp /bin/sh $DIR/f35a
4546         chmod 444 $DIR/f35a
4547         chown $RUNAS_ID $DIR/f35a
4548         $RUNAS $DIR/f35a && error || true
4549         rm $DIR/f35a
4550 }
4551 run_test 35a "exec file with mode 444 (should return and not leak)"
4552
4553 test_36a() {
4554         rm -f $DIR/f36
4555         utime $DIR/f36 || error "utime failed for MDS"
4556 }
4557 run_test 36a "MDS utime check (mknod, utime)"
4558
4559 test_36b() {
4560         echo "" > $DIR/f36
4561         utime $DIR/f36 || error "utime failed for OST"
4562 }
4563 run_test 36b "OST utime check (open, utime)"
4564
4565 test_36c() {
4566         rm -f $DIR/d36/f36
4567         test_mkdir $DIR/d36
4568         chown $RUNAS_ID $DIR/d36
4569         $RUNAS utime $DIR/d36/f36 || error "utime failed for MDS as non-root"
4570 }
4571 run_test 36c "non-root MDS utime check (mknod, utime)"
4572
4573 test_36d() {
4574         [ ! -d $DIR/d36 ] && test_36c
4575         echo "" > $DIR/d36/f36
4576         $RUNAS utime $DIR/d36/f36 || error "utime failed for OST as non-root"
4577 }
4578 run_test 36d "non-root OST utime check (open, utime)"
4579
4580 test_36e() {
4581         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping"
4582
4583         test_mkdir $DIR/$tdir
4584         touch $DIR/$tdir/$tfile
4585         $RUNAS utime $DIR/$tdir/$tfile &&
4586                 error "utime worked, expected failure" || true
4587 }
4588 run_test 36e "utime on non-owned file (should return error)"
4589
4590 subr_36fh() {
4591         local fl="$1"
4592         local LANG_SAVE=$LANG
4593         local LC_LANG_SAVE=$LC_LANG
4594         export LANG=C LC_LANG=C # for date language
4595
4596         DATESTR="Dec 20  2000"
4597         test_mkdir $DIR/$tdir
4598         lctl set_param fail_loc=$fl
4599         date; date +%s
4600         cp /etc/hosts $DIR/$tdir/$tfile
4601         sync & # write RPC generated with "current" inode timestamp, but delayed
4602         sleep 1
4603         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
4604         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
4605         cancel_lru_locks $OSC
4606         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
4607         date; date +%s
4608         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
4609                 echo "BEFORE: $LS_BEFORE" && \
4610                 echo "AFTER : $LS_AFTER" && \
4611                 echo "WANT  : $DATESTR" && \
4612                 error "$DIR/$tdir/$tfile timestamps changed" || true
4613
4614         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
4615 }
4616
4617 test_36f() {
4618         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4619
4620         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
4621         subr_36fh "0x80000214"
4622 }
4623 run_test 36f "utime on file racing with OST BRW write =========="
4624
4625 test_36g() {
4626         remote_ost_nodsh && skip "remote OST with nodsh"
4627         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4628         [ $MDS1_VERSION -lt $(version_code 2.12.51) ] &&
4629                 skip "Need MDS version at least 2.12.51"
4630
4631         local fmd_max_age
4632         local fmd
4633         local facet="ost1"
4634         local tgt="obdfilter"
4635
4636         [[ $OSC == "mdc" ]] && tgt="mdt" && facet="mds1"
4637
4638         test_mkdir $DIR/$tdir
4639         fmd_max_age=$(do_facet $facet \
4640                 "lctl get_param -n $tgt.*.tgt_fmd_seconds 2> /dev/null | \
4641                 head -n 1")
4642
4643         echo "FMD max age: ${fmd_max_age}s"
4644         touch $DIR/$tdir/$tfile
4645         fmd=$(do_facet $facet "lctl get_param -n $tgt.*.exports.*.fmd_count" |
4646                 gawk '{cnt=cnt+$1}  END{print cnt}')
4647         echo "FMD before: $fmd"
4648         [[ $fmd == 0 ]] &&
4649                 error "FMD wasn't create by touch"
4650         sleep $((fmd_max_age + 12))
4651         fmd=$(do_facet $facet "lctl get_param -n $tgt.*.exports.*.fmd_count" |
4652                 gawk '{cnt=cnt+$1}  END{print cnt}')
4653         echo "FMD after: $fmd"
4654         [[ $fmd == 0 ]] ||
4655                 error "FMD wasn't expired by ping"
4656 }
4657 run_test 36g "FMD cache expiry ====================="
4658
4659 test_36h() {
4660         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4661
4662         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
4663         subr_36fh "0x80000227"
4664 }
4665 run_test 36h "utime on file racing with OST BRW write =========="
4666
4667 test_36i() {
4668         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
4669
4670         test_mkdir $DIR/$tdir
4671         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
4672
4673         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
4674         local new_mtime=$((mtime + 200))
4675
4676         #change Modify time of striped dir
4677         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
4678                         error "change mtime failed"
4679
4680         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
4681
4682         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
4683 }
4684 run_test 36i "change mtime on striped directory"
4685
4686 # test_37 - duplicate with tests 32q 32r
4687
4688 test_38() {
4689         local file=$DIR/$tfile
4690         touch $file
4691         openfile -f O_DIRECTORY $file
4692         local RC=$?
4693         local ENOTDIR=20
4694         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
4695         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
4696 }
4697 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
4698
4699 test_39a() { # was test_39
4700         touch $DIR/$tfile
4701         touch $DIR/${tfile}2
4702 #       ls -l  $DIR/$tfile $DIR/${tfile}2
4703 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
4704 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
4705         sleep 2
4706         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
4707         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
4708                 echo "mtime"
4709                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
4710                 echo "atime"
4711                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
4712                 echo "ctime"
4713                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
4714                 error "O_TRUNC didn't change timestamps"
4715         fi
4716 }
4717 run_test 39a "mtime changed on create"
4718
4719 test_39b() {
4720         test_mkdir -c1 $DIR/$tdir
4721         cp -p /etc/passwd $DIR/$tdir/fopen
4722         cp -p /etc/passwd $DIR/$tdir/flink
4723         cp -p /etc/passwd $DIR/$tdir/funlink
4724         cp -p /etc/passwd $DIR/$tdir/frename
4725         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
4726
4727         sleep 1
4728         echo "aaaaaa" >> $DIR/$tdir/fopen
4729         echo "aaaaaa" >> $DIR/$tdir/flink
4730         echo "aaaaaa" >> $DIR/$tdir/funlink
4731         echo "aaaaaa" >> $DIR/$tdir/frename
4732
4733         local open_new=`stat -c %Y $DIR/$tdir/fopen`
4734         local link_new=`stat -c %Y $DIR/$tdir/flink`
4735         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
4736         local rename_new=`stat -c %Y $DIR/$tdir/frename`
4737
4738         cat $DIR/$tdir/fopen > /dev/null
4739         ln $DIR/$tdir/flink $DIR/$tdir/flink2
4740         rm -f $DIR/$tdir/funlink2
4741         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
4742
4743         for (( i=0; i < 2; i++ )) ; do
4744                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
4745                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
4746                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
4747                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
4748
4749                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
4750                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
4751                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
4752                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
4753
4754                 cancel_lru_locks $OSC
4755                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
4756         done
4757 }
4758 run_test 39b "mtime change on open, link, unlink, rename  ======"
4759
4760 # this should be set to past
4761 TEST_39_MTIME=`date -d "1 year ago" +%s`
4762
4763 # bug 11063
4764 test_39c() {
4765         touch $DIR1/$tfile
4766         sleep 2
4767         local mtime0=`stat -c %Y $DIR1/$tfile`
4768
4769         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
4770         local mtime1=`stat -c %Y $DIR1/$tfile`
4771         [ "$mtime1" = $TEST_39_MTIME ] || \
4772                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
4773
4774         local d1=`date +%s`
4775         echo hello >> $DIR1/$tfile
4776         local d2=`date +%s`
4777         local mtime2=`stat -c %Y $DIR1/$tfile`
4778         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
4779                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
4780
4781         mv $DIR1/$tfile $DIR1/$tfile-1
4782
4783         for (( i=0; i < 2; i++ )) ; do
4784                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
4785                 [ "$mtime2" = "$mtime3" ] || \
4786                         error "mtime ($mtime2) changed (to $mtime3) on rename"
4787
4788                 cancel_lru_locks $OSC
4789                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
4790         done
4791 }
4792 run_test 39c "mtime change on rename ==========================="
4793
4794 # bug 21114
4795 test_39d() {
4796         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4797
4798         touch $DIR1/$tfile
4799         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
4800
4801         for (( i=0; i < 2; i++ )) ; do
4802                 local mtime=`stat -c %Y $DIR1/$tfile`
4803                 [ $mtime = $TEST_39_MTIME ] || \
4804                         error "mtime($mtime) is not set to $TEST_39_MTIME"
4805
4806                 cancel_lru_locks $OSC
4807                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
4808         done
4809 }
4810 run_test 39d "create, utime, stat =============================="
4811
4812 # bug 21114
4813 test_39e() {
4814         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4815
4816         touch $DIR1/$tfile
4817         local mtime1=`stat -c %Y $DIR1/$tfile`
4818
4819         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
4820
4821         for (( i=0; i < 2; i++ )) ; do
4822                 local mtime2=`stat -c %Y $DIR1/$tfile`
4823                 [ $mtime2 = $TEST_39_MTIME ] || \
4824                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
4825
4826                 cancel_lru_locks $OSC
4827                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
4828         done
4829 }
4830 run_test 39e "create, stat, utime, stat ========================"
4831
4832 # bug 21114
4833 test_39f() {
4834         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4835
4836         touch $DIR1/$tfile
4837         mtime1=`stat -c %Y $DIR1/$tfile`
4838
4839         sleep 2
4840         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
4841
4842         for (( i=0; i < 2; i++ )) ; do
4843                 local mtime2=`stat -c %Y $DIR1/$tfile`
4844                 [ $mtime2 = $TEST_39_MTIME ] || \
4845                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
4846
4847                 cancel_lru_locks $OSC
4848                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
4849         done
4850 }
4851 run_test 39f "create, stat, sleep, utime, stat ================="
4852
4853 # bug 11063
4854 test_39g() {
4855         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4856
4857         echo hello >> $DIR1/$tfile
4858         local mtime1=`stat -c %Y $DIR1/$tfile`
4859
4860         sleep 2
4861         chmod o+r $DIR1/$tfile
4862
4863         for (( i=0; i < 2; i++ )) ; do
4864                 local mtime2=`stat -c %Y $DIR1/$tfile`
4865                 [ "$mtime1" = "$mtime2" ] || \
4866                         error "lost mtime: $mtime2, should be $mtime1"
4867
4868                 cancel_lru_locks $OSC
4869                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
4870         done
4871 }
4872 run_test 39g "write, chmod, stat ==============================="
4873
4874 # bug 11063
4875 test_39h() {
4876         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4877
4878         touch $DIR1/$tfile
4879         sleep 1
4880
4881         local d1=`date`
4882         echo hello >> $DIR1/$tfile
4883         local mtime1=`stat -c %Y $DIR1/$tfile`
4884
4885         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
4886         local d2=`date`
4887         if [ "$d1" != "$d2" ]; then
4888                 echo "write and touch not within one second"
4889         else
4890                 for (( i=0; i < 2; i++ )) ; do
4891                         local mtime2=`stat -c %Y $DIR1/$tfile`
4892                         [ "$mtime2" = $TEST_39_MTIME ] || \
4893                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
4894
4895                         cancel_lru_locks $OSC
4896                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
4897                 done
4898         fi
4899 }
4900 run_test 39h "write, utime within one second, stat ============="
4901
4902 test_39i() {
4903         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4904
4905         touch $DIR1/$tfile
4906         sleep 1
4907
4908         echo hello >> $DIR1/$tfile
4909         local mtime1=`stat -c %Y $DIR1/$tfile`
4910
4911         mv $DIR1/$tfile $DIR1/$tfile-1
4912
4913         for (( i=0; i < 2; i++ )) ; do
4914                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
4915
4916                 [ "$mtime1" = "$mtime2" ] || \
4917                         error "lost mtime: $mtime2, should be $mtime1"
4918
4919                 cancel_lru_locks $OSC
4920                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
4921         done
4922 }
4923 run_test 39i "write, rename, stat =============================="
4924
4925 test_39j() {
4926         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4927
4928         start_full_debug_logging
4929         touch $DIR1/$tfile
4930         sleep 1
4931
4932         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
4933         lctl set_param fail_loc=0x80000412
4934         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
4935                 error "multiop failed"
4936         local multipid=$!
4937         local mtime1=`stat -c %Y $DIR1/$tfile`
4938
4939         mv $DIR1/$tfile $DIR1/$tfile-1
4940
4941         kill -USR1 $multipid
4942         wait $multipid || error "multiop close failed"
4943
4944         for (( i=0; i < 2; i++ )) ; do
4945                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
4946                 [ "$mtime1" = "$mtime2" ] ||
4947                         error "mtime is lost on close: $mtime2, " \
4948                               "should be $mtime1"
4949
4950                 cancel_lru_locks
4951                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
4952         done
4953         lctl set_param fail_loc=0
4954         stop_full_debug_logging
4955 }
4956 run_test 39j "write, rename, close, stat ======================="
4957
4958 test_39k() {
4959         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4960
4961         touch $DIR1/$tfile
4962         sleep 1
4963
4964         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
4965         local multipid=$!
4966         local mtime1=`stat -c %Y $DIR1/$tfile`
4967
4968         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
4969
4970         kill -USR1 $multipid
4971         wait $multipid || error "multiop close failed"
4972
4973         for (( i=0; i < 2; i++ )) ; do
4974                 local mtime2=`stat -c %Y $DIR1/$tfile`
4975
4976                 [ "$mtime2" = $TEST_39_MTIME ] || \
4977                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
4978
4979                 cancel_lru_locks
4980                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
4981         done
4982 }
4983 run_test 39k "write, utime, close, stat ========================"
4984
4985 # this should be set to future
4986 TEST_39_ATIME=`date -d "1 year" +%s`
4987
4988 test_39l() {
4989         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4990         remote_mds_nodsh && skip "remote MDS with nodsh"
4991
4992         local atime_diff=$(do_facet $SINGLEMDS \
4993                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
4994         rm -rf $DIR/$tdir
4995         mkdir_on_mdt0 $DIR/$tdir
4996
4997         # test setting directory atime to future
4998         touch -a -d @$TEST_39_ATIME $DIR/$tdir
4999         local atime=$(stat -c %X $DIR/$tdir)
5000         [ "$atime" = $TEST_39_ATIME ] ||
5001                 error "atime is not set to future: $atime, $TEST_39_ATIME"
5002
5003         # test setting directory atime from future to now
5004         local now=$(date +%s)
5005         touch -a -d @$now $DIR/$tdir
5006
5007         atime=$(stat -c %X $DIR/$tdir)
5008         [ "$atime" -eq "$now"  ] ||
5009                 error "atime is not updated from future: $atime, $now"
5010
5011         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
5012         sleep 3
5013
5014         # test setting directory atime when now > dir atime + atime_diff
5015         local d1=$(date +%s)
5016         ls $DIR/$tdir
5017         local d2=$(date +%s)
5018         cancel_lru_locks mdc
5019         atime=$(stat -c %X $DIR/$tdir)
5020         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
5021                 error "atime is not updated  : $atime, should be $d2"
5022
5023         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
5024         sleep 3
5025
5026         # test not setting directory atime when now < dir atime + atime_diff
5027         ls $DIR/$tdir
5028         cancel_lru_locks mdc
5029         atime=$(stat -c %X $DIR/$tdir)
5030         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
5031                 error "atime is updated to $atime, should remain $d1<atime<$d2"
5032
5033         do_facet $SINGLEMDS \
5034                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
5035 }
5036 run_test 39l "directory atime update ==========================="
5037
5038 test_39m() {
5039         [ $PARALLEL == "yes" ] && skip "skip parallel run"
5040
5041         touch $DIR1/$tfile
5042         sleep 2
5043         local far_past_mtime=$(date -d "May 29 1953" +%s)
5044         local far_past_atime=$(date -d "Dec 17 1903" +%s)
5045
5046         touch -m -d @$far_past_mtime $DIR1/$tfile
5047         touch -a -d @$far_past_atime $DIR1/$tfile
5048
5049         for (( i=0; i < 2; i++ )) ; do
5050                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
5051                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
5052                         error "atime or mtime set incorrectly"
5053
5054                 cancel_lru_locks $OSC
5055                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
5056         done
5057 }
5058 run_test 39m "test atime and mtime before 1970"
5059
5060 test_39n() { # LU-3832
5061         remote_mds_nodsh && skip "remote MDS with nodsh"
5062
5063         local atime_diff=$(do_facet $SINGLEMDS \
5064                 lctl get_param -n mdd.*MDT0000*.atime_diff)
5065         local atime0
5066         local atime1
5067         local atime2
5068
5069         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
5070
5071         rm -rf $DIR/$tfile
5072         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
5073         atime0=$(stat -c %X $DIR/$tfile)
5074
5075         sleep 5
5076         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
5077         atime1=$(stat -c %X $DIR/$tfile)
5078
5079         sleep 5
5080         cancel_lru_locks mdc
5081         cancel_lru_locks osc
5082         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
5083         atime2=$(stat -c %X $DIR/$tfile)
5084
5085         do_facet $SINGLEMDS \
5086                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
5087
5088         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
5089         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
5090 }
5091 run_test 39n "check that O_NOATIME is honored"
5092
5093 test_39o() {
5094         TESTDIR=$DIR/$tdir/$tfile
5095         [ -e $TESTDIR ] && rm -rf $TESTDIR
5096         mkdir -p $TESTDIR
5097         cd $TESTDIR
5098         links1=2
5099         ls
5100         mkdir a b
5101         ls
5102         links2=$(stat -c %h .)
5103         [ $(($links1 + 2)) != $links2 ] &&
5104                 error "wrong links count $(($links1 + 2)) != $links2"
5105         rmdir b
5106         links3=$(stat -c %h .)
5107         [ $(($links1 + 1)) != $links3 ] &&
5108                 error "wrong links count $links1 != $links3"
5109         return 0
5110 }
5111 run_test 39o "directory cached attributes updated after create"
5112
5113 test_39p() {
5114         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
5115
5116         local MDTIDX=1
5117         TESTDIR=$DIR/$tdir/$tdir
5118         [ -e $TESTDIR ] && rm -rf $TESTDIR
5119         test_mkdir -p $TESTDIR
5120         cd $TESTDIR
5121         links1=2
5122         ls
5123         test_mkdir -i $MDTIDX $TESTDIR/remote_dir1
5124         test_mkdir -i $MDTIDX $TESTDIR/remote_dir2
5125         ls
5126         links2=$(stat -c %h .)
5127         [ $(($links1 + 2)) != $links2 ] &&
5128                 error "wrong links count $(($links1 + 2)) != $links2"
5129         rmdir remote_dir2
5130         links3=$(stat -c %h .)
5131         [ $(($links1 + 1)) != $links3 ] &&
5132                 error "wrong links count $links1 != $links3"
5133         return 0
5134 }
5135 run_test 39p "remote directory cached attributes updated after create ========"
5136
5137 test_39r() {
5138         [ $OST1_VERSION -ge $(version_code 2.13.52) ] ||
5139                 skip "no atime update on old OST"
5140         if [ "$ost1_FSTYPE" != ldiskfs ]; then
5141                 skip_env "ldiskfs only test"
5142         fi
5143
5144         local saved_adiff
5145         saved_adiff=$(do_facet ost1 \
5146                 lctl get_param -n obdfilter.*OST0000.atime_diff)
5147         stack_trap "do_facet ost1 \
5148                 lctl set_param obdfilter.*.atime_diff=$saved_adiff"
5149
5150         do_facet ost1 "lctl set_param obdfilter.*.atime_diff=5"
5151
5152         $LFS setstripe -i 0 $DIR/$tfile
5153         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 ||
5154                 error "can't write initial file"
5155         cancel_lru_locks osc
5156
5157         # exceed atime_diff and access file
5158         sleep 10
5159         dd if=$DIR/$tfile of=/dev/null bs=4k count=1 ||
5160                 error "can't udpate atime"
5161
5162         local atime_cli=$(stat -c %X $DIR/$tfile)
5163         echo "client atime: $atime_cli"
5164         # allow atime update to be written to device
5165         do_facet ost1 "$LCTL set_param -n osd*.*OST*.force_sync 1"
5166         sleep 5
5167
5168         local ostdev=$(ostdevname 1)
5169         local fid=($(lfs getstripe -y $DIR/$tfile |
5170                         awk '/l_fid:/ { print $2 }' | tr ':' ' '))
5171         local objpath="O/0/d$((${fid[1]} % 32))/$((${fid[1]}))"
5172         local cmd="debugfs -c -R \\\"stat $objpath\\\" $ostdev"
5173
5174         echo "OST atime: $(do_facet ost1 "$cmd" |& grep atime)"
5175         local atime_ost=$(do_facet ost1 "$cmd" |&
5176                           awk -F'[: ]' '/atime:/ { print $4 }')
5177         (( atime_cli == atime_ost )) ||
5178                 error "atime on client $atime_cli != ost $atime_ost"
5179 }
5180 run_test 39r "lazy atime update on OST"
5181
5182 test_39q() { # LU-8041
5183         local testdir=$DIR/$tdir
5184         mkdir -p $testdir
5185         multiop_bg_pause $testdir D_c || error "multiop failed"
5186         local multipid=$!
5187         cancel_lru_locks mdc
5188         kill -USR1 $multipid
5189         local atime=$(stat -c %X $testdir)
5190         [ "$atime" -ne 0 ] || error "atime is zero"
5191 }
5192 run_test 39q "close won't zero out atime"
5193
5194 test_40() {
5195         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
5196         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
5197                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
5198         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
5199                 error "$tfile is not 4096 bytes in size"
5200 }
5201 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
5202
5203 test_41() {
5204         # bug 1553
5205         small_write $DIR/f41 18
5206 }
5207 run_test 41 "test small file write + fstat ====================="
5208
5209 count_ost_writes() {
5210         lctl get_param -n ${OSC}.*.stats |
5211                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
5212                         END { printf("%0.0f", writes) }'
5213 }
5214
5215 # decent default
5216 WRITEBACK_SAVE=500
5217 DIRTY_RATIO_SAVE=40
5218 MAX_DIRTY_RATIO=50
5219 BG_DIRTY_RATIO_SAVE=10
5220 MAX_BG_DIRTY_RATIO=25
5221
5222 start_writeback() {
5223         trap 0
5224         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
5225         # dirty_ratio, dirty_background_ratio
5226         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
5227                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
5228                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
5229                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
5230         else
5231                 # if file not here, we are a 2.4 kernel
5232                 kill -CONT `pidof kupdated`
5233         fi
5234 }
5235
5236 stop_writeback() {
5237         # setup the trap first, so someone cannot exit the test at the
5238         # exact wrong time and mess up a machine
5239         trap start_writeback EXIT
5240         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
5241         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
5242                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
5243                 sysctl -w vm.dirty_writeback_centisecs=0
5244                 sysctl -w vm.dirty_writeback_centisecs=0
5245                 # save and increase /proc/sys/vm/dirty_ratio
5246                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
5247                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
5248                 # save and increase /proc/sys/vm/dirty_background_ratio
5249                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
5250                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
5251         else
5252                 # if file not here, we are a 2.4 kernel
5253                 kill -STOP `pidof kupdated`
5254         fi
5255 }
5256
5257 # ensure that all stripes have some grant before we test client-side cache
5258 setup_test42() {
5259         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
5260                 dd if=/dev/zero of=$i bs=4k count=1
5261                 rm $i
5262         done
5263 }
5264
5265 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
5266 # file truncation, and file removal.
5267 test_42a() {
5268         [ $PARALLEL == "yes" ] && skip "skip parallel run"
5269
5270         setup_test42
5271         cancel_lru_locks $OSC
5272         stop_writeback
5273         sync; sleep 1; sync # just to be safe
5274         BEFOREWRITES=`count_ost_writes`
5275         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
5276         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
5277         AFTERWRITES=`count_ost_writes`
5278         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
5279                 error "$BEFOREWRITES < $AFTERWRITES"
5280         start_writeback
5281 }
5282 run_test 42a "ensure that we don't flush on close"
5283
5284 test_42b() {
5285         [ $PARALLEL == "yes" ] && skip "skip parallel run"
5286
5287         setup_test42
5288         cancel_lru_locks $OSC
5289         stop_writeback
5290         sync
5291         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
5292         BEFOREWRITES=$(count_ost_writes)
5293         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
5294         AFTERWRITES=$(count_ost_writes)
5295         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
5296                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
5297         fi
5298         BEFOREWRITES=$(count_ost_writes)
5299         sync || error "sync: $?"
5300         AFTERWRITES=$(count_ost_writes)
5301         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
5302                 error "$BEFOREWRITES < $AFTERWRITES on sync"
5303         fi
5304         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
5305         start_writeback
5306         return 0
5307 }
5308 run_test 42b "test destroy of file with cached dirty data ======"
5309
5310 # if these tests just want to test the effect of truncation,
5311 # they have to be very careful.  consider:
5312 # - the first open gets a {0,EOF}PR lock
5313 # - the first write conflicts and gets a {0, count-1}PW
5314 # - the rest of the writes are under {count,EOF}PW
5315 # - the open for truncate tries to match a {0,EOF}PR
5316 #   for the filesize and cancels the PWs.
5317 # any number of fixes (don't get {0,EOF} on open, match
5318 # composite locks, do smarter file size management) fix
5319 # this, but for now we want these tests to verify that
5320 # the cancellation with truncate intent works, so we
5321 # start the file with a full-file pw lock to match against
5322 # until the truncate.
5323 trunc_test() {
5324         test=$1
5325         file=$DIR/$test
5326         offset=$2
5327         cancel_lru_locks $OSC
5328         stop_writeback
5329         # prime the file with 0,EOF PW to match
5330         touch $file
5331         $TRUNCATE $file 0
5332         sync; sync
5333         # now the real test..
5334         dd if=/dev/zero of=$file bs=1024 count=100
5335         BEFOREWRITES=`count_ost_writes`
5336         $TRUNCATE $file $offset
5337         cancel_lru_locks $OSC
5338         AFTERWRITES=`count_ost_writes`
5339         start_writeback
5340 }
5341
5342 test_42c() {
5343         [ $PARALLEL == "yes" ] && skip "skip parallel run"
5344
5345         trunc_test 42c 1024
5346         [ $BEFOREWRITES -eq $AFTERWRITES ] &&
5347                 error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
5348         rm $file
5349 }
5350 run_test 42c "test partial truncate of file with cached dirty data"
5351
5352 test_42d() {
5353         [ $PARALLEL == "yes" ] && skip "skip parallel run"
5354
5355         local olddebug="$($LCTL get_param -n debug 2> /dev/null)"
5356         stack_trap "$LCTL set_param -n debug='$olddebug'" EXIT
5357         $LCTL set_param debug=+cache
5358
5359         trunc_test 42d 0
5360         [ $BEFOREWRITES -eq $AFTERWRITES ] ||
5361                 error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
5362         rm $file
5363 }
5364 run_test 42d "test complete truncate of file with cached dirty data"
5365
5366 test_42e() { # bug22074
5367         [ $PARALLEL == "yes" ] && skip "skip parallel run"
5368
5369         local TDIR=$DIR/${tdir}e
5370         local pages=16 # hardcoded 16 pages, don't change it.
5371         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
5372         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
5373         local max_dirty_mb
5374         local warmup_files
5375
5376         test_mkdir $DIR/${tdir}e
5377         $LFS setstripe -c 1 $TDIR
5378         createmany -o $TDIR/f $files
5379
5380         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
5381
5382         # we assume that with $OSTCOUNT files, at least one of them will
5383         # be allocated on OST0.
5384         warmup_files=$((OSTCOUNT * max_dirty_mb))
5385         createmany -o $TDIR/w $warmup_files
5386
5387         # write a large amount of data into one file and sync, to get good
5388         # avail_grant number from OST.
5389         for ((i=0; i<$warmup_files; i++)); do
5390                 idx=$($LFS getstripe -i $TDIR/w$i)
5391                 [ $idx -ne 0 ] && continue
5392                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
5393                 break
5394         done
5395         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
5396         sync
5397         $LCTL get_param $proc_osc0/cur_dirty_bytes
5398         $LCTL get_param $proc_osc0/cur_grant_bytes
5399
5400         # create as much dirty pages as we can while not to trigger the actual
5401         # RPCs directly. but depends on the env, VFS may trigger flush during this
5402         # period, hopefully we are good.
5403         for ((i=0; i<$warmup_files; i++)); do
5404                 idx=$($LFS getstripe -i $TDIR/w$i)
5405                 [ $idx -ne 0 ] && continue
5406                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
5407         done
5408         $LCTL get_param $proc_osc0/cur_dirty_bytes
5409         $LCTL get_param $proc_osc0/cur_grant_bytes
5410
5411         # perform the real test
5412         $LCTL set_param $proc_osc0/rpc_stats 0
5413         for ((;i<$files; i++)); do
5414                 [ $($LFS getstripe -i $TDIR/f$i) -eq 0 ] || continue
5415                 dd if=/dev/zero of=$TDIR/f$i bs=$PAGE_SIZE count=$pages 2>/dev/null
5416         done
5417         sync
5418         $LCTL get_param $proc_osc0/rpc_stats
5419
5420         local percent=0
5421         local have_ppr=false
5422         $LCTL get_param $proc_osc0/rpc_stats |
5423                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
5424                         # skip lines until we are at the RPC histogram data
5425                         [ "$PPR" == "pages" ] && have_ppr=true && continue
5426                         $have_ppr || continue
5427
5428                         # we only want the percent stat for < 16 pages
5429                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
5430
5431                         percent=$((percent + WPCT))
5432                         if [[ $percent -gt 15 ]]; then
5433                                 error "less than 16-pages write RPCs" \
5434                                       "$percent% > 15%"
5435                                 break
5436                         fi
5437                 done
5438         rm -rf $TDIR
5439 }
5440 run_test 42e "verify sub-RPC writes are not done synchronously"
5441
5442 test_43A() { # was test_43
5443         test_mkdir $DIR/$tdir
5444         cp -p /bin/ls $DIR/$tdir/$tfile
5445         $MULTIOP $DIR/$tdir/$tfile Ow_c &
5446         pid=$!
5447         # give multiop a chance to open
5448         sleep 1
5449
5450         $DIR/$tdir/$tfile && error "execute $DIR/$tdir/$tfile succeeded" || true
5451         kill -USR1 $pid
5452         # Wait for multiop to exit
5453         wait $pid
5454 }
5455 run_test 43A "execution of file opened for write should return -ETXTBSY"
5456
5457 test_43a() {
5458         test_mkdir $DIR/$tdir
5459         cp -p $(which sleep) $DIR/$tdir/sleep || error "can't copy"
5460         $DIR/$tdir/sleep 60 &
5461         SLEEP_PID=$!
5462         # Make sure exec of $tdir/sleep wins race with truncate
5463         sleep 1
5464         $MULTIOP $DIR/$tdir/sleep Oc && error "expected error, got success"
5465         kill $SLEEP_PID
5466 }
5467 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
5468
5469 test_43b() {
5470         [ $PARALLEL == "yes" ] && skip "skip parallel run"
5471
5472         test_mkdir $DIR/$tdir
5473         cp -p $(which sleep) $DIR/$tdir/sleep || error "can't copy"
5474         $DIR/$tdir/sleep 60 &
5475         SLEEP_PID=$!
5476         # Make sure exec of $tdir/sleep wins race with truncate
5477         sleep 1
5478         $TRUNCATE $DIR/$tdir/sleep 0 && error "expected error, got success"
5479         kill $SLEEP_PID
5480 }
5481 run_test 43b "truncate of file being executed should return -ETXTBSY"
5482
5483 test_43c() {
5484         local testdir="$DIR/$tdir"
5485         test_mkdir $testdir
5486         cp $SHELL $testdir/
5487         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) |
5488                 ( cd $testdir && md5sum -c )
5489 }
5490 run_test 43c "md5sum of copy into lustre"
5491
5492 test_44A() { # was test_44
5493         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5494
5495         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
5496         dd if=$DIR/f1 bs=4k count=1 > /dev/null
5497 }
5498 run_test 44A "zero length read from a sparse stripe"
5499
5500 test_44a() {
5501         local nstripe=$($LFS getstripe -c -d $DIR)
5502         [ -z "$nstripe" ] && skip "can't get stripe info"
5503         [[ $nstripe -gt $OSTCOUNT ]] &&
5504                 skip "Wrong default stripe_count: $nstripe OSTCOUNT: $OSTCOUNT"
5505
5506         local stride=$($LFS getstripe -S -d $DIR)
5507         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
5508                 nstripe=$($LFS df $DIR | grep OST: | wc -l)
5509         fi
5510
5511         OFFSETS="0 $((stride/2)) $((stride-1))"
5512         for offset in $OFFSETS; do
5513                 for i in $(seq 0 $((nstripe-1))); do
5514                         local GLOBALOFFSETS=""
5515                         # size in Bytes
5516                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
5517                         local myfn=$DIR/d44a-$size
5518                         echo "--------writing $myfn at $size"
5519                         ll_sparseness_write $myfn $size ||
5520                                 error "ll_sparseness_write"
5521                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
5522                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
5523                                 error "ll_sparseness_verify $GLOBALOFFSETS"
5524
5525                         for j in $(seq 0 $((nstripe-1))); do
5526                                 # size in Bytes
5527                                 size=$((((j + $nstripe )*$stride + $offset)))
5528                                 ll_sparseness_write $myfn $size ||
5529                                         error "ll_sparseness_write"
5530                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
5531                         done
5532                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
5533                                 error "ll_sparseness_verify $GLOBALOFFSETS"
5534                         rm -f $myfn
5535                 done
5536         done
5537 }
5538 run_test 44a "test sparse pwrite ==============================="
5539
5540 dirty_osc_total() {
5541         tot=0
5542         for d in `lctl get_param -n ${OSC}.*.cur_dirty_bytes`; do
5543                 tot=$(($tot + $d))
5544         done
5545         echo $tot
5546 }
5547 do_dirty_record() {
5548         before=`dirty_osc_total`
5549         echo executing "\"$*\""
5550         eval $*
5551         after=`dirty_osc_total`
5552         echo before $before, after $after
5553 }
5554 test_45() {
5555         [ $PARALLEL == "yes" ] && skip "skip parallel run"
5556
5557         f="$DIR/f45"
5558         # Obtain grants from OST if it supports it
5559         echo blah > ${f}_grant
5560         stop_writeback
5561         sync
5562         do_dirty_record "echo blah > $f"
5563         [[ $before -eq $after ]] && error "write wasn't cached"
5564         do_dirty_record "> $f"
5565         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
5566         do_dirty_record "echo blah > $f"
5567         [[ $before -eq $after ]] && error "write wasn't cached"
5568         do_dirty_record "sync"
5569         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
5570         do_dirty_record "echo blah > $f"
5571         [[ $before -eq $after ]] && error "write wasn't cached"
5572         do_dirty_record "cancel_lru_locks osc"
5573         [[ $before -gt $after ]] ||
5574                 error "lock cancellation didn't lower dirty count"
5575         start_writeback
5576 }
5577 run_test 45 "osc io page accounting ============================"
5578
5579 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
5580 # test tickles a bug where re-dirtying a page was failing to be mapped to the
5581 # objects offset and an assert hit when an rpc was built with 1023's mapped
5582 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
5583 test_46() {
5584         [ $PARALLEL == "yes" ] && skip "skip parallel run"
5585
5586         f="$DIR/f46"
5587         stop_writeback
5588         sync
5589         dd if=/dev/zero of=$f bs=$PAGE_SIZE seek=511 count=1
5590         sync
5591         dd conv=notrunc if=/dev/zero of=$f bs=$PAGE_SIZE seek=1023 count=1
5592         dd conv=notrunc if=/dev/zero of=$f bs=$PAGE_SIZE seek=511 count=1
5593         sync
5594         start_writeback
5595 }
5596 run_test 46 "dirtying a previously written page ================"
5597
5598 # test_47 is removed "Device nodes check" is moved to test_28
5599
5600 test_48a() { # bug 2399
5601         [ "$mds1_FSTYPE" = "zfs" ] &&
5602         [ $MDS1_VERSION -lt $(version_code 2.3.63) ] &&
5603                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly"
5604
5605         test_mkdir $DIR/$tdir
5606         cd $DIR/$tdir
5607         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
5608         test_mkdir $DIR/$tdir
5609         touch foo || error "'touch foo' failed after recreating cwd"
5610         test_mkdir bar
5611         touch .foo || error "'touch .foo' failed after recreating cwd"
5612         test_mkdir .bar
5613         ls . > /dev/null || error "'ls .' failed after recreating cwd"
5614         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
5615         cd . || error "'cd .' failed after recreating cwd"
5616         mkdir . && error "'mkdir .' worked after recreating cwd"
5617         rmdir . && error "'rmdir .' worked after recreating cwd"
5618         ln -s . baz || error "'ln -s .' failed after recreating cwd"
5619         cd .. || error "'cd ..' failed after recreating cwd"
5620 }
5621 run_test 48a "Access renamed working dir (should return errors)="
5622
5623 test_48b() { # bug 2399
5624         rm -rf $DIR/$tdir
5625         test_mkdir $DIR/$tdir
5626         cd $DIR/$tdir
5627         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
5628         touch foo && error "'touch foo' worked after removing cwd"
5629         mkdir foo && error "'mkdir foo' worked after removing cwd"
5630         touch .foo && error "'touch .foo' worked after removing cwd"
5631         mkdir .foo && error "'mkdir .foo' worked after removing cwd"
5632         ls . > /dev/null && error "'ls .' worked after removing cwd"
5633         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
5634         mkdir . && error "'mkdir .' worked after removing cwd"
5635         rmdir . && error "'rmdir .' worked after removing cwd"
5636         ln -s . foo && error "'ln -s .' worked after removing cwd"
5637         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
5638 }
5639 run_test 48b "Access removed working dir (should return errors)="
5640
5641 test_48c() { # bug 2350
5642         #lctl set_param debug=-1
5643         #set -vx
5644         rm -rf $DIR/$tdir
5645         test_mkdir -p $DIR/$tdir/dir
5646         cd $DIR/$tdir/dir
5647         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
5648         $TRACE touch foo && error "touch foo worked after removing cwd"
5649         $TRACE mkdir foo && error "'mkdir foo' worked after removing cwd"
5650         touch .foo && error "touch .foo worked after removing cwd"
5651         mkdir .foo && error "mkdir .foo worked after removing cwd"
5652         $TRACE ls . && error "'ls .' worked after removing cwd"
5653         $TRACE ls .. || error "'ls ..' failed after removing cwd"
5654         $TRACE mkdir . && error "'mkdir .' worked after removing cwd"
5655         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
5656         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
5657         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
5658 }
5659 run_test 48c "Access removed working subdir (should return errors)"
5660
5661 test_48d() { # bug 2350
5662         #lctl set_param debug=-1
5663         #set -vx
5664         rm -rf $DIR/$tdir
5665         test_mkdir -p $DIR/$tdir/dir
5666         cd $DIR/$tdir/dir
5667         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
5668         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
5669         $TRACE touch foo && error "'touch foo' worked after removing parent"
5670         $TRACE mkdir foo && error "mkdir foo worked after removing parent"
5671         touch .foo && error "'touch .foo' worked after removing parent"
5672         mkdir .foo && error "mkdir .foo worked after removing parent"
5673         $TRACE ls . && error "'ls .' worked after removing parent"
5674         $TRACE ls .. && error "'ls ..' worked after removing parent"
5675         $TRACE mkdir . && error "'mkdir .' worked after removing parent"
5676         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
5677         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
5678         true
5679 }
5680 run_test 48d "Access removed parent subdir (should return errors)"
5681
5682 test_48e() { # bug 4134
5683         #lctl set_param debug=-1
5684         #set -vx
5685         rm -rf $DIR/$tdir
5686         test_mkdir -p $DIR/$tdir/dir
5687         cd $DIR/$tdir/dir
5688         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
5689         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
5690         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
5691         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
5692         # On a buggy kernel addition of "touch foo" after cd .. will
5693         # produce kernel oops in lookup_hash_it
5694         touch ../foo && error "'cd ..' worked after recreate parent"
5695         cd $DIR
5696         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
5697 }
5698 run_test 48e "Access to recreated parent subdir (should return errors)"
5699
5700 test_48f() {
5701         [[ $MDS1_VERSION -ge $(version_code 2.13.55) ]] ||
5702                 skip "need MDS >= 2.13.55"
5703         [[ $MDSCOUNT -ge 2 ]] || skip "needs >= 2 MDTs"
5704         [[ "$(facet_host mds1)" != "$(facet_host mds2)" ]] ||
5705                 skip "needs different host for mdt1 mdt2"
5706         [[ $(facet_fstype mds1) == ldiskfs ]] || skip "ldiskfs only"
5707
5708         $LFS mkdir -i0 $DIR/$tdir
5709         $LFS mkdir -i 1 $DIR/$tdir/sub1 $DIR/$tdir/sub2 $DIR/$tdir/sub3
5710
5711         for d in sub1 sub2 sub3; do
5712                 #define OBD_FAIL_OSD_REF_DEL    0x19c
5713                 do_facet mds1 $LCTL set_param fail_loc=0x8000019c
5714                 rm -rf $DIR/$tdir/$d && error "rm $d should fail"
5715         done
5716
5717         rm -d --interactive=never $DIR/$tdir || error "rm $tdir fail"
5718 }
5719 run_test 48f "non-zero nlink dir unlink won't LBUG()"
5720
5721 test_49() { # LU-1030
5722         [ $PARALLEL == "yes" ] && skip "skip parallel run"
5723         remote_ost_nodsh && skip "remote OST with nodsh"
5724
5725         # get ost1 size - $FSNAME-OST0000
5726         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
5727                 awk '{ print $4 }')
5728         # write 800M at maximum
5729         [[ $ost1_size -lt 2 ]] && ost1_size=2
5730         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
5731
5732         $LFS setstripe -c 1 -i 0 $DIR/$tfile
5733         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
5734         local dd_pid=$!
5735
5736         # change max_pages_per_rpc while writing the file
5737         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
5738         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
5739         # loop until dd process exits
5740         while ps ax -opid | grep -wq $dd_pid; do
5741                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
5742                 sleep $((RANDOM % 5 + 1))
5743         done
5744         # restore original max_pages_per_rpc
5745         $LCTL set_param $osc1_mppc=$orig_mppc
5746         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
5747 }
5748 run_test 49 "Change max_pages_per_rpc won't break osc extent"
5749
5750 test_50() {
5751         # bug 1485
5752         test_mkdir $DIR/$tdir
5753         cd $DIR/$tdir
5754         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
5755 }
5756 run_test 50 "special situations: /proc symlinks  ==============="
5757
5758 test_51a() {    # was test_51
5759         # bug 1516 - create an empty entry right after ".." then split dir
5760         test_mkdir -c1 $DIR/$tdir
5761         touch $DIR/$tdir/foo
5762         $MCREATE $DIR/$tdir/bar
5763         rm $DIR/$tdir/foo
5764         createmany -m $DIR/$tdir/longfile 201
5765         FNUM=202
5766         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
5767                 $MCREATE $DIR/$tdir/longfile$FNUM
5768                 FNUM=$(($FNUM + 1))
5769                 echo -n "+"
5770         done
5771         echo
5772         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
5773 }
5774 run_test 51a "special situations: split htree with empty entry =="
5775
5776 cleanup_print_lfs_df () {
5777         trap 0
5778         $LFS df
5779         $LFS df -i
5780 }
5781
5782 test_51b() {
5783         [ $PARALLEL == "yes" ] && skip "skip parallel run"
5784
5785         local dir=$DIR/$tdir
5786         local nrdirs=$((65536 + 100))
5787
5788         # cleanup the directory
5789         rm -fr $dir
5790
5791         mkdir_on_mdt -i $((RANDOM % MDSCOUNT)) $dir
5792
5793         $LFS df
5794         $LFS df -i
5795         local mdtidx=$(printf "%04x" $($LFS getstripe -m $dir))
5796         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
5797         [[ $numfree -lt $nrdirs ]] &&
5798                 skip "not enough free inodes ($numfree) on MDT$mdtidx"
5799
5800         # need to check free space for the directories as well
5801         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
5802         numfree=$(( blkfree / $(fs_inode_ksize) ))
5803         [[ $numfree -lt $nrdirs ]] && skip "not enough blocks ($numfree)"
5804
5805         trap cleanup_print_lfs_df EXIT
5806
5807         # create files
5808         createmany -d $dir/d $nrdirs || {
5809                 unlinkmany $dir/d $nrdirs
5810                 error "failed to create $nrdirs subdirs in MDT$mdtidx:$dir"
5811         }
5812
5813         # really created :
5814         nrdirs=$(ls -U $dir | wc -l)
5815
5816         # unlink all but 100 subdirectories, then check it still works
5817         local left=100
5818         local delete=$((nrdirs - left))
5819
5820         $LFS df
5821         $LFS df -i
5822
5823         # for ldiskfs the nlink count should be 1, but this is OSD specific
5824         # and so this is listed for informational purposes only
5825         echo "nlink before: $(stat -c %h $dir), created before: $nrdirs"
5826         unlinkmany -d $dir/d $delete ||
5827                 error "unlink of first $delete subdirs failed"
5828
5829         echo "nlink between: $(stat -c %h $dir)"
5830         local found=$(ls -U $dir | wc -l)
5831         [ $found -ne $left ] &&
5832                 error "can't find subdirs: found only $found, expected $left"
5833
5834         unlinkmany -d $dir/d $delete $left ||
5835                 error "unlink of second $left subdirs failed"
5836         # regardless of whether the backing filesystem tracks nlink accurately
5837         # or not, the nlink count shouldn't be more than "." and ".." here
5838         local after=$(stat -c %h $dir)
5839         [[ $after -gt 2 ]] && error "nlink after: $after > 2" ||
5840                 echo "nlink after: $after"
5841
5842         cleanup_print_lfs_df
5843 }
5844 run_test 51b "exceed 64k subdirectory nlink limit on create, verify unlink"
5845
5846 test_51d_sub() {
5847         local stripecount=$1
5848         local nfiles=$2
5849
5850         log "create files with stripecount=$stripecount"
5851         $LFS setstripe -C $stripecount $DIR/$tdir
5852         createmany -o $DIR/$tdir/t- $nfiles
5853         $LFS getstripe $DIR/$tdir > $TMP/$tfile
5854         for ((n = 0; n < $OSTCOUNT; n++)); do
5855                 objs[$n]=$(awk -vobjs=0 '($1 == '$n') { objs += 1 } \
5856                            END { printf("%0.0f", objs) }' $TMP/$tfile)
5857                 objs0[$n]=$(grep -A 1 idx $TMP/$tfile | awk -vobjs=0 \
5858                             '($1 == '$n') { objs += 1 } \
5859                             END { printf("%0.0f", objs) }')
5860                 log "OST$n has ${objs[$n]} objects, ${objs0[$n]} are index 0"
5861         done
5862         unlinkmany $DIR/$tdir/t- $nfiles
5863         rm  -f $TMP/$tfile
5864
5865         local nlast
5866         local min=4
5867         local max=6 # allow variance of (1 - $min/$max) = 33% by default
5868
5869         # For some combinations of stripecount and OSTCOUNT current code
5870         # is not ideal, and allocates 50% fewer *first* objects to some OSTs
5871         # than others. Rather than skipping this test entirely, check that
5872         # and keep testing to ensure imbalance does not get worse. LU-15282
5873         (( (OSTCOUNT == 6 && stripecount == 4) ||
5874            (OSTCOUNT == 10 && (stripecount == 4 || stripecount == 8)) ||
5875            (OSTCOUNT == 12 && (stripecount == 8 || stripecount == 9)))) && max=9
5876         for ((nlast=0, n = 1; n < $OSTCOUNT; nlast=n,n++)); do
5877                 (( ${objs[$n]} > ${objs[$nlast]} * 4 / 5 )) ||
5878                         { $LFS df && $LFS df -i &&
5879                         error "stripecount=$stripecount: " \
5880                               "OST $n has fewer objects vs. OST $nlast " \
5881                               "(${objs[$n]} < ${objs[$nlast]} x 4/5)"; }
5882                 (( ${objs[$n]} < ${objs[$nlast]} * 5 / 4 )) ||
5883                         { $LFS df && $LFS df -i &&
5884                         error "stripecount=$stripecount: " \
5885                               "OST $n has more objects vs. OST $nlast " \
5886                               "(${objs[$n]} > ${objs[$nlast]} x 5/4)"; }
5887
5888                 (( ${objs0[$n]} > ${objs0[$nlast]} * $min / $max )) ||
5889                         { $LFS df && $LFS df -i &&
5890                         error "stripecount=$stripecount: " \
5891                               "OST $n has fewer #0 objects vs. OST $nlast " \
5892                               "(${objs0[$n]} < ${objs0[$nlast]} x $min/$max)"; }
5893                 (( ${objs0[$n]} < ${objs0[$nlast]} * $max / $min )) ||
5894                         { $LFS df && $LFS df -i &&
5895                         error "stripecount=$stripecount: " \
5896                               "OST $n has more #0 objects vs. OST $nlast " \
5897                               "(${objs0[$n]} > ${objs0[$nlast]} x $max/$min)"; }
5898         done
5899 }
5900
5901 test_51d() {
5902         [ $PARALLEL == "yes" ] && skip "skip parallel run"
5903         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
5904
5905         local stripecount
5906         local per_ost=100
5907         local nfiles=$((per_ost * OSTCOUNT))
5908         local mdts=$(comma_list $(mdts_nodes))
5909         local param="osp.*.create_count"
5910         local qos_old=$(do_facet mds1 \
5911                 "$LCTL get_param -n lod.$FSNAME-*.qos_threshold_rr" | head -n 1)
5912
5913         do_nodes $mdts \
5914                 "$LCTL set_param lod.$FSNAME-*.qos_threshold_rr=100"
5915         stack_trap "do_nodes $mdts \
5916                 '$LCTL set_param lod.$FSNAME-*.qos_threshold_rr=${qos_old%%%}'"
5917
5918         test_mkdir $DIR/$tdir
5919         local dirstripes=$(lfs getdirstripe -c $DIR/$tdir)
5920         (( dirstripes > 0 )) || dirstripes=1
5921
5922         # Ensure enough OST objects precreated for tests to pass without
5923         # running out of objects.  This is an LOV r-r OST algorithm test,
5924         # not an OST object precreation test.
5925         local old=$(do_facet mds1 "$LCTL get_param -n $param" | head -n 1)
5926         (( old >= nfiles )) ||
5927         {
5928                 local create_count=$((nfiles * OSTCOUNT / dirstripes))
5929
5930                 do_nodes $mdts "$LCTL set_param $param=$create_count"
5931                 stack_trap "do_nodes $mdts $LCTL set_param $param=$old"
5932
5933                 # trigger precreation from all MDTs for all OSTs
5934                 for ((i = 0; i < $MDSCOUNT * 2; i++ )); do
5935                         $LFS setstripe -c -1 $DIR/$tdir/wide.$i
5936                 done
5937         }
5938
5939         for ((stripecount = 3; stripecount <= $OSTCOUNT; stripecount++)); do
5940                 sleep 8  # allow object precreation to catch up
5941                 test_51d_sub $stripecount $nfiles
5942         done
5943 }
5944 run_test 51d "check LOV round-robin OST object distribution"
5945
5946 test_51e() {
5947         if [ "$mds1_FSTYPE" != ldiskfs ]; then
5948                 skip_env "ldiskfs only test"
5949         fi
5950
5951         test_mkdir -c1 $DIR/$tdir
5952         test_mkdir -c1 $DIR/$tdir/d0
5953
5954         touch $DIR/$tdir/d0/foo
5955         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
5956                 error "file exceed 65000 nlink limit!"
5957         unlinkmany $DIR/$tdir/d0/f- 65001
5958         return 0
5959 }
5960 run_test 51e "check file nlink limit"
5961
5962 test_51f() {
5963         test_mkdir $DIR/$tdir
5964
5965         local max=100000
5966         local ulimit_old=$(ulimit -n)
5967         local spare=20 # number of spare fd's for scripts/libraries, etc.
5968         local mdt=$($LFS getstripe -m $DIR/$tdir)
5969         local numfree=$($LFS df -i $DIR/$tdir | awk '/MDT:'$mdt'/ { print $4 }')
5970
5971         echo "MDT$mdt numfree=$numfree, max=$max"
5972         [[ $numfree -gt $max ]] && numfree=$max || numfree=$((numfree * 7 / 8))
5973         if [ $((numfree + spare)) -gt $ulimit_old ]; then
5974                 while ! ulimit -n $((numfree + spare)); do
5975                         numfree=$((numfree * 3 / 4))
5976                 done
5977                 echo "changed ulimit from $ulimit_old to $((numfree + spare))"
5978         else
5979                 echo "left ulimit at $ulimit_old"
5980         fi
5981
5982         createmany -o -k -t 120 $DIR/$tdir/f $numfree || {
5983                 unlinkmany $DIR/$tdir/f $numfree
5984                 error "create+open $numfree files in $DIR/$tdir failed"
5985         }
5986         ulimit -n $ulimit_old
5987
5988         # if createmany exits at 120s there will be fewer than $numfree files
5989         unlinkmany $DIR/$tdir/f $numfree || true
5990 }
5991 run_test 51f "check many open files limit"
5992
5993 test_52a() {
5994         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
5995         test_mkdir $DIR/$tdir
5996         touch $DIR/$tdir/foo
5997         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
5998         echo bar >> $DIR/$tdir/foo || error "append bar failed"
5999         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
6000         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
6001         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
6002                                         error "link worked"
6003         echo foo >> $DIR/$tdir/foo || error "append foo failed"
6004         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
6005         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
6006                                                      error "lsattr"
6007         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
6008         cp -r $DIR/$tdir $TMP/
6009         rm -fr $DIR/$tdir $TMP/$tdir || error "cleanup rm failed"
6010 }
6011 run_test 52a "append-only flag test (should return errors)"
6012
6013 test_52b() {
6014         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
6015         test_mkdir $DIR/$tdir
6016         touch $DIR/$tdir/foo
6017         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
6018         cat test > $DIR/$tdir/foo && error "cat test worked"
6019         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
6020         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
6021         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
6022                                         error "link worked"
6023         echo foo >> $DIR/$tdir/foo && error "echo worked"
6024         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
6025         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
6026         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
6027         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
6028                                                         error "lsattr"
6029         chattr -i $DIR/$tdir/foo || error "chattr failed"
6030
6031         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
6032 }
6033 run_test 52b "immutable flag test (should return errors) ======="
6034
6035 test_53() {
6036         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6037         remote_mds_nodsh && skip "remote MDS with nodsh"
6038         remote_ost_nodsh && skip "remote OST with nodsh"
6039
6040         local param
6041         local param_seq
6042         local ostname
6043         local mds_last
6044         local mds_last_seq
6045         local ost_last
6046         local ost_last_seq
6047         local ost_last_id
6048         local ostnum
6049         local node
6050         local found=false
6051         local support_last_seq=true
6052
6053         [[ $MDS1_VERSION -ge $(version_code 2.3.60) ]] ||
6054                 support_last_seq=false
6055
6056         # only test MDT0000
6057         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
6058         local value
6059         for value in $(do_facet $SINGLEMDS \
6060                        $LCTL get_param osp.$mdtosc.prealloc_last_id) ; do
6061                 param=$(echo ${value[0]} | cut -d "=" -f1)
6062                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
6063
6064                 if $support_last_seq; then
6065                         param_seq=$(echo $param |
6066                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
6067                         mds_last_seq=$(do_facet $SINGLEMDS \
6068                                        $LCTL get_param -n $param_seq)
6069                 fi
6070                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
6071
6072                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
6073                 node=$(facet_active_host ost$((ostnum+1)))
6074                 param="obdfilter.$ostname.last_id"
6075                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
6076                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
6077                         ost_last_id=$ost_last
6078
6079                         if $support_last_seq; then
6080                                 ost_last_id=$(echo $ost_last |
6081                                               awk -F':' '{print $2}' |
6082                                               sed -e "s/^0x//g")
6083                                 ost_last_seq=$(echo $ost_last |
6084                                                awk -F':' '{print $1}')
6085                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
6086                         fi
6087
6088                         if [[ $ost_last_id != $mds_last ]]; then
6089                                 error "$ost_last_id != $mds_last"
6090                         else
6091                                 found=true
6092                                 break
6093                         fi
6094                 done
6095         done
6096         $found || error "can not match last_seq/last_id for $mdtosc"
6097         return 0
6098 }
6099 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
6100
6101 test_54a() {
6102         perl -MSocket -e ';' || skip "no Socket perl module installed"
6103
6104         $SOCKETSERVER $DIR/socket ||
6105                 error "$SOCKETSERVER $DIR/socket failed: $?"
6106         $SOCKETCLIENT $DIR/socket ||
6107                 error "$SOCKETCLIENT $DIR/socket failed: $?"
6108         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
6109 }
6110 run_test 54a "unix domain socket test =========================="
6111
6112 test_54b() {
6113         f="$DIR/f54b"
6114         mknod $f c 1 3
6115         chmod 0666 $f
6116         dd if=/dev/zero of=$f bs=$PAGE_SIZE count=1
6117 }
6118 run_test 54b "char device works in lustre ======================"
6119
6120 find_loop_dev() {
6121         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
6122         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
6123         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
6124
6125         for i in $(seq 3 7); do
6126                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
6127                 LOOPDEV=$LOOPBASE$i
6128                 LOOPNUM=$i
6129                 break
6130         done
6131 }
6132
6133 cleanup_54c() {
6134         local rc=0
6135         loopdev="$DIR/loop54c"
6136
6137         trap 0
6138         $UMOUNT $DIR/$tdir || rc=$?
6139         losetup -d $loopdev || true
6140         losetup -d $LOOPDEV || true
6141         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
6142         return $rc
6143 }
6144
6145 test_54c() {
6146         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6147
6148         loopdev="$DIR/loop54c"
6149
6150         find_loop_dev
6151         [ -z "$LOOPNUM" ] && skip_env "couldn't find empty loop device"
6152         trap cleanup_54c EXIT
6153         mknod $loopdev b 7 $LOOPNUM
6154         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
6155         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE seek=1024 count=1 > /dev/null
6156         losetup $loopdev $DIR/$tfile ||
6157                 error "can't set up $loopdev for $DIR/$tfile"
6158         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
6159         test_mkdir $DIR/$tdir
6160         mount -t ext2 $loopdev $DIR/$tdir ||
6161                 error "error mounting $loopdev on $DIR/$tdir"
6162         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$PAGE_SIZE count=30 ||
6163                 error "dd write"
6164         df $DIR/$tdir
6165         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$PAGE_SIZE count=30 ||
6166                 error "dd read"
6167         cleanup_54c
6168 }
6169 run_test 54c "block device works in lustre ====================="
6170
6171 test_54d() {
6172         local pipe="$DIR/$tfile.pipe"
6173         local string="aaaaaa"
6174
6175         mknod $pipe p
6176         echo -n "$string" > $pipe &
6177         local result=$(cat $pipe)
6178         [[ "$result" == "$string" ]] || error "$result != $string"
6179 }
6180 run_test 54d "fifo device works in lustre ======================"
6181
6182 test_54e() {
6183         f="$DIR/f54e"
6184         string="aaaaaa"
6185         cp -aL /dev/console $f
6186         echo $string > $f || error "echo $string to $f failed"
6187 }
6188 run_test 54e "console/tty device works in lustre ======================"
6189
6190 test_56a() {
6191         local numfiles=3
6192         local numdirs=2
6193         local dir=$DIR/$tdir
6194
6195         rm -rf $dir
6196         test_mkdir -p $dir/dir
6197         for i in $(seq $numfiles); do
6198                 touch $dir/file$i
6199                 touch $dir/dir/file$i
6200         done
6201
6202         local numcomp=$($LFS getstripe --component-count $dir)
6203
6204         [[ $numcomp == 0 ]] && numcomp=1
6205
6206         # test lfs getstripe with --recursive
6207         local filenum=$($LFS getstripe -r $dir | egrep -c "obdidx|l_ost_idx")
6208
6209         [[ $filenum -eq $((numfiles * 2)) ]] ||
6210                 error "$LFS getstripe -r: found $filenum != $((numfiles * 2))"
6211         filenum=$($LFS getstripe $dir | egrep -c "obdidx|l_ost_idx")
6212         [[ $filenum -eq $numfiles ]] ||
6213                 error "$LFS getstripe $dir: found $filenum, not $numfiles"
6214         echo "$LFS getstripe showed obdidx or l_ost_idx"
6215
6216         # test lfs getstripe with file instead of dir
6217         filenum=$($LFS getstripe $dir/file1 | egrep -c "obdidx|l_ost_idx")
6218         [[ $filenum -eq 1 ]] ||
6219                 error "$LFS getstripe $dir/file1: found $filenum, not 1"
6220         echo "$LFS getstripe file1 passed"
6221
6222         #test lfs getstripe with --verbose
6223         filenum=$($LFS getstripe --verbose $dir | grep -c lmm_magic)
6224         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
6225                 error "$LFS getstripe --verbose $dir: "\
6226                       "got $filenum want $((numfiles * numcomp)) lmm_magic"
6227         [[ $($LFS getstripe $dir | grep -c lmm_magic) -eq 0 ]] ||
6228                 error "$LFS getstripe $dir: showed lmm_magic"
6229
6230         #test lfs getstripe with -v prints lmm_fid
6231         filenum=$($LFS getstripe -v $dir | grep -c lmm_fid)
6232         local countfids=$((numdirs + numfiles * numcomp))
6233         [[ $filenum -eq $countfids ]] ||
6234                 error "$LFS getstripe -v $dir: "\
6235                       "got $filenum want $countfids lmm_fid"
6236         [[ $($LFS getstripe $dir | grep -c lmm_fid) -eq 0 ]] ||
6237                 error "$LFS getstripe $dir: showed lmm_fid by default"
6238         echo "$LFS getstripe --verbose passed"
6239
6240         #check for FID information
6241         local fid1=$($LFS getstripe --fid $dir/file1)
6242         local fid2=$($LFS getstripe --verbose $dir/file1 |
6243                      awk '/lmm_fid: / { print $2; exit; }')
6244         local fid3=$($LFS path2fid $dir/file1)
6245
6246         [ "$fid1" != "$fid2" ] &&
6247                 error "getstripe --fid '$fid1' != getstripe --verbose '$fid2'"
6248         [ "$fid1" != "$fid3" ] &&
6249                 error "getstripe --fid '$fid1' != lfs path2fid '$fid3'"
6250         echo "$LFS getstripe --fid passed"
6251
6252         #test lfs getstripe with --obd
6253         $LFS getstripe --obd wrong_uuid $dir 2>&1 | grep -q "unknown obduuid" ||
6254                 error "$LFS getstripe --obd wrong_uuid: should return error"
6255
6256         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
6257
6258         local ostidx=1
6259         local obduuid=$(ostuuid_from_index $ostidx)
6260         local found=$($LFS getstripe -r --obd $obduuid $dir |
6261                 grep 'lmm_stripe_offset:' | grep -c " $ostidx\$")
6262
6263         filenum=$($LFS getstripe -ir $dir | grep -c "^$ostidx\$")
6264         [[ $($LFS getstripe -id $dir) -ne $ostidx ]] ||
6265                 ((filenum--))
6266         [[ $($LFS getstripe -id $dir/dir) -ne $ostidx ]] ||
6267                 ((filenum--))
6268
6269         [[ $found -eq $filenum ]] ||
6270                 error "$LFS getstripe --obd: found $found expect $filenum"
6271         [[ $($LFS getstripe -r -v --obd $obduuid $dir |
6272                 sed '/^[         ]*'${ostidx}'[  ]/d' |
6273                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
6274                 error "$LFS getstripe --obd: should not show file on other obd"
6275         echo "$LFS getstripe --obd passed"
6276 }
6277 run_test 56a "check $LFS getstripe"
6278
6279 test_56b() {
6280         local dir=$DIR/$tdir
6281         local numdirs=3
6282
6283         test_mkdir $dir
6284         for i in $(seq $numdirs); do
6285                 test_mkdir $dir/dir$i
6286         done
6287
6288         # test lfs getdirstripe default mode is non-recursion, which is
6289         # different from lfs getstripe
6290         local dircnt=$($LFS getdirstripe $dir | grep -c lmv_stripe_count)
6291
6292         [[ $dircnt -eq 1 ]] ||
6293                 error "$LFS getdirstripe: found $dircnt, not 1"
6294         dircnt=$($LFS getdirstripe --recursive $dir |
6295                 grep -c lmv_stripe_count)
6296         [[ $dircnt -eq $((numdirs + 1)) ]] ||
6297                 error "$LFS getdirstripe -r: $dircnt, != $((numdirs + 1))"
6298 }
6299 run_test 56b "check $LFS getdirstripe"
6300
6301 test_56c() {
6302         remote_ost_nodsh && skip "remote OST with nodsh"
6303
6304         local ost_idx=0
6305         local ost_name=$(ostname_from_index $ost_idx)
6306         local old_status=$(ost_dev_status $ost_idx)
6307         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
6308
6309         [[ -z "$old_status" ]] ||
6310                 skip_env "OST $ost_name is in $old_status status"
6311
6312         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=1
6313         [[ $OST1_VERSION -lt $(version_code 2.12.55) ]] || do_facet ost1 \
6314                 $LCTL set_param -n obdfilter.$ost_name.no_precreate=1
6315         if [[ $OST1_VERSION -ge $(version_code 2.12.57) ]]; then
6316                 save_lustre_params ost1 osd-*.$ost_name.nonrotational > $p
6317                 do_facet ost1 $LCTL set_param -n osd-*.$ost_name.nonrotational=1
6318         fi
6319
6320         [[ $($LFS df -v $MOUNT |& grep -c "inactive device") -eq 0 ]] ||
6321                 error "$LFS df -v showing inactive devices"
6322         sleep_maxage
6323
6324         local new_status=$(ost_dev_status $ost_idx $MOUNT -v)
6325
6326         [[ "$new_status" =~ "D" ]] ||
6327                 error "$ost_name status is '$new_status', missing 'D'"
6328         if [[ $OST1_VERSION -ge $(version_code 2.12.55) ]]; then
6329                 [[ "$new_status" =~ "N" ]] ||
6330                         error "$ost_name status is '$new_status', missing 'N'"
6331         fi
6332         if [[ $OST1_VERSION -ge $(version_code 2.12.57) ]]; then
6333                 [[ "$new_status" =~ "f" ]] ||
6334                         error "$ost_name status is '$new_status', missing 'f'"
6335         fi
6336
6337         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=0
6338         [[ $OST1_VERSION -lt $(version_code 2.12.55) ]] || do_facet ost1 \
6339                 $LCTL set_param -n obdfilter.$ost_name.no_precreate=0
6340         [[ -z "$p" ]] && restore_lustre_params < $p || true
6341         sleep_maxage
6342
6343         new_status=$(ost_dev_status $ost_idx)
6344         [[ ! "$new_status" =~ "D" && ! "$new_status" =~ "N" ]] ||
6345                 error "$ost_name status is '$new_status', has 'D' and/or 'N'"
6346         # can't check 'f' as devices may actually be on flash
6347 }
6348 run_test 56c "check 'lfs df' showing device status"
6349
6350 test_56d() {
6351         local mdts=$($LFS df -v $MOUNT | grep -c MDT)
6352         local osts=$($LFS df -v $MOUNT | grep -c OST)
6353
6354         $LFS df $MOUNT
6355
6356         (( mdts == MDSCOUNT )) ||
6357                 error "lfs df -v showed $mdts MDTs, not $MDSCOUNT"
6358         (( osts == OSTCOUNT )) ||
6359                 error "lfs df -v showed $osts OSTs, not $OSTCOUNT"
6360 }
6361 run_test 56d "'lfs df -v' prints only configured devices"
6362
6363 test_56e() {
6364         err_enoent=2 # No such file or directory
6365         err_eopnotsupp=95 # Operation not supported
6366
6367         enoent_mnt=/pmt1 # Invalid dentry. Path not present
6368         notsup_mnt=/tmp  # Valid dentry, but Not a lustreFS
6369
6370         # Check for handling of path not exists
6371         output=$($LFS df $enoent_mnt 2>&1)
6372         ret=$?
6373
6374         fs=$(echo $output | awk -F: '{print $2}' | awk '{print $3}' | tr -d \')
6375         [[ $fs = $enoent_mnt && $ret -eq $err_enoent ]] ||
6376                 error "expect failure $err_enoent, not $ret"
6377
6378         # Check for handling of non-Lustre FS
6379         output=$($LFS df $notsup_mnt)
6380         ret=$?
6381
6382         fs=$(echo $output | awk '{print $1}' | awk -F: '{print $2}')
6383         [[ $fs = $notsup_mnt && $ret -eq $err_eopnotsupp ]] ||
6384                 error "expect success $err_eopnotsupp, not $ret"
6385
6386         # Check for multiple LustreFS argument
6387         output=$($LFS df $MOUNT $MOUNT $MOUNT | grep -c "filesystem_summary:")
6388         ret=$?
6389
6390         [[ $output -eq 3 && $ret -eq 0 ]] ||
6391                 error "expect success 3, not $output, rc = $ret"
6392
6393         # Check for correct non-Lustre FS handling among multiple
6394         # LustreFS argument
6395         output=$($LFS df $MOUNT $notsup_mnt $MOUNT |
6396                 grep -c "filesystem_summary:"; exit ${PIPESTATUS[0]})
6397         ret=$?
6398
6399         [[ $output -eq 2 && $ret -eq $err_eopnotsupp ]] ||
6400                 error "expect success 2, not $output, rc = $ret"
6401 }
6402 run_test 56e "'lfs df' Handle non LustreFS & multiple LustreFS"
6403
6404 NUMFILES=3
6405 NUMDIRS=3
6406 setup_56() {
6407         local local_tdir="$1"
6408         local local_numfiles="$2"
6409         local local_numdirs="$3"
6410         local dir_params="$4"
6411         local dir_stripe_params="$5"
6412
6413         if [ ! -d "$local_tdir" ] ; then
6414                 test_mkdir -p $dir_stripe_params $local_tdir
6415                 [ "$dir_params" ] && $LFS setstripe $dir_params $local_tdir
6416                 for i in $(seq $local_numfiles) ; do
6417                         touch $local_tdir/file$i
6418                 done
6419                 for i in $(seq $local_numdirs) ; do
6420                         test_mkdir $dir_stripe_params $local_tdir/dir$i
6421                         for j in $(seq $local_numfiles) ; do
6422                                 touch $local_tdir/dir$i/file$j
6423                         done
6424                 done
6425         fi
6426 }
6427
6428 setup_56_special() {
6429         local local_tdir=$1
6430         local local_numfiles=$2
6431         local local_numdirs=$3
6432
6433         setup_56 $local_tdir $local_numfiles $local_numdirs
6434
6435         if [ ! -e "$local_tdir/loop${local_numfiles}b" ] ; then
6436                 for i in $(seq $local_numfiles) ; do
6437                         mknod $local_tdir/loop${i}b b 7 $i
6438                         mknod $local_tdir/null${i}c c 1 3
6439                         ln -s $local_tdir/file1 $local_tdir/link${i}
6440                 done
6441                 for i in $(seq $local_numdirs) ; do
6442                         mknod $local_tdir/dir$i/loop${i}b b 7 $i
6443                         mknod $local_tdir/dir$i/null${i}c c 1 3
6444                         ln -s $local_tdir/dir$i/file1 $local_tdir/dir$i/link${i}
6445                 done
6446         fi
6447 }
6448
6449 test_56g() {
6450         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
6451         local expected=$(($NUMDIRS + 2))
6452
6453         setup_56 $dir $NUMFILES $NUMDIRS
6454
6455         # test lfs find with -name
6456         for i in $(seq $NUMFILES) ; do
6457                 local nums=$($LFS find -name "*$i" $dir | wc -l)
6458
6459                 [ $nums -eq $expected ] ||
6460                         error "lfs find -name '*$i' $dir wrong: "\
6461                               "found $nums, expected $expected"
6462         done
6463 }
6464 run_test 56g "check lfs find -name"
6465
6466 test_56h() {
6467         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
6468         local expected=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
6469
6470         setup_56 $dir $NUMFILES $NUMDIRS
6471
6472         # test lfs find with ! -name
6473         for i in $(seq $NUMFILES) ; do
6474                 local nums=$($LFS find ! -name "*$i" $dir | wc -l)
6475
6476                 [ $nums -eq $expected ] ||
6477                         error "lfs find ! -name '*$i' $dir wrong: "\
6478                               "found $nums, expected $expected"
6479         done
6480 }
6481 run_test 56h "check lfs find ! -name"
6482
6483 test_56i() {
6484         local dir=$DIR/$tdir
6485
6486         test_mkdir $dir
6487
6488         local cmd="$LFS find -ost $(ostuuid_from_index 0 $dir) $dir"
6489         local out=$($cmd)
6490
6491         [ -z "$out" ] || error "'$cmd' returned directory '$out'"
6492 }
6493 run_test 56i "check 'lfs find -ost UUID' skips directories"
6494
6495 test_56j() {
6496         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
6497
6498         setup_56_special $dir $NUMFILES $NUMDIRS
6499
6500         local expected=$((NUMDIRS + 1))
6501         local cmd="$LFS find -type d $dir"
6502         local nums=$($cmd | wc -l)
6503
6504         [ $nums -eq $expected ] ||
6505                 error "'$cmd' wrong: found $nums, expected $expected"
6506 }
6507 run_test 56j "check lfs find -type d"
6508
6509 test_56k() {
6510         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
6511
6512         setup_56_special $dir $NUMFILES $NUMDIRS
6513
6514         local expected=$(((NUMDIRS + 1) * NUMFILES))
6515         local cmd="$LFS find -type f $dir"
6516         local nums=$($cmd | wc -l)
6517
6518         [ $nums -eq $expected ] ||
6519                 error "'$cmd' wrong: found $nums, expected $expected"
6520 }
6521 run_test 56k "check lfs find -type f"
6522
6523 test_56l() {
6524         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
6525
6526         setup_56_special $dir $NUMFILES $NUMDIRS
6527
6528         local expected=$((NUMDIRS + NUMFILES))
6529         local cmd="$LFS find -type b $dir"
6530         local nums=$($cmd | wc -l)
6531
6532         [ $nums -eq $expected ] ||
6533                 error "'$cmd' wrong: found $nums, expected $expected"
6534 }
6535 run_test 56l "check lfs find -type b"
6536
6537 test_56m() {
6538         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
6539
6540         setup_56_special $dir $NUMFILES $NUMDIRS
6541
6542         local expected=$((NUMDIRS + NUMFILES))
6543         local cmd="$LFS find -type c $dir"
6544         local nums=$($cmd | wc -l)
6545         [ $nums -eq $expected ] ||
6546                 error "'$cmd' wrong: found $nums, expected $expected"
6547 }
6548 run_test 56m "check lfs find -type c"
6549
6550 test_56n() {
6551         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
6552         setup_56_special $dir $NUMFILES $NUMDIRS
6553
6554         local expected=$((NUMDIRS + NUMFILES))
6555         local cmd="$LFS find -type l $dir"
6556         local nums=$($cmd | wc -l)
6557
6558         [ $nums -eq $expected ] ||
6559                 error "'$cmd' wrong: found $nums, expected $expected"
6560 }
6561 run_test 56n "check lfs find -type l"
6562
6563 test_56o() {
6564         local dir=$DIR/$tdir
6565
6566         setup_56 $dir $NUMFILES $NUMDIRS
6567         utime $dir/file1 > /dev/null || error "utime (1)"
6568         utime $dir/file2 > /dev/null || error "utime (2)"
6569         utime $dir/dir1 > /dev/null || error "utime (3)"
6570         utime $dir/dir2 > /dev/null || error "utime (4)"
6571         utime $dir/dir1/file1 > /dev/null || error "utime (5)"
6572         dd if=/dev/zero count=1 >> $dir/dir1/file1 && sync
6573
6574         local expected=4
6575         local nums=$($LFS find -mtime +0 $dir | wc -l)
6576
6577         [ $nums -eq $expected ] ||
6578                 error "lfs find -mtime +0 $dir: found $nums expect $expected"
6579
6580         expected=12
6581         cmd="$LFS find -mtime 0 $dir"
6582         nums=$($cmd | wc -l)
6583         [ $nums -eq $expected ] ||
6584                 error "'$cmd' wrong: found $nums, expected $expected"
6585 }
6586 run_test 56o "check lfs find -mtime for old files"
6587
6588 test_56ob() {
6589         local dir=$DIR/$tdir
6590         local expected=1
6591         local count=0
6592
6593         # just to make sure there is something that won't be found
6594         test_mkdir $dir
6595         touch $dir/$tfile.now
6596
6597         for age in year week day hour min; do
6598                 count=$((count + 1))
6599
6600                 touch $dir/$tfile-a.$age $dir/$tfile-m.$age
6601                 touch --date="$count $age ago" -a $dir/$tfile-a.$age
6602                 touch --date="$count $age ago" -m $dir/$tfile-m.$age
6603
6604                 local cmd="$LFS find $dir -mtime $count${age:0:1}"
6605                 local nums=$($cmd | wc -l)
6606                 [ $nums -eq $expected ] ||
6607                         error "'$cmd' wrong: found $nums, expected $expected"
6608
6609                 cmd="$LFS find $dir -atime $count${age:0:1}"
6610                 nums=$($cmd | wc -l)
6611                 [ $nums -eq $expected ] ||
6612                         error "'$cmd' wrong: found $nums, expected $expected"
6613         done
6614
6615         sleep 2
6616         cmd="$LFS find $dir -ctime +1s -type f"
6617         nums=$($cmd | wc -l)
6618         (( $nums == $count * 2 + 1)) ||
6619                 error "'$cmd' wrong: found $nums, expected $((count * 2 + 1))"
6620 }
6621 run_test 56ob "check lfs find -atime -mtime -ctime with units"
6622
6623 test_newerXY_base() {
6624         local x=$1
6625         local y=$2
6626         local dir=$DIR/$tdir
6627         local ref
6628         local negref
6629
6630         if [ $y == "t" ]; then
6631                 if [ $x == "b" ]; then
6632                         ref=\"$(do_facet mds1 date +"%Y-%m-%d\ %H:%M:%S")\"
6633                 else
6634                         ref=\"$(date +"%Y-%m-%d %H:%M:%S")\"
6635                 fi
6636         else
6637                 ref=$DIR/$tfile.newer.$x$y
6638                 touch $ref || error "touch $ref failed"
6639         fi
6640
6641         echo "before = $ref"
6642         sleep 2
6643         setup_56 $dir $NUMFILES $NUMDIRS "-i0 -c1" "-i0 -c1"
6644         sleep 2
6645         if [ $y == "t" ]; then
6646                 if [ $x == "b" ]; then
6647                         negref=\"$(do_facet mds1 date +"%Y-%m-%d\ %H:%M:%S")\"
6648                 else
6649                         negref=\"$(date +"%Y-%m-%d %H:%M:%S")\"
6650                 fi
6651         else
6652                 negref=$DIR/$tfile.negnewer.$x$y
6653                 touch $negref || error "touch $negref failed"
6654         fi
6655
6656         echo "after = $negref"
6657         local cmd="$LFS find $dir -newer$x$y $ref"
6658         local nums=$(eval $cmd | wc -l)
6659         local expected=$(((NUMFILES + 2) * NUMDIRS + 1))
6660
6661         [ $nums -eq $expected ] || { ls -lauR --full-time $dir ;
6662                 error "'$cmd' wrong: found $nums newer, expected $expected"  ; }
6663
6664         cmd="$LFS find $dir ! -newer$x$y $negref"
6665         nums=$(eval $cmd | wc -l)
6666         [ $nums -eq $expected ] || { ls -lauR --full-time $dir ;
6667                 error "'$cmd' wrong: found $nums older, expected $expected"  ; }
6668
6669         cmd="$LFS find $dir -newer$x$y $ref ! -newer$x$y $negref"
6670         nums=$(eval $cmd | wc -l)
6671         [ $nums -eq $expected ] || { ls -lauR --full-time $dir ;
6672                 error "'$cmd' wrong: found $nums between, expected $expected"; }
6673
6674         rm -rf $DIR/*
6675 }
6676
6677 test_56oc() {
6678         test_newerXY_base "a" "a"
6679         test_newerXY_base "a" "m"
6680         test_newerXY_base "a" "c"
6681         test_newerXY_base "m" "a"
6682         test_newerXY_base "m" "m"
6683         test_newerXY_base "m" "c"
6684         test_newerXY_base "c" "a"
6685         test_newerXY_base "c" "m"
6686         test_newerXY_base "c" "c"
6687
6688         [[ -n "$sles_version" ]] &&
6689                 echo "skip timestamp tests on SLES, LU-13665" && return 0
6690
6691         test_newerXY_base "a" "t"
6692         test_newerXY_base "m" "t"
6693         test_newerXY_base "c" "t"
6694
6695         [[ $MDS1_VERSION -lt $(version_code 2.13.54) ||
6696            $CLIENT_VERSION -lt $(version_code 2.13.54) ]] &&
6697                 ! btime_supported && echo "btime unsupported" && return 0
6698
6699         test_newerXY_base "b" "b"
6700         test_newerXY_base "b" "t"
6701 }
6702 run_test 56oc "check lfs find -newerXY work"
6703
6704 btime_supported() {
6705         local dir=$DIR/$tdir
6706         local rc
6707
6708         mkdir -p $dir
6709         touch $dir/$tfile
6710         $LFS find $dir -btime -1d -type f
6711         rc=$?
6712         rm -rf $dir
6713         return $rc
6714 }
6715
6716 test_56od() {
6717         [ $MDS1_VERSION -lt $(version_code 2.13.53) ] &&
6718                 ! btime_supported && skip "btime unsupported on MDS"
6719
6720         [ $CLIENT_VERSION -lt $(version_code 2.13.53) ] &&
6721                 ! btime_supported && skip "btime unsupported on clients"
6722
6723         local dir=$DIR/$tdir
6724         local ref=$DIR/$tfile.ref
6725         local negref=$DIR/$tfile.negref
6726
6727         mkdir $dir || error "mkdir $dir failed"
6728         touch $dir/$tfile.n1 || error "touch $dir/$tfile.n1 failed"
6729         touch $dir/$tfile.n2 || error "touch $dir/$tfile.n2 failed"
6730         mkdir $dir/$tdir.n1 || error "mkdir $dir/$tdir.n1 failed"
6731         mkdir $dir/$tdir.n2 || error "mkdir $dir/$tdir.n2 failed"
6732         touch $ref || error "touch $ref failed"
6733         # sleep 3 seconds at least
6734         sleep 3
6735
6736         local before=$(do_facet mds1 date +%s)
6737         local skew=$(($(date +%s) - before + 1))
6738
6739         if (( skew < 0 && skew > -5 )); then
6740                 sleep $((0 - skew + 1))
6741                 skew=0
6742         fi
6743
6744         # Set the dir stripe params to limit files all on MDT0,
6745         # otherwise we need to calc the max clock skew between
6746         # the client and MDTs.
6747         setup_56 $dir/d.btime $NUMFILES $NUMDIRS "-i0 -c1" "-i0 -c1"
6748         sleep 2
6749         touch $negref || error "touch $negref failed"
6750
6751         local cmd="$LFS find $dir -newerbb $ref ! -newerbb $negref -type f"
6752         local nums=$($cmd | wc -l)
6753         local expected=$(((NUMFILES + 1) * NUMDIRS))
6754
6755         [ $nums -eq $expected ] ||
6756                 error "'$cmd' wrong: found $nums, expected $expected"
6757
6758         cmd="$LFS find $dir -newerbb $ref ! -newerbb $negref -type d"
6759         nums=$($cmd | wc -l)
6760         expected=$((NUMFILES + 1))
6761         [ $nums -eq $expected ] ||
6762                 error "'$cmd' wrong: found $nums, expected $expected"
6763
6764         [ $skew -lt 0 ] && return
6765
6766         local after=$(do_facet mds1 date +%s)
6767         local age=$((after - before + 1 + skew))
6768
6769         cmd="$LFS find $dir -btime -${age}s -type f"
6770         nums=$($cmd | wc -l)
6771         expected=$(((NUMFILES + 1) * NUMDIRS))
6772
6773         echo "Clock skew between client and server: $skew, age:$age"
6774         [ $nums -eq $expected ] ||
6775                 error "'$cmd' wrong: found $nums, expected $expected"
6776
6777         expected=$(($NUMDIRS + 1))
6778         cmd="$LFS find $dir -btime -${age}s -type d"
6779         nums=$($cmd | wc -l)
6780         [ $nums -eq $expected ] ||
6781                 error "'$cmd' wrong: found $nums, expected $expected"
6782         rm -f $ref $negref || error "Failed to remove $ref $negref"
6783 }
6784 run_test 56od "check lfs find -btime with units"
6785
6786 test_56p() {
6787         [ $RUNAS_ID -eq $UID ] &&
6788                 skip_env "RUNAS_ID = UID = $UID -- skipping"
6789
6790         local dir=$DIR/$tdir
6791
6792         setup_56 $dir $NUMFILES $NUMDIRS
6793         chown $RUNAS_ID $dir/file* || error "chown $DIR/${tdir}g/file$i failed"
6794
6795         local expected=$NUMFILES
6796         local cmd="$LFS find -uid $RUNAS_ID $dir"
6797         local nums=$($cmd | wc -l)
6798
6799         [ $nums -eq $expected ] ||
6800                 error "'$cmd' wrong: found $nums, expected $expected"
6801
6802         expected=$(((NUMFILES + 1) * NUMDIRS + 1))
6803         cmd="$LFS find ! -uid $RUNAS_ID $dir"
6804         nums=$($cmd | wc -l)
6805         [ $nums -eq $expected ] ||
6806                 error "'$cmd' wrong: found $nums, expected $expected"
6807 }
6808 run_test 56p "check lfs find -uid and ! -uid"
6809
6810 test_56q() {
6811         [ $RUNAS_ID -eq $UID ] &&
6812                 skip_env "RUNAS_ID = UID = $UID -- skipping"
6813
6814         local dir=$DIR/$tdir
6815
6816         setup_56 $dir $NUMFILES $NUMDIRS
6817         chgrp $RUNAS_GID $dir/file* || error "chown $dir/file$i failed"
6818
6819         local expected=$NUMFILES
6820         local cmd="$LFS find -gid $RUNAS_GID $dir"
6821         local nums=$($cmd | wc -l)
6822
6823         [ $nums -eq $expected ] ||
6824                 error "'$cmd' wrong: found $nums, expected $expected"
6825
6826         expected=$(( ($NUMFILES+1) * $NUMDIRS + 1))
6827         cmd="$LFS find ! -gid $RUNAS_GID $dir"
6828         nums=$($cmd | wc -l)
6829         [ $nums -eq $expected ] ||
6830                 error "'$cmd' wrong: found $nums, expected $expected"
6831 }
6832 run_test 56q "check lfs find -gid and ! -gid"
6833
6834 test_56r() {
6835         local dir=$DIR/$tdir
6836
6837         setup_56 $dir $NUMFILES $NUMDIRS
6838
6839         local expected=12
6840         local cmd="$LFS find -size 0 -type f -lazy $dir"
6841         local nums=$($cmd | wc -l)
6842
6843         [ $nums -eq $expected ] ||
6844                 error "'$cmd' wrong: found $nums, expected $expected"
6845         cmd="$LFS find -size 0 -type f $dir"
6846         nums=$($cmd | wc -l)
6847         [ $nums -eq $expected ] ||
6848                 error "'$cmd' wrong: found $nums, expected $expected"
6849
6850         expected=0
6851         cmd="$LFS find ! -size 0 -type f -lazy $dir"
6852         nums=$($cmd | wc -l)
6853         [ $nums -eq $expected ] ||
6854                 error "'$cmd' wrong: found $nums, expected $expected"
6855         cmd="$LFS find ! -size 0 -type f $dir"
6856         nums=$($cmd | wc -l)
6857         [ $nums -eq $expected ] ||
6858                 error "'$cmd' wrong: found $nums, expected $expected"
6859
6860         echo "test" > $dir/$tfile
6861         echo "test2" > $dir/$tfile.2 && sync
6862         expected=1
6863         cmd="$LFS find -size 5 -type f -lazy $dir"
6864         nums=$($cmd | wc -l)
6865         [ $nums -eq $expected ] ||
6866                 error "'$cmd' wrong: found $nums, expected $expected"
6867         cmd="$LFS find -size 5 -type f $dir"
6868         nums=$($cmd | wc -l)
6869         [ $nums -eq $expected ] ||
6870                 error "'$cmd' wrong: found $nums, expected $expected"
6871
6872         expected=1
6873         cmd="$LFS find -size +5 -type f -lazy $dir"
6874         nums=$($cmd | wc -l)
6875         [ $nums -eq $expected ] ||
6876                 error "'$cmd' wrong: found $nums, expected $expected"
6877         cmd="$LFS find -size +5 -type f $dir"
6878         nums=$($cmd | wc -l)
6879         [ $nums -eq $expected ] ||
6880                 error "'$cmd' wrong: found $nums, expected $expected"
6881
6882         expected=2
6883         cmd="$LFS find -size +0 -type f -lazy $dir"
6884         nums=$($cmd | wc -l)
6885         [ $nums -eq $expected ] ||
6886                 error "'$cmd' wrong: found $nums, expected $expected"
6887         cmd="$LFS find -size +0 -type f $dir"
6888         nums=$($cmd | wc -l)
6889         [ $nums -eq $expected ] ||
6890                 error "'$cmd' wrong: found $nums, expected $expected"
6891
6892         expected=2
6893         cmd="$LFS find ! -size -5 -type f -lazy $dir"
6894         nums=$($cmd | wc -l)
6895         [ $nums -eq $expected ] ||
6896                 error "'$cmd' wrong: found $nums, expected $expected"
6897         cmd="$LFS find ! -size -5 -type f $dir"
6898         nums=$($cmd | wc -l)
6899         [ $nums -eq $expected ] ||
6900                 error "'$cmd' wrong: found $nums, expected $expected"
6901
6902         expected=12
6903         cmd="$LFS find -size -5 -type f -lazy $dir"
6904         nums=$($cmd | wc -l)
6905         [ $nums -eq $expected ] ||
6906                 error "'$cmd' wrong: found $nums, expected $expected"
6907         cmd="$LFS find -size -5 -type f $dir"
6908         nums=$($cmd | wc -l)
6909         [ $nums -eq $expected ] ||
6910                 error "'$cmd' wrong: found $nums, expected $expected"
6911 }
6912 run_test 56r "check lfs find -size works"
6913
6914 test_56ra_sub() {
6915         local expected=$1
6916         local glimpses=$2
6917         local cmd="$3"
6918
6919         cancel_lru_locks $OSC
6920
6921         local rpcs_before=$(calc_stats $OSC.*$OSC*.stats ldlm_glimpse_enqueue)
6922         local nums=$($cmd | wc -l)
6923
6924         [ $nums -eq $expected ] ||
6925                 error "'$cmd' wrong: found $nums, expected $expected"
6926
6927         local rpcs_after=$(calc_stats $OSC.*$OSC*.stats ldlm_glimpse_enqueue)
6928
6929         if (( rpcs_before + glimpses != rpcs_after )); then
6930                 echo "Before: $rpcs_before After: $rpcs_after $NUMFILES"
6931                 $LCTL get_param osc.*.stats | grep ldlm_glimpse_enqueue
6932
6933                 if [[ $glimpses == 0 ]]; then
6934                         error "'$cmd' should not send glimpse RPCs to OST"
6935                 else
6936                         error "'$cmd' should send $glimpses glimpse RPCs to OST"
6937                 fi
6938         fi
6939 }
6940
6941 test_56ra() {
6942         [[ $MDS1_VERSION -gt $(version_code 2.12.58) ]] ||
6943                 skip "MDS < 2.12.58 doesn't return LSOM data"
6944         local dir=$DIR/$tdir
6945         local old_agl=$($LCTL get_param -n llite.*.statahead_agl)
6946
6947         [[ $OSC == "mdc" ]] && skip "statahead not needed for DoM files"
6948
6949         # statahead_agl may cause extra glimpse which confuses results. LU-13017
6950         $LCTL set_param -n llite.*.statahead_agl=0
6951         stack_trap "$LCTL set_param -n llite.*.statahead_agl=$old_agl"
6952
6953         setup_56 $dir $NUMFILES $NUMDIRS "-c 1"
6954         # open and close all files to ensure LSOM is updated
6955         cancel_lru_locks $OSC
6956         find $dir -type f | xargs cat > /dev/null
6957
6958         #   expect_found  glimpse_rpcs  command_to_run
6959         test_56ra_sub 12  0 "$LFS find -size 0 -type f -lazy $dir"
6960         test_56ra_sub 12 12 "$LFS find -size 0 -type f $dir"
6961         test_56ra_sub  0  0 "$LFS find ! -size 0 -type f -lazy $dir"
6962         test_56ra_sub  0 12 "$LFS find ! -size 0 -type f $dir"
6963
6964         echo "test" > $dir/$tfile
6965         echo "test2" > $dir/$tfile.2 && sync
6966         cancel_lru_locks $OSC
6967         cat $dir/$tfile $dir/$tfile.2 > /dev/null
6968
6969         test_56ra_sub  1  0 "$LFS find -size 5 -type f -lazy $dir"
6970         test_56ra_sub  1 14 "$LFS find -size 5 -type f $dir"
6971         test_56ra_sub  1  0 "$LFS find -size +5 -type f -lazy $dir"
6972         test_56ra_sub  1 14 "$LFS find -size +5 -type f $dir"
6973
6974         test_56ra_sub  2  0 "$LFS find -size +0 -type f -lazy $dir"
6975         test_56ra_sub  2 14 "$LFS find -size +0 -type f $dir"
6976         test_56ra_sub  2  0 "$LFS find ! -size -5 -type f -lazy $dir"
6977         test_56ra_sub  2 14 "$LFS find ! -size -5 -type f $dir"
6978         test_56ra_sub 12  0 "$LFS find -size -5 -type f -lazy $dir"
6979         test_56ra_sub 12 14 "$LFS find -size -5 -type f $dir"
6980 }
6981 run_test 56ra "check lfs find -size -lazy works for data on OSTs"
6982
6983 test_56rb() {
6984         local dir=$DIR/$tdir
6985         local tmp=$TMP/$tfile.log
6986         local mdt_idx;
6987
6988         test_mkdir -p $dir || error "failed to mkdir $dir"
6989         $LFS setstripe -c 1 -i 0 $dir/$tfile ||
6990                 error "failed to setstripe $dir/$tfile"
6991         mdt_idx=$($LFS getdirstripe -i $dir)
6992         dd if=/dev/zero of=$dir/$tfile bs=1M count=1
6993
6994         stack_trap "rm -f $tmp" EXIT
6995         $LFS find --size +100K --ost 0 $dir |& tee $tmp
6996         ! grep -q obd_uuid $tmp ||
6997                 error "failed to find --size +100K --ost 0 $dir"
6998         $LFS find --size +100K --mdt $mdt_idx $dir |& tee $tmp
6999         ! grep -q obd_uuid $tmp ||
7000                 error "failed to find --size +100K --mdt $mdt_idx $dir"
7001 }
7002 run_test 56rb "check lfs find --size --ost/--mdt works"
7003
7004 test_56rc() {
7005         (( MDSCOUNT >= 2 )) || skip "needs at least 2 MDTs"
7006         local dir=$DIR/$tdir
7007         local found
7008
7009         test_mkdir -c 2 -H all_char $dir || error "failed to mkdir $dir"
7010         $LFS mkdir -c 2 --mdt-hash all_char $dir/$tdir-all{1..10}
7011         (( $MDSCOUNT > 2 )) &&
7012                 $LFS mkdir -c 3 --mdt-hash fnv_1a_64 $dir/$tdir-fnv{1..10}
7013         mkdir $dir/$tdir-{1..10}
7014         touch $dir/$tfile-{1..10}
7015
7016         found=$($LFS find $dir --mdt-count 2 | wc -l)
7017         expect=11
7018         (( $found == $expect )) || error "found $found 2-stripe, expect $expect"
7019
7020         found=$($LFS find $dir -T +1 | wc -l)
7021         (( $MDSCOUNT > 2 )) && expect=$((expect + 10))
7022         (( $found == $expect )) || error "found $found 2+stripe, expect $expect"
7023
7024         found=$($LFS find $dir --mdt-hash all_char | wc -l)
7025         expect=11
7026         (( $found == $expect )) || error "found $found all_char, expect $expect"
7027
7028         found=$($LFS find $dir --mdt-hash fnv_1a_64 | wc -l)
7029         (( $MDSCOUNT > 2 )) && expect=10 || expect=0
7030         (( $found == $expect )) || error "found $found all_char, expect $expect"
7031 }
7032 run_test 56rc "check lfs find --mdt-count/--mdt-hash works"
7033
7034 test_56s() { # LU-611 #LU-9369
7035         [[ $OSTCOUNT -lt 2 ]] && skip_env "need at least 2 OSTs"
7036
7037         local dir=$DIR/$tdir
7038         local onestripe=$(((NUMDIRS + 1) * NUMFILES))
7039
7040         setup_56 $dir $NUMFILES $NUMDIRS "-c 1"
7041         for i in $(seq $NUMDIRS); do
7042                 $LFS setstripe -c $((OSTCOUNT + 1)) $dir/dir$i/$tfile
7043         done
7044
7045         local expected=$NUMDIRS
7046         local cmd="$LFS find -c $OSTCOUNT $dir"
7047         local nums=$($cmd | wc -l)
7048
7049         [ $nums -eq $expected ] || {
7050                 $LFS getstripe -R $dir
7051                 error "'$cmd' wrong: found $nums, expected $expected"
7052         }
7053
7054         expected=$((NUMDIRS + onestripe))
7055         cmd="$LFS find -stripe-count +0 -type f $dir"
7056         nums=$($cmd | wc -l)
7057         [ $nums -eq $expected ] || {
7058                 $LFS getstripe -R $dir
7059                 error "'$cmd' wrong: found $nums, expected $expected"
7060         }
7061
7062         expected=$onestripe
7063         cmd="$LFS find -stripe-count 1 -type f $dir"
7064         nums=$($cmd | wc -l)
7065         [ $nums -eq $expected ] || {
7066                 $LFS getstripe -R $dir
7067                 error "'$cmd' wrong: found $nums, expected $expected"
7068         }
7069
7070         cmd="$LFS find -stripe-count -2 -type f $dir"
7071         nums=$($cmd | wc -l)
7072         [ $nums -eq $expected ] || {
7073                 $LFS getstripe -R $dir
7074                 error "'$cmd' wrong: found $nums, expected $expected"
7075         }
7076
7077         expected=0
7078         cmd="$LFS find -stripe-count $((OSTCOUNT + 1)) -type f $dir"
7079         nums=$($cmd | wc -l)
7080         [ $nums -eq $expected ] || {
7081                 $LFS getstripe -R $dir
7082                 error "'$cmd' wrong: found $nums, expected $expected"
7083         }
7084 }
7085 run_test 56s "check lfs find -stripe-count works"
7086
7087 test_56t() { # LU-611 #LU-9369
7088         local dir=$DIR/$tdir
7089
7090         setup_56 $dir 0 $NUMDIRS
7091         for i in $(seq $NUMDIRS); do
7092                 $LFS setstripe -S 8M $dir/dir$i/$tfile
7093         done
7094
7095         local expected=$NUMDIRS
7096         local cmd="$LFS find -S 8M $dir"
7097         local nums=$($cmd | wc -l)
7098
7099         [ $nums -eq $expected ] || {
7100                 $LFS getstripe -R $dir
7101                 error "'$cmd' wrong: found $nums, expected $expected"
7102         }
7103         rm -rf $dir
7104
7105         setup_56 $dir $NUMFILES $NUMDIRS "--stripe-size 512k"
7106
7107         $LFS setstripe -S 256k $dir/$tfile.{0,1,2,3}
7108
7109         expected=$(((NUMDIRS + 1) * NUMFILES))
7110         cmd="$LFS find -stripe-size 512k -type f $dir"
7111         nums=$($cmd | wc -l)
7112         [ $nums -eq $expected ] ||
7113                 error "'$cmd' wrong: found $nums, expected $expected"
7114
7115         cmd="$LFS find -stripe-size +320k -type f $dir"
7116         nums=$($cmd | wc -l)
7117         [ $nums -eq $expected ] ||
7118                 error "'$cmd' wrong: found $nums, expected $expected"
7119
7120         expected=$(((NUMDIRS + 1) * NUMFILES + 4))
7121         cmd="$LFS find -stripe-size +200k -type f $dir"
7122         nums=$($cmd | wc -l)
7123         [ $nums -eq $expected ] ||
7124                 error "'$cmd' wrong: found $nums, expected $expected"
7125
7126         cmd="$LFS find -stripe-size -640k -type f $dir"
7127         nums=$($cmd | wc -l)
7128         [ $nums -eq $expected ] ||
7129                 error "'$cmd' wrong: found $nums, expected $expected"
7130
7131         expected=4
7132         cmd="$LFS find -stripe-size 256k -type f $dir"
7133         nums=$($cmd | wc -l)
7134         [ $nums -eq $expected ] ||
7135                 error "'$cmd' wrong: found $nums, expected $expected"
7136
7137         cmd="$LFS find -stripe-size -320k -type f $dir"
7138         nums=$($cmd | wc -l)
7139         [ $nums -eq $expected ] ||
7140                 error "'$cmd' wrong: found $nums, expected $expected"
7141
7142         expected=0
7143         cmd="$LFS find -stripe-size 1024k -type f $dir"
7144         nums=$($cmd | wc -l)
7145         [ $nums -eq $expected ] ||
7146                 error "'$cmd' wrong: found $nums, expected $expected"
7147 }
7148 run_test 56t "check lfs find -stripe-size works"
7149
7150 test_56u() { # LU-611
7151         local dir=$DIR/$tdir
7152
7153         setup_56 $dir $NUMFILES $NUMDIRS "-i 0 -c 1"
7154
7155         if [[ $OSTCOUNT -gt 1 ]]; then
7156                 $LFS setstripe -i 1 -c 1 $dir/$tfile.{0,1,2,3}
7157                 onestripe=4
7158         else
7159                 onestripe=0
7160         fi
7161
7162         local expected=$(((NUMDIRS + 1) * NUMFILES))
7163         local cmd="$LFS find -stripe-index 0 -type f $dir"
7164         local nums=$($cmd | wc -l)
7165
7166         [ $nums -eq $expected ] ||
7167                 error "'$cmd' wrong: found $nums, expected $expected"
7168
7169         expected=$onestripe
7170         cmd="$LFS find -stripe-index 1 -type f $dir"
7171         nums=$($cmd | wc -l)
7172         [ $nums -eq $expected ] ||
7173                 error "'$cmd' wrong: found $nums, expected $expected"
7174
7175         cmd="$LFS find ! -stripe-index 0 -type f $dir"
7176         nums=$($cmd | wc -l)
7177         [ $nums -eq $expected ] ||
7178                 error "'$cmd' wrong: found $nums, expected $expected"
7179
7180         expected=0
7181         # This should produce an error and not return any files
7182         cmd="$LFS find -stripe-index $OSTCOUNT -type f $dir"
7183         nums=$($cmd 2>/dev/null | wc -l)
7184         [ $nums -eq $expected ] ||
7185                 error "'$cmd' wrong: found $nums, expected $expected"
7186
7187         if [[ $OSTCOUNT -gt 1 ]]; then
7188                 expected=$(((NUMDIRS + 1) * NUMFILES + onestripe))
7189                 cmd="$LFS find -stripe-index 0,1 -type f $dir"
7190                 nums=$($cmd | wc -l)
7191                 [ $nums -eq $expected ] ||
7192                         error "'$cmd' wrong: found $nums, expected $expected"
7193         fi
7194 }
7195 run_test 56u "check lfs find -stripe-index works"
7196
7197 test_56v() {
7198         local mdt_idx=0
7199         local dir=$DIR/$tdir
7200
7201         setup_56 $dir $NUMFILES $NUMDIRS
7202
7203         UUID=$(mdtuuid_from_index $mdt_idx $dir)
7204         [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT $mdt_idx"
7205
7206         for file in $($LFS find -m $UUID $dir); do
7207                 file_midx=$($LFS getstripe -m $file)
7208                 [ $file_midx -eq $mdt_idx ] ||
7209                         error "lfs find -m $UUID != getstripe -m $file_midx"
7210         done
7211 }
7212 run_test 56v "check 'lfs find -m match with lfs getstripe -m'"
7213
7214 test_56w() {
7215         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
7216         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7217
7218         local dir=$DIR/$tdir
7219
7220         setup_56 $dir $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
7221
7222         local stripe_size=$($LFS getstripe -S -d $dir) ||
7223                 error "$LFS getstripe -S -d $dir failed"
7224         stripe_size=${stripe_size%% *}
7225
7226         local file_size=$((stripe_size * OSTCOUNT))
7227         local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
7228         local required_space=$((file_num * file_size))
7229         local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
7230                            head -n1)
7231         [[ $free_space -le $((required_space / 1024)) ]] &&
7232                 skip_env "need $required_space, have $free_space kbytes"
7233
7234         local dd_bs=65536
7235         local dd_count=$((file_size / dd_bs))
7236
7237         # write data into the files
7238         local i
7239         local j
7240         local file
7241
7242         for i in $(seq $NUMFILES); do
7243                 file=$dir/file$i
7244                 yes | dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
7245                         error "write data into $file failed"
7246         done
7247         for i in $(seq $NUMDIRS); do
7248                 for j in $(seq $NUMFILES); do
7249                         file=$dir/dir$i/file$j
7250                         yes|dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
7251                                 error "write data into $file failed"
7252                 done
7253         done
7254
7255         # $LFS_MIGRATE will fail if hard link migration is unsupported
7256         if [[ $MDS1_VERSION -gt $(version_code 2.5.55) ]]; then
7257                 createmany -l$dir/dir1/file1 $dir/dir1/link 200 ||
7258                         error "creating links to $dir/dir1/file1 failed"
7259         fi
7260
7261         local expected=-1
7262
7263         [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
7264
7265         # lfs_migrate file
7266         local cmd="$LFS_MIGRATE -y -c $expected $dir/file1"
7267
7268         echo "$cmd"
7269         eval $cmd || error "$cmd failed"
7270
7271         check_stripe_count $dir/file1 $expected
7272
7273         if [ $MDS1_VERSION -ge $(version_code 2.6.90) ];
7274         then
7275                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
7276                 # OST 1 if it is on OST 0. This file is small enough to
7277                 # be on only one stripe.
7278                 file=$dir/migr_1_ost
7279                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
7280                         error "write data into $file failed"
7281                 local obdidx=$($LFS getstripe -i $file)
7282                 local oldmd5=$(md5sum $file)
7283                 local newobdidx=0
7284
7285                 [[ $obdidx -eq 0 ]] && newobdidx=1
7286                 cmd="$LFS migrate -i $newobdidx $file"
7287                 echo $cmd
7288                 eval $cmd || error "$cmd failed"
7289
7290                 local realobdix=$($LFS getstripe -i $file)
7291                 local newmd5=$(md5sum $file)
7292
7293                 [[ $newobdidx -ne $realobdix ]] &&
7294                         error "new OST is different (was=$obdidx, "\
7295                               "wanted=$newobdidx, got=$realobdix)"
7296                 [[ "$oldmd5" != "$newmd5" ]] &&
7297                         error "md5sum differ: $oldmd5, $newmd5"
7298         fi
7299
7300         # lfs_migrate dir
7301         cmd="$LFS_MIGRATE -y -c $expected $dir/dir1"
7302         echo "$cmd"
7303         eval $cmd || error "$cmd failed"
7304
7305         for j in $(seq $NUMFILES); do
7306                 check_stripe_count $dir/dir1/file$j $expected
7307         done
7308
7309         # lfs_migrate works with lfs find
7310         cmd="$LFS find -stripe_count $OSTCOUNT -type f $dir |
7311              $LFS_MIGRATE -y -c $expected"
7312         echo "$cmd"
7313         eval $cmd || error "$cmd failed"
7314
7315         for i in $(seq 2 $NUMFILES); do
7316                 check_stripe_count $dir/file$i $expected
7317         done
7318         for i in $(seq 2 $NUMDIRS); do
7319                 for j in $(seq $NUMFILES); do
7320                 check_stripe_count $dir/dir$i/file$j $expected
7321                 done
7322         done
7323 }
7324 run_test 56w "check lfs_migrate -c stripe_count works"
7325
7326 test_56wb() {
7327         local file1=$DIR/$tdir/file1
7328         local create_pool=false
7329         local initial_pool=$($LFS getstripe -p $DIR)
7330         local pool_list=()
7331         local pool=""
7332
7333         echo -n "Creating test dir..."
7334         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
7335         echo "done."
7336
7337         echo -n "Creating test file..."
7338         touch $file1 || error "cannot create file"
7339         echo "done."
7340
7341         echo -n "Detecting existing pools..."
7342         pool_list=($($LFS pool_list $FSNAME | grep "$FSNAME\." | cut -d. -f2))
7343
7344         if [ ${#pool_list[@]} -gt 0 ]; then
7345                 echo "${pool_list[@]}"
7346                 for thispool in "${pool_list[@]}"; do
7347                         if [[ -z "$initial_pool" ||
7348                               "$initial_pool" != "$thispool" ]]; then
7349                                 pool="$thispool"
7350                                 echo "Using existing pool '$pool'"
7351                                 break
7352                         fi
7353                 done
7354         else
7355                 echo "none detected."
7356         fi
7357         if [ -z "$pool" ]; then
7358                 pool=${POOL:-testpool}
7359                 [ "$initial_pool" = "$pool" ] && pool="testpool2"
7360                 echo -n "Creating pool '$pool'..."
7361                 create_pool=true
7362                 pool_add $pool &> /dev/null ||
7363                         error "pool_add failed"
7364                 echo "done."
7365
7366                 echo -n "Adding target to pool..."
7367                 pool_add_targets $pool 0 0 1 &> /dev/null ||
7368                         error "pool_add_targets failed"
7369                 echo "done."
7370         fi
7371
7372         echo -n "Setting pool using -p option..."
7373         $LFS_MIGRATE -y -q --no-rsync -p $pool $file1 &> /dev/null ||
7374                 error "migrate failed rc = $?"
7375         echo "done."
7376
7377         echo -n "Verifying test file is in pool after migrating..."
7378         [ "$($LFS getstripe -p $file1)" = $pool ] ||
7379                 error "file was not migrated to pool $pool"
7380         echo "done."
7381
7382         echo -n "Removing test file from pool '$pool'..."
7383         # "lfs migrate $file" won't remove the file from the pool
7384         # until some striping information is changed.
7385         $LFS migrate -c 1 $file1 &> /dev/null ||
7386                 error "cannot remove from pool"
7387         [ "$($LFS getstripe -p $file1)" ] &&
7388                 error "pool still set"
7389         echo "done."
7390
7391         echo -n "Setting pool using --pool option..."
7392         $LFS_MIGRATE -y -q --no-rsync --pool $pool $file1 &> /dev/null ||
7393                 error "migrate failed rc = $?"
7394         echo "done."
7395
7396         # Clean up
7397         rm -f $file1
7398         if $create_pool; then
7399                 destroy_test_pools 2> /dev/null ||
7400                         error "destroy test pools failed"
7401         fi
7402 }
7403 run_test 56wb "check lfs_migrate pool support"
7404
7405 test_56wc() {
7406         local file1="$DIR/$tdir/file1"
7407         local parent_ssize
7408         local parent_scount
7409         local cur_ssize
7410         local cur_scount
7411         local orig_ssize
7412
7413         echo -n "Creating test dir..."
7414         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
7415         $LFS setstripe -S 1M -c 1 "$DIR/$tdir" &> /dev/null ||
7416                 error "cannot set stripe by '-S 1M -c 1'"
7417         echo "done"
7418
7419         echo -n "Setting initial stripe for test file..."
7420         $LFS setstripe -S 512K -c 1 "$file1" &> /dev/null ||
7421                 error "cannot set stripe"
7422         cur_ssize=$($LFS getstripe -S "$file1")
7423         [ $cur_ssize -eq 524288 ] || error "setstripe -S $cur_ssize != 524288"
7424         echo "done."
7425
7426         # File currently set to -S 512K -c 1
7427
7428         # Ensure -c and -S options are rejected when -R is set
7429         echo -n "Verifying incompatible options are detected..."
7430         $LFS_MIGRATE -y -R -c 1 "$file1" &> /dev/null &&
7431                 error "incompatible -c and -R options not detected"
7432         $LFS_MIGRATE -y -R -S 1M "$file1" &> /dev/null &&
7433                 error "incompatible -S and -R options not detected"
7434         echo "done."
7435
7436         # Ensure unrecognized options are passed through to 'lfs migrate'
7437         echo -n "Verifying -S option is passed through to lfs migrate..."
7438         $LFS_MIGRATE -y -S 1M "$file1" &> /dev/null ||
7439                 error "migration failed"
7440         cur_ssize=$($LFS getstripe -S "$file1")
7441         [ $cur_ssize -eq 1048576 ] || error "migrate -S $cur_ssize != 1048576"
7442         echo "done."
7443
7444         # File currently set to -S 1M -c 1
7445
7446         # Ensure long options are supported
7447         echo -n "Verifying long options supported..."
7448         $LFS_MIGRATE -y --non-block "$file1" &> /dev/null ||
7449                 error "long option without argument not supported"
7450         $LFS_MIGRATE -y --stripe-size 512K "$file1" &> /dev/null ||
7451                 error "long option with argument not supported"
7452         cur_ssize=$($LFS getstripe -S "$file1")
7453         [ $cur_ssize -eq 524288 ] ||
7454                 error "migrate --stripe-size $cur_ssize != 524288"
7455         echo "done."
7456
7457         # File currently set to -S 512K -c 1
7458
7459         if [ "$OSTCOUNT" -gt 1 ]; then
7460                 echo -n "Verifying explicit stripe count can be set..."
7461                 $LFS_MIGRATE -y -c 2 "$file1" &> /dev/null ||
7462                         error "migrate failed"
7463                 cur_scount=$($LFS getstripe -c "$file1")
7464                 [ $cur_scount -eq 2 ] || error "migrate -c $cur_scount != 2"
7465                 echo "done."
7466         fi
7467
7468         # File currently set to -S 512K -c 1 or -S 512K -c 2
7469
7470         # Ensure parent striping is used if -R is set, and no stripe
7471         # count or size is specified
7472         echo -n "Setting stripe for parent directory..."
7473         $LFS setstripe -S 2M -c 1 "$DIR/$tdir" &> /dev/null ||
7474                 error "cannot set stripe '-S 2M -c 1'"
7475         echo "done."
7476
7477         echo -n "Verifying restripe option uses parent stripe settings..."
7478         parent_ssize=$($LFS getstripe -S $DIR/$tdir 2>/dev/null)
7479         parent_scount=$($LFS getstripe -c $DIR/$tdir 2>/dev/null)
7480         $LFS_MIGRATE -y -R "$file1" &> /dev/null ||
7481                 error "migrate failed"
7482         cur_ssize=$($LFS getstripe -S "$file1")
7483         [ $cur_ssize -eq $parent_ssize ] ||
7484                 error "migrate -R stripe_size $cur_ssize != $parent_ssize"
7485         cur_scount=$($LFS getstripe -c "$file1")
7486         [ $cur_scount -eq $parent_scount ] ||
7487                 error "migrate -R stripe_count $cur_scount != $parent_scount"
7488         echo "done."
7489
7490         # File currently set to -S 1M -c 1
7491
7492         # Ensure striping is preserved if -R is not set, and no stripe
7493         # count or size is specified
7494         echo -n "Verifying striping size preserved when not specified..."
7495         orig_ssize=$($LFS getstripe -S "$file1" 2>/dev/null)
7496         $LFS setstripe -S 2M -c 1 "$DIR/$tdir" &> /dev/null ||
7497                 error "cannot set stripe on parent directory"
7498         $LFS_MIGRATE -y "$file1" &> /dev/null ||
7499                 error "migrate failed"
7500         cur_ssize=$($LFS getstripe -S "$file1")
7501         [ $cur_ssize -eq $orig_ssize ] ||
7502                 error "migrate by default $cur_ssize != $orig_ssize"
7503         echo "done."
7504
7505         # Ensure file name properly detected when final option has no argument
7506         echo -n "Verifying file name properly detected..."
7507         $LFS_MIGRATE -y "$file1" &> /dev/null ||
7508                 error "file name interpreted as option argument"
7509         echo "done."
7510
7511         # Clean up
7512         rm -f "$file1"
7513 }
7514 run_test 56wc "check unrecognized options for lfs_migrate are passed through"
7515
7516 test_56wd() {
7517         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
7518
7519         local file1=$DIR/$tdir/file1
7520
7521         echo -n "Creating test dir..."
7522         test_mkdir $DIR/$tdir || error "cannot create dir"
7523         echo "done."
7524
7525         echo -n "Creating test file..."
7526         touch $file1
7527         echo "done."
7528
7529         # Ensure 'lfs migrate' will fail by using a non-existent option,
7530         # and make sure rsync is not called to recover
7531         echo -n "Make sure --no-rsync option works..."
7532         $LFS_MIGRATE -y --no-rsync --invalid-opt $file1 2>&1 |
7533                 grep -q 'refusing to fall back to rsync' ||
7534                 error "rsync was called with --no-rsync set"
7535         echo "done."
7536
7537         # Ensure rsync is called without trying 'lfs migrate' first
7538         echo -n "Make sure --rsync option works..."
7539         $LFS_MIGRATE -y --rsync --invalid-opt $file1 2>&1 |
7540                 grep -q 'falling back to rsync' &&
7541                 error "lfs migrate was called with --rsync set"
7542         echo "done."
7543
7544         echo -n "Make sure --rsync and --no-rsync options are exclusive..."
7545         $LFS_MIGRATE -y --rsync --no-rsync $file1 2>&1 |
7546                 grep -q 'at the same time' ||
7547                 error "--rsync and --no-rsync accepted concurrently"
7548         echo "done."
7549
7550         # Clean up
7551         rm -f $file1
7552 }
7553 run_test 56wd "check lfs_migrate --rsync and --no-rsync work"
7554
7555 test_56we() {
7556         local td=$DIR/$tdir
7557         local tf=$td/$tfile
7558
7559         test_mkdir $td || error "cannot create $td"
7560         touch $tf || error "cannot touch $tf"
7561
7562         echo -n "Make sure --non-direct|-D works..."
7563         $LFS_MIGRATE -y --non-direct -v $tf 2>&1 |
7564                 grep -q "lfs migrate --non-direct" ||
7565                 error "--non-direct option cannot work correctly"
7566         $LFS_MIGRATE -y -D -v $tf 2>&1 |
7567                 grep -q "lfs migrate -D" ||
7568                 error "-D option cannot work correctly"
7569         echo "done."
7570 }
7571 run_test 56we "check lfs_migrate --non-direct|-D support"
7572
7573 test_56x() {
7574         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
7575         check_swap_layouts_support
7576
7577         local dir=$DIR/$tdir
7578         local ref1=/etc/passwd
7579         local file1=$dir/file1
7580
7581         test_mkdir $dir || error "creating dir $dir"
7582         $LFS setstripe -c 2 $file1
7583         cp $ref1 $file1
7584         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
7585         stripe=$($LFS getstripe -c $file1)
7586         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
7587         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
7588
7589         # clean up
7590         rm -f $file1
7591 }
7592 run_test 56x "lfs migration support"
7593
7594 test_56xa() {
7595         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
7596         check_swap_layouts_support
7597
7598         local dir=$DIR/$tdir/$testnum
7599
7600         test_mkdir -p $dir
7601
7602         local ref1=/etc/passwd
7603         local file1=$dir/file1
7604
7605         $LFS setstripe -c 2 $file1
7606         cp $ref1 $file1
7607         $LFS migrate --block -c 1 $file1 || error "migrate failed rc = $?"
7608
7609         local stripe=$($LFS getstripe -c $file1)
7610
7611         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
7612         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
7613
7614         # clean up
7615         rm -f $file1
7616 }
7617 run_test 56xa "lfs migration --block support"
7618
7619 check_migrate_links() {
7620         local dir="$1"
7621         local file1="$dir/file1"
7622         local begin="$2"
7623         local count="$3"
7624         local runas="$4"
7625         local total_count=$(($begin + $count - 1))
7626         local symlink_count=10
7627         local uniq_count=10
7628
7629         if [ ! -f "$file1" ]; then
7630                 echo -n "creating initial file..."
7631                 $LFS setstripe -c 1 -S "512k" "$file1" ||
7632                         error "cannot setstripe initial file"
7633                 echo "done"
7634
7635                 echo -n "creating symlinks..."
7636                 for s in $(seq 1 $symlink_count); do
7637                         ln -s "$file1" "$dir/slink$s" ||
7638                                 error "cannot create symlinks"
7639                 done
7640                 echo "done"
7641
7642                 echo -n "creating nonlinked files..."
7643                 createmany -o "$dir/uniq" 1 10 &> /dev/null ||
7644                         error "cannot create nonlinked files"
7645                 echo "done"
7646         fi
7647
7648         # create hard links
7649         if [ ! -f "$dir/file$total_count" ]; then
7650                 echo -n "creating hard links $begin:$total_count..."
7651                 createmany -l"$file1" "$dir/file" "$begin" "$count" &>  \
7652                         /dev/null || error "cannot create hard links"
7653                 echo "done"
7654         fi
7655
7656         echo -n "checking number of hard links listed in xattrs..."
7657         local fid=$($LFS getstripe -F "$file1")
7658         local paths=($($LFS fid2path "$MOUNT" "$fid" 2> /dev/null))
7659
7660         echo "${#paths[*]}"
7661         if [ ${#paths[*]} -lt $total_count -a "$begin" -eq 2  ]; then
7662                         skip "hard link list has unexpected size, skipping test"
7663         fi
7664         if [ ${#paths[*]} -ge $total_count -a "$begin" -ne 2  ]; then
7665                         error "link names should exceed xattrs size"
7666         fi
7667
7668         echo -n "migrating files..."
7669         local migrate_out=$($runas $LFS_MIGRATE -y -S '1m' $dir)
7670         local rc=$?
7671         [ $rc -eq 0 ] || error "migrate failed rc = $rc"
7672         echo "done"
7673
7674         # make sure all links have been properly migrated
7675         echo -n "verifying files..."
7676         fid=$($LFS getstripe -F "$file1") ||
7677                 error "cannot get fid for file $file1"
7678         for i in $(seq 2 $total_count); do
7679                 local fid2=$($LFS getstripe -F $dir/file$i)
7680
7681                 [ "$fid2" == "$fid" ] ||
7682                         error "migrated hard link has mismatched FID"
7683         done
7684
7685         # make sure hard links were properly detected, and migration was
7686         # performed only once for the entire link set; nonlinked files should
7687         # also be migrated
7688         local actual=$(grep -c 'done' <<< "$migrate_out")
7689         local expected=$(($uniq_count + 1))
7690
7691         [ "$actual" -eq  "$expected" ] ||
7692                 error "hard links individually migrated ($actual != $expected)"
7693
7694         # make sure the correct number of hard links are present
7695         local hardlinks=$(stat -c '%h' "$file1")
7696
7697         [ $hardlinks -eq $total_count ] ||
7698                 error "num hard links $hardlinks != $total_count"
7699         echo "done"
7700
7701         return 0
7702 }
7703
7704 test_56xb() {
7705         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
7706                 skip "Need MDS version at least 2.10.55"
7707
7708         local dir="$DIR/$tdir"
7709
7710         test_mkdir "$dir" || error "cannot create dir $dir"
7711
7712         echo "testing lfs migrate mode when all links fit within xattrs"
7713         LFS_MIGRATE_RSYNC_MODE=false check_migrate_links "$dir" 2 99
7714
7715         echo "testing rsync mode when all links fit within xattrs"
7716         LFS_MIGRATE_RSYNC_MODE=true check_migrate_links "$dir" 2 99
7717
7718         echo "testing lfs migrate mode when all links do not fit within xattrs"
7719         LFS_MIGRATE_RSYNC_MODE=false check_migrate_links "$dir" 101 100
7720
7721         echo "testing rsync mode when all links do not fit within xattrs"
7722         LFS_MIGRATE_RSYNC_MODE=true check_migrate_links "$dir" 101 100
7723
7724         chown -R $RUNAS_ID $dir
7725         echo "testing non-root lfs migrate mode when not all links are in xattr"
7726         LFS_MIGRATE_RSYNC_MODE=false check_migrate_links "$dir" 101 100 "$RUNAS"
7727
7728         # clean up
7729         rm -rf $dir
7730 }
7731 run_test 56xb "lfs migration hard link support"
7732
7733 test_56xc() {
7734         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
7735
7736         local dir="$DIR/$tdir"
7737
7738         test_mkdir "$dir" || error "cannot create dir $dir"
7739
7740         # Test 1: ensure file < 1 GB is always migrated with 1 stripe
7741         echo -n "Setting initial stripe for 20MB test file..."
7742         $LFS setstripe -c 2 -i 0 "$dir/20mb" ||
7743                 error "cannot setstripe 20MB file"
7744         echo "done"
7745         echo -n "Sizing 20MB test file..."
7746         $TRUNCATE "$dir/20mb" 20971520 || error "cannot create 20MB test file"
7747         echo "done"
7748         echo -n "Verifying small file autostripe count is 1..."
7749         $LFS_MIGRATE -y -A -C 1 "$dir/20mb" ||
7750                 error "cannot migrate 20MB file"
7751         local stripe_count=$($LFS getstripe -c "$dir/20mb") ||
7752                 error "cannot get stripe for $dir/20mb"
7753         [ $stripe_count -eq 1 ] ||
7754                 error "unexpected stripe count $stripe_count for 20MB file"
7755         rm -f "$dir/20mb"
7756         echo "done"
7757
7758         # Test 2: File is small enough to fit within the available space on
7759         # sqrt(size_in_gb) + 1 OSTs but is larger than 1GB.  The file must
7760         # have at least an additional 1KB for each desired stripe for test 3
7761         echo -n "Setting stripe for 1GB test file..."
7762         $LFS setstripe -c 1 -i 0 "$dir/1gb" || error "cannot setstripe 1GB file"
7763         echo "done"
7764         echo -n "Sizing 1GB test file..."
7765         # File size is 1GB + 3KB
7766         $TRUNCATE "$dir/1gb" 1073744896 || error "cannot create 1GB test file"
7767         echo "done"
7768
7769         # need at least 512MB per OST for 1GB file to fit in 2 stripes
7770         local avail=$($LCTL get_param -n llite.$FSNAME*.kbytesavail)
7771         if (( avail > 524288 * OSTCOUNT )); then
7772                 echo -n "Migrating 1GB file..."
7773                 $LFS_MIGRATE -y -A -C 1 "$dir/1gb" ||
7774                         error "cannot migrate 1GB file"
7775                 echo "done"
7776                 echo -n "Verifying autostripe count is sqrt(n) + 1..."
7777                 stripe_count=$($LFS getstripe -c "$dir/1gb") ||
7778                         error "cannot getstripe for 1GB file"
7779                 [ $stripe_count -eq 2 ] ||
7780                         error "unexpected stripe count $stripe_count != 2"
7781                 echo "done"
7782         fi
7783
7784         # Test 3: File is too large to fit within the available space on
7785         # sqrt(n) + 1 OSTs.  Simulate limited available space with -X
7786         if [ $OSTCOUNT -ge 3 ]; then
7787                 # The required available space is calculated as
7788                 # file size (1GB + 3KB) / OST count (3).
7789                 local kb_per_ost=349526
7790
7791                 echo -n "Migrating 1GB file with limit..."
7792                 $LFS_MIGRATE -y -A -C 1 -X $kb_per_ost "$dir/1gb" ||
7793                         error "cannot migrate 1GB file with limit"
7794                 echo "done"
7795
7796                 stripe_count=$($LFS getstripe -c "$dir/1gb")
7797                 echo -n "Verifying 1GB autostripe count with limited space..."
7798                 [ "$stripe_count" -a $stripe_count -ge 3 ] ||
7799                         error "unexpected stripe count $stripe_count (min 3)"
7800                 echo "done"
7801         fi
7802
7803         # clean up
7804         rm -rf $dir
7805 }
7806 run_test 56xc "lfs migration autostripe"
7807
7808 test_56xd() {
7809         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
7810
7811         local dir=$DIR/$tdir
7812         local f_mgrt=$dir/$tfile.mgrt
7813         local f_yaml=$dir/$tfile.yaml
7814         local f_copy=$dir/$tfile.copy
7815         local layout_yaml="-E 1M -S 512K -c 1 -E -1 -S 1M -c 2 -i 0"
7816         local layout_copy="-c 2 -S 2M -i 1"
7817         local yamlfile=$dir/yamlfile
7818         local layout_before;
7819         local layout_after;
7820
7821         test_mkdir "$dir" || error "cannot create dir $dir"
7822         $LFS setstripe $layout_yaml $f_yaml ||
7823                 error "cannot setstripe $f_yaml with layout $layout_yaml"
7824         $LFS getstripe --yaml $f_yaml > $yamlfile
7825         $LFS setstripe $layout_copy $f_copy ||
7826                 error "cannot setstripe $f_copy with layout $layout_copy"
7827         touch $f_mgrt
7828         dd if=/dev/zero of=$f_mgrt bs=1M count=4
7829
7830         # 1. test option --yaml
7831         $LFS_MIGRATE -y --yaml $yamlfile $f_mgrt ||
7832                 error "cannot migrate $f_mgrt with --yaml $yamlfile"
7833         layout_before=$(get_layout_param $f_yaml)
7834         layout_after=$(get_layout_param $f_mgrt)
7835         [ "$layout_after" == "$layout_before" ] ||
7836                 error "lfs_migrate --yaml: $layout_after != $layout_before"
7837
7838         # 2. test option --copy
7839         $LFS_MIGRATE -y --copy $f_copy $f_mgrt ||
7840                 error "cannot migrate $f_mgrt with --copy $f_copy"
7841         layout_before=$(get_layout_param $f_copy)
7842         layout_after=$(get_layout_param $f_mgrt)
7843         [ "$layout_after" == "$layout_before" ] ||
7844                 error "lfs_migrate --copy: $layout_after != $layout_before"
7845 }
7846 run_test 56xd "check lfs_migrate --yaml and --copy support"
7847
7848 test_56xe() {
7849         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
7850
7851         local dir=$DIR/$tdir
7852         local f_comp=$dir/$tfile
7853         local layout="-E 1M -S 512K -c 1 -E -1 -S 1M -c 2 -i 0"
7854         local layout_before=""
7855         local layout_after=""
7856
7857         test_mkdir "$dir" || error "cannot create dir $dir"
7858         $LFS setstripe $layout $f_comp ||
7859                 error "cannot setstripe $f_comp with layout $layout"
7860         layout_before=$(get_layout_param $f_comp)
7861         dd if=/dev/zero of=$f_comp bs=1M count=4
7862
7863         # 1. migrate a comp layout file by lfs_migrate
7864         $LFS_MIGRATE -y $f_comp || error "cannot migrate $f_comp by lfs_migrate"
7865         layout_after=$(get_layout_param $f_comp)
7866         [ "$layout_before" == "$layout_after" ] ||
7867                 error "lfs_migrate: $layout_before != $layout_after"
7868
7869         # 2. migrate a comp layout file by lfs migrate
7870         $LFS migrate $f_comp || error "cannot migrate $f_comp by lfs migrate"
7871         layout_after=$(get_layout_param $f_comp)
7872         [ "$layout_before" == "$layout_after" ] ||
7873                 error "lfs migrate: $layout_before != $layout_after"
7874 }
7875 run_test 56xe "migrate a composite layout file"
7876
7877 test_56xf() {
7878         [[ $OSTCOUNT -ge 2 ]] || skip_env "needs >= 2 OSTs"
7879
7880         [[ $MDS1_VERSION -ge $(version_code 2.13.53) ]] ||
7881                 skip "Need server version at least 2.13.53"
7882
7883         local dir=$DIR/$tdir
7884         local f_comp=$dir/$tfile
7885         local layout="-E 1M -c1 -E -1 -c2"
7886         local fid_before=""
7887         local fid_after=""
7888
7889         test_mkdir "$dir" || error "cannot create dir $dir"
7890         $LFS setstripe $layout $f_comp ||
7891                 error "cannot setstripe $f_comp with layout $layout"
7892         fid_before=$($LFS getstripe --fid $f_comp)
7893         dd if=/dev/zero of=$f_comp bs=1M count=4
7894
7895         # 1. migrate a comp layout file to a comp layout
7896         $LFS migrate $f_comp || error "cannot migrate $f_comp by lfs migrate"
7897         fid_after=$($LFS getstripe --fid $f_comp)
7898         [ "$fid_before" == "$fid_after" ] ||
7899                 error "comp-to-comp migrate: $fid_before != $fid_after"
7900
7901         # 2. migrate a comp layout file to a plain layout
7902         $LFS migrate -c2 $f_comp ||
7903                 error "cannot migrate $f_comp by lfs migrate"
7904         fid_after=$($LFS getstripe --fid $f_comp)
7905         [ "$fid_before" == "$fid_after" ] ||
7906                 error "comp-to-plain migrate: $fid_before != $fid_after"
7907
7908         # 3. migrate a plain layout file to a comp layout
7909         $LFS migrate $layout $f_comp ||
7910                 error "cannot migrate $f_comp by lfs migrate"
7911         fid_after=$($LFS getstripe --fid $f_comp)
7912         [ "$fid_before" == "$fid_after" ] ||
7913                 error "plain-to-comp migrate: $fid_before != $fid_after"
7914 }
7915 run_test 56xf "FID is not lost during migration of a composite layout file"
7916
7917 check_file_ost_range() {
7918         local file="$1"
7919         shift
7920         local range="$*"
7921         local -a file_range
7922         local idx
7923
7924         file_range=($($LFS getstripe -y "$file" |
7925                 awk '/l_ost_idx:/ { print $NF }'))
7926
7927         if [[ "${#file_range[@]}" = 0 ]]; then
7928                 echo "No osts found for $file"
7929                 return 1
7930         fi
7931
7932         for idx in "${file_range[@]}"; do
7933                 [[ " $range " =~ " $idx " ]] ||
7934                         return 1
7935         done
7936
7937         return 0
7938 }
7939
7940 sub_test_56xg() {
7941         local stripe_opt="$1"
7942         local pool="$2"
7943         shift 2
7944         local pool_ostidx="$(seq $* | tr '\n' ' ')"
7945
7946         $LFS migrate $stripe_opt -p $pool $DIR/$tfile ||
7947                 error "Fail to migrate $tfile on $pool"
7948         [[ "$($LFS getstripe -p $DIR/$tfile)" = "$pool" ]] ||
7949                 error "$tfile is not in pool $pool"
7950         check_file_ost_range "$DIR/$tfile" $pool_ostidx ||
7951                 error "$tfile osts mismatch with pool $pool (osts $pool_ostidx)"
7952 }
7953
7954 test_56xg() {
7955         [[ $PARALLEL != "yes" ]] || skip "skip parallel run"
7956         [[ $OSTCOUNT -ge 2 ]] || skip "needs >= 2 OSTs"
7957         [[ $MDS1_VERSION -gt $(version_code 2.14.52) ]] ||
7958                 skip "Need MDS version newer than 2.14.52"
7959
7960         local -a pool_names=("${TESTNAME}_0" "${TESTNAME}_1" "${TESTNAME}_2")
7961         local -a pool_ranges=("0 0" "1 1" "0 1")
7962
7963         # init pools
7964         for i in "${!pool_names[@]}"; do
7965                 pool_add ${pool_names[$i]} ||
7966                         error "pool_add failed (pool: ${pool_names[$i]})"
7967                 pool_add_targets ${pool_names[$i]} ${pool_ranges[$i]} ||
7968                         error "pool_add_targets failed (pool: ${pool_names[$i]})"
7969         done
7970
7971         # init the file to migrate
7972         $LFS setstripe -c1 -i1 $DIR/$tfile ||
7973                 error "Unable to create $tfile on OST1"
7974         dd if=/dev/urandom of=$DIR/$tfile bs=1M count=4 status=none ||
7975                 error "Unable to write on $tfile"
7976
7977         echo "1. migrate $tfile on pool ${pool_names[0]}"
7978         sub_test_56xg "-c-1" "${pool_names[0]}" ${pool_ranges[0]}
7979
7980         echo "2. migrate $tfile on pool ${pool_names[2]}"
7981         sub_test_56xg "-c-1 -S2M" "${pool_names[2]}" ${pool_ranges[2]}
7982
7983         echo "3. migrate $tfile on pool ${pool_names[1]}"
7984         sub_test_56xg "-n -c-1" "${pool_names[1]}" ${pool_ranges[1]}
7985
7986         echo "4. migrate $tfile on pool ${pool_names[2]} with default stripe parameters"
7987         sub_test_56xg "" "${pool_names[2]}" ${pool_ranges[2]}
7988         echo
7989
7990         # Clean pools
7991         destroy_test_pools ||
7992                 error "pool_destroy failed"
7993 }
7994 run_test 56xg "lfs migrate pool support"
7995
7996 test_56y() {
7997         [ $MDS1_VERSION -lt $(version_code 2.4.53) ] &&
7998                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53"
7999
8000         local res=""
8001         local dir=$DIR/$tdir
8002         local f1=$dir/file1
8003         local f2=$dir/file2
8004
8005         test_mkdir -p $dir || error "creating dir $dir"
8006         touch $f1 || error "creating std file $f1"
8007         $MULTIOP $f2 H2c || error "creating released file $f2"
8008
8009         # a directory can be raid0, so ask only for files
8010         res=$($LFS find $dir -L raid0 -type f | wc -l)
8011         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
8012
8013         res=$($LFS find $dir \! -L raid0 -type f | wc -l)
8014         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
8015
8016         # only files can be released, so no need to force file search
8017         res=$($LFS find $dir -L released)
8018         [[ $res == $f2 ]] || error "search released: found $res != $f2"
8019
8020         res=$($LFS find $dir -type f \! -L released)
8021         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
8022 }
8023 run_test 56y "lfs find -L raid0|released"
8024
8025 test_56z() { # LU-4824
8026         # This checks to make sure 'lfs find' continues after errors
8027         # There are two classes of errors that should be caught:
8028         # - If multiple paths are provided, all should be searched even if one
8029         #   errors out
8030         # - If errors are encountered during the search, it should not terminate
8031         #   early
8032         local dir=$DIR/$tdir
8033         local i
8034
8035         test_mkdir $dir
8036         for i in d{0..9}; do
8037                 test_mkdir $dir/$i
8038                 touch $dir/$i/$tfile
8039         done
8040         $LFS find $DIR/non_existent_dir $dir &&
8041                 error "$LFS find did not return an error"
8042         # Make a directory unsearchable. This should NOT be the last entry in
8043         # directory order.  Arbitrarily pick the 6th entry
8044         chmod 700 $($LFS find $dir -type d | sed '6!d')
8045
8046         $RUNAS $LFS find $DIR/non_existent $dir
8047         local count=$($RUNAS $LFS find $DIR/non_existent $dir | wc -l)
8048
8049         # The user should be able to see 10 directories and 9 files
8050         (( count == 19 )) ||
8051                 error "$LFS find found $count != 19 entries after error"
8052 }
8053 run_test 56z "lfs find should continue after an error"
8054
8055 test_56aa() { # LU-5937
8056         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
8057
8058         local dir=$DIR/$tdir
8059
8060         mkdir $dir
8061         $LFS setdirstripe -c$MDSCOUNT $dir/striped_dir
8062
8063         createmany -o $dir/striped_dir/${tfile}- 1024
8064         local dirs=$($LFS find --size +8k $dir/)
8065
8066         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
8067 }
8068 run_test 56aa "lfs find --size under striped dir"
8069
8070 test_56ab() { # LU-10705
8071         test_mkdir $DIR/$tdir
8072         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=8k count=1 seek=2k
8073         dd if=/dev/zero of=$DIR/$tdir/$tfile.2 bs=4k count=1 seek=4k
8074         dd if=/dev/zero of=$DIR/$tdir/$tfile.3 bs=1M count=2 seek=16
8075         # Flush writes to ensure valid blocks.  Need to be more thorough for
8076         # ZFS, since blocks are not allocated/returned to client immediately.
8077         sync_all_data
8078         wait_zfs_commit ost1 2
8079         cancel_lru_locks osc
8080         ls -ls $DIR/$tdir
8081
8082         local files=$($LFS find --size +16M $DIR/$tdir | wc -l)
8083
8084         [[ $files == 3 ]] || error ">16M size files $files isn't 3 as expected"
8085
8086         files=$($LFS find --blocks +1M $DIR/$tdir | wc -l)
8087         [[ $files == 1 ]] || error ">1M blocks files $files isn't 1 as expected"
8088
8089         rm -f $DIR/$tdir/$tfile.[123]
8090 }
8091 run_test 56ab "lfs find --blocks"
8092
8093 # LU-11188
8094 test_56aca() {
8095         local dir="$DIR/$tdir"
8096         local perms=(001 002 003 004 005 006 007
8097                      010 020 030 040 050 060 070
8098                      100 200 300 400 500 600 700
8099                      111 222 333 444 555 666 777)
8100         local perm_minus=(8 8 4 8 4 4 2
8101                           8 8 4 8 4 4 2
8102                           8 8 4 8 4 4 2
8103                           4 4 2 4 2 2 1)
8104         local perm_slash=(8  8 12  8 12 12 14
8105                           8  8 12  8 12 12 14
8106                           8  8 12  8 12 12 14
8107                          16 16 24 16 24 24 28)
8108
8109         test_mkdir "$dir"
8110         for perm in ${perms[*]}; do
8111                 touch "$dir/$tfile.$perm"
8112                 chmod $perm "$dir/$tfile.$perm"
8113         done
8114
8115         for ((i = 0; i < ${#perms[*]}; i++)); do
8116                 local num=$($LFS find $dir -perm ${perms[i]} | wc -l)
8117                 (( $num == 1 )) ||
8118                         error "lfs find -perm ${perms[i]}:"\
8119                               "$num != 1"
8120
8121                 num=$($LFS find $dir -perm -${perms[i]} -type f| wc -l)
8122                 (( $num == ${perm_minus[i]} )) ||
8123                         error "lfs find -perm -${perms[i]}:"\
8124                               "$num != ${perm_minus[i]}"
8125
8126                 num=$($LFS find $dir -perm /${perms[i]} -type f| wc -l)
8127                 (( $num == ${perm_slash[i]} )) ||
8128                         error "lfs find -perm /${perms[i]}:"\
8129                               "$num != ${perm_slash[i]}"
8130         done
8131 }
8132 run_test 56aca "check lfs find -perm with octal representation"
8133
8134 test_56acb() {
8135         local dir=$DIR/$tdir
8136         # p is the permission of write and execute for user, group and other
8137         # without the umask. It is used to test +wx.
8138         local p=$(printf "%o" "$((0333 & ~$(umask)))")
8139         local perms=(1000 000 2000 4000 $p 644 111 110 100 004)
8140         local symbolic=(+t  a+t u+t g+t o+t
8141                         g+s u+s o+s +s o+sr
8142                         o=r,ug+o,u+w
8143                         u+ g+ o+ a+ ugo+
8144                         u- g- o- a- ugo-
8145                         u= g= o= a= ugo=
8146                         o=r,ug+o,u+w u=r,a+u,u+w
8147                         g=r,ugo=g,u+w u+x,+X +X
8148                         u+x,u+X u+X u+x,g+X o+r,+X
8149                         u+x,go+X +wx +rwx)
8150
8151         test_mkdir $dir
8152         for perm in ${perms[*]}; do
8153                 touch "$dir/$tfile.$perm"
8154                 chmod $perm "$dir/$tfile.$perm"
8155         done
8156
8157         for (( i = 0; i < ${#symbolic[*]}; i++ )); do
8158                 local num=$($LFS find $dir -perm ${symbolic[i]} | wc -l)
8159
8160                 (( $num == 1 )) ||
8161                         error "lfs find $dir -perm ${symbolic[i]}: $num != 1"
8162         done
8163 }
8164 run_test 56acb "check lfs find -perm with symbolic representation"
8165
8166 test_56acc() {
8167         local dir=$DIR/$tdir
8168         local tests="17777 787 789 abcd
8169                 ug=uu ug=a ug=gu uo=ou urw
8170                 u+xg+x a=r,u+x,"
8171
8172         test_mkdir $dir
8173         for err in $tests; do
8174                 if $LFS find $dir -perm $err 2>/dev/null; then
8175                         error "lfs find -perm $err: parsing should have failed"
8176                 fi
8177         done
8178 }
8179 run_test 56acc "check parsing error for lfs find -perm"
8180
8181 test_56ba() {
8182         [ $MDS1_VERSION -lt $(version_code 2.10.50) ] &&
8183                 skip "Need MDS version at least 2.10.50"
8184
8185         # Create composite files with one component
8186         local dir=$DIR/$tdir
8187
8188         setup_56 $dir/1Mfiles 5 1 "-S 1M --component-end 1M"
8189         # Create composite files with three components
8190         setup_56 $dir/2Mfiles 5 2 "-E 2M -S 1M -E 4M -E 6M"
8191         # Create non-composite files
8192         createmany -o $dir/${tfile}- 10
8193
8194         local nfiles=$($LFS find --component-end 1M --type f $dir | wc -l)
8195
8196         [[ $nfiles == 10 ]] ||
8197                 error "lfs find -E 1M found $nfiles != 10 files"
8198
8199         nfiles=$($LFS find ! -E 1M --type f $dir | wc -l)
8200         [[ $nfiles == 25 ]] ||
8201                 error "lfs find ! -E 1M found $nfiles != 25 files"
8202
8203         # All files have a component that starts at 0
8204         nfiles=$($LFS find --component-start 0 --type f $dir | wc -l)
8205         [[ $nfiles == 35 ]] ||
8206                 error "lfs find --component-start 0 - $nfiles != 35 files"
8207
8208         nfiles=$($LFS find --component-start 2M --type f $dir | wc -l)
8209         [[ $nfiles == 15 ]] ||
8210                 error "lfs find --component-start 2M - $nfiles != 15 files"
8211
8212         # All files created here have a componenet that does not starts at 2M
8213         nfiles=$($LFS find ! --component-start 2M --type f $dir | wc -l)
8214         [[ $nfiles == 35 ]] ||
8215                 error "lfs find ! --component-start 2M - $nfiles != 35 files"
8216
8217         # Find files with a specified number of components
8218         local nfiles=$($LFS find --component-count 3 --type f $dir | wc -l)
8219         [[ $nfiles == 15 ]] ||
8220                 error "lfs find --component-count 3 - $nfiles != 15 files"
8221
8222         # Remember non-composite files have a component count of zero
8223         local nfiles=$($LFS find --component-count 0 --type f $dir | wc -l)
8224         [[ $nfiles == 10 ]] ||
8225                 error "lfs find --component-count 0 - $nfiles != 10 files"
8226
8227         nfiles=$($LFS find ! --component-count 3 --type f $dir | wc -l)
8228         [[ $nfiles == 20 ]] ||
8229                 error "lfs find ! --component-count 3 - $nfiles != 20 files"
8230
8231         # All files have a flag called "init"
8232         local nfiles=$($LFS find --component-flags init --type f $dir | wc -l)
8233         [[ $nfiles == 35 ]] ||
8234                 error "lfs find --component-flags init - $nfiles != 35 files"
8235
8236         # Multi-component files will have a component not initialized
8237         local nfiles=$($LFS find ! --component-flags init --type f $dir | wc -l)
8238         [[ $nfiles == 15 ]] ||
8239                 error "lfs find !--component-flags init - $nfiles != 15 files"
8240
8241         rm -rf $dir
8242
8243 }
8244 run_test 56ba "test lfs find --component-end, -start, -count, and -flags"
8245
8246 test_56ca() {
8247         [[ $MDS1_VERSION -ge $(version_code 2.10.57) ]] ||
8248                 skip "Need MDS version at least 2.10.57"
8249
8250         local td=$DIR/$tdir
8251         local tf=$td/$tfile
8252         local dir
8253         local nfiles
8254         local cmd
8255         local i
8256         local j
8257
8258         # create mirrored directories and mirrored files
8259         mkdir $td || error "mkdir $td failed"
8260         $LFS mirror create -N3 $td || error "create mirrored dir $td failed"
8261         createmany -o $tf- 10 || error "create $tf- failed"
8262
8263         for i in $(seq 2); do
8264                 dir=$td/dir$i
8265                 mkdir $dir || error "mkdir $dir failed"
8266                 $LFS mirror create -N$((3 + i)) $dir ||
8267                         error "create mirrored dir $dir failed"
8268                 createmany -o $dir/$tfile- 10 ||
8269                         error "create $dir/$tfile- failed"
8270         done
8271
8272         # change the states of some mirrored files
8273         echo foo > $tf-6
8274         for i in $(seq 2); do
8275                 dir=$td/dir$i
8276                 for j in $(seq 4 9); do
8277                         echo foo > $dir/$tfile-$j
8278                 done
8279         done
8280
8281         # find mirrored files with specific mirror count
8282         cmd="$LFS find --mirror-count 3 --type f $td"
8283         nfiles=$($cmd | wc -l)
8284         [[ $nfiles = 10 ]] || error "$cmd: $nfiles != 10 files"
8285
8286         cmd="$LFS find ! --mirror-count 3 --type f $td"
8287         nfiles=$($cmd | wc -l)
8288         [[ $nfiles = 20 ]] || error "$cmd: $nfiles != 20 files"
8289
8290         cmd="$LFS find --mirror-count +2 --type f $td"
8291         nfiles=$($cmd | wc -l)
8292         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
8293
8294         cmd="$LFS find --mirror-count -6 --type f $td"
8295         nfiles=$($cmd | wc -l)
8296         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
8297
8298         # find mirrored files with specific file state
8299         cmd="$LFS find --maxdepth 1 --mirror-state=^ro --type f $td"
8300         [[ $($cmd) = $tf-6 ]] || error "$cmd: didn't return $tf-6"
8301
8302         cmd="$LFS find --mirror-state=ro --type f $td"
8303         nfiles=$($cmd | wc -l)
8304         [[ $nfiles = 17 ]] || error "$cmd: $nfiles != 17 files"
8305
8306         cmd="$LFS find ! --mirror-state=ro --type f $td"
8307         nfiles=$($cmd | wc -l)
8308         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
8309
8310         cmd="$LFS find --mirror-state=wp --type f $td"
8311         nfiles=$($cmd | wc -l)
8312         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
8313
8314         cmd="$LFS find ! --mirror-state=sp --type f $td"
8315         nfiles=$($cmd | wc -l)
8316         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
8317 }
8318 run_test 56ca "check lfs find --mirror-count|-N and --mirror-state"
8319
8320 test_56da() { # LU-14179
8321         local path=$DIR/$tdir
8322
8323         test_mkdir $path
8324         cd $path
8325
8326         local longdir=$(str_repeat 'a' 255)
8327
8328         for i in {1..15}; do
8329                 path=$path/$longdir
8330                 test_mkdir $longdir
8331                 cd $longdir
8332         done
8333
8334         local len=${#path}
8335         local lastdir=$(str_repeat 'a' $((4096 - 1 - $len - 1)))
8336
8337         test_mkdir $lastdir
8338         cd $lastdir
8339         # PATH_MAX-1
8340         (( ${#PWD} == 4095 )) || error "bad PWD length ${#PWD}, expect 4095"
8341
8342         # NAME_MAX
8343         touch $(str_repeat 'f' 255)
8344
8345         $LFS find $DIR/$tdir --type d |& grep "lfs find: error" &&
8346                 error "lfs find reported an error"
8347
8348         rm -rf $DIR/$tdir
8349 }
8350 run_test 56da "test lfs find with long paths"
8351
8352 test_56ea() { #LU-10378
8353         local path=$DIR/$tdir
8354         local pool=$TESTNAME
8355
8356         # Create ost pool
8357         pool_add $pool || error "pool_add $pool failed"
8358         pool_add_targets $pool 0 $((OSTCOUNT - 1)) 1 ||
8359                 error "adding targets to $pool failed"
8360
8361         # Set default pool on directory before creating file
8362         mkdir $path || error "mkdir $path failed"
8363         $LFS setstripe -p $pool $path ||
8364                 error "set OST pool on $pool failed"
8365         touch $path/$tfile || error "touch $path/$tfile failed"
8366
8367         # Compare basic file attributes from -printf and stat
8368         local attr_printf=$($LFS find $path/$tfile -printf "%A@ %T@ %C@ %U %G")
8369         local attr_stat=$(stat -c "%X %Y %Z %u %g" $path/$tfile)
8370
8371         [[ "${attr_printf}" == "${attr_stat}" ]] ||
8372                 error "Attrs from lfs find and stat don't match"
8373
8374         # Compare Lustre attributes from lfs find and lfs getstripe
8375         local lattr_printf=$($LFS find $path/$tfile -printf "%Lc %LS %Li %Lp")
8376         local str_cnt=$($LFS getstripe --stripe-count $path/$tfile)
8377         local str_size=$($LFS getstripe --stripe-size $path/$tfile)
8378         local str_idx=$($LFS getstripe --stripe-index $path/$tfile)
8379         local fpool=$($LFS getstripe --pool $path/$tfile)
8380         local lattr_getstr="${str_cnt} ${str_size} ${str_idx} ${fpool}"
8381
8382         [[ "${lattr_printf}" == "${lattr_getstr}" ]] ||
8383                 error "Attrs from lfs find and lfs getstripe don't match"
8384
8385         # Verify behavior for unknown escape/format sequences
8386         local esc_printf=$($LFS find $path/$tfile -printf '\\ %% \Q %Q')
8387
8388         [[ "${esc_printf}" == '\ % \Q %Q' ]] ||
8389                 error "Escape/format codes don't match"
8390 }
8391 run_test 56ea "test lfs find -printf option"
8392
8393 test_57a() {
8394         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8395         # note test will not do anything if MDS is not local
8396         if [ "$mds1_FSTYPE" != ldiskfs ]; then
8397                 skip_env "ldiskfs only test"
8398         fi
8399         remote_mds_nodsh && skip "remote MDS with nodsh"
8400
8401         local MNTDEV="osd*.*MDT*.mntdev"
8402         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
8403         [ -z "$DEV" ] && error "can't access $MNTDEV"
8404         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
8405                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
8406                         error "can't access $DEV"
8407                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
8408                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
8409                 rm $TMP/t57a.dump
8410         done
8411 }
8412 run_test 57a "verify MDS filesystem created with large inodes =="
8413
8414 test_57b() {
8415         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8416         if [ "$mds1_FSTYPE" != ldiskfs ]; then
8417                 skip_env "ldiskfs only test"
8418         fi
8419         remote_mds_nodsh && skip "remote MDS with nodsh"
8420
8421         local dir=$DIR/$tdir
8422         local filecount=100
8423         local file1=$dir/f1
8424         local fileN=$dir/f$filecount
8425
8426         rm -rf $dir || error "removing $dir"
8427         test_mkdir -c1 $dir
8428         local mdtidx=$($LFS getstripe -m $dir)
8429         local mdtname=MDT$(printf %04x $mdtidx)
8430         local facet=mds$((mdtidx + 1))
8431
8432         echo "mcreating $filecount files"
8433         createmany -m $dir/f 1 $filecount || error "creating files in $dir"
8434
8435         # verify that files do not have EAs yet
8436         $LFS getstripe $file1 2>&1 | grep -q "no stripe" ||
8437                 error "$file1 has an EA"
8438         $LFS getstripe $fileN 2>&1 | grep -q "no stripe" ||
8439                 error "$fileN has an EA"
8440
8441         sync
8442         sleep 1
8443         df $dir  #make sure we get new statfs data
8444         local mdsfree=$(do_facet $facet \
8445                         lctl get_param -n osd*.*$mdtname.kbytesfree)
8446         local mdcfree=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
8447         local file
8448
8449         echo "opening files to create objects/EAs"
8450         for file in $(seq -f $dir/f%g 1 $filecount); do
8451                 $OPENFILE -f O_RDWR $file > /dev/null 2>&1 ||
8452                         error "opening $file"
8453         done
8454
8455         # verify that files have EAs now
8456         $LFS getstripe $file1 | grep -q "obdidx" || error "$file1 missing EA"
8457         $LFS getstripe $fileN | grep -q "obdidx" || error "$fileN missing EA"
8458
8459         sleep 1  #make sure we get new statfs data
8460         df $dir
8461         local mdsfree2=$(do_facet $facet \
8462                          lctl get_param -n osd*.*$mdtname.kbytesfree)
8463         local mdcfree2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
8464
8465         if [[ $mdcfree2 -lt $((mdcfree - 16)) ]]; then
8466                 if [ "$mdsfree" != "$mdsfree2" ]; then
8467                         error "MDC before $mdcfree != after $mdcfree2"
8468                 else
8469                         echo "MDC before $mdcfree != after $mdcfree2"
8470                         echo "unable to confirm if MDS has large inodes"
8471                 fi
8472         fi
8473         rm -rf $dir
8474 }
8475 run_test 57b "default LOV EAs are stored inside large inodes ==="
8476
8477 test_58() {
8478         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8479         [ -z "$(which wiretest 2>/dev/null)" ] &&
8480                         skip_env "could not find wiretest"
8481
8482         wiretest
8483 }
8484 run_test 58 "verify cross-platform wire constants =============="
8485
8486 test_59() {
8487         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8488
8489         echo "touch 130 files"
8490         createmany -o $DIR/f59- 130
8491         echo "rm 130 files"
8492         unlinkmany $DIR/f59- 130
8493         sync
8494         # wait for commitment of removal
8495         wait_delete_completed
8496 }
8497 run_test 59 "verify cancellation of llog records async ========="
8498
8499 TEST60_HEAD="test_60 run $RANDOM"
8500 test_60a() {
8501         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8502         remote_mgs_nodsh && skip "remote MGS with nodsh"
8503         do_facet mgs "! which run-llog.sh &> /dev/null" &&
8504                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
8505                         skip_env "missing subtest run-llog.sh"
8506
8507         log "$TEST60_HEAD - from kernel mode"
8508         do_facet mgs "$LCTL dk > /dev/null"
8509         do_facet mgs "bash run-llog.sh" || error "run-llog.sh failed"
8510         do_facet mgs $LCTL dk > $TMP/$tfile
8511
8512         # LU-6388: test llog_reader
8513         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
8514         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
8515         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
8516                         skip_env "missing llog_reader"
8517         local fstype=$(facet_fstype mgs)
8518         [ $fstype != ldiskfs -a $fstype != zfs ] &&
8519                 skip_env "Only for ldiskfs or zfs type mgs"
8520
8521         local mntpt=$(facet_mntpt mgs)
8522         local mgsdev=$(mgsdevname 1)
8523         local fid_list
8524         local fid
8525         local rec_list
8526         local rec
8527         local rec_type
8528         local obj_file
8529         local path
8530         local seq
8531         local oid
8532         local pass=true
8533
8534         #get fid and record list
8535         fid_list=($(awk '/9_sub.*record/ { print $NF }' $TMP/$tfile |
8536                 tail -n 4))
8537         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' $TMP/$tfile |
8538                 tail -n 4))
8539         #remount mgs as ldiskfs or zfs type
8540         stop mgs || error "stop mgs failed"
8541         mount_fstype mgs || error "remount mgs failed"
8542         for ((i = 0; i < ${#fid_list[@]}; i++)); do
8543                 fid=${fid_list[i]}
8544                 rec=${rec_list[i]}
8545                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
8546                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
8547                 oid=$((16#$oid))
8548
8549                 case $fstype in
8550                         ldiskfs )
8551                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
8552                         zfs )
8553                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
8554                 esac
8555                 echo "obj_file is $obj_file"
8556                 do_facet mgs $llog_reader $obj_file
8557
8558                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
8559                         awk '{ print $3 }' | sed -e "s/^type=//g")
8560                 if [ $rec_type != $rec ]; then
8561                         echo "FAILED test_60a wrong record type $rec_type," \
8562                               "should be $rec"
8563                         pass=false
8564                         break
8565                 fi
8566
8567                 #check obj path if record type is LLOG_LOGID_MAGIC
8568                 if [ "$rec" == "1064553b" ]; then
8569                         path=$(do_facet mgs $llog_reader $obj_file |
8570                                 grep "path=" | awk '{ print $NF }' |
8571                                 sed -e "s/^path=//g")
8572                         if [ $obj_file != $mntpt/$path ]; then
8573                                 echo "FAILED test_60a wrong obj path" \
8574                                       "$montpt/$path, should be $obj_file"
8575                                 pass=false
8576                                 break
8577                         fi
8578                 fi
8579         done
8580         rm -f $TMP/$tfile
8581         #restart mgs before "error", otherwise it will block the next test
8582         stop mgs || error "stop mgs failed"
8583         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
8584         $pass || error "test failed, see FAILED test_60a messages for specifics"
8585 }
8586 run_test 60a "llog_test run from kernel module and test llog_reader"
8587
8588 test_60b() { # bug 6411
8589         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8590
8591         dmesg > $DIR/$tfile
8592         LLOG_COUNT=$(do_facet mgs dmesg |
8593                      awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
8594                           /llog_[a-z]*.c:[0-9]/ {
8595                                 if (marker)
8596                                         from_marker++
8597                                 from_begin++
8598                           }
8599                           END {
8600                                 if (marker)
8601                                         print from_marker
8602                                 else
8603                                         print from_begin
8604                           }")
8605
8606         [[ $LLOG_COUNT -gt 120 ]] &&
8607                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
8608 }
8609 run_test 60b "limit repeated messages from CERROR/CWARN"
8610
8611 test_60c() {
8612         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8613
8614         echo "create 5000 files"
8615         createmany -o $DIR/f60c- 5000
8616 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
8617         lctl set_param fail_loc=0x80000137
8618         unlinkmany $DIR/f60c- 5000
8619         lctl set_param fail_loc=0
8620 }
8621 run_test 60c "unlink file when mds full"
8622
8623 test_60d() {
8624         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8625
8626         SAVEPRINTK=$(lctl get_param -n printk)
8627         # verify "lctl mark" is even working"
8628         MESSAGE="test message ID $RANDOM $$"
8629         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
8630         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
8631
8632         lctl set_param printk=0 || error "set lnet.printk failed"
8633         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
8634         MESSAGE="new test message ID $RANDOM $$"
8635         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
8636         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
8637         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
8638
8639         lctl set_param -n printk="$SAVEPRINTK"
8640 }
8641 run_test 60d "test printk console message masking"
8642
8643 test_60e() {
8644         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8645         remote_mds_nodsh && skip "remote MDS with nodsh"
8646
8647         touch $DIR/$tfile
8648 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
8649         do_facet mds1 lctl set_param fail_loc=0x15b
8650         rm $DIR/$tfile
8651 }
8652 run_test 60e "no space while new llog is being created"
8653
8654 test_60f() {
8655         local old_path=$($LCTL get_param -n debug_path)
8656
8657         stack_trap "$LCTL set_param debug_path=$old_path"
8658         stack_trap "rm -f $TMP/$tfile*"
8659         rm -f $TMP/$tfile* 2> /dev/null
8660         #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
8661         $LCTL set_param debug_path=$TMP/$tfile fail_loc=0x8000050e
8662         test_mkdir $DIR/$tdir
8663         # retry in case the open is cached and not released
8664         for (( i = 0; i < 100 && $(ls $TMP/$tfile* | wc -l) == 0; i++ )); do
8665                 echo $i > $DIR/$tdir/$tfile.$i && cat $DIR/$tdir/$tfile.$i
8666                 sleep 0.1
8667         done
8668         ls $TMP/$tfile*
8669         (( $(ls $TMP/$tfile* | wc -l) > 0 )) || error "$TMP/$tfile not dumped"
8670 }
8671 run_test 60f "change debug_path works"
8672
8673 test_60g() {
8674         local pid
8675         local i
8676
8677         test_mkdir -c $MDSCOUNT $DIR/$tdir
8678
8679         (
8680                 local index=0
8681                 while true; do
8682                         $LFS setdirstripe -i $(($index % $MDSCOUNT)) \
8683                                 -c $MDSCOUNT $DIR/$tdir/subdir$index \
8684                                 2>/dev/null
8685                         mkdir $DIR/$tdir/subdir$index 2>/dev/null
8686                         rmdir $DIR/$tdir/subdir$index 2>/dev/null
8687                         index=$((index + 1))
8688                 done
8689         ) &
8690
8691         pid=$!
8692
8693         for i in {0..100}; do
8694                 # define OBD_FAIL_OSD_TXN_START    0x19a
8695                 local index=$((i % MDSCOUNT + 1))
8696
8697                 do_facet mds$index $LCTL set_param fail_loc=0x8000019a \
8698                         > /dev/null
8699                 sleep 0.01
8700         done
8701
8702         kill -9 $pid
8703
8704         for i in $(seq $MDSCOUNT); do
8705                 do_facet mds$i $LCTL set_param fail_loc=0 > /dev/null
8706         done
8707
8708         mkdir $DIR/$tdir/new || error "mkdir failed"
8709         rmdir $DIR/$tdir/new || error "rmdir failed"
8710
8711         do_facet mds1 $LCTL lfsck_start -M $(facet_svc mds1) -A -C \
8712                 -t namespace
8713         for i in $(seq $MDSCOUNT); do
8714                 wait_update_facet mds$i "$LCTL get_param -n \
8715                         mdd.$(facet_svc mds$i).lfsck_namespace |
8716                         awk '/^status/ { print \\\$2 }'" "completed"
8717         done
8718
8719         ls -R $DIR/$tdir
8720         rm -rf $DIR/$tdir || error "rmdir failed"
8721 }
8722 run_test 60g "transaction abort won't cause MDT hung"
8723
8724 test_60h() {
8725         [ $MDS1_VERSION -le $(version_code 2.12.52) ] &&
8726                 skip "Need MDS version at least 2.12.52"
8727         [ $MDSCOUNT -lt 2 ] && skip "Need at least 2 MDTs"
8728
8729         local f
8730
8731         #define OBD_FAIL_MDS_STRIPE_CREATE       0x188
8732         #define OBD_FAIL_MDS_STRIPE_FID          0x189
8733         for fail_loc in 0x80000188 0x80000189; do
8734                 do_facet mds1 "$LCTL set_param fail_loc=$fail_loc"
8735                 $LFS mkdir -c $MDSCOUNT -i 0 $DIR/$tdir-$fail_loc ||
8736                         error "mkdir $dir-$fail_loc failed"
8737                 for i in {0..10}; do
8738                         # create may fail on missing stripe
8739                         echo $i > $DIR/$tdir-$fail_loc/$i
8740                 done
8741                 $LFS getdirstripe $DIR/$tdir-$fail_loc ||
8742                         error "getdirstripe $tdir-$fail_loc failed"
8743                 $LFS migrate -m 1 $DIR/$tdir-$fail_loc ||
8744                         error "migrate $tdir-$fail_loc failed"
8745                 $LFS getdirstripe $DIR/$tdir-$fail_loc ||
8746                         error "getdirstripe $tdir-$fail_loc failed"
8747                 pushd $DIR/$tdir-$fail_loc
8748                 for f in *; do
8749                         echo $f | cmp $f - || error "$f data mismatch"
8750                 done
8751                 popd
8752                 rm -rf $DIR/$tdir-$fail_loc
8753         done
8754 }
8755 run_test 60h "striped directory with missing stripes can be accessed"
8756
8757 function t60i_load() {
8758         mkdir $DIR/$tdir
8759         #define OBD_FAIL_LLOG_PAUSE_AFTER_PAD               0x131c
8760         $LCTL set_param fail_loc=0x131c fail_val=1
8761         for ((i=0; i<5000; i++)); do
8762                 touch $DIR/$tdir/f$i
8763         done
8764 }
8765
8766 test_60i() {
8767         changelog_register || error "changelog_register failed"
8768         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
8769         changelog_users $SINGLEMDS | grep -q $cl_user ||
8770                 error "User $cl_user not found in changelog_users"
8771         changelog_chmask "ALL"
8772         t60i_load &
8773         local PID=$!
8774         for((i=0; i<100; i++)); do
8775                 changelog_dump >/dev/null ||
8776                         error "can't read changelog"
8777         done
8778         kill $PID
8779         wait $PID
8780         changelog_deregister || error "changelog_deregister failed"
8781         $LCTL set_param fail_loc=0
8782 }
8783 run_test 60i "llog: new record vs reader race"
8784
8785 test_61a() {
8786         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8787
8788         f="$DIR/f61"
8789         dd if=/dev/zero of=$f bs=$PAGE_SIZE count=1 || error "dd $f failed"
8790         cancel_lru_locks osc
8791         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
8792         sync
8793 }
8794 run_test 61a "mmap() writes don't make sync hang ================"
8795
8796 test_61b() {
8797         mmap_mknod_test $DIR/$tfile || error "mmap_mknod_test failed"
8798 }
8799 run_test 61b "mmap() of unstriped file is successful"
8800
8801 # bug 2330 - insufficient obd_match error checking causes LBUG
8802 test_62() {
8803         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8804
8805         f="$DIR/f62"
8806         echo foo > $f
8807         cancel_lru_locks osc
8808         lctl set_param fail_loc=0x405
8809         cat $f && error "cat succeeded, expect -EIO"
8810         lctl set_param fail_loc=0
8811 }
8812 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
8813 # match every page all of the time.
8814 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
8815
8816 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
8817 # Though this test is irrelevant anymore, it helped to reveal some
8818 # other grant bugs (LU-4482), let's keep it.
8819 test_63a() {   # was test_63
8820         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8821
8822         MAX_DIRTY_MB=$(lctl get_param -n osc.*.max_dirty_mb | head -n 1)
8823
8824         for i in `seq 10` ; do
8825                 dd if=/dev/zero of=$DIR/f63 bs=8k &
8826                 sleep 5
8827                 kill $!
8828                 sleep 1
8829         done
8830
8831         rm -f $DIR/f63 || true
8832 }
8833 run_test 63a "Verify oig_wait interruption does not crash ======="
8834
8835 # bug 2248 - async write errors didn't return to application on sync
8836 # bug 3677 - async write errors left page locked
8837 test_63b() {
8838         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8839
8840         debugsave
8841         lctl set_param debug=-1
8842
8843         # ensure we have a grant to do async writes
8844         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
8845         rm $DIR/$tfile
8846
8847         sync    # sync lest earlier test intercept the fail_loc
8848
8849         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
8850         lctl set_param fail_loc=0x80000406
8851         $MULTIOP $DIR/$tfile Owy && \
8852                 error "sync didn't return ENOMEM"
8853         sync; sleep 2; sync     # do a real sync this time to flush page
8854         lctl get_param -n llite.*.dump_page_cache | grep locked && \
8855                 error "locked page left in cache after async error" || true
8856         debugrestore
8857 }
8858 run_test 63b "async write errors should be returned to fsync ==="
8859
8860 test_64a () {
8861         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8862
8863         lfs df $DIR
8864         lctl get_param osc.*[oO][sS][cC][_-]*.cur* | grep "=[1-9]"
8865 }
8866 run_test 64a "verify filter grant calculations (in kernel) ====="
8867
8868 test_64b () {
8869         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8870
8871         bash oos.sh $MOUNT || error "oos.sh failed: $?"
8872 }
8873 run_test 64b "check out-of-space detection on client"
8874
8875 test_64c() {
8876         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
8877 }
8878 run_test 64c "verify grant shrink"
8879
8880 import_param() {
8881         local tgt=$1
8882         local param=$2
8883
8884         $LCTL get_param osc.$tgt.import | awk "/$param/ { print \$2 }"
8885 }
8886
8887 # this does exactly what osc_request.c:osc_announce_cached() does in
8888 # order to calculate max amount of grants to ask from server
8889 want_grant() {
8890         local tgt=$1
8891
8892         local nrpages=$($LCTL get_param -n osc.$tgt.max_pages_per_rpc)
8893         local rpc_in_flight=$($LCTL get_param -n osc.$tgt.max_rpcs_in_flight)
8894
8895         ((rpc_in_flight++));
8896         nrpages=$((nrpages * rpc_in_flight))
8897
8898         local dirty_max_pages=$($LCTL get_param -n osc.$tgt.max_dirty_mb)
8899
8900         dirty_max_pages=$((dirty_max_pages * 1024 * 1024 / PAGE_SIZE))
8901
8902         [[ $dirty_max_pages -gt $nrpages ]] && nrpages=$dirty_max_pages
8903         local undirty=$((nrpages * PAGE_SIZE))
8904
8905         local max_extent_pages
8906         max_extent_pages=$(import_param $tgt grant_max_extent_size)
8907         max_extent_pages=$((max_extent_pages / PAGE_SIZE))
8908         local nrextents=$(((nrpages + max_extent_pages - 1) / max_extent_pages))
8909         local grant_extent_tax
8910         grant_extent_tax=$(import_param $tgt grant_extent_tax)
8911
8912         undirty=$((undirty + nrextents * grant_extent_tax))
8913
8914         echo $undirty
8915 }
8916
8917 # this is size of unit for grant allocation. It should be equal to
8918 # what tgt_grant.c:tgt_grant_chunk() calculates
8919 grant_chunk() {
8920         local tgt=$1
8921         local max_brw_size
8922         local grant_extent_tax
8923
8924         max_brw_size=$(import_param $tgt max_brw_size)
8925
8926         grant_extent_tax=$(import_param $tgt grant_extent_tax)
8927
8928         echo $(((max_brw_size + grant_extent_tax) * 2))
8929 }
8930
8931 test_64d() {
8932         [ $OST1_VERSION -ge $(version_code 2.10.56) ] ||
8933                 skip "OST < 2.10.55 doesn't limit grants enough"
8934
8935         local tgt=$($LCTL dl | awk '/OST0000-osc-[^mM]/ { print $4 }')
8936
8937         [[ "$($LCTL get_param osc.${tgt}.import)" =~ "grant_param" ]] ||
8938                 skip "no grant_param connect flag"
8939
8940         local olddebug="$($LCTL get_param -n debug 2> /dev/null)"
8941
8942         $LCTL set_param -n -n debug="$OLDDEBUG" || true
8943         stack_trap "$LCTL set_param -n debug='$olddebug'" EXIT
8944
8945
8946         local max_cur_granted=$(($(want_grant $tgt) + $(grant_chunk $tgt)))
8947         stack_trap "rm -f $DIR/$tfile && wait_delete_completed" EXIT
8948
8949         $LFS setstripe $DIR/$tfile -i 0 -c 1
8950         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1000 &
8951         ddpid=$!
8952
8953         while kill -0 $ddpid; do
8954                 local cur_grant=$($LCTL get_param -n osc.$tgt.cur_grant_bytes)
8955
8956                 if [[ $cur_grant -gt $max_cur_granted ]]; then
8957                         kill $ddpid
8958                         error "cur_grant $cur_grant > $max_cur_granted"
8959                 fi
8960
8961                 sleep 1
8962         done
8963 }
8964 run_test 64d "check grant limit exceed"
8965
8966 check_grants() {
8967         local tgt=$1
8968         local expected=$2
8969         local msg=$3
8970         local cur_grants=$($LCTL get_param -n osc.$tgt.cur_grant_bytes)
8971
8972         ((cur_grants == expected)) ||
8973                 error "$msg: grants mismatch: $cur_grants, expected $expected"
8974 }
8975
8976 round_up_p2() {
8977         echo $((($1 + $2 - 1) & ~($2 - 1)))
8978 }
8979
8980 test_64e() {
8981         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8982         [ $OST1_VERSION -ge $(version_code 2.11.56) ] ||
8983                 skip "Need OSS version at least 2.11.56"
8984
8985         local olddebug="$($LCTL get_param -n debug 2> /dev/null)"
8986         stack_trap "$LCTL set_param -n debug='$olddebug'" EXIT
8987         $LCTL set_param debug=+cache
8988
8989         # Remount client to reset grant
8990         remount_client $MOUNT || error "failed to remount client"
8991         local osc_tgt="$FSNAME-OST0000-osc-$($LFS getname -i $DIR)"
8992
8993         local init_grants=$(import_param $osc_tgt initial_grant)
8994
8995         check_grants $osc_tgt $init_grants "init grants"
8996
8997         local extent_tax=$(import_param $osc_tgt grant_extent_tax)
8998         local max_brw_size=$(import_param $osc_tgt max_brw_size)
8999         local gbs=$(import_param $osc_tgt grant_block_size)
9000
9001         # write random number of bytes from max_brw_size / 4 to max_brw_size
9002         local write_bytes=$(shuf -i $((max_brw_size / 4))-$max_brw_size -n 1)
9003         # align for direct io
9004         write_bytes=$(round_up_p2 $write_bytes PAGE_SIZE)
9005         # round to grant consumption unit
9006         local wb_round_up=$(round_up_p2 $write_bytes gbs)
9007
9008         local grants=$((wb_round_up + extent_tax))
9009
9010         $LFS setstripe -c 1 -i 0 $DIR/$tfile  || error "lfs setstripe failed"
9011
9012         # define OBD_FAIL_TGT_NO_GRANT 0x725
9013         # make the server not grant more back
9014         do_facet ost1 $LCTL set_param fail_loc=0x725
9015         dd if=/dev/zero of=$DIR/$tfile bs=$write_bytes count=1 oflag=direct
9016
9017         do_facet ost1 $LCTL set_param fail_loc=0
9018
9019         check_grants $osc_tgt $((init_grants - grants)) "dio w/o grant alloc"
9020
9021         rm -f $DIR/$tfile || error "rm failed"
9022
9023         # Remount client to reset grant
9024         remount_client $MOUNT || error "failed to remount client"
9025         osc_tgt="$FSNAME-OST0000-osc-$($LFS getname -i $DIR)"
9026
9027         $LFS setstripe -c 1 -i 0 $DIR/$tfile || error "lfs setstripe failed"
9028
9029         # define OBD_FAIL_TGT_NO_GRANT 0x725
9030         # make the server not grant more back
9031         do_facet ost1 $LCTL set_param fail_loc=0x725
9032         $MULTIOP $DIR/$tfile "oO_WRONLY:w${write_bytes}yc"
9033         do_facet ost1 $LCTL set_param fail_loc=0
9034
9035         check_grants $osc_tgt $((init_grants - grants)) "buf io w/o grant alloc"
9036 }
9037 run_test 64e "check grant consumption (no grant allocation)"
9038
9039 test_64f() {
9040         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9041
9042         local olddebug="$($LCTL get_param -n debug 2> /dev/null)"
9043         stack_trap "$LCTL set_param -n debug='$olddebug'" EXIT
9044         $LCTL set_param debug=+cache
9045
9046         # Remount client to reset grant
9047         remount_client $MOUNT || error "failed to remount client"
9048         local osc_tgt="$FSNAME-OST0000-osc-$($LFS getname -i $DIR)"
9049
9050         local init_grants=$(import_param $osc_tgt initial_grant)
9051         local extent_tax=$(import_param $osc_tgt grant_extent_tax)
9052         local max_brw_size=$(import_param $osc_tgt max_brw_size)
9053         local gbs=$(import_param $osc_tgt grant_block_size)
9054         local chunk=$(grant_chunk $osc_tgt)
9055
9056         # write random number of bytes from max_brw_size / 4 to max_brw_size
9057         local write_bytes=$(shuf -i $((max_brw_size / 4))-$max_brw_size -n 1)
9058         # align for direct io
9059         write_bytes=$(round_up_p2 $write_bytes PAGE_SIZE)
9060         # round to grant consumption unit
9061         local wb_round_up=$(round_up_p2 $write_bytes gbs)
9062
9063         local grants=$((wb_round_up + extent_tax))
9064
9065         $LFS setstripe -c 1 -i 0 $DIR/$tfile || error "lfs setstripe failed"
9066         dd if=/dev/zero of=$DIR/$tfile bs=$write_bytes count=1 oflag=direct ||
9067                 error "error writing to $DIR/$tfile"
9068
9069         check_grants $osc_tgt $((init_grants - grants + chunk)) \
9070                 "direct io with grant allocation"
9071
9072         rm -f $DIR/$tfile || error "rm failed"
9073
9074         # Remount client to reset grant
9075         remount_client $MOUNT || error "failed to remount client"
9076         osc_tgt="$FSNAME-OST0000-osc-$($LFS getname -i $DIR)"
9077
9078         $LFS setstripe -c 1 -i 0 $DIR/$tfile || error "lfs setstripe failed"
9079
9080         local cmd="oO_WRONLY:w${write_bytes}_yc"
9081
9082         $MULTIOP $DIR/$tfile $cmd &
9083         MULTIPID=$!
9084         sleep 1
9085
9086         check_grants $osc_tgt $((init_grants - grants)) \
9087                 "buffered io, not write rpc"
9088
9089         kill -USR1 $MULTIPID
9090         wait
9091
9092         check_grants $osc_tgt $((init_grants - grants + chunk)) \
9093                 "buffered io, one RPC"
9094 }
9095 run_test 64f "check grant consumption (with grant allocation)"
9096
9097 test_64g() {
9098         (( $MDS1_VERSION >= $(version_code 2.14.56) )) ||
9099                 skip "Need MDS version at least 2.14.56"
9100
9101         local mdts=$(comma_list $(mdts_nodes))
9102
9103         local old=$($LCTL get_param mdc.$FSNAME-*.grant_shrink_interval |
9104                         tr '\n' ' ')
9105         stack_trap "$LCTL set_param $old"
9106
9107         # generate dirty pages and increase dirty granted on MDT
9108         stack_trap "rm -f $DIR/$tfile-*"
9109         for (( i = 0; i < 10; i++)); do
9110                 $LFS setstripe -E 1M -L mdt $DIR/$tfile-$i ||
9111                         error "can't set stripe"
9112                 dd if=/dev/zero of=$DIR/$tfile-$i bs=128k count=1 ||
9113                         error "can't dd"
9114                 $LFS getstripe $DIR/$tfile-$i | grep -q pattern.*mdt || {
9115                         $LFS getstripe $DIR/$tfile-$i
9116                         error "not DoM file"
9117                 }
9118         done
9119
9120         # flush dirty pages
9121         sync
9122
9123         # wait until grant shrink reset grant dirty on MDTs
9124         for ((i = 0; i < 120; i++)); do
9125                 grant_dirty=$(do_nodes $mdts $LCTL get_param -n  mdt.*.tot_dirty |
9126                         awk '{sum=sum+$1} END {print sum}')
9127                 vm_dirty=$(awk '/Dirty:/{print $2}' /proc/meminfo)
9128                 echo "$grant_dirty grants, $vm_dirty pages"
9129                 (( grant_dirty + vm_dirty == 0 )) && break
9130                 (( i == 3 )) && sync &&
9131                         $LCTL set_param mdc.$FSNAME-*.grant_shrink_interval=5
9132                 sleep 1
9133         done
9134
9135         grant_dirty=$(do_nodes $mdts $LCTL get_param -n  mdt.*.tot_dirty |
9136                 awk '{sum=sum+$1} END {print sum}')
9137         (( grant_dirty == 0 )) || error "$grant_dirty on MDT"
9138 }
9139 run_test 64g "grant shrink on MDT"
9140
9141 test_64h() {
9142         (( $OST1_VERSION >= $(version_code 2.14.56) )) ||
9143                 skip "need OST at least 2.14.56 to avoid grant shrink on read"
9144
9145         local instance=$($LFS getname -i $DIR)
9146         local osc_tgt="$FSNAME-OST0000-osc-$instance"
9147         local num_exps=$(do_facet ost1 \
9148             $LCTL get_param -n obdfilter.*OST0000*.num_exports)
9149         local max_brw_size=$(import_param $osc_tgt max_brw_size)
9150         local avail=$($LCTL get_param -n osc.*OST0000-osc-$instance.kbytesavail)
9151         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
9152
9153         # 10MiB is for file to be written, max_brw_size * 16 *
9154         # num_exps is space reserve so that tgt_grant_shrink() decided
9155         # to not shrink
9156         local expect=$((max_brw_size * 16 * num_exps + 10 * 1048576))
9157         (( avail * 1024 < expect )) &&
9158                 skip "need $expect bytes on ost1, have $(( avail * 1024 )) only"
9159
9160         save_lustre_params client "osc.*OST0000*.grant_shrink" > $p
9161         save_lustre_params client "osc.*OST0000*.grant_shrink_interval" >> $p
9162         stack_trap "restore_lustre_params < $p; rm -f $save" EXIT
9163         $LCTL set_param osc.*OST0000*.grant_shrink=1
9164         $LCTL set_param osc.*OST0000*.grant_shrink_interval=10
9165
9166         $LFS setstripe -c 1 -i 0 $DIR/$tfile
9167         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 oflag=sync
9168
9169         # drop cache so that coming read would do rpc
9170         cancel_lru_locks osc
9171
9172         # shrink interval is set to 10, pause for 7 seconds so that
9173         # grant thread did not wake up yet but coming read entered
9174         # shrink mode for rpc (osc_should_shrink_grant())
9175         sleep 7
9176
9177         declare -a cur_grant_bytes
9178         declare -a tot_granted
9179         cur_grant_bytes[0]=$($LCTL get_param -n osc.*OST0000*.cur_grant_bytes)
9180         tot_granted[0]=$(do_facet ost1 \
9181             $LCTL get_param -n obdfilter.*OST0000*.tot_granted)
9182
9183         dd if=$DIR/$tfile bs=4K count=1 of=/dev/null
9184
9185         cur_grant_bytes[1]=$($LCTL get_param -n osc.*OST0000*.cur_grant_bytes)
9186         tot_granted[1]=$(do_facet ost1 \
9187             $LCTL get_param -n obdfilter.*OST0000*.tot_granted)
9188
9189         # grant change should be equal on both sides
9190         (( cur_grant_bytes[0] - cur_grant_bytes[1] ==
9191                 tot_granted[0] - tot_granted[1])) ||
9192                 error "grant change mismatch, "                                \
9193                         "server: ${tot_granted[0]} to ${tot_granted[1]}, "     \
9194                         "client: ${cur_grant_bytes[0]} to ${cur_grant_bytes[1]}"
9195 }
9196 run_test 64h "grant shrink on read"
9197
9198 test_64i() {
9199         (( $OST1_VERSION >= $(version_code 2.14.56) )) ||
9200                 skip "need OST at least 2.14.56 to avoid grant shrink on replay"
9201
9202         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9203         remote_ost_nodsh && skip "remote OSTs with nodsh"
9204
9205         $LFS setstripe -c 1 -i 0 $DIR/$tfile
9206
9207         dd if=/dev/zero of=$DIR/$tfile bs=1M count=64
9208
9209         # lustre-ffff9fc75e850800 /mnt/lustre -> ffff9fc75e850800
9210         local instance=$($LFS getname -i $DIR)
9211
9212         local osc_tgt="$FSNAME-OST0000-osc-$instance"
9213         local cgb=$($LCTL get_param -n osc.$osc_tgt.cur_grant_bytes)
9214
9215         # shrink grants and simulate rpc loss
9216         #define OBD_FAIL_PTLRPC_DROP_REQ_OPC     0x513
9217         do_facet ost1 "$LCTL set_param fail_loc=0x80000513 fail_val=17"
9218         $LCTL set_param osc.$osc_tgt.cur_grant_bytes=$((cgb/2))B
9219
9220         fail ost1
9221
9222         dd if=/dev/zero of=$DIR/$tfile oflag=append bs=1M count=8 conv=notrunc
9223
9224         local testid=$(echo $TESTNAME | tr '_' ' ')
9225
9226         do_facet ost1 dmesg | tac | sed "/$testid/,$ d" |
9227                 grep "GRANT, real grant" &&
9228                 error "client has more grants then it owns" || true
9229 }
9230 run_test 64i "shrink on reconnect"
9231
9232 # bug 1414 - set/get directories' stripe info
9233 test_65a() {
9234         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9235
9236         test_mkdir $DIR/$tdir
9237         touch $DIR/$tdir/f1
9238         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
9239 }
9240 run_test 65a "directory with no stripe info"
9241
9242 test_65b() {
9243         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9244
9245         test_mkdir $DIR/$tdir
9246         local STRIPESIZE=$($LFS getstripe -S $DIR/$tdir)
9247
9248         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
9249                                                 error "setstripe"
9250         touch $DIR/$tdir/f2
9251         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
9252 }
9253 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
9254
9255 test_65c() {
9256         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9257         [ $OSTCOUNT -lt 2 ] && skip_env "need at least 2 OSTs"
9258
9259         test_mkdir $DIR/$tdir
9260         local stripesize=$($LFS getstripe -S $DIR/$tdir)
9261
9262         $LFS setstripe -S $((stripesize * 4)) -i 1 \
9263                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
9264         touch $DIR/$tdir/f3
9265         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
9266 }
9267 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
9268
9269 test_65d() {
9270         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9271
9272         test_mkdir $DIR/$tdir
9273         local STRIPECOUNT=$($LFS getstripe -c $DIR/$tdir)
9274         local STRIPESIZE=$($LFS getstripe -S $DIR/$tdir)
9275
9276         if [[ $STRIPECOUNT -le 0 ]]; then
9277                 sc=1
9278         elif [[ $STRIPECOUNT -gt $LOV_MAX_STRIPE_COUNT ]]; then
9279                 [[ $OSTCOUNT -gt $LOV_MAX_STRIPE_COUNT ]] &&
9280                         sc=$LOV_MAX_STRIPE_COUNT || sc=$(($OSTCOUNT - 1))
9281         else
9282                 sc=$(($STRIPECOUNT - 1))
9283         fi
9284         $LFS setstripe -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
9285         touch $DIR/$tdir/f4 $DIR/$tdir/f5
9286         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
9287                 error "lverify failed"
9288 }
9289 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
9290
9291 test_65e() {
9292         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9293
9294         test_mkdir $DIR/$tdir
9295
9296         $LFS setstripe $DIR/$tdir || error "setstripe"
9297         $LFS getstripe -v $DIR/$tdir | grep "Default" ||
9298                                         error "no stripe info failed"
9299         touch $DIR/$tdir/f6
9300         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
9301 }
9302 run_test 65e "directory setstripe defaults"
9303
9304 test_65f() {
9305         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9306
9307         test_mkdir $DIR/${tdir}f
9308         $RUNAS $LFS setstripe $DIR/${tdir}f &&
9309                 error "setstripe succeeded" || true
9310 }
9311 run_test 65f "dir setstripe permission (should return error) ==="
9312
9313 test_65g() {
9314         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9315
9316         test_mkdir $DIR/$tdir
9317         local STRIPESIZE=$($LFS getstripe -S $DIR/$tdir)
9318
9319         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
9320                 error "setstripe -S failed"
9321         $LFS setstripe -d $DIR/$tdir || error "setstripe -d failed"
9322         $LFS getstripe -v $DIR/$tdir | grep "Default" ||
9323                 error "delete default stripe failed"
9324 }
9325 run_test 65g "directory setstripe -d"
9326
9327 test_65h() {
9328         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9329
9330         test_mkdir $DIR/$tdir
9331         local STRIPESIZE=$($LFS getstripe -S $DIR/$tdir)
9332
9333         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
9334                 error "setstripe -S failed"
9335         test_mkdir $DIR/$tdir/dd1
9336         [ $($LFS getstripe -c $DIR/$tdir) = $($LFS getstripe -c $DIR/$tdir/dd1) ] ||
9337                 error "stripe info inherit failed"
9338 }
9339 run_test 65h "directory stripe info inherit ===================="
9340
9341 test_65i() {
9342         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9343
9344         save_layout_restore_at_exit $MOUNT
9345
9346         # bug6367: set non-default striping on root directory
9347         $LFS setstripe -S 65536 -c -1 $MOUNT || error "error setting stripe"
9348
9349         # bug12836: getstripe on -1 default directory striping
9350         $LFS getstripe $MOUNT || error "getstripe $MOUNT failed"
9351
9352         # bug12836: getstripe -v on -1 default directory striping
9353         $LFS getstripe -v $MOUNT || error "getstripe -v $MOUNT failed"
9354
9355         # bug12836: new find on -1 default directory striping
9356         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
9357 }
9358 run_test 65i "various tests to set root directory striping"
9359
9360 test_65j() { # bug6367
9361         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9362
9363         sync; sleep 1
9364
9365         # if we aren't already remounting for each test, do so for this test
9366         if [ "$I_MOUNTED" = "yes" ]; then
9367                 cleanup || error "failed to unmount"
9368                 setup
9369         fi
9370
9371         save_layout_restore_at_exit $MOUNT
9372
9373         $LFS setstripe -d $MOUNT || error "setstripe failed"
9374 }
9375 run_test 65j "set default striping on root directory (bug 6367)="
9376
9377 cleanup_65k() {
9378         rm -rf $DIR/$tdir
9379         wait_delete_completed
9380         do_facet $SINGLEMDS "lctl set_param -n \
9381                 osp.$ost*MDT0000.max_create_count=$max_count"
9382         do_facet $SINGLEMDS "lctl set_param -n \
9383                 osp.$ost*MDT0000.create_count=$count"
9384         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
9385         echo $INACTIVE_OSC "is Activate"
9386
9387         wait_osc_import_state mds ost$(( ostnum + 1 )) FULL
9388 }
9389
9390 test_65k() { # bug11679
9391         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9392         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
9393         remote_mds_nodsh && skip "remote MDS with nodsh"
9394
9395         local disable_precreate=true
9396         [ $MDS1_VERSION -le $(version_code 2.8.54) ] &&
9397                 disable_precreate=false
9398
9399         echo "Check OST status: "
9400         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
9401                 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
9402
9403         for OSC in $MDS_OSCS; do
9404                 echo $OSC "is active"
9405                 do_facet $SINGLEMDS lctl --device %$OSC activate
9406         done
9407
9408         for INACTIVE_OSC in $MDS_OSCS; do
9409                 local ost=$(osc_to_ost $INACTIVE_OSC)
9410                 local ostnum=$(do_facet $SINGLEMDS lctl get_param -n \
9411                                lov.*md*.target_obd |
9412                                awk -F: /$ost/'{ print $1 }' | head -n 1)
9413
9414                 mkdir -p $DIR/$tdir
9415                 $LFS setstripe -i $ostnum -c 1 $DIR/$tdir
9416                 createmany -o $DIR/$tdir/$tfile.$ostnum. 1000
9417
9418                 echo "Deactivate: " $INACTIVE_OSC
9419                 do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
9420
9421                 local count=$(do_facet $SINGLEMDS "lctl get_param -n \
9422                               osp.$ost*MDT0000.create_count")
9423                 local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
9424                                   osp.$ost*MDT0000.max_create_count")
9425                 $disable_precreate &&
9426                         do_facet $SINGLEMDS "lctl set_param -n \
9427                                 osp.$ost*MDT0000.max_create_count=0"
9428
9429                 for idx in $(seq 0 $((OSTCOUNT - 1))); do
9430                         [ -f $DIR/$tdir/$idx ] && continue
9431                         echo "$LFS setstripe -i $idx -c 1 $DIR/$tdir/$idx"
9432                         $LFS setstripe -i $idx -c 1 $DIR/$tdir/$idx ||
9433                                 { cleanup_65k;
9434                                   error "setstripe $idx should succeed"; }
9435                         rm -f $DIR/$tdir/$idx || error "rm $idx failed"
9436                 done
9437                 unlinkmany $DIR/$tdir/$tfile.$ostnum. 1000
9438                 rmdir $DIR/$tdir
9439
9440                 do_facet $SINGLEMDS "lctl set_param -n \
9441                         osp.$ost*MDT0000.max_create_count=$max_count"
9442                 do_facet $SINGLEMDS "lctl set_param -n \
9443                         osp.$ost*MDT0000.create_count=$count"
9444                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
9445                 echo $INACTIVE_OSC "is Activate"
9446
9447                 wait_osc_import_state mds ost$(( ostnum + 1 )) FULL
9448         done
9449 }
9450 run_test 65k "validate manual striping works properly with deactivated OSCs"
9451
9452 test_65l() { # bug 12836
9453         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9454
9455         test_mkdir -p $DIR/$tdir/test_dir
9456         $LFS setstripe -c -1 $DIR/$tdir/test_dir
9457         $LFS find -mtime -1 $DIR/$tdir >/dev/null
9458 }
9459 run_test 65l "lfs find on -1 stripe dir ========================"
9460
9461 test_65m() {
9462         local layout=$(save_layout $MOUNT)
9463         $RUNAS $LFS setstripe -c 2 $MOUNT && {
9464                 restore_layout $MOUNT $layout
9465                 error "setstripe should fail by non-root users"
9466         }
9467         true
9468 }
9469 run_test 65m "normal user can't set filesystem default stripe"
9470
9471 test_65n() {
9472         [ -n "$FILESET" ] && skip "Not functional for FILESET set"
9473         [[ $MDS1_VERSION -ge $(version_code 2.12.50) ]] ||
9474                 skip "Need MDS version at least 2.12.50"
9475         [[ $PARALLEL != "yes" ]] || skip "skip parallel run"
9476
9477         [[ $OSTCOUNT -ge 2 ]] || skip_env "needs >= 2 OSTs"
9478         which getfattr > /dev/null 2>&1 || skip_env "no getfattr command"
9479         which setfattr > /dev/null 2>&1 || skip_env "no setfattr command"
9480
9481         save_layout_restore_at_exit $MOUNT
9482
9483         # new subdirectory under root directory should not inherit
9484         # the default layout from root
9485         local dir1=$MOUNT/$tdir-1
9486         mkdir $dir1 || error "mkdir $dir1 failed"
9487         ! getfattr -n trusted.lov $dir1 &> /dev/null ||
9488                 error "$dir1 shouldn't have LOV EA"
9489
9490         # delete the default layout on root directory
9491         $LFS setstripe -d $MOUNT || error "delete root default layout failed"
9492
9493         local dir2=$MOUNT/$tdir-2
9494         mkdir $dir2 || error "mkdir $dir2 failed"
9495         ! getfattr -n trusted.lov $dir2 &> /dev/null ||
9496                 error "$dir2 shouldn't have LOV EA"
9497
9498         # set a new striping pattern on root directory
9499         local def_stripe_size=$($LFS getstripe -S $MOUNT)
9500         local new_def_stripe_size=$((def_stripe_size * 2))
9501         $LFS setstripe -S $new_def_stripe_size $MOUNT ||
9502                 error "set stripe size on $MOUNT failed"
9503
9504         # new file created in $dir2 should inherit the new stripe size from
9505         # the filesystem default
9506         local file2=$dir2/$tfile-2
9507         touch $file2 || error "touch $file2 failed"
9508
9509         local file2_stripe_size=$($LFS getstripe -S $file2)
9510         [[ $file2_stripe_size -eq $new_def_stripe_size ]] ||
9511         {
9512                 echo "file2_stripe_size: '$file2_stripe_size'"
9513                 echo "new_def_stripe_size: '$new_def_stripe_size'"
9514                 error "$file2 didn't inherit stripe size $new_def_stripe_size"
9515         }
9516
9517         local dir3=$MOUNT/$tdir-3
9518         mkdir $dir3 || error "mkdir $dir3 failed"
9519         # $dir3 shouldn't have LOV EA, but "lfs getstripe -d $dir3" should show
9520         # the root layout, which is the actual default layout that will be used
9521         # when new files are created in $dir3.
9522         local dir3_layout=$(get_layout_param $dir3)
9523         local root_dir_layout=$(get_layout_param $MOUNT)
9524         [[ "$dir3_layout" = "$root_dir_layout" ]] ||
9525         {
9526                 echo "dir3_layout: '$dir3_layout'"
9527                 echo "root_dir_layout: '$root_dir_layout'"
9528                 error "$dir3 should show the default layout from $MOUNT"
9529         }
9530
9531         # set OST pool on root directory
9532         local pool=$TESTNAME
9533         pool_add $pool || error "add $pool failed"
9534         pool_add_targets $pool 0 $((OSTCOUNT - 1)) 1 ||
9535                 error "add targets to $pool failed"
9536
9537         $LFS setstripe -p $pool $MOUNT ||
9538                 error "set OST pool on $MOUNT failed"
9539
9540         # new file created in $dir3 should inherit the pool from
9541         # the filesystem default
9542         local file3=$dir3/$tfile-3
9543         touch $file3 || error "touch $file3 failed"
9544
9545         local file3_pool=$($LFS getstripe -p $file3)
9546         [[ "$file3_pool" = "$pool" ]] ||
9547                 error "$file3 ('$file3_pool') didn't inherit OST pool '$pool'"
9548
9549         local dir4=$MOUNT/$tdir-4
9550         mkdir $dir4 || error "mkdir $dir4 failed"
9551         local dir4_layout=$(get_layout_param $dir4)
9552         root_dir_layout=$(get_layout_param $MOUNT)
9553         echo "$LFS getstripe -d $dir4"
9554         $LFS getstripe -d $dir4
9555         echo "$LFS getstripe -d $MOUNT"
9556         $LFS getstripe -d $MOUNT
9557         [[ "$dir4_layout" = "$root_dir_layout" ]] ||
9558         {
9559                 echo "dir4_layout: '$dir4_layout'"
9560                 echo "root_dir_layout: '$root_dir_layout'"
9561                 error "$dir4 should show the default layout from $MOUNT"
9562         }
9563
9564         # new file created in $dir4 should inherit the pool from
9565         # the filesystem default
9566         local file4=$dir4/$tfile-4
9567         touch $file4 || error "touch $file4 failed"
9568
9569         local file4_pool=$($LFS getstripe -p $file4)
9570         [[ "$file4_pool" = "$pool" ]] ||
9571                 error "$file4 ('$file4_pool') didn't inherit OST pool $pool"
9572
9573         # new subdirectory under non-root directory should inherit
9574         # the default layout from its parent directory
9575         $LFS setstripe -S $new_def_stripe_size -p $pool $dir4 ||
9576                 error "set directory layout on $dir4 failed"
9577
9578         local dir5=$dir4/$tdir-5
9579         mkdir $dir5 || error "mkdir $dir5 failed"
9580
9581         dir4_layout=$(get_layout_param $dir4)
9582         local dir5_layout=$(get_layout_param $dir5)
9583         [[ "$dir4_layout" = "$dir5_layout" ]] ||
9584         {
9585                 echo "dir4_layout: '$dir4_layout'"
9586                 echo "dir5_layout: '$dir5_layout'"
9587                 error "$dir5 should inherit the default layout from $dir4"
9588         }
9589
9590         # though subdir under ROOT doesn't inherit default layout, but
9591         # its sub dir/file should be created with default layout.
9592         [[ $MDSCOUNT -ge 2 ]] || skip_env "needs >= 2 MDTs"
9593         [[ $MDS1_VERSION -ge $(version_code 2.12.59) ]] ||
9594                 skip "Need MDS version at least 2.12.59"
9595
9596         local default_lmv_count=$($LFS getdirstripe -D -c $MOUNT)
9597         local default_lmv_index=$($LFS getdirstripe -D -i $MOUNT)
9598         local default_lmv_hash=$($LFS getdirstripe -D -H $MOUNT)
9599
9600         if [ $default_lmv_hash == "none" ]; then
9601                 stack_trap "$LFS setdirstripe -D -d $MOUNT" EXIT
9602         else
9603                 stack_trap "$LFS setdirstripe -D -i $default_lmv_index \
9604                         -c $default_lmv_count -H $default_lmv_hash $MOUNT" EXIT
9605         fi
9606
9607         $LFS setdirstripe -D -c 2 $MOUNT ||
9608                 error "setdirstripe -D -c 2 failed"
9609         mkdir $MOUNT/$tdir-6 || error "mkdir $tdir-6 failed"
9610         local lmv_count=$($LFS getdirstripe -c $MOUNT/$tdir-6)
9611         [ $lmv_count -eq 2 ] || error "$tdir-6 stripe count $lmv_count"
9612
9613         # $dir4 layout includes pool
9614         $LFS setstripe -S $((new_def_stripe_size * 2)) $dir4
9615         [[ "$pool" = $($LFS getstripe -p -d $dir4) ]] ||
9616                 error "pool lost on setstripe"
9617         $LFS setstripe -E -1 -S $new_def_stripe_size $dir4
9618         [[ "$pool" = $($LFS getstripe -p -d $dir4) ]] ||
9619                 error "pool lost on compound layout setstripe"
9620 }
9621 run_test 65n "don't inherit default layout from root for new subdirectories"
9622
9623 # bug 2543 - update blocks count on client
9624 test_66() {
9625         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9626
9627         local COUNT=${COUNT:-8}
9628         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
9629         sync; sync_all_data; sync; sync_all_data
9630         cancel_lru_locks osc
9631         local BLOCKS=$(ls -s --block-size=1k $DIR/f66 | awk '{ print $1 }')
9632         (( BLOCKS >= COUNT )) || error "$DIR/f66 blocks $BLOCKS < $COUNT"
9633 }
9634 run_test 66 "update inode blocks count on client ==============="
9635
9636 meminfo() {
9637         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
9638 }
9639
9640 swap_used() {
9641         swapon -s | awk '($1 == "'$1'") { print $4 }'
9642 }
9643
9644 # bug5265, obdfilter oa2dentry return -ENOENT
9645 # #define OBD_FAIL_SRV_ENOENT 0x217
9646 test_69() {
9647         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9648         remote_ost_nodsh && skip "remote OST with nodsh"
9649
9650         f="$DIR/$tfile"
9651         $LFS setstripe -c 1 -i 0 $f
9652
9653         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
9654
9655         do_facet ost1 lctl set_param fail_loc=0x217
9656         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
9657         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
9658
9659         do_facet ost1 lctl set_param fail_loc=0
9660         $DIRECTIO write $f 0 2 || error "write error"
9661
9662         cancel_lru_locks osc
9663         $DIRECTIO read $f 0 1 || error "read error"
9664
9665         do_facet ost1 lctl set_param fail_loc=0x217
9666         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
9667
9668         do_facet ost1 lctl set_param fail_loc=0
9669         rm -f $f
9670 }
9671 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
9672
9673 test_71() {
9674         test_mkdir $DIR/$tdir
9675         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
9676         bash rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
9677 }
9678 run_test 71 "Running dbench on lustre (don't segment fault) ===="
9679
9680 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
9681         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9682         [ "$RUNAS_ID" = "$UID" ] &&
9683                 skip_env "RUNAS_ID = UID = $UID -- skipping"
9684         # Check that testing environment is properly set up. Skip if not
9685         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS ||
9686                 skip_env "User $RUNAS_ID does not exist - skipping"
9687
9688         touch $DIR/$tfile
9689         chmod 777 $DIR/$tfile
9690         chmod ug+s $DIR/$tfile
9691         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
9692                 error "$RUNAS dd $DIR/$tfile failed"
9693         # See if we are still setuid/sgid
9694         [ -u $DIR/$tfile ] || [ -g $DIR/$tfile ] &&
9695                 error "S/gid is not dropped on write"
9696         # Now test that MDS is updated too
9697         cancel_lru_locks mdc
9698         [ -u $DIR/$tfile ] || [ -g $DIR/$tfile ] &&
9699                 error "S/gid is not dropped on MDS"
9700         rm -f $DIR/$tfile
9701 }
9702 run_test 72a "Test that remove suid works properly (bug5695) ===="
9703
9704 test_72b() { # bug 24226 -- keep mode setting when size is not changing
9705         local perm
9706
9707         [ "$RUNAS_ID" = "$UID" ] &&
9708                 skip_env "RUNAS_ID = UID = $UID -- skipping"
9709         [ "$RUNAS_ID" -eq 0 ] &&
9710                 skip_env "RUNAS_ID = 0 -- skipping"
9711         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9712         # Check that testing environment is properly set up. Skip if not
9713         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS ||
9714                 skip_env "User $RUNAS_ID does not exist - skipping"
9715
9716         touch $DIR/${tfile}-f{g,u}
9717         test_mkdir $DIR/${tfile}-dg
9718         test_mkdir $DIR/${tfile}-du
9719         chmod 770 $DIR/${tfile}-{f,d}{g,u}
9720         chmod g+s $DIR/${tfile}-{f,d}g
9721         chmod u+s $DIR/${tfile}-{f,d}u
9722         for perm in 777 2777 4777; do
9723                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
9724                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
9725                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
9726                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
9727         done
9728         true
9729 }
9730 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
9731
9732 # bug 3462 - multiple simultaneous MDC requests
9733 test_73() {
9734         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9735
9736         test_mkdir $DIR/d73-1
9737         test_mkdir $DIR/d73-2
9738         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
9739         pid1=$!
9740
9741         lctl set_param fail_loc=0x80000129
9742         $MULTIOP $DIR/d73-1/f73-2 Oc &
9743         sleep 1
9744         lctl set_param fail_loc=0
9745
9746         $MULTIOP $DIR/d73-2/f73-3 Oc &
9747         pid3=$!
9748
9749         kill -USR1 $pid1
9750         wait $pid1 || return 1
9751
9752         sleep 25
9753
9754         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
9755         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
9756         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
9757
9758         rm -rf $DIR/d73-*
9759 }
9760 run_test 73 "multiple MDC requests (should not deadlock)"
9761
9762 test_74a() { # bug 6149, 6184
9763         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9764
9765         touch $DIR/f74a
9766         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
9767         #
9768         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
9769         # will spin in a tight reconnection loop
9770         $LCTL set_param fail_loc=0x8000030e
9771         # get any lock that won't be difficult - lookup works.
9772         ls $DIR/f74a
9773         $LCTL set_param fail_loc=0
9774         rm -f $DIR/f74a
9775         true
9776 }
9777 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
9778
9779 test_74b() { # bug 13310
9780         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9781
9782         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
9783         #
9784         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
9785         # will spin in a tight reconnection loop
9786         $LCTL set_param fail_loc=0x8000030e
9787         # get a "difficult" lock
9788         touch $DIR/f74b
9789         $LCTL set_param fail_loc=0
9790         rm -f $DIR/f74b
9791         true
9792 }
9793 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
9794
9795 test_74c() {
9796         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9797
9798         #define OBD_FAIL_LDLM_NEW_LOCK
9799         $LCTL set_param fail_loc=0x319
9800         touch $DIR/$tfile && error "touch successful"
9801         $LCTL set_param fail_loc=0
9802         true
9803 }
9804 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
9805
9806 slab_lic=/sys/kernel/slab/lustre_inode_cache
9807 num_objects() {
9808         [ -f $slab_lic/shrink ] && echo 1 > $slab_lic/shrink
9809         [ -f $slab_lic/objects ] && awk '{ print $1 }' $slab_lic/objects ||
9810                 awk '/lustre_inode_cache/ { print $2; exit }' /proc/slabinfo
9811 }
9812
9813 test_76a() { # Now for b=20433, added originally in b=1443
9814         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9815
9816         cancel_lru_locks osc
9817         # there may be some slab objects cached per core
9818         local cpus=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
9819         local before=$(num_objects)
9820         local count=$((512 * cpus))
9821         [ "$SLOW" = "no" ] && count=$((128 * cpus))
9822         local margin=$((count / 10))
9823         if [[ -f $slab_lic/aliases ]]; then
9824                 local aliases=$(cat $slab_lic/aliases)
9825                 (( aliases > 0 )) && margin=$((margin * aliases))
9826         fi
9827
9828         echo "before slab objects: $before"
9829         for i in $(seq $count); do
9830                 touch $DIR/$tfile
9831                 rm -f $DIR/$tfile
9832         done
9833         cancel_lru_locks osc
9834         local after=$(num_objects)
9835         echo "created: $count, after slab objects: $after"
9836         # shared slab counts are not very accurate, allow significant margin
9837         # the main goal is that the cache growth is not permanently > $count
9838         while (( after > before + margin )); do
9839                 sleep 1
9840                 after=$(num_objects)
9841                 wait=$((wait + 1))
9842                 (( wait % 5 == 0 )) && echo "wait $wait seconds objects: $after"
9843                 if (( wait > 60 )); then
9844                         error "inode slab grew from $before+$margin to $after"
9845                 fi
9846         done
9847 }
9848 run_test 76a "confirm clients recycle inodes properly ===="
9849
9850 test_76b() {
9851         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9852         [ $CLIENT_VERSION -ge $(version_code 2.13.55) ] || skip "not supported"
9853
9854         local count=512
9855         local before=$(num_objects)
9856
9857         for i in $(seq $count); do
9858                 mkdir $DIR/$tdir
9859                 rmdir $DIR/$tdir
9860         done
9861
9862         local after=$(num_objects)
9863         local wait=0
9864
9865         while (( after > before )); do
9866                 sleep 1
9867                 after=$(num_objects)
9868                 wait=$((wait + 1))
9869                 (( wait % 5 == 0 )) && echo "wait $wait seconds objects: $after"
9870                 if (( wait > 60 )); then
9871                         error "inode slab grew from $before to $after"
9872                 fi
9873         done
9874
9875         echo "slab objects before: $before, after: $after"
9876 }
9877 run_test 76b "confirm clients recycle directory inodes properly ===="
9878
9879 export ORIG_CSUM=""
9880 set_checksums()
9881 {
9882         # Note: in sptlrpc modes which enable its own bulk checksum, the
9883         # original crc32_le bulk checksum will be automatically disabled,
9884         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
9885         # will be checked by sptlrpc code against sptlrpc bulk checksum.
9886         # In this case set_checksums() will not be no-op, because sptlrpc
9887         # bulk checksum will be enabled all through the test.
9888
9889         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
9890         lctl set_param -n osc.*.checksums $1
9891         return 0
9892 }
9893
9894 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
9895                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
9896 CKSUM_TYPES=${CKSUM_TYPES:-$(lctl get_param -n osc.*osc-[^mM]*.checksum_type |
9897                              tr -d [] | head -n1)}
9898 set_checksum_type()
9899 {
9900         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
9901         rc=$?
9902         log "set checksum type to $1, rc = $rc"
9903         return $rc
9904 }
9905
9906 get_osc_checksum_type()
9907 {
9908         # arugment 1: OST name, like OST0000
9909         ost=$1
9910         checksum_type=$(lctl get_param -n osc.*${ost}-osc-[^mM]*.checksum_type |
9911                         sed 's/.*\[\(.*\)\].*/\1/g')
9912         rc=$?
9913         [ $rc -ne 0 ] && error "failed to get checksum type of $ost, rc = $rc, output = $checksum_type"
9914         echo $checksum_type
9915 }
9916
9917 F77_TMP=$TMP/f77-temp
9918 F77SZ=8
9919 setup_f77() {
9920         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
9921                 error "error writing to $F77_TMP"
9922 }
9923
9924 test_77a() { # bug 10889
9925         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9926         $GSS && skip_env "could not run with gss"
9927
9928         [ ! -f $F77_TMP ] && setup_f77
9929         set_checksums 1
9930         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
9931         set_checksums 0
9932         rm -f $DIR/$tfile
9933 }
9934 run_test 77a "normal checksum read/write operation"
9935
9936 test_77b() { # bug 10889
9937         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9938         $GSS && skip_env "could not run with gss"
9939
9940         [ ! -f $F77_TMP ] && setup_f77
9941         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
9942         $LCTL set_param fail_loc=0x80000409
9943         set_checksums 1
9944
9945         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
9946                 error "dd error: $?"
9947         $LCTL set_param fail_loc=0
9948
9949         for algo in $CKSUM_TYPES; do
9950                 cancel_lru_locks osc
9951                 set_checksum_type $algo
9952                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
9953                 $LCTL set_param fail_loc=0x80000408
9954                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
9955                 $LCTL set_param fail_loc=0
9956         done
9957         set_checksums 0
9958         set_checksum_type $ORIG_CSUM_TYPE
9959         rm -f $DIR/$tfile
9960 }
9961 run_test 77b "checksum error on client write, read"
9962
9963 cleanup_77c() {
9964         trap 0
9965         set_checksums 0
9966         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=0
9967         $check_ost &&
9968                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=0
9969         [ -n "$osc_file_prefix" ] && rm -f ${osc_file_prefix}*
9970         $check_ost && [ -n "$ost_file_prefix" ] &&
9971                 do_facet ost1 rm -f ${ost_file_prefix}\*
9972 }
9973
9974 test_77c() {
9975         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9976         $GSS && skip_env "could not run with gss"
9977         remote_ost_nodsh && skip "remote OST with nodsh"
9978
9979         local bad1
9980         local osc_file_prefix
9981         local osc_file
9982         local check_ost=false
9983         local ost_file_prefix
9984         local ost_file
9985         local orig_cksum
9986         local dump_cksum
9987         local fid
9988
9989         # ensure corruption will occur on first OSS/OST
9990         $LFS setstripe -i 0 $DIR/$tfile
9991
9992         [ ! -f $F77_TMP ] && setup_f77
9993         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
9994                 error "dd write error: $?"
9995         fid=$($LFS path2fid $DIR/$tfile)
9996
9997         if [ $OST1_VERSION -ge $(version_code 2.9.57) ]
9998         then
9999                 check_ost=true
10000                 ost_file_prefix=$(do_facet ost1 $LCTL get_param -n debug_path)
10001                 ost_file_prefix=${ost_file_prefix}-checksum_dump-ost-\\${fid}
10002         else
10003                 echo "OSS do not support bulk pages dump upon error"
10004         fi
10005
10006         osc_file_prefix=$($LCTL get_param -n debug_path)
10007         osc_file_prefix=${osc_file_prefix}-checksum_dump-osc-\\${fid}
10008
10009         trap cleanup_77c EXIT
10010
10011         set_checksums 1
10012         # enable bulk pages dump upon error on Client
10013         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=1
10014         # enable bulk pages dump upon error on OSS
10015         $check_ost &&
10016                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=1
10017
10018         # flush Client cache to allow next read to reach OSS
10019         cancel_lru_locks osc
10020
10021         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE       0x408
10022         $LCTL set_param fail_loc=0x80000408
10023         dd if=$DIR/$tfile of=/dev/null bs=1M || error "dd read error: $?"
10024         $LCTL set_param fail_loc=0
10025
10026         rm -f $DIR/$tfile
10027
10028         # check cksum dump on Client
10029         osc_file=$(ls ${osc_file_prefix}*)
10030         [ -n "$osc_file" ] || error "no checksum dump file on Client"
10031         # OBD_FAIL_OSC_CHECKSUM_RECEIVE corrupts with "bad1" at start of file
10032         bad1=$(dd if=$osc_file bs=1 count=4 2>/dev/null) || error "dd error: $?"
10033         [ $bad1 == "bad1" ] || error "unexpected corrupt pattern"
10034         orig_cksum=$(dd if=$F77_TMP bs=1 skip=4 count=1048572 2>/dev/null |
10035                      cksum)
10036         dump_cksum=$(dd if=$osc_file bs=1 skip=4 2>/dev/null | cksum)
10037         [[ "$orig_cksum" == "$dump_cksum" ]] ||
10038                 error "dump content does not match on Client"
10039
10040         $check_ost || skip "No need to check cksum dump on OSS"
10041
10042         # check cksum dump on OSS
10043         ost_file=$(do_facet ost1 ls ${ost_file_prefix}\*)
10044         [ -n "$ost_file" ] || error "no checksum dump file on OSS"
10045         orig_cksum=$(dd if=$F77_TMP bs=1048576 count=1 2>/dev/null | cksum)
10046         dump_cksum=$(do_facet ost1 dd if=$ost_file 2>/dev/null \| cksum)
10047         [[ "$orig_cksum" == "$dump_cksum" ]] ||
10048                 error "dump content does not match on OSS"
10049
10050         cleanup_77c
10051 }
10052 run_test 77c "checksum error on client read with debug"
10053
10054 test_77d() { # bug 10889
10055         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10056         $GSS && skip_env "could not run with gss"
10057
10058         stack_trap "rm -f $DIR/$tfile"
10059         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
10060         $LCTL set_param fail_loc=0x80000409
10061         set_checksums 1
10062         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
10063                 error "direct write: rc=$?"
10064         $LCTL set_param fail_loc=0
10065         set_checksums 0
10066
10067         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
10068         $LCTL set_param fail_loc=0x80000408
10069         set_checksums 1
10070         cancel_lru_locks osc
10071         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
10072                 error "direct read: rc=$?"
10073         $LCTL set_param fail_loc=0
10074         set_checksums 0
10075 }
10076 run_test 77d "checksum error on OST direct write, read"
10077
10078 test_77f() { # bug 10889
10079         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10080         $GSS && skip_env "could not run with gss"
10081
10082         set_checksums 1
10083         stack_trap "rm -f $DIR/$tfile"
10084         for algo in $CKSUM_TYPES; do
10085                 cancel_lru_locks osc
10086                 set_checksum_type $algo
10087                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
10088                 $LCTL set_param fail_loc=0x409
10089                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
10090                         error "direct write succeeded"
10091                 $LCTL set_param fail_loc=0
10092         done
10093         set_checksum_type $ORIG_CSUM_TYPE
10094         set_checksums 0
10095 }
10096 run_test 77f "repeat checksum error on write (expect error)"
10097
10098 test_77g() { # bug 10889
10099         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10100         $GSS && skip_env "could not run with gss"
10101         remote_ost_nodsh && skip "remote OST with nodsh"
10102
10103         [ ! -f $F77_TMP ] && setup_f77
10104
10105         local file=$DIR/$tfile
10106         stack_trap "rm -f $file" EXIT
10107
10108         $LFS setstripe -c 1 -i 0 $file
10109         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
10110         do_facet ost1 lctl set_param fail_loc=0x8000021a
10111         set_checksums 1
10112         dd if=$F77_TMP of=$file bs=1M count=$F77SZ ||
10113                 error "write error: rc=$?"
10114         do_facet ost1 lctl set_param fail_loc=0
10115         set_checksums 0
10116
10117         cancel_lru_locks osc
10118         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
10119         do_facet ost1 lctl set_param fail_loc=0x8000021b
10120         set_checksums 1
10121         cmp $F77_TMP $file || error "file compare failed"
10122         do_facet ost1 lctl set_param fail_loc=0
10123         set_checksums 0
10124 }
10125 run_test 77g "checksum error on OST write, read"
10126
10127 test_77k() { # LU-10906
10128         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10129         $GSS && skip_env "could not run with gss"
10130
10131         local cksum_param="osc.$FSNAME*.checksums"
10132         local get_checksum="$LCTL get_param -n $cksum_param | head -n1"
10133         local checksum
10134         local i
10135
10136         [ "$ORIG_CSUM" ] || ORIG_CSUM=$(eval $get_checksum)
10137         stack_trap "wait_update $HOSTNAME '$get_checksum' $ORIG_CSUM || true"
10138         stack_trap "do_facet mgs $LCTL set_param -P $cksum_param=$ORIG_CSUM"
10139
10140         for i in 0 1; do
10141                 do_facet mgs $LCTL set_param -P $cksum_param=$i ||
10142                         error "failed to set checksum=$i on MGS"
10143                 wait_update $HOSTNAME "$get_checksum" $i
10144                 #remount
10145                 echo "remount client, checksum should be $i"
10146                 remount_client $MOUNT || error "failed to remount client"
10147                 checksum=$(eval $get_checksum)
10148                 [ $checksum -eq $i ] || error "checksum($checksum) != $i"
10149         done
10150         # remove persistent param to avoid races with checksum mountopt below
10151         do_facet mgs $LCTL set_param -P -d $cksum_param ||
10152                 error "failed to delete checksum on MGS"
10153
10154         for opt in "checksum" "nochecksum"; do
10155                 #remount with mount option
10156                 echo "remount client with option $opt, checksum should be $i"
10157                 umount_client $MOUNT || error "failed to umount client"
10158                 mount_client $MOUNT "$MOUNT_OPTS,$opt" ||
10159                         error "failed to mount client with option '$opt'"
10160                 checksum=$(eval $get_checksum)
10161                 [ $checksum -eq $i ] || error "checksum($checksum) != $i"
10162                 i=$((i - 1))
10163         done
10164
10165         remount_client $MOUNT || error "failed to remount client"
10166 }
10167 run_test 77k "enable/disable checksum correctly"
10168
10169 test_77l() {
10170         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10171         $GSS && skip_env "could not run with gss"
10172
10173         set_checksums 1
10174         stack_trap "set_checksums $ORIG_CSUM" EXIT
10175         stack_trap "set_checksum_type $ORIG_CSUM_TYPE" EXIT
10176
10177         set_checksum_type invalid && error "unexpected success of invalid checksum type"
10178
10179         $LFS setstripe -c 1 -i 0 $DIR/$tfile
10180         for algo in $CKSUM_TYPES; do
10181                 set_checksum_type $algo || error "fail to set checksum type $algo"
10182                 osc_algo=$(get_osc_checksum_type OST0000)
10183                 [ "$osc_algo" != "$algo" ] && error "checksum type is $osc_algo after setting it to $algo"
10184
10185                 # no locks, no reqs to let the connection idle
10186                 cancel_lru_locks osc
10187                 lru_resize_disable osc
10188                 wait_osc_import_state client ost1 IDLE
10189
10190                 # ensure ost1 is connected
10191                 stat $DIR/$tfile >/dev/null || error "can't stat"
10192                 wait_osc_import_state client ost1 FULL
10193
10194                 osc_algo=$(get_osc_checksum_type OST0000)
10195                 [ "$osc_algo" != "$algo" ] && error "checksum type changed from $algo to $osc_algo after reconnection"
10196         done
10197         return 0
10198 }
10199 run_test 77l "preferred checksum type is remembered after reconnected"
10200
10201 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
10202 rm -f $F77_TMP
10203 unset F77_TMP
10204
10205 test_77m() {
10206         (( $CLIENT_VERSION >= $(version_code 2.14.52) )) ||
10207                 skip "Need at least version 2.14.52"
10208         local param=checksum_speed
10209
10210         $LCTL get_param $param || error "reading $param failed"
10211
10212         csum_speeds=$($LCTL get_param -n $param)
10213
10214         [[ "$csum_speeds" =~ "adler32" && "$csum_speeds" =~ "crc32" ]] ||
10215                 error "known checksum types are missing"
10216 }
10217 run_test 77m "Verify checksum_speed is correctly read"
10218
10219 check_filefrag_77n() {
10220         local nr_ext=0
10221         local starts=()
10222         local ends=()
10223
10224         while read extidx a b start end rest; do
10225                 if [[ "${extidx}" =~ ^[0-9]+: ]]; then
10226                         nr_ext=$(( $nr_ext + 1 ))
10227                         starts+=( ${start%..} )
10228                         ends+=( ${end%:} )
10229                 fi
10230         done < <( filefrag -sv $1 )
10231
10232         [[ $nr_ext -eq 2 ]] && [[ "${starts[-1]}" == $(( ${ends[0]} + 1 )) ]] && return 0
10233         return 1
10234 }
10235
10236 test_77n() {
10237         [[ "$CKSUM_TYPES" =~ t10 ]] || skip "no T10 checksum support on osc"
10238
10239         touch $DIR/$tfile
10240         $TRUNCATE $DIR/$tfile 0
10241         dd if=/dev/urandom of=$DIR/$tfile bs=4k conv=notrunc count=1 seek=0
10242         dd if=/dev/urandom of=$DIR/$tfile bs=4k conv=notrunc count=1 seek=2
10243         check_filefrag_77n $DIR/$tfile ||
10244                 skip "$tfile blocks not contiguous around hole"
10245
10246         set_checksums 1
10247         stack_trap "set_checksums $ORIG_CSUM" EXIT
10248         stack_trap "set_checksum_type $ORIG_CSUM_TYPE" EXIT
10249         stack_trap "rm -f $DIR/$tfile"
10250
10251         for algo in $CKSUM_TYPES; do
10252                 if [[ "$algo" =~ ^t10 ]]; then
10253                         set_checksum_type $algo ||
10254                                 error "fail to set checksum type $algo"
10255                         dd if=$DIR/$tfile of=/dev/null bs=12k count=1 iflag=direct ||
10256                                 error "fail to read $tfile with $algo"
10257                 fi
10258         done
10259         rm -f $DIR/$tfile
10260         return 0
10261 }
10262 run_test 77n "Verify read from a hole inside contiguous blocks with T10PI"
10263
10264 test_77o() {
10265         (( $MDS1_VERSION >= $(version_code 2.14.55) )) ||
10266                 skip "Need MDS version at least 2.14.55"
10267         (( $OST1_VERSION >= $(version_code 2.14.55) )) ||
10268                 skip "Need OST version at least 2.14.55"
10269         local ofd=obdfilter
10270         local mdt=mdt
10271
10272         # print OST checksum_type
10273         echo "$ofd.$FSNAME-*.checksum_type:"
10274         do_nodes $(comma_list $(osts_nodes)) \
10275                 $LCTL get_param -n $ofd.$FSNAME-*.checksum_type
10276
10277         # print MDT checksum_type
10278         echo "$mdt.$FSNAME-*.checksum_type:"
10279         do_nodes $(comma_list $(mdts_nodes)) \
10280                 $LCTL get_param -n $mdt.$FSNAME-*.checksum_type
10281
10282         local o_count=$(do_nodes $(comma_list $(osts_nodes)) \
10283                    $LCTL get_param -n $ofd.$FSNAME-*.checksum_type | wc -l)
10284
10285         (( $o_count == $OSTCOUNT )) ||
10286                 error "found $o_count checksums, not \$MDSCOUNT=$OSTCOUNT"
10287
10288         local m_count=$(do_nodes $(comma_list $(mdts_nodes)) \
10289                    $LCTL get_param -n $mdt.$FSNAME-*.checksum_type | wc -l)
10290
10291         (( $m_count == $MDSCOUNT )) ||
10292                 error "found $m_count checksums, not \$MDSCOUNT=$MDSCOUNT"
10293 }
10294 run_test 77o "Verify checksum_type for server (mdt and ofd(obdfilter))"
10295
10296 cleanup_test_78() {
10297         trap 0
10298         rm -f $DIR/$tfile
10299 }
10300
10301 test_78() { # bug 10901
10302         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10303         remote_ost || skip_env "local OST"
10304
10305         NSEQ=5
10306         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
10307         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
10308         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
10309         echo "MemTotal: $MEMTOTAL"
10310
10311         # reserve 256MB of memory for the kernel and other running processes,
10312         # and then take 1/2 of the remaining memory for the read/write buffers.
10313         if [ $MEMTOTAL -gt 512 ] ;then
10314                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
10315         else
10316                 # for those poor memory-starved high-end clusters...
10317                 MEMTOTAL=$((MEMTOTAL / 2))
10318         fi
10319         echo "Mem to use for directio: $MEMTOTAL"
10320
10321         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
10322         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
10323         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
10324         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
10325                 head -n1)
10326         echo "Smallest OST: $SMALLESTOST"
10327         [[ $SMALLESTOST -lt 10240 ]] &&
10328                 skip "too small OSTSIZE, useless to run large O_DIRECT test"
10329
10330         trap cleanup_test_78 EXIT
10331
10332         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
10333                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
10334
10335         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
10336         echo "File size: $F78SIZE"
10337         $LFS setstripe -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
10338         for i in $(seq 1 $NSEQ); do
10339                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
10340                 echo directIO rdwr round $i of $NSEQ
10341                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
10342         done
10343
10344         cleanup_test_78
10345 }
10346 run_test 78 "handle large O_DIRECT writes correctly ============"
10347
10348 test_79() { # bug 12743
10349         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10350
10351         wait_delete_completed
10352
10353         BKTOTAL=$(calc_osc_kbytes kbytestotal)
10354         BKFREE=$(calc_osc_kbytes kbytesfree)
10355         BKAVAIL=$(calc_osc_kbytes kbytesavail)
10356
10357         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
10358         DFTOTAL=`echo $STRING | cut -d, -f1`
10359         DFUSED=`echo $STRING  | cut -d, -f2`
10360         DFAVAIL=`echo $STRING | cut -d, -f3`
10361         DFFREE=$(($DFTOTAL - $DFUSED))
10362
10363         ALLOWANCE=$((64 * $OSTCOUNT))
10364
10365         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
10366            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
10367                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
10368         fi
10369         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
10370            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
10371                 error "df free($DFFREE) mismatch OST free($BKFREE)"
10372         fi
10373         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
10374            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
10375                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
10376         fi
10377 }
10378 run_test 79 "df report consistency check ======================="
10379
10380 test_80() { # bug 10718
10381         remote_ost_nodsh && skip "remote OST with nodsh"
10382         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10383
10384         # relax strong synchronous semantics for slow backends like ZFS
10385         if [ "$ost1_FSTYPE" != "ldiskfs" ]; then
10386                 local soc="obdfilter.*.sync_lock_cancel"
10387                 local save=$(do_facet ost1 $LCTL get_param -n $soc | head -n1)
10388
10389                 # "sync_on_lock_cancel" was broken by v2_11_55_0-26-g7059644e9a
10390                 if [ -z "$save" ]; then
10391                         soc="obdfilter.*.sync_on_lock_cancel"
10392                         save=$(do_facet ost1 $LCTL get_param -n $soc | head -n1)
10393                 fi
10394
10395                 if [ "$save" != "never" ]; then
10396                         local hosts=$(comma_list $(osts_nodes))
10397
10398                         do_nodes $hosts $LCTL set_param $soc=never
10399                         stack_trap "do_nodes $hosts $LCTL set_param $soc=$save"
10400                 fi
10401         fi
10402
10403         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
10404         sync; sleep 1; sync
10405         local before=$(date +%s)
10406         cancel_lru_locks osc
10407         local after=$(date +%s)
10408         local diff=$((after - before))
10409         [ $diff -le 1 ] || error "elapsed for 1M@1T = $diff"
10410
10411         rm -f $DIR/$tfile
10412 }
10413 run_test 80 "Page eviction is equally fast at high offsets too"
10414
10415 test_81a() { # LU-456
10416         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10417         remote_ost_nodsh && skip "remote OST with nodsh"
10418
10419         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
10420         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
10421         do_facet ost1 lctl set_param fail_loc=0x80000228
10422
10423         # write should trigger a retry and success
10424         $LFS setstripe -i 0 -c 1 $DIR/$tfile
10425         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
10426         RC=$?
10427         if [ $RC -ne 0 ] ; then
10428                 error "write should success, but failed for $RC"
10429         fi
10430 }
10431 run_test 81a "OST should retry write when get -ENOSPC ==============="
10432
10433 test_81b() { # LU-456
10434         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10435         remote_ost_nodsh && skip "remote OST with nodsh"
10436
10437         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
10438         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
10439         do_facet ost1 lctl set_param fail_loc=0x228
10440
10441         # write should retry several times and return -ENOSPC finally
10442         $LFS setstripe -i 0 -c 1 $DIR/$tfile
10443         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
10444         RC=$?
10445         ENOSPC=28
10446         if [ $RC -ne $ENOSPC ] ; then
10447                 error "dd should fail for -ENOSPC, but succeed."
10448         fi
10449 }
10450 run_test 81b "OST should return -ENOSPC when retry still fails ======="
10451
10452 test_99() {
10453         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs"
10454
10455         test_mkdir $DIR/$tdir.cvsroot
10456         chown $RUNAS_ID $DIR/$tdir.cvsroot
10457
10458         cd $TMP
10459         $RUNAS cvs -d $DIR/$tdir.cvsroot init || error "cvs init failed"
10460
10461         cd /etc/init.d
10462         # some versions of cvs import exit(1) when asked to import links or
10463         # files they can't read.  ignore those files.
10464         local toignore=$(find . -type l -printf '-I %f\n' -o \
10465                          ! -perm /4 -printf '-I %f\n')
10466         $RUNAS cvs -d $DIR/$tdir.cvsroot import -m "nomesg" $toignore \
10467                 $tdir.reposname vtag rtag
10468
10469         cd $DIR
10470         test_mkdir $DIR/$tdir.reposname
10471         chown $RUNAS_ID $DIR/$tdir.reposname
10472         $RUNAS cvs -d $DIR/$tdir.cvsroot co $tdir.reposname
10473
10474         cd $DIR/$tdir.reposname
10475         $RUNAS touch foo99
10476         $RUNAS cvs add -m 'addmsg' foo99
10477         $RUNAS cvs update
10478         $RUNAS cvs commit -m 'nomsg' foo99
10479         rm -fr $DIR/$tdir.cvsroot
10480 }
10481 run_test 99 "cvs strange file/directory operations"
10482
10483 test_100() {
10484         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10485         [[ "$NETTYPE" =~ tcp ]] ||
10486                 skip_env "TCP secure port test, not useful for NETTYPE=$NETTYPE"
10487         remote_ost_nodsh && skip "remote OST with nodsh"
10488         remote_mds_nodsh && skip "remote MDS with nodsh"
10489         remote_servers ||
10490                 skip "useless for local single node setup"
10491
10492         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
10493                 [ "$PROT" != "tcp" ] && continue
10494                 RPORT=$(echo $REMOTE | cut -d: -f2)
10495                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
10496
10497                 rc=0
10498                 LPORT=`echo $LOCAL | cut -d: -f2`
10499                 if [ $LPORT -ge 1024 ]; then
10500                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
10501                         netstat -tna
10502                         error_exit "local: $LPORT > 1024, remote: $RPORT"
10503                 fi
10504         done
10505         [ "$rc" = 0 ] || error_exit "privileged port not found" )
10506 }
10507 run_test 100 "check local port using privileged port ==========="
10508
10509 function get_named_value()
10510 {
10511     local tag=$1
10512
10513     grep -w "$tag" | sed "s/^$tag  *\([0-9]*\)  *.*/\1/"
10514 }
10515
10516 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
10517                    awk '/^max_cached_mb/ { print $2 }')
10518
10519 cleanup_101a() {
10520         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
10521         trap 0
10522 }
10523
10524 test_101a() {
10525         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10526
10527         local s
10528         local discard
10529         local nreads=10000
10530         local cache_limit=32
10531
10532         $LCTL set_param -n osc.*-osc*.rpc_stats=0
10533         trap cleanup_101a EXIT
10534         $LCTL set_param -n llite.*.read_ahead_stats=0
10535         $LCTL set_param -n llite.*.max_cached_mb=$cache_limit
10536
10537         #
10538         # randomly read 10000 of 64K chunks from file 3x 32MB in size
10539         #
10540         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
10541         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
10542
10543         discard=0
10544         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
10545                    get_named_value 'read.but.discarded'); do
10546                         discard=$(($discard + $s))
10547         done
10548         cleanup_101a
10549
10550         $LCTL get_param osc.*-osc*.rpc_stats
10551         $LCTL get_param llite.*.read_ahead_stats
10552
10553         # Discard is generally zero, but sometimes a few random reads line up
10554         # and trigger larger readahead, which is wasted & leads to discards.
10555         if [[ $(($discard)) -gt $nreads ]]; then
10556                 error "too many ($discard) discarded pages"
10557         fi
10558         rm -f $DIR/$tfile || true
10559 }
10560 run_test 101a "check read-ahead for random reads"
10561
10562 setup_test101bc() {
10563         test_mkdir $DIR/$tdir
10564         local ssize=$1
10565         local FILE_LENGTH=$2
10566         STRIPE_OFFSET=0
10567
10568         local FILE_SIZE_MB=$((FILE_LENGTH / ssize))
10569
10570         local list=$(comma_list $(osts_nodes))
10571         set_osd_param $list '' read_cache_enable 0
10572         set_osd_param $list '' writethrough_cache_enable 0
10573
10574         trap cleanup_test101bc EXIT
10575         # prepare the read-ahead file
10576         $LFS setstripe -S $ssize -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
10577
10578         dd if=/dev/zero of=$DIR/$tfile bs=$ssize \
10579                                 count=$FILE_SIZE_MB 2> /dev/null
10580
10581 }
10582
10583 cleanup_test101bc() {
10584         trap 0
10585         rm -rf $DIR/$tdir
10586         rm -f $DIR/$tfile
10587
10588         local list=$(comma_list $(osts_nodes))
10589         set_osd_param $list '' read_cache_enable 1
10590         set_osd_param $list '' writethrough_cache_enable 1
10591 }
10592
10593 calc_total() {
10594         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
10595 }
10596
10597 ra_check_101() {
10598         local read_size=$1
10599         local stripe_size=$2
10600         local stride_length=$((stripe_size / read_size))
10601         local stride_width=$((stride_length * OSTCOUNT))
10602         local discard_limit=$(( ((stride_length - 1) * 3 / stride_width) *
10603                                 (stride_width - stride_length) ))
10604         local discard=$($LCTL get_param -n llite.*.read_ahead_stats |
10605                   get_named_value 'read.but.discarded' | calc_total)
10606
10607         if [[ $discard -gt $discard_limit ]]; then
10608                 $LCTL get_param llite.*.read_ahead_stats
10609                 error "($discard limit ${discard_limit}) discarded pages with size (${read_size})"
10610         else
10611                 echo "Read-ahead success for size ${read_size}"
10612         fi
10613 }
10614
10615 test_101b() {
10616         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10617         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
10618
10619         local STRIPE_SIZE=1048576
10620         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
10621
10622         if [ $SLOW == "yes" ]; then
10623                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
10624         else
10625                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
10626         fi
10627
10628         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
10629
10630         # prepare the read-ahead file
10631         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
10632         cancel_lru_locks osc
10633         for BIDX in 2 4 8 16 32 64 128 256
10634         do
10635                 local BSIZE=$((BIDX*4096))
10636                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
10637                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
10638                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
10639                 $LCTL set_param -n llite.*.read_ahead_stats=0
10640                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
10641                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
10642                 cancel_lru_locks osc
10643                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
10644         done
10645         cleanup_test101bc
10646         true
10647 }
10648 run_test 101b "check stride-io mode read-ahead ================="
10649
10650 test_101c() {
10651         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10652
10653         local STRIPE_SIZE=1048576
10654         local FILE_LENGTH=$((STRIPE_SIZE*100))
10655         local nreads=10000
10656         local rsize=65536
10657         local osc_rpc_stats
10658
10659         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
10660
10661         cancel_lru_locks osc
10662         $LCTL set_param osc.*.rpc_stats=0
10663         $READS -f $DIR/$tfile -s$FILE_LENGTH -b$rsize -n$nreads -t 180
10664         $LCTL get_param osc.*.rpc_stats
10665         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
10666                 local stats=$($LCTL get_param -n $osc_rpc_stats)
10667                 local lines=$(echo "$stats" | awk 'END {print NR;}')
10668                 local size
10669
10670                 if [ $lines -le 20 ]; then
10671                         echo "continue debug"
10672                         continue
10673                 fi
10674                 for size in 1 2 4 8; do
10675                         local rpc=$(echo "$stats" |
10676                                     awk '($1 == "'$size':") {print $2; exit; }')
10677                         [ $rpc != 0 ] && ((size * PAGE_SIZE < rsize)) &&
10678                                 error "Small $((size*PAGE_SIZE)) read IO $rpc!"
10679                 done
10680                 echo "$osc_rpc_stats check passed!"
10681         done
10682         cleanup_test101bc
10683         true
10684 }
10685 run_test 101c "check stripe_size aligned read-ahead"
10686
10687 test_101d() {
10688         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10689
10690         local file=$DIR/$tfile
10691         local sz_MB=${FILESIZE_101d:-80}
10692         local ra_MB=${READAHEAD_MB:-40}
10693
10694         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
10695         [ $free_MB -lt $sz_MB ] &&
10696                 skip "Need free space ${sz_MB}M, have ${free_MB}M"
10697
10698         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
10699         $LFS setstripe -c -1 $file || error "setstripe failed"
10700
10701         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
10702         echo Cancel LRU locks on lustre client to flush the client cache
10703         cancel_lru_locks osc
10704
10705         echo Disable read-ahead
10706         local old_RA=$($LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1)
10707         $LCTL set_param -n llite.*.max_read_ahead_mb=0
10708         stack_trap "$LCTL set_param -n llite.*.max_read_ahead_mb=$old_RA" EXIT
10709         $LCTL get_param -n llite.*.max_read_ahead_mb
10710
10711         echo "Reading the test file $file with read-ahead disabled"
10712         local sz_KB=$((sz_MB * 1024 / 4))
10713         # 10485760 bytes transferred in 0.000938 secs (11179579337 bytes/sec)
10714         # 104857600 bytes (105 MB) copied, 0.00876352 s, 12.0 GB/s
10715         local raOFF=$(LANG=C dd if=$file of=/dev/null bs=4k count=$sz_KB |&
10716                       sed -e '/records/d' -e 's/.* \([0-9]*\.[0-9]*\) *s.*/\1/')
10717
10718         echo "Cancel LRU locks on lustre client to flush the client cache"
10719         cancel_lru_locks osc
10720         echo Enable read-ahead with ${ra_MB}MB
10721         $LCTL set_param -n llite.*.max_read_ahead_mb=$ra_MB
10722
10723         echo "Reading the test file $file with read-ahead enabled"
10724         local raON=$(LANG=C dd if=$file of=/dev/null bs=4k count=$sz_KB |&
10725                      sed -e '/records/d' -e 's/.* \([0-9]*\.[0-9]*\) *s.*/\1/')
10726
10727         echo "read-ahead disabled time read $raOFF"
10728         echo "read-ahead enabled time read $raON"
10729
10730         rm -f $file
10731         wait_delete_completed
10732
10733         # use awk for this check instead of bash because it handles decimals
10734         awk "{ exit !($raOFF < 1.0 || $raOFF > $raON) }" <<<"ignore_me" ||
10735                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
10736 }
10737 run_test 101d "file read with and without read-ahead enabled"
10738
10739 test_101e() {
10740         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10741
10742         local file=$DIR/$tfile
10743         local size_KB=500  #KB
10744         local count=100
10745         local bsize=1024
10746
10747         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
10748         local need_KB=$((count * size_KB))
10749         [[ $free_KB -le $need_KB ]] &&
10750                 skip_env "Need free space $need_KB, have $free_KB"
10751
10752         echo "Creating $count ${size_KB}K test files"
10753         for ((i = 0; i < $count; i++)); do
10754                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
10755         done
10756
10757         echo "Cancel LRU locks on lustre client to flush the client cache"
10758         cancel_lru_locks $OSC
10759
10760         echo "Reset readahead stats"
10761         $LCTL set_param -n llite.*.read_ahead_stats=0
10762
10763         for ((i = 0; i < $count; i++)); do
10764                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
10765         done
10766
10767         $LCTL get_param llite.*.max_cached_mb
10768         $LCTL get_param llite.*.read_ahead_stats
10769         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
10770                      get_named_value 'misses' | calc_total)
10771
10772         for ((i = 0; i < $count; i++)); do
10773                 rm -rf $file.$i 2>/dev/null
10774         done
10775
10776         #10000 means 20% reads are missing in readahead
10777         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
10778 }
10779 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
10780
10781 test_101f() {
10782         which iozone || skip_env "no iozone installed"
10783
10784         local old_debug=$($LCTL get_param debug)
10785         old_debug=${old_debug#*=}
10786         $LCTL set_param debug="reada mmap"
10787
10788         # create a test file
10789         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
10790
10791         echo Cancel LRU locks on lustre client to flush the client cache
10792         cancel_lru_locks osc
10793
10794         echo Reset readahead stats
10795         $LCTL set_param -n llite.*.read_ahead_stats=0
10796
10797         echo mmap read the file with small block size
10798         iozone -i 1 -u 1 -l 1 -+n -r 32k -s 128m -B -f $DIR/$tfile \
10799                 > /dev/null 2>&1
10800
10801         echo checking missing pages
10802         $LCTL get_param llite.*.read_ahead_stats
10803         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
10804                         get_named_value 'misses' | calc_total)
10805
10806         $LCTL set_param debug="$old_debug"
10807         [ $miss -lt 3 ] || error "misses too much pages ('$miss')!"
10808         rm -f $DIR/$tfile
10809 }
10810 run_test 101f "check mmap read performance"
10811
10812 test_101g_brw_size_test() {
10813         local mb=$1
10814         local pages=$((mb * 1048576 / PAGE_SIZE))
10815         local file=$DIR/$tfile
10816
10817         $LCTL set_param osc.*.max_pages_per_rpc=${mb}M ||
10818                 { error "unable to set max_pages_per_rpc=${mb}M"; return 1; }
10819         for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
10820                 [ $mp -ne $pages ] && error "max_pages_per_rpc $mp != $pages" &&
10821                         return 2
10822         done
10823
10824         stack_trap "rm -f $file" EXIT
10825         $LCTL set_param -n osc.*.rpc_stats=0
10826
10827         # 10 RPCs should be enough for the test
10828         local count=10
10829         dd if=/dev/zero of=$file bs=${mb}M count=$count ||
10830                 { error "dd write ${mb} MB blocks failed"; return 3; }
10831         cancel_lru_locks osc
10832         dd of=/dev/null if=$file bs=${mb}M count=$count ||
10833                 { error "dd write ${mb} MB blocks failed"; return 4; }
10834
10835         # calculate number of full-sized read and write RPCs
10836         rpcs=($($LCTL get_param -n 'osc.*.rpc_stats' |
10837                 sed -n '/pages per rpc/,/^$/p' |
10838                 awk '/'$pages':/ { reads += $2; writes += $6 }; \
10839                 END { print reads,writes }'))
10840         # allow one extra full-sized read RPC for async readahead
10841         [[ ${rpcs[0]} == $count || ${rpcs[0]} == $((count + 1)) ]] ||
10842                 { error "${rpcs[0]} != $count read RPCs"; return 5; }
10843         [[ ${rpcs[1]} == $count ]] ||
10844                 { error "${rpcs[1]} != $count write RPCs"; return 6; }
10845 }
10846
10847 test_101g() {
10848         remote_ost_nodsh && skip "remote OST with nodsh"
10849
10850         local rpcs
10851         local osts=$(get_facets OST)
10852         local list=$(comma_list $(osts_nodes))
10853         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10854         local brw_size="obdfilter.*.brw_size"
10855
10856         $LFS setstripe -i 0 -c 1 $DIR/$tfile
10857
10858         local orig_mb=$(do_facet ost1 $LCTL get_param -n $brw_size | head -n 1)
10859
10860         if { [ $OST1_VERSION -ge $(version_code 2.8.52) ] ||
10861                 { [ $OST1_VERSION -ge $(version_code 2.7.17) ] &&
10862                   [ $OST1_VERSION -lt $(version_code 2.7.50) ]; }; } &&
10863            { [ $CLIENT_VERSION -ge $(version_code 2.8.52) ] ||
10864                 { [ $CLIENT_VERSION -ge $(version_code 2.7.17) ] &&
10865                   [ $CLIENT_VERSION -lt $(version_code 2.7.50) ]; }; }; then
10866
10867                 [ $OST1_VERSION -ge $(version_code 2.9.52) ] &&
10868                         suffix="M"
10869
10870                 if [[ $orig_mb -lt 16 ]]; then
10871                         save_lustre_params $osts "$brw_size" > $p
10872                         do_nodes $list $LCTL set_param -n $brw_size=16$suffix ||
10873                                 error "set 16MB RPC size failed"
10874
10875                         echo "remount client to enable new RPC size"
10876                         remount_client $MOUNT || error "remount_client failed"
10877                 fi
10878
10879                 test_101g_brw_size_test 16 || error "16MB RPC test failed"
10880                 # should be able to set brw_size=12, but no rpc_stats for that
10881                 test_101g_brw_size_test 8 || error "8MB RPC test failed"
10882         fi
10883
10884         test_101g_brw_size_test 4 || error "4MB RPC test failed"
10885
10886         if [[ $orig_mb -lt 16 ]]; then
10887                 restore_lustre_params < $p
10888                 remount_client $MOUNT || error "remount_client restore failed"
10889         fi
10890
10891         rm -f $p $DIR/$tfile
10892 }
10893 run_test 101g "Big bulk(4/16 MiB) readahead"
10894
10895 test_101h() {
10896         $LFS setstripe -i 0 -c 1 $DIR/$tfile
10897
10898         dd if=/dev/zero of=$DIR/$tfile bs=1M count=70 ||
10899                 error "dd 70M file failed"
10900         echo Cancel LRU locks on lustre client to flush the client cache
10901         cancel_lru_locks osc
10902
10903         echo "Reset readahead stats"
10904         $LCTL set_param -n llite.*.read_ahead_stats 0
10905
10906         echo "Read 10M of data but cross 64M bundary"
10907         dd if=$DIR/$tfile of=/dev/null bs=10M skip=6 count=1
10908         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
10909                      get_named_value 'misses' | calc_total)
10910         [ $miss -eq 1 ] || error "expected miss 1 but got $miss"
10911         rm -f $p $DIR/$tfile
10912 }
10913 run_test 101h "Readahead should cover current read window"
10914
10915 test_101i() {
10916         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 ||
10917                 error "dd 10M file failed"
10918
10919         local max_per_file_mb=$($LCTL get_param -n \
10920                 llite.*.max_read_ahead_per_file_mb 2>/dev/null)
10921         cancel_lru_locks osc
10922         stack_trap "$LCTL set_param llite.*.max_read_ahead_per_file_mb=$max_per_file_mb"
10923         $LCTL set_param llite.*.max_read_ahead_per_file_mb=1 ||
10924                 error "set max_read_ahead_per_file_mb to 1 failed"
10925
10926         echo "Reset readahead stats"
10927         $LCTL set_param llite.*.read_ahead_stats=0
10928
10929         dd if=$DIR/$tfile of=/dev/null bs=2M
10930
10931         $LCTL get_param llite.*.read_ahead_stats
10932         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
10933                      awk '/misses/ { print $2 }')
10934         [ $miss -eq 5 ] || error "expected misses 5 but got $miss"
10935         rm -f $DIR/$tfile
10936 }
10937 run_test 101i "allow current readahead to exceed reservation"
10938
10939 test_101j() {
10940         $LFS setstripe -i 0 -c 1 $DIR/$tfile ||
10941                 error "setstripe $DIR/$tfile failed"
10942         local file_size=$((1048576 * 16))
10943         local old_ra=$($LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1)
10944         stack_trap "$LCTL set_param -n llite.*.max_read_ahead_mb $old_ra" EXIT
10945
10946         echo Disable read-ahead
10947         $LCTL set_param -n llite.*.max_read_ahead_mb=0
10948
10949         dd if=/dev/zero of=$DIR/$tfile bs=1M count=$(($file_size / 1048576))
10950         for blk in $PAGE_SIZE 1048576 $file_size; do
10951                 cancel_lru_locks osc
10952                 echo "Reset readahead stats"
10953                 $LCTL set_param -n llite.*.read_ahead_stats=0
10954                 local count=$(($file_size / $blk))
10955                 dd if=$DIR/$tfile bs=$blk count=$count of=/dev/null
10956                 local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
10957                              get_named_value 'failed.to.fast.read' | calc_total)
10958                 $LCTL get_param -n llite.*.read_ahead_stats
10959                 [ $miss -eq $count ] || error "expected $count got $miss"
10960         done
10961
10962         rm -f $p $DIR/$tfile
10963 }
10964 run_test 101j "A complete read block should be submitted when no RA"
10965
10966 setup_test102() {
10967         test_mkdir $DIR/$tdir
10968         chown $RUNAS_ID $DIR/$tdir
10969         STRIPE_SIZE=65536
10970         STRIPE_OFFSET=1
10971         STRIPE_COUNT=$OSTCOUNT
10972         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
10973
10974         trap cleanup_test102 EXIT
10975         cd $DIR
10976         $1 $LFS setstripe -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
10977         cd $DIR/$tdir
10978         for num in 1 2 3 4; do
10979                 for count in $(seq 1 $STRIPE_COUNT); do
10980                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
10981                                 local size=`expr $STRIPE_SIZE \* $num`
10982                                 local file=file"$num-$idx-$count"
10983                                 $1 $LFS setstripe -S $size -i $idx -c $count $file
10984                         done
10985                 done
10986         done
10987
10988         cd $DIR
10989         $1 tar cf $TMP/f102.tar $tdir --xattrs
10990 }
10991
10992 cleanup_test102() {
10993         trap 0
10994         rm -f $TMP/f102.tar
10995         rm -rf $DIR/d0.sanity/d102
10996 }
10997
10998 test_102a() {
10999         [ "$UID" != 0 ] && skip "must run as root"
11000         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
11001                 skip_env "must have user_xattr"
11002
11003         [ -z "$(which setfattr 2>/dev/null)" ] &&
11004                 skip_env "could not find setfattr"
11005
11006         local testfile=$DIR/$tfile
11007
11008         touch $testfile
11009         echo "set/get xattr..."
11010         setfattr -n trusted.name1 -v value1 $testfile ||
11011                 error "setfattr -n trusted.name1=value1 $testfile failed"
11012         getfattr -n trusted.name1 $testfile 2> /dev/null |
11013           grep "trusted.name1=.value1" ||
11014                 error "$testfile missing trusted.name1=value1"
11015
11016         setfattr -n user.author1 -v author1 $testfile ||
11017                 error "setfattr -n user.author1=author1 $testfile failed"
11018         getfattr -n user.author1 $testfile 2> /dev/null |
11019           grep "user.author1=.author1" ||
11020                 error "$testfile missing trusted.author1=author1"
11021
11022         echo "listxattr..."
11023         setfattr -n trusted.name2 -v value2 $testfile ||
11024                 error "$testfile unable to set trusted.name2"
11025         setfattr -n trusted.name3 -v value3 $testfile ||
11026                 error "$testfile unable to set trusted.name3"
11027         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
11028             grep "trusted.name" | wc -l) -eq 3 ] ||
11029                 error "$testfile missing 3 trusted.name xattrs"
11030
11031         setfattr -n user.author2 -v author2 $testfile ||
11032                 error "$testfile unable to set user.author2"
11033         setfattr -n user.author3 -v author3 $testfile ||
11034                 error "$testfile unable to set user.author3"
11035         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
11036             grep "user.author" | wc -l) -eq 3 ] ||
11037                 error "$testfile missing 3 user.author xattrs"
11038
11039         echo "remove xattr..."
11040         setfattr -x trusted.name1 $testfile ||
11041                 error "$testfile error deleting trusted.name1"
11042         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
11043                 error "$testfile did not delete trusted.name1 xattr"
11044
11045         setfattr -x user.author1 $testfile ||
11046                 error "$testfile error deleting user.author1"
11047         echo "set lustre special xattr ..."
11048         $LFS setstripe -c1 $testfile
11049         local lovea=$(getfattr -n "trusted.lov" -e hex $testfile |
11050                 awk -F "=" '/trusted.lov/ { print $2 }' )
11051         setfattr -n "trusted.lov" -v $lovea $testfile ||
11052                 error "$testfile doesn't ignore setting trusted.lov again"
11053         setfattr -n "trusted.lov" -v "invalid_value" $testfile &&
11054                 error "$testfile allow setting invalid trusted.lov"
11055         rm -f $testfile
11056 }
11057 run_test 102a "user xattr test =================================="
11058
11059 check_102b_layout() {
11060         local layout="$*"
11061         local testfile=$DIR/$tfile
11062
11063         echo "test layout '$layout'"
11064         $LFS setstripe $layout $testfile || error "setstripe failed"
11065         $LFS getstripe -y $testfile
11066
11067         echo "get/set/list trusted.lov xattr ..." # b=10930
11068         local value=$(getfattr -n trusted.lov -e hex $testfile | grep trusted)
11069         [[ "$value" =~ "trusted.lov" ]] ||
11070                 error "can't get trusted.lov from $testfile"
11071         local stripe_count_orig=$($LFS getstripe -c $testfile) ||
11072                 error "getstripe failed"
11073
11074         $MCREATE $testfile.2 || error "mcreate $testfile.2 failed"
11075
11076         value=$(cut -d= -f2 <<<$value)
11077         # LU-13168: truncated xattr should fail if short lov_user_md header
11078         [ $CLIENT_VERSION -lt $(version_code 2.13.53) ] &&
11079                 lens="${#value}" || lens="$(seq 4 2 ${#value})"
11080         for len in $lens; do
11081                 echo "setfattr $len $testfile.2"
11082                 setfattr -n trusted.lov -v ${value:0:$len} $testfile.2 &&
11083                         [ $len -lt 66 ] && error "short xattr len=$len worked"
11084         done
11085         local stripe_size=$($LFS getstripe -S $testfile.2)
11086         local stripe_count=$($LFS getstripe -c $testfile.2)
11087         [[ $stripe_size -eq 65536 ]] ||
11088                 error "stripe size $stripe_size != 65536"
11089         [[ $stripe_count -eq $stripe_count_orig ]] ||
11090                 error "stripe count $stripe_count != $stripe_count_orig"
11091         rm $testfile $testfile.2
11092 }
11093
11094 test_102b() {
11095         [ -z "$(which setfattr 2>/dev/null)" ] &&
11096                 skip_env "could not find setfattr"
11097         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
11098
11099         # check plain layout
11100         check_102b_layout -S 65536 -i 1 -c $OSTCOUNT
11101
11102         # and also check composite layout
11103         check_102b_layout -E 1M -S 65536 -i 1 -c $OSTCOUNT -Eeof -S4M
11104
11105 }
11106 run_test 102b "getfattr/setfattr for trusted.lov EAs"
11107
11108 test_102c() {
11109         [ -z "$(which setfattr 2>/dev/null)" ] &&
11110                 skip_env "could not find setfattr"
11111         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
11112
11113         # b10930: get/set/list lustre.lov xattr
11114         echo "get/set/list lustre.lov xattr ..."
11115         test_mkdir $DIR/$tdir
11116         chown $RUNAS_ID $DIR/$tdir
11117         local testfile=$DIR/$tdir/$tfile
11118         $RUNAS $LFS setstripe -S 65536 -i 1 -c $OSTCOUNT $testfile ||
11119                 error "setstripe failed"
11120         local STRIPECOUNT=$($RUNAS $LFS getstripe -c $testfile) ||
11121                 error "getstripe failed"
11122         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
11123         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
11124
11125         local testfile2=${testfile}2
11126         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
11127                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
11128
11129         $RUNAS $MCREATE $testfile2
11130         $RUNAS setfattr -n lustre.lov -v $value $testfile2
11131         local stripe_size=$($RUNAS $LFS getstripe -S $testfile2)
11132         local stripe_count=$($RUNAS $LFS getstripe -c $testfile2)
11133         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
11134         [ $stripe_count -eq $STRIPECOUNT ] ||
11135                 error "stripe count $stripe_count != $STRIPECOUNT"
11136 }
11137 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
11138
11139 compare_stripe_info1() {
11140         local stripe_index_all_zero=true
11141
11142         for num in 1 2 3 4; do
11143                 for count in $(seq 1 $STRIPE_COUNT); do
11144                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
11145                                 local size=$((STRIPE_SIZE * num))
11146                                 local file=file"$num-$offset-$count"
11147                                 stripe_size=$($LFS getstripe -S $PWD/$file)
11148                                 [[ $stripe_size -ne $size ]] &&
11149                                     error "$file: size $stripe_size != $size"
11150                                 stripe_count=$($LFS getstripe -c $PWD/$file)
11151                                 # allow fewer stripes to be created, ORI-601
11152                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
11153                                     error "$file: count $stripe_count != $count"
11154                                 stripe_index=$($LFS getstripe -i $PWD/$file)
11155                                 [[ $stripe_index -ne 0 ]] &&
11156                                         stripe_index_all_zero=false
11157                         done
11158                 done
11159         done
11160         $stripe_index_all_zero &&
11161                 error "all files are being extracted starting from OST index 0"
11162         return 0
11163 }
11164
11165 have_xattrs_include() {
11166         tar --help | grep -q xattrs-include &&
11167                 echo --xattrs-include="lustre.*"
11168 }
11169
11170 test_102d() {
11171         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11172         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
11173
11174         XINC=$(have_xattrs_include)
11175         setup_test102
11176         tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
11177         cd $DIR/$tdir/$tdir
11178         compare_stripe_info1
11179 }
11180 run_test 102d "tar restore stripe info from tarfile,not keep osts"
11181
11182 test_102f() {
11183         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11184         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
11185
11186         XINC=$(have_xattrs_include)
11187         setup_test102
11188         test_mkdir $DIR/$tdir.restore
11189         cd $DIR
11190         tar cf - --xattrs $tdir | tar xf - \
11191                 -C $DIR/$tdir.restore --xattrs $XINC
11192         cd $DIR/$tdir.restore/$tdir
11193         compare_stripe_info1
11194 }
11195 run_test 102f "tar copy files, not keep osts"
11196
11197 grow_xattr() {
11198         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
11199                 skip "must have user_xattr"
11200         [ -z "$(which setfattr 2>/dev/null)" ] &&
11201                 skip_env "could not find setfattr"
11202         [ -z "$(which getfattr 2>/dev/null)" ] &&
11203                 skip_env "could not find getfattr"
11204
11205         local xsize=${1:-1024}  # in bytes
11206         local file=$DIR/$tfile
11207         local value="$(generate_string $xsize)"
11208         local xbig=trusted.big
11209         local toobig=$2
11210
11211         touch $file
11212         log "save $xbig on $file"
11213         if [ -z "$toobig" ]
11214         then
11215                 setfattr -n $xbig -v $value $file ||
11216                         error "saving $xbig on $file failed"
11217         else
11218                 setfattr -n $xbig -v $value $file &&
11219                         error "saving $xbig on $file succeeded"
11220                 return 0
11221         fi
11222
11223         local orig=$(get_xattr_value $xbig $file)
11224         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
11225
11226         local xsml=trusted.sml
11227         log "save $xsml on $file"
11228         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
11229
11230         local new=$(get_xattr_value $xbig $file)
11231         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
11232
11233         log "grow $xsml on $file"
11234         setfattr -n $xsml -v "$value" $file ||
11235                 error "growing $xsml on $file failed"
11236
11237         new=$(get_xattr_value $xbig $file)
11238         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
11239         log "$xbig still valid after growing $xsml"
11240
11241         rm -f $file
11242 }
11243
11244 test_102h() { # bug 15777
11245         grow_xattr 1024
11246 }
11247 run_test 102h "grow xattr from inside inode to external block"
11248
11249 test_102ha() {
11250         large_xattr_enabled || skip_env "ea_inode feature disabled"
11251
11252         echo "setting xattr of max xattr size: $(max_xattr_size)"
11253         grow_xattr $(max_xattr_size)
11254
11255         echo "setting xattr of > max xattr size: $(max_xattr_size) + 10"
11256         echo "This should fail:"
11257         grow_xattr $(($(max_xattr_size) + 10)) 1
11258 }
11259 run_test 102ha "grow xattr from inside inode to external inode"
11260
11261 test_102i() { # bug 17038
11262         [ -z "$(which getfattr 2>/dev/null)" ] &&
11263                 skip "could not find getfattr"
11264
11265         touch $DIR/$tfile
11266         ln -s $DIR/$tfile $DIR/${tfile}link
11267         getfattr -n trusted.lov $DIR/$tfile ||
11268                 error "lgetxattr on $DIR/$tfile failed"
11269         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
11270                 grep -i "no such attr" ||
11271                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
11272         rm -f $DIR/$tfile $DIR/${tfile}link
11273 }
11274 run_test 102i "lgetxattr test on symbolic link ============"
11275
11276 test_102j() {
11277         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11278         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
11279
11280         XINC=$(have_xattrs_include)
11281         setup_test102 "$RUNAS"
11282         chown $RUNAS_ID $DIR/$tdir
11283         $RUNAS tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
11284         cd $DIR/$tdir/$tdir
11285         compare_stripe_info1 "$RUNAS"
11286 }
11287 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
11288
11289 test_102k() {
11290         [ -z "$(which setfattr 2>/dev/null)" ] &&
11291                 skip "could not find setfattr"
11292
11293         touch $DIR/$tfile
11294         # b22187 just check that does not crash for regular file.
11295         setfattr -n trusted.lov $DIR/$tfile
11296         # b22187 'setfattr -n trusted.lov' should remove LOV EA for directories
11297         local test_kdir=$DIR/$tdir
11298         test_mkdir $test_kdir
11299         local default_size=$($LFS getstripe -S $test_kdir)
11300         local default_count=$($LFS getstripe -c $test_kdir)
11301         local default_offset=$($LFS getstripe -i $test_kdir)
11302         $LFS setstripe -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
11303                 error 'dir setstripe failed'
11304         setfattr -n trusted.lov $test_kdir
11305         local stripe_size=$($LFS getstripe -S $test_kdir)
11306         local stripe_count=$($LFS getstripe -c $test_kdir)
11307         local stripe_offset=$($LFS getstripe -i $test_kdir)
11308         [ $stripe_size -eq $default_size ] ||
11309                 error "stripe size $stripe_size != $default_size"
11310         [ $stripe_count -eq $default_count ] ||
11311                 error "stripe count $stripe_count != $default_count"
11312         [ $stripe_offset -eq $default_offset ] ||
11313                 error "stripe offset $stripe_offset != $default_offset"
11314         rm -rf $DIR/$tfile $test_kdir
11315 }
11316 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
11317
11318 test_102l() {
11319         [ -z "$(which getfattr 2>/dev/null)" ] &&
11320                 skip "could not find getfattr"
11321
11322         # LU-532 trusted. xattr is invisible to non-root
11323         local testfile=$DIR/$tfile
11324
11325         touch $testfile
11326
11327         echo "listxattr as user..."
11328         chown $RUNAS_ID $testfile
11329         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
11330             grep -q "trusted" &&
11331                 error "$testfile trusted xattrs are user visible"
11332
11333         return 0;
11334 }
11335 run_test 102l "listxattr size test =================================="
11336
11337 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
11338         local path=$DIR/$tfile
11339         touch $path
11340
11341         listxattr_size_check $path || error "listattr_size_check $path failed"
11342 }
11343 run_test 102m "Ensure listxattr fails on small bufffer ========"
11344
11345 cleanup_test102
11346
11347 getxattr() { # getxattr path name
11348         # Return the base64 encoding of the value of xattr name on path.
11349         local path=$1
11350         local name=$2
11351
11352         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
11353         # file: $path
11354         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
11355         #
11356         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
11357
11358         getfattr --absolute-names --encoding=base64 --name=$name $path |
11359                 awk -F= -v name=$name '$1 == name {
11360                         print substr($0, index($0, "=") + 1);
11361         }'
11362 }
11363
11364 test_102n() { # LU-4101 mdt: protect internal xattrs
11365         [ -z "$(which setfattr 2>/dev/null)" ] &&
11366                 skip "could not find setfattr"
11367         if [ $MDS1_VERSION -lt $(version_code 2.5.50) ]
11368         then
11369                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
11370         fi
11371
11372         local file0=$DIR/$tfile.0
11373         local file1=$DIR/$tfile.1
11374         local xattr0=$TMP/$tfile.0
11375         local xattr1=$TMP/$tfile.1
11376         local namelist="lov lma lmv link fid version som hsm"
11377         local name
11378         local value
11379
11380         rm -rf $file0 $file1 $xattr0 $xattr1
11381         touch $file0 $file1
11382
11383         # Get 'before' xattrs of $file1.
11384         getfattr --absolute-names --dump --match=- $file1 > $xattr0
11385
11386         [ $MDS1_VERSION -lt $(version_code 2.8.53) ] &&
11387                 namelist+=" lfsck_namespace"
11388         for name in $namelist; do
11389                 # Try to copy xattr from $file0 to $file1.
11390                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
11391
11392                 setfattr --name=trusted.$name --value="$value" $file1 ||
11393                         error "setxattr 'trusted.$name' failed"
11394
11395                 # Try to set a garbage xattr.
11396                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
11397
11398                 if [[ x$name == "xlov" ]]; then
11399                         setfattr --name=trusted.lov --value="$value" $file1 &&
11400                         error "setxattr invalid 'trusted.lov' success"
11401                 else
11402                         setfattr --name=trusted.$name --value="$value" $file1 ||
11403                                 error "setxattr invalid 'trusted.$name' failed"
11404                 fi
11405
11406                 # Try to remove the xattr from $file1. We don't care if this
11407                 # appears to succeed or fail, we just don't want there to be
11408                 # any changes or crashes.
11409                 setfattr --remove=$trusted.$name $file1 2> /dev/null
11410         done
11411
11412         if [ $MDS1_VERSION -gt $(version_code 2.6.50) ]
11413         then
11414                 name="lfsck_ns"
11415                 # Try to copy xattr from $file0 to $file1.
11416                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
11417
11418                 setfattr --name=trusted.$name --value="$value" $file1 ||
11419                         error "setxattr 'trusted.$name' failed"
11420
11421                 # Try to set a garbage xattr.
11422                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
11423
11424                 setfattr --name=trusted.$name --value="$value" $file1 ||
11425                         error "setxattr 'trusted.$name' failed"
11426
11427                 # Try to remove the xattr from $file1. We don't care if this
11428                 # appears to succeed or fail, we just don't want there to be
11429                 # any changes or crashes.
11430                 setfattr --remove=$trusted.$name $file1 2> /dev/null
11431         fi
11432
11433         # Get 'after' xattrs of file1.
11434         getfattr --absolute-names --dump --match=- $file1 > $xattr1
11435
11436         if ! diff $xattr0 $xattr1; then
11437                 error "before and after xattrs of '$file1' differ"
11438         fi
11439
11440         rm -rf $file0 $file1 $xattr0 $xattr1
11441
11442         return 0
11443 }
11444 run_test 102n "silently ignore setxattr on internal trusted xattrs"
11445
11446 test_102p() { # LU-4703 setxattr did not check ownership
11447         [ $MDS1_VERSION -lt $(version_code 2.5.56) ] &&
11448                 skip "MDS needs to be at least 2.5.56"
11449
11450         local testfile=$DIR/$tfile
11451
11452         touch $testfile
11453
11454         echo "setfacl as user..."
11455         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
11456         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
11457
11458         echo "setfattr as user..."
11459         setfacl -m "u:$RUNAS_ID:---" $testfile
11460         $RUNAS setfattr -x system.posix_acl_access $testfile
11461         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
11462 }
11463 run_test 102p "check setxattr(2) correctly fails without permission"
11464
11465 test_102q() {
11466         [ $MDS1_VERSION -lt $(version_code 2.6.92) ] &&
11467                 skip "MDS needs to be at least 2.6.92"
11468
11469         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
11470 }
11471 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
11472
11473 test_102r() {
11474         [ $MDS1_VERSION -lt $(version_code 2.6.93) ] &&
11475                 skip "MDS needs to be at least 2.6.93"
11476
11477         touch $DIR/$tfile || error "touch"
11478         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
11479         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
11480         rm $DIR/$tfile || error "rm"
11481
11482         #normal directory
11483         mkdir -p $DIR/$tdir || error "mkdir"
11484         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
11485         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
11486         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
11487                 error "$testfile error deleting user.author1"
11488         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
11489                 grep "user.$(basename $tdir)" &&
11490                 error "$tdir did not delete user.$(basename $tdir)"
11491         rmdir $DIR/$tdir || error "rmdir"
11492
11493         #striped directory
11494         test_mkdir $DIR/$tdir
11495         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
11496         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
11497         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
11498                 error "$testfile error deleting user.author1"
11499         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
11500                 grep "user.$(basename $tdir)" &&
11501                 error "$tdir did not delete user.$(basename $tdir)"
11502         rmdir $DIR/$tdir || error "rm striped dir"
11503 }
11504 run_test 102r "set EAs with empty values"
11505
11506 test_102s() {
11507         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
11508                 skip "MDS needs to be at least 2.11.52"
11509
11510         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
11511
11512         save_lustre_params client "llite.*.xattr_cache" > $save
11513
11514         for cache in 0 1; do
11515                 lctl set_param llite.*.xattr_cache=$cache
11516
11517                 rm -f $DIR/$tfile
11518                 touch $DIR/$tfile || error "touch"
11519                 for prefix in lustre security system trusted user; do
11520                         # Note getxattr() may fail with 'Operation not
11521                         # supported' or 'No such attribute' depending
11522                         # on prefix and cache.
11523                         getfattr -n $prefix.n102s $DIR/$tfile &&
11524                                 error "getxattr '$prefix.n102s' should fail (cache = $cache)"
11525                 done
11526         done
11527
11528         restore_lustre_params < $save
11529 }
11530 run_test 102s "getting nonexistent xattrs should fail"
11531
11532 test_102t() {
11533         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
11534                 skip "MDS needs to be at least 2.11.52"
11535
11536         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
11537
11538         save_lustre_params client "llite.*.xattr_cache" > $save
11539
11540         for cache in 0 1; do
11541                 lctl set_param llite.*.xattr_cache=$cache
11542
11543                 for buf_size in 0 256; do
11544                         rm -f $DIR/$tfile
11545                         touch $DIR/$tfile || error "touch"
11546                         setfattr -n user.multiop $DIR/$tfile
11547                         $MULTIOP $DIR/$tfile oa$buf_size ||
11548                                 error "cannot get zero length xattr value (buf_size = $buf_size)"
11549                 done
11550         done
11551
11552         restore_lustre_params < $save
11553 }
11554 run_test 102t "zero length xattr values handled correctly"
11555
11556 run_acl_subtest()
11557 {
11558         local test=$LUSTRE/tests/acl/$1.test
11559         local tmp=$(mktemp -t $1-XXXXXX).test
11560         local bin=$2
11561         local dmn=$3
11562         local grp=$4
11563         local nbd=$5
11564         export LANG=C
11565
11566
11567         local sedusers="-e s/bin/$bin/g -e s/daemon/$dmn/g"
11568         local sedgroups="-e s/:users/:$grp/g"
11569         [[ -z "$nbd" ]] || sedusers+=" -e s/nobody/$nbd/g"
11570
11571         sed $sedusers $sedgroups < $test > $tmp
11572         stack_trap "rm -f $tmp"
11573         [[ -s $tmp ]] || error "sed failed to create test script"
11574
11575         echo "performing $1 with bin='$bin' daemon='$dmn' users='$grp'..."
11576         $LUSTRE/tests/acl/run $tmp || error "run_acl_subtest '$1' failed"
11577 }
11578
11579 test_103a() {
11580         [ "$UID" != 0 ] && skip "must run as root"
11581         $GSS && skip_env "could not run under gss"
11582         [[ "$(lctl get_param -n mdc.*-mdc-*.connect_flags)" =~ "acl" ]] ||
11583                 skip_env "must have acl enabled"
11584         which setfacl || skip_env "could not find setfacl"
11585         remote_mds_nodsh && skip "remote MDS with nodsh"
11586
11587         ACLBIN=${ACLBIN:-"bin"}
11588         ACLDMN=${ACLDMN:-"daemon"}
11589         ACLGRP=${ACLGRP:-"users"}
11590         ACLNBD=${ACLNBD:-"nobody"}
11591
11592         if ! id $ACLBIN ||
11593            [[ "$(id -u $ACLBIN)" != "$(do_facet mds1 id -u $ACLBIN)" ]]; then
11594                 echo "bad 'bin' user '$ACLBIN', using '$USER0'"
11595                 ACLBIN=$USER0
11596                 if ! id $ACLBIN ; then
11597                         cat /etc/passwd
11598                         skip_env "can't find suitable ACL 'bin' $ACLBIN"
11599                 fi
11600         fi
11601         if ! id $ACLDMN || (( $(id -u $ACLDMN) < $(id -u $ACLBIN) )) ||
11602            [[ "$(id -u $ACLDMN)" != "$(do_facet mds1 id -u $ACLDMN)" ]]; then
11603                 echo "bad 'daemon' user '$ACLDMN', using '$USER1'"
11604                 ACLDMN=$USER1
11605                 if ! id $ACLDMN ; then
11606                         cat /etc/passwd
11607                         skip_env "can't find suitable ACL 'daemon' $ACLDMN"
11608                 fi
11609         fi
11610         if ! getent group $ACLGRP; then
11611                 echo "missing 'users' group '$ACLGRP', using '$TSTUSR'"
11612                 ACLGRP="$TSTUSR"
11613                 if ! getent group $ACLGRP; then
11614                         echo "cannot find group '$ACLGRP', adding it"
11615                         cat /etc/group
11616                         add_group 60000 $ACLGRP
11617                 fi
11618         fi
11619
11620         local bingid=$(getent group $ACLBIN | cut -d: -f 3)
11621         local dmngid=$(getent group $ACLDMN | cut -d: -f 3)
11622         local grpgid=$(getent group $ACLGRP | cut -d: -f 3)
11623
11624         if (( $bingid > $grpgid || $dmngid > $grpgid )); then
11625                 echo "group '$ACLGRP' has low gid=$grpgid, use '$TSTUSR'"
11626                 ACLGRP="$TSTUSR"
11627                 if ! getent group $ACLGRP; then
11628                         echo "cannot find group '$ACLGRP', adding it"
11629                         cat /etc/group
11630                         add_group 60000 $ACLGRP
11631                 fi
11632                 grpgid=$(getent group $ACLGRP | cut -d: -f 3)
11633                 if (( $bingid > $grpgid || $dmngid > $grpgid )); then
11634                         cat /etc/group
11635                         skip_env "$ACLGRP gid=$grpgid less than $bingid|$dmngid"
11636                 fi
11637         fi
11638
11639         gpasswd -a $ACLDMN $ACLBIN ||
11640                 error "setting client group failed"             # LU-5641
11641         do_facet mds1 gpasswd -a $ACLDMN $ACLBIN ||
11642                 error "setting MDS group failed"                # LU-5641
11643
11644         declare -a identity_old
11645
11646         for num in $(seq $MDSCOUNT); do
11647                 switch_identity $num true || identity_old[$num]=$?
11648         done
11649
11650         SAVE_UMASK=$(umask)
11651         umask 0022
11652         mkdir -p $DIR/$tdir
11653         cd $DIR/$tdir
11654
11655         run_acl_subtest cp $ACLBIN $ACLDMN $ACLGRP
11656         run_acl_subtest getfacl-noacl $ACLBIN $ACLDMN $ACLGRP
11657         run_acl_subtest misc $ACLBIN $ACLDMN $ACLGRP
11658         run_acl_subtest permissions $ACLBIN $ACLDMN $ACLGRP
11659         # LU-1482 mdd: Setting xattr are properly checked with and without ACLs
11660         # CentOS7- uses nobody=99, while newer distros use nobody=65534
11661         if ! id -u $ACLNBD ||
11662            (( $(id -u nobody) != $(do_facet mds1 id -u nobody) )); then
11663                 ACLNBD="nfsnobody"
11664                 if ! id -u $ACLNBD; then
11665                         ACLNBD=""
11666                 fi
11667         fi
11668         if [[ -n "$ACLNBD" ]] && ! getent group $ACLNBD; then
11669                 add_group $(id -u $ACLNBD) $ACLNBD
11670                 if ! getent group $ACLNBD; then
11671                         ACLNBD=""
11672                 fi
11673         fi
11674         if (( $MDS1_VERSION > $(version_code 2.8.55) )) &&
11675            [[ -n "$ACLNBD" ]] && which setfattr; then
11676                 run_acl_subtest permissions_xattr \
11677                         $ACLBIN $ACLDMN $ACLGRP $ACLNBD
11678         elif [[ -z "$ACLNBD" ]]; then
11679                 echo "skip 'permission_xattr' test - missing 'nobody' user/grp"
11680         else
11681                 echo "skip 'permission_xattr' test - missing setfattr command"
11682         fi
11683         run_acl_subtest setfacl $ACLBIN $ACLDMN $ACLGRP
11684
11685         # inheritance test got from HP
11686         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
11687         chmod +x make-tree || error "chmod +x failed"
11688         run_acl_subtest inheritance $ACLBIN $ACLDMN $ACLGRP
11689         rm -f make-tree
11690
11691         echo "LU-974 ignore umask when acl is enabled..."
11692         run_acl_subtest 974 $ACLBIN $ACLDMN $ACLGRP
11693         if [ $MDSCOUNT -ge 2 ]; then
11694                 run_acl_subtest 974_remote $ACLBIN $ACLDMN $ACLGRP
11695         fi
11696
11697         echo "LU-2561 newly created file is same size as directory..."
11698         if [ "$mds1_FSTYPE" != "zfs" ]; then
11699                 run_acl_subtest 2561 $ACLBIN $ACLDMN $ACLGRP
11700         else
11701                 run_acl_subtest 2561_zfs $ACLBIN $ACLDMN $ACLGRP
11702         fi
11703
11704         run_acl_subtest 4924 $ACLBIN $ACLDMN $ACLGRP
11705
11706         cd $SAVE_PWD
11707         umask $SAVE_UMASK
11708
11709         for num in $(seq $MDSCOUNT); do
11710                 if [ "${identity_old[$num]}" = 1 ]; then
11711                         switch_identity $num false || identity_old[$num]=$?
11712                 fi
11713         done
11714 }
11715 run_test 103a "acl test"
11716
11717 test_103b() {
11718         declare -a pids
11719         local U
11720
11721         for U in {0..511}; do
11722                 {
11723                 local O=$(printf "%04o" $U)
11724
11725                 umask $(printf "%04o" $((511 ^ $O)))
11726                 $LFS setstripe -c 1 $DIR/$tfile.s$O
11727                 local S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.s$O))
11728
11729                 (( $S == ($O & 0666) )) ||
11730                         error "lfs setstripe $DIR/$tfile.s$O '$S' != '$O'"
11731
11732                 $LFS setstripe -E16M -c 1 -E1G -S4M $DIR/$tfile.p$O
11733                 S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.p$O))
11734                 (( $S == ($O & 0666) )) ||
11735                         error "lfs setstripe -E $DIR/$tfile.p$O '$S' != '$O'"
11736
11737                 $LFS setstripe -N2 -c 1 $DIR/$tfile.m$O
11738                 S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.m$O))
11739                 (( $S == ($O & 0666) )) ||
11740                         error "lfs setstripe -N2 $DIR/$tfile.m$O '$S' != '$O'"
11741                 rm -f $DIR/$tfile.[smp]$0
11742                 } &
11743                 local pid=$!
11744
11745                 # limit the concurrently running threads to 64. LU-11878
11746                 local idx=$((U % 64))
11747                 [ -z "${pids[idx]}" ] || wait ${pids[idx]}
11748                 pids[idx]=$pid
11749         done
11750         wait
11751 }
11752 run_test 103b "umask lfs setstripe"
11753
11754 test_103c() {
11755         mkdir -p $DIR/$tdir
11756         cp -rp $DIR/$tdir $DIR/$tdir.bak
11757
11758         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
11759                 error "$DIR/$tdir shouldn't contain default ACL"
11760         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
11761                 error "$DIR/$tdir.bak shouldn't contain default ACL"
11762         true
11763 }
11764 run_test 103c "'cp -rp' won't set empty acl"
11765
11766 test_103e() {
11767         local numacl
11768         local fileacl
11769         local saved_debug=$($LCTL get_param -n debug)
11770
11771         (( $MDS1_VERSION >= $(version_code 2.14.52) )) ||
11772                 skip "MDS needs to be at least 2.14.52"
11773
11774         large_xattr_enabled || skip_env "ea_inode feature disabled"
11775
11776         mkdir -p $DIR/$tdir
11777         # add big LOV EA to cause reply buffer overflow earlier
11778         $LFS setstripe -C 1000 $DIR/$tdir
11779         lctl set_param mdc.*-mdc*.stats=clear
11780
11781         $LCTL set_param debug=0
11782         stack_trap "$LCTL set_param debug=\"$saved_debug\"" EXIT
11783         stack_trap "$LCTL get_param mdc.*-mdc*.stats" EXIT
11784
11785         # add a large number of default ACLs (expect 8000+ for 2.13+)
11786         for U in {2..7000}; do
11787                 setfacl -d -m user:$U:rwx $DIR/$tdir ||
11788                         error "Able to add just $U default ACLs"
11789         done
11790         numacl=$(getfacl $DIR/$tdir |& grep -c "default:user")
11791         echo "$numacl default ACLs created"
11792
11793         stat $DIR/$tdir || error "Cannot stat directory"
11794         # check file creation
11795         touch $DIR/$tdir/$tfile ||
11796                 error "failed to create $tfile with $numacl default ACLs"
11797         stat $DIR/$tdir/$tfile  || error "Cannot stat file"
11798         fileacl=$(getfacl $DIR/$tdir/$tfile |& grep -c "user:")
11799         echo "$fileacl ACLs were inherited"
11800         (( $fileacl == $numacl )) ||
11801                 error "Not all default ACLs were inherited: $numacl != $fileacl"
11802         # check that new ACLs creation adds new ACLs to inherited ACLs
11803         setfacl -m user:19000:rwx $DIR/$tdir/$tfile ||
11804                 error "Cannot set new ACL"
11805         numacl=$((numacl + 1))
11806         fileacl=$(getfacl $DIR/$tdir/$tfile |& grep -c "user:")
11807         (( $fileacl == $numacl )) ||
11808                 error "failed to add new ACL: $fileacl != $numacl as expected"
11809         # adds more ACLs to a file to reach their maximum at 8000+
11810         numacl=0
11811         for U in {20000..25000}; do
11812                 setfacl -m user:$U:rwx $DIR/$tdir/$tfile || break
11813                 numacl=$((numacl + 1))
11814         done
11815         echo "Added $numacl more ACLs to the file"
11816         fileacl=$(getfacl $DIR/$tdir/$tfile |& grep -c "user:")
11817         echo "Total $fileacl ACLs in file"
11818         stat $DIR/$tdir/$tfile > /dev/null || error "Cannot stat file"
11819         rm -f $DIR/$tdir/$tfile || error "Cannot remove file"
11820         rmdir $DIR/$tdir || error "Cannot remove directory"
11821 }
11822 run_test 103e "inheritance of big amount of default ACLs"
11823
11824 test_103f() {
11825         (( $MDS1_VERSION >= $(version_code 2.14.51) )) ||
11826                 skip "MDS needs to be at least 2.14.51"
11827
11828         large_xattr_enabled || skip_env "ea_inode feature disabled"
11829
11830         # enable changelog to consume more internal MDD buffers
11831         changelog_register
11832
11833         mkdir -p $DIR/$tdir
11834         # add big LOV EA
11835         $LFS setstripe -C 1000 $DIR/$tdir
11836         setfacl -d -m user:$U:rwx $DIR/$tdir || error "Cannot add default ACLs"
11837         mkdir $DIR/$tdir/inherited || error "failed to create subdirectory"
11838         rmdir $DIR/$tdir/inherited || error "Cannot remove subdirectory"
11839         rmdir $DIR/$tdir || error "Cannot remove directory"
11840 }
11841 run_test 103f "changelog doesn't interfere with default ACLs buffers"
11842
11843 test_104a() {
11844         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11845
11846         touch $DIR/$tfile
11847         lfs df || error "lfs df failed"
11848         lfs df -ih || error "lfs df -ih failed"
11849         lfs df -h $DIR || error "lfs df -h $DIR failed"
11850         lfs df -i $DIR || error "lfs df -i $DIR failed"
11851         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
11852         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
11853
11854         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
11855         lctl --device %$OSC deactivate
11856         lfs df || error "lfs df with deactivated OSC failed"
11857         lctl --device %$OSC activate
11858         # wait the osc back to normal
11859         wait_osc_import_ready client ost
11860
11861         lfs df || error "lfs df with reactivated OSC failed"
11862         rm -f $DIR/$tfile
11863 }
11864 run_test 104a "lfs df [-ih] [path] test ========================="
11865
11866 test_104b() {
11867         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11868         [ $RUNAS_ID -eq $UID ] &&
11869                 skip_env "RUNAS_ID = UID = $UID -- skipping"
11870
11871         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
11872                         grep "Permission denied" | wc -l)))
11873         if [ $denied_cnt -ne 0 ]; then
11874                 error "lfs check servers test failed"
11875         fi
11876 }
11877 run_test 104b "$RUNAS lfs check servers test ===================="
11878
11879 #
11880 # Verify $1 is within range of $2.
11881 # Success when $1 is within range. That is, when $1 is >= 2% of $2 and
11882 # $1 is <= 2% of $2. Else Fail.
11883 #
11884 value_in_range() {
11885         # Strip all units (M, G, T)
11886         actual=$(echo $1 | tr -d A-Z)
11887         expect=$(echo $2 | tr -d A-Z)
11888
11889         expect_lo=$(($expect * 98 / 100)) # 2% below
11890         expect_hi=$(($expect * 102 / 100)) # 2% above
11891
11892         # permit 2% drift above and below
11893         (( $actual >= $expect_lo && $actual <= $expect_hi ))
11894 }
11895
11896 test_104c() {
11897         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11898         [ "$ost1_FSTYPE" == "zfs" ] || skip "zfs only test"
11899
11900         local ost_param="osd-zfs.$FSNAME-OST0000."
11901         local mdt_param="osd-zfs.$FSNAME-MDT0000."
11902         local ofacets=$(get_facets OST)
11903         local mfacets=$(get_facets MDS)
11904         local saved_ost_blocks=
11905         local saved_mdt_blocks=
11906
11907         echo "Before recordsize change"
11908         lfs_df=($($LFS df -h | grep "filesystem_summary:"))
11909         df=($(df -h | grep "$MOUNT"$))
11910
11911         # For checking.
11912         echo "lfs output : ${lfs_df[*]}"
11913         echo "df  output : ${df[*]}"
11914
11915         for facet in ${ofacets//,/ }; do
11916                 if [ -z $saved_ost_blocks ]; then
11917                         saved_ost_blocks=$(do_facet $facet \
11918                                 lctl get_param -n $ost_param.blocksize)
11919                         echo "OST Blocksize: $saved_ost_blocks"
11920                 fi
11921                 ost=$(do_facet $facet lctl get_param -n $ost_param.mntdev)
11922                 do_facet $facet zfs set recordsize=32768 $ost
11923         done
11924
11925         # BS too small. Sufficient for functional testing.
11926         for facet in ${mfacets//,/ }; do
11927                 if [ -z $saved_mdt_blocks ]; then
11928                         saved_mdt_blocks=$(do_facet $facet \
11929                                 lctl get_param -n $mdt_param.blocksize)
11930                         echo "MDT Blocksize: $saved_mdt_blocks"
11931                 fi
11932                 mdt=$(do_facet $facet lctl get_param -n $mdt_param.mntdev)
11933                 do_facet $facet zfs set recordsize=32768 $mdt
11934         done
11935
11936         # Give new values chance to reflect change
11937         sleep 2
11938
11939         echo "After recordsize change"
11940         lfs_df_after=($($LFS df -h | grep "filesystem_summary:"))
11941         df_after=($(df -h | grep "$MOUNT"$))
11942
11943         # For checking.
11944         echo "lfs output : ${lfs_df_after[*]}"
11945         echo "df  output : ${df_after[*]}"
11946
11947         # Verify lfs df
11948         value_in_range ${lfs_df_after[1]%.*} ${lfs_df[1]%.*} ||
11949                 error "lfs_df bytes: ${lfs_df_after[1]%.*} != ${lfs_df[1]%.*}"
11950         value_in_range ${lfs_df_after[2]%.*} ${lfs_df[2]%.*} ||
11951                 error "lfs_df used: ${lfs_df_after[2]%.*} != ${lfs_df[2]%.*}"
11952         value_in_range ${lfs_df_after[3]%.*} ${lfs_df[3]%.*} ||
11953                 error "lfs_df avail: ${lfs_df_after[3]%.*} != ${lfs_df[3]%.*}"
11954
11955         # Verify df
11956         value_in_range ${df_after[1]%.*} ${df[1]%.*} ||
11957                 error "df bytes: ${df_after[1]%.*} != ${df[1]%.*}"
11958         value_in_range ${df_after[2]%.*} ${df[2]%.*} ||
11959                 error "df used: ${df_after[2]%.*} != ${df[2]%.*}"
11960         value_in_range ${df_after[3]%.*} ${df[3]%.*} ||
11961                 error "df avail: ${df_after[3]%.*} != ${df[3]%.*}"
11962
11963         # Restore MDT recordize back to original
11964         for facet in ${mfacets//,/ }; do
11965                 mdt=$(do_facet $facet lctl get_param -n $mdt_param.mntdev)
11966                 do_facet $facet zfs set recordsize=$saved_mdt_blocks $mdt
11967         done
11968
11969         # Restore OST recordize back to original
11970         for facet in ${ofacets//,/ }; do
11971                 ost=$(do_facet $facet lctl get_param -n $ost_param.mntdev)
11972                 do_facet $facet zfs set recordsize=$saved_ost_blocks $ost
11973         done
11974
11975         return 0
11976 }
11977 run_test 104c "Verify df vs lfs_df stays same after recordsize change"
11978
11979 test_105a() {
11980         # doesn't work on 2.4 kernels
11981         touch $DIR/$tfile
11982         if $(flock_is_enabled); then
11983                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
11984         else
11985                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
11986         fi
11987         rm -f $DIR/$tfile
11988 }
11989 run_test 105a "flock when mounted without -o flock test ========"
11990
11991 test_105b() {
11992         touch $DIR/$tfile
11993         if $(flock_is_enabled); then
11994                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
11995         else
11996                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
11997         fi
11998         rm -f $DIR/$tfile
11999 }
12000 run_test 105b "fcntl when mounted without -o flock test ========"
12001
12002 test_105c() {
12003         touch $DIR/$tfile
12004         if $(flock_is_enabled); then
12005                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
12006         else
12007                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
12008         fi
12009         rm -f $DIR/$tfile
12010 }
12011 run_test 105c "lockf when mounted without -o flock test"
12012
12013 test_105d() { # bug 15924
12014         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12015
12016         test_mkdir $DIR/$tdir
12017         flock_is_enabled || skip_env "mount w/o flock enabled"
12018         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
12019         $LCTL set_param fail_loc=0x80000315
12020         flocks_test 2 $DIR/$tdir
12021 }
12022 run_test 105d "flock race (should not freeze) ========"
12023
12024 test_105e() { # bug 22660 && 22040
12025         flock_is_enabled || skip_env "mount w/o flock enabled"
12026
12027         touch $DIR/$tfile
12028         flocks_test 3 $DIR/$tfile
12029 }
12030 run_test 105e "Two conflicting flocks from same process"
12031
12032 test_106() { #bug 10921
12033         test_mkdir $DIR/$tdir
12034         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
12035         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
12036 }
12037 run_test 106 "attempt exec of dir followed by chown of that dir"
12038
12039 test_107() {
12040         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12041
12042         CDIR=`pwd`
12043         local file=core
12044
12045         cd $DIR
12046         rm -f $file
12047
12048         local save_pattern=$(sysctl -n kernel.core_pattern)
12049         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
12050         sysctl -w kernel.core_pattern=$file
12051         sysctl -w kernel.core_uses_pid=0
12052
12053         ulimit -c unlimited
12054         sleep 60 &
12055         SLEEPPID=$!
12056
12057         sleep 1
12058
12059         kill -s 11 $SLEEPPID
12060         wait $SLEEPPID
12061         if [ -e $file ]; then
12062                 size=`stat -c%s $file`
12063                 [ $size -eq 0 ] && error "Fail to create core file $file"
12064         else
12065                 error "Fail to create core file $file"
12066         fi
12067         rm -f $file
12068         sysctl -w kernel.core_pattern=$save_pattern
12069         sysctl -w kernel.core_uses_pid=$save_uses_pid
12070         cd $CDIR
12071 }
12072 run_test 107 "Coredump on SIG"
12073
12074 test_110() {
12075         test_mkdir $DIR/$tdir
12076         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255)
12077         $LFS mkdir -c $MDSCOUNT $DIR/$tdir/$(str_repeat 'b' 256) &&
12078                 error "mkdir with 256 char should fail, but did not"
12079         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
12080                 error "create with 255 char failed"
12081         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
12082                 error "create with 256 char should fail, but did not"
12083
12084         ls -l $DIR/$tdir
12085         rm -rf $DIR/$tdir
12086 }
12087 run_test 110 "filename length checking"
12088
12089 #
12090 # Purpose: To verify dynamic thread (OSS) creation.
12091 #
12092 test_115() {
12093         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12094         remote_ost_nodsh && skip "remote OST with nodsh"
12095
12096         # Lustre does not stop service threads once they are started.
12097         # Reset number of running threads to default.
12098         stopall
12099         setupall
12100
12101         local OSTIO_pre
12102         local save_params="$TMP/sanity-$TESTNAME.parameters"
12103
12104         # Get ll_ost_io count before I/O
12105         OSTIO_pre=$(do_facet ost1 \
12106                 "$LCTL get_param ost.OSS.ost_io.threads_started | cut -d= -f2")
12107         # Exit if lustre is not running (ll_ost_io not running).
12108         [ -z "$OSTIO_pre" ] && error "no OSS threads"
12109
12110         echo "Starting with $OSTIO_pre threads"
12111         local thread_max=$((OSTIO_pre * 2))
12112         local rpc_in_flight=$((thread_max * 2))
12113         # this is limited to OSC_MAX_RIF_MAX (256)
12114         [ $rpc_in_flight -gt 256 ] && rpc_in_flight=256
12115         thread_max=$((rpc_in_flight / 2))
12116         [ $thread_max -le $OSTIO_pre ] && skip "Too many ost_io threads" &&
12117                 return
12118
12119         # Number of I/O Process proposed to be started.
12120         local nfiles
12121         local facets=$(get_facets OST)
12122
12123         save_lustre_params client "osc.*OST*.max_rpcs_in_flight" > $save_params
12124         save_lustre_params $facets "ost.OSS.ost_io.threads_max" >> $save_params
12125
12126         # Set in_flight to $rpc_in_flight
12127         $LCTL set_param osc.*OST*.max_rpcs_in_flight=$rpc_in_flight ||
12128                 error "Failed to set max_rpcs_in_flight to $rpc_in_flight"
12129         nfiles=${rpc_in_flight}
12130         # Set ost thread_max to $thread_max
12131         do_facet ost1 "$LCTL set_param ost.OSS.ost_io.threads_max=$thread_max"
12132
12133         # 5 Minutes should be sufficient for max number of OSS
12134         # threads(thread_max) to be created.
12135         local timeout=300
12136
12137         # Start I/O.
12138         local WTL=${WTL:-"$LUSTRE/tests/write_time_limit"}
12139         test_mkdir $DIR/$tdir
12140         for i in $(seq $nfiles); do
12141                 local file=$DIR/$tdir/${tfile}-$i
12142                 $LFS setstripe -c -1 -i 0 $file
12143                 ($WTL $file $timeout)&
12144         done
12145
12146         # I/O Started - Wait for thread_started to reach thread_max or report
12147         # error if thread_started is more than thread_max.
12148         echo "Waiting for thread_started to reach thread_max"
12149         local thread_started=0
12150         local end_time=$((SECONDS + timeout))
12151
12152         while [ $SECONDS -le $end_time ] ; do
12153                 echo -n "."
12154                 # Get ost i/o thread_started count.
12155                 thread_started=$(do_facet ost1 \
12156                         "$LCTL get_param \
12157                         ost.OSS.ost_io.threads_started | cut -d= -f2")
12158                 # Break out if thread_started is equal/greater than thread_max
12159                 if [[ $thread_started -ge $thread_max ]]; then
12160                         echo ll_ost_io thread_started $thread_started, \
12161                                 equal/greater than thread_max $thread_max
12162                         break
12163                 fi
12164                 sleep 1
12165         done
12166
12167         # Cleanup - We have the numbers, Kill i/o jobs if running.
12168         jobcount=($(jobs -p))
12169         for i in $(seq 0 $((${#jobcount[@]}-1)))
12170         do
12171                 kill -9 ${jobcount[$i]}
12172                 if [ $? -ne 0 ] ; then
12173                         echo Warning: \
12174                         Failed to Kill \'WTL\(I/O\)\' with pid ${jobcount[$i]}
12175                 fi
12176         done
12177
12178         # Cleanup files left by WTL binary.
12179         for i in $(seq $nfiles); do
12180                 local file=$DIR/$tdir/${tfile}-$i
12181                 rm -rf $file
12182                 if [ $? -ne 0 ] ; then
12183                         echo "Warning: Failed to delete file $file"
12184                 fi
12185         done
12186
12187         restore_lustre_params <$save_params
12188         rm -f $save_params || echo "Warning: delete file '$save_params' failed"
12189
12190         # Error out if no new thread has started or Thread started is greater
12191         # than thread max.
12192         if [[ $thread_started -le $OSTIO_pre ||
12193                         $thread_started -gt $thread_max ]]; then
12194                 error "ll_ost_io: thread_started $thread_started" \
12195                       "OSTIO_pre $OSTIO_pre, thread_max $thread_max." \
12196                       "No new thread started or thread started greater " \
12197                       "than thread_max."
12198         fi
12199 }
12200 run_test 115 "verify dynamic thread creation===================="
12201
12202 test_116a() { # was previously test_116()
12203         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12204         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
12205         remote_mds_nodsh && skip "remote MDS with nodsh"
12206
12207         echo -n "Free space priority "
12208         do_facet $SINGLEMDS lctl get_param -n lo[vd].*-mdtlov.qos_prio_free |
12209                 head -n1
12210         declare -a AVAIL
12211         free_min_max
12212
12213         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip"
12214         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip"
12215         stack_trap simple_cleanup_common
12216
12217         # Check if we need to generate uneven OSTs
12218         test_mkdir -p $DIR/$tdir/OST${MINI}
12219         local FILL=$((MINV / 4))
12220         local DIFF=$((MAXV - MINV))
12221         local DIFF2=$((DIFF * 100 / MINV))
12222
12223         local threshold=$(do_facet $SINGLEMDS \
12224                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
12225         threshold=${threshold%%%}
12226         echo -n "Check for uneven OSTs: "
12227         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
12228
12229         if [[ $DIFF2 -gt $threshold ]]; then
12230                 echo "ok"
12231                 echo "Don't need to fill OST$MINI"
12232         else
12233                 # generate uneven OSTs. Write 2% over the QOS threshold value
12234                 echo "no"
12235                 DIFF=$((threshold - DIFF2 + 2))
12236                 DIFF2=$((MINV * DIFF / 100))
12237                 echo "Fill $DIFF% remaining space in OST$MINI with ${DIFF2}KB"
12238                 $LFS setstripe -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
12239                         error "setstripe failed"
12240                 DIFF=$((DIFF2 / 2048))
12241                 i=0
12242                 while [ $i -lt $DIFF ]; do
12243                         i=$((i + 1))
12244                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
12245                                 bs=2M count=1 2>/dev/null
12246                         echo -n .
12247                 done
12248                 echo .
12249                 sync
12250                 sleep_maxage
12251                 free_min_max
12252         fi
12253
12254         DIFF=$((MAXV - MINV))
12255         DIFF2=$((DIFF * 100 / MINV))
12256         echo -n "diff=$DIFF=$DIFF2% must be > $threshold% for QOS mode..."
12257         if [ $DIFF2 -gt $threshold ]; then
12258                 echo "ok"
12259         else
12260                 skip "QOS imbalance criteria not met"
12261         fi
12262
12263         MINI1=$MINI
12264         MINV1=$MINV
12265         MAXI1=$MAXI
12266         MAXV1=$MAXV
12267
12268         # now fill using QOS
12269         $LFS setstripe -c 1 $DIR/$tdir
12270         FILL=$((FILL / 200))
12271         if [ $FILL -gt 600 ]; then
12272                 FILL=600
12273         fi
12274         echo "writing $FILL files to QOS-assigned OSTs"
12275         i=0
12276         while [ $i -lt $FILL ]; do
12277                 i=$((i + 1))
12278                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
12279                         count=1 2>/dev/null
12280                 echo -n .
12281         done
12282         echo "wrote $i 200k files"
12283         sync
12284         sleep_maxage
12285
12286         echo "Note: free space may not be updated, so measurements might be off"
12287         free_min_max
12288         DIFF2=$((MAXV - MINV))
12289         echo "free space delta: orig $DIFF final $DIFF2"
12290         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
12291         DIFF=$((MINV1 - ${AVAIL[$MINI1]}))
12292         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
12293         DIFF2=$((MAXV1 - ${AVAIL[$MAXI1]}))
12294         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
12295         if [[ $DIFF -gt 0 ]]; then
12296                 FILL=$((DIFF2 * 100 / DIFF - 100))
12297                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
12298         fi
12299
12300         # Figure out which files were written where
12301         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
12302                awk '/'$MINI1': / {print $2; exit}')
12303         echo $UUID
12304         MINC=$($LFS getstripe --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
12305         echo "$MINC files created on smaller OST $MINI1"
12306         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
12307                awk '/'$MAXI1': / {print $2; exit}')
12308         echo $UUID
12309         MAXC=$($LFS getstripe --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
12310         echo "$MAXC files created on larger OST $MAXI1"
12311         if [[ $MINC -gt 0 ]]; then
12312                 FILL=$((MAXC * 100 / MINC - 100))
12313                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
12314         fi
12315         [[ $MAXC -gt $MINC ]] ||
12316                 error_ignore LU-9 "stripe QOS didn't balance free space"
12317 }
12318 run_test 116a "stripe QOS: free space balance ==================="
12319
12320 test_116b() { # LU-2093
12321         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12322         remote_mds_nodsh && skip "remote MDS with nodsh"
12323
12324 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
12325         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
12326                        lo[vd].$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
12327         [ -z "$old_rr" ] && skip "no QOS"
12328         do_facet $SINGLEMDS lctl set_param \
12329                 lo[vd].$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
12330         mkdir -p $DIR/$tdir
12331         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
12332         createmany -o $DIR/$tdir/f- 20 || error "can't create"
12333         do_facet $SINGLEMDS lctl set_param fail_loc=0
12334         rm -rf $DIR/$tdir
12335         do_facet $SINGLEMDS lctl set_param \
12336                 lo[vd].$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
12337 }
12338 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
12339
12340 test_117() # bug 10891
12341 {
12342         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12343
12344         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
12345         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
12346         lctl set_param fail_loc=0x21e
12347         > $DIR/$tfile || error "truncate failed"
12348         lctl set_param fail_loc=0
12349         echo "Truncate succeeded."
12350         rm -f $DIR/$tfile
12351 }
12352 run_test 117 "verify osd extend =========="
12353
12354 NO_SLOW_RESENDCOUNT=4
12355 export OLD_RESENDCOUNT=""
12356 set_resend_count () {
12357         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
12358         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
12359         lctl set_param -n $PROC_RESENDCOUNT $1
12360         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
12361 }
12362
12363 # for reduce test_118* time (b=14842)
12364 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
12365
12366 # Reset async IO behavior after error case
12367 reset_async() {
12368         FILE=$DIR/reset_async
12369
12370         # Ensure all OSCs are cleared
12371         $LFS setstripe -c -1 $FILE
12372         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
12373         sync
12374         rm $FILE
12375 }
12376
12377 test_118a() #bug 11710
12378 {
12379         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12380
12381         reset_async
12382
12383         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
12384         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
12385         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
12386
12387         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
12388                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
12389                 return 1;
12390         fi
12391         rm -f $DIR/$tfile
12392 }
12393 run_test 118a "verify O_SYNC works =========="
12394
12395 test_118b()
12396 {
12397         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12398         remote_ost_nodsh && skip "remote OST with nodsh"
12399
12400         reset_async
12401
12402         #define OBD_FAIL_SRV_ENOENT 0x217
12403         set_nodes_failloc "$(osts_nodes)" 0x217
12404         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
12405         RC=$?
12406         set_nodes_failloc "$(osts_nodes)" 0
12407         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
12408         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
12409                     grep -c writeback)
12410
12411         if [[ $RC -eq 0 ]]; then
12412                 error "Must return error due to dropped pages, rc=$RC"
12413                 return 1;
12414         fi
12415
12416         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
12417                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
12418                 return 1;
12419         fi
12420
12421         echo "Dirty pages not leaked on ENOENT"
12422
12423         # Due to the above error the OSC will issue all RPCs syncronously
12424         # until a subsequent RPC completes successfully without error.
12425         $MULTIOP $DIR/$tfile Ow4096yc
12426         rm -f $DIR/$tfile
12427
12428         return 0
12429 }
12430 run_test 118b "Reclaim dirty pages on fatal error =========="
12431
12432 test_118c()
12433 {
12434         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12435
12436         # for 118c, restore the original resend count, LU-1940
12437         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
12438                                 set_resend_count $OLD_RESENDCOUNT
12439         remote_ost_nodsh && skip "remote OST with nodsh"
12440
12441         reset_async
12442
12443         #define OBD_FAIL_OST_EROFS               0x216
12444         set_nodes_failloc "$(osts_nodes)" 0x216
12445
12446         # multiop should block due to fsync until pages are written
12447         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
12448         MULTIPID=$!
12449         sleep 1
12450
12451         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
12452                 error "Multiop failed to block on fsync, pid=$MULTIPID"
12453         fi
12454
12455         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
12456                     grep -c writeback)
12457         if [[ $WRITEBACK -eq 0 ]]; then
12458                 error "No page in writeback, writeback=$WRITEBACK"
12459         fi
12460
12461         set_nodes_failloc "$(osts_nodes)" 0
12462         wait $MULTIPID
12463         RC=$?
12464         if [[ $RC -ne 0 ]]; then
12465                 error "Multiop fsync failed, rc=$RC"
12466         fi
12467
12468         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
12469         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
12470                     grep -c writeback)
12471         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
12472                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
12473         fi
12474
12475         rm -f $DIR/$tfile
12476         echo "Dirty pages flushed via fsync on EROFS"
12477         return 0
12478 }
12479 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
12480
12481 # continue to use small resend count to reduce test_118* time (b=14842)
12482 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
12483
12484 test_118d()
12485 {
12486         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12487         remote_ost_nodsh && skip "remote OST with nodsh"
12488
12489         reset_async
12490
12491         #define OBD_FAIL_OST_BRW_PAUSE_BULK
12492         set_nodes_failloc "$(osts_nodes)" 0x214
12493         # multiop should block due to fsync until pages are written
12494         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
12495         MULTIPID=$!
12496         sleep 1
12497
12498         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
12499                 error "Multiop failed to block on fsync, pid=$MULTIPID"
12500         fi
12501
12502         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
12503                     grep -c writeback)
12504         if [[ $WRITEBACK -eq 0 ]]; then
12505                 error "No page in writeback, writeback=$WRITEBACK"
12506         fi
12507
12508         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
12509         set_nodes_failloc "$(osts_nodes)" 0
12510
12511         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
12512         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
12513                     grep -c writeback)
12514         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
12515                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
12516         fi
12517
12518         rm -f $DIR/$tfile
12519         echo "Dirty pages gaurenteed flushed via fsync"
12520         return 0
12521 }
12522 run_test 118d "Fsync validation inject a delay of the bulk =========="
12523
12524 test_118f() {
12525         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12526
12527         reset_async
12528
12529         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
12530         lctl set_param fail_loc=0x8000040a
12531
12532         # Should simulate EINVAL error which is fatal
12533         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
12534         RC=$?
12535         if [[ $RC -eq 0 ]]; then
12536                 error "Must return error due to dropped pages, rc=$RC"
12537         fi
12538
12539         lctl set_param fail_loc=0x0
12540
12541         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
12542         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
12543         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
12544                     grep -c writeback)
12545         if [[ $LOCKED -ne 0 ]]; then
12546                 error "Locked pages remain in cache, locked=$LOCKED"
12547         fi
12548
12549         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
12550                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
12551         fi
12552
12553         rm -f $DIR/$tfile
12554         echo "No pages locked after fsync"
12555
12556         reset_async
12557         return 0
12558 }
12559 run_test 118f "Simulate unrecoverable OSC side error =========="
12560
12561 test_118g() {
12562         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12563
12564         reset_async
12565
12566         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
12567         lctl set_param fail_loc=0x406
12568
12569         # simulate local -ENOMEM
12570         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
12571         RC=$?
12572
12573         lctl set_param fail_loc=0
12574         if [[ $RC -eq 0 ]]; then
12575                 error "Must return error due to dropped pages, rc=$RC"
12576         fi
12577
12578         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
12579         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
12580         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
12581                         grep -c writeback)
12582         if [[ $LOCKED -ne 0 ]]; then
12583                 error "Locked pages remain in cache, locked=$LOCKED"
12584         fi
12585
12586         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
12587                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
12588         fi
12589
12590         rm -f $DIR/$tfile
12591         echo "No pages locked after fsync"
12592
12593         reset_async
12594         return 0
12595 }
12596 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
12597
12598 test_118h() {
12599         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12600         remote_ost_nodsh && skip "remote OST with nodsh"
12601
12602         reset_async
12603
12604         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
12605         set_nodes_failloc "$(osts_nodes)" 0x20e
12606         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
12607         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
12608         RC=$?
12609
12610         set_nodes_failloc "$(osts_nodes)" 0
12611         if [[ $RC -eq 0 ]]; then
12612                 error "Must return error due to dropped pages, rc=$RC"
12613         fi
12614
12615         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
12616         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
12617         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
12618                     grep -c writeback)
12619         if [[ $LOCKED -ne 0 ]]; then
12620                 error "Locked pages remain in cache, locked=$LOCKED"
12621         fi
12622
12623         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
12624                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
12625         fi
12626
12627         rm -f $DIR/$tfile
12628         echo "No pages locked after fsync"
12629
12630         return 0
12631 }
12632 run_test 118h "Verify timeout in handling recoverables errors  =========="
12633
12634 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
12635
12636 test_118i() {
12637         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12638         remote_ost_nodsh && skip "remote OST with nodsh"
12639
12640         reset_async
12641
12642         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
12643         set_nodes_failloc "$(osts_nodes)" 0x20e
12644
12645         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
12646         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
12647         PID=$!
12648         sleep 5
12649         set_nodes_failloc "$(osts_nodes)" 0
12650
12651         wait $PID
12652         RC=$?
12653         if [[ $RC -ne 0 ]]; then
12654                 error "got error, but should be not, rc=$RC"
12655         fi
12656
12657         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
12658         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
12659         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
12660         if [[ $LOCKED -ne 0 ]]; then
12661                 error "Locked pages remain in cache, locked=$LOCKED"
12662         fi
12663
12664         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
12665                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
12666         fi
12667
12668         rm -f $DIR/$tfile
12669         echo "No pages locked after fsync"
12670
12671         return 0
12672 }
12673 run_test 118i "Fix error before timeout in recoverable error  =========="
12674
12675 [ "$SLOW" = "no" ] && set_resend_count 4
12676
12677 test_118j() {
12678         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12679         remote_ost_nodsh && skip "remote OST with nodsh"
12680
12681         reset_async
12682
12683         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
12684         set_nodes_failloc "$(osts_nodes)" 0x220
12685
12686         # return -EIO from OST
12687         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
12688         RC=$?
12689         set_nodes_failloc "$(osts_nodes)" 0x0
12690         if [[ $RC -eq 0 ]]; then
12691                 error "Must return error due to dropped pages, rc=$RC"
12692         fi
12693
12694         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
12695         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
12696         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
12697         if [[ $LOCKED -ne 0 ]]; then
12698                 error "Locked pages remain in cache, locked=$LOCKED"
12699         fi
12700
12701         # in recoverable error on OST we want resend and stay until it finished
12702         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
12703                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
12704         fi
12705
12706         rm -f $DIR/$tfile
12707         echo "No pages locked after fsync"
12708
12709         return 0
12710 }
12711 run_test 118j "Simulate unrecoverable OST side error =========="
12712
12713 test_118k()
12714 {
12715         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12716         remote_ost_nodsh && skip "remote OSTs with nodsh"
12717
12718         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
12719         set_nodes_failloc "$(osts_nodes)" 0x20e
12720         test_mkdir $DIR/$tdir
12721
12722         for ((i=0;i<10;i++)); do
12723                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
12724                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
12725                 SLEEPPID=$!
12726                 sleep 0.500s
12727                 kill $SLEEPPID
12728                 wait $SLEEPPID
12729         done
12730
12731         set_nodes_failloc "$(osts_nodes)" 0
12732         rm -rf $DIR/$tdir
12733 }
12734 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
12735
12736 test_118l() # LU-646
12737 {
12738         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12739
12740         test_mkdir $DIR/$tdir
12741         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
12742         rm -rf $DIR/$tdir
12743 }
12744 run_test 118l "fsync dir"
12745
12746 test_118m() # LU-3066
12747 {
12748         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12749
12750         test_mkdir $DIR/$tdir
12751         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
12752         rm -rf $DIR/$tdir
12753 }
12754 run_test 118m "fdatasync dir ========="
12755
12756 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
12757
12758 test_118n()
12759 {
12760         local begin
12761         local end
12762
12763         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12764         remote_ost_nodsh && skip "remote OSTs with nodsh"
12765
12766         # Sleep to avoid a cached response.
12767         #define OBD_STATFS_CACHE_SECONDS 1
12768         sleep 2
12769
12770         # Inject a 10 second delay in the OST_STATFS handler.
12771         #define OBD_FAIL_OST_STATFS_DELAY 0x242
12772         set_nodes_failloc "$(osts_nodes)" 0x242
12773
12774         begin=$SECONDS
12775         stat --file-system $MOUNT > /dev/null
12776         end=$SECONDS
12777
12778         set_nodes_failloc "$(osts_nodes)" 0
12779
12780         if ((end - begin > 20)); then
12781             error "statfs took $((end - begin)) seconds, expected 10"
12782         fi
12783 }
12784 run_test 118n "statfs() sends OST_STATFS requests in parallel"
12785
12786 test_119a() # bug 11737
12787 {
12788         BSIZE=$((512 * 1024))
12789         directio write $DIR/$tfile 0 1 $BSIZE
12790         # We ask to read two blocks, which is more than a file size.
12791         # directio will indicate an error when requested and actual
12792         # sizes aren't equeal (a normal situation in this case) and
12793         # print actual read amount.
12794         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
12795         if [ "$NOB" != "$BSIZE" ]; then
12796                 error "read $NOB bytes instead of $BSIZE"
12797         fi
12798         rm -f $DIR/$tfile
12799 }
12800 run_test 119a "Short directIO read must return actual read amount"
12801
12802 test_119b() # bug 11737
12803 {
12804         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
12805
12806         $LFS setstripe -c 2 $DIR/$tfile || error "setstripe failed"
12807         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
12808         sync
12809         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) ||
12810                 error "direct read failed"
12811         rm -f $DIR/$tfile
12812 }
12813 run_test 119b "Sparse directIO read must return actual read amount"
12814
12815 test_119c() # bug 13099
12816 {
12817         BSIZE=1048576
12818         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
12819         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
12820         rm -f $DIR/$tfile
12821 }
12822 run_test 119c "Testing for direct read hitting hole"
12823
12824 test_119d() # bug 15950
12825 {
12826         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12827
12828         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
12829         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
12830         BSIZE=1048576
12831         $LFS setstripe $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
12832         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
12833         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
12834         lctl set_param fail_loc=0x40d
12835         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
12836         pid_dio=$!
12837         sleep 1
12838         cat $DIR/$tfile > /dev/null &
12839         lctl set_param fail_loc=0
12840         pid_reads=$!
12841         wait $pid_dio
12842         log "the DIO writes have completed, now wait for the reads (should not block very long)"
12843         sleep 2
12844         [ -n "`ps h -p $pid_reads -o comm`" ] && \
12845         error "the read rpcs have not completed in 2s"
12846         rm -f $DIR/$tfile
12847         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
12848 }
12849 run_test 119d "The DIO path should try to send a new rpc once one is completed"
12850
12851 test_120a() {
12852         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12853         remote_mds_nodsh && skip "remote MDS with nodsh"
12854         test_mkdir -i0 -c1 $DIR/$tdir
12855         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
12856                 skip_env "no early lock cancel on server"
12857
12858         lru_resize_disable mdc
12859         lru_resize_disable osc
12860         cancel_lru_locks mdc
12861         # asynchronous object destroy at MDT could cause bl ast to client
12862         cancel_lru_locks osc
12863
12864         stat $DIR/$tdir > /dev/null
12865         can1=$(do_facet mds1 \
12866                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
12867                awk '/ldlm_cancel/ {print $2}')
12868         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
12869                awk '/ldlm_bl_callback/ {print $2}')
12870         test_mkdir -i0 -c1 $DIR/$tdir/d1
12871         can2=$(do_facet mds1 \
12872                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
12873                awk '/ldlm_cancel/ {print $2}')
12874         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
12875                awk '/ldlm_bl_callback/ {print $2}')
12876         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
12877         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
12878         lru_resize_enable mdc
12879         lru_resize_enable osc
12880 }
12881 run_test 120a "Early Lock Cancel: mkdir test"
12882
12883 test_120b() {
12884         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12885         remote_mds_nodsh && skip "remote MDS with nodsh"
12886         test_mkdir $DIR/$tdir
12887         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
12888                 skip_env "no early lock cancel on server"
12889
12890         lru_resize_disable mdc
12891         lru_resize_disable osc
12892         cancel_lru_locks mdc
12893         stat $DIR/$tdir > /dev/null
12894         can1=$(do_facet $SINGLEMDS \
12895                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
12896                awk '/ldlm_cancel/ {print $2}')
12897         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
12898                awk '/ldlm_bl_callback/ {print $2}')
12899         touch $DIR/$tdir/f1
12900         can2=$(do_facet $SINGLEMDS \
12901                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
12902                awk '/ldlm_cancel/ {print $2}')
12903         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
12904                awk '/ldlm_bl_callback/ {print $2}')
12905         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
12906         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
12907         lru_resize_enable mdc
12908         lru_resize_enable osc
12909 }
12910 run_test 120b "Early Lock Cancel: create test"
12911
12912 test_120c() {
12913         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12914         remote_mds_nodsh && skip "remote MDS with nodsh"
12915         test_mkdir -i0 -c1 $DIR/$tdir
12916         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
12917                 skip "no early lock cancel on server"
12918
12919         lru_resize_disable mdc
12920         lru_resize_disable osc
12921         test_mkdir -i0 -c1 $DIR/$tdir/d1
12922         test_mkdir -i0 -c1 $DIR/$tdir/d2
12923         touch $DIR/$tdir/d1/f1
12924         cancel_lru_locks mdc
12925         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
12926         can1=$(do_facet mds1 \
12927                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
12928                awk '/ldlm_cancel/ {print $2}')
12929         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
12930                awk '/ldlm_bl_callback/ {print $2}')
12931         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
12932         can2=$(do_facet mds1 \
12933                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
12934                awk '/ldlm_cancel/ {print $2}')
12935         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
12936                awk '/ldlm_bl_callback/ {print $2}')
12937         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
12938         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
12939         lru_resize_enable mdc
12940         lru_resize_enable osc
12941 }
12942 run_test 120c "Early Lock Cancel: link test"
12943
12944 test_120d() {
12945         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12946         remote_mds_nodsh && skip "remote MDS with nodsh"
12947         test_mkdir -i0 -c1 $DIR/$tdir
12948         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
12949                 skip_env "no early lock cancel on server"
12950
12951         lru_resize_disable mdc
12952         lru_resize_disable osc
12953         touch $DIR/$tdir
12954         cancel_lru_locks mdc
12955         stat $DIR/$tdir > /dev/null
12956         can1=$(do_facet mds1 \
12957                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
12958                awk '/ldlm_cancel/ {print $2}')
12959         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
12960                awk '/ldlm_bl_callback/ {print $2}')
12961         chmod a+x $DIR/$tdir
12962         can2=$(do_facet mds1 \
12963                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
12964                awk '/ldlm_cancel/ {print $2}')
12965         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
12966                awk '/ldlm_bl_callback/ {print $2}')
12967         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
12968         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
12969         lru_resize_enable mdc
12970         lru_resize_enable osc
12971 }
12972 run_test 120d "Early Lock Cancel: setattr test"
12973
12974 test_120e() {
12975         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12976         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
12977                 skip_env "no early lock cancel on server"
12978         remote_mds_nodsh && skip "remote MDS with nodsh"
12979
12980         local dlmtrace_set=false
12981
12982         test_mkdir -i0 -c1 $DIR/$tdir
12983         lru_resize_disable mdc
12984         lru_resize_disable osc
12985         ! $LCTL get_param debug | grep -q dlmtrace &&
12986                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
12987         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
12988         cancel_lru_locks mdc
12989         cancel_lru_locks osc
12990         dd if=$DIR/$tdir/f1 of=/dev/null
12991         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
12992         # XXX client can not do early lock cancel of OST lock
12993         # during unlink (LU-4206), so cancel osc lock now.
12994         sleep 2
12995         cancel_lru_locks osc
12996         can1=$(do_facet mds1 \
12997                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
12998                awk '/ldlm_cancel/ {print $2}')
12999         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
13000                awk '/ldlm_bl_callback/ {print $2}')
13001         unlink $DIR/$tdir/f1
13002         sleep 5
13003         can2=$(do_facet mds1 \
13004                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
13005                awk '/ldlm_cancel/ {print $2}')
13006         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
13007                awk '/ldlm_bl_callback/ {print $2}')
13008         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
13009                 $LCTL dk $TMP/cancel.debug.txt
13010         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
13011                 $LCTL dk $TMP/blocking.debug.txt
13012         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
13013         lru_resize_enable mdc
13014         lru_resize_enable osc
13015 }
13016 run_test 120e "Early Lock Cancel: unlink test"
13017
13018 test_120f() {
13019         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13020         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
13021                 skip_env "no early lock cancel on server"
13022         remote_mds_nodsh && skip "remote MDS with nodsh"
13023
13024         test_mkdir -i0 -c1 $DIR/$tdir
13025         lru_resize_disable mdc
13026         lru_resize_disable osc
13027         test_mkdir -i0 -c1 $DIR/$tdir/d1
13028         test_mkdir -i0 -c1 $DIR/$tdir/d2
13029         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
13030         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
13031         cancel_lru_locks mdc
13032         cancel_lru_locks osc
13033         dd if=$DIR/$tdir/d1/f1 of=/dev/null
13034         dd if=$DIR/$tdir/d2/f2 of=/dev/null
13035         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
13036         # XXX client can not do early lock cancel of OST lock
13037         # during rename (LU-4206), so cancel osc lock now.
13038         sleep 2
13039         cancel_lru_locks osc
13040         can1=$(do_facet mds1 \
13041                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
13042                awk '/ldlm_cancel/ {print $2}')
13043         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
13044                awk '/ldlm_bl_callback/ {print $2}')
13045         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
13046         sleep 5
13047         can2=$(do_facet mds1 \
13048                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
13049                awk '/ldlm_cancel/ {print $2}')
13050         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
13051                awk '/ldlm_bl_callback/ {print $2}')
13052         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
13053         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
13054         lru_resize_enable mdc
13055         lru_resize_enable osc
13056 }
13057 run_test 120f "Early Lock Cancel: rename test"
13058
13059 test_120g() {
13060         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13061         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
13062                 skip_env "no early lock cancel on server"
13063         remote_mds_nodsh && skip "remote MDS with nodsh"
13064
13065         lru_resize_disable mdc
13066         lru_resize_disable osc
13067         count=10000
13068         echo create $count files
13069         test_mkdir $DIR/$tdir
13070         cancel_lru_locks mdc
13071         cancel_lru_locks osc
13072         t0=$(date +%s)
13073
13074         can0=$(do_facet $SINGLEMDS \
13075                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
13076                awk '/ldlm_cancel/ {print $2}')
13077         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
13078                awk '/ldlm_bl_callback/ {print $2}')
13079         createmany -o $DIR/$tdir/f $count
13080         sync
13081         can1=$(do_facet $SINGLEMDS \
13082                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
13083                awk '/ldlm_cancel/ {print $2}')
13084         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
13085                awk '/ldlm_bl_callback/ {print $2}')
13086         t1=$(date +%s)
13087         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
13088         echo rm $count files
13089         rm -r $DIR/$tdir
13090         sync
13091         can2=$(do_facet $SINGLEMDS \
13092                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
13093                awk '/ldlm_cancel/ {print $2}')
13094         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
13095                awk '/ldlm_bl_callback/ {print $2}')
13096         t2=$(date +%s)
13097         echo total: $count removes in $((t2-t1))
13098         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
13099         sleep 2
13100         # wait for commitment of removal
13101         lru_resize_enable mdc
13102         lru_resize_enable osc
13103 }
13104 run_test 120g "Early Lock Cancel: performance test"
13105
13106 test_121() { #bug #10589
13107         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13108
13109         rm -rf $DIR/$tfile
13110         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
13111 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
13112         lctl set_param fail_loc=0x310
13113         cancel_lru_locks osc > /dev/null
13114         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
13115         lctl set_param fail_loc=0
13116         [[ $reads -eq $writes ]] ||
13117                 error "read $reads blocks, must be $writes blocks"
13118 }
13119 run_test 121 "read cancel race ========="
13120
13121 test_123a_base() { # was test 123, statahead(bug 11401)
13122         local lsx="$1"
13123
13124         SLOWOK=0
13125         if ! grep -q "processor.*: 1" /proc/cpuinfo; then
13126                 log "testing UP system. Performance may be lower than expected."
13127                 SLOWOK=1
13128         fi
13129         running_in_vm && SLOWOK=1
13130
13131         rm -rf $DIR/$tdir
13132         test_mkdir $DIR/$tdir
13133         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
13134         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
13135         MULT=10
13136         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
13137                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
13138
13139                 max=$(lctl get_param -n llite.*.statahead_max | head -n 1)
13140                 lctl set_param -n llite.*.statahead_max 0
13141                 lctl get_param llite.*.statahead_max
13142                 cancel_lru_locks mdc
13143                 cancel_lru_locks osc
13144                 stime=$(date +%s)
13145                 time $lsx $DIR/$tdir | wc -l
13146                 etime=$(date +%s)
13147                 delta=$((etime - stime))
13148                 log "$lsx $i files without statahead: $delta sec"
13149                 lctl set_param llite.*.statahead_max=$max
13150
13151                 swrong=$(lctl get_param -n llite.*.statahead_stats |
13152                          awk '/statahead.wrong:/ { print $NF }')
13153                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
13154                 cancel_lru_locks mdc
13155                 cancel_lru_locks osc
13156                 stime=$(date +%s)
13157                 time $lsx $DIR/$tdir | wc -l
13158                 etime=$(date +%s)
13159                 delta_sa=$((etime - stime))
13160                 log "$lsx $i files with statahead: $delta_sa sec"
13161                 lctl get_param -n llite.*.statahead_stats
13162                 ewrong=$(lctl get_param -n llite.*.statahead_stats |
13163                          awk '/statahead.wrong:/ { print $NF }')
13164
13165                 [[ $swrong -lt $ewrong ]] &&
13166                         log "statahead was stopped, maybe too many locks held!"
13167                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
13168
13169                 if (( $delta_sa*100 > $delta*105 && $delta_sa > $delta+2)); then
13170                         max=$(lctl get_param -n llite.*.statahead_max |
13171                                 head -n 1)
13172                         lctl set_param -n llite.*.statahead_max 0
13173                         lctl get_param llite.*.statahead_max
13174                         cancel_lru_locks mdc
13175                         cancel_lru_locks osc
13176                         stime=$(date +%s)
13177                         time $lsx $DIR/$tdir | wc -l
13178                         etime=$(date +%s)
13179                         delta=$((etime - stime))
13180                         log "$lsx $i files again without statahead: $delta sec"
13181                         lctl set_param llite.*.statahead_max=$max
13182                         if (( $delta_sa*100 > delta*105 && delta_sa > delta+2 )); then
13183                                 if [ $SLOWOK -eq 0 ]; then
13184                                         error "$lsx $i files is slower with statahead!"
13185                                 else
13186                                         log "$lsx $i files is slower with statahead!"
13187                                 fi
13188                                 break
13189                         fi
13190                 fi
13191
13192                 [ $delta -gt 20 ] && break
13193                 [ $delta -gt 8 ] && MULT=$((50 / delta))
13194                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
13195         done
13196         log "$lsx done"
13197
13198         stime=$(date +%s)
13199         rm -r $DIR/$tdir
13200         sync
13201         etime=$(date +%s)
13202         delta=$((etime - stime))
13203         log "rm -r $DIR/$tdir/: $delta seconds"
13204         log "rm done"
13205         lctl get_param -n llite.*.statahead_stats
13206 }
13207
13208 test_123aa() {
13209         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13210
13211         test_123a_base "ls -l"
13212 }
13213 run_test 123aa "verify statahead work"
13214
13215 test_123ab() {
13216         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13217
13218         statx_supported || skip_env "Test must be statx() syscall supported"
13219
13220         test_123a_base "$STATX -l"
13221 }
13222 run_test 123ab "verify statahead work by using statx"
13223
13224 test_123ac() {
13225         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13226
13227         statx_supported || skip_env "Test must be statx() syscall supported"
13228
13229         local rpcs_before
13230         local rpcs_after
13231         local agl_before
13232         local agl_after
13233
13234         cancel_lru_locks $OSC
13235         rpcs_before=$(calc_stats $OSC.*$OSC*.stats ldlm_glimpse_enqueue)
13236         agl_before=$($LCTL get_param -n llite.*.statahead_stats |
13237                      awk '/agl.total:/ { print $NF }')
13238         test_123a_base "$STATX -c \"%n %i %A %h %u %g %W %X %Z\" -D"
13239         test_123a_base "$STATX --cached=always -D"
13240         agl_after=$($LCTL get_param -n llite.*.statahead_stats |
13241                     awk '/agl.total:/ { print $NF }')
13242         [ $agl_before -eq $agl_after ] ||
13243                 error "Should not trigger AGL thread - $agl_before:$agl_after"
13244         rpcs_after=$(calc_stats $OSC.*$OSC*.stats ldlm_glimpse_enqueue)
13245         [ $rpcs_after -eq $rpcs_before ] ||
13246                 error "$STATX should not send glimpse RPCs to $OSC"
13247 }
13248 run_test 123ac "verify statahead work by using statx without glimpse RPCs"
13249
13250 test_123b () { # statahead(bug 15027)
13251         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13252
13253         test_mkdir $DIR/$tdir
13254         createmany -o $DIR/$tdir/$tfile-%d 1000
13255
13256         cancel_lru_locks mdc
13257         cancel_lru_locks osc
13258
13259 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
13260         lctl set_param fail_loc=0x80000803
13261         ls -lR $DIR/$tdir > /dev/null
13262         log "ls done"
13263         lctl set_param fail_loc=0x0
13264         lctl get_param -n llite.*.statahead_stats
13265         rm -r $DIR/$tdir
13266         sync
13267
13268 }
13269 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
13270
13271 test_123c() {
13272         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
13273
13274         test_mkdir -i 0 -c 1 $DIR/$tdir.0
13275         test_mkdir -i 1 -c 1 $DIR/$tdir.1
13276         touch $DIR/$tdir.1/{1..3}
13277         mv $DIR/$tdir.1/{1..3} $DIR/$tdir.0
13278
13279         remount_client $MOUNT
13280
13281         $MULTIOP $DIR/$tdir.0 Q
13282
13283         # let statahead to complete
13284         ls -l $DIR/$tdir.0 > /dev/null
13285
13286         testid=$(echo $TESTNAME | tr '_' ' ')
13287         dmesg | tac | sed "/$testid/,$ d" | grep "Can not initialize inode" &&
13288                 error "statahead warning" || true
13289 }
13290 run_test 123c "Can not initialize inode warning on DNE statahead"
13291
13292 test_123d() {
13293         local num=100
13294         local swrong
13295         local ewrong
13296
13297         test_mkdir -c -1 $DIR/$tdir || error "test_mkdir $DIR/$tdir failed"
13298         $LFS setdirstripe -D -c $MDSCOUNT $DIR/$tdir ||
13299                 error "setdirstripe $DIR/$tdir failed"
13300         createmany -d $DIR/$tdir/$tfile $num || error "createmany $num failed"
13301         remount_client $MOUNT
13302         $LCTL get_param llite.*.statahead_max
13303         $LCTL set_param llite.*.statahead_stats=0 ||
13304                 error "clear statahead_stats failed"
13305         swrong=$(lctl get_param -n llite.*.statahead_stats |
13306                  awk '/statahead.wrong:/ { print $NF }')
13307         ls -l $DIR/$tdir || error "ls -l $DIR/$tdir failed"
13308         # wait for statahead thread finished to update hit/miss stats.
13309         sleep 1
13310         $LCTL get_param -n llite.*.statahead_stats
13311         ewrong=$(lctl get_param -n llite.*.statahead_stats |
13312                  awk '/statahead.wrong:/ { print $NF }')
13313         (( $swrong == $ewrong )) ||
13314                 log "statahead was stopped, maybe too many locks held!"
13315 }
13316 run_test 123d "Statahead on striped directories works correctly"
13317
13318 test_124a() {
13319         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13320         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
13321                 skip_env "no lru resize on server"
13322
13323         local NR=2000
13324
13325         test_mkdir $DIR/$tdir
13326
13327         log "create $NR files at $DIR/$tdir"
13328         createmany -o $DIR/$tdir/f $NR ||
13329                 error "failed to create $NR files in $DIR/$tdir"
13330
13331         cancel_lru_locks mdc
13332         ls -l $DIR/$tdir > /dev/null
13333
13334         local NSDIR=""
13335         local LRU_SIZE=0
13336         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
13337                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
13338                 LRU_SIZE=$($LCTL get_param -n $PARAM)
13339                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
13340                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
13341                         log "NSDIR=$NSDIR"
13342                         log "NS=$(basename $NSDIR)"
13343                         break
13344                 fi
13345         done
13346
13347         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
13348                 skip "Not enough cached locks created!"
13349         fi
13350         log "LRU=$LRU_SIZE"
13351
13352         local SLEEP=30
13353
13354         # We know that lru resize allows one client to hold $LIMIT locks
13355         # for 10h. After that locks begin to be killed by client.
13356         local MAX_HRS=10
13357         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
13358         log "LIMIT=$LIMIT"
13359         if [ $LIMIT -lt $LRU_SIZE ]; then
13360                 skip "Limit is too small $LIMIT"
13361         fi
13362
13363         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
13364         # killing locks. Some time was spent for creating locks. This means
13365         # that up to the moment of sleep finish we must have killed some of
13366         # them (10-100 locks). This depends on how fast ther were created.
13367         # Many of them were touched in almost the same moment and thus will
13368         # be killed in groups.
13369         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE * 100))
13370
13371         # Use $LRU_SIZE_B here to take into account real number of locks
13372         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
13373         local LRU_SIZE_B=$LRU_SIZE
13374         log "LVF=$LVF"
13375         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
13376         log "OLD_LVF=$OLD_LVF"
13377         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
13378
13379         # Let's make sure that we really have some margin. Client checks
13380         # cached locks every 10 sec.
13381         SLEEP=$((SLEEP+20))
13382         log "Sleep ${SLEEP} sec"
13383         local SEC=0
13384         while ((SEC<$SLEEP)); do
13385                 echo -n "..."
13386                 sleep 5
13387                 SEC=$((SEC+5))
13388                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
13389                 echo -n "$LRU_SIZE"
13390         done
13391         echo ""
13392         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
13393         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
13394
13395         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
13396                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
13397                 unlinkmany $DIR/$tdir/f $NR
13398                 return
13399         }
13400
13401         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
13402         log "unlink $NR files at $DIR/$tdir"
13403         unlinkmany $DIR/$tdir/f $NR
13404 }
13405 run_test 124a "lru resize ======================================="
13406
13407 get_max_pool_limit()
13408 {
13409         local limit=$($LCTL get_param \
13410                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
13411         local max=0
13412         for l in $limit; do
13413                 if [[ $l -gt $max ]]; then
13414                         max=$l
13415                 fi
13416         done
13417         echo $max
13418 }
13419
13420 test_124b() {
13421         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13422         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
13423                 skip_env "no lru resize on server"
13424
13425         LIMIT=$(get_max_pool_limit)
13426
13427         NR=$(($(default_lru_size)*20))
13428         if [[ $NR -gt $LIMIT ]]; then
13429                 log "Limit lock number by $LIMIT locks"
13430                 NR=$LIMIT
13431         fi
13432
13433         IFree=$(mdsrate_inodes_available)
13434         if [ $IFree -lt $NR ]; then
13435                 log "Limit lock number by $IFree inodes"
13436                 NR=$IFree
13437         fi
13438
13439         lru_resize_disable mdc
13440         test_mkdir -p $DIR/$tdir/disable_lru_resize
13441
13442         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
13443         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
13444         cancel_lru_locks mdc
13445         stime=`date +%s`
13446         PID=""
13447         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
13448         PID="$PID $!"
13449         sleep 2
13450         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
13451         PID="$PID $!"
13452         sleep 2
13453         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
13454         PID="$PID $!"
13455         wait $PID
13456         etime=`date +%s`
13457         nolruresize_delta=$((etime-stime))
13458         log "ls -la time: $nolruresize_delta seconds"
13459         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
13460         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
13461
13462         lru_resize_enable mdc
13463         test_mkdir -p $DIR/$tdir/enable_lru_resize
13464
13465         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
13466         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
13467         cancel_lru_locks mdc
13468         stime=`date +%s`
13469         PID=""
13470         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
13471         PID="$PID $!"
13472         sleep 2
13473         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
13474         PID="$PID $!"
13475         sleep 2
13476         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
13477         PID="$PID $!"
13478         wait $PID
13479         etime=`date +%s`
13480         lruresize_delta=$((etime-stime))
13481         log "ls -la time: $lruresize_delta seconds"
13482         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
13483
13484         if [ $lruresize_delta -gt $nolruresize_delta ]; then
13485                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
13486         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
13487                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
13488         else
13489                 log "lru resize performs the same with no lru resize"
13490         fi
13491         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
13492 }
13493 run_test 124b "lru resize (performance test) ======================="
13494
13495 test_124c() {
13496         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13497         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
13498                 skip_env "no lru resize on server"
13499
13500         # cache ununsed locks on client
13501         local nr=100
13502         cancel_lru_locks mdc
13503         test_mkdir $DIR/$tdir
13504         createmany -o $DIR/$tdir/f $nr ||
13505                 error "failed to create $nr files in $DIR/$tdir"
13506         ls -l $DIR/$tdir > /dev/null
13507
13508         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
13509         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
13510         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
13511         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
13512         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
13513
13514         # set lru_max_age to 1 sec
13515         $LCTL set_param $nsdir.lru_max_age=1000 # milliseconds
13516         echo "sleep $((recalc_p * 2)) seconds..."
13517         sleep $((recalc_p * 2))
13518
13519         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
13520         # restore lru_max_age
13521         $LCTL set_param -n $nsdir.lru_max_age $max_age
13522         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
13523         unlinkmany $DIR/$tdir/f $nr
13524 }
13525 run_test 124c "LRUR cancel very aged locks"
13526
13527 test_124d() {
13528         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13529         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
13530                 skip_env "no lru resize on server"
13531
13532         # cache ununsed locks on client
13533         local nr=100
13534
13535         lru_resize_disable mdc
13536         stack_trap "lru_resize_enable mdc" EXIT
13537
13538         cancel_lru_locks mdc
13539
13540         # asynchronous object destroy at MDT could cause bl ast to client
13541         test_mkdir $DIR/$tdir
13542         createmany -o $DIR/$tdir/f $nr ||
13543                 error "failed to create $nr files in $DIR/$tdir"
13544         stack_trap "unlinkmany $DIR/$tdir/f $nr" EXIT
13545
13546         ls -l $DIR/$tdir > /dev/null
13547
13548         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
13549         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
13550         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
13551         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
13552
13553         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
13554
13555         # set lru_max_age to 1 sec
13556         $LCTL set_param $nsdir.lru_max_age=1000 # milliseconds
13557         stack_trap "$LCTL set_param -n $nsdir.lru_max_age $max_age" EXIT
13558
13559         echo "sleep $((recalc_p * 2)) seconds..."
13560         sleep $((recalc_p * 2))
13561
13562         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
13563
13564         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
13565 }
13566 run_test 124d "cancel very aged locks if lru-resize diasbaled"
13567
13568 test_125() { # 13358
13569         $LCTL get_param -n llite.*.client_type | grep -q local ||
13570                 skip "must run as local client"
13571         $LCTL get_param -n mdc.*-mdc-*.connect_flags | grep -q acl ||
13572                 skip_env "must have acl enabled"
13573         [ -z "$(which setfacl)" ] && skip_env "must have setfacl tool"
13574
13575         test_mkdir $DIR/$tdir
13576         $LFS setstripe -S 65536 -c -1 $DIR/$tdir || error "setstripe failed"
13577         setfacl -R -m u:$USER0:rwx $DIR/$tdir ||
13578                 error "setfacl $DIR/$tdir failed"
13579         ls -ld $DIR/$tdir || error "cannot access $DIR/$tdir"
13580 }
13581 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
13582
13583 test_126() { # bug 12829/13455
13584         $GSS && skip_env "must run as gss disabled"
13585         $LCTL get_param -n llite.*.client_type | grep -q local ||
13586                 skip "must run as local client"
13587         [ "$UID" != 0 ] && skip "must run as root, not UID $UID"
13588
13589         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
13590         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
13591         rm -f $DIR/$tfile
13592         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
13593 }
13594 run_test 126 "check that the fsgid provided by the client is taken into account"
13595
13596 test_127a() { # bug 15521
13597         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13598         local name count samp unit min max sum sumsq
13599
13600         $LFS setstripe -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
13601         echo "stats before reset"
13602         $LCTL get_param osc.*.stats
13603         $LCTL set_param osc.*.stats=0
13604         local fsize=$((2048 * 1024))
13605
13606         dd if=/dev/zero of=$DIR/$tfile bs=$fsize count=1
13607         cancel_lru_locks osc
13608         dd if=$DIR/$tfile of=/dev/null bs=$fsize
13609
13610         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/$tfile.tmp
13611         stack_trap "rm -f $TMP/$tfile.tmp"
13612         while read name count samp unit min max sum sumsq; do
13613                 echo "got name=$name count=$count unit=$unit min=$min max=$max"
13614                 [ ! $min ] && error "Missing min value for $name proc entry"
13615                 eval $name=$count || error "Wrong proc format"
13616
13617                 case $name in
13618                 read_bytes|write_bytes)
13619                         [[ "$unit" =~ "bytes" ]] ||
13620                                 error "unit is not 'bytes': $unit"
13621                         (( $min >= 4096 )) || error "min is too small: $min"
13622                         (( $min <= $fsize )) || error "min is too big: $min"
13623                         (( $max >= 4096 )) || error "max is too small: $max"
13624                         (( $max <= $fsize )) || error "max is too big: $max"
13625                         (( $sum == $fsize )) || error "sum is wrong: $sum"
13626                         (( $sumsq >= ($fsize / 4096) * (4096 * 4096) )) ||
13627                                 error "sumsquare is too small: $sumsq"
13628                         (( $sumsq <= $fsize * $fsize )) ||
13629                                 error "sumsquare is too big: $sumsq"
13630                         ;;
13631                 ost_read|ost_write)
13632                         [[ "$unit" =~ "usec" ]] ||
13633                                 error "unit is not 'usec': $unit"
13634                         ;;
13635                 *)      ;;
13636                 esac
13637         done < $DIR/$tfile.tmp
13638
13639         #check that we actually got some stats
13640         [ "$read_bytes" ] || error "Missing read_bytes stats"
13641         [ "$write_bytes" ] || error "Missing write_bytes stats"
13642         [ "$read_bytes" != 0 ] || error "no read done"
13643         [ "$write_bytes" != 0 ] || error "no write done"
13644 }
13645 run_test 127a "verify the client stats are sane"
13646
13647 test_127b() { # bug LU-333
13648         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13649         local name count samp unit min max sum sumsq
13650
13651         echo "stats before reset"
13652         $LCTL get_param llite.*.stats
13653         $LCTL set_param llite.*.stats=0
13654
13655         # perform 2 reads and writes so MAX is different from SUM.
13656         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1
13657         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1
13658         cancel_lru_locks osc
13659         dd if=$DIR/$tfile of=/dev/null bs=$PAGE_SIZE count=1
13660         dd if=$DIR/$tfile of=/dev/null bs=$PAGE_SIZE count=1
13661
13662         $LCTL get_param llite.*.stats | grep samples > $TMP/$tfile.tmp
13663         stack_trap "rm -f $TMP/$tfile.tmp"
13664         while read name count samp unit min max sum sumsq; do
13665                 echo "got name=$name count=$count unit=$unit min=$min max=$max"
13666                 eval $name=$count || error "Wrong proc format"
13667
13668                 case $name in
13669                 read_bytes|write_bytes)
13670                         [[ "$unit" =~ "bytes" ]] ||
13671                                 error "unit is not 'bytes': $unit"
13672                         (( $count == 2 )) || error "count is not 2: $count"
13673                         (( $min == $PAGE_SIZE )) ||
13674                                 error "min is not $PAGE_SIZE: $min"
13675                         (( $max == $PAGE_SIZE )) ||
13676                                 error "max is not $PAGE_SIZE: $max"
13677                         (( $sum == $PAGE_SIZE * 2 )) ||
13678                                 error "sum is not $((PAGE_SIZE * 2)): $sum"
13679                         ;;
13680                 read|write)
13681                         [[ "$unit" =~ "usec" ]] ||
13682                                 error "unit is not 'usec': $unit"
13683                         ;;
13684                 *)      ;;
13685                 esac
13686         done < $TMP/$tfile.tmp
13687
13688         #check that we actually got some stats
13689         [ "$read_bytes" ] || error "Missing read_bytes stats"
13690         [ "$write_bytes" ] || error "Missing write_bytes stats"
13691         [ "$read_bytes" != 0 ] || error "no read done"
13692         [ "$write_bytes" != 0 ] || error "no write done"
13693 }
13694 run_test 127b "verify the llite client stats are sane"
13695
13696 test_127c() { # LU-12394
13697         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >= 2 OSTs"
13698         local size
13699         local bsize
13700         local reads
13701         local writes
13702         local count
13703
13704         $LCTL set_param llite.*.extents_stats=1
13705         stack_trap "$LCTL set_param llite.*.extents_stats=0" EXIT
13706
13707         # Use two stripes so there is enough space in default config
13708         $LFS setstripe -c 2 $DIR/$tfile
13709
13710         # Extent stats start at 0-4K and go in power of two buckets
13711         # LL_HIST_START = 12 --> 2^12 = 4K
13712         # We do 3K*2^i, so 3K, 6K, 12K, 24K... hitting each bucket.
13713         # We do not do buckets larger than 64 MiB to avoid ENOSPC issues on
13714         # small configs
13715         for size in 3K 6K 12K 24K 48K 96K 192K 384K 768K 1536K 3M 6M 12M 24M 48M;
13716                 do
13717                 # Write and read, 2x each, second time at a non-zero offset
13718                 dd if=/dev/zero of=$DIR/$tfile bs=$size count=1
13719                 dd if=/dev/zero of=$DIR/$tfile bs=$size count=1 seek=10
13720                 dd if=$DIR/$tfile of=/dev/null bs=$size count=1
13721                 dd if=$DIR/$tfile of=/dev/null bs=$size count=1 seek=10
13722                 rm -f $DIR/$tfile
13723         done
13724
13725         $LCTL get_param llite.*.extents_stats
13726
13727         count=2
13728         for bsize in 4K 8K 16K 32K 64K 128K 256K 512K 1M 2M 4M 8M 16M 32M 64M;
13729                 do
13730                 local bucket=$($LCTL get_param -n llite.*.extents_stats |
13731                                 grep -m 1 $bsize)
13732                 reads=$(echo $bucket | awk '{print $5}')
13733                 writes=$(echo $bucket | awk '{print $9}')
13734                 [ "$reads" -eq $count ] ||
13735                         error "$reads reads in < $bsize bucket, expect $count"
13736                 [ "$writes" -eq $count ] ||
13737                         error "$writes writes in < $bsize bucket, expect $count"
13738         done
13739
13740         # Test mmap write and read
13741         $LCTL set_param llite.*.extents_stats=c
13742         size=512
13743         dd if=/dev/zero of=$DIR/$tfile bs=${size}K count=1
13744         $MULTIOP $DIR/$tfile OSMRUc || error "$MULTIOP $DIR/$tfile failed"
13745         $MULTIOP $DIR/$tfile OSMWUc || error "$MULTIOP $DIR/$tfile failed"
13746
13747         $LCTL get_param llite.*.extents_stats
13748
13749         count=$(((size*1024) / PAGE_SIZE))
13750
13751         bsize=$((2 * PAGE_SIZE / 1024))K
13752
13753         bucket=$($LCTL get_param -n llite.*.extents_stats |
13754                         grep -m 1 $bsize)
13755         reads=$(echo $bucket | awk '{print $5}')
13756         writes=$(echo $bucket | awk '{print $9}')
13757         # mmap writes fault in the page first, creating an additonal read
13758         [ "$reads" -eq $((2 * count)) ] ||
13759                 error "$reads reads in < $bsize bucket, expect $count"
13760         [ "$writes" -eq $count ] ||
13761                 error "$writes writes in < $bsize bucket, expect $count"
13762 }
13763 run_test 127c "test llite extent stats with regular & mmap i/o"
13764
13765 test_128() { # bug 15212
13766         touch $DIR/$tfile
13767         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
13768                 find $DIR/$tfile
13769                 find $DIR/$tfile
13770         EOF
13771
13772         result=$(grep error $TMP/$tfile.log)
13773         rm -f $DIR/$tfile $TMP/$tfile.log
13774         [ -z "$result" ] ||
13775                 error "consecutive find's under interactive lfs failed"
13776 }
13777 run_test 128 "interactive lfs for 2 consecutive find's"
13778
13779 set_dir_limits () {
13780         local mntdev
13781         local canondev
13782         local node
13783
13784         local ldproc=/proc/fs/ldiskfs
13785         local facets=$(get_facets MDS)
13786
13787         for facet in ${facets//,/ }; do
13788                 canondev=$(ldiskfs_canon \
13789                            *.$(convert_facet2label $facet).mntdev $facet)
13790                 do_facet $facet "test -e $ldproc/$canondev/max_dir_size" ||
13791                         ldproc=/sys/fs/ldiskfs
13792                 do_facet $facet "echo $1 >$ldproc/$canondev/max_dir_size"
13793                 do_facet $facet "echo $2 >$ldproc/$canondev/warning_dir_size"
13794         done
13795 }
13796
13797 check_mds_dmesg() {
13798         local facets=$(get_facets MDS)
13799         for facet in ${facets//,/ }; do
13800                 do_facet $facet "dmesg | tail -3 | grep $1" && return 0
13801         done
13802         return 1
13803 }
13804
13805 test_129() {
13806         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13807         [[ $MDS1_VERSION -ge $(version_code 2.5.56) ]] ||
13808                 skip "Need MDS version with at least 2.5.56"
13809         if [ "$mds1_FSTYPE" != ldiskfs ]; then
13810                 skip_env "ldiskfs only test"
13811         fi
13812         remote_mds_nodsh && skip "remote MDS with nodsh"
13813
13814         local ENOSPC=28
13815         local has_warning=false
13816
13817         rm -rf $DIR/$tdir
13818         mkdir -p $DIR/$tdir
13819
13820         # block size of mds1
13821         local maxsize=$(($($LCTL get_param -n mdc.*MDT0000*.blocksize) * 8))
13822         set_dir_limits $maxsize $((maxsize * 6 / 8))
13823         stack_trap "set_dir_limits 0 0"
13824         stack_trap "unlinkmany $DIR/$tdir/file_base_ 2000 || true"
13825         local dirsize=$(stat -c%s "$DIR/$tdir")
13826         local nfiles=0
13827         while (( $dirsize <= $maxsize )); do
13828                 $MCREATE $DIR/$tdir/file_base_$nfiles
13829                 rc=$?
13830                 # check two errors:
13831                 # ENOSPC for ext4 max_dir_size, which has been used since
13832                 # kernel v3.6-rc1-8-gdf981d03ee, lustre v2_4_50_0-79-gaed82035c0
13833                 if (( rc == ENOSPC )); then
13834                         set_dir_limits 0 0
13835                         echo "rc=$rc returned as expected after $nfiles files"
13836
13837                         createmany -o $DIR/$tdir/file_extra_$nfiles. 5 ||
13838                                 error "create failed w/o dir size limit"
13839
13840                         # messages may be rate limited if test is run repeatedly
13841                         check_mds_dmesg '"is approaching max"' ||
13842                                 echo "warning message should be output"
13843                         check_mds_dmesg '"has reached max"' ||
13844                                 echo "reached message should be output"
13845
13846                         dirsize=$(stat -c%s "$DIR/$tdir")
13847
13848                         [[ $dirsize -ge $maxsize ]] && return 0
13849                         error "dirsize $dirsize < $maxsize after $nfiles files"
13850                 elif (( rc != 0 )); then
13851                         break
13852                 fi
13853                 nfiles=$((nfiles + 1))
13854                 dirsize=$(stat -c%s "$DIR/$tdir")
13855         done
13856
13857         error "rc=$rc, size=$dirsize/$maxsize, mdt=$MDSCOUNT, nfiles=$nfiles"
13858 }
13859 run_test 129 "test directory size limit ========================"
13860
13861 OLDIFS="$IFS"
13862 cleanup_130() {
13863         trap 0
13864         IFS="$OLDIFS"
13865 }
13866
13867 test_130a() {
13868         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
13869         [[ -z "$filefrag_op" ]] || skip_env "filefrag does not support FIEMAP"
13870
13871         trap cleanup_130 EXIT RETURN
13872
13873         local fm_file=$DIR/$tfile
13874         $LFS setstripe -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
13875         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
13876                 error "dd failed for $fm_file"
13877
13878         # LU-1795: test filefrag/FIEMAP once, even if unsupported on ZFS
13879         filefrag -ves $fm_file
13880         local rc=$?
13881         [[ "$ost1_FSTYPE" != "zfs" ]] ||
13882                 skip "LU-1941: FIEMAP unimplemented on ZFS"
13883         (( $rc == 0 )) || error "filefrag $fm_file failed"
13884
13885         filefrag_op=$(filefrag -ve -k $fm_file |
13886                       sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
13887         local lun=$($LFS getstripe -i $fm_file)
13888
13889         local start_blk=$(echo $filefrag_op | cut -d: -f2 | cut -d. -f1)
13890         IFS=$'\n'
13891         local tot_len=0
13892         for line in $filefrag_op; do
13893                 local frag_lun=$(echo $line | cut -d: -f5)
13894                 local ext_len=$(echo $line | cut -d: -f4)
13895
13896                 if (( $frag_lun != $lun )); then
13897                         error "FIEMAP on 1-stripe file($fm_file) failed"
13898                         return
13899                 fi
13900                 (( tot_len += ext_len ))
13901         done
13902
13903         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
13904                 error "FIEMAP on 1-stripe file($fm_file) failed"
13905                 return
13906         fi
13907
13908         echo "FIEMAP on single striped file succeeded"
13909 }
13910 run_test 130a "FIEMAP (1-stripe file)"
13911
13912 test_130b() {
13913         (( $OSTCOUNT >= 2 )) || skip "needs >= 2 OSTs"
13914
13915         local filefrag_op=$(filefrag -l 2>&1 | grep "invalid option")
13916         [[ -z "$filefrag_op" ]] || skip_env "filefrag missing logical ordering"
13917         [[ "$ost1_FSTYPE" != "zfs" ]] ||
13918                 skip "LU-1941: FIEMAP unimplemented on ZFS"
13919
13920         trap cleanup_130 EXIT RETURN
13921
13922         local fm_file=$DIR/$tfile
13923         $LFS setstripe -S 65536 -c $OSTCOUNT $fm_file ||
13924                 error "setstripe on $fm_file"
13925
13926         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
13927                 error "dd failed on $fm_file"
13928
13929         filefrag -ves $fm_file || error "filefrag $fm_file failed"
13930         filefrag_op=$(filefrag -ve -k $fm_file |
13931                       sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
13932
13933         local last_lun=$(echo $filefrag_op | cut -d: -f5 |
13934                          sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
13935
13936         IFS=$'\n'
13937         local tot_len=0
13938         local num_luns=1
13939
13940         for line in $filefrag_op; do
13941                 local frag_lun=$(echo $line | cut -d: -f5 |
13942                                  sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
13943                 local ext_len=$(echo $line | cut -d: -f4)
13944                 if (( $frag_lun != $last_lun )); then
13945                         if (( tot_len != 1024 )); then
13946                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
13947                                 return
13948                         else
13949                                 (( num_luns += 1 ))
13950                                 tot_len=0
13951                         fi
13952                 fi
13953                 (( tot_len += ext_len ))
13954                 last_lun=$frag_lun
13955         done
13956         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
13957                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
13958                 return
13959         fi
13960
13961         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
13962 }
13963 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
13964
13965 test_130c() {
13966         (( $OSTCOUNT >= 2 )) || skip "needs >= 2 OSTs"
13967
13968         local filefrag_op=$(filefrag -l 2>&1 | grep "invalid option")
13969         [[ -z "$filefrag_op" ]] || skip_env "filefrag missing logical ordering"
13970         [[ "$ost1_FSTYPE" != "zfs" ]] ||
13971                 skip "LU-1941: FIEMAP unimplemented on ZFS"
13972
13973         trap cleanup_130 EXIT RETURN
13974
13975         local fm_file=$DIR/$tfile
13976         $LFS setstripe -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
13977
13978         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
13979                 error "dd failed on $fm_file"
13980
13981         filefrag -ves $fm_file || error "filefrag $fm_file failed"
13982         filefrag_op=$(filefrag -ve -k $fm_file |
13983                       sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
13984
13985         local last_lun=$(echo $filefrag_op | cut -d: -f5 |
13986                          sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
13987
13988         IFS=$'\n'
13989         local tot_len=0
13990         local num_luns=1
13991         for line in $filefrag_op; do
13992                 local frag_lun=$(echo $line | cut -d: -f5 |
13993                                  sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
13994                 local ext_len=$(echo $line | cut -d: -f4)
13995                 if (( $frag_lun != $last_lun )); then
13996                         local logical=$(echo $line | cut -d: -f2 | cut -d. -f1)
13997                         if (( logical != 512 )); then
13998                                 error "FIEMAP on $fm_file failed; returned logical start for lun $logical instead of 512"
13999                                 return
14000                         fi
14001                         if (( tot_len != 512 )); then
14002                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
14003                                 return
14004                         else
14005                                 (( num_luns += 1 ))
14006                                 tot_len=0
14007                         fi
14008                 fi
14009                 (( tot_len += ext_len ))
14010                 last_lun=$frag_lun
14011         done
14012         if (( num_luns != 2 || tot_len != 512 )); then
14013                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
14014                 return
14015         fi
14016
14017         echo "FIEMAP on 2-stripe file with hole succeeded"
14018 }
14019 run_test 130c "FIEMAP (2-stripe file with hole)"
14020
14021 test_130d() {
14022         (( $OSTCOUNT >= 3 )) || skip "needs >= 3 OSTs"
14023
14024         filefrag_op=$(filefrag -l 2>&1 | grep "invalid option")
14025         [[ -z "$filefrag_op" ]] || skip_env "filefrag missing logical ordering"
14026         [[ "$ost1_FSTYPE" != "zfs" ]] ||
14027                 skip "LU-1941: FIEMAP unimplemented on ZFS"
14028
14029         trap cleanup_130 EXIT RETURN
14030
14031         local fm_file=$DIR/$tfile
14032         $LFS setstripe -S 65536 -c $OSTCOUNT $fm_file ||
14033                         error "setstripe on $fm_file"
14034
14035         local actual_stripe_count=$($LFS getstripe -c $fm_file)
14036         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripe_count ||
14037                 error "dd failed on $fm_file"
14038
14039         filefrag -ves $fm_file || error "filefrag $fm_file failed"
14040         filefrag_op=$(filefrag -ve -k $fm_file |
14041                       sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
14042
14043         local last_lun=$(echo $filefrag_op | cut -d: -f5 |
14044                          sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
14045
14046         IFS=$'\n'
14047         local tot_len=0
14048         local num_luns=1
14049         for line in $filefrag_op; do
14050                 local frag_lun=$(echo $line | cut -d: -f5 |
14051                                  sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
14052                 local ext_len=$(echo $line | cut -d: -f4)
14053                 if (( $frag_lun != $last_lun )); then
14054                         if (( tot_len != 1024 )); then
14055                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
14056                                 return
14057                         else
14058                                 (( num_luns += 1 ))
14059                                 local tot_len=0
14060                         fi
14061                 fi
14062                 (( tot_len += ext_len ))
14063                 last_lun=$frag_lun
14064         done
14065         if (( num_luns != actual_stripe_count || tot_len != 1024 )); then
14066                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
14067                 return
14068         fi
14069
14070         echo "FIEMAP on N-stripe file succeeded"
14071 }
14072 run_test 130d "FIEMAP (N-stripe file)"
14073
14074 test_130e() {
14075         (( $OSTCOUNT >= 2 )) || skip "needs >= 2 OSTs"
14076
14077         local filefrag_op=$(filefrag -l 2>&1 | grep "invalid option")
14078         [[ -z "$filefrag_op" ]] || skip_env "filefrag missing logical ordering"
14079         [[ "$ost1_FSTYPE" != "zfs" ]] ||
14080                 skip "LU-1941: FIEMAP unimplemented on ZFS"
14081
14082         trap cleanup_130 EXIT RETURN
14083
14084         local fm_file=$DIR/$tfile
14085         $LFS setstripe -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
14086
14087         local num_blks=512
14088         local expected_len=$(( (num_blks / 2) * 64 ))
14089         for ((i = 0; i < $num_blks; i++)); do
14090                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) \
14091                         conv=notrunc > /dev/null 2>&1
14092         done
14093
14094         filefrag -ves $fm_file || error "filefrag $fm_file failed"
14095         filefrag_op=$(filefrag -ve -k $fm_file |
14096                       sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
14097
14098         local last_lun=$(echo $filefrag_op | cut -d: -f5)
14099
14100         IFS=$'\n'
14101         local tot_len=0
14102         local num_luns=1
14103         for line in $filefrag_op; do
14104                 local frag_lun=$(echo $line | cut -d: -f5)
14105                 local ext_len=$(echo $line | cut -d: -f4)
14106                 if (( $frag_lun != $last_lun )); then
14107                         if (( tot_len != $expected_len )); then
14108                                 error "OST$last_lun $tot_len != $expected_len"
14109                         else
14110                                 (( num_luns += 1 ))
14111                                 tot_len=0
14112                         fi
14113                 fi
14114                 (( tot_len += ext_len ))
14115                 last_lun=$frag_lun
14116         done
14117         if (( num_luns != 2 || tot_len != $expected_len )); then
14118                 error "OST$last_lun $num_luns != 2, $tot_len != $expected_len"
14119         fi
14120
14121         echo "FIEMAP with continuation calls succeeded"
14122 }
14123 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
14124
14125 test_130f() {
14126         local filefrag_op=$(filefrag -l 2>&1 | grep "invalid option")
14127         [[ -z "$filefrag_op" ]] || skip_env "filefrag missing logical ordering"
14128         [[ "$ost1_FSTYPE" != "zfs" ]] ||
14129                 skip "LU-1941: FIEMAP unimplemented on ZFS"
14130
14131         local fm_file=$DIR/$tfile
14132         $MULTIOP $fm_file oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T33554432c ||
14133                 error "multiop create with lov_delay_create on $fm_file"
14134
14135         filefrag -ves $fm_file || error "filefrag $fm_file failed"
14136         filefrag_extents=$(filefrag -vek $fm_file |
14137                            awk '/extents? found/ { print $2 }')
14138         if (( $filefrag_extents != 0 )); then
14139                 error "$fm_file: filefrag_extents=$filefrag_extents != 0"
14140         fi
14141
14142         rm -f $fm_file
14143 }
14144 run_test 130f "FIEMAP (unstriped file)"
14145
14146 test_130g() {
14147         (( $MDS1_VERSION >= $(version_code 2.12.53) )) ||
14148                 skip "Need MDS version with at least 2.12.53 for overstriping"
14149         local filefrag_op=$(filefrag -l 2>&1 | grep "invalid option")
14150         [[ -z "$filefrag_op" ]] || skip_env "filefrag missing logical ordering"
14151         [[ "$ost1_FSTYPE" != "zfs" ]] ||
14152                 skip "LU-1941: FIEMAP unimplemented on ZFS"
14153
14154         local file=$DIR/$tfile
14155         local nr=$((OSTCOUNT * 100))
14156
14157         $LFS setstripe -C $nr $file || error "failed to setstripe -C $nr $file"
14158
14159         stack_trap "rm -f $file"
14160         dd if=/dev/zero of=$file count=$nr bs=1M
14161         sync
14162         nr=$($LFS getstripe -c $file)
14163
14164         local extents=$(filefrag -v $file |
14165                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}' | wc -l)
14166
14167         echo "filefrag list $extents extents in file with stripecount $nr"
14168         if (( extents < nr )); then
14169                 $LFS getstripe $file
14170                 filefrag -v $file
14171                 error "filefrag printed $extents < $nr extents"
14172         fi
14173 }
14174 run_test 130g "FIEMAP (overstripe file)"
14175
14176 # Test for writev/readv
14177 test_131a() {
14178         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 ||
14179                 error "writev test failed"
14180         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 ||
14181                 error "readv failed"
14182         rm -f $DIR/$tfile
14183 }
14184 run_test 131a "test iov's crossing stripe boundary for writev/readv"
14185
14186 test_131b() {
14187         local fsize=$((524288 + 1048576 + 1572864))
14188         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 &&
14189                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
14190                         error "append writev test failed"
14191
14192         ((fsize += 1572864 + 1048576))
14193         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 &&
14194                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
14195                         error "append writev test failed"
14196         rm -f $DIR/$tfile
14197 }
14198 run_test 131b "test append writev"
14199
14200 test_131c() {
14201         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
14202         error "NOT PASS"
14203 }
14204 run_test 131c "test read/write on file w/o objects"
14205
14206 test_131d() {
14207         rwv -f $DIR/$tfile -w -n 1 1572864
14208         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
14209         if [ "$NOB" != 1572864 ]; then
14210                 error "Short read filed: read $NOB bytes instead of 1572864"
14211         fi
14212         rm -f $DIR/$tfile
14213 }
14214 run_test 131d "test short read"
14215
14216 test_131e() {
14217         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
14218         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
14219         error "read hitting hole failed"
14220         rm -f $DIR/$tfile
14221 }
14222 run_test 131e "test read hitting hole"
14223
14224 check_stats() {
14225         local facet=$1
14226         local op=$2
14227         local want=${3:-0}
14228         local res
14229
14230         case $facet in
14231         mds*) res=$(do_facet $facet \
14232                    $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$op")
14233                  ;;
14234         ost*) res=$(do_facet $facet \
14235                    $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$op")
14236                  ;;
14237         *) error "Wrong facet '$facet'" ;;
14238         esac
14239         [ "$res" ] || error "The counter for $op on $facet was not incremented"
14240         # if the argument $3 is zero, it means any stat increment is ok.
14241         if [[ $want -gt 0 ]]; then
14242                 local count=$(echo $res | awk '{ print $2 }')
14243                 [[ $count -ne $want ]] &&
14244                         error "The $op counter on $facet is $count, not $want"
14245         fi
14246 }
14247
14248 test_133a() {
14249         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14250         remote_ost_nodsh && skip "remote OST with nodsh"
14251         remote_mds_nodsh && skip "remote MDS with nodsh"
14252         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
14253                 skip_env "MDS doesn't support rename stats"
14254
14255         local testdir=$DIR/${tdir}/stats_testdir
14256
14257         mkdir -p $DIR/${tdir}
14258
14259         # clear stats.
14260         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
14261         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
14262
14263         # verify mdt stats first.
14264         mkdir ${testdir} || error "mkdir failed"
14265         check_stats $SINGLEMDS "mkdir" 1
14266         touch ${testdir}/${tfile} || error "touch failed"
14267         check_stats $SINGLEMDS "open" 1
14268         check_stats $SINGLEMDS "close" 1
14269         [ $MDS1_VERSION -ge $(version_code 2.8.54) ] && {
14270                 mknod ${testdir}/${tfile}-pipe p || error "mknod failed"
14271                 check_stats $SINGLEMDS "mknod" 2
14272         }
14273         rm -f ${testdir}/${tfile}-pipe || error "pipe remove failed"
14274         check_stats $SINGLEMDS "unlink" 1
14275         rm -f ${testdir}/${tfile} || error "file remove failed"
14276         check_stats $SINGLEMDS "unlink" 2
14277
14278         # remove working dir and check mdt stats again.
14279         rmdir ${testdir} || error "rmdir failed"
14280         check_stats $SINGLEMDS "rmdir" 1
14281
14282         local testdir1=$DIR/${tdir}/stats_testdir1
14283         mkdir -p ${testdir}
14284         mkdir -p ${testdir1}
14285         touch ${testdir1}/test1
14286         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
14287         check_stats $SINGLEMDS "crossdir_rename" 1
14288
14289         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
14290         check_stats $SINGLEMDS "samedir_rename" 1
14291
14292         rm -rf $DIR/${tdir}
14293 }
14294 run_test 133a "Verifying MDT stats ========================================"
14295
14296 test_133b() {
14297         local res
14298
14299         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14300         remote_ost_nodsh && skip "remote OST with nodsh"
14301         remote_mds_nodsh && skip "remote MDS with nodsh"
14302
14303         local testdir=$DIR/${tdir}/stats_testdir
14304
14305         mkdir -p ${testdir} || error "mkdir failed"
14306         touch ${testdir}/${tfile} || error "touch failed"
14307         cancel_lru_locks mdc
14308
14309         # clear stats.
14310         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
14311         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
14312
14313         # extra mdt stats verification.
14314         chmod 444 ${testdir}/${tfile} || error "chmod failed"
14315         check_stats $SINGLEMDS "setattr" 1
14316         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
14317         if [ $MDS1_VERSION -ne $(version_code 2.2.0) ]
14318         then            # LU-1740
14319                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
14320                 check_stats $SINGLEMDS "getattr" 1
14321         fi
14322         rm -rf $DIR/${tdir}
14323
14324         # when DNE is enabled, MDT uses STATFS RPC to ping other targets
14325         # so the check below is not reliable
14326         [ $MDSCOUNT -eq 1 ] || return 0
14327
14328         # Sleep to avoid a cached response.
14329         #define OBD_STATFS_CACHE_SECONDS 1
14330         sleep 2
14331         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
14332         do_facet ost1 $LCTL set_param obdfilter.*.exports.*.stats=clear
14333         $LFS df || error "lfs failed"
14334         check_stats $SINGLEMDS "statfs" 1
14335
14336         # check aggregated statfs (LU-10018)
14337         [ $MDS1_VERSION -lt $(version_code 2.11.54) ] &&
14338                 return 0
14339         [ $CLIENT_VERSION -lt $(version_code 2.11.54) ] &&
14340                 return 0
14341         sleep 2
14342         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
14343         do_facet ost1 $LCTL set_param obdfilter.*.exports.*.stats=clear
14344         df $DIR
14345         check_stats $SINGLEMDS "statfs" 1
14346
14347         # We want to check that the client didn't send OST_STATFS to
14348         # ost1 but the MDT also uses OST_STATFS for precreate. So some
14349         # extra care is needed here.
14350         if remote_mds; then
14351                 local nid=$($LCTL list_nids | head -1 | sed  "s/\./\\\./g")
14352                 local param="obdfilter.$FSNAME-OST0000.exports.'$nid'.stats"
14353
14354                 res=$(do_facet ost1 $LCTL get_param $param | grep statfs)
14355                 [ "$res" ] && error "OST got STATFS"
14356         fi
14357
14358         return 0
14359 }
14360 run_test 133b "Verifying extra MDT stats =================================="
14361
14362 test_133c() {
14363         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14364         remote_ost_nodsh && skip "remote OST with nodsh"
14365         remote_mds_nodsh && skip "remote MDS with nodsh"
14366
14367         local testdir=$DIR/$tdir/stats_testdir
14368
14369         test_mkdir -p $testdir
14370
14371         # verify obdfilter stats.
14372         $LFS setstripe -c 1 -i 0 $testdir/$tfile
14373         sync
14374         cancel_lru_locks osc
14375         wait_delete_completed
14376
14377         # clear stats.
14378         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
14379         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
14380
14381         dd if=/dev/zero of=$testdir/$tfile conv=notrunc bs=512k count=1 ||
14382                 error "dd failed"
14383         sync
14384         cancel_lru_locks osc
14385         check_stats ost1 "write" 1
14386
14387         dd if=$testdir/$tfile of=/dev/null bs=1k count=1 || error "dd failed"
14388         check_stats ost1 "read" 1
14389
14390         > $testdir/$tfile || error "truncate failed"
14391         check_stats ost1 "punch" 1
14392
14393         rm -f $testdir/$tfile || error "file remove failed"
14394         wait_delete_completed
14395         check_stats ost1 "destroy" 1
14396
14397         rm -rf $DIR/$tdir
14398 }
14399 run_test 133c "Verifying OST stats ========================================"
14400
14401 order_2() {
14402         local value=$1
14403         local orig=$value
14404         local order=1
14405
14406         while [ $value -ge 2 ]; do
14407                 order=$((order*2))
14408                 value=$((value/2))
14409         done
14410
14411         if [ $orig -gt $order ]; then
14412                 order=$((order*2))
14413         fi
14414         echo $order
14415 }
14416
14417 size_in_KMGT() {
14418     local value=$1
14419     local size=('K' 'M' 'G' 'T');
14420     local i=0
14421     local size_string=$value
14422
14423     while [ $value -ge 1024 ]; do
14424         if [ $i -gt 3 ]; then
14425             #T is the biggest unit we get here, if that is bigger,
14426             #just return XXXT
14427             size_string=${value}T
14428             break
14429         fi
14430         value=$((value >> 10))
14431         if [ $value -lt 1024 ]; then
14432             size_string=${value}${size[$i]}
14433             break
14434         fi
14435         i=$((i + 1))
14436     done
14437
14438     echo $size_string
14439 }
14440
14441 get_rename_size() {
14442         local size=$1
14443         local context=${2:-.}
14444         local sample=$(do_facet $SINGLEMDS $LCTL \
14445                 get_param mdt.$FSNAME-MDT0000.rename_stats |
14446                 grep -A1 $context |
14447                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
14448         echo $sample
14449 }
14450
14451 test_133d() {
14452         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14453         remote_ost_nodsh && skip "remote OST with nodsh"
14454         remote_mds_nodsh && skip "remote MDS with nodsh"
14455         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
14456                 skip_env "MDS doesn't support rename stats"
14457
14458         local testdir1=$DIR/${tdir}/stats_testdir1
14459         local testdir2=$DIR/${tdir}/stats_testdir2
14460         mkdir -p $DIR/${tdir}
14461
14462         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
14463
14464         lfs mkdir -i 0 -c 1 ${testdir1} || error "mkdir failed"
14465         lfs mkdir -i 0 -c 1 ${testdir2} || error "mkdir failed"
14466
14467         createmany -o $testdir1/test 512 || error "createmany failed"
14468
14469         # check samedir rename size
14470         mv ${testdir1}/test0 ${testdir1}/test_0
14471
14472         local testdir1_size=$(ls -l $DIR/${tdir} |
14473                 awk '/stats_testdir1/ {print $5}')
14474         local testdir2_size=$(ls -l $DIR/${tdir} |
14475                 awk '/stats_testdir2/ {print $5}')
14476
14477         testdir1_size=$(order_2 $testdir1_size)
14478         testdir2_size=$(order_2 $testdir2_size)
14479
14480         testdir1_size=$(size_in_KMGT $testdir1_size)
14481         testdir2_size=$(size_in_KMGT $testdir2_size)
14482
14483         echo "source rename dir size: ${testdir1_size}"
14484         echo "target rename dir size: ${testdir2_size}"
14485
14486         local cmd="do_facet $SINGLEMDS $LCTL "
14487         cmd+="get_param mdt.$FSNAME-MDT0000.rename_stats"
14488
14489         eval $cmd || error "$cmd failed"
14490         local samedir=$($cmd | grep 'same_dir')
14491         local same_sample=$(get_rename_size $testdir1_size)
14492         [ -z "$samedir" ] && error "samedir_rename_size count error"
14493         [[ $same_sample -eq 1 ]] ||
14494                 error "samedir_rename_size error $same_sample"
14495         echo "Check same dir rename stats success"
14496
14497         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
14498
14499         # check crossdir rename size
14500         mv ${testdir1}/test_0 ${testdir2}/test_0
14501
14502         testdir1_size=$(ls -l $DIR/${tdir} |
14503                 awk '/stats_testdir1/ {print $5}')
14504         testdir2_size=$(ls -l $DIR/${tdir} |
14505                 awk '/stats_testdir2/ {print $5}')
14506
14507         testdir1_size=$(order_2 $testdir1_size)
14508         testdir2_size=$(order_2 $testdir2_size)
14509
14510         testdir1_size=$(size_in_KMGT $testdir1_size)
14511         testdir2_size=$(size_in_KMGT $testdir2_size)
14512
14513         echo "source rename dir size: ${testdir1_size}"
14514         echo "target rename dir size: ${testdir2_size}"
14515
14516         eval $cmd || error "$cmd failed"
14517         local crossdir=$($cmd | grep 'crossdir')
14518         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
14519         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
14520         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
14521         [[ $src_sample -eq 1 ]] ||
14522                 error "crossdir_rename_size error $src_sample"
14523         [[ $tgt_sample -eq 1 ]] ||
14524                 error "crossdir_rename_size error $tgt_sample"
14525         echo "Check cross dir rename stats success"
14526         rm -rf $DIR/${tdir}
14527 }
14528 run_test 133d "Verifying rename_stats ========================================"
14529
14530 test_133e() {
14531         remote_mds_nodsh && skip "remote MDS with nodsh"
14532         remote_ost_nodsh && skip "remote OST with nodsh"
14533         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14534
14535         local testdir=$DIR/${tdir}/stats_testdir
14536         local ctr f0 f1 bs=32768 count=42 sum
14537
14538         mkdir -p ${testdir} || error "mkdir failed"
14539
14540         $LFS setstripe -c 1 -i 0 ${testdir}/${tfile}
14541
14542         for ctr in {write,read}_bytes; do
14543                 sync
14544                 cancel_lru_locks osc
14545
14546                 do_facet ost1 $LCTL set_param -n \
14547                         "obdfilter.*.exports.clear=clear"
14548
14549                 if [ $ctr = write_bytes ]; then
14550                         f0=/dev/zero
14551                         f1=${testdir}/${tfile}
14552                 else
14553                         f0=${testdir}/${tfile}
14554                         f1=/dev/null
14555                 fi
14556
14557                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
14558                         error "dd failed"
14559                 sync
14560                 cancel_lru_locks osc
14561
14562                 sum=$(do_facet ost1 $LCTL get_param \
14563                         "obdfilter.*.exports.*.stats" |
14564                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
14565                                 $1 == ctr { sum += $7 }
14566                                 END { printf("%0.0f", sum) }')
14567
14568                 if ((sum != bs * count)); then
14569                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
14570                 fi
14571         done
14572
14573         rm -rf $DIR/${tdir}
14574 }
14575 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
14576
14577 test_133f() {
14578         [[ $(lustre_version_code $facet) -ge $(version_code 2.7.65) ]] ||
14579                 skip "too old lustre for get_param -R ($facet_ver)"
14580
14581         # verifying readability.
14582         $LCTL get_param -R '*' &> /dev/null
14583
14584         # Verifing writability with badarea_io.
14585         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
14586         local skipped_params='force_lbug|changelog_mask|daemon_file'
14587         $LCTL list_param -FR '*' | grep '=' | tr -d = |
14588                 egrep -v "$skipped_params" |
14589                 xargs -n 1 find $proc_dirs -name |
14590                 xargs -n 1 badarea_io ||
14591                 error "client badarea_io failed"
14592
14593         # remount the FS in case writes/reads /proc break the FS
14594         cleanup || error "failed to unmount"
14595         setup || error "failed to setup"
14596 }
14597 run_test 133f "Check reads/writes of client lustre proc files with bad area io"
14598
14599 test_133g() {
14600         remote_mds_nodsh && skip "remote MDS with nodsh"
14601         remote_ost_nodsh && skip "remote OST with nodsh"
14602
14603         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
14604         local skipped_params="'force_lbug|changelog_mask|daemon_file'"
14605         local facet
14606         for facet in mds1 ost1; do
14607                 local facet_ver=$(lustre_version_code $facet)
14608                 if [ $facet_ver -ge $(version_code 2.7.65) ]; then
14609                         do_facet $facet "$LCTL get_param -R '*'" &> /dev/null
14610                 else
14611                         log "$facet: too old lustre for get_param -R"
14612                 fi
14613                 if [ $facet_ver -ge $(version_code 2.5.54) ]; then
14614                         do_facet $facet "$LCTL list_param -FR '*' | grep '=' |
14615                                 tr -d = | egrep -v $skipped_params |
14616                                 xargs -n 1 find $proc_dirs -name |
14617                                 xargs -n 1 badarea_io" ||
14618                                         error "$facet badarea_io failed"
14619                 else
14620                         skip_noexit "$facet: too old lustre for get_param -R"
14621                 fi
14622         done
14623
14624         # remount the FS in case writes/reads /proc break the FS
14625         cleanup || error "failed to unmount"
14626         setup || error "failed to setup"
14627 }
14628 run_test 133g "Check reads/writes of server lustre proc files with bad area io"
14629
14630 test_133h() {
14631         remote_mds_nodsh && skip "remote MDS with nodsh"
14632         remote_ost_nodsh && skip "remote OST with nodsh"
14633         [[ $MDS1_VERSION -lt $(version_code 2.9.54) ]] &&
14634                 skip "Need MDS version at least 2.9.54"
14635
14636         local facet
14637         for facet in client mds1 ost1; do
14638                 # Get the list of files that are missing the terminating newline
14639                 local plist=$(do_facet $facet
14640                         $LCTL list_param -FR '*' | grep '=' | tr -d =)
14641                 local ent
14642                 for ent in $plist; do
14643                         local missing=$(do_facet $facet $LCTL get_param $ent \|\
14644                                 awk -v FS='\v' -v RS='\v\v' \
14645                                 "'END { if(NR>0 && \\\$NF !~ /.*\\\n\$/) \
14646                                         print FILENAME}'" 2>/dev/null)
14647                         [ -z $missing ] || {
14648                                 do_facet $facet $LCTL get_param $ent | od -An -tx1
14649                                 error "file does not end with newline: $facet-$ent"
14650                         }
14651                 done
14652         done
14653 }
14654 run_test 133h "Proc files should end with newlines"
14655
14656 test_134a() {
14657         remote_mds_nodsh && skip "remote MDS with nodsh"
14658         [[ $MDS1_VERSION -lt $(version_code 2.7.54) ]] &&
14659                 skip "Need MDS version at least 2.7.54"
14660
14661         mkdir_on_mdt0 $DIR/$tdir || error "failed to create $DIR/$tdir"
14662         cancel_lru_locks mdc
14663
14664         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
14665         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
14666         [ $unused -eq 0 ] || error "$unused locks are not cleared"
14667
14668         local nr=1000
14669         createmany -o $DIR/$tdir/f $nr ||
14670                 error "failed to create $nr files in $DIR/$tdir"
14671         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
14672
14673         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
14674         do_facet mds1 $LCTL set_param fail_loc=0x327
14675         do_facet mds1 $LCTL set_param fail_val=500
14676         touch $DIR/$tdir/m
14677
14678         echo "sleep 10 seconds ..."
14679         sleep 10
14680         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
14681
14682         do_facet mds1 $LCTL set_param fail_loc=0
14683         do_facet mds1 $LCTL set_param fail_val=0
14684         [ $lck_cnt -lt $unused ] ||
14685                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
14686
14687         rm $DIR/$tdir/m
14688         unlinkmany $DIR/$tdir/f $nr
14689 }
14690 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
14691
14692 test_134b() {
14693         remote_mds_nodsh && skip "remote MDS with nodsh"
14694         [[ $MDS1_VERSION -lt $(version_code 2.7.54) ]] &&
14695                 skip "Need MDS version at least 2.7.54"
14696
14697         mkdir_on_mdt0 $DIR/$tdir || error "failed to create $DIR/$tdir"
14698         cancel_lru_locks mdc
14699
14700         local low_wm=$(do_facet mds1 $LCTL get_param -n \
14701                         ldlm.lock_reclaim_threshold_mb)
14702         # disable reclaim temporarily
14703         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
14704
14705         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
14706         do_facet mds1 $LCTL set_param fail_loc=0x328
14707         do_facet mds1 $LCTL set_param fail_val=500
14708
14709         $LCTL set_param debug=+trace
14710
14711         local nr=600
14712         createmany -o $DIR/$tdir/f $nr &
14713         local create_pid=$!
14714
14715         echo "Sleep $TIMEOUT seconds ..."
14716         sleep $TIMEOUT
14717         if ! ps -p $create_pid  > /dev/null 2>&1; then
14718                 do_facet mds1 $LCTL set_param fail_loc=0
14719                 do_facet mds1 $LCTL set_param fail_val=0
14720                 do_facet mds1 $LCTL set_param \
14721                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
14722                 error "createmany finished incorrectly!"
14723         fi
14724         do_facet mds1 $LCTL set_param fail_loc=0
14725         do_facet mds1 $LCTL set_param fail_val=0
14726         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
14727         wait $create_pid || return 1
14728
14729         unlinkmany $DIR/$tdir/f $nr
14730 }
14731 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
14732
14733 test_135() {
14734         remote_mds_nodsh && skip "remote MDS with nodsh"
14735         [[ $MDS1_VERSION -lt $(version_code 2.13.50) ]] &&
14736                 skip "Need MDS version at least 2.13.50"
14737         local fname
14738
14739         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
14740
14741 #define OBD_FAIL_PLAIN_RECORDS 0x1319
14742         #set only one record at plain llog
14743         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x1319 fail_val=1
14744
14745         #fill already existed plain llog each 64767
14746         #wrapping whole catalog
14747         createmany -o -u $DIR/$tdir/$tfile- $((64767 * 1))
14748
14749         createmany -o $DIR/$tdir/$tfile_ 64700
14750         for (( i = 0; i < 64700; i = i + 2 ))
14751         do
14752                 rm $DIR/$tdir/$tfile_$i &
14753                 rm $DIR/$tdir/$tfile_$((i + 1)) &
14754                 local pid=$!
14755                 wait $pid
14756         done
14757
14758         #waiting osp synchronization
14759         wait_delete_completed
14760 }
14761 run_test 135 "Race catalog processing"
14762
14763 test_136() {
14764         remote_mds_nodsh && skip "remote MDS with nodsh"
14765         [[ $MDS1_VERSION -lt $(version_code 2.13.50) ]] &&
14766                 skip "Need MDS version at least 2.13.50"
14767         local fname
14768
14769         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
14770         $LFS setstripe -c 1 -i 0 $DIR/$tdir || error "failed to set striping"
14771         #set only one record at plain llog
14772 #define OBD_FAIL_CATALOG_FULL_CHECK                0x131a
14773         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x131a fail_val=1
14774
14775         #fill already existed 2 plain llogs each 64767
14776         #wrapping whole catalog
14777         createmany -o -u $DIR/$tdir/$tfile- $((64767 * 1))
14778         createmany -o -u $DIR/$tdir/$tfile- $((64767 * 3 / 2))
14779         wait_delete_completed
14780
14781         createmany -o $DIR/$tdir/$tfile_ 10
14782         sleep 25
14783
14784         do_facet $SINGLEMDS $LCTL set_param fail_val=3
14785         for (( i = 0; i < 10; i = i + 3 ))
14786         do
14787                 rm $DIR/$tdir/$tfile_$i &
14788                 rm $DIR/$tdir/$tfile_$((i + 1)) &
14789                 local pid=$!
14790                 wait $pid
14791                 sleep 7
14792                 rm $DIR/$tdir/$tfile_$((i + 2)) &
14793         done
14794
14795         #waiting osp synchronization
14796         wait_delete_completed
14797 }
14798 run_test 136 "Race catalog processing 2"
14799
14800 test_140() { #bug-17379
14801         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14802
14803         test_mkdir $DIR/$tdir
14804         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
14805         cp $(which stat) . || error "Copying stat to $DIR/$tdir"
14806
14807         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
14808         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
14809         local i=0
14810         while i=$((i + 1)); do
14811                 test_mkdir $i
14812                 cd $i || error "Changing to $i"
14813                 ln -s ../stat stat || error "Creating stat symlink"
14814                 # Read the symlink until ELOOP present,
14815                 # not LBUGing the system is considered success,
14816                 # we didn't overrun the stack.
14817                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
14818                 if [ $ret -ne 0 ]; then
14819                         if [ $ret -eq 40 ]; then
14820                                 break  # -ELOOP
14821                         else
14822                                 error "Open stat symlink"
14823                                         return
14824                         fi
14825                 fi
14826         done
14827         i=$((i - 1))
14828         echo "The symlink depth = $i"
14829         [ $i -eq 5 ] || [ $i -eq 7 ] || [ $i -eq 8 ] || [ $i -eq 40 ] ||
14830                 error "Invalid symlink depth"
14831
14832         # Test recursive symlink
14833         ln -s symlink_self symlink_self
14834         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
14835         echo "open symlink_self returns $ret"
14836         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
14837 }
14838 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
14839
14840 test_150a() {
14841         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14842
14843         local TF="$TMP/$tfile"
14844
14845         stack_trap "rm -f $DIR/$tfile; wait_delete_completed"
14846         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
14847         cp $TF $DIR/$tfile
14848         cancel_lru_locks $OSC
14849         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
14850         remount_client $MOUNT
14851         df -P $MOUNT
14852         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
14853
14854         $TRUNCATE $TF 6000
14855         $TRUNCATE $DIR/$tfile 6000
14856         cancel_lru_locks $OSC
14857         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
14858
14859         echo "12345" >>$TF
14860         echo "12345" >>$DIR/$tfile
14861         cancel_lru_locks $OSC
14862         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
14863
14864         echo "12345" >>$TF
14865         echo "12345" >>$DIR/$tfile
14866         cancel_lru_locks $OSC
14867         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
14868 }
14869 run_test 150a "truncate/append tests"
14870
14871 test_150b() {
14872         check_set_fallocate_or_skip
14873
14874         touch $DIR/$tfile
14875         stack_trap "rm -f $DIR/$tfile; wait_delete_completed"
14876         check_fallocate $DIR/$tfile || skip_eopnotsupp "fallocate failed"
14877 }
14878 run_test 150b "Verify fallocate (prealloc) functionality"
14879
14880 test_150bb() {
14881         check_set_fallocate_or_skip
14882
14883         touch $DIR/$tfile
14884         stack_trap "rm -f $DIR/$tfile; wait_delete_completed"
14885         dd if=/dev/urandom of=$DIR/$tfile bs=1M count=20 || error "dd failed"
14886         > $DIR/$tfile
14887         fallocate -l $((1048576 * 20)) $DIR/$tfile || error "fallocate failed"
14888         # precomputed md5sum for 20MB of zeroes
14889         local expect="8f4e33f3dc3e414ff94e5fb6905cba8c"
14890         local sum=($(md5sum $DIR/$tfile))
14891
14892         [[ "${sum[0]}" == "$expect" ]] || error "fallocate unwritten is not zero"
14893
14894         check_set_fallocate 1
14895
14896         > $DIR/$tfile
14897         fallocate -l $((1048576 * 20)) $DIR/$tfile || error "fallocate failed"
14898         sum=($(md5sum $DIR/$tfile))
14899
14900         [[ "${sum[0]}" == "$expect" ]] || error "fallocate zero is not zero"
14901 }
14902 run_test 150bb "Verify fallocate modes both zero space"
14903
14904 test_150c() {
14905         check_set_fallocate_or_skip
14906         local striping="-c2"
14907
14908         stack_trap "rm -f $DIR/$tfile; wait_delete_completed"
14909         $LFS setstripe -c $OSTCOUNT -S1M $DIR/$tfile || error "setstripe failed"
14910         fallocate -l ${OSTCOUNT}m $DIR/$tfile || error "fallocate failed"
14911         local bytes=$(($(stat -c '%b * %B' $DIR/$tfile)))
14912         local want=$((OSTCOUNT * 1048576))
14913
14914         # Must allocate all requested space, not more than 5% extra
14915         (( $bytes >= $want && $bytes < $want * 105 / 100 )) ||
14916                 error "bytes $bytes is not $want"
14917
14918         rm -f $DIR/$tfile
14919
14920         echo "verify fallocate on PFL file"
14921
14922         [[ "x$DOM" == "xyes" ]] && striping="-L mdt"
14923
14924         $LFS setstripe -E1M $striping -E16M -c3 -Eeof -c 4 $DIR/$tfile ||
14925                 error "Create $DIR/$tfile failed"
14926         fallocate -l $((1048576 * 512)) $DIR/$tfile || error "fallocate failed"
14927         bytes=$(($(stat -c '%b * %B' $DIR/$tfile)))
14928         want=$((512 * 1048576))
14929
14930         # Must allocate all requested space, not more than 5% extra
14931         (( $bytes >= $want && $bytes < $want * 105 / 100 )) ||
14932                 error "bytes $bytes is not $want"
14933 }
14934 run_test 150c "Verify fallocate Size and Blocks"
14935
14936 test_150d() {
14937         check_set_fallocate_or_skip
14938         local striping="-c2"
14939
14940         [[ "x$DOM" == "xyes" ]] && striping="-L mdt"
14941
14942         stack_trap "rm -f $DIR/$tfile; wait_delete_completed"
14943         $LFS setstripe -E1M $striping -E eof -c $OSTCOUNT -S1M $DIR/$tdir ||
14944                 error "setstripe failed"
14945         fallocate -o 1G -l ${OSTCOUNT}m $DIR/$tdir || error "fallocate failed"
14946         local bytes=$(($(stat -c '%b * %B' $DIR/$tdir)))
14947         local want=$((OSTCOUNT * 1048576))
14948
14949         # Must allocate all requested space, not more than 5% extra
14950         (( $bytes >= $want && $bytes < $want * 105 / 100 )) ||
14951                 error "bytes $bytes is not $want"
14952 }
14953 run_test 150d "Verify fallocate Size and Blocks - Non zero start"
14954
14955 test_150e() {
14956         check_set_fallocate_or_skip
14957
14958         echo "df before:"
14959         $LFS df
14960         stack_trap "rm -f $DIR/$tfile; wait_delete_completed"
14961         $LFS setstripe -c${OSTCOUNT} $DIR/$tfile ||
14962                 error "$LFS setstripe -c${OSTCOUNT} $DIR/$tfile failed"
14963
14964         # Find OST with Minimum Size
14965         min_size_ost=$($LFS df | awk "/$FSNAME-OST/ { print \$4 }" |
14966                        sort -un | head -1)
14967
14968         # Get 100MB per OST of the available space to reduce run time
14969         # else 60% of the available space if we are running SLOW tests
14970         if [ $SLOW == "no" ]; then
14971                 local space=$((1024 * 100 * OSTCOUNT))
14972         else
14973                 local space=$(((min_size_ost * 60)/100 * OSTCOUNT))
14974         fi
14975
14976         fallocate -l${space}k $DIR/$tfile ||
14977                 error "fallocate ${space}k $DIR/$tfile failed"
14978         echo "'fallocate -l ${space}k $DIR/$tfile' succeeded"
14979
14980         # get size immediately after fallocate. This should be correctly
14981         # updated
14982         local size=$(stat -c '%s' $DIR/$tfile)
14983         local used=$(( $(stat -c '%b * %B' $DIR/$tfile) / 1024))
14984
14985         # Sleep for a while for statfs to get updated. And not pull from cache.
14986         sleep 2
14987
14988         echo "df after fallocate:"
14989         $LFS df
14990
14991         (( size / 1024 == space )) || error "size $size != requested $space"
14992         [ "$ost1_FSTYPE" != ldiskfs ] || (( used >= space )) ||
14993                 error "used $used < space $space"
14994
14995         rm $DIR/$tfile || error "rm failed"
14996         sync
14997         wait_delete_completed
14998
14999         echo "df after unlink:"
15000         $LFS df
15001 }
15002 run_test 150e "Verify 60% of available OST space consumed by fallocate"
15003
15004 test_150f() {
15005         local size
15006         local blocks
15007         local want_size_before=20480 # in bytes
15008         local want_blocks_before=40 # 512 sized blocks
15009         local want_blocks_after=24  # 512 sized blocks
15010         local length=$(((want_blocks_before - want_blocks_after) * 512))
15011
15012         [[ $OST1_VERSION -ge $(version_code 2.14.0) ]] ||
15013                 skip "need at least 2.14.0 for fallocate punch"
15014
15015         if [ "$ost1_FSTYPE" = "zfs" ] || [ "$mds1_FSTYPE" = "zfs" ]; then
15016                 skip "LU-14160: punch mode is not implemented on OSD ZFS"
15017         fi
15018
15019         check_set_fallocate_or_skip
15020         stack_trap "rm -f $DIR/$tfile; wait_delete_completed"
15021
15022         [[ "x$DOM" == "xyes" ]] &&
15023                 $LFS setstripe -E1M -L mdt -E eof $DIR/$tfile
15024
15025         echo "Verify fallocate punch: Range within the file range"
15026         yes 'A' | dd of=$DIR/$tfile bs=4096 count=5 ||
15027                 error "dd failed for bs 4096 and count 5"
15028
15029         # Call fallocate with punch range which is within the file range
15030         out=$(fallocate -p --offset 4096 -l $length $DIR/$tfile 2>&1) ||
15031                 skip_eopnotsupp "$out|fallocate: offset 4096 and length $length"
15032         # client must see changes immediately after fallocate
15033         size=$(stat -c '%s' $DIR/$tfile)
15034         blocks=$(stat -c '%b' $DIR/$tfile)
15035
15036         # Verify punch worked.
15037         (( blocks == want_blocks_after )) ||
15038                 error "punch failed: blocks $blocks != $want_blocks_after"
15039
15040         (( size == want_size_before )) ||
15041                 error "punch failed: size $size != $want_size_before"
15042
15043         # Verify there is hole in file
15044         local data_off=$(lseek_test -d 4096 $DIR/$tfile)
15045         # precomputed md5sum
15046         local expect="4a9a834a2db02452929c0a348273b4aa"
15047
15048         cksum=($(md5sum $DIR/$tfile))
15049         [[ "${cksum[0]}" == "$expect" ]] ||
15050                 error "unexpected MD5SUM after punch: ${cksum[0]}"
15051
15052         # Start second sub-case for fallocate punch.
15053         echo "Verify fallocate punch: Range overlapping and less than blocksize"
15054         yes 'A' | dd of=$DIR/$tfile bs=4096 count=5 ||
15055                 error "dd failed for bs 4096 and count 5"
15056
15057         # Punch range less than block size will have no change in block count
15058         want_blocks_after=40  # 512 sized blocks
15059
15060         # Punch overlaps two blocks and less than blocksize
15061         out=$(fallocate -p --offset 4000 -l 3000 $DIR/$tfile 2>&1) ||
15062                 skip_eopnotsupp "$out|fallocate: offset 4000 length 3000"
15063         size=$(stat -c '%s' $DIR/$tfile)
15064         blocks=$(stat -c '%b' $DIR/$tfile)
15065
15066         # Verify punch worked.
15067         (( blocks == want_blocks_after )) ||
15068                 error "punch failed: blocks $blocks != $want_blocks_after"
15069
15070         (( size == want_size_before )) ||
15071                 error "punch failed: size $size != $want_size_before"
15072
15073         # Verify if range is really zero'ed out. We expect Zeros.
15074         # precomputed md5sum
15075         expect="c57ec5d769c3dbe3426edc3f7d7e11d3"
15076         cksum=($(md5sum $DIR/$tfile))
15077         [[ "${cksum[0]}" == "$expect" ]] ||
15078                 error "unexpected MD5SUM after punch: ${cksum[0]}"
15079 }
15080 run_test 150f "Verify fallocate punch functionality"
15081
15082 test_150g() {
15083         local space
15084         local size
15085         local blocks
15086         local blocks_after
15087         local size_after
15088         local BS=4096 # Block size in bytes
15089
15090         [[ $OST1_VERSION -ge $(version_code 2.14.0) ]] ||
15091                 skip "need at least 2.14.0 for fallocate punch"
15092
15093         if [ "$ost1_FSTYPE" = "zfs" ] || [ "$mds1_FSTYPE" = "zfs" ]; then
15094                 skip "LU-14160: punch mode is not implemented on OSD ZFS"
15095         fi
15096
15097         check_set_fallocate_or_skip
15098         stack_trap "rm -f $DIR/$tfile; wait_delete_completed"
15099
15100         if [[ "x$DOM" == "xyes" ]]; then
15101                 $LFS setstripe -E2M -L mdt -E eof -c${OSTCOUNT} $DIR/$tfile ||
15102                         error "$LFS setstripe DoM + ${OSTCOUNT} OST failed"
15103         else
15104                 $LFS setstripe -c${OSTCOUNT} $DIR/$tfile ||
15105                         error "$LFS setstripe -c${OSTCOUNT} $DIR/$tfile failed"
15106         fi
15107
15108         # Get 100MB per OST of the available space to reduce run time
15109         # else 60% of the available space if we are running SLOW tests
15110         if [ $SLOW == "no" ]; then
15111                 space=$((1024 * 100 * OSTCOUNT))
15112         else
15113                 # Find OST with Minimum Size
15114                 space=$($LFS df | awk "/$FSNAME-OST/ { print \$4 }" |
15115                         sort -un | head -1)
15116                 echo "min size OST: $space"
15117                 space=$(((space * 60)/100 * OSTCOUNT))
15118         fi
15119         # space in 1k units, round to 4k blocks
15120         local blkcount=$((space * 1024 / $BS))
15121
15122         echo "Verify fallocate punch: Very large Range"
15123         fallocate -l${space}k $DIR/$tfile ||
15124                 error "fallocate ${space}k $DIR/$tfile failed"
15125         # write 1M at the end, start and in the middle
15126         yes 'A' | dd of=$DIR/$tfile bs=$BS count=256 ||
15127                 error "dd failed: bs $BS count 256"
15128         yes 'A' | dd of=$DIR/$tfile bs=$BS seek=$((blkcount - 256)) count=256 ||
15129                 error "dd failed: bs $BS count 256 seek $((blkcount - 256))"
15130         yes 'A' | dd of=$DIR/$tfile bs=$BS seek=$((blkcount / 2)) count=1024 ||
15131                 error "dd failed: bs $BS count 256 seek $((blkcount / 2))"
15132
15133         # Gather stats.
15134         size=$(stat -c '%s' $DIR/$tfile)
15135
15136         # gather punch length.
15137         local punch_size=$((size - (BS * 2)))
15138
15139         echo "punch_size = $punch_size"
15140         echo "size - punch_size: $((size - punch_size))"
15141         echo "size - punch_size in blocks: $(((size - punch_size)/BS))"
15142
15143         # Call fallocate to punch all except 2 blocks. We leave the
15144         # first and the last block
15145         echo "fallocate -p --offset $BS -l $punch_size $DIR/$tfile"
15146         out=$(fallocate -p --offset $BS -l $punch_size $DIR/$tfile 2>&1) ||
15147                 skip_eopnotsupp "$out|fallocate: offset $BS length $punch_size"
15148
15149         size_after=$(stat -c '%s' $DIR/$tfile)
15150         blocks_after=$(stat -c '%b' $DIR/$tfile)
15151
15152         # Verify punch worked.
15153         # Size should be kept
15154         (( size == size_after )) ||
15155                 error "punch failed: size $size != $size_after"
15156
15157         # two 4k data blocks to remain plus possible 1 extra extent block
15158         (( blocks_after <= ((BS / 512) * 3) )) ||
15159                 error "too many blocks remains: $blocks_after"
15160
15161         # Verify that file has hole between the first and the last blocks
15162         local hole_start=$(lseek_test -l 0 $DIR/$tfile)
15163         local hole_end=$(lseek_test -d $BS $DIR/$tfile)
15164
15165         echo "Hole at [$hole_start, $hole_end)"
15166         (( hole_start == BS )) ||
15167                 error "no hole at offset $BS after punch"
15168
15169         (( hole_end == BS + punch_size )) ||
15170                 error "data at offset $hole_end < $((BS + punch_size))"
15171 }
15172 run_test 150g "Verify fallocate punch on large range"
15173
15174 #LU-2902 roc_hit was not able to read all values from lproc
15175 function roc_hit_init() {
15176         local list=$(comma_list $(osts_nodes))
15177         local dir=$DIR/$tdir-check
15178         local file=$dir/$tfile
15179         local BEFORE
15180         local AFTER
15181         local idx
15182
15183         test_mkdir $dir
15184         #use setstripe to do a write to every ost
15185         for i in $(seq 0 $((OSTCOUNT-1))); do
15186                 $LFS setstripe -c 1 -i $i $dir || error "$LFS setstripe $file failed"
15187                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
15188                 idx=$(printf %04x $i)
15189                 BEFORE=$(get_osd_param $list *OST*$idx stats |
15190                         awk '$1 == "cache_access" {sum += $7}
15191                                 END { printf("%0.0f", sum) }')
15192
15193                 cancel_lru_locks osc
15194                 cat $file >/dev/null
15195
15196                 AFTER=$(get_osd_param $list *OST*$idx stats |
15197                         awk '$1 == "cache_access" {sum += $7}
15198                                 END { printf("%0.0f", sum) }')
15199
15200                 echo BEFORE:$BEFORE AFTER:$AFTER
15201                 if ! let "AFTER - BEFORE == 4"; then
15202                         rm -rf $dir
15203                         error "roc_hit is not safe to use"
15204                 fi
15205                 rm $file
15206         done
15207
15208         rm -rf $dir
15209 }
15210
15211 function roc_hit() {
15212         local list=$(comma_list $(osts_nodes))
15213         echo $(get_osd_param $list '' stats |
15214                 awk '$1 == "cache_hit" {sum += $7}
15215                         END { printf("%0.0f", sum) }')
15216 }
15217
15218 function set_cache() {
15219         local on=1
15220
15221         if [ "$2" == "off" ]; then
15222                 on=0;
15223         fi
15224         local list=$(comma_list $(osts_nodes))
15225         set_osd_param $list '' $1_cache_enable $on
15226
15227         cancel_lru_locks osc
15228 }
15229
15230 test_151() {
15231         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15232         remote_ost_nodsh && skip "remote OST with nodsh"
15233
15234         local CPAGES=3
15235         local list=$(comma_list $(osts_nodes))
15236
15237         # check whether obdfilter is cache capable at all
15238         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
15239                 skip "not cache-capable obdfilter"
15240         fi
15241
15242         # check cache is enabled on all obdfilters
15243         if get_osd_param $list '' read_cache_enable | grep 0; then
15244                 skip "oss cache is disabled"
15245         fi
15246
15247         set_osd_param $list '' writethrough_cache_enable 1
15248
15249         # check write cache is enabled on all obdfilters
15250         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
15251                 skip "oss write cache is NOT enabled"
15252         fi
15253
15254         roc_hit_init
15255
15256         #define OBD_FAIL_OBD_NO_LRU  0x609
15257         do_nodes $list $LCTL set_param fail_loc=0x609
15258
15259         # pages should be in the case right after write
15260         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
15261                 error "dd failed"
15262
15263         local BEFORE=$(roc_hit)
15264         cancel_lru_locks osc
15265         cat $DIR/$tfile >/dev/null
15266         local AFTER=$(roc_hit)
15267
15268         do_nodes $list $LCTL set_param fail_loc=0
15269
15270         if ! let "AFTER - BEFORE == CPAGES"; then
15271                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
15272         fi
15273
15274         cancel_lru_locks osc
15275         # invalidates OST cache
15276         do_nodes $list "echo 1 > /proc/sys/vm/drop_caches"
15277         set_osd_param $list '' read_cache_enable 0
15278         cat $DIR/$tfile >/dev/null
15279
15280         # now data shouldn't be found in the cache
15281         BEFORE=$(roc_hit)
15282         cancel_lru_locks osc
15283         cat $DIR/$tfile >/dev/null
15284         AFTER=$(roc_hit)
15285         if let "AFTER - BEFORE != 0"; then
15286                 error "IN CACHE: before: $BEFORE, after: $AFTER"
15287         fi
15288
15289         set_osd_param $list '' read_cache_enable 1
15290         rm -f $DIR/$tfile
15291 }
15292 run_test 151 "test cache on oss and controls ==============================="
15293
15294 test_152() {
15295         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15296
15297         local TF="$TMP/$tfile"
15298
15299         # simulate ENOMEM during write
15300 #define OBD_FAIL_OST_NOMEM      0x226
15301         lctl set_param fail_loc=0x80000226
15302         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
15303         cp $TF $DIR/$tfile
15304         sync || error "sync failed"
15305         lctl set_param fail_loc=0
15306
15307         # discard client's cache
15308         cancel_lru_locks osc
15309
15310         # simulate ENOMEM during read
15311         lctl set_param fail_loc=0x80000226
15312         cmp $TF $DIR/$tfile || error "cmp failed"
15313         lctl set_param fail_loc=0
15314
15315         rm -f $TF
15316 }
15317 run_test 152 "test read/write with enomem ============================"
15318
15319 test_153() {
15320         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
15321 }
15322 run_test 153 "test if fdatasync does not crash ======================="
15323
15324 dot_lustre_fid_permission_check() {
15325         local fid=$1
15326         local ffid=$MOUNT/.lustre/fid/$fid
15327         local test_dir=$2
15328
15329         echo "stat fid $fid"
15330         stat $ffid || error "stat $ffid failed."
15331         echo "touch fid $fid"
15332         touch $ffid || error "touch $ffid failed."
15333         echo "write to fid $fid"
15334         cat /etc/hosts > $ffid || error "write $ffid failed."
15335         echo "read fid $fid"
15336         diff /etc/hosts $ffid || error "read $ffid failed."
15337         echo "append write to fid $fid"
15338         cat /etc/hosts >> $ffid || error "append write $ffid failed."
15339         echo "rename fid $fid"
15340         mv $ffid $test_dir/$tfile.1 &&
15341                 error "rename $ffid to $tfile.1 should fail."
15342         touch $test_dir/$tfile.1
15343         mv $test_dir/$tfile.1 $ffid &&
15344                 error "rename $tfile.1 to $ffid should fail."
15345         rm -f $test_dir/$tfile.1
15346         echo "truncate fid $fid"
15347         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
15348         echo "link fid $fid"
15349         ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
15350         if [[ $($LCTL get_param -n mdc.*-mdc-*.connect_flags) =~ acl ]]; then
15351                 echo "setfacl fid $fid"
15352                 setfacl -R -m u:$USER0:rwx $ffid ||
15353                         error "setfacl $ffid failed"
15354                 echo "getfacl fid $fid"
15355                 getfacl $ffid || error "getfacl $ffid failed."
15356         fi
15357         echo "unlink fid $fid"
15358         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
15359         echo "mknod fid $fid"
15360         mknod $ffid c 1 3 && error "mknod $ffid should fail."
15361
15362         fid=[0xf00000400:0x1:0x0]
15363         ffid=$MOUNT/.lustre/fid/$fid
15364
15365         echo "stat non-exist fid $fid"
15366         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
15367         echo "write to non-exist fid $fid"
15368         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
15369         echo "link new fid $fid"
15370         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
15371
15372         mkdir -p $test_dir/$tdir
15373         touch $test_dir/$tdir/$tfile
15374         fid=$($LFS path2fid $test_dir/$tdir)
15375         rc=$?
15376         [ $rc -ne 0 ] &&
15377                 error "error: could not get fid for $test_dir/$dir/$tfile."
15378
15379         ffid=$MOUNT/.lustre/fid/$fid
15380
15381         echo "ls $fid"
15382         ls $ffid || error "ls $ffid failed."
15383         echo "touch $fid/$tfile.1"
15384         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
15385
15386         echo "touch $MOUNT/.lustre/fid/$tfile"
15387         touch $MOUNT/.lustre/fid/$tfile && \
15388                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
15389
15390         echo "setxattr to $MOUNT/.lustre/fid"
15391         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
15392
15393         echo "listxattr for $MOUNT/.lustre/fid"
15394         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
15395
15396         echo "delxattr from $MOUNT/.lustre/fid"
15397         setfattr -x trusted.name1 $MOUNT/.lustre/fid
15398
15399         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
15400         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
15401                 error "touch invalid fid should fail."
15402
15403         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
15404         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
15405                 error "touch non-normal fid should fail."
15406
15407         echo "rename $tdir to $MOUNT/.lustre/fid"
15408         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
15409                 error "rename to $MOUNT/.lustre/fid should fail."
15410
15411         if [ $MDS1_VERSION -ge $(version_code 2.3.51) ]
15412         then            # LU-3547
15413                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
15414                 local new_obf_mode=777
15415
15416                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
15417                 chmod $new_obf_mode $DIR/.lustre/fid ||
15418                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
15419
15420                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
15421                 [ $obf_mode -eq $new_obf_mode ] ||
15422                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
15423
15424                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
15425                 chmod $old_obf_mode $DIR/.lustre/fid ||
15426                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
15427         fi
15428
15429         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
15430         fid=$($LFS path2fid $test_dir/$tfile-2)
15431
15432         if [ $MDS1_VERSION -ge $(version_code 2.6.50) ]
15433         then # LU-5424
15434                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
15435                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
15436                         error "create lov data thru .lustre failed"
15437         fi
15438         echo "cp /etc/passwd $test_dir/$tfile-2"
15439         cp /etc/passwd $test_dir/$tfile-2 ||
15440                 error "copy to $test_dir/$tfile-2 failed."
15441         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
15442         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
15443                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
15444
15445         rm -rf $test_dir/tfile.lnk
15446         rm -rf $test_dir/$tfile-2
15447 }
15448
15449 test_154A() {
15450         [[ $MDS1_VERSION -lt $(version_code 2.4.1) ]] &&
15451                 skip "Need MDS version at least 2.4.1"
15452
15453         local tf=$DIR/$tfile
15454         touch $tf
15455
15456         local fid=$($LFS path2fid $tf)
15457         [ -z "$fid" ] && error "path2fid unable to get $tf FID"
15458
15459         # check that we get the same pathname back
15460         local rootpath
15461         local found
15462         for rootpath in "$MOUNT" "$MOUNT///" "$MOUNT/$tfile"; do
15463                 echo "$rootpath $fid"
15464                 found=$($LFS fid2path $rootpath "$fid")
15465                 [ -z "$found" ] && error "fid2path unable to get '$fid' path"
15466                 [ "$found" == "$tf" ] || error "fid2path $found != $tf"
15467         done
15468
15469         # check wrong root path format
15470         rootpath=$MOUNT"_wrong"
15471         found=$($LFS fid2path $rootpath "$fid")
15472         [ -z "$found" ] || error "should fail ($rootpath != $MOUNT)"
15473 }
15474 run_test 154A "lfs path2fid and fid2path basic checks"
15475
15476 test_154B() {
15477         [[ $MDS1_VERSION -lt $(version_code 2.4.1) ]] &&
15478                 skip "Need MDS version at least 2.4.1"
15479
15480         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
15481         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
15482         local linkea=$($LL_DECODE_LINKEA $DIR/$tdir/$tfile | grep 'pfid')
15483         [ -z "$linkea" ] && error "decode linkea $DIR/$tdir/$tfile failed"
15484
15485         local name=$(echo $linkea | awk '/pfid/ {print $5}' | sed -e "s/'//g")
15486         local PFID=$(echo $linkea | awk '/pfid/ {print $3}' | sed -e "s/,//g")
15487
15488         # check that we get the same pathname
15489         echo "PFID: $PFID, name: $name"
15490         local FOUND=$($LFS fid2path $MOUNT "$PFID")
15491         [ -z "$FOUND" ] && error "fid2path unable to get $PFID path"
15492         [ "$FOUND/$name" != "$DIR/$tdir/$tfile" ] &&
15493                 error "ll_decode_linkea has $FOUND/$name != $DIR/$tdir/$tfile"
15494
15495         rm -rf $DIR/$tdir || error "Can not delete directory $DIR/$tdir"
15496 }
15497 run_test 154B "verify the ll_decode_linkea tool"
15498
15499 test_154a() {
15500         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15501         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
15502         (( $MDS1_VERSION >= $(version_code 2.2.51) )) ||
15503                 skip "Need MDS version at least 2.2.51"
15504         [ -z "$(which setfacl)" ] && skip_env "must have setfacl tool"
15505
15506         cp /etc/hosts $DIR/$tfile
15507
15508         fid=$($LFS path2fid $DIR/$tfile)
15509         rc=$?
15510         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
15511
15512         dot_lustre_fid_permission_check "$fid" $DIR ||
15513                 error "dot lustre permission check $fid failed"
15514
15515         ls -a $MOUNT | grep "\.lustre" && error ".lustre should not be listed"
15516
15517         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
15518
15519         touch $MOUNT/.lustre/file &&
15520                 error "creation is not allowed under .lustre"
15521
15522         mkdir $MOUNT/.lustre/dir &&
15523                 error "mkdir is not allowed under .lustre"
15524
15525         rm -rf $DIR/$tfile
15526 }
15527 run_test 154a "Open-by-FID"
15528
15529 test_154b() {
15530         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15531         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
15532         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15533         [[ $MDS1_VERSION -ge $(version_code 2.2.51) ]] ||
15534                 skip "Need MDS version at least 2.2.51"
15535
15536         local remote_dir=$DIR/$tdir/remote_dir
15537         local MDTIDX=1
15538         local rc=0
15539
15540         mkdir -p $DIR/$tdir
15541         $LFS mkdir -i $MDTIDX $remote_dir ||
15542                 error "create remote directory failed"
15543
15544         cp /etc/hosts $remote_dir/$tfile
15545
15546         fid=$($LFS path2fid $remote_dir/$tfile)
15547         rc=$?
15548         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
15549
15550         dot_lustre_fid_permission_check "$fid" $remote_dir ||
15551                 error "dot lustre permission check $fid failed"
15552         rm -rf $DIR/$tdir
15553 }
15554 run_test 154b "Open-by-FID for remote directory"
15555
15556 test_154c() {
15557         [[ $MDS1_VERSION -lt $(version_code 2.4.1) ]] &&
15558                 skip "Need MDS version at least 2.4.1"
15559
15560         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
15561         local FID1=$($LFS path2fid $DIR/$tfile.1)
15562         local FID2=$($LFS path2fid $DIR/$tfile.2)
15563         local FID3=$($LFS path2fid $DIR/$tfile.3)
15564
15565         local N=1
15566         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
15567                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
15568                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
15569                 local want=FID$N
15570                 [ "$FID" = "${!want}" ] ||
15571                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
15572                 N=$((N + 1))
15573         done
15574
15575         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
15576         do
15577                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
15578                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
15579                 N=$((N + 1))
15580         done
15581 }
15582 run_test 154c "lfs path2fid and fid2path multiple arguments"
15583
15584 test_154d() {
15585         remote_mds_nodsh && skip "remote MDS with nodsh"
15586         [[ $MDS1_VERSION -lt $(version_code 2.5.53) ]] &&
15587                 skip "Need MDS version at least 2.5.53"
15588
15589         if remote_mds; then
15590                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
15591         else
15592                 nid="0@lo"
15593         fi
15594         local proc_ofile="mdt.*.exports.'$nid'.open_files"
15595         local fd
15596         local cmd
15597
15598         rm -f $DIR/$tfile
15599         touch $DIR/$tfile
15600
15601         local fid=$($LFS path2fid $DIR/$tfile)
15602         # Open the file
15603         fd=$(free_fd)
15604         cmd="exec $fd<$DIR/$tfile"
15605         eval $cmd
15606         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
15607         echo "$fid_list" | grep "$fid"
15608         rc=$?
15609
15610         cmd="exec $fd>/dev/null"
15611         eval $cmd
15612         if [ $rc -ne 0 ]; then
15613                 error "FID $fid not found in open files list $fid_list"
15614         fi
15615 }
15616 run_test 154d "Verify open file fid"
15617
15618 test_154e()
15619 {
15620         [[ $MDS1_VERSION -lt $(version_code 2.6.50) ]] &&
15621                 skip "Need MDS version at least 2.6.50"
15622
15623         if ls -a $MOUNT | grep -q '^\.lustre$'; then
15624                 error ".lustre returned by readdir"
15625         fi
15626 }
15627 run_test 154e ".lustre is not returned by readdir"
15628
15629 test_154f() {
15630         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
15631
15632         # create parent directory on a single MDT to avoid cross-MDT hardlinks
15633         mkdir_on_mdt0 $DIR/$tdir
15634         # test dirs inherit from its stripe
15635         mkdir -p $DIR/$tdir/foo1 || error "mkdir error"
15636         mkdir -p $DIR/$tdir/foo2 || error "mkdir error"
15637         cp /etc/hosts $DIR/$tdir/foo1/$tfile
15638         ln $DIR/$tdir/foo1/$tfile $DIR/$tdir/foo2/link
15639         touch $DIR/f
15640
15641         # get fid of parents
15642         local FID0=$($LFS path2fid $DIR/$tdir)
15643         local FID1=$($LFS path2fid $DIR/$tdir/foo1)
15644         local FID2=$($LFS path2fid $DIR/$tdir/foo2)
15645         local FID3=$($LFS path2fid $DIR)
15646
15647         # check that path2fid --parents returns expected <parent_fid>/name
15648         # 1) test for a directory (single parent)
15649         local parent=$($LFS path2fid --parents $DIR/$tdir/foo1)
15650         [ "$parent" == "$FID0/foo1" ] ||
15651                 error "expected parent: $FID0/foo1, got: $parent"
15652
15653         # 2) test for a file with nlink > 1 (multiple parents)
15654         parent=$($LFS path2fid --parents $DIR/$tdir/foo1/$tfile)
15655         echo "$parent" | grep -F "$FID1/$tfile" ||
15656                 error "$FID1/$tfile not returned in parent list"
15657         echo "$parent" | grep -F "$FID2/link" ||
15658                 error "$FID2/link not returned in parent list"
15659
15660         # 3) get parent by fid
15661         local file_fid=$($LFS path2fid $DIR/$tdir/foo1/$tfile)
15662         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
15663         echo "$parent" | grep -F "$FID1/$tfile" ||
15664                 error "$FID1/$tfile not returned in parent list (by fid)"
15665         echo "$parent" | grep -F "$FID2/link" ||
15666                 error "$FID2/link not returned in parent list (by fid)"
15667
15668         # 4) test for entry in root directory
15669         parent=$($LFS path2fid --parents $DIR/f)
15670         echo "$parent" | grep -F "$FID3/f" ||
15671                 error "$FID3/f not returned in parent list"
15672
15673         # 5) test it on root directory
15674         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
15675                 error "$MOUNT should not have parents"
15676
15677         # enable xattr caching and check that linkea is correctly updated
15678         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
15679         save_lustre_params client "llite.*.xattr_cache" > $save
15680         lctl set_param llite.*.xattr_cache 1
15681
15682         # 6.1) linkea update on rename
15683         mv $DIR/$tdir/foo1/$tfile $DIR/$tdir/foo2/$tfile.moved
15684
15685         # get parents by fid
15686         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
15687         # foo1 should no longer be returned in parent list
15688         echo "$parent" | grep -F "$FID1" &&
15689                 error "$FID1 should no longer be in parent list"
15690         # the new path should appear
15691         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
15692                 error "$FID2/$tfile.moved is not in parent list"
15693
15694         # 6.2) linkea update on unlink
15695         rm -f $DIR/$tdir/foo2/link
15696         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
15697         # foo2/link should no longer be returned in parent list
15698         echo "$parent" | grep -F "$FID2/link" &&
15699                 error "$FID2/link should no longer be in parent list"
15700         true
15701
15702         rm -f $DIR/f
15703         restore_lustre_params < $save
15704         rm -f $save
15705 }
15706 run_test 154f "get parent fids by reading link ea"
15707
15708 test_154g()
15709 {
15710         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
15711         [[ $MDS1_VERSION -ge $(version_code 2.6.92) &&
15712            $CLIENT_VERSION -gt $(version_code 2.6.99) ]] ||
15713                 skip "Need MDS version at least 2.6.92"
15714
15715         mkdir_on_mdt0 $DIR/$tdir
15716         llapi_fid_test -d $DIR/$tdir
15717 }
15718 run_test 154g "various llapi FID tests"
15719
15720 test_155_small_load() {
15721     local temp=$TMP/$tfile
15722     local file=$DIR/$tfile
15723
15724     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
15725         error "dd of=$temp bs=6096 count=1 failed"
15726     cp $temp $file
15727     cancel_lru_locks $OSC
15728     cmp $temp $file || error "$temp $file differ"
15729
15730     $TRUNCATE $temp 6000
15731     $TRUNCATE $file 6000
15732     cmp $temp $file || error "$temp $file differ (truncate1)"
15733
15734     echo "12345" >>$temp
15735     echo "12345" >>$file
15736     cmp $temp $file || error "$temp $file differ (append1)"
15737
15738     echo "12345" >>$temp
15739     echo "12345" >>$file
15740     cmp $temp $file || error "$temp $file differ (append2)"
15741
15742     rm -f $temp $file
15743     true
15744 }
15745
15746 test_155_big_load() {
15747         remote_ost_nodsh && skip "remote OST with nodsh"
15748
15749         local temp=$TMP/$tfile
15750         local file=$DIR/$tfile
15751
15752         free_min_max
15753         local cache_size=$(do_facet ost$((MAXI+1)) \
15754                 "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
15755
15756         # LU-16042: can not get the cache size on Arm64 VM here, fallback to a
15757         # pre-set value
15758         if [ -z "$cache_size" ]; then
15759                 cache_size=256
15760         fi
15761         local large_file_size=$((cache_size * 2))
15762
15763         echo "OSS cache size: $cache_size KB"
15764         echo "Large file size: $large_file_size KB"
15765
15766         [ $MAXV -le $large_file_size ] &&
15767                 skip_env "max available OST size needs > $large_file_size KB"
15768
15769         $LFS setstripe $file -c 1 -i $MAXI || error "$LFS setstripe $file failed"
15770
15771         dd if=/dev/urandom of=$temp bs=$large_file_size count=1k ||
15772                 error "dd of=$temp bs=$large_file_size count=1k failed"
15773         cp $temp $file
15774         ls -lh $temp $file
15775         cancel_lru_locks osc
15776         cmp $temp $file || error "$temp $file differ"
15777
15778         rm -f $temp $file
15779         true
15780 }
15781
15782 save_writethrough() {
15783         local facets=$(get_facets OST)
15784
15785         save_lustre_params $facets "osd-*.*.writethrough_cache_enable" > $1
15786 }
15787
15788 test_155a() {
15789         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15790
15791         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
15792
15793         save_writethrough $p
15794
15795         set_cache read on
15796         set_cache writethrough on
15797         test_155_small_load
15798         restore_lustre_params < $p
15799         rm -f $p
15800 }
15801 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
15802
15803 test_155b() {
15804         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15805
15806         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
15807
15808         save_writethrough $p
15809
15810         set_cache read on
15811         set_cache writethrough off
15812         test_155_small_load
15813         restore_lustre_params < $p
15814         rm -f $p
15815 }
15816 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
15817
15818 test_155c() {
15819         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15820
15821         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
15822
15823         save_writethrough $p
15824
15825         set_cache read off
15826         set_cache writethrough on
15827         test_155_small_load
15828         restore_lustre_params < $p
15829         rm -f $p
15830 }
15831 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
15832
15833 test_155d() {
15834         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15835
15836         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
15837
15838         save_writethrough $p
15839
15840         set_cache read off
15841         set_cache writethrough off
15842         test_155_small_load
15843         restore_lustre_params < $p
15844         rm -f $p
15845 }
15846 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
15847
15848 test_155e() {
15849         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15850
15851         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
15852
15853         save_writethrough $p
15854
15855         set_cache read on
15856         set_cache writethrough on
15857         test_155_big_load
15858         restore_lustre_params < $p
15859         rm -f $p
15860 }
15861 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
15862
15863 test_155f() {
15864         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15865
15866         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
15867
15868         save_writethrough $p
15869
15870         set_cache read on
15871         set_cache writethrough off
15872         test_155_big_load
15873         restore_lustre_params < $p
15874         rm -f $p
15875 }
15876 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
15877
15878 test_155g() {
15879         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15880
15881         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
15882
15883         save_writethrough $p
15884
15885         set_cache read off
15886         set_cache writethrough on
15887         test_155_big_load
15888         restore_lustre_params < $p
15889         rm -f $p
15890 }
15891 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
15892
15893 test_155h() {
15894         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15895
15896         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
15897
15898         save_writethrough $p
15899
15900         set_cache read off
15901         set_cache writethrough off
15902         test_155_big_load
15903         restore_lustre_params < $p
15904         rm -f $p
15905 }
15906 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
15907
15908 test_156() {
15909         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15910         remote_ost_nodsh && skip "remote OST with nodsh"
15911         [ $OST1_VERSION -lt $(version_code 2.6.93) ] &&
15912                 skip "stats not implemented on old servers"
15913         [ "$ost1_FSTYPE" = "zfs" ] &&
15914                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS"
15915
15916         local CPAGES=3
15917         local BEFORE
15918         local AFTER
15919         local file="$DIR/$tfile"
15920         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
15921
15922         save_writethrough $p
15923         roc_hit_init
15924
15925         log "Turn on read and write cache"
15926         set_cache read on
15927         set_cache writethrough on
15928
15929         log "Write data and read it back."
15930         log "Read should be satisfied from the cache."
15931         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
15932         BEFORE=$(roc_hit)
15933         cancel_lru_locks osc
15934         cat $file >/dev/null
15935         AFTER=$(roc_hit)
15936         if ! let "AFTER - BEFORE == CPAGES"; then
15937                 error "NOT IN CACHE (2): before: $BEFORE, after: $AFTER"
15938         else
15939                 log "cache hits: before: $BEFORE, after: $AFTER"
15940         fi
15941
15942         log "Read again; it should be satisfied from the cache."
15943         BEFORE=$AFTER
15944         cancel_lru_locks osc
15945         cat $file >/dev/null
15946         AFTER=$(roc_hit)
15947         if ! let "AFTER - BEFORE == CPAGES"; then
15948                 error "NOT IN CACHE (3): before: $BEFORE, after: $AFTER"
15949         else
15950                 log "cache hits:: before: $BEFORE, after: $AFTER"
15951         fi
15952
15953         log "Turn off the read cache and turn on the write cache"
15954         set_cache read off
15955         set_cache writethrough on
15956
15957         log "Read again; it should be satisfied from the cache."
15958         BEFORE=$(roc_hit)
15959         cancel_lru_locks osc
15960         cat $file >/dev/null
15961         AFTER=$(roc_hit)
15962         if ! let "AFTER - BEFORE == CPAGES"; then
15963                 error "NOT IN CACHE (4): before: $BEFORE, after: $AFTER"
15964         else
15965                 log "cache hits:: before: $BEFORE, after: $AFTER"
15966         fi
15967
15968         if [ $OST1_VERSION -lt $(version_code 2.12.55) ]; then
15969                 # > 2.12.56 uses pagecache if cached
15970                 log "Read again; it should not be satisfied from the cache."
15971                 BEFORE=$AFTER
15972                 cancel_lru_locks osc
15973                 cat $file >/dev/null
15974                 AFTER=$(roc_hit)
15975                 if ! let "AFTER - BEFORE == 0"; then
15976                         error "IN CACHE (5): before: $BEFORE, after: $AFTER"
15977                 else
15978                         log "cache hits:: before: $BEFORE, after: $AFTER"
15979                 fi
15980         fi
15981
15982         log "Write data and read it back."
15983         log "Read should be satisfied from the cache."
15984         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
15985         BEFORE=$(roc_hit)
15986         cancel_lru_locks osc
15987         cat $file >/dev/null
15988         AFTER=$(roc_hit)
15989         if ! let "AFTER - BEFORE == CPAGES"; then
15990                 error "NOT IN CACHE (6): before: $BEFORE, after: $AFTER"
15991         else
15992                 log "cache hits:: before: $BEFORE, after: $AFTER"
15993         fi
15994
15995         if [ $OST1_VERSION -lt $(version_code 2.12.55) ]; then
15996                 # > 2.12.56 uses pagecache if cached
15997                 log "Read again; it should not be satisfied from the cache."
15998                 BEFORE=$AFTER
15999                 cancel_lru_locks osc
16000                 cat $file >/dev/null
16001                 AFTER=$(roc_hit)
16002                 if ! let "AFTER - BEFORE == 0"; then
16003                         error "IN CACHE (7): before: $BEFORE, after: $AFTER"
16004                 else
16005                         log "cache hits:: before: $BEFORE, after: $AFTER"
16006                 fi
16007         fi
16008
16009         log "Turn off read and write cache"
16010         set_cache read off
16011         set_cache writethrough off
16012
16013         log "Write data and read it back"
16014         log "It should not be satisfied from the cache."
16015         rm -f $file
16016         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
16017         cancel_lru_locks osc
16018         BEFORE=$(roc_hit)
16019         cat $file >/dev/null
16020         AFTER=$(roc_hit)
16021         if ! let "AFTER - BEFORE == 0"; then
16022                 error_ignore bz20762 "IN CACHE (8):before:$BEFORE,after:$AFTER"
16023         else
16024                 log "cache hits:: before: $BEFORE, after: $AFTER"
16025         fi
16026
16027         log "Turn on the read cache and turn off the write cache"
16028         set_cache read on
16029         set_cache writethrough off
16030
16031         log "Write data and read it back"
16032         log "It should not be satisfied from the cache."
16033         rm -f $file
16034         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
16035         BEFORE=$(roc_hit)
16036         cancel_lru_locks osc
16037         cat $file >/dev/null
16038         AFTER=$(roc_hit)
16039         if ! let "AFTER - BEFORE == 0"; then
16040                 error_ignore bz20762 "IN CACHE (9):before:$BEFORE,after:$AFTER"
16041         else
16042                 log "cache hits:: before: $BEFORE, after: $AFTER"
16043         fi
16044
16045         log "Read again; it should be satisfied from the cache."
16046         BEFORE=$(roc_hit)
16047         cancel_lru_locks osc
16048         cat $file >/dev/null
16049         AFTER=$(roc_hit)
16050         if ! let "AFTER - BEFORE == CPAGES"; then
16051                 error "NOT IN CACHE (1): before: $BEFORE, after: $AFTER"
16052         else
16053                 log "cache hits:: before: $BEFORE, after: $AFTER"
16054         fi
16055
16056         restore_lustre_params < $p
16057         rm -f $p $file
16058 }
16059 run_test 156 "Verification of tunables"
16060
16061 test_160a() {
16062         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16063         remote_mds_nodsh && skip "remote MDS with nodsh"
16064         [ $MDS1_VERSION -ge $(version_code 2.2.0) ] ||
16065                 skip "Need MDS version at least 2.2.0"
16066
16067         changelog_register || error "changelog_register failed"
16068         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
16069         changelog_users $SINGLEMDS | grep -q $cl_user ||
16070                 error "User $cl_user not found in changelog_users"
16071
16072         mkdir_on_mdt0 $DIR/$tdir
16073
16074         # change something
16075         test_mkdir -p $DIR/$tdir/pics/2008/zachy
16076         changelog_clear 0 || error "changelog_clear failed"
16077         touch $DIR/$tdir/pics/2008/zachy/$tfile                 # open 1
16078         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg       # open 2
16079         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
16080         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
16081         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
16082         rm $DIR/$tdir/pics/desktop.jpg
16083
16084         echo "verifying changelog mask"
16085         changelog_chmask "-MKDIR"
16086         changelog_chmask "-CLOSE"
16087
16088         test_mkdir -p $DIR/$tdir/pics/zach/sofia                # not logged
16089         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # not logged
16090
16091         changelog_chmask "+MKDIR"
16092         changelog_chmask "+CLOSE"
16093
16094         test_mkdir -p $DIR/$tdir/pics/2008/sofia                # mkdir 1
16095         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # open 3
16096
16097         MKDIRS=$(changelog_dump | grep -c "MKDIR")
16098         CLOSES=$(changelog_dump | grep -c "CLOSE")
16099         [ $MKDIRS -eq 1 ] || error "MKDIR changelog mask count $MKDIRS != 1"
16100         [ $CLOSES -eq 3 ] || error "CLOSE changelog mask count $CLOSES != 3"
16101
16102         # verify contents
16103         echo "verifying target fid"
16104         local fidc=$(changelog_extract_field "CREAT" "$tfile" "t=")
16105         local fidf=$($LFS path2fid $DIR/$tdir/pics/zach/$tfile)
16106         [ "$fidc" == "$fidf" ] ||
16107                 error "changelog '$tfile' fid $fidc != file fid $fidf"
16108         echo "verifying parent fid"
16109         # The FID returned from the Changelog may be the directory shard on
16110         # a different MDT, and not the FID returned by path2fid on the parent.
16111         # Instead of comparing FIDs, verify that fid2path(fidp) is correct,
16112         # since this is what will matter when recreating this file in the tree.
16113         local fidp=$(changelog_extract_field "CREAT" "$tfile" "p=")
16114         local pathp=$($LFS fid2path $MOUNT "$fidp")
16115         [ "${pathp%/}" == "$DIR/$tdir/pics/zach" ] ||
16116                 error "changelog fid2path($fidc) $pathp != $DIR/$tdir/pics/zach"
16117
16118         echo "getting records for $cl_user"
16119         changelog_users $SINGLEMDS
16120         local user_rec1=$(changelog_user_rec $SINGLEMDS $cl_user)
16121         local nclr=3
16122         __changelog_clear $SINGLEMDS $cl_user +$nclr ||
16123                 error "changelog_clear failed"
16124         local user_rec2=$(changelog_user_rec $SINGLEMDS $cl_user)
16125         echo "verifying user clear: $user_rec1 + $nclr == $user_rec2"
16126         [ $user_rec2 == $((user_rec1 + nclr)) ] ||
16127                 error "user index expect $user_rec1 + $nclr != $user_rec2"
16128
16129         local min0_rec=$(changelog_users $SINGLEMDS |
16130                 awk 'min == "" || $2 < min { min = $2 }; END { print min }')
16131         local first_rec=$($LFS changelog $(facet_svc $SINGLEMDS) |
16132                           awk '{ print $1; exit; }')
16133
16134         changelog_dump | tail -n 5
16135         echo "verifying user min purge: $min0_rec + 1 == $first_rec"
16136         [ $first_rec == $((min0_rec + 1)) ] ||
16137                 error "first index should be $min0_rec + 1 not $first_rec"
16138
16139         # LU-3446 changelog index reset on MDT restart
16140         local cur_rec1=$(changelog_users $SINGLEMDS |
16141                          awk '/^current.index:/ { print $NF }')
16142         changelog_clear 0 ||
16143                 error "clear all changelog records for $cl_user failed"
16144         stop $SINGLEMDS || error "Fail to stop $SINGLEMDS"
16145         start $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) $MDS_MOUNT_OPTS ||
16146                 error "Fail to start $SINGLEMDS"
16147         local cur_rec2=$(changelog_users $SINGLEMDS |
16148                          awk '/^current.index:/ { print $NF }')
16149         echo "verifying index survives MDT restart: $cur_rec1 == $cur_rec2"
16150         [ $cur_rec1 == $cur_rec2 ] ||
16151                 error "current index should be $cur_rec1 not $cur_rec2"
16152
16153         echo "verifying users from this test are deregistered"
16154         changelog_deregister || error "changelog_deregister failed"
16155         changelog_users $SINGLEMDS | grep -q $cl_user &&
16156                 error "User '$cl_user' still in changelog_users"
16157
16158         # lctl get_param -n mdd.*.changelog_users
16159         # current_index: 144
16160         # ID    index (idle seconds)
16161         # cl3   144   (2) mask=<list>
16162         if [ -z "$(changelog_users $SINGLEMDS | grep -v current.index)" ]; then
16163                 # this is the normal case where all users were deregistered
16164                 # make sure no new records are added when no users are present
16165                 local last_rec1=$(changelog_users $SINGLEMDS |
16166                                   awk '/^current.index:/ { print $NF }')
16167                 touch $DIR/$tdir/chloe
16168                 local last_rec2=$(changelog_users $SINGLEMDS |
16169                                   awk '/^current.index:/ { print $NF }')
16170                 echo "verify changelogs are off: $last_rec1 == $last_rec2"
16171                 [ $last_rec1 == $last_rec2 ] || error "changelogs not off"
16172         else
16173                 # any changelog users must be leftovers from a previous test
16174                 changelog_users $SINGLEMDS
16175                 echo "other changelog users; can't verify off"
16176         fi
16177 }
16178 run_test 160a "changelog sanity"
16179
16180 test_160b() { # LU-3587
16181         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16182         remote_mds_nodsh && skip "remote MDS with nodsh"
16183         [ $MDS1_VERSION -ge $(version_code 2.2.0) ] ||
16184                 skip "Need MDS version at least 2.2.0"
16185
16186         changelog_register || error "changelog_register failed"
16187         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
16188         changelog_users $SINGLEMDS | grep -q $cl_user ||
16189                 error "User '$cl_user' not found in changelog_users"
16190
16191         local longname1=$(str_repeat a 255)
16192         local longname2=$(str_repeat b 255)
16193
16194         cd $DIR
16195         echo "creating very long named file"
16196         touch $longname1 || error "create of '$longname1' failed"
16197         echo "renaming very long named file"
16198         mv $longname1 $longname2
16199
16200         changelog_dump | grep RENME | tail -n 5
16201         rm -f $longname2
16202 }
16203 run_test 160b "Verify that very long rename doesn't crash in changelog"
16204
16205 test_160c() {
16206         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16207         remote_mds_nodsh && skip "remote MDS with nodsh"
16208
16209         [[ $MDS1_VERSION -gt $(version_code 2.5.57) ]] ||
16210                 [[ $MDS1_VERSION -gt $(version_code 2.5.1) &&
16211                    $MDS1_VERSION -lt $(version_code 2.5.50) ]] ||
16212                 skip "Need MDS version at least 2.5.58 or 2.5.2+"
16213
16214         local rc=0
16215
16216         # Registration step
16217         changelog_register || error "changelog_register failed"
16218
16219         rm -rf $DIR/$tdir
16220         mkdir -p $DIR/$tdir
16221         $MCREATE $DIR/$tdir/foo_160c
16222         changelog_chmask "-TRUNC"
16223         $TRUNCATE $DIR/$tdir/foo_160c 200
16224         changelog_chmask "+TRUNC"
16225         $TRUNCATE $DIR/$tdir/foo_160c 199
16226         changelog_dump | tail -n 5
16227         local truncs=$(changelog_dump | tail -n 5 | grep -c TRUNC)
16228         [ $truncs -eq 1 ] || error "TRUNC changelog mask count $truncs != 1"
16229 }
16230 run_test 160c "verify that changelog log catch the truncate event"
16231
16232 test_160d() {
16233         remote_mds_nodsh && skip "remote MDS with nodsh"
16234         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
16235         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16236         [[ $MDS1_VERSION -ge $(version_code 2.7.60) ]] ||
16237                 skip "Need MDS version at least 2.7.60"
16238
16239         # Registration step
16240         changelog_register || error "changelog_register failed"
16241
16242         mkdir -p $DIR/$tdir/migrate_dir
16243         changelog_clear 0 || error "changelog_clear failed"
16244
16245         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
16246         changelog_dump | tail -n 5
16247         local migrates=$(changelog_dump | grep -c "MIGRT")
16248         [ $migrates -eq 1 ] || error "MIGRATE changelog count $migrates != 1"
16249 }
16250 run_test 160d "verify that changelog log catch the migrate event"
16251
16252 test_160e() {
16253         remote_mds_nodsh && skip "remote MDS with nodsh"
16254
16255         # Create a user
16256         changelog_register || error "changelog_register failed"
16257
16258         local MDT0=$(facet_svc $SINGLEMDS)
16259         local rc
16260
16261         # No user (expect fail)
16262         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister
16263         rc=$?
16264         if [ $rc -eq 0 ]; then
16265                 error "Should fail without user"
16266         elif [ $rc -ne 4 ]; then
16267                 error "changelog_deregister failed with $rc, expect 4(CMD_HELP)"
16268         fi
16269
16270         # Delete a future user (expect fail)
16271         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister "cl77"
16272         rc=$?
16273         if [ $rc -eq 0 ]; then
16274                 error "Deleted non-existant user cl77"
16275         elif [ $rc -ne 2 ]; then
16276                 error "changelog_deregister failed with $rc, expect 2 (ENOENT)"
16277         fi
16278
16279         # Clear to a bad index (1 billion should be safe)
16280         $LFS changelog_clear $MDT0 "${CL_USERS[$SINGLEMDS]%% *}" 1000000000
16281         rc=$?
16282
16283         if [ $rc -eq 0 ]; then
16284                 error "Successfully cleared to invalid CL index"
16285         elif [ $rc -ne 22 ]; then
16286                 error "changelog_clear failed with $rc, expected 22 (EINVAL)"
16287         fi
16288 }
16289 run_test 160e "changelog negative testing (should return errors)"
16290
16291 test_160f() {
16292         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16293         [[ $MDS1_VERSION -ge $(version_code 2.10.56) ]] ||
16294                 skip "Need MDS version at least 2.10.56"
16295
16296         local mdts=$(comma_list $(mdts_nodes))
16297
16298         # Create a user
16299         changelog_register || error "first changelog_register failed"
16300         changelog_register || error "second changelog_register failed"
16301         local cl_users
16302         declare -A cl_user1
16303         declare -A cl_user2
16304         local user_rec1
16305         local user_rec2
16306         local i
16307
16308         # generate some changelog records to accumulate on each MDT
16309         # use all_char because created files should be evenly distributed
16310         test_mkdir -c $MDSCOUNT -H all_char $DIR/$tdir ||
16311                 error "test_mkdir $tdir failed"
16312         log "$(date +%s): creating first files"
16313         for ((i = 0; i < MDSCOUNT * 2; i++)); do
16314                 $LFS mkdir -i $((i%MDSCOUNT)) $DIR/$tdir/d$i.$((i/MDSCOUNT)) ||
16315                         error "create $DIR/$tdir/d$i.$((i/MDSCOUNT)) failed"
16316         done
16317
16318         # check changelogs have been generated
16319         local start=$SECONDS
16320         local idle_time=$((MDSCOUNT * 5 + 5))
16321         local nbcl=$(changelog_dump | wc -l)
16322         [[ $nbcl -eq 0 ]] && error "no changelogs found"
16323
16324         for param in "changelog_max_idle_time=$idle_time" \
16325                      "changelog_gc=1" \
16326                      "changelog_min_gc_interval=2" \
16327                      "changelog_min_free_cat_entries=3"; do
16328                 local MDT0=$(facet_svc $SINGLEMDS)
16329                 local var="${param%=*}"
16330                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
16331
16332                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
16333                 do_nodes $mdts $LCTL set_param mdd.*.$param
16334         done
16335
16336         # force cl_user2 to be idle (1st part), but also cancel the
16337         # cl_user1 records so that it is not evicted later in the test.
16338         local sleep1=$((idle_time / 2))
16339         echo "$(date +%s): sleep1 $sleep1/${idle_time}s"
16340         sleep $sleep1
16341
16342         # simulate changelog catalog almost full
16343         #define OBD_FAIL_CAT_FREE_RECORDS       0x1313
16344         do_nodes $mdts "$LCTL set_param fail_loc=0x1313 fail_val=3"
16345
16346         for i in $(seq $MDSCOUNT); do
16347                 cl_users=(${CL_USERS[mds$i]})
16348                 cl_user1[mds$i]="${cl_users[0]}"
16349                 cl_user2[mds$i]="${cl_users[1]}"
16350
16351                 [ -n "${cl_user1[mds$i]}" ] ||
16352                         error "mds$i: no user registered"
16353                 [ -n "${cl_user2[mds$i]}" ] ||
16354                         error "mds$i: only ${cl_user2[mds$i]} is registered"
16355
16356                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
16357                 [ -n "$user_rec1" ] ||
16358                         error "mds$i: User ${cl_user1[mds$i]} not registered"
16359                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
16360                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
16361                 [ -n "$user_rec2" ] ||
16362                         error "mds$i: User ${cl_user1[mds$i]} not registered"
16363                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
16364                      "$user_rec1 + 2 == $user_rec2"
16365                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
16366                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
16367                               "$user_rec1 + 2, but is $user_rec2"
16368                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
16369                 [ -n "$user_rec2" ] ||
16370                         error "mds$i: User ${cl_user2[mds$i]} not registered"
16371                 [ $user_rec1 == $user_rec2 ] ||
16372                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
16373                               "$user_rec1, but is $user_rec2"
16374         done
16375
16376         # force cl_user2 idle (2nd part) to just exceed changelog_max_idle_time
16377         local sleep2=$((idle_time - (SECONDS - start) + 1))
16378         echo "$(date +%s): sleep2 $sleep2/${idle_time}s"
16379         sleep $sleep2
16380
16381         # Generate one more changelog to trigger GC at fail_loc for cl_user2.
16382         # cl_user1 should be OK because it recently processed records.
16383         echo "$(date +%s): creating $((MDSCOUNT * 2)) files"
16384         for ((i = 0; i < MDSCOUNT * 2; i++)); do
16385                 $LFS mkdir -i $((i%MDSCOUNT)) $DIR/$tdir/d$i.$((i/MDSCOUNT+2))||
16386                         error "create $DIR/$tdir/d$i.$((i/MDSCOUNT+2)) failed"
16387         done
16388
16389         # ensure gc thread is done
16390         for i in $(mdts_nodes); do
16391                 wait_update $i "ps -e -o comm= | grep chlg_gc_thread" "" 20 ||
16392                         error "$i: GC-thread not done"
16393         done
16394
16395         local first_rec
16396         for (( i = 1; i <= MDSCOUNT; i++ )); do
16397                 # check cl_user1 still registered
16398                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
16399                         error "mds$i: User ${cl_user1[mds$i]} not registered"
16400                 # check cl_user2 unregistered
16401                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
16402                         error "mds$i: User ${cl_user2[mds$i]} still registered"
16403
16404                 # check changelogs are present and starting at $user_rec1 + 1
16405                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
16406                 [ -n "$user_rec1" ] ||
16407                         error "mds$i: User ${cl_user1[mds$i]} not registered"
16408                 first_rec=$($LFS changelog $(facet_svc mds$i) |
16409                             awk '{ print $1; exit; }')
16410
16411                 echo "mds$i: $(date +%s) verify rec $user_rec1+1 == $first_rec"
16412                 [ $((user_rec1 + 1)) == $first_rec ] ||
16413                         error "mds$i: rec $first_rec != $user_rec1 + 1"
16414         done
16415 }
16416 run_test 160f "changelog garbage collect (timestamped users)"
16417
16418 test_160g() {
16419         remote_mds_nodsh && skip "remote MDS with nodsh"
16420         [[ $MDS1_VERSION -ge $(version_code 2.14.55) ]] ||
16421                 skip "Need MDS version at least 2.14.55"
16422
16423         local mdts=$(comma_list $(mdts_nodes))
16424
16425         # Create a user
16426         changelog_register || error "first changelog_register failed"
16427         changelog_register || error "second changelog_register failed"
16428         local cl_users
16429         declare -A cl_user1
16430         declare -A cl_user2
16431         local user_rec1
16432         local user_rec2
16433         local i
16434
16435         # generate some changelog records to accumulate on each MDT
16436         # use all_char because created files should be evenly distributed
16437         test_mkdir -c $MDSCOUNT -H all_char $DIR/$tdir ||
16438                 error "test_mkdir $tdir failed"
16439         for ((i = 0; i < MDSCOUNT; i++)); do
16440                 $LFS mkdir -i $i $DIR/$tdir/d$i.1 $DIR/$tdir/d$i.2 ||
16441                         error "create $DIR/$tdir/d$i.1 failed"
16442         done
16443
16444         # check changelogs have been generated
16445         local nbcl=$(changelog_dump | wc -l)
16446         (( $nbcl > 0 )) || error "no changelogs found"
16447
16448         # reduce the max_idle_indexes value to make sure we exceed it
16449         for param in "changelog_max_idle_indexes=2" \
16450                      "changelog_gc=1" \
16451                      "changelog_min_gc_interval=2"; do
16452                 local MDT0=$(facet_svc $SINGLEMDS)
16453                 local var="${param%=*}"
16454                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
16455
16456                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
16457                 do_nodes $mdts $LCTL set_param mdd.*.$param ||
16458                         error "unable to set mdd.*.$param"
16459         done
16460
16461         local start=$SECONDS
16462         for i in $(seq $MDSCOUNT); do
16463                 cl_users=(${CL_USERS[mds$i]})
16464                 cl_user1[mds$i]="${cl_users[0]}"
16465                 cl_user2[mds$i]="${cl_users[1]}"
16466
16467                 [ -n "${cl_user1[mds$i]}" ] ||
16468                         error "mds$i: user1 is not registered"
16469                 [ -n "${cl_user2[mds$i]}" ] ||
16470                         error "mds$i: only ${cl_user1[mds$i]} is registered"
16471
16472                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
16473                 [ -n "$user_rec1" ] ||
16474                         error "mds$i: user1 ${cl_user1[mds$i]} not found"
16475                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
16476                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
16477                 [ -n "$user_rec2" ] ||
16478                         error "mds$i: user1 ${cl_user1[mds$i]} not found (2)"
16479                 echo "mds$i: verifying user1 ${cl_user1[mds$i]} clear: " \
16480                      "$user_rec1 + 2 == $user_rec2"
16481                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
16482                         error "mds$i: user1 ${cl_user1[mds$i]} index " \
16483                               "expected $user_rec1 + 2, but is $user_rec2"
16484                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
16485                 [ -n "$user_rec2" ] ||
16486                         error "mds$i: user2 ${cl_user2[mds$i]} not found"
16487                 [ $user_rec1 == $user_rec2 ] ||
16488                         error "mds$i: user2 ${cl_user2[mds$i]} index " \
16489                               "expected $user_rec1, but is $user_rec2"
16490         done
16491
16492         # ensure we are past the previous changelog_min_gc_interval set above
16493         local sleep2=$((start + 2 - SECONDS))
16494         (( sleep2 > 0 )) && echo "sleep $sleep2 for interval" && sleep $sleep2
16495         # Generate one more changelog to trigger GC at fail_loc for cl_user2.
16496         # cl_user1 should be OK because it recently processed records.
16497         for ((i = 0; i < MDSCOUNT; i++)); do
16498                 $LFS mkdir -i $i $DIR/$tdir/d$i.3 ||
16499                         error "create $DIR/$tdir/d$i.3 failed"
16500         done
16501
16502         # ensure gc thread is done
16503         for i in $(mdts_nodes); do
16504                 wait_update $i "ps -e -o comm= | grep chlg_gc_thread" "" 20 ||
16505                         error "$i: GC-thread not done"
16506         done
16507
16508         local first_rec
16509         for (( i = 1; i <= MDSCOUNT; i++ )); do
16510                 # check cl_user1 still registered
16511                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
16512                         error "mds$i: user1 ${cl_user1[mds$i]} not found (3)"
16513                 # check cl_user2 unregistered
16514                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
16515                         error "mds$i: user2 ${cl_user2[mds$i]} is registered"
16516
16517                 # check changelogs are present and starting at $user_rec1 + 1
16518                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
16519                 [ -n "$user_rec1" ] ||
16520                         error "mds$i: user1 ${cl_user1[mds$i]} not found (4)"
16521                 first_rec=$($LFS changelog $(facet_svc mds$i) |
16522                             awk '{ print $1; exit; }')
16523
16524                 echo "mds$i: $(date +%s) verify rec $user_rec1+1 == $first_rec"
16525                 [ $((user_rec1 + 1)) == $first_rec ] ||
16526                         error "mds$i: rec $first_rec != $user_rec1 + 1"
16527         done
16528 }
16529 run_test 160g "changelog garbage collect on idle records"
16530
16531 test_160h() {
16532         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16533         [[ $MDS1_VERSION -ge $(version_code 2.10.56) ]] ||
16534                 skip "Need MDS version at least 2.10.56"
16535
16536         local mdts=$(comma_list $(mdts_nodes))
16537
16538         # Create a user
16539         changelog_register || error "first changelog_register failed"
16540         changelog_register || error "second changelog_register failed"
16541         local cl_users
16542         declare -A cl_user1
16543         declare -A cl_user2
16544         local user_rec1
16545         local user_rec2
16546         local i
16547
16548         # generate some changelog records to accumulate on each MDT
16549         # use all_char because created files should be evenly distributed
16550         test_mkdir -c $MDSCOUNT -H all_char $DIR/$tdir ||
16551                 error "test_mkdir $tdir failed"
16552         for ((i = 0; i < MDSCOUNT; i++)); do
16553                 $LFS mkdir -i $i $DIR/$tdir/d$i.1 $DIR/$tdir/d$i.2 ||
16554                         error "create $DIR/$tdir/d$i.1 failed"
16555         done
16556
16557         # check changelogs have been generated
16558         local nbcl=$(changelog_dump | wc -l)
16559         [[ $nbcl -eq 0 ]] && error "no changelogs found"
16560
16561         for param in "changelog_max_idle_time=10" \
16562                      "changelog_gc=1" \
16563                      "changelog_min_gc_interval=2"; do
16564                 local MDT0=$(facet_svc $SINGLEMDS)
16565                 local var="${param%=*}"
16566                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
16567
16568                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
16569                 do_nodes $mdts $LCTL set_param mdd.*.$param
16570         done
16571
16572         # force cl_user2 to be idle (1st part)
16573         sleep 9
16574
16575         for i in $(seq $MDSCOUNT); do
16576                 cl_users=(${CL_USERS[mds$i]})
16577                 cl_user1[mds$i]="${cl_users[0]}"
16578                 cl_user2[mds$i]="${cl_users[1]}"
16579
16580                 [ -n "${cl_user1[mds$i]}" ] ||
16581                         error "mds$i: no user registered"
16582                 [ -n "${cl_user2[mds$i]}" ] ||
16583                         error "mds$i: only ${cl_user2[mds$i]} is registered"
16584
16585                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
16586                 [ -n "$user_rec1" ] ||
16587                         error "mds$i: User ${cl_user1[mds$i]} not registered"
16588                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
16589                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
16590                 [ -n "$user_rec2" ] ||
16591                         error "mds$i: User ${cl_user1[mds$i]} not registered"
16592                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
16593                      "$user_rec1 + 2 == $user_rec2"
16594                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
16595                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
16596                               "$user_rec1 + 2, but is $user_rec2"
16597                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
16598                 [ -n "$user_rec2" ] ||
16599                         error "mds$i: User ${cl_user2[mds$i]} not registered"
16600                 [ $user_rec1 == $user_rec2 ] ||
16601                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
16602                               "$user_rec1, but is $user_rec2"
16603         done
16604
16605         # force cl_user2 to be idle (2nd part) and to reach
16606         # changelog_max_idle_time
16607         sleep 2
16608
16609         # force each GC-thread start and block then
16610         # one per MDT/MDD, set fail_val accordingly
16611         #define OBD_FAIL_FORCE_GC_THREAD 0x1316
16612         do_nodes $mdts $LCTL set_param fail_loc=0x1316
16613
16614         # generate more changelogs to trigger fail_loc
16615         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
16616                 error "create $DIR/$tdir/${tfile}bis failed"
16617
16618         # stop MDT to stop GC-thread, should be done in back-ground as it will
16619         # block waiting for the thread to be released and exit
16620         declare -A stop_pids
16621         for i in $(seq $MDSCOUNT); do
16622                 stop mds$i &
16623                 stop_pids[mds$i]=$!
16624         done
16625
16626         for i in $(mdts_nodes); do
16627                 local facet
16628                 local nb=0
16629                 local facets=$(facets_up_on_host $i)
16630
16631                 for facet in ${facets//,/ }; do
16632                         if [[ $facet == mds* ]]; then
16633                                 nb=$((nb + 1))
16634                         fi
16635                 done
16636                 # ensure each MDS's gc threads are still present and all in "R"
16637                 # state (OBD_FAIL_FORCE_GC_THREAD effect!)
16638                 [[ $(do_node $i pgrep chlg_gc_thread | wc -l) -eq $nb ]] ||
16639                         error "$i: expected $nb GC-thread"
16640                 wait_update $i \
16641                         "ps -C chlg_gc_thread -o state --no-headers | uniq" \
16642                         "R" 20 ||
16643                         error "$i: GC-thread not found in R-state"
16644                 # check umounts of each MDT on MDS have reached kthread_stop()
16645                 [[ $(do_node $i pgrep umount | wc -l) -eq $nb ]] ||
16646                         error "$i: expected $nb umount"
16647                 wait_update $i \
16648                         "ps -C umount -o state --no-headers | uniq" "D" 20 ||
16649                         error "$i: umount not found in D-state"
16650         done
16651
16652         # release all GC-threads
16653         do_nodes $mdts $LCTL set_param fail_loc=0
16654
16655         # wait for MDT stop to complete
16656         for i in $(seq $MDSCOUNT); do
16657                 wait ${stop_pids[mds$i]} || error "mds$i: stop failed"
16658         done
16659
16660         # XXX
16661         # may try to check if any orphan changelog records are present
16662         # via ldiskfs/zfs and llog_reader...
16663
16664         # re-start/mount MDTs
16665         for i in $(seq $MDSCOUNT); do
16666                 start mds$i $(mdsdevname $i) $MDS_MOUNT_OPTS ||
16667                         error "Fail to start mds$i"
16668         done
16669
16670         local first_rec
16671         for i in $(seq $MDSCOUNT); do
16672                 # check cl_user1 still registered
16673                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
16674                         error "mds$i: User ${cl_user1[mds$i]} not registered"
16675                 # check cl_user2 unregistered
16676                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
16677                         error "mds$i: User ${cl_user2[mds$i]} still registered"
16678
16679                 # check changelogs are present and starting at $user_rec1 + 1
16680                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
16681                 [ -n "$user_rec1" ] ||
16682                         error "mds$i: User ${cl_user1[mds$i]} not registered"
16683                 first_rec=$($LFS changelog $(facet_svc mds$i) |
16684                             awk '{ print $1; exit; }')
16685
16686                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
16687                 [ $((user_rec1 + 1)) == $first_rec ] ||
16688                         error "mds$i: first index should be $user_rec1 + 1, " \
16689                               "but is $first_rec"
16690         done
16691 }
16692 run_test 160h "changelog gc thread stop upon umount, orphan records delete " \
16693               "during mount"
16694
16695 test_160i() {
16696
16697         local mdts=$(comma_list $(mdts_nodes))
16698
16699         changelog_register || error "first changelog_register failed"
16700
16701         # generate some changelog records to accumulate on each MDT
16702         # use all_char because created files should be evenly distributed
16703         test_mkdir -c $MDSCOUNT -H all_char $DIR/$tdir ||
16704                 error "test_mkdir $tdir failed"
16705         for ((i = 0; i < MDSCOUNT; i++)); do
16706                 $LFS mkdir -i $i $DIR/$tdir/d$i.1 $DIR/$tdir/d$i.2 ||
16707                         error "create $DIR/$tdir/d$i.1 failed"
16708         done
16709
16710         # check changelogs have been generated
16711         local nbcl=$(changelog_dump | wc -l)
16712         [[ $nbcl -eq 0 ]] && error "no changelogs found"
16713
16714         # simulate race between register and unregister
16715         # XXX as fail_loc is set per-MDS, with DNE configs the race
16716         # simulation will only occur for one MDT per MDS and for the
16717         # others the normal race scenario will take place
16718         #define CFS_FAIL_CHLOG_USER_REG_UNREG_RACE          0x1315
16719         do_nodes $mdts $LCTL set_param fail_loc=0x10001315
16720         do_nodes $mdts $LCTL set_param fail_val=1
16721
16722         # unregister 1st user
16723         changelog_deregister &
16724         local pid1=$!
16725         # wait some time for deregister work to reach race rdv
16726         sleep 2
16727         # register 2nd user
16728         changelog_register || error "2nd user register failed"
16729
16730         wait $pid1 || error "1st user deregister failed"
16731
16732         local i
16733         local last_rec
16734         declare -A LAST_REC
16735         for i in $(seq $MDSCOUNT); do
16736                 if changelog_users mds$i | grep "^cl"; then
16737                         # make sure new records are added with one user present
16738                         LAST_REC[mds$i]=$(changelog_users $SINGLEMDS |
16739                                           awk '/^current.index:/ { print $NF }')
16740                 else
16741                         error "mds$i has no user registered"
16742                 fi
16743         done
16744
16745         # generate more changelog records to accumulate on each MDT
16746         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
16747                 error "create $DIR/$tdir/${tfile}bis failed"
16748
16749         for i in $(seq $MDSCOUNT); do
16750                 last_rec=$(changelog_users $SINGLEMDS |
16751                            awk '/^current.index:/ { print $NF }')
16752                 echo "verify changelogs are on: $last_rec != ${LAST_REC[mds$i]}"
16753                 [ $last_rec != ${LAST_REC[mds$i]} ] ||
16754                         error "changelogs are off on mds$i"
16755         done
16756 }
16757 run_test 160i "changelog user register/unregister race"
16758
16759 test_160j() {
16760         remote_mds_nodsh && skip "remote MDS with nodsh"
16761         [[ $MDS1_VERSION -lt $(version_code 2.12.56) ]] &&
16762                 skip "Need MDS version at least 2.12.56"
16763
16764         mount_client $MOUNT2 || error "mount_client on $MOUNT2 failed"
16765         stack_trap "umount $MOUNT2" EXIT
16766
16767         changelog_register || error "first changelog_register failed"
16768         stack_trap "changelog_deregister" EXIT
16769
16770         # generate some changelog
16771         # use all_char because created files should be evenly distributed
16772         test_mkdir -c $MDSCOUNT -H all_char $DIR/$tdir ||
16773                 error "mkdir $tdir failed"
16774         for ((i = 0; i < MDSCOUNT; i++)); do
16775                 $LFS mkdir -i $i $DIR/$tdir/d$i.1 $DIR/$tdir/d$i.2 ||
16776                         error "create $DIR/$tdir/d$i.1 failed"
16777         done
16778
16779         # open the changelog device
16780         exec 3>/dev/changelog-$FSNAME-MDT0000
16781         stack_trap "exec 3>&-" EXIT
16782         exec 4</dev/changelog-$FSNAME-MDT0000
16783         stack_trap "exec 4<&-" EXIT
16784
16785         # umount the first lustre mount
16786         umount $MOUNT
16787         stack_trap "mount_client $MOUNT" EXIT
16788
16789         # read changelog, which may or may not fail, but should not crash
16790         cat <&4 >/dev/null
16791
16792         # clear changelog
16793         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
16794         changelog_users $SINGLEMDS | grep -q $cl_user ||
16795                 error "User $cl_user not found in changelog_users"
16796
16797         printf 'clear:'$cl_user':0' >&3
16798 }
16799 run_test 160j "client can be umounted while its chanangelog is being used"
16800
16801 test_160k() {
16802         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16803         remote_mds_nodsh && skip "remote MDS with nodsh"
16804
16805         mkdir -p $DIR/$tdir/1/1
16806
16807         changelog_register || error "changelog_register failed"
16808         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
16809
16810         changelog_users $SINGLEMDS | grep -q $cl_user ||
16811                 error "User '$cl_user' not found in changelog_users"
16812 #define OBD_FAIL_MDS_CHANGELOG_REORDER 0x15d
16813         do_facet mds1 $LCTL set_param fail_loc=0x8000015d fail_val=3
16814         rmdir $DIR/$tdir/1/1 & sleep 1
16815         mkdir $DIR/$tdir/2
16816         touch $DIR/$tdir/2/2
16817         rm -rf $DIR/$tdir/2
16818
16819         wait
16820         sleep 4
16821
16822         changelog_dump | grep rmdir || error "rmdir not recorded"
16823 }
16824 run_test 160k "Verify that changelog records are not lost"
16825
16826 # Verifies that a file passed as a parameter has recently had an operation
16827 # performed on it that has generated an MTIME changelog which contains the
16828 # correct parent FID. As files might reside on a different MDT from the
16829 # parent directory in DNE configurations, the FIDs are translated to paths
16830 # before being compared, which should be identical
16831 compare_mtime_changelog() {
16832         local file="${1}"
16833         local mdtidx
16834         local mtime
16835         local cl_fid
16836         local pdir
16837         local dir
16838
16839         mdtidx=$($LFS getstripe --mdt-index $file)
16840         mdtidx=$(printf "%04x" $mdtidx)
16841
16842         # Obtain the parent FID from the MTIME changelog
16843         mtime=$($LFS changelog $FSNAME-MDT$mdtidx | tail -n 1 | grep MTIME)
16844         [ -z "$mtime" ] && error "MTIME changelog not recorded"
16845
16846         cl_fid=$(sed -e 's/.* p=//' -e 's/ .*//' <<<$mtime)
16847         [ -z "$cl_fid" ] && error "parent FID not present"
16848
16849         # Verify that the path for the parent FID is the same as the path for
16850         # the test directory
16851         pdir=$($LFS fid2path $MOUNT "$cl_fid")
16852
16853         dir=$(dirname $1)
16854
16855         [[ "${pdir%/}" == "$dir" ]] ||
16856                 error "MTIME changelog parent FID is wrong, expected $dir, got $pdir"
16857 }
16858
16859 test_160l() {
16860         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16861
16862         remote_mds_nodsh && skip "remote MDS with nodsh"
16863         [[ $MDS1_VERSION -ge $(version_code 2.13.55) ]] ||
16864                 skip "Need MDS version at least 2.13.55"
16865
16866         local cl_user
16867
16868         changelog_register || error "changelog_register failed"
16869         cl_user="${CL_USERS[$SINGLEMDS]%% *}"
16870
16871         changelog_users $SINGLEMDS | grep -q $cl_user ||
16872                 error "User '$cl_user' not found in changelog_users"
16873
16874         # Clear some types so that MTIME changelogs are generated
16875         changelog_chmask "-CREAT"
16876         changelog_chmask "-CLOSE"
16877
16878         test_mkdir $DIR/$tdir || error "failed to mkdir $DIR/$tdir"
16879
16880         # Test CL_MTIME during setattr
16881         touch $DIR/$tdir/$tfile
16882         compare_mtime_changelog $DIR/$tdir/$tfile
16883
16884         # Test CL_MTIME during close
16885         $MULTIOP $DIR/$tdir/${tfile}_2 O_2w4096c || error "multiop failed"
16886         compare_mtime_changelog $DIR/$tdir/${tfile}_2
16887 }
16888 run_test 160l "Verify that MTIME changelog records contain the parent FID"
16889
16890 test_160m() {
16891         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16892         [[ $MDS1_VERSION -ge $(version_code 2.14.51) ]] ||
16893                 skip "Need MDS version at least 2.14.51"
16894         local cl_users
16895         local cl_user1
16896         local cl_user2
16897         local pid1
16898
16899         # Create a user
16900         changelog_register || error "first changelog_register failed"
16901         changelog_register || error "second changelog_register failed"
16902
16903         cl_users=(${CL_USERS[mds1]})
16904         cl_user1="${cl_users[0]}"
16905         cl_user2="${cl_users[1]}"
16906         # generate some changelog records to accumulate on MDT0
16907         test_mkdir -p -i0 -c1 $DIR/$tdir || error "test_mkdir $tdir failed"
16908         createmany -m $DIR/$tdir/$tfile 50 ||
16909                 error "create $DIR/$tdir/$tfile failed"
16910         unlinkmany $DIR/$tdir/$tfile 50 || error "unlinkmany failed"
16911         rm -f $DIR/$tdir
16912
16913         # check changelogs have been generated
16914         local nbcl=$(changelog_dump | wc -l)
16915         [[ $nbcl -eq 0 ]] && error "no changelogs found"
16916
16917 #define OBD_FAIL_MDS_CHANGELOG_RACE      0x15f
16918         do_facet mds1 $LCTL set_param fail_loc=0x8000015f fail_val=0
16919
16920         __changelog_clear mds1 $cl_user1 +10
16921         __changelog_clear mds1 $cl_user2 0 &
16922         pid1=$!
16923         sleep 2
16924         __changelog_clear mds1 $cl_user1 0 ||
16925                 error "fail to cancel record for $cl_user1"
16926         wait $pid1
16927         [[ $? -eq 0 ]] || error "fail to cancel record for $cl_user2"
16928 }
16929 run_test 160m "Changelog clear race"
16930
16931 test_160n() {
16932         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16933         [[ $MDS1_VERSION -ge $(version_code 2.14.51) ]] ||
16934                 skip "Need MDS version at least 2.14.51"
16935         local cl_users
16936         local cl_user1
16937         local cl_user2
16938         local pid1
16939         local first_rec
16940         local last_rec=0
16941
16942         # Create a user
16943         changelog_register || error "first changelog_register failed"
16944
16945         cl_users=(${CL_USERS[mds1]})
16946         cl_user1="${cl_users[0]}"
16947
16948         # generate some changelog records to accumulate on MDT0
16949         test_mkdir -i0 -c1 $DIR/$tdir || error "test_mkdir $tdir failed"
16950         first_rec=$(changelog_users $SINGLEMDS |
16951                         awk '/^current.index:/ { print $NF }')
16952         while (( last_rec < (( first_rec + 65000)) )); do
16953                 createmany -m $DIR/$tdir/$tfile 10000 ||
16954                         error "create $DIR/$tdir/$tfile failed"
16955
16956                 for i in $(seq 0 10000); do
16957                         mrename $DIR/$tdir/$tfile$i $DIR/$tdir/$tfile-new$i \
16958                                 > /dev/null
16959                 done
16960
16961                 unlinkmany $DIR/$tdir/$tfile-new 10000 ||
16962                         error "unlinkmany failed unlink"
16963                 last_rec=$(changelog_users $SINGLEMDS |
16964                         awk '/^current.index:/ { print $NF }')
16965                 echo last record $last_rec
16966                 (( last_rec == 0 )) && error "no changelog found"
16967         done
16968
16969 #define OBD_FAIL_MDS_CHANGELOG_DEL       0x16c
16970         do_facet mds1 $LCTL set_param fail_loc=0x8000016c fail_val=0
16971
16972         __changelog_clear mds1 $cl_user1 0 &
16973         pid1=$!
16974         sleep 2
16975         __changelog_clear mds1 $cl_user1 0 ||
16976                 error "fail to cancel record for $cl_user1"
16977         wait $pid1
16978         [[ $? -eq 0 ]] || error "fail to cancel record for $cl_user2"
16979 }
16980 run_test 160n "Changelog destroy race"
16981
16982 test_160o() {
16983         local mdt="$(facet_svc $SINGLEMDS)"
16984
16985         [[ $PARALLEL != "yes" ]] || skip "skip parallel run"
16986         remote_mds_nodsh && skip "remote MDS with nodsh"
16987         [ $MDS1_VERSION -ge $(version_code 2.14.52) ] ||
16988                 skip "Need MDS version at least 2.14.52"
16989
16990         changelog_register --user test_160o -m unlnk+close+open ||
16991                 error "changelog_register failed"
16992
16993         do_facet $SINGLEMDS $LCTL --device $mdt \
16994                                 changelog_register -u "Tt3_-#" &&
16995                 error "bad symbols in name should fail"
16996
16997         do_facet $SINGLEMDS $LCTL --device $mdt \
16998                                 changelog_register -u test_160o &&
16999                 error "the same name registration should fail"
17000
17001         do_facet $SINGLEMDS $LCTL --device $mdt \
17002                         changelog_register -u test_160toolongname &&
17003                 error "too long name registration should fail"
17004
17005         changelog_chmask "MARK+HSM"
17006         lctl get_param mdd.*.changelog*mask
17007         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
17008         changelog_users $SINGLEMDS | grep -q $cl_user ||
17009                 error "User $cl_user not found in changelog_users"
17010         #verify username
17011         echo $cl_user | grep -q test_160o ||
17012                 error "User $cl_user has no specific name 'test160o'"
17013
17014         # change something
17015         changelog_clear 0 || error "changelog_clear failed"
17016         # generate some changelog records to accumulate on MDT0
17017         test_mkdir -p -i0 -c1 $DIR/$tdir || error "test_mkdir $tdir failed"
17018         touch $DIR/$tdir/$tfile                 # open 1
17019
17020         OPENS=$(changelog_dump | grep -c "OPEN")
17021         [[ $OPENS -eq 1 ]] || error "OPEN changelog mask count $OPENS != 1"
17022
17023         # must be no MKDIR it wasn't set as user mask
17024         MKDIR=$(changelog_dump | grep -c "MKDIR")
17025         [[ $MKDIR -eq 0 ]] || error "MKDIR changelog mask found $MKDIR > 0"
17026
17027         oldmask=$(do_facet $SINGLEMDS $LCTL get_param \
17028                                 mdd.$mdt.changelog_current_mask -n)
17029         # register maskless user
17030         changelog_register || error "changelog_register failed"
17031         # effective mask should be not changed because it is not minimal
17032         mask=$(do_facet $SINGLEMDS $LCTL get_param \
17033                                 mdd.$mdt.changelog_current_mask -n)
17034         [[ $mask == $oldmask ]] || error "mask was changed: $mask vs $oldmask"
17035         # set server mask to minimal value
17036         changelog_chmask "MARK"
17037         # check effective mask again, should be treated as DEFMASK now
17038         mask=$(do_facet $SINGLEMDS $LCTL get_param \
17039                                 mdd.$mdt.changelog_current_mask -n)
17040         [[ $mask == *"HLINK"* ]] || error "mask is not DEFMASK as expected"
17041
17042         do_facet $SINGLEMDS $LCTL --device $mdt \
17043                                 changelog_deregister -u test_160o ||
17044                 error "cannot deregister by name"
17045 }
17046 run_test 160o "changelog user name and mask"
17047
17048 test_160p() {
17049         remote_mds_nodsh && skip "remote MDS with nodsh" && return
17050         [[ $MDS1_VERSION -ge $(version_code 2.14.51) ]] ||
17051                 skip "Need MDS version at least 2.14.51"
17052         [[ "$mds1_FSTYPE" == "ldiskfs" ]] || skip "ldiskfs only test"
17053         local cl_users
17054         local cl_user1
17055         local entry_count
17056
17057         # Create a user
17058         changelog_register || error "first changelog_register failed"
17059
17060         cl_users=(${CL_USERS[mds1]})
17061         cl_user1="${cl_users[0]}"
17062
17063         test_mkdir -p -i0 -c1 $DIR/$tdir || error "test_mkdir $tdir failed"
17064         createmany -m $DIR/$tdir/$tfile 50 ||
17065                 error "create $DIR/$tdir/$tfile failed"
17066         unlinkmany $DIR/$tdir/$tfile 50 || error "unlinkmany failed"
17067         rm -rf $DIR/$tdir
17068
17069         # check changelogs have been generated
17070         entry_count=$(changelog_dump | wc -l)
17071         ((entry_count != 0)) || error "no changelog entries found"
17072
17073         # remove changelog_users and check that orphan entries are removed
17074         stop mds1
17075         local dev=$(mdsdevname 1)
17076         do_facet mds1 "$DEBUGFS -w -R 'rm changelog_users' $dev"
17077         start mds1 $dev $MDS_MOUNT_OPTS || error "cannot start mds1"
17078         entry_count=$(changelog_dump | wc -l)
17079         ((entry_count == 0)) ||
17080                 error "found $entry_count changelog entries, expected none"
17081 }
17082 run_test 160p "Changelog orphan cleanup with no users"
17083
17084 test_160q() {
17085         local mdt="$(facet_svc $SINGLEMDS)"
17086         local clu
17087
17088         [[ $PARALLEL != "yes" ]] || skip "skip parallel run"
17089         remote_mds_nodsh && skip "remote MDS with nodsh"
17090         [ $MDS1_VERSION -ge $(version_code 2.14.54) ] ||
17091                 skip "Need MDS version at least 2.14.54"
17092
17093         # set server mask to minimal value like server init does
17094         changelog_chmask "MARK"
17095         clu=$(do_facet $SINGLEMDS $LCTL --device $mdt changelog_register -n) ||
17096                 error "changelog_register failed"
17097         # check effective mask again, should be treated as DEFMASK now
17098         mask=$(do_facet $SINGLEMDS $LCTL get_param \
17099                                 mdd.$mdt.changelog_current_mask -n)
17100         do_facet $SINGLEMDS $LCTL --device $mdt changelog_deregister $clu ||
17101                 error "changelog_deregister failed"
17102         [[ $mask == *"HLINK"* ]] || error "mask is not DEFMASK as expected"
17103 }
17104 run_test 160q "changelog effective mask is DEFMASK if not set"
17105
17106 test_160s() {
17107         remote_mds_nodsh && skip "remote MDS with nodsh"
17108         (( $MDS1_VERSION >= $(version_code 2.14.55) )) ||
17109                 skip "Need MDS version at least 2.14.55"
17110
17111         local mdts=$(comma_list $(mdts_nodes))
17112
17113         #define OBD_FAIL_TIME_IN_CHLOG_USER     0x1314
17114         do_nodes $mdts $LCTL set_param fail_loc=0x1314 \
17115                                        fail_val=$((24 * 3600 * 10))
17116
17117         # Create a user which is 10 days old
17118         changelog_register || error "first changelog_register failed"
17119         local cl_users
17120         declare -A cl_user1
17121         local i
17122
17123         # generate some changelog records to accumulate on each MDT
17124         # use all_char because created files should be evenly distributed
17125         test_mkdir -c $MDSCOUNT -H all_char $DIR/$tdir ||
17126                 error "test_mkdir $tdir failed"
17127         for ((i = 0; i < MDSCOUNT; i++)); do
17128                 $LFS mkdir -i $i $DIR/$tdir/d$i.1 $DIR/$tdir/d$i.2 ||
17129                         error "create $DIR/$tdir/d$i.1 failed"
17130         done
17131
17132         # check changelogs have been generated
17133         local nbcl=$(changelog_dump | wc -l)
17134         (( nbcl > 0 )) || error "no changelogs found"
17135
17136         # reduce the max_idle_indexes value to make sure we exceed it
17137         for param in "changelog_max_idle_indexes=2097446912" \
17138                      "changelog_max_idle_time=2592000" \
17139                      "changelog_gc=1" \
17140                      "changelog_min_gc_interval=2"; do
17141                 local MDT0=$(facet_svc $SINGLEMDS)
17142                 local var="${param%=*}"
17143                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
17144
17145                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
17146                 do_nodes $mdts $LCTL set_param mdd.*.$param ||
17147                         error "unable to set mdd.*.$param"
17148         done
17149
17150         local start=$SECONDS
17151         for i in $(seq $MDSCOUNT); do
17152                 cl_users=(${CL_USERS[mds$i]})
17153                 cl_user1[mds$i]="${cl_users[0]}"
17154
17155                 [[ -n "${cl_user1[mds$i]}" ]] ||
17156                         error "mds$i: no user registered"
17157         done
17158
17159         #define OBD_FAIL_MDS_CHANGELOG_IDX_PUMP   0x16d
17160         do_nodes $mdts $LCTL set_param fail_loc=0x16d fail_val=500000000
17161
17162         # ensure we are past the previous changelog_min_gc_interval set above
17163         local sleep2=$((start + 2 - SECONDS))
17164         (( sleep2 > 0 )) && echo "sleep $sleep2 for interval" && sleep $sleep2
17165
17166         # Generate one more changelog to trigger GC
17167         for ((i = 0; i < MDSCOUNT; i++)); do
17168                 $LFS mkdir -i $i $DIR/$tdir/d$i.3 $DIR/$tdir/d$i.4 ||
17169                         error "create $DIR/$tdir/d$i.3 failed"
17170         done
17171
17172         # ensure gc thread is done
17173         for node in $(mdts_nodes); do
17174                 wait_update $node "pgrep chlg_gc_thread" "" 20 ||
17175                         error "$node: GC-thread not done"
17176         done
17177
17178         do_nodes $mdts $LCTL set_param fail_loc=0
17179
17180         for (( i = 1; i <= MDSCOUNT; i++ )); do
17181                 # check cl_user1 is purged
17182                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" &&
17183                         error "mds$i: User ${cl_user1[mds$i]} is registered"
17184         done
17185         return 0
17186 }
17187 run_test 160s "changelog garbage collect on idle records * time"
17188
17189 test_161a() {
17190         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17191
17192         test_mkdir -c1 $DIR/$tdir
17193         cp /etc/hosts $DIR/$tdir/$tfile
17194         test_mkdir -c1 $DIR/$tdir/foo1
17195         test_mkdir -c1 $DIR/$tdir/foo2
17196         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
17197         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
17198         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
17199         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
17200         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
17201         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
17202                 $LFS fid2path $DIR $FID
17203                 error "bad link ea"
17204         fi
17205         # middle
17206         rm $DIR/$tdir/foo2/zachary
17207         # last
17208         rm $DIR/$tdir/foo2/thor
17209         # first
17210         rm $DIR/$tdir/$tfile
17211         # rename
17212         mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
17213         [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ] &&
17214                 { $LFS fid2path $DIR $FID; error "bad link rename"; }
17215         rm $DIR/$tdir/foo2/maggie
17216
17217         # overflow the EA
17218         local longname=$tfile.avg_len_is_thirty_two_
17219         stack_trap "unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
17220                 error_noexit 'failed to unlink many hardlinks'" EXIT
17221         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
17222                 error "failed to hardlink many files"
17223         links=$($LFS fid2path $DIR $FID | wc -l)
17224         echo -n "${links}/1000 links in link EA"
17225         [[ $links -gt 60 ]] || error "expected at least 60 links in link EA"
17226 }
17227 run_test 161a "link ea sanity"
17228
17229 test_161b() {
17230         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17231         [ $MDSCOUNT -lt 2 ] && skip_env "skipping remote directory test"
17232
17233         local MDTIDX=1
17234         local remote_dir=$DIR/$tdir/remote_dir
17235
17236         mkdir -p $DIR/$tdir
17237         $LFS mkdir -i $MDTIDX $remote_dir ||
17238                 error "create remote directory failed"
17239
17240         cp /etc/hosts $remote_dir/$tfile
17241         mkdir -p $remote_dir/foo1
17242         mkdir -p $remote_dir/foo2
17243         ln $remote_dir/$tfile $remote_dir/foo1/sofia
17244         ln $remote_dir/$tfile $remote_dir/foo2/zachary
17245         ln $remote_dir/$tfile $remote_dir/foo1/luna
17246         ln $remote_dir/$tfile $remote_dir/foo2/thor
17247
17248         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
17249                      tr -d ']')
17250         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
17251                 $LFS fid2path $DIR $FID
17252                 error "bad link ea"
17253         fi
17254         # middle
17255         rm $remote_dir/foo2/zachary
17256         # last
17257         rm $remote_dir/foo2/thor
17258         # first
17259         rm $remote_dir/$tfile
17260         # rename
17261         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
17262         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
17263         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
17264                 $LFS fid2path $DIR $FID
17265                 error "bad link rename"
17266         fi
17267         rm $remote_dir/foo2/maggie
17268
17269         # overflow the EA
17270         local longname=filename_avg_len_is_thirty_two_
17271         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
17272                 error "failed to hardlink many files"
17273         links=$($LFS fid2path $DIR $FID | wc -l)
17274         echo -n "${links}/1000 links in link EA"
17275         [[ ${links} -gt 60 ]] ||
17276                 error "expected at least 60 links in link EA"
17277         unlinkmany $remote_dir/foo2/$longname 1000 ||
17278         error "failed to unlink many hardlinks"
17279 }
17280 run_test 161b "link ea sanity under remote directory"
17281
17282 test_161c() {
17283         remote_mds_nodsh && skip "remote MDS with nodsh"
17284         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17285         [[ $MDS1_VERSION -lt $(version_code 2.1.5) ]] &&
17286                 skip "Need MDS version at least 2.1.5"
17287
17288         # define CLF_RENAME_LAST 0x0001
17289         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
17290         changelog_register || error "changelog_register failed"
17291
17292         rm -rf $DIR/$tdir
17293         test_mkdir -i $((MDSCOUNT - 1)) $DIR/$tdir
17294         touch $DIR/$tdir/foo_161c
17295         touch $DIR/$tdir/bar_161c
17296         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
17297         changelog_dump | grep RENME | tail -n 5
17298         local flags=$(changelog_dump | grep "RENME.*bar_161c" | cut -f5 -d' ')
17299         changelog_clear 0 || error "changelog_clear failed"
17300         if [ x$flags != "x0x1" ]; then
17301                 error "flag $flags is not 0x1"
17302         fi
17303
17304         echo "rename overwrite target with nlink = 1, changelog flags=$flags"
17305         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
17306         touch $DIR/$tdir/foo_161c
17307         touch $DIR/$tdir/bar_161c
17308         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
17309         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
17310         changelog_dump | grep RENME | tail -n 5
17311         flags=$(changelog_dump | grep "RENME.*bar_161c" | cut -f5 -d' ')
17312         changelog_clear 0 || error "changelog_clear failed"
17313         if [ x$flags != "x0x0" ]; then
17314                 error "flag $flags is not 0x0"
17315         fi
17316         echo "rename overwrite a target having nlink > 1," \
17317                 "changelog record has flags of $flags"
17318
17319         # rename doesn't overwrite a target (changelog flag 0x0)
17320         touch $DIR/$tdir/foo_161c
17321         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
17322         changelog_dump | grep RENME | tail -n 5
17323         flags=$(changelog_dump | grep RENME | tail -1 | cut -f5 -d' ')
17324         changelog_clear 0 || error "changelog_clear failed"
17325         if [ x$flags != "x0x0" ]; then
17326                 error "flag $flags is not 0x0"
17327         fi
17328         echo "rename doesn't overwrite a target," \
17329                 "changelog record has flags of $flags"
17330
17331         # define CLF_UNLINK_LAST 0x0001
17332         # unlink a file having nlink = 1 (changelog flag 0x1)
17333         rm -f $DIR/$tdir/foo2_161c
17334         changelog_dump | grep UNLNK | tail -n 5
17335         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
17336         changelog_clear 0 || error "changelog_clear failed"
17337         if [ x$flags != "x0x1" ]; then
17338                 error "flag $flags is not 0x1"
17339         fi
17340         echo "unlink a file having nlink = 1," \
17341                 "changelog record has flags of $flags"
17342
17343         # unlink a file having nlink > 1 (changelog flag 0x0)
17344         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
17345         rm -f $DIR/$tdir/foobar_161c
17346         changelog_dump | grep UNLNK | tail -n 5
17347         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
17348         changelog_clear 0 || error "changelog_clear failed"
17349         if [ x$flags != "x0x0" ]; then
17350                 error "flag $flags is not 0x0"
17351         fi
17352         echo "unlink a file having nlink > 1, changelog record flags '$flags'"
17353 }
17354 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
17355
17356 test_161d() {
17357         remote_mds_nodsh && skip "remote MDS with nodsh"
17358         [ -n "$FILESET" ] && skip "Not functional for FILESET set"
17359
17360         local pid
17361         local fid
17362
17363         changelog_register || error "changelog_register failed"
17364
17365         # work in a standalone dir to avoid locking on $DIR/$MOUNT to
17366         # interfer with $MOUNT/.lustre/fid/ access
17367         mkdir $DIR/$tdir
17368         [[ $? -eq 0 ]] || error "mkdir failed"
17369
17370         #define OBD_FAIL_LLITE_CREATE_NODE_PAUSE 0x140c | OBD_FAIL_ONCE
17371         $LCTL set_param fail_loc=0x8000140c
17372         # 5s pause
17373         $LCTL set_param fail_val=5
17374
17375         # create file
17376         echo foofoo > $DIR/$tdir/$tfile &
17377         pid=$!
17378
17379         # wait for create to be delayed
17380         sleep 2
17381
17382         ps -p $pid
17383         [[ $? -eq 0 ]] || error "create should be blocked"
17384
17385         local tempfile="$(mktemp --tmpdir $tfile.XXXXXX)"
17386         stack_trap "rm -f $tempfile"
17387         fid=$(changelog_extract_field "CREAT" "$tfile" "t=")
17388         cat $MOUNT/.lustre/fid/$fid 2>/dev/null >$tempfile || error "cat failed"
17389         # some delay may occur during ChangeLog publishing and file read just
17390         # above, that could allow file write to happen finally
17391         [[ -s $tempfile ]] && echo "file should be empty"
17392
17393         $LCTL set_param fail_loc=0
17394
17395         wait $pid
17396         [[ $? -eq 0 ]] || error "create failed"
17397 }
17398 run_test 161d "create with concurrent .lustre/fid access"
17399
17400 check_path() {
17401         local expected="$1"
17402         shift
17403         local fid="$2"
17404
17405         local path
17406         path=$($LFS fid2path "$@")
17407         local rc=$?
17408
17409         if [ $rc -ne 0 ]; then
17410                 error "path looked up of '$expected' failed: rc=$rc"
17411         elif [ "$path" != "$expected" ]; then
17412                 error "path looked up '$path' instead of '$expected'"
17413         else
17414                 echo "FID '$fid' resolves to path '$path' as expected"
17415         fi
17416 }
17417
17418 test_162a() { # was test_162
17419         test_mkdir -p -c1 $DIR/$tdir/d2
17420         touch $DIR/$tdir/d2/$tfile
17421         touch $DIR/$tdir/d2/x1
17422         touch $DIR/$tdir/d2/x2
17423         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
17424         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
17425         # regular file
17426         local fid=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
17427         check_path "$tdir/d2/$tfile" $FSNAME "$fid" --link 0
17428
17429         # softlink
17430         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
17431         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
17432         check_path "$tdir/d2/p/q/r/slink" $FSNAME "$fid" --link 0
17433
17434         # softlink to wrong file
17435         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
17436         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
17437         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME "$fid" --link 0
17438
17439         # hardlink
17440         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
17441         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
17442         fid=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
17443         # fid2path dir/fsname should both work
17444         check_path "$tdir/d2/a/b/c/new_file" $FSNAME "$fid" --link 1
17445         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR "$fid" --link 0
17446
17447         # hardlink count: check that there are 2 links
17448         local nlinks=$($LFS fid2path $DIR "$fid" | wc -l)
17449         [ $nlinks -eq 2 ] || error "expect 2 links, found $nlinks"
17450
17451         # hardlink indexing: remove the first link
17452         rm $DIR/$tdir/d2/p/q/r/hlink
17453         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $fid --link 0
17454 }
17455 run_test 162a "path lookup sanity"
17456
17457 test_162b() {
17458         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17459         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17460
17461         mkdir $DIR/$tdir
17462         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
17463                                 error "create striped dir failed"
17464
17465         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
17466                                         tail -n 1 | awk '{print $2}')
17467         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
17468
17469         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
17470         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
17471
17472         # regular file
17473         for ((i=0;i<5;i++)); do
17474                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
17475                         error "get fid for f$i failed"
17476                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0
17477
17478                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
17479                         error "get fid for d$i failed"
17480                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0
17481         done
17482
17483         return 0
17484 }
17485 run_test 162b "striped directory path lookup sanity"
17486
17487 # LU-4239: Verify fid2path works with paths 100 or more directories deep
17488 test_162c() {
17489         [[ $MDS1_VERSION -lt $(version_code 2.7.51) ]] &&
17490                 skip "Need MDS version at least 2.7.51"
17491
17492         local lpath=$tdir.local
17493         local rpath=$tdir.remote
17494
17495         test_mkdir $DIR/$lpath
17496         test_mkdir $DIR/$rpath
17497
17498         for ((i = 0; i <= 101; i++)); do
17499                 lpath="$lpath/$i"
17500                 mkdir $DIR/$lpath
17501                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
17502                         error "get fid for local directory $DIR/$lpath failed"
17503                 check_path "$DIR/$lpath" $MOUNT $FID --link 0
17504
17505                 rpath="$rpath/$i"
17506                 test_mkdir $DIR/$rpath
17507                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
17508                         error "get fid for remote directory $DIR/$rpath failed"
17509                 check_path "$DIR/$rpath" $MOUNT $FID --link 0
17510         done
17511
17512         return 0
17513 }
17514 run_test 162c "fid2path works with paths 100 or more directories deep"
17515
17516 oalr_event_count() {
17517         local event="${1}"
17518         local trace="${2}"
17519
17520         awk -v name="${FSNAME}-OST0000" \
17521             -v event="${event}" \
17522             '$1 == "TRACE" && $2 == event && $3 == name' \
17523             "${trace}" |
17524         wc -l
17525 }
17526
17527 oalr_expect_event_count() {
17528         local event="${1}"
17529         local trace="${2}"
17530         local expect="${3}"
17531         local count
17532
17533         count=$(oalr_event_count "${event}" "${trace}")
17534         if ((count == expect)); then
17535                 return 0
17536         fi
17537
17538         error_noexit "${event} event count was '${count}', expected ${expect}"
17539         cat "${trace}" >&2
17540         exit 1
17541 }
17542
17543 cleanup_165() {
17544         do_facet ost1 killall --quiet -KILL ofd_access_log_reader || true
17545         stop ost1
17546         start ost1 "$(ostdevname 1)" $OST_MOUNT_OPTS
17547 }
17548
17549 setup_165() {
17550         sync # Flush previous IOs so we can count log entries.
17551         do_facet ost1 $LCTL set_param "obdfilter.${FSNAME}-OST0000.access_log_size=4096"
17552         stack_trap cleanup_165 EXIT
17553 }
17554
17555 test_165a() {
17556         local trace="/tmp/${tfile}.trace"
17557         local rc
17558         local count
17559
17560         (( $OST1_VERSION >= $(version_code 2.13.54) )) ||
17561                 skip "OFD access log unsupported"
17562
17563         setup_165
17564         do_facet ost1 ofd_access_log_reader --debug=- --trace=- > "${trace}" &
17565         sleep 5
17566
17567         do_facet ost1 ofd_access_log_reader --list
17568         stop ost1
17569
17570         do_facet ost1 killall -TERM ofd_access_log_reader
17571         wait
17572         rc=$?
17573
17574         if ((rc != 0)); then
17575                 error "ofd_access_log_reader exited with rc = '${rc}'"
17576         fi
17577
17578         # Parse trace file for discovery events:
17579         oalr_expect_event_count alr_log_add "${trace}" 1
17580         oalr_expect_event_count alr_log_eof "${trace}" 1
17581         oalr_expect_event_count alr_log_free "${trace}" 1
17582 }
17583 run_test 165a "ofd access log discovery"
17584
17585 test_165b() {
17586         local trace="/tmp/${tfile}.trace"
17587         local file="${DIR}/${tfile}"
17588         local pfid1
17589         local pfid2
17590         local -a entry
17591         local rc
17592         local count
17593         local size
17594         local flags
17595
17596         (( $OST1_VERSION >= $(version_code 2.13.54) )) ||
17597                 skip "OFD access log unsupported"
17598
17599         setup_165
17600         do_facet ost1 ofd_access_log_reader --debug=- --trace=- > "${trace}" &
17601         sleep 5
17602
17603         do_facet ost1 ofd_access_log_reader --list
17604
17605         lfs setstripe -c 1 -i 0 "${file}"
17606         $MULTIOP "${file}" oO_CREAT:O_DIRECT:O_WRONLY:w1048576c ||
17607                 error "cannot create '${file}'"
17608
17609         sleep 5
17610         do_facet ost1 killall -TERM ofd_access_log_reader
17611         wait
17612         rc=$?
17613
17614         if ((rc != 0)); then
17615                 error "ofd_access_log_reader exited with rc = '${rc}'"
17616         fi
17617
17618         oalr_expect_event_count alr_log_entry "${trace}" 1
17619
17620         pfid1=$($LFS path2fid "${file}")
17621
17622         # 1     2             3   4    5     6   7    8    9     10
17623         # TRACE alr_log_entry OST PFID BEGIN END TIME SIZE COUNT FLAGS
17624         entry=( - $(awk -v pfid="${pfid}" '$1 == "TRACE" && $2 == "alr_log_entry"' "${trace}" ) )
17625
17626         echo "entry = '${entry[*]}'" >&2
17627
17628         pfid2=${entry[4]}
17629         if [[ "${pfid1}" != "${pfid2}" ]]; then
17630                 error "entry '${entry[*]}' has invalid PFID '${pfid2}', expected ${pfid1}"
17631         fi
17632
17633         size=${entry[8]}
17634         if ((size != 1048576)); then
17635                 error "entry '${entry[*]}' has invalid io size '${size}', expected 1048576"
17636         fi
17637
17638         flags=${entry[10]}
17639         if [[ "${flags}" != "w" ]]; then
17640                 error "entry '${entry[*]}' has invalid io flags '${flags}', expected 'w'"
17641         fi
17642
17643         do_facet ost1 ofd_access_log_reader --debug=- --trace=- > "${trace}" &
17644         sleep 5
17645
17646         $MULTIOP "${file}" oO_CREAT:O_DIRECT:O_RDONLY:r524288c ||
17647                 error "cannot read '${file}'"
17648         sleep 5
17649
17650         do_facet ost1 killall -TERM ofd_access_log_reader
17651         wait
17652         rc=$?
17653
17654         if ((rc != 0)); then
17655                 error "ofd_access_log_reader exited with rc = '${rc}'"
17656         fi
17657
17658         oalr_expect_event_count alr_log_entry "${trace}" 1
17659
17660         entry=( - $(awk -v pfid="${pfid}" '$1 == "TRACE" && $2 == "alr_log_entry"' "${trace}" ) )
17661         echo "entry = '${entry[*]}'" >&2
17662
17663         pfid2=${entry[4]}
17664         if [[ "${pfid1}" != "${pfid2}" ]]; then
17665                 error "entry '${entry[*]}' has invalid PFID '${pfid2}', expected ${pfid1}"
17666         fi
17667
17668         size=${entry[8]}
17669         if ((size != 524288)); then
17670                 error "entry '${entry[*]}' has invalid io size '${size}', 524288"
17671         fi
17672
17673         flags=${entry[10]}
17674         if [[ "${flags}" != "r" ]]; then
17675                 error "entry '${entry[*]}' has invalid io flags '${flags}', expected 'r'"
17676         fi
17677 }
17678 run_test 165b "ofd access log entries are produced and consumed"
17679
17680 test_165c() {
17681         local trace="/tmp/${tfile}.trace"
17682         local file="${DIR}/${tdir}/${tfile}"
17683
17684         (( $OST1_VERSION >= $(version_code 2.13.54) )) ||
17685                 skip "OFD access log unsupported"
17686
17687         test_mkdir "${DIR}/${tdir}"
17688
17689         setup_165
17690         do_facet ost1 ofd_access_log_reader --debug=- --trace=- > "${trace}" &
17691         sleep 5
17692
17693         lfs setstripe -c 1 -i 0 "${DIR}/${tdir}"
17694
17695         # 4096 / 64 = 64. Create twice as many entries.
17696         for ((i = 0; i < 128; i++)); do
17697                 $MULTIOP "${file}-${i}" oO_CREAT:O_WRONLY:w512c ||
17698                         error "cannot create file"
17699         done
17700
17701         sync
17702
17703         do_facet ost1 killall -TERM ofd_access_log_reader
17704         wait
17705         rc=$?
17706         if ((rc != 0)); then
17707                 error "ofd_access_log_reader exited with rc = '${rc}'"
17708         fi
17709
17710         unlinkmany  "${file}-%d" 128
17711 }
17712 run_test 165c "full ofd access logs do not block IOs"
17713
17714 oal_get_read_count() {
17715         local stats="$1"
17716
17717         # STATS lustre-OST0001 alr_read_count 1
17718
17719         do_facet ost1 cat "${stats}" |
17720         awk '$1 == "STATS" && $3 == "alr_read_count" { count = $4; }
17721              END { print count; }'
17722 }
17723
17724 oal_expect_read_count() {
17725         local stats="$1"
17726         local count
17727         local expect="$2"
17728
17729         # Ask ofd_access_log_reader to write stats.
17730         do_facet ost1 killall -USR1 ofd_access_log_reader
17731
17732         # Allow some time for things to happen.
17733         sleep 1
17734
17735         count=$(oal_get_read_count "${stats}")
17736         if ((count == expect)); then
17737                 return 0
17738         fi
17739
17740         error_noexit "bad read count, got ${count}, expected ${expect}"
17741         do_facet ost1 cat "${stats}" >&2
17742         exit 1
17743 }
17744
17745 test_165d() {
17746         local stats="/tmp/${tfile}.stats"
17747         local file="${DIR}/${tdir}/${tfile}"
17748         local param="obdfilter.${FSNAME}-OST0000.access_log_mask"
17749
17750         (( $OST1_VERSION >= $(version_code 2.13.54) )) ||
17751                 skip "OFD access log unsupported"
17752
17753         test_mkdir "${DIR}/${tdir}"
17754
17755         setup_165
17756         do_facet ost1 ofd_access_log_reader --stats="${stats}" &
17757         sleep 5
17758
17759         lfs setstripe -c 1 -i 0 "${file}"
17760
17761         do_facet ost1 lctl set_param "${param}=rw"
17762         $MULTIOP "${file}" oO_CREAT:O_DIRECT:O_WRONLY:w1048576c ||
17763                 error "cannot create '${file}'"
17764         oal_expect_read_count "${stats}" 1
17765
17766         $MULTIOP "${file}" oO_CREAT:O_DIRECT:O_RDONLY:r1048576c ||
17767                 error "cannot read '${file}'"
17768         oal_expect_read_count "${stats}" 2
17769
17770         do_facet ost1 lctl set_param "${param}=r"
17771         $MULTIOP "${file}" oO_CREAT:O_DIRECT:O_WRONLY:w1048576c ||
17772                 error "cannot create '${file}'"
17773         oal_expect_read_count "${stats}" 2
17774
17775         $MULTIOP "${file}" oO_CREAT:O_DIRECT:O_RDONLY:r1048576c ||
17776                 error "cannot read '${file}'"
17777         oal_expect_read_count "${stats}" 3
17778
17779         do_facet ost1 lctl set_param "${param}=w"
17780         $MULTIOP "${file}" oO_CREAT:O_DIRECT:O_WRONLY:w1048576c ||
17781                 error "cannot create '${file}'"
17782         oal_expect_read_count "${stats}" 4
17783
17784         $MULTIOP "${file}" oO_CREAT:O_DIRECT:O_RDONLY:r1048576c ||
17785                 error "cannot read '${file}'"
17786         oal_expect_read_count "${stats}" 4
17787
17788         do_facet ost1 lctl set_param "${param}=0"
17789         $MULTIOP "${file}" oO_CREAT:O_DIRECT:O_WRONLY:w1048576c ||
17790                 error "cannot create '${file}'"
17791         oal_expect_read_count "${stats}" 4
17792
17793         $MULTIOP "${file}" oO_CREAT:O_DIRECT:O_RDONLY:r1048576c ||
17794                 error "cannot read '${file}'"
17795         oal_expect_read_count "${stats}" 4
17796
17797         do_facet ost1 killall -TERM ofd_access_log_reader
17798         wait
17799         rc=$?
17800         if ((rc != 0)); then
17801                 error "ofd_access_log_reader exited with rc = '${rc}'"
17802         fi
17803 }
17804 run_test 165d "ofd_access_log mask works"
17805
17806 test_165e() {
17807         local stats="/tmp/${tfile}.stats"
17808         local file0="${DIR}/${tdir}-0/${tfile}"
17809         local file1="${DIR}/${tdir}-1/${tfile}"
17810
17811         (( $OST1_VERSION >= $(version_code 2.13.54) )) ||
17812                 skip "OFD access log unsupported"
17813
17814         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
17815
17816         test_mkdir -c 1 -i 0 "${DIR}/${tdir}-0"
17817         test_mkdir -c 1 -i 1 "${DIR}/${tdir}-1"
17818
17819         lfs setstripe -c 1 -i 0 "${file0}"
17820         lfs setstripe -c 1 -i 0 "${file1}"
17821
17822         setup_165
17823         do_facet ost1 ofd_access_log_reader -I 1 --stats="${stats}" &
17824         sleep 5
17825
17826         $MULTIOP "${file0}" oO_CREAT:O_WRONLY:w512c ||
17827                 error "cannot create '${file0}'"
17828         sync
17829         oal_expect_read_count "${stats}" 0
17830
17831         $MULTIOP "${file1}" oO_CREAT:O_WRONLY:w512c ||
17832                 error "cannot create '${file1}'"
17833         sync
17834         oal_expect_read_count "${stats}" 1
17835
17836         do_facet ost1 killall -TERM ofd_access_log_reader
17837         wait
17838         rc=$?
17839         if ((rc != 0)); then
17840                 error "ofd_access_log_reader exited with rc = '${rc}'"
17841         fi
17842 }
17843 run_test 165e "ofd_access_log MDT index filter works"
17844
17845 test_165f() {
17846         local trace="/tmp/${tfile}.trace"
17847         local rc
17848         local count
17849
17850         setup_165
17851         do_facet ost1 timeout 60 ofd_access_log_reader \
17852                 --exit-on-close --debug=- --trace=- > "${trace}" &
17853         sleep 5
17854         stop ost1
17855
17856         wait
17857         rc=$?
17858
17859         if ((rc != 0)); then
17860                 error_noexit "ofd_access_log_reader exited with rc = '${rc}'"
17861                 cat "${trace}"
17862                 exit 1
17863         fi
17864 }
17865 run_test 165f "ofd_access_log_reader --exit-on-close works"
17866
17867 test_169() {
17868         # do directio so as not to populate the page cache
17869         log "creating a 10 Mb file"
17870         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c ||
17871                 error "multiop failed while creating a file"
17872         log "starting reads"
17873         dd if=$DIR/$tfile of=/dev/null bs=4096 &
17874         log "truncating the file"
17875         $MULTIOP $DIR/$tfile oO_TRUNC:c ||
17876                 error "multiop failed while truncating the file"
17877         log "killing dd"
17878         kill %+ || true # reads might have finished
17879         echo "wait until dd is finished"
17880         wait
17881         log "removing the temporary file"
17882         rm -rf $DIR/$tfile || error "tmp file removal failed"
17883 }
17884 run_test 169 "parallel read and truncate should not deadlock"
17885
17886 test_170() {
17887         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17888
17889         $LCTL clear     # bug 18514
17890         $LCTL debug_daemon start $TMP/${tfile}_log_good
17891         touch $DIR/$tfile
17892         $LCTL debug_daemon stop
17893         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
17894                 error "sed failed to read log_good"
17895
17896         $LCTL debug_daemon start $TMP/${tfile}_log_good
17897         rm -rf $DIR/$tfile
17898         $LCTL debug_daemon stop
17899
17900         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
17901                error "lctl df log_bad failed"
17902
17903         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
17904         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
17905
17906         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
17907         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
17908
17909         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
17910                 error "bad_line good_line1 good_line2 are empty"
17911
17912         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
17913         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
17914         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
17915
17916         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
17917         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
17918         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
17919
17920         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
17921                 error "bad_line_new good_line_new are empty"
17922
17923         local expected_good=$((good_line1 + good_line2*2))
17924
17925         rm -f $TMP/${tfile}*
17926         # LU-231, short malformed line may not be counted into bad lines
17927         if [ $bad_line -ne $bad_line_new ] &&
17928                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
17929                 error "expected $bad_line bad lines, but got $bad_line_new"
17930                 return 1
17931         fi
17932
17933         if [ $expected_good -ne $good_line_new ]; then
17934                 error "expected $expected_good good lines, but got $good_line_new"
17935                 return 2
17936         fi
17937         true
17938 }
17939 run_test 170 "test lctl df to handle corrupted log ====================="
17940
17941 test_171() { # bug20592
17942         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17943
17944         #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
17945         $LCTL set_param fail_loc=0x50e
17946         $LCTL set_param fail_val=3000
17947         multiop_bg_pause $DIR/$tfile O_s || true
17948         local MULTIPID=$!
17949         kill -USR1 $MULTIPID
17950         # cause log dump
17951         sleep 3
17952         wait $MULTIPID
17953         if dmesg | grep "recursive fault"; then
17954                 error "caught a recursive fault"
17955         fi
17956         $LCTL set_param fail_loc=0
17957         true
17958 }
17959 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
17960
17961 test_172() {
17962
17963         #define OBD_FAIL_OBD_CLEANUP  0x60e
17964         $LCTL set_param fail_loc=0x60e
17965         umount $MOUNT || error "umount $MOUNT failed"
17966         stack_trap "mount_client $MOUNT"
17967
17968         (( $($LCTL dl | egrep -c " osc | lov | lmv | mdc ") > 0 )) ||
17969                 error "no client OBDs are remained"
17970
17971         $LCTL dl | while read devno state type name foo; do
17972                 case $type in
17973                 lov|osc|lmv|mdc)
17974                         $LCTL --device $name cleanup
17975                         $LCTL --device $name detach
17976                         ;;
17977                 *)
17978                         # skip server devices
17979                         ;;
17980                 esac
17981         done
17982
17983         if (( $($LCTL dl | egrep -c " osc | lov | lmv | mdc ") > 0 )); then
17984                 $LCTL dl | egrep " osc | lov | lmv | mdc "
17985                 error "some client OBDs are still remained"
17986         fi
17987
17988 }
17989 run_test 172 "manual device removal with lctl cleanup/detach ======"
17990
17991 # it would be good to share it with obdfilter-survey/iokit-libecho code
17992 setup_obdecho_osc () {
17993         local rc=0
17994         local ost_nid=$1
17995         local obdfilter_name=$2
17996         echo "Creating new osc for $obdfilter_name on $ost_nid"
17997         # make sure we can find loopback nid
17998         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
17999
18000         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
18001                            ${obdfilter_name}_osc_UUID || rc=2; }
18002         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
18003                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
18004         return $rc
18005 }
18006
18007 cleanup_obdecho_osc () {
18008         local obdfilter_name=$1
18009         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
18010         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
18011         return 0
18012 }
18013
18014 obdecho_test() {
18015         local OBD=$1
18016         local node=$2
18017         local pages=${3:-64}
18018         local rc=0
18019         local id
18020
18021         local count=10
18022         local obd_size=$(get_obd_size $node $OBD)
18023         local page_size=$(get_page_size $node)
18024         if [[ -n "$obd_size" ]]; then
18025                 local new_count=$((obd_size / (pages * page_size / 1024)))
18026                 [[ $new_count -ge $count ]] || count=$new_count
18027         fi
18028
18029         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
18030         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
18031                            rc=2; }
18032         if [ $rc -eq 0 ]; then
18033             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
18034             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
18035         fi
18036         echo "New object id is $id"
18037         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
18038                            rc=4; }
18039         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
18040                            "test_brw $count w v $pages $id" || rc=4; }
18041         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
18042                            rc=4; }
18043         [ $rc -eq 0 ] || [ $rc -gt 2 ] &&
18044                 { do_facet $node "$LCTL --device ec cleanup" || rc=5; }
18045         [ $rc -eq 0 ] || [ $rc -gt 1 ] &&
18046                 { do_facet $node "$LCTL --device ec detach" || rc=6; }
18047         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
18048         return $rc
18049 }
18050
18051 test_180a() {
18052         skip "obdecho on osc is no longer supported"
18053 }
18054 run_test 180a "test obdecho on osc"
18055
18056 test_180b() {
18057         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18058         remote_ost_nodsh && skip "remote OST with nodsh"
18059
18060         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
18061                 stack_trap "do_facet ost1 rmmod obdecho" EXIT ||
18062                 error "failed to load module obdecho"
18063
18064         local target=$(do_facet ost1 $LCTL dl |
18065                        awk '/obdfilter/ { print $4; exit; }')
18066
18067         if [ -n "$target" ]; then
18068                 obdecho_test $target ost1 || error "obdecho_test failed with $?"
18069         else
18070                 do_facet ost1 $LCTL dl
18071                 error "there is no obdfilter target on ost1"
18072         fi
18073 }
18074 run_test 180b "test obdecho directly on obdfilter"
18075
18076 test_180c() { # LU-2598
18077         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18078         remote_ost_nodsh && skip "remote OST with nodsh"
18079         [[ $MDS1_VERSION -lt $(version_code 2.4.0) ]] &&
18080                 skip "Need MDS version at least 2.4.0"
18081
18082         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
18083                 stack_trap "do_facet ost1 rmmod obdecho" EXIT ||
18084                 error "failed to load module obdecho"
18085
18086         local target=$(do_facet ost1 $LCTL dl |
18087                        awk '/obdfilter/ { print $4; exit; }')
18088
18089         if [ -n "$target" ]; then
18090                 local pages=16384 # 64MB bulk I/O RPC size
18091
18092                 obdecho_test "$target" ost1 "$pages" ||
18093                         error "obdecho_test with pages=$pages failed with $?"
18094         else
18095                 do_facet ost1 $LCTL dl
18096                 error "there is no obdfilter target on ost1"
18097         fi
18098 }
18099 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
18100
18101 test_181() { # bug 22177
18102         test_mkdir $DIR/$tdir
18103         # create enough files to index the directory
18104         createmany -o $DIR/$tdir/foobar 4000
18105         # print attributes for debug purpose
18106         lsattr -d .
18107         # open dir
18108         multiop_bg_pause $DIR/$tdir D_Sc || return 1
18109         MULTIPID=$!
18110         # remove the files & current working dir
18111         unlinkmany $DIR/$tdir/foobar 4000
18112         rmdir $DIR/$tdir
18113         kill -USR1 $MULTIPID
18114         wait $MULTIPID
18115         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
18116         return 0
18117 }
18118 run_test 181 "Test open-unlinked dir ========================"
18119
18120 test_182a() {
18121         local fcount=1000
18122         local tcount=10
18123
18124         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
18125
18126         $LCTL set_param mdc.*.rpc_stats=clear
18127
18128         for (( i = 0; i < $tcount; i++ )) ; do
18129                 mkdir $DIR/$tdir/$i
18130         done
18131
18132         for (( i = 0; i < $tcount; i++ )) ; do
18133                 createmany -o $DIR/$tdir/$i/f- $fcount &
18134         done
18135         wait
18136
18137         for (( i = 0; i < $tcount; i++ )) ; do
18138                 unlinkmany $DIR/$tdir/$i/f- $fcount &
18139         done
18140         wait
18141
18142         $LCTL get_param mdc.*.rpc_stats
18143
18144         rm -rf $DIR/$tdir
18145 }
18146 run_test 182a "Test parallel modify metadata operations from mdc"
18147
18148 test_182b() {
18149         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
18150         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
18151         local dcount=1000
18152         local tcount=10
18153         local stime
18154         local etime
18155         local delta
18156
18157         do_facet mds1 $LCTL list_param \
18158                 osp.$FSNAME-MDT*-osp-MDT*.rpc_stats ||
18159                 skip "MDS lacks parallel RPC handling"
18160
18161         $LFS mkdir -i 0 $DIR/$tdir || error "creating dir $DIR/$tdir"
18162
18163         rpc_count=$(do_facet mds1 $LCTL get_param -n \
18164                     osp.$FSNAME-MDT0001-osp-MDT0000.max_mod_rpcs_in_flight)
18165
18166         stime=$(date +%s)
18167         createmany -i 0 -d $DIR/$tdir/t- $tcount
18168
18169         for (( i = 0; i < $tcount; i++ )) ; do
18170                 createmany -i 0 -d $DIR/$tdir/t-$i/d- 0 $dcount &
18171         done
18172         wait
18173         etime=$(date +%s)
18174         delta=$((etime - stime))
18175         echo "Time for file creation $delta sec for $rpc_count parallel RPCs"
18176
18177         stime=$(date +%s)
18178         for (( i = 0; i < $tcount; i++ )) ; do
18179                 unlinkmany -d $DIR/$tdir/$i/d- $dcount &
18180         done
18181         wait
18182         etime=$(date +%s)
18183         delta=$((etime - stime))
18184         echo "Time for file removal $delta sec for $rpc_count parallel RPCs"
18185
18186         rm -rf $DIR/$tdir
18187
18188         $LFS mkdir -i 0 $DIR/$tdir || error "creating dir $DIR/$tdir"
18189
18190         do_facet mds1 $LCTL set_param osp.$FSNAME-MDT0001-osp-MDT0000.max_mod_rpcs_in_flight=1
18191
18192         stime=$(date +%s)
18193         createmany -i 0 -d $DIR/$tdir/t- $tcount
18194
18195         for (( i = 0; i < $tcount; i++ )) ; do
18196                 createmany -i 0 -d $DIR/$tdir/t-$i/d- 0 $dcount &
18197         done
18198         wait
18199         etime=$(date +%s)
18200         delta=$((etime - stime))
18201         echo "Time for file creation $delta sec for 1 RPC sent at a time"
18202
18203         stime=$(date +%s)
18204         for (( i = 0; i < $tcount; i++ )) ; do
18205                 unlinkmany -d $DIR/$tdir/t-$i/d- $dcount &
18206         done
18207         wait
18208         etime=$(date +%s)
18209         delta=$((etime - stime))
18210         echo "Time for file removal $delta sec for 1 RPC sent at a time"
18211
18212         do_facet mds1 $LCTL set_param osp.$FSNAME-MDT0001-osp-MDT0000.max_mod_rpcs_in_flight=$rpc_count
18213 }
18214 run_test 182b "Test parallel modify metadata operations from osp"
18215
18216 test_183() { # LU-2275
18217         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18218         remote_mds_nodsh && skip "remote MDS with nodsh"
18219         [[ $MDS1_VERSION -lt $(version_code 2.3.56) ]] &&
18220                 skip "Need MDS version at least 2.3.56"
18221
18222         mkdir_on_mdt0 $DIR/$tdir || error "creating dir $DIR/$tdir"
18223         echo aaa > $DIR/$tdir/$tfile
18224
18225 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
18226         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
18227
18228         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
18229         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
18230
18231         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
18232
18233         # Flush negative dentry cache
18234         touch $DIR/$tdir/$tfile
18235
18236         # We are not checking for any leaked references here, they'll
18237         # become evident next time we do cleanup with module unload.
18238         rm -rf $DIR/$tdir
18239 }
18240 run_test 183 "No crash or request leak in case of strange dispositions ========"
18241
18242 # test suite 184 is for LU-2016, LU-2017
18243 test_184a() {
18244         check_swap_layouts_support
18245
18246         dir0=$DIR/$tdir/$testnum
18247         test_mkdir -p -c1 $dir0
18248         ref1=/etc/passwd
18249         ref2=/etc/group
18250         file1=$dir0/f1
18251         file2=$dir0/f2
18252         $LFS setstripe -c1 $file1
18253         cp $ref1 $file1
18254         $LFS setstripe -c2 $file2
18255         cp $ref2 $file2
18256         gen1=$($LFS getstripe -g $file1)
18257         gen2=$($LFS getstripe -g $file2)
18258
18259         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
18260         gen=$($LFS getstripe -g $file1)
18261         [[ $gen1 != $gen ]] ||
18262                 error "Layout generation on $file1 does not change"
18263         gen=$($LFS getstripe -g $file2)
18264         [[ $gen2 != $gen ]] ||
18265                 error "Layout generation on $file2 does not change"
18266
18267         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
18268         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
18269
18270         lfsck_verify_pfid $file1 $file2 || error "PFID are not transferred"
18271 }
18272 run_test 184a "Basic layout swap"
18273
18274 test_184b() {
18275         check_swap_layouts_support
18276
18277         dir0=$DIR/$tdir/$testnum
18278         mkdir -p $dir0 || error "creating dir $dir0"
18279         file1=$dir0/f1
18280         file2=$dir0/f2
18281         file3=$dir0/f3
18282         dir1=$dir0/d1
18283         dir2=$dir0/d2
18284         mkdir $dir1 $dir2
18285         $LFS setstripe -c1 $file1
18286         $LFS setstripe -c2 $file2
18287         $LFS setstripe -c1 $file3
18288         chown $RUNAS_ID $file3
18289         gen1=$($LFS getstripe -g $file1)
18290         gen2=$($LFS getstripe -g $file2)
18291
18292         $LFS swap_layouts $dir1 $dir2 &&
18293                 error "swap of directories layouts should fail"
18294         $LFS swap_layouts $dir1 $file1 &&
18295                 error "swap of directory and file layouts should fail"
18296         $RUNAS $LFS swap_layouts $file1 $file2 &&
18297                 error "swap of file we cannot write should fail"
18298         $LFS swap_layouts $file1 $file3 &&
18299                 error "swap of file with different owner should fail"
18300         /bin/true # to clear error code
18301 }
18302 run_test 184b "Forbidden layout swap (will generate errors)"
18303
18304 test_184c() {
18305         local cmpn_arg=$(cmp -n 2>&1 | grep "invalid option")
18306         [ -n "$cmpn_arg" ] && skip_env "cmp does not support -n"
18307         check_swap_layouts_support
18308         check_swap_layout_no_dom $DIR
18309
18310         local dir0=$DIR/$tdir/$testnum
18311         mkdir -p $dir0 || error "creating dir $dir0"
18312
18313         local ref1=$dir0/ref1
18314         local ref2=$dir0/ref2
18315         local file1=$dir0/file1
18316         local file2=$dir0/file2
18317         # create a file large enough for the concurrent test
18318         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
18319         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
18320         echo "ref file size: ref1($(stat -c %s $ref1))," \
18321              "ref2($(stat -c %s $ref2))"
18322
18323         cp $ref2 $file2
18324         dd if=$ref1 of=$file1 bs=16k &
18325         local DD_PID=$!
18326
18327         # Make sure dd starts to copy file, but wait at most 5 seconds
18328         local loops=0
18329         while [ ! -s $file1 -a $((loops++)) -lt 50 ]; do sleep 0.1; done
18330
18331         $LFS swap_layouts $file1 $file2
18332         local rc=$?
18333         wait $DD_PID
18334         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
18335         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
18336
18337         # how many bytes copied before swapping layout
18338         local copied=$(stat -c %s $file2)
18339         local remaining=$(stat -c %s $ref1)
18340         remaining=$((remaining - copied))
18341         echo "Copied $copied bytes before swapping layout..."
18342
18343         cmp -n $copied $file1 $ref2 | grep differ &&
18344                 error "Content mismatch [0, $copied) of ref2 and file1"
18345         cmp -n $copied $file2 $ref1 ||
18346                 error "Content mismatch [0, $copied) of ref1 and file2"
18347         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
18348                 error "Content mismatch [$copied, EOF) of ref1 and file1"
18349
18350         # clean up
18351         rm -f $ref1 $ref2 $file1 $file2
18352 }
18353 run_test 184c "Concurrent write and layout swap"
18354
18355 test_184d() {
18356         check_swap_layouts_support
18357         check_swap_layout_no_dom $DIR
18358         [ -z "$(which getfattr 2>/dev/null)" ] &&
18359                 skip_env "no getfattr command"
18360
18361         local file1=$DIR/$tdir/$tfile-1
18362         local file2=$DIR/$tdir/$tfile-2
18363         local file3=$DIR/$tdir/$tfile-3
18364         local lovea1
18365         local lovea2
18366
18367         mkdir -p $DIR/$tdir
18368         touch $file1 || error "create $file1 failed"
18369         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
18370                 error "create $file2 failed"
18371         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
18372                 error "create $file3 failed"
18373         lovea1=$(get_layout_param $file1)
18374
18375         $LFS swap_layouts $file2 $file3 ||
18376                 error "swap $file2 $file3 layouts failed"
18377         $LFS swap_layouts $file1 $file2 ||
18378                 error "swap $file1 $file2 layouts failed"
18379
18380         lovea2=$(get_layout_param $file2)
18381         echo "$lovea1"
18382         echo "$lovea2"
18383         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
18384
18385         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
18386         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
18387 }
18388 run_test 184d "allow stripeless layouts swap"
18389
18390 test_184e() {
18391         [[ $MDS1_VERSION -ge $(version_code 2.6.94) ]] ||
18392                 skip "Need MDS version at least 2.6.94"
18393         check_swap_layouts_support
18394         check_swap_layout_no_dom $DIR
18395         [ -z "$(which getfattr 2>/dev/null)" ] &&
18396                 skip_env "no getfattr command"
18397
18398         local file1=$DIR/$tdir/$tfile-1
18399         local file2=$DIR/$tdir/$tfile-2
18400         local file3=$DIR/$tdir/$tfile-3
18401         local lovea
18402
18403         mkdir -p $DIR/$tdir
18404         touch $file1 || error "create $file1 failed"
18405         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
18406                 error "create $file2 failed"
18407         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
18408                 error "create $file3 failed"
18409
18410         $LFS swap_layouts $file1 $file2 ||
18411                 error "swap $file1 $file2 layouts failed"
18412
18413         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
18414         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
18415
18416         echo 123 > $file1 || error "Should be able to write into $file1"
18417
18418         $LFS swap_layouts $file1 $file3 ||
18419                 error "swap $file1 $file3 layouts failed"
18420
18421         echo 123 > $file1 || error "Should be able to write into $file1"
18422
18423         rm -rf $file1 $file2 $file3
18424 }
18425 run_test 184e "Recreate layout after stripeless layout swaps"
18426
18427 test_184f() {
18428         # Create a file with name longer than sizeof(struct stat) ==
18429         # 144 to see if we can get chars from the file name to appear
18430         # in the returned striping. Note that 'f' == 0x66.
18431         local file=$(for ((i = 0; i < 200; i++)); do echo -n f; done)
18432
18433         mkdir -p $DIR/$tdir
18434         mcreate $DIR/$tdir/$file
18435         if lfs find --stripe-count 0x6666 $DIR/$tdir | grep $file; then
18436                 error "IOC_MDC_GETFILEINFO returned garbage striping"
18437         fi
18438 }
18439 run_test 184f "IOC_MDC_GETFILEINFO for files with long names but no striping"
18440
18441 test_185() { # LU-2441
18442         # LU-3553 - no volatile file support in old servers
18443         [[ $MDS1_VERSION -ge $(version_code 2.3.60) ]] ||
18444                 skip "Need MDS version at least 2.3.60"
18445
18446         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
18447         touch $DIR/$tdir/spoo
18448         local mtime1=$(stat -c "%Y" $DIR/$tdir)
18449         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
18450                 error "cannot create/write a volatile file"
18451         [ "$FILESET" == "" ] &&
18452         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
18453                 error "FID is still valid after close"
18454
18455         multiop_bg_pause $DIR/$tdir vVw4096_c
18456         local multi_pid=$!
18457
18458         local OLD_IFS=$IFS
18459         IFS=":"
18460         local fidv=($fid)
18461         IFS=$OLD_IFS
18462         # assume that the next FID for this client is sequential, since stdout
18463         # is unfortunately eaten by multiop_bg_pause
18464         local n=$((${fidv[1]} + 1))
18465         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
18466         if [ "$FILESET" == "" ]; then
18467                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
18468                         error "FID is missing before close"
18469         fi
18470         kill -USR1 $multi_pid
18471         # 1 second delay, so if mtime change we will see it
18472         sleep 1
18473         local mtime2=$(stat -c "%Y" $DIR/$tdir)
18474         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
18475 }
18476 run_test 185 "Volatile file support"
18477
18478 function create_check_volatile() {
18479         local idx=$1
18480         local tgt
18481
18482         $MULTIOP $MOUNT/.lustre/fid V${idx}Fw4096_c >&/tmp/${tfile}.fid &
18483         local PID=$!
18484         sleep 1
18485         local FID=$(cat /tmp/${tfile}.fid)
18486         [ "$FID" == "" ] && error "can't get FID for volatile"
18487         $CHECKSTAT -t file $MOUNT/.lustre/fid/$FID || error "can't stat $FID"
18488         tgt=$($LFS getstripe -m $MOUNT/.lustre/fid/$FID)
18489         [ "$tgt" != "$idx" ] && error "wrong MDS $tgt, expected $idx"
18490         kill -USR1 $PID
18491         wait
18492         sleep 1
18493         cancel_lru_locks mdc # flush opencache
18494         $CHECKSTAT -t file $MOUNT/.lustre/fid/$FID && error "can stat $FID"
18495         return 0
18496 }
18497
18498 test_185a(){
18499         # LU-12516 - volatile creation via .lustre
18500         [[ $MDS1_VERSION -ge $(version_code 2.12.55) ]] ||
18501                 skip "Need MDS version at least 2.3.55"
18502
18503         create_check_volatile 0
18504         [ $MDSCOUNT -lt 2 ] && return 0
18505
18506         # DNE case
18507         create_check_volatile 1
18508
18509         return 0
18510 }
18511 run_test 185a "Volatile file creation in .lustre/fid/"
18512
18513 test_187a() {
18514         remote_mds_nodsh && skip "remote MDS with nodsh"
18515         [ $MDS1_VERSION -lt $(version_code 2.3.0) ] &&
18516                 skip "Need MDS version at least 2.3.0"
18517
18518         local dir0=$DIR/$tdir/$testnum
18519         mkdir -p $dir0 || error "creating dir $dir0"
18520
18521         local file=$dir0/file1
18522         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
18523         local dv1=$($LFS data_version $file)
18524         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
18525         local dv2=$($LFS data_version $file)
18526         [[ $dv1 != $dv2 ]] ||
18527                 error "data version did not change on write $dv1 == $dv2"
18528
18529         # clean up
18530         rm -f $file1
18531 }
18532 run_test 187a "Test data version change"
18533
18534 test_187b() {
18535         remote_mds_nodsh && skip "remote MDS with nodsh"
18536         [ $MDS1_VERSION -lt $(version_code 2.3.0) ] &&
18537                 skip "Need MDS version at least 2.3.0"
18538
18539         local dir0=$DIR/$tdir/$testnum
18540         mkdir -p $dir0 || error "creating dir $dir0"
18541
18542         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
18543         [[ ${DV[0]} != ${DV[1]} ]] ||
18544                 error "data version did not change on write"\
18545                       " ${DV[0]} == ${DV[1]}"
18546
18547         # clean up
18548         rm -f $file1
18549 }
18550 run_test 187b "Test data version change on volatile file"
18551
18552 test_200() {
18553         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18554         remote_mgs_nodsh && skip "remote MGS with nodsh"
18555         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
18556
18557         local POOL=${POOL:-cea1}
18558         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
18559         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
18560         # Pool OST targets
18561         local first_ost=0
18562         local last_ost=$(($OSTCOUNT - 1))
18563         local ost_step=2
18564         local ost_list=$(seq $first_ost $ost_step $last_ost)
18565         local ost_range="$first_ost $last_ost $ost_step"
18566         local test_path=$POOL_ROOT/$POOL_DIR_NAME
18567         local file_dir=$POOL_ROOT/file_tst
18568         local subdir=$test_path/subdir
18569         local rc=0
18570
18571         while : ; do
18572                 # former test_200a test_200b
18573                 pool_add $POOL                          || { rc=$? ; break; }
18574                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
18575                 # former test_200c test_200d
18576                 mkdir -p $test_path
18577                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
18578                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
18579                 mkdir -p $subdir
18580                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
18581                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
18582                                                         || { rc=$? ; break; }
18583                 # former test_200e test_200f
18584                 local files=$((OSTCOUNT*3))
18585                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
18586                                                         || { rc=$? ; break; }
18587                 pool_create_files $POOL $file_dir $files "$ost_list" \
18588                                                         || { rc=$? ; break; }
18589                 # former test_200g test_200h
18590                 pool_lfs_df $POOL                       || { rc=$? ; break; }
18591                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
18592
18593                 # former test_201a test_201b test_201c
18594                 pool_remove_first_target $POOL          || { rc=$? ; break; }
18595
18596                 local f=$test_path/$tfile
18597                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
18598                 pool_remove $POOL $f                    || { rc=$? ; break; }
18599                 break
18600         done
18601
18602         destroy_test_pools
18603
18604         return $rc
18605 }
18606 run_test 200 "OST pools"
18607
18608 # usage: default_attr <count | size | offset>
18609 default_attr() {
18610         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
18611 }
18612
18613 # usage: check_default_stripe_attr
18614 check_default_stripe_attr() {
18615         ACTUAL=$($LFS getstripe $* $DIR/$tdir)
18616         case $1 in
18617         --stripe-count|-c)
18618                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
18619         --stripe-size|-S)
18620                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
18621         --stripe-index|-i)
18622                 EXPECTED=-1;;
18623         *)
18624                 error "unknown getstripe attr '$1'"
18625         esac
18626
18627         [ $ACTUAL == $EXPECTED ] ||
18628                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
18629 }
18630
18631 test_204a() {
18632         test_mkdir $DIR/$tdir
18633         $LFS setstripe --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
18634
18635         check_default_stripe_attr --stripe-count
18636         check_default_stripe_attr --stripe-size
18637         check_default_stripe_attr --stripe-index
18638 }
18639 run_test 204a "Print default stripe attributes"
18640
18641 test_204b() {
18642         test_mkdir $DIR/$tdir
18643         $LFS setstripe --stripe-count 1 $DIR/$tdir
18644
18645         check_default_stripe_attr --stripe-size
18646         check_default_stripe_attr --stripe-index
18647 }
18648 run_test 204b "Print default stripe size and offset"
18649
18650 test_204c() {
18651         test_mkdir $DIR/$tdir
18652         $LFS setstripe --stripe-size 65536 $DIR/$tdir
18653
18654         check_default_stripe_attr --stripe-count
18655         check_default_stripe_attr --stripe-index
18656 }
18657 run_test 204c "Print default stripe count and offset"
18658
18659 test_204d() {
18660         test_mkdir $DIR/$tdir
18661         $LFS setstripe --stripe-index 0 $DIR/$tdir
18662
18663         check_default_stripe_attr --stripe-count
18664         check_default_stripe_attr --stripe-size
18665 }
18666 run_test 204d "Print default stripe count and size"
18667
18668 test_204e() {
18669         test_mkdir $DIR/$tdir
18670         $LFS setstripe -d $DIR/$tdir
18671
18672         check_default_stripe_attr --stripe-count --raw
18673         check_default_stripe_attr --stripe-size --raw
18674         check_default_stripe_attr --stripe-index --raw
18675 }
18676 run_test 204e "Print raw stripe attributes"
18677
18678 test_204f() {
18679         test_mkdir $DIR/$tdir
18680         $LFS setstripe --stripe-count 1 $DIR/$tdir
18681
18682         check_default_stripe_attr --stripe-size --raw
18683         check_default_stripe_attr --stripe-index --raw
18684 }
18685 run_test 204f "Print raw stripe size and offset"
18686
18687 test_204g() {
18688         test_mkdir $DIR/$tdir
18689         $LFS setstripe --stripe-size 65536 $DIR/$tdir
18690
18691         check_default_stripe_attr --stripe-count --raw
18692         check_default_stripe_attr --stripe-index --raw
18693 }
18694 run_test 204g "Print raw stripe count and offset"
18695
18696 test_204h() {
18697         test_mkdir $DIR/$tdir
18698         $LFS setstripe --stripe-index 0 $DIR/$tdir
18699
18700         check_default_stripe_attr --stripe-count --raw
18701         check_default_stripe_attr --stripe-size --raw
18702 }
18703 run_test 204h "Print raw stripe count and size"
18704
18705 # Figure out which job scheduler is being used, if any,
18706 # or use a fake one
18707 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
18708         JOBENV=SLURM_JOB_ID
18709 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
18710         JOBENV=LSB_JOBID
18711 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
18712         JOBENV=PBS_JOBID
18713 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
18714         JOBENV=LOADL_STEP_ID
18715 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
18716         JOBENV=JOB_ID
18717 else
18718         $LCTL list_param jobid_name > /dev/null 2>&1
18719         if [ $? -eq 0 ]; then
18720                 JOBENV=nodelocal
18721         else
18722                 JOBENV=FAKE_JOBID
18723         fi
18724 fi
18725 LUSTRE_JOBID_SIZE=31 # plus NUL terminator
18726
18727 verify_jobstats() {
18728         local cmd=($1)
18729         shift
18730         local facets="$@"
18731
18732 # we don't really need to clear the stats for this test to work, since each
18733 # command has a unique jobid, but it makes debugging easier if needed.
18734 #       for facet in $facets; do
18735 #               local dev=$(convert_facet2label $facet)
18736 #               # clear old jobstats
18737 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
18738 #       done
18739
18740         # use a new JobID for each test, or we might see an old one
18741         [ "$JOBENV" = "FAKE_JOBID" ] &&
18742                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
18743
18744         JOBVAL=${!JOBENV:0:$LUSTRE_JOBID_SIZE}
18745
18746         [ "$JOBENV" = "nodelocal" ] && {
18747                 FAKE_JOBID=id.$testnum.%e.$RANDOM
18748                 $LCTL set_param jobid_name=$FAKE_JOBID
18749                 JOBVAL=${FAKE_JOBID/\%e/$(basename ${cmd[0]})}
18750         }
18751
18752         log "Test: ${cmd[*]}"
18753         log "Using JobID environment $($LCTL get_param -n jobid_var)=$JOBVAL"
18754
18755         if [ $JOBENV = "FAKE_JOBID" ]; then
18756                 FAKE_JOBID=$JOBVAL ${cmd[*]}
18757         else
18758                 ${cmd[*]}
18759         fi
18760
18761         # all files are created on OST0000
18762         for facet in $facets; do
18763                 local stats="*.$(convert_facet2label $facet).job_stats"
18764
18765                 # strip out libtool wrappers for in-tree executables
18766                 if (( $(do_facet $facet lctl get_param $stats |
18767                         sed -e 's/\.lt-/./' | grep -cw $JOBVAL) != 1 )); then
18768                         do_facet $facet lctl get_param $stats
18769                         error "No jobstats for $JOBVAL found on $facet::$stats"
18770                 fi
18771         done
18772 }
18773
18774 jobstats_set() {
18775         local new_jobenv=$1
18776
18777         set_persistent_param_and_check client "jobid_var" \
18778                 "$FSNAME.sys.jobid_var" $new_jobenv
18779 }
18780
18781 test_205a() { # Job stats
18782         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18783         [[ $MDS1_VERSION -ge $(version_code 2.7.1) ]] ||
18784                 skip "Need MDS version with at least 2.7.1"
18785         remote_mgs_nodsh && skip "remote MGS with nodsh"
18786         remote_mds_nodsh && skip "remote MDS with nodsh"
18787         remote_ost_nodsh && skip "remote OST with nodsh"
18788         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
18789                 skip "Server doesn't support jobstats"
18790         [[ $JOBID_VAR = disable ]] && skip_env "jobstats is disabled"
18791
18792         local old_jobenv=$($LCTL get_param -n jobid_var)
18793         [ $old_jobenv != $JOBENV ] && jobstats_set $JOBENV
18794
18795         if [[ $PERM_CMD == *"set_param -P"* ]]; then
18796                 stack_trap "do_facet mgs $PERM_CMD jobid_var=$old_jobenv" EXIT
18797         else
18798                 stack_trap "do_facet mgs $PERM_CMD \
18799                         $FSNAME.sys.jobid_var=$old_jobenv" EXIT
18800         fi
18801         changelog_register
18802
18803         local old_interval=$(do_facet $SINGLEMDS lctl get_param -n \
18804                                 mdt.*.job_cleanup_interval | head -n 1)
18805         local new_interval=5
18806         do_facet $SINGLEMDS \
18807                 $LCTL set_param mdt.*.job_cleanup_interval=$new_interval
18808         stack_trap "do_facet $SINGLEMDS \
18809                 $LCTL set_param mdt.*.job_cleanup_interval=$old_interval" EXIT
18810         local start=$SECONDS
18811
18812         local cmd
18813         # mkdir
18814         cmd="$LFS mkdir -i 0 -c 1 $DIR/$tdir"
18815         verify_jobstats "$cmd" "$SINGLEMDS"
18816         # rmdir
18817         cmd="rmdir $DIR/$tdir"
18818         verify_jobstats "$cmd" "$SINGLEMDS"
18819         # mkdir on secondary MDT
18820         if [ $MDSCOUNT -gt 1 ]; then
18821                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
18822                 verify_jobstats "$cmd" "mds2"
18823         fi
18824         # mknod
18825         cmd="mknod $DIR/$tfile c 1 3"
18826         verify_jobstats "$cmd" "$SINGLEMDS"
18827         # unlink
18828         cmd="rm -f $DIR/$tfile"
18829         verify_jobstats "$cmd" "$SINGLEMDS"
18830         # create all files on OST0000 so verify_jobstats can find OST stats
18831         # open & close
18832         cmd="$LFS setstripe -i 0 -c 1 $DIR/$tfile"
18833         verify_jobstats "$cmd" "$SINGLEMDS"
18834         # setattr
18835         cmd="touch $DIR/$tfile"
18836         verify_jobstats "$cmd" "$SINGLEMDS ost1"
18837         # write
18838         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
18839         verify_jobstats "$cmd" "ost1"
18840         # read
18841         cancel_lru_locks osc
18842         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
18843         verify_jobstats "$cmd" "ost1"
18844         # truncate
18845         cmd="$TRUNCATE $DIR/$tfile 0"
18846         verify_jobstats "$cmd" "$SINGLEMDS ost1"
18847         # rename
18848         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
18849         verify_jobstats "$cmd" "$SINGLEMDS"
18850         # jobstats expiry - sleep until old stats should be expired
18851         local left=$((new_interval + 5 - (SECONDS - start)))
18852         [ $left -ge 0 ] && wait_update_facet $SINGLEMDS \
18853                 "lctl get_param *.*.job_stats | grep -c 'job_id.*mkdir'" \
18854                         "0" $left
18855         cmd="$LFS mkdir -i 0 -c 1 $DIR/$tdir.expire"
18856         verify_jobstats "$cmd" "$SINGLEMDS"
18857         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
18858             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
18859
18860         # Ensure that jobid are present in changelog (if supported by MDS)
18861         if [ $MDS1_VERSION -ge $(version_code 2.6.52) ];then
18862                 changelog_dump | tail -10
18863                 jobids=$(changelog_dump | tail -9 | grep -c "j=")
18864                 [ $jobids -eq 9 ] ||
18865                         error "Wrong changelog jobid count $jobids != 9"
18866
18867                 # LU-5862
18868                 JOBENV="disable"
18869                 jobstats_set $JOBENV
18870                 touch $DIR/$tfile
18871                 changelog_dump | grep $tfile
18872                 jobids=$(changelog_dump | grep $tfile | tail -1 | grep -c "j=")
18873                 [ $jobids -eq 0 ] ||
18874                         error "Unexpected jobids when jobid_var=$JOBENV"
18875         fi
18876
18877         # test '%j' access to environment variable - if supported
18878         if lctl set_param jobid_var=USER jobid_name="S.%j.%e.%u.%h.E"; then
18879                 JOBENV="JOBCOMPLEX"
18880                 JOBCOMPLEX="S.$USER.touch.$(id -u).$(hostname).E"
18881
18882                 verify_jobstats "touch $DIR/$tfile" $SINGLEMDS
18883         fi
18884
18885         if lctl set_param jobid_var=USER jobid_name="S.%j.%e.%u.%H.E"; then
18886                 JOBENV="JOBCOMPLEX"
18887                 JOBCOMPLEX="S.$USER.touch.$(id -u).$(hostname -s).E"
18888
18889                 verify_jobstats "touch $DIR/$tfile" $SINGLEMDS
18890         fi
18891
18892         # test '%j' access to per-session jobid - if supported
18893         if lctl list_param jobid_this_session > /dev/null 2>&1
18894         then
18895                 lctl set_param jobid_var=session jobid_name="S.%j.%e.%u.%h.E"
18896                 lctl set_param jobid_this_session=$USER
18897
18898                 JOBENV="JOBCOMPLEX"
18899                 JOBCOMPLEX="S.$USER.touch.$(id -u).$(hostname).E"
18900
18901                 verify_jobstats "touch $DIR/$tfile" $SINGLEMDS
18902         fi
18903 }
18904 run_test 205a "Verify job stats"
18905
18906 # LU-13117, LU-13597
18907 test_205b() {
18908         (( $MDS1_VERSION >= $(version_code 2.13.54.91) )) ||
18909                 skip "Need MDS version at least 2.13.54.91"
18910
18911         local job_stats="mdt.*.job_stats"
18912         local old_jobid=$(do_facet mds1 $LCTL get_param jobid_var)
18913
18914         do_facet mds1 $LCTL set_param $job_stats=clear
18915
18916         # Setting jobid_var to USER might not be supported
18917         [[ -n "$old_jobid" ]] && stack_trap "$LCTL set_param $old_jobid"
18918         $LCTL set_param jobid_var=USER || true
18919         stack_trap "$LCTL set_param $($LCTL get_param jobid_name)"
18920         $LCTL set_param jobid_name="%j.%e.%u"
18921
18922         env -i USERTESTJOBSTATS=foolish touch $DIR/$tfile.1
18923         do_facet mds1 $LCTL get_param $job_stats | grep "job_id:.*foolish" &&
18924                 { do_facet mds1 $LCTL get_param $job_stats;
18925                   error "Unexpected jobid found"; }
18926         do_facet mds1 $LCTL get_param $job_stats | grep "open:.*min.*max.*sum"||
18927                 { do_facet mds1 $LCTL get_param $job_stats;
18928                   error "wrong job_stats format found"; }
18929
18930         (( $MDS1_VERSION <= $(version_code 2.15.0) )) &&
18931                 echo "MDS does not yet escape jobid" && return 0
18932         $LCTL set_param jobid_var=TEST205b
18933         env -i TEST205b="has sp" touch $DIR/$tfile.2
18934         do_facet mds1 $LCTL get_param $job_stats | grep "has.*x20sp" ||
18935                 { do_facet mds1 $LCTL get_param $job_stats;
18936                   error "jobid not escaped"; }
18937 }
18938 run_test 205b "Verify job stats jobid and output format"
18939
18940 # LU-13733
18941 test_205c() {
18942         $LCTL set_param llite.*.stats=0
18943         dd if=/dev/zero of=$DIR/$tfile.1 bs=4k count=1
18944         $LCTL get_param llite.*.stats
18945         $LCTL get_param llite.*.stats | grep \
18946                 "write_bytes *1 samples \[bytes\] 4096 4096 4096 16777216" ||
18947                         error "wrong client stats format found"
18948 }
18949 run_test 205c "Verify client stats format"
18950
18951 # LU-1480, LU-1773 and LU-1657
18952 test_206() {
18953         mkdir -p $DIR/$tdir
18954         $LFS setstripe -c -1 $DIR/$tdir
18955 #define OBD_FAIL_LOV_INIT 0x1403
18956         $LCTL set_param fail_loc=0xa0001403
18957         $LCTL set_param fail_val=1
18958         touch $DIR/$tdir/$tfile || true
18959 }
18960 run_test 206 "fail lov_init_raid0() doesn't lbug"
18961
18962 test_207a() {
18963         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
18964         local fsz=`stat -c %s $DIR/$tfile`
18965         cancel_lru_locks mdc
18966
18967         # do not return layout in getattr intent
18968 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
18969         $LCTL set_param fail_loc=0x170
18970         local sz=`stat -c %s $DIR/$tfile`
18971
18972         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
18973
18974         rm -rf $DIR/$tfile
18975 }
18976 run_test 207a "can refresh layout at glimpse"
18977
18978 test_207b() {
18979         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
18980         local cksum=`md5sum $DIR/$tfile`
18981         local fsz=`stat -c %s $DIR/$tfile`
18982         cancel_lru_locks mdc
18983         cancel_lru_locks osc
18984
18985         # do not return layout in getattr intent
18986 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
18987         $LCTL set_param fail_loc=0x171
18988
18989         # it will refresh layout after the file is opened but before read issues
18990         echo checksum is "$cksum"
18991         echo "$cksum" |md5sum -c --quiet || error "file differs"
18992
18993         rm -rf $DIR/$tfile
18994 }
18995 run_test 207b "can refresh layout at open"
18996
18997 test_208() {
18998         # FIXME: in this test suite, only RD lease is used. This is okay
18999         # for now as only exclusive open is supported. After generic lease
19000         # is done, this test suite should be revised. - Jinshan
19001
19002         remote_mds_nodsh && skip "remote MDS with nodsh"
19003         [[ $MDS1_VERSION -ge $(version_code 2.4.52) ]] ||
19004                 skip "Need MDS version at least 2.4.52"
19005
19006         echo "==== test 1: verify get lease work"
19007         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
19008
19009         echo "==== test 2: verify lease can be broken by upcoming open"
19010         $MULTIOP $DIR/$tfile oO_RDWR:eR_E-eUc &
19011         local PID=$!
19012         sleep 2
19013
19014         $MULTIOP $DIR/$tfile oO_RDWR:c
19015         kill -USR1 $PID && wait $PID || error "break lease error"
19016
19017         echo "==== test 3: verify lease can't be granted if an open already exists"
19018         $MULTIOP $DIR/$tfile oO_RDWR:_c &
19019         local PID=$!
19020         sleep 2
19021
19022         $MULTIOP $DIR/$tfile oO_RDWR:eReUc && error "apply lease should fail"
19023         kill -USR1 $PID && wait $PID || error "open file error"
19024
19025         echo "==== test 4: lease can sustain over recovery"
19026         $MULTIOP $DIR/$tfile oO_RDWR:eR_E+eUc &
19027         PID=$!
19028         sleep 2
19029
19030         fail mds1
19031
19032         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
19033
19034         echo "==== test 5: lease broken can't be regained by replay"
19035         $MULTIOP $DIR/$tfile oO_RDWR:eR_E-eUc &
19036         PID=$!
19037         sleep 2
19038
19039         # open file to break lease and then recovery
19040         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
19041         fail mds1
19042
19043         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
19044
19045         rm -f $DIR/$tfile
19046 }
19047 run_test 208 "Exclusive open"
19048
19049 test_209() {
19050         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
19051                 skip_env "must have disp_stripe"
19052
19053         touch $DIR/$tfile
19054         sync; sleep 5; sync;
19055
19056         echo 3 > /proc/sys/vm/drop_caches
19057         [ -f /sys/kernel/slab/ptlrpc_cache/shrink ] &&
19058                 echo 1 > /sys/kernel/slab/ptlrpc_cache/shrink
19059         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
19060
19061         # open/close 500 times
19062         for i in $(seq 500); do
19063                 cat $DIR/$tfile
19064         done
19065
19066         echo 3 > /proc/sys/vm/drop_caches
19067         [ -f /sys/kernel/slab/ptlrpc_cache/shrink ] &&
19068                 echo 1 > /sys/kernel/slab/ptlrpc_cache/shrink
19069         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
19070
19071         echo "before: $req_before, after: $req_after"
19072         [ $((req_after - req_before)) -ge 300 ] &&
19073                 error "open/close requests are not freed"
19074         return 0
19075 }
19076 run_test 209 "read-only open/close requests should be freed promptly"
19077
19078 test_210() {
19079         local pid
19080
19081         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eW_E+eUc &
19082         pid=$!
19083         sleep 1
19084
19085         $LFS getstripe $DIR/$tfile
19086         kill -USR1 $pid
19087         wait $pid || error "multiop failed"
19088
19089         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
19090         pid=$!
19091         sleep 1
19092
19093         $LFS getstripe $DIR/$tfile
19094         kill -USR1 $pid
19095         wait $pid || error "multiop failed"
19096 }
19097 run_test 210 "lfs getstripe does not break leases"
19098
19099 test_212() {
19100         size=`date +%s`
19101         size=$((size % 8192 + 1))
19102         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
19103         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
19104         rm -f $DIR/f212 $DIR/f212.xyz
19105 }
19106 run_test 212 "Sendfile test ============================================"
19107
19108 test_213() {
19109         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
19110         cancel_lru_locks osc
19111         lctl set_param fail_loc=0x8000040f
19112         # generate a read lock
19113         cat $DIR/$tfile > /dev/null
19114         # write to the file, it will try to cancel the above read lock.
19115         cat /etc/hosts >> $DIR/$tfile
19116 }
19117 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
19118
19119 test_214() { # for bug 20133
19120         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
19121         for (( i=0; i < 340; i++ )) ; do
19122                 touch $DIR/$tdir/d214c/a$i
19123         done
19124
19125         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
19126         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
19127         ls $DIR/d214c || error "ls $DIR/d214c failed"
19128         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
19129         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
19130 }
19131 run_test 214 "hash-indexed directory test - bug 20133"
19132
19133 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
19134 create_lnet_proc_files() {
19135         lctl get_param -n $1 >$TMP/lnet_$1.sys || error "cannot read lnet.$1"
19136 }
19137
19138 # counterpart of create_lnet_proc_files
19139 remove_lnet_proc_files() {
19140         rm -f $TMP/lnet_$1.sys
19141 }
19142
19143 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
19144 # 3rd arg as regexp for body
19145 check_lnet_proc_stats() {
19146         local l=$(cat "$TMP/lnet_$1" |wc -l)
19147         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
19148
19149         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
19150 }
19151
19152 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
19153 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
19154 # optional and can be regexp for 2nd line (lnet.routes case)
19155 check_lnet_proc_entry() {
19156         local blp=2          # blp stands for 'position of 1st line of body'
19157         [ -z "$5" ] || blp=3 # lnet.routes case
19158
19159         local l=$(cat "$TMP/lnet_$1" |wc -l)
19160         # subtracting one from $blp because the body can be empty
19161         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
19162
19163         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
19164                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
19165
19166         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
19167                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
19168
19169         # bail out if any unexpected line happened
19170         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
19171         [ "$?" != 0 ] || error "$2 misformatted"
19172 }
19173
19174 test_215() { # for bugs 18102, 21079, 21517
19175         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19176
19177         local N='(0|[1-9][0-9]*)'       # non-negative numeric
19178         local P='[1-9][0-9]*'           # positive numeric
19179         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
19180         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
19181         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
19182         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
19183
19184         local L1 # regexp for 1st line
19185         local L2 # regexp for 2nd line (optional)
19186         local BR # regexp for the rest (body)
19187
19188         # lnet.stats should look as 11 space-separated non-negative numerics
19189         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
19190         create_lnet_proc_files "stats"
19191         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
19192         remove_lnet_proc_files "stats"
19193
19194         # lnet.routes should look like this:
19195         # Routing disabled/enabled
19196         # net hops priority state router
19197         # where net is a string like tcp0, hops > 0, priority >= 0,
19198         # state is up/down,
19199         # router is a string like 192.168.1.1@tcp2
19200         L1="^Routing (disabled|enabled)$"
19201         L2="^net +hops +priority +state +router$"
19202         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
19203         create_lnet_proc_files "routes"
19204         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
19205         remove_lnet_proc_files "routes"
19206
19207         # lnet.routers should look like this:
19208         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
19209         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
19210         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
19211         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
19212         L1="^ref +rtr_ref +alive +router$"
19213         BR="^$P +$P +(up|down) +$NID$"
19214         create_lnet_proc_files "routers"
19215         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
19216         remove_lnet_proc_files "routers"
19217
19218         # lnet.peers should look like this:
19219         # nid refs state last max rtr min tx min queue
19220         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
19221         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
19222         # numeric (0 or >0 or <0), queue >= 0.
19223         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
19224         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
19225         create_lnet_proc_files "peers"
19226         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
19227         remove_lnet_proc_files "peers"
19228
19229         # lnet.buffers  should look like this:
19230         # pages count credits min
19231         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
19232         L1="^pages +count +credits +min$"
19233         BR="^ +$N +$N +$I +$I$"
19234         create_lnet_proc_files "buffers"
19235         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
19236         remove_lnet_proc_files "buffers"
19237
19238         # lnet.nis should look like this:
19239         # nid status alive refs peer rtr max tx min
19240         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
19241         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
19242         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
19243         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
19244         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
19245         create_lnet_proc_files "nis"
19246         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
19247         remove_lnet_proc_files "nis"
19248
19249         # can we successfully write to lnet.stats?
19250         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
19251 }
19252 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
19253
19254 test_216() { # bug 20317
19255         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19256         remote_ost_nodsh && skip "remote OST with nodsh"
19257
19258         local node
19259         local facets=$(get_facets OST)
19260         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
19261
19262         save_lustre_params client "osc.*.contention_seconds" > $p
19263         save_lustre_params $facets \
19264                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
19265         save_lustre_params $facets \
19266                 "ldlm.namespaces.filter-*.contended_locks" >> $p
19267         save_lustre_params $facets \
19268                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
19269         clear_stats osc.*.osc_stats
19270
19271         # agressive lockless i/o settings
19272         do_nodes $(comma_list $(osts_nodes)) \
19273                 "lctl set_param -n ldlm.namespaces.*.max_nolock_bytes=2000000 \
19274                         ldlm.namespaces.filter-*.contended_locks=0 \
19275                         ldlm.namespaces.filter-*.contention_seconds=60"
19276         lctl set_param -n osc.*.contention_seconds=60
19277
19278         $DIRECTIO write $DIR/$tfile 0 10 4096
19279         $CHECKSTAT -s 40960 $DIR/$tfile
19280
19281         # disable lockless i/o
19282         do_nodes $(comma_list $(osts_nodes)) \
19283                 "lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes=0 \
19284                         ldlm.namespaces.filter-*.contended_locks=32 \
19285                         ldlm.namespaces.filter-*.contention_seconds=0"
19286         lctl set_param -n osc.*.contention_seconds=0
19287         clear_stats osc.*.osc_stats
19288
19289         dd if=/dev/zero of=$DIR/$tfile count=0
19290         $CHECKSTAT -s 0 $DIR/$tfile
19291
19292         restore_lustre_params <$p
19293         rm -f $p
19294         rm $DIR/$tfile
19295 }
19296 run_test 216 "check lockless direct write updates file size and kms correctly"
19297
19298 test_217() { # bug 22430
19299         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19300
19301         local node
19302         local nid
19303
19304         for node in $(nodes_list); do
19305                 nid=$(host_nids_address $node $NETTYPE)
19306                 if [[ $nid = *-* ]] ; then
19307                         echo "lctl ping $(h2nettype $nid)"
19308                         lctl ping $(h2nettype $nid)
19309                 else
19310                         echo "skipping $node (no hyphen detected)"
19311                 fi
19312         done
19313 }
19314 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
19315
19316 test_218() {
19317        # do directio so as not to populate the page cache
19318        log "creating a 10 Mb file"
19319        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
19320        log "starting reads"
19321        dd if=$DIR/$tfile of=/dev/null bs=4096 &
19322        log "truncating the file"
19323        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
19324        log "killing dd"
19325        kill %+ || true # reads might have finished
19326        echo "wait until dd is finished"
19327        wait
19328        log "removing the temporary file"
19329        rm -rf $DIR/$tfile || error "tmp file removal failed"
19330 }
19331 run_test 218 "parallel read and truncate should not deadlock"
19332
19333 test_219() {
19334         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19335
19336         # write one partial page
19337         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
19338         # set no grant so vvp_io_commit_write will do sync write
19339         $LCTL set_param fail_loc=0x411
19340         # write a full page at the end of file
19341         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
19342
19343         $LCTL set_param fail_loc=0
19344         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
19345         $LCTL set_param fail_loc=0x411
19346         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
19347
19348         # LU-4201
19349         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
19350         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
19351 }
19352 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
19353
19354 test_220() { #LU-325
19355         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19356         remote_ost_nodsh && skip "remote OST with nodsh"
19357         remote_mds_nodsh && skip "remote MDS with nodsh"
19358         remote_mgs_nodsh && skip "remote MGS with nodsh"
19359
19360         local OSTIDX=0
19361
19362         # create on MDT0000 so the last_id and next_id are correct
19363         mkdir_on_mdt0 $DIR/$tdir
19364         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
19365         OST=${OST%_UUID}
19366
19367         # on the mdt's osc
19368         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
19369         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
19370                         osp.$mdtosc_proc1.prealloc_last_id)
19371         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
19372                         osp.$mdtosc_proc1.prealloc_next_id)
19373
19374         $LFS df -i
19375
19376         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
19377         #define OBD_FAIL_OST_ENOINO              0x229
19378         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
19379         create_pool $FSNAME.$TESTNAME || return 1
19380         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
19381
19382         $LFS setstripe $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
19383
19384         MDSOBJS=$((last_id - next_id))
19385         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
19386
19387         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
19388         echo "OST still has $count kbytes free"
19389
19390         echo "create $MDSOBJS files @next_id..."
19391         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
19392
19393         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
19394                         osp.$mdtosc_proc1.prealloc_last_id)
19395         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
19396                         osp.$mdtosc_proc1.prealloc_next_id)
19397
19398         echo "after creation, last_id=$last_id2, next_id=$next_id2"
19399         $LFS df -i
19400
19401         echo "cleanup..."
19402
19403         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
19404         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
19405
19406         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST ||
19407                 error "$LCTL pool_remove $FSNAME.$TESTNAME $OST failed"
19408         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
19409                 error "$LCTL pool_destroy $FSNAME.$TESTNAME failed"
19410         echo "unlink $MDSOBJS files @$next_id..."
19411         unlinkmany $DIR/$tdir/f $MDSOBJS || error "unlinkmany failed"
19412 }
19413 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
19414
19415 test_221() {
19416         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19417
19418         dd if=`which date` of=$MOUNT/date oflag=sync
19419         chmod +x $MOUNT/date
19420
19421         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
19422         $LCTL set_param fail_loc=0x80001401
19423
19424         $MOUNT/date > /dev/null
19425         rm -f $MOUNT/date
19426 }
19427 run_test 221 "make sure fault and truncate race to not cause OOM"
19428
19429 test_222a () {
19430         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19431
19432         rm -rf $DIR/$tdir
19433         test_mkdir $DIR/$tdir
19434         $LFS setstripe -c 1 -i 0 $DIR/$tdir
19435         createmany -o $DIR/$tdir/$tfile 10
19436         cancel_lru_locks mdc
19437         cancel_lru_locks osc
19438         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
19439         $LCTL set_param fail_loc=0x31a
19440         ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
19441         $LCTL set_param fail_loc=0
19442         rm -r $DIR/$tdir
19443 }
19444 run_test 222a "AGL for ls should not trigger CLIO lock failure"
19445
19446 test_222b () {
19447         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19448
19449         rm -rf $DIR/$tdir
19450         test_mkdir $DIR/$tdir
19451         $LFS setstripe -c 1 -i 0 $DIR/$tdir
19452         createmany -o $DIR/$tdir/$tfile 10
19453         cancel_lru_locks mdc
19454         cancel_lru_locks osc
19455         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
19456         $LCTL set_param fail_loc=0x31a
19457         rm -r $DIR/$tdir || error "AGL for rmdir failed"
19458         $LCTL set_param fail_loc=0
19459 }
19460 run_test 222b "AGL for rmdir should not trigger CLIO lock failure"
19461
19462 test_223 () {
19463         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19464
19465         rm -rf $DIR/$tdir
19466         test_mkdir $DIR/$tdir
19467         $LFS setstripe -c 1 -i 0 $DIR/$tdir
19468         createmany -o $DIR/$tdir/$tfile 10
19469         cancel_lru_locks mdc
19470         cancel_lru_locks osc
19471         #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
19472         $LCTL set_param fail_loc=0x31b
19473         ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
19474         $LCTL set_param fail_loc=0
19475         rm -r $DIR/$tdir
19476 }
19477 run_test 223 "osc reenqueue if without AGL lock granted ======================="
19478
19479 test_224a() { # LU-1039, MRP-303
19480         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19481         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
19482         $LCTL set_param fail_loc=0x508
19483         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 conv=fsync
19484         $LCTL set_param fail_loc=0
19485         df $DIR
19486 }
19487 run_test 224a "Don't panic on bulk IO failure"
19488
19489 test_224bd_sub() { # LU-1039, MRP-303
19490         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19491         local timeout=$1
19492
19493         shift
19494         dd if=/dev/urandom of=$TMP/$tfile bs=1M count=1
19495
19496         $LFS setstripe -c 1 -i 0 $DIR/$tfile
19497
19498         dd if=$TMP/$tfile of=$DIR/$tfile bs=1M count=1
19499         cancel_lru_locks osc
19500         set_checksums 0
19501         stack_trap "set_checksums $ORIG_CSUM" EXIT
19502         local at_max_saved=0
19503
19504         # adaptive timeouts may prevent seeing the issue
19505         if at_is_enabled; then
19506                 at_max_saved=$(at_max_get mds)
19507                 at_max_set 0 mds client
19508                 stack_trap "at_max_set $at_max_saved mds client" EXIT
19509         fi
19510
19511         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
19512         do_facet ost1 $LCTL set_param fail_val=$timeout fail_loc=0x80000515
19513         dd of=$TMP/$tfile.new if=$DIR/$tfile bs=1M count=1 || "$@"
19514
19515         do_facet ost1 $LCTL set_param fail_loc=0
19516         cmp $TMP/$tfile $TMP/$tfile.new || error "file contents wrong"
19517         df $DIR
19518 }
19519
19520 test_224b() {
19521         test_224bd_sub 3 error "dd failed"
19522 }
19523 run_test 224b "Don't panic on bulk IO failure"
19524
19525 test_224c() { # LU-6441
19526         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19527         remote_mds_nodsh && skip "remote MDS with nodsh"
19528
19529         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
19530         save_writethrough $p
19531         set_cache writethrough on
19532
19533         local pages_per_rpc=$($LCTL get_param osc.*.max_pages_per_rpc)
19534         local at_max=$($LCTL get_param -n at_max)
19535         local timeout=$($LCTL get_param -n timeout)
19536         local test_at="at_max"
19537         local param_at="$FSNAME.sys.at_max"
19538         local test_timeout="timeout"
19539         local param_timeout="$FSNAME.sys.timeout"
19540
19541         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
19542
19543         set_persistent_param_and_check client "$test_at" "$param_at" 0
19544         set_persistent_param_and_check client "$test_timeout" "$param_timeout" 5
19545
19546         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3 0x520
19547         do_facet ost1 "$LCTL set_param fail_loc=0x520"
19548         $LFS setstripe -c 1 -i 0 $DIR/$tfile
19549         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
19550         sync
19551         do_facet ost1 "$LCTL set_param fail_loc=0"
19552
19553         set_persistent_param_and_check client "$test_at" "$param_at" $at_max
19554         set_persistent_param_and_check client "$test_timeout" "$param_timeout" \
19555                 $timeout
19556
19557         $LCTL set_param -n $pages_per_rpc
19558         restore_lustre_params < $p
19559         rm -f $p
19560 }
19561 run_test 224c "Don't hang if one of md lost during large bulk RPC"
19562
19563 test_224d() { # LU-11169
19564         test_224bd_sub $((TIMEOUT + 2)) error "dd failed"
19565 }
19566 run_test 224d "Don't corrupt data on bulk IO timeout"
19567
19568 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
19569 test_225a () {
19570         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19571         if [ -z ${MDSSURVEY} ]; then
19572                 skip_env "mds-survey not found"
19573         fi
19574         [ $MDS1_VERSION -ge $(version_code 2.2.51) ] ||
19575                 skip "Need MDS version at least 2.2.51"
19576
19577         local mds=$(facet_host $SINGLEMDS)
19578         local target=$(do_nodes $mds 'lctl dl' |
19579                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
19580
19581         local cmd1="file_count=1000 thrhi=4"
19582         local cmd2="dir_count=2 layer=mdd stripe_count=0"
19583         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
19584         local cmd="$cmd1 $cmd2 $cmd3"
19585
19586         rm -f ${TMP}/mds_survey*
19587         echo + $cmd
19588         eval $cmd || error "mds-survey with zero-stripe failed"
19589         cat ${TMP}/mds_survey*
19590         rm -f ${TMP}/mds_survey*
19591 }
19592 run_test 225a "Metadata survey sanity with zero-stripe"
19593
19594 test_225b () {
19595         if [ -z ${MDSSURVEY} ]; then
19596                 skip_env "mds-survey not found"
19597         fi
19598         [ $MDS1_VERSION -ge $(version_code 2.2.51) ] ||
19599                 skip "Need MDS version at least 2.2.51"
19600         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19601         remote_mds_nodsh && skip "remote MDS with nodsh"
19602         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
19603                 skip_env "Need to mount OST to test"
19604         fi
19605
19606         local mds=$(facet_host $SINGLEMDS)
19607         local target=$(do_nodes $mds 'lctl dl' |
19608                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
19609
19610         local cmd1="file_count=1000 thrhi=4"
19611         local cmd2="dir_count=2 layer=mdd stripe_count=1"
19612         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
19613         local cmd="$cmd1 $cmd2 $cmd3"
19614
19615         rm -f ${TMP}/mds_survey*
19616         echo + $cmd
19617         eval $cmd || error "mds-survey with stripe_count failed"
19618         cat ${TMP}/mds_survey*
19619         rm -f ${TMP}/mds_survey*
19620 }
19621 run_test 225b "Metadata survey sanity with stripe_count = 1"
19622
19623 mcreate_path2fid () {
19624         local mode=$1
19625         local major=$2
19626         local minor=$3
19627         local name=$4
19628         local desc=$5
19629         local path=$DIR/$tdir/$name
19630         local fid
19631         local rc
19632         local fid_path
19633
19634         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
19635                 error "cannot create $desc"
19636
19637         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
19638         rc=$?
19639         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
19640
19641         fid_path=$($LFS fid2path $MOUNT $fid)
19642         rc=$?
19643         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
19644
19645         [ "$path" == "$fid_path" ] ||
19646                 error "fid2path returned $fid_path, expected $path"
19647
19648         echo "pass with $path and $fid"
19649 }
19650
19651 test_226a () {
19652         rm -rf $DIR/$tdir
19653         mkdir -p $DIR/$tdir
19654
19655         mcreate_path2fid 0010666 0 0 fifo "FIFO"
19656         mcreate_path2fid 0020666 1 3 null "character special file (null)"
19657         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
19658         mcreate_path2fid 0040666 0 0 dir "directory"
19659         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
19660         mcreate_path2fid 0100666 0 0 file "regular file"
19661         mcreate_path2fid 0120666 0 0 link "symbolic link"
19662         mcreate_path2fid 0140666 0 0 sock "socket"
19663 }
19664 run_test 226a "call path2fid and fid2path on files of all type"
19665
19666 test_226b () {
19667         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19668
19669         local MDTIDX=1
19670
19671         rm -rf $DIR/$tdir
19672         mkdir -p $DIR/$tdir
19673         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
19674                 error "create remote directory failed"
19675         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
19676         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
19677                                 "character special file (null)"
19678         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
19679                                 "character special file (no device)"
19680         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
19681         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
19682                                 "block special file (loop)"
19683         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
19684         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
19685         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
19686 }
19687 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
19688
19689 test_226c () {
19690         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19691         [[ $MDS1_VERSION -ge $(version_code 2.13.55) ]] ||
19692                 skip "Need MDS version at least 2.13.55"
19693
19694         local submnt=/mnt/submnt
19695         local srcfile=/etc/passwd
19696         local dstfile=$submnt/passwd
19697         local path
19698         local fid
19699
19700         rm -rf $DIR/$tdir
19701         rm -rf $submnt
19702         $LFS setdirstripe -c -1 -i 1 $DIR/$tdir ||
19703                 error "create remote directory failed"
19704         mkdir -p $submnt || error "create $submnt failed"
19705         $MOUNT_CMD $MGSNID:/$FSNAME/$tdir $submnt ||
19706                 error "mount $submnt failed"
19707         stack_trap "umount $submnt" EXIT
19708
19709         cp $srcfile $dstfile
19710         fid=$($LFS path2fid $dstfile)
19711         path=$($LFS fid2path $submnt "$fid")
19712         [ "$path" = "$dstfile" ] ||
19713                 error "fid2path $submnt $fid failed ($path != $dstfile)"
19714 }
19715 run_test 226c "call path2fid and fid2path under remote dir with subdir mount"
19716
19717 # LU-1299 Executing or running ldd on a truncated executable does not
19718 # cause an out-of-memory condition.
19719 test_227() {
19720         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19721         [ -z "$(which ldd)" ] && skip_env "should have ldd tool"
19722
19723         dd if=$(which date) of=$MOUNT/date bs=1k count=1
19724         chmod +x $MOUNT/date
19725
19726         $MOUNT/date > /dev/null
19727         ldd $MOUNT/date > /dev/null
19728         rm -f $MOUNT/date
19729 }
19730 run_test 227 "running truncated executable does not cause OOM"
19731
19732 # LU-1512 try to reuse idle OI blocks
19733 test_228a() {
19734         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19735         remote_mds_nodsh && skip "remote MDS with nodsh"
19736         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
19737
19738         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
19739         local myDIR=$DIR/$tdir
19740
19741         mkdir -p $myDIR
19742         #define OBD_FAIL_SEQ_EXHAUST             0x1002
19743         $LCTL set_param fail_loc=0x80001002
19744         createmany -o $myDIR/t- 10000
19745         $LCTL set_param fail_loc=0
19746         # The guard is current the largest FID holder
19747         touch $myDIR/guard
19748         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
19749                     tr -d '[')
19750         local IDX=$(($SEQ % 64))
19751
19752         do_facet $SINGLEMDS sync
19753         # Make sure journal flushed.
19754         sleep 6
19755         local blk1=$(do_facet $SINGLEMDS \
19756                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
19757                      grep Blockcount | awk '{print $4}')
19758
19759         # Remove old files, some OI blocks will become idle.
19760         unlinkmany $myDIR/t- 10000
19761         # Create new files, idle OI blocks should be reused.
19762         createmany -o $myDIR/t- 2000
19763         do_facet $SINGLEMDS sync
19764         # Make sure journal flushed.
19765         sleep 6
19766         local blk2=$(do_facet $SINGLEMDS \
19767                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
19768                      grep Blockcount | awk '{print $4}')
19769
19770         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
19771 }
19772 run_test 228a "try to reuse idle OI blocks"
19773
19774 test_228b() {
19775         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19776         remote_mds_nodsh && skip "remote MDS with nodsh"
19777         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
19778
19779         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
19780         local myDIR=$DIR/$tdir
19781
19782         mkdir -p $myDIR
19783         #define OBD_FAIL_SEQ_EXHAUST             0x1002
19784         $LCTL set_param fail_loc=0x80001002
19785         createmany -o $myDIR/t- 10000
19786         $LCTL set_param fail_loc=0
19787         # The guard is current the largest FID holder
19788         touch $myDIR/guard
19789         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
19790                     tr -d '[')
19791         local IDX=$(($SEQ % 64))
19792
19793         do_facet $SINGLEMDS sync
19794         # Make sure journal flushed.
19795         sleep 6
19796         local blk1=$(do_facet $SINGLEMDS \
19797                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
19798                      grep Blockcount | awk '{print $4}')
19799
19800         # Remove old files, some OI blocks will become idle.
19801         unlinkmany $myDIR/t- 10000
19802
19803         # stop the MDT
19804         stop $SINGLEMDS || error "Fail to stop MDT."
19805         # remount the MDT
19806         start $SINGLEMDS $(facet_device $SINGLEMDS) $MDS_MOUNT_OPTS ||
19807                 error "Fail to start MDT."
19808
19809         df $MOUNT || error "Fail to df."
19810         # Create new files, idle OI blocks should be reused.
19811         createmany -o $myDIR/t- 2000
19812         do_facet $SINGLEMDS sync
19813         # Make sure journal flushed.
19814         sleep 6
19815         local blk2=$(do_facet $SINGLEMDS \
19816                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
19817                      grep Blockcount | awk '{print $4}')
19818
19819         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
19820 }
19821 run_test 228b "idle OI blocks can be reused after MDT restart"
19822
19823 #LU-1881
19824 test_228c() {
19825         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19826         remote_mds_nodsh && skip "remote MDS with nodsh"
19827         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
19828
19829         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
19830         local myDIR=$DIR/$tdir
19831
19832         mkdir -p $myDIR
19833         #define OBD_FAIL_SEQ_EXHAUST             0x1002
19834         $LCTL set_param fail_loc=0x80001002
19835         # 20000 files can guarantee there are index nodes in the OI file
19836         createmany -o $myDIR/t- 20000
19837         $LCTL set_param fail_loc=0
19838         # The guard is current the largest FID holder
19839         touch $myDIR/guard
19840         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
19841                     tr -d '[')
19842         local IDX=$(($SEQ % 64))
19843
19844         do_facet $SINGLEMDS sync
19845         # Make sure journal flushed.
19846         sleep 6
19847         local blk1=$(do_facet $SINGLEMDS \
19848                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
19849                      grep Blockcount | awk '{print $4}')
19850
19851         # Remove old files, some OI blocks will become idle.
19852         unlinkmany $myDIR/t- 20000
19853         rm -f $myDIR/guard
19854         # The OI file should become empty now
19855
19856         # Create new files, idle OI blocks should be reused.
19857         createmany -o $myDIR/t- 2000
19858         do_facet $SINGLEMDS sync
19859         # Make sure journal flushed.
19860         sleep 6
19861         local blk2=$(do_facet $SINGLEMDS \
19862                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
19863                      grep Blockcount | awk '{print $4}')
19864
19865         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
19866 }
19867 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
19868
19869 test_229() { # LU-2482, LU-3448
19870         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19871         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
19872         [ $MDS1_VERSION -lt $(version_code 2.4.53) ] &&
19873                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53"
19874
19875         rm -f $DIR/$tfile
19876
19877         # Create a file with a released layout and stripe count 2.
19878         $MULTIOP $DIR/$tfile H2c ||
19879                 error "failed to create file with released layout"
19880
19881         $LFS getstripe -v $DIR/$tfile
19882
19883         local pattern=$($LFS getstripe -L $DIR/$tfile)
19884         [ X"$pattern" = X"released" ] || error "pattern error ($pattern)"
19885
19886         local stripe_count=$($LFS getstripe -c $DIR/$tfile) ||
19887                 error "getstripe"
19888         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
19889         stat $DIR/$tfile || error "failed to stat released file"
19890
19891         chown $RUNAS_ID $DIR/$tfile ||
19892                 error "chown $RUNAS_ID $DIR/$tfile failed"
19893
19894         chgrp $RUNAS_ID $DIR/$tfile ||
19895                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
19896
19897         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
19898         rm $DIR/$tfile || error "failed to remove released file"
19899 }
19900 run_test 229 "getstripe/stat/rm/attr changes work on released files"
19901
19902 test_230a() {
19903         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19904         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19905         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
19906                 skip "Need MDS version at least 2.11.52"
19907
19908         local MDTIDX=1
19909
19910         test_mkdir $DIR/$tdir
19911         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
19912         local mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230_local)
19913         [ $mdt_idx -ne 0 ] &&
19914                 error "create local directory on wrong MDT $mdt_idx"
19915
19916         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
19917                         error "create remote directory failed"
19918         local mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230)
19919         [ $mdt_idx -ne $MDTIDX ] &&
19920                 error "create remote directory on wrong MDT $mdt_idx"
19921
19922         createmany -o $DIR/$tdir/test_230/t- 10 ||
19923                 error "create files on remote directory failed"
19924         mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230/t-0)
19925         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
19926         rm -r $DIR/$tdir || error "unlink remote directory failed"
19927 }
19928 run_test 230a "Create remote directory and files under the remote directory"
19929
19930 test_230b() {
19931         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19932         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19933         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
19934                 skip "Need MDS version at least 2.11.52"
19935
19936         local MDTIDX=1
19937         local mdt_index
19938         local i
19939         local file
19940         local pid
19941         local stripe_count
19942         local migrate_dir=$DIR/$tdir/migrate_dir
19943         local other_dir=$DIR/$tdir/other_dir
19944
19945         test_mkdir $DIR/$tdir
19946         test_mkdir -i0 -c1 $migrate_dir
19947         test_mkdir -i0 -c1 $other_dir
19948         for ((i=0; i<10; i++)); do
19949                 mkdir -p $migrate_dir/dir_${i}
19950                 createmany -o $migrate_dir/dir_${i}/f 10 ||
19951                         error "create files under remote dir failed $i"
19952         done
19953
19954         cp /etc/passwd $migrate_dir/$tfile
19955         cp /etc/passwd $other_dir/$tfile
19956         chattr +SAD $migrate_dir
19957         chattr +SAD $migrate_dir/$tfile
19958
19959         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
19960         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
19961         local old_dir_mode=$(stat -c%f $migrate_dir)
19962         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
19963
19964         mkdir -p $migrate_dir/dir_default_stripe2
19965         $LFS setstripe -c 2 $migrate_dir/dir_default_stripe2
19966         $LFS setstripe -c 2 $migrate_dir/${tfile}_stripe2
19967
19968         mkdir -p $other_dir
19969         ln $migrate_dir/$tfile $other_dir/luna
19970         ln $migrate_dir/$tfile $migrate_dir/sofia
19971         ln $other_dir/$tfile $migrate_dir/david
19972         ln -s $migrate_dir/$tfile $other_dir/zachary
19973         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
19974         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
19975
19976         local len
19977         local lnktgt
19978
19979         # inline symlink
19980         for len in 58 59 60; do
19981                 lnktgt=$(str_repeat 'l' $len)
19982                 touch $migrate_dir/$lnktgt
19983                 ln -s $lnktgt $migrate_dir/${len}char_ln
19984         done
19985
19986         # PATH_MAX
19987         for len in 4094 4095; do
19988                 lnktgt=$(str_repeat 'l' $len)
19989                 ln -s $lnktgt $migrate_dir/${len}char_ln
19990         done
19991
19992         # NAME_MAX
19993         for len in 254 255; do
19994                 touch $migrate_dir/$(str_repeat 'l' $len)
19995         done
19996
19997         $LFS migrate -m $MDTIDX $migrate_dir ||
19998                 error "fails on migrating remote dir to MDT1"
19999
20000         echo "migratate to MDT1, then checking.."
20001         for ((i = 0; i < 10; i++)); do
20002                 for file in $(find $migrate_dir/dir_${i}); do
20003                         mdt_index=$($LFS getstripe -m $file)
20004                         # broken symlink getstripe will fail
20005                         [ $mdt_index -ne $MDTIDX ] && stat -L $file &&
20006                                 error "$file is not on MDT${MDTIDX}"
20007                 done
20008         done
20009
20010         # the multiple link file should still in MDT0
20011         mdt_index=$($LFS getstripe -m $migrate_dir/$tfile)
20012         [ $mdt_index == 0 ] ||
20013                 error "$file is not on MDT${MDTIDX}"
20014
20015         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
20016         [ "$old_dir_flag" = "$new_dir_flag" ] ||
20017                 error " expect $old_dir_flag get $new_dir_flag"
20018
20019         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
20020         [ "$old_file_flag" = "$new_file_flag" ] ||
20021                 error " expect $old_file_flag get $new_file_flag"
20022
20023         local new_dir_mode=$(stat -c%f $migrate_dir)
20024         [ "$old_dir_mode" = "$new_dir_mode" ] ||
20025                 error "expect mode $old_dir_mode get $new_dir_mode"
20026
20027         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
20028         [ "$old_file_mode" = "$new_file_mode" ] ||
20029                 error "expect mode $old_file_mode get $new_file_mode"
20030
20031         diff /etc/passwd $migrate_dir/$tfile ||
20032                 error "$tfile different after migration"
20033
20034         diff /etc/passwd $other_dir/luna ||
20035                 error "luna different after migration"
20036
20037         diff /etc/passwd $migrate_dir/sofia ||
20038                 error "sofia different after migration"
20039
20040         diff /etc/passwd $migrate_dir/david ||
20041                 error "david different after migration"
20042
20043         diff /etc/passwd $other_dir/zachary ||
20044                 error "zachary different after migration"
20045
20046         diff /etc/passwd $migrate_dir/${tfile}_ln ||
20047                 error "${tfile}_ln different after migration"
20048
20049         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
20050                 error "${tfile}_ln_other different after migration"
20051
20052         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
20053         [ $stripe_count = 2 ] ||
20054                 error "dir strpe_count $d != 2 after migration."
20055
20056         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
20057         [ $stripe_count = 2 ] ||
20058                 error "file strpe_count $d != 2 after migration."
20059
20060         #migrate back to MDT0
20061         MDTIDX=0
20062
20063         $LFS migrate -m $MDTIDX $migrate_dir ||
20064                 error "fails on migrating remote dir to MDT0"
20065
20066         echo "migrate back to MDT0, checking.."
20067         for file in $(find $migrate_dir); do
20068                 mdt_index=$($LFS getstripe -m $file)
20069                 [ $mdt_index -ne $MDTIDX ] && stat -L $file &&
20070                         error "$file is not on MDT${MDTIDX}"
20071         done
20072
20073         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
20074         [ "$old_dir_flag" = "$new_dir_flag" ] ||
20075                 error " expect $old_dir_flag get $new_dir_flag"
20076
20077         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
20078         [ "$old_file_flag" = "$new_file_flag" ] ||
20079                 error " expect $old_file_flag get $new_file_flag"
20080
20081         local new_dir_mode=$(stat -c%f $migrate_dir)
20082         [ "$old_dir_mode" = "$new_dir_mode" ] ||
20083                 error "expect mode $old_dir_mode get $new_dir_mode"
20084
20085         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
20086         [ "$old_file_mode" = "$new_file_mode" ] ||
20087                 error "expect mode $old_file_mode get $new_file_mode"
20088
20089         diff /etc/passwd ${migrate_dir}/$tfile ||
20090                 error "$tfile different after migration"
20091
20092         diff /etc/passwd ${other_dir}/luna ||
20093                 error "luna different after migration"
20094
20095         diff /etc/passwd ${migrate_dir}/sofia ||
20096                 error "sofia different after migration"
20097
20098         diff /etc/passwd ${other_dir}/zachary ||
20099                 error "zachary different after migration"
20100
20101         diff /etc/passwd $migrate_dir/${tfile}_ln ||
20102                 error "${tfile}_ln different after migration"
20103
20104         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
20105                 error "${tfile}_ln_other different after migration"
20106
20107         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
20108         [ $stripe_count = 2 ] ||
20109                 error "dir strpe_count $d != 2 after migration."
20110
20111         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
20112         [ $stripe_count = 2 ] ||
20113                 error "file strpe_count $d != 2 after migration."
20114
20115         rm -rf $DIR/$tdir || error "rm dir failed after migration"
20116 }
20117 run_test 230b "migrate directory"
20118
20119 test_230c() {
20120         [ $PARALLEL == "yes" ] && skip "skip parallel run"
20121         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
20122         remote_mds_nodsh && skip "remote MDS with nodsh"
20123         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
20124                 skip "Need MDS version at least 2.11.52"
20125
20126         local MDTIDX=1
20127         local total=3
20128         local mdt_index
20129         local file
20130         local migrate_dir=$DIR/$tdir/migrate_dir
20131
20132         #If migrating directory fails in the middle, all entries of
20133         #the directory is still accessiable.
20134         test_mkdir $DIR/$tdir
20135         test_mkdir -i0 -c1 $migrate_dir
20136         test_mkdir -i1 -c1 $DIR/$tdir/remote_dir
20137         stat $migrate_dir
20138         createmany -o $migrate_dir/f $total ||
20139                 error "create files under ${migrate_dir} failed"
20140
20141         # fail after migrating top dir, and this will fail only once, so the
20142         # first sub file migration will fail (currently f3), others succeed.
20143         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
20144         do_facet mds1 lctl set_param fail_loc=0x1801
20145         local t=$(ls $migrate_dir | wc -l)
20146         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
20147                 error "migrate should fail"
20148         local u=$(ls $migrate_dir | wc -l)
20149         [ "$u" == "$t" ] || error "$u != $t during migration"
20150
20151         # add new dir/file should succeed
20152         mkdir $migrate_dir/dir ||
20153                 error "mkdir failed under migrating directory"
20154         touch $migrate_dir/file ||
20155                 error "create file failed under migrating directory"
20156
20157         # add file with existing name should fail
20158         for file in $migrate_dir/f*; do
20159                 stat $file > /dev/null || error "stat $file failed"
20160                 $OPENFILE -f O_CREAT:O_EXCL $file &&
20161                         error "open(O_CREAT|O_EXCL) $file should fail"
20162                 $MULTIOP $file m && error "create $file should fail"
20163                 touch $DIR/$tdir/remote_dir/$tfile ||
20164                         error "touch $tfile failed"
20165                 ln $DIR/$tdir/remote_dir/$tfile $file &&
20166                         error "link $file should fail"
20167                 mdt_index=$($LFS getstripe -m $file)
20168                 if [ $mdt_index == 0 ]; then
20169                         # file failed to migrate is not allowed to rename to
20170                         mv $DIR/$tdir/remote_dir/$tfile $file &&
20171                                 error "rename to $file should fail"
20172                 else
20173                         mv $DIR/$tdir/remote_dir/$tfile $file ||
20174                                 error "rename to $file failed"
20175                 fi
20176                 echo hello >> $file || error "write $file failed"
20177         done
20178
20179         # resume migration with different options should fail
20180         $LFS migrate -m 0 $migrate_dir &&
20181                 error "migrate -m 0 $migrate_dir should fail"
20182
20183         $LFS migrate -m $MDTIDX -c 2 $migrate_dir &&
20184                 error "migrate -c 2 $migrate_dir should fail"
20185
20186         # resume migration should succeed
20187         $LFS migrate -m $MDTIDX $migrate_dir ||
20188                 error "migrate $migrate_dir failed"
20189
20190         echo "Finish migration, then checking.."
20191         for file in $(find $migrate_dir); do
20192                 mdt_index=$($LFS getstripe -m $file)
20193                 [ $mdt_index == $MDTIDX ] ||
20194                         error "$file is not on MDT${MDTIDX}"
20195         done
20196
20197         rm -rf $DIR/$tdir || error "rm dir failed after migration"
20198 }
20199 run_test 230c "check directory accessiblity if migration failed"
20200
20201 test_230d() {
20202         [ $PARALLEL == "yes" ] && skip "skip parallel run"
20203         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
20204         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
20205                 skip "Need MDS version at least 2.11.52"
20206         # LU-11235
20207         [ "$mds1_FSTYPE" == "zfs" ] && skip "skip ZFS backend"
20208
20209         local migrate_dir=$DIR/$tdir/migrate_dir
20210         local old_index
20211         local new_index
20212         local old_count
20213         local new_count
20214         local new_hash
20215         local mdt_index
20216         local i
20217         local j
20218
20219         old_index=$((RANDOM % MDSCOUNT))
20220         old_count=$((MDSCOUNT - old_index))
20221         new_index=$((RANDOM % MDSCOUNT))
20222         new_count=$((MDSCOUNT - new_index))
20223         new_hash=1 # for all_char
20224
20225         [ $old_count -gt 1 ] && old_count=$((old_count - RANDOM % old_count))
20226         [ $new_count -gt 1 ] && new_count=$((new_count - RANDOM % new_count))
20227
20228         test_mkdir $DIR/$tdir
20229         test_mkdir -i $old_index -c $old_count $migrate_dir
20230
20231         for ((i=0; i<100; i++)); do
20232                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
20233                 createmany -o $migrate_dir/dir_${i}/f 100 ||
20234                         error "create files under remote dir failed $i"
20235         done
20236
20237         echo -n "Migrate from MDT$old_index "
20238         [ $old_count -gt 1 ] && echo -n "... MDT$((old_index + old_count - 1)) "
20239         echo -n "to MDT$new_index"
20240         [ $new_count -gt 1 ] && echo -n " ... MDT$((new_index + new_count - 1))"
20241         echo
20242
20243         echo "$LFS migrate -m$new_index -c$new_count -H $new_hash $migrate_dir"
20244         $LFS migrate -m $new_index -c $new_count -H $new_hash $migrate_dir ||
20245                 error "migrate remote dir error"
20246
20247         echo "Finish migration, then checking.."
20248         for file in $(find $migrate_dir -maxdepth 1); do
20249                 mdt_index=$($LFS getstripe -m $file)
20250                 if [ $mdt_index -lt $new_index ] ||
20251                    [ $mdt_index -gt $((new_index + new_count - 1)) ]; then
20252                         error "$file is on MDT$mdt_index"
20253                 fi
20254         done
20255
20256         rm -rf $DIR/$tdir || error "rm dir failed after migration"
20257 }
20258 run_test 230d "check migrate big directory"
20259
20260 test_230e() {
20261         [ $PARALLEL == "yes" ] && skip "skip parallel run"
20262         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
20263         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
20264                 skip "Need MDS version at least 2.11.52"
20265
20266         local i
20267         local j
20268         local a_fid
20269         local b_fid
20270
20271         mkdir_on_mdt0 $DIR/$tdir
20272         mkdir $DIR/$tdir/migrate_dir
20273         mkdir $DIR/$tdir/other_dir
20274         touch $DIR/$tdir/migrate_dir/a
20275         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
20276         ls $DIR/$tdir/other_dir
20277
20278         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
20279                 error "migrate dir fails"
20280
20281         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
20282         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
20283
20284         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
20285         [ $mdt_index == 0 ] || error "a is not on MDT0"
20286
20287         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
20288                 error "migrate dir fails"
20289
20290         mdt_index=$($LFS getstripe -m $DIR/$tdir/other_dir)
20291         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
20292
20293         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
20294         [ $mdt_index == 1 ] || error "a is not on MDT1"
20295
20296         mdt_index=$($LFS getstripe -m $DIR/$tdir/other_dir/b)
20297         [ $mdt_index == 1 ] || error "b is not on MDT1"
20298
20299         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
20300         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
20301
20302         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
20303
20304         rm -rf $DIR/$tdir || error "rm dir failed after migration"
20305 }
20306 run_test 230e "migrate mulitple local link files"
20307
20308 test_230f() {
20309         [ $PARALLEL == "yes" ] && skip "skip parallel run"
20310         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
20311         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
20312                 skip "Need MDS version at least 2.11.52"
20313
20314         local a_fid
20315         local ln_fid
20316
20317         mkdir -p $DIR/$tdir
20318         mkdir $DIR/$tdir/migrate_dir
20319         $LFS mkdir -i1 $DIR/$tdir/other_dir
20320         touch $DIR/$tdir/migrate_dir/a
20321         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
20322         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
20323         ls $DIR/$tdir/other_dir
20324
20325         # a should be migrated to MDT1, since no other links on MDT0
20326         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
20327                 error "#1 migrate dir fails"
20328         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
20329         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
20330         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
20331         [ $mdt_index == 1 ] || error "a is not on MDT1"
20332
20333         # a should stay on MDT1, because it is a mulitple link file
20334         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
20335                 error "#2 migrate dir fails"
20336         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
20337         [ $mdt_index == 1 ] || error "a is not on MDT1"
20338
20339         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
20340                 error "#3 migrate dir fails"
20341
20342         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
20343         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
20344         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
20345
20346         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
20347         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
20348
20349         # a should be migrated to MDT0, since no other links on MDT1
20350         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
20351                 error "#4 migrate dir fails"
20352         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
20353         [ $mdt_index == 0 ] || error "a is not on MDT0"
20354
20355         rm -rf $DIR/$tdir || error "rm dir failed after migration"
20356 }
20357 run_test 230f "migrate mulitple remote link files"
20358
20359 test_230g() {
20360         [ $PARALLEL == "yes" ] && skip "skip parallel run"
20361         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
20362         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
20363                 skip "Need MDS version at least 2.11.52"
20364
20365         mkdir -p $DIR/$tdir/migrate_dir
20366
20367         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
20368                 error "migrating dir to non-exist MDT succeeds"
20369         true
20370 }
20371 run_test 230g "migrate dir to non-exist MDT"
20372
20373 test_230h() {
20374         [ $PARALLEL == "yes" ] && skip "skip parallel run"
20375         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
20376         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
20377                 skip "Need MDS version at least 2.11.52"
20378
20379         local mdt_index
20380
20381         mkdir -p $DIR/$tdir/migrate_dir
20382
20383         $LFS migrate -m1 $DIR &&
20384                 error "migrating mountpoint1 should fail"
20385
20386         $LFS migrate -m1 $DIR/$tdir/.. &&
20387                 error "migrating mountpoint2 should fail"
20388
20389         # same as mv
20390         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. &&
20391                 error "migrating $tdir/migrate_dir/.. should fail"
20392
20393         true
20394 }
20395 run_test 230h "migrate .. and root"
20396
20397 test_230i() {
20398         [ $PARALLEL == "yes" ] && skip "skip parallel run"
20399         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
20400         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
20401                 skip "Need MDS version at least 2.11.52"
20402
20403         mkdir -p $DIR/$tdir/migrate_dir
20404
20405         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
20406                 error "migration fails with a tailing slash"
20407
20408         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
20409                 error "migration fails with two tailing slashes"
20410 }
20411 run_test 230i "lfs migrate -m tolerates trailing slashes"
20412
20413 test_230j() {
20414         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
20415         [ $MDS1_VERSION -lt $(version_code 2.13.52) ] &&
20416                 skip "Need MDS version at least 2.11.52"
20417
20418         $LFS mkdir -m 0 -c 1 $DIR/$tdir || error "mkdir $tdir failed"
20419         $LFS setstripe -E 1M -L mdt $DIR/$tdir/$tfile ||
20420                 error "create $tfile failed"
20421         cat /etc/passwd > $DIR/$tdir/$tfile
20422
20423         $LFS migrate -m 1 $DIR/$tdir || error "migrate failed"
20424
20425         cmp /etc/passwd $DIR/$tdir/$tfile ||
20426                 error "DoM file mismatch after migration"
20427 }
20428 run_test 230j "DoM file data not changed after dir migration"
20429
20430 test_230k() {
20431         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs"
20432         [ $MDS1_VERSION -lt $(version_code 2.11.56) ] &&
20433                 skip "Need MDS version at least 2.11.56"
20434
20435         local total=20
20436         local files_on_starting_mdt=0
20437
20438         $LFS mkdir -i -1 -c 2 $DIR/$tdir || error "mkdir failed"
20439         $LFS getdirstripe $DIR/$tdir
20440         for i in $(seq $total); do
20441                 echo $((i*i - i)) > $DIR/$tdir/$tfile.$i || error "write failed"
20442                 [[ $($LFS getstripe -m $DIR/$tdir/$tfile.$i) -eq 0 ]] &&
20443                         files_on_starting_mdt=$((files_on_starting_mdt + 1))
20444         done
20445
20446         echo "$files_on_starting_mdt files on MDT0"
20447
20448         $LFS migrate -m 1,3 $DIR/$tdir || error "migrate -m 1,3 failed"
20449         $LFS getdirstripe $DIR/$tdir
20450
20451         files_on_starting_mdt=0
20452         for i in $(seq $total); do
20453                 $(echo $((i*i - i)) | cmp $DIR/$tdir/$tfile.$i -) ||
20454                         error "file $tfile.$i mismatch after migration"
20455                 [[ $($LFS getstripe -m $DIR/$tdir/$tfile.$i) -eq 1 ]] &&
20456                         files_on_starting_mdt=$((files_on_starting_mdt + 1))
20457         done
20458
20459         echo "$files_on_starting_mdt files on MDT1 after migration"
20460         [[ $files_on_starting_mdt -eq $total ]] && error "all files on MDT1"
20461
20462         $LFS migrate -m 0 -c 2 $DIR/$tdir || error "migrate -m 0 -c 2 failed"
20463         $LFS getdirstripe $DIR/$tdir
20464
20465         files_on_starting_mdt=0
20466         for i in $(seq $total); do
20467                 $(echo $((i*i - i)) | cmp $DIR/$tdir/$tfile.$i -) ||
20468                         error "file $tfile.$i mismatch after 2nd migration"
20469                 [[ $($LFS getstripe -m $DIR/$tdir/$tfile.$i) -eq 0 ]] &&
20470                         files_on_starting_mdt=$((files_on_starting_mdt + 1))
20471         done
20472
20473         echo "$files_on_starting_mdt files on MDT0 after 2nd migration"
20474         [[ $files_on_starting_mdt -eq $total ]] && error "all files on MDT0"
20475
20476         true
20477 }
20478 run_test 230k "file data not changed after dir migration"
20479
20480 test_230l() {
20481         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
20482         [ $MDS1_VERSION -lt $(version_code 2.11.56) ] &&
20483                 skip "Need MDS version at least 2.11.56"
20484
20485         $LFS mkdir -i 0 -c 1 $DIR/$tdir || error "mkdir failed"
20486         createmany -o $DIR/$tdir/f___________________________________ 1000 ||
20487                 error "create files under remote dir failed $i"
20488         $LFS migrate -m 1 $DIR/$tdir || error "migrate failed"
20489 }
20490 run_test 230l "readdir between MDTs won't crash"
20491
20492 test_230m() {
20493         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
20494         [ $MDS1_VERSION -lt $(version_code 2.11.56) ] &&
20495                 skip "Need MDS version at least 2.11.56"
20496
20497         local MDTIDX=1
20498         local mig_dir=$DIR/$tdir/migrate_dir
20499         local longstr="aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
20500         local shortstr="b"
20501         local val
20502
20503         echo "Creating files and dirs with xattrs"
20504         test_mkdir $DIR/$tdir
20505         test_mkdir -i0 -c1 $mig_dir
20506         mkdir $mig_dir/dir
20507         setfattr -n user.attr1 -v $longstr $mig_dir/dir ||
20508                 error "cannot set xattr attr1 on dir"
20509         setfattr -n user.attr2 -v $shortstr $mig_dir/dir ||
20510                 error "cannot set xattr attr2 on dir"
20511         touch $mig_dir/dir/f0
20512         setfattr -n user.attr1 -v $longstr $mig_dir/dir/f0 ||
20513                 error "cannot set xattr attr1 on file"
20514         setfattr -n user.attr2 -v $shortstr $mig_dir/dir/f0 ||
20515                 error "cannot set xattr attr2 on file"
20516         sync ; sync ; echo 3 > /proc/sys/vm/drop_caches
20517         val=$(getfattr --only-values -n user.attr1 $mig_dir/dir 2>/dev/null)
20518         [ "$val" = $longstr ] || error "xattr attr1 not set properly on dir"
20519         val=$(getfattr --only-values -n user.attr2 $mig_dir/dir 2>/dev/null)
20520         [ "$val" = $shortstr ] || error "xattr attr2 not set properly on dir"
20521         val=$(getfattr --only-values -n user.attr1 $mig_dir/dir/f0 2>/dev/null)
20522         [ "$val" = $longstr ] || error "xattr attr1 not set properly on file"
20523         val=$(getfattr --only-values -n user.attr2 $mig_dir/dir/f0 2>/dev/null)
20524         [ "$val" = $shortstr ] || error "xattr attr2 not set properly on file"
20525
20526         echo "Migrating to MDT1"
20527         $LFS migrate -m $MDTIDX $mig_dir ||
20528                 error "fails on migrating dir to MDT1"
20529
20530         sync ; sync ; echo 3 > /proc/sys/vm/drop_caches
20531         echo "Checking xattrs"
20532         val=$(getfattr --only-values -n user.attr1 $mig_dir/dir 2>/dev/null)
20533         [ "$val" = $longstr ] ||
20534                 error "expecting xattr1 $longstr on dir, found $val"
20535         val=$(getfattr --only-values -n user.attr2 $mig_dir/dir 2>/dev/null)
20536         [ "$val" = $shortstr ] ||
20537                 error "expecting xattr2 $shortstr on dir, found $val"
20538         val=$(getfattr --only-values -n user.attr1 $mig_dir/dir/f0 2>/dev/null)
20539         [ "$val" = $longstr ] ||
20540                 error "expecting xattr1 $longstr on file, found $val"
20541         val=$(getfattr --only-values -n user.attr2 $mig_dir/dir/f0 2>/dev/null)
20542         [ "$val" = $shortstr ] ||
20543                 error "expecting xattr2 $shortstr on file, found $val"
20544 }
20545 run_test 230m "xattrs not changed after dir migration"
20546
20547 test_230n() {
20548         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
20549         [[ $MDS1_VERSION -ge $(version_code 2.13.53) ]] ||
20550                 skip "Need MDS version at least 2.13.53"
20551
20552         $LFS mkdir -i 0 $DIR/$tdir || error "mkdir $tdir failed"
20553         cat /etc/hosts > $DIR/$tdir/$tfile
20554         $LFS mirror extend -N1 $DIR/$tdir/$tfile || error "Mirroring failed"
20555         $LFS migrate -m 1 $DIR/$tdir || error "Migration failed"
20556
20557         cmp /etc/hosts $DIR/$tdir/$tfile ||
20558                 error "File data mismatch after migration"
20559 }
20560 run_test 230n "Dir migration with mirrored file"
20561
20562 test_230o() {
20563         [ $MDSCOUNT -ge 2 ] || skip "needs >= 2 MDTs"
20564         [ $MDS1_VERSION -ge $(version_code 2.13.52) ] ||
20565                 skip "Need MDS version at least 2.13.52"
20566
20567         local mdts=$(comma_list $(mdts_nodes))
20568         local timeout=100
20569         local restripe_status
20570         local delta
20571         local i
20572
20573         [[ $mds1_FSTYPE == zfs ]] && timeout=300
20574
20575         # in case "crush" hash type is not set
20576         do_nodes $mdts "$LCTL set_param lod.*.mdt_hash=crush"
20577
20578         restripe_status=$(do_facet mds1 $LCTL get_param -n \
20579                            mdt.*MDT0000.enable_dir_restripe)
20580         do_nodes $mdts "$LCTL set_param mdt.*.enable_dir_restripe=1"
20581         stack_trap "do_nodes $mdts $LCTL set_param \
20582                     mdt.*.enable_dir_restripe=$restripe_status"
20583
20584         mkdir $DIR/$tdir
20585         createmany -m $DIR/$tdir/f 100 ||
20586                 error "create files under remote dir failed $i"
20587         createmany -d $DIR/$tdir/d 100 ||
20588                 error "create dirs under remote dir failed $i"
20589
20590         for i in $(seq 2 $MDSCOUNT); do
20591                 do_nodes $mdts "$LCTL set_param mdt.*.md_stats=clear >/dev/null"
20592                 $LFS setdirstripe -c $i $DIR/$tdir ||
20593                         error "split -c $i $tdir failed"
20594                 wait_update $HOSTNAME \
20595                         "$LFS getdirstripe -H $DIR/$tdir" "crush" $timeout ||
20596                         error "dir split not finished"
20597                 delta=$(do_nodes $mdts "lctl get_param -n mdt.*MDT*.md_stats" |
20598                         awk '/migrate/ {sum += $2} END { print sum }')
20599                 echo "$delta migrated when dir split $((i - 1)) to $i stripes"
20600                 # delta is around total_files/stripe_count
20601                 (( $delta < 200 / (i - 1) + 4 )) ||
20602                         error "$delta files migrated >= $((200 / (i - 1) + 4))"
20603         done
20604 }
20605 run_test 230o "dir split"
20606
20607 test_230p() {
20608         (( MDSCOUNT > 1 )) || skip "needs >= 2 MDTs"
20609         (( MDS1_VERSION >= $(version_code 2.13.52) )) ||
20610                 skip "Need MDS version at least 2.13.52"
20611
20612         local mdts=$(comma_list $(mdts_nodes))
20613         local timeout=100
20614         local restripe_status
20615         local delta
20616         local c
20617
20618         [[ $mds1_FSTYPE == zfs ]] && timeout=300
20619
20620         do_nodes $mdts "$LCTL set_param lod.*.mdt_hash=crush"
20621
20622         restripe_status=$(do_facet mds1 $LCTL get_param -n \
20623                            mdt.*MDT0000.enable_dir_restripe)
20624         do_nodes $mdts "$LCTL set_param mdt.*.enable_dir_restripe=1"
20625         stack_trap "do_nodes $mdts $LCTL set_param \
20626                     mdt.*.enable_dir_restripe=$restripe_status"
20627
20628         test_mkdir -c $MDSCOUNT -H crush $DIR/$tdir
20629         createmany -m $DIR/$tdir/f 100 ||
20630                 error "create files under remote dir failed"
20631         createmany -d $DIR/$tdir/d 100 ||
20632                 error "create dirs under remote dir failed"
20633
20634         for c in $(seq $((MDSCOUNT - 1)) -1 1); do
20635                 local mdt_hash="crush"
20636
20637                 do_nodes $mdts "$LCTL set_param mdt.*.md_stats=clear >/dev/null"
20638                 $LFS setdirstripe -c $c $DIR/$tdir ||
20639                         error "split -c $c $tdir failed"
20640                 if (( MDS1_VERSION >= $(version_code 2.14.51) )); then
20641                         mdt_hash="$mdt_hash,fixed"
20642                 elif [ $c -eq 1 ]; then
20643                         mdt_hash="none"
20644                 fi
20645                 wait_update $HOSTNAME \
20646                         "$LFS getdirstripe -H $DIR/$tdir" $mdt_hash $timeout ||
20647                         error "dir merge not finished"
20648                 delta=$(do_nodes $mdts "lctl get_param -n mdt.*MDT*.md_stats" |
20649                         awk '/migrate/ {sum += $2} END { print sum }')
20650                 echo "$delta migrated when dir merge $((c + 1)) to $c stripes"
20651                 # delta is around total_files/stripe_count
20652                 (( delta < 200 / c + 4 )) ||
20653                         error "$delta files migrated >= $((200 / c + 4))"
20654         done
20655 }
20656 run_test 230p "dir merge"
20657
20658 test_230q() {
20659         (( MDSCOUNT > 1)) || skip "needs >= 2 MDTs"
20660         (( MDS1_VERSION >= $(version_code 2.13.52) )) ||
20661                 skip "Need MDS version at least 2.13.52"
20662
20663         local mdts=$(comma_list $(mdts_nodes))
20664         local saved_threshold=$(do_facet mds1 \
20665                         $LCTL get_param -n mdt.*-MDT0000.dir_split_count)
20666         local saved_delta=$(do_facet mds1 \
20667                         $LCTL get_param -n mdt.*-MDT0000.dir_split_delta)
20668         local threshold=100
20669         local delta=2
20670         local total=0
20671         local stripe_count=0
20672         local stripe_index
20673         local nr_files
20674         local create
20675
20676         # test with fewer files on ZFS
20677         [ "$mds1_FSTYPE" == "zfs" ] && threshold=40
20678
20679         stack_trap "do_nodes $mdts $LCTL set_param \
20680                     mdt.*.dir_split_count=$saved_threshold"
20681         stack_trap "do_nodes $mdts $LCTL set_param \
20682                     mdt.*.dir_split_delta=$saved_delta"
20683         stack_trap "do_nodes $mdts $LCTL set_param mdt.*.dir_restripe_nsonly=1"
20684         do_nodes $mdts "$LCTL set_param mdt.*.enable_dir_auto_split=1"
20685         do_nodes $mdts "$LCTL set_param mdt.*.dir_split_count=$threshold"
20686         do_nodes $mdts "$LCTL set_param mdt.*.dir_split_delta=$delta"
20687         do_nodes $mdts "$LCTL set_param mdt.*.dir_restripe_nsonly=0"
20688         do_nodes $mdts "$LCTL set_param lod.*.mdt_hash=crush"
20689
20690         $LFS mkdir -i -1 -c 1 $DIR/$tdir || error "mkdir $tdir failed"
20691         stripe_index=$($LFS getdirstripe -i $DIR/$tdir)
20692
20693         create=$((threshold * 3 / 2))
20694         while [ $stripe_count -lt $MDSCOUNT ]; do
20695                 createmany -m $DIR/$tdir/f $total $create ||
20696                         error "create sub files failed"
20697                 stat $DIR/$tdir > /dev/null
20698                 total=$((total + create))
20699                 stripe_count=$((stripe_count + delta))
20700                 [ $stripe_count -gt $MDSCOUNT ] && stripe_count=$MDSCOUNT
20701
20702                 wait_update $HOSTNAME \
20703                         "$LFS getdirstripe -c $DIR/$tdir" "$stripe_count" 40 ||
20704                         error "stripe count $($LFS getdirstripe -c $DIR/$tdir) != $stripe_count"
20705
20706                 wait_update $HOSTNAME \
20707                         "$LFS getdirstripe -H $DIR/$tdir" "crush" 200 ||
20708                         error "stripe hash $($LFS getdirstripe -H $DIR/$tdir) != crush"
20709
20710                 nr_files=$($LFS find -m 1 $DIR/$tdir | grep -c -w $stripe_index)
20711                 echo "$nr_files/$total files on MDT$stripe_index after split"
20712                 # allow 10% margin of imbalance with crush hash
20713                 (( $nr_files <= $total / $stripe_count + $create / 10)) ||
20714                         error "$nr_files files on MDT$stripe_index after split"
20715
20716                 nr_files=$($LFS find -type f $DIR/$tdir | wc -l)
20717                 [ $nr_files -eq $total ] ||
20718                         error "total sub files $nr_files != $total"
20719         done
20720
20721         (( MDS1_VERSION >= $(version_code 2.14.51) )) || return 0
20722
20723         echo "fixed layout directory won't auto split"
20724         $LFS migrate -m 0 $DIR/$tdir || error "migrate $tdir failed"
20725         wait_update $HOSTNAME "$LFS getdirstripe -H $DIR/$tdir" "crush,fixed" \
20726                 10 || error "stripe hash $($LFS getdirstripe -H $DIR/$tdir)"
20727         wait_update $HOSTNAME "$LFS getdirstripe -c $DIR/$tdir" 1 10 ||
20728                 error "stripe count $($LFS getdirstripe -c $DIR/$tdir)"
20729 }
20730 run_test 230q "dir auto split"
20731
20732 test_230r() {
20733         [[ $PARALLEL != "yes" ]] || skip "skip parallel run"
20734         [[ $MDSCOUNT -ge 2 ]] || skip_env "needs >= 2 MDTs"
20735         [[ $MDS1_VERSION -ge $(version_code 2.13.54) ]] ||
20736                 skip "Need MDS version at least 2.13.54"
20737
20738         # maximum amount of local locks:
20739         # parent striped dir - 2 locks
20740         # new stripe in parent to migrate to - 1 lock
20741         # source and target - 2 locks
20742         # Total 5 locks for regular file
20743         mkdir -p $DIR/$tdir
20744         $LFS mkdir -i1 -c2 $DIR/$tdir/dir1
20745         touch $DIR/$tdir/dir1/eee
20746
20747         # create 4 hardlink for 4 more locks
20748         # Total: 9 locks > RS_MAX_LOCKS (8)
20749         $LFS mkdir -i1 -c1 $DIR/$tdir/dir2
20750         $LFS mkdir -i1 -c1 $DIR/$tdir/dir3
20751         $LFS mkdir -i1 -c1 $DIR/$tdir/dir4
20752         $LFS mkdir -i1 -c1 $DIR/$tdir/dir5
20753         ln $DIR/$tdir/dir1/eee $DIR/$tdir/dir2/eee
20754         ln $DIR/$tdir/dir1/eee $DIR/$tdir/dir3/eee
20755         ln $DIR/$tdir/dir1/eee $DIR/$tdir/dir4/eee
20756         ln $DIR/$tdir/dir1/eee $DIR/$tdir/dir5/eee
20757
20758         cancel_lru_locks mdc
20759
20760         $LFS migrate -m1 -c1 $DIR/$tdir/dir1 ||
20761                 error "migrate dir fails"
20762
20763         rm -rf $DIR/$tdir || error "rm dir failed after migration"
20764 }
20765 run_test 230r "migrate with too many local locks"
20766
20767 test_230s() {
20768         (( $MDS1_VERSION >= $(version_code 2.14.52) )) ||
20769                 skip "Need MDS version at least 2.14.52"
20770
20771         local mdts=$(comma_list $(mdts_nodes))
20772         local restripe_status=$(do_facet mds1 $LCTL get_param -n \
20773                                 mdt.*MDT0000.enable_dir_restripe)
20774
20775         stack_trap "do_nodes $mdts $LCTL set_param \
20776                     mdt.*.enable_dir_restripe=$restripe_status"
20777
20778         local st
20779         for st in 0 1; do
20780                 do_nodes $mdts "$LCTL set_param mdt.*.enable_dir_restripe=$st"
20781                 test_mkdir $DIR/$tdir
20782                 $LFS mkdir $DIR/$tdir |& grep "File exists" ||
20783                         error "$LFS mkdir should return EEXIST if target exists"
20784                 rmdir $DIR/$tdir
20785         done
20786 }
20787 run_test 230s "lfs mkdir should return -EEXIST if target exists"
20788
20789 test_230t()
20790 {
20791         [[ $MDSCOUNT -ge 2 ]] || skip_env "needs >= 2 MDTs"
20792         [[ $MDS1_VERSION -ge $(version_code 2.14.50) ]] ||
20793                 skip "Need MDS version at least 2.14.50"
20794
20795         test_mkdir $DIR/$tdir || error "mkdir $tdir failed"
20796         test_mkdir $DIR/$tdir/subdir || error "mkdir subdir failed"
20797         $LFS project -p 1 -s $DIR/$tdir ||
20798                 error "set $tdir project id failed"
20799         $LFS project -p 2 -s $DIR/$tdir/subdir ||
20800                 error "set subdir project id failed"
20801         $LFS migrate -m 1 -c $MDSCOUNT $DIR/$tdir || error "migrate failed"
20802 }
20803 run_test 230t "migrate directory with project ID set"
20804
20805 test_230u()
20806 {
20807         (( MDSCOUNT > 3 )) || skip_env "needs >= 4 MDTs"
20808         (( MDS1_VERSION >= $(version_code 2.14.53) )) ||
20809                 skip "Need MDS version at least 2.14.53"
20810
20811         local count
20812
20813         mkdir_on_mdt0 $DIR/$tdir || error "mkdir $tdir failed"
20814         mkdir $DIR/$tdir/sub{0..99} || error "mkdir sub failed"
20815         $LFS migrate -m -1 $DIR/$tdir/sub{0..99} || error "migrate sub failed"
20816         for i in $(seq 0 $((MDSCOUNT - 1))); do
20817                 count=$($LFS getstripe -m $DIR/$tdir/sub* | grep -c ^$i)
20818                 echo "$count dirs migrated to MDT$i"
20819         done
20820         count=$($LFS getstripe -m $DIR/$tdir/sub* | sort -u | wc -l)
20821         (( count >= MDSCOUNT - 1 )) || error "dirs migrated to $count MDTs"
20822 }
20823 run_test 230u "migrate directory by QOS"
20824
20825 test_230v()
20826 {
20827         (( MDSCOUNT > 3 )) || skip_env "needs >= 4 MDTs"
20828         (( MDS1_VERSION >= $(version_code 2.14.53) )) ||
20829                 skip "Need MDS version at least 2.14.53"
20830
20831         local count
20832
20833         mkdir $DIR/$tdir || error "mkdir $tdir failed"
20834         mkdir $DIR/$tdir/sub{0..99} || error "mkdir sub failed"
20835         $LFS migrate -m 0,2,1 $DIR/$tdir || error "migrate $tdir failed"
20836         for i in $(seq 0 $((MDSCOUNT - 1))); do
20837                 count=$($LFS getstripe -m $DIR/$tdir/sub* | grep -c ^$i)
20838                 echo "$count subdirs migrated to MDT$i"
20839                 (( i == 3 )) && (( count > 0 )) &&
20840                         error "subdir shouldn't be migrated to MDT3"
20841         done
20842         count=$($LFS getstripe -m $DIR/$tdir/sub* | sort -u | wc -l)
20843         (( count == 3 )) || error "dirs migrated to $count MDTs"
20844 }
20845 run_test 230v "subdir migrated to the MDT where its parent is located"
20846
20847 test_230w() {
20848         (( MDSCOUNT > 1 )) || skip "needs >= 2 MDTs"
20849         (( MDS1_VERSION >= $(version_code 2.15.0) )) ||
20850                 skip "Need MDS version at least 2.15.0"
20851
20852         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
20853         createmany -o $DIR/$tdir/f 10 || error "create files failed"
20854         createmany -d $DIR/$tdir/d 10 || error "create dirs failed"
20855
20856         $LFS migrate -m 1 -c $MDSCOUNT -d $DIR/$tdir ||
20857                 error "migrate failed"
20858
20859         (( $($LFS getdirstripe -c $DIR/$tdir) == MDSCOUNT )) ||
20860                 error "$tdir stripe count mismatch"
20861
20862         for i in $(seq 0 9); do
20863                 (( $($LFS getdirstripe -c $DIR/$tdir/d$i) == 0 )) ||
20864                         error "d$i is striped"
20865         done
20866 }
20867 run_test 230w "non-recursive mode dir migration"
20868
20869 test_231a()
20870 {
20871         # For simplicity this test assumes that max_pages_per_rpc
20872         # is the same across all OSCs
20873         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
20874         local bulk_size=$((max_pages * PAGE_SIZE))
20875         local brw_size=$(do_facet ost1 $LCTL get_param -n obdfilter.*.brw_size |
20876                                        head -n 1)
20877
20878         mkdir -p $DIR/$tdir
20879         $LFS setstripe -S ${brw_size}M $DIR/$tdir ||
20880                 error "failed to set stripe with -S ${brw_size}M option"
20881
20882         # clear the OSC stats
20883         $LCTL set_param osc.*.stats=0 &>/dev/null
20884         stop_writeback
20885
20886         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
20887         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
20888                 oflag=direct &>/dev/null || error "dd failed"
20889
20890         sync; sleep 1; sync # just to be safe
20891         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
20892         if [ x$nrpcs != "x1" ]; then
20893                 $LCTL get_param osc.*.stats
20894                 error "found $nrpcs ost_write RPCs, not 1 as expected"
20895         fi
20896
20897         start_writeback
20898         # Drop the OSC cache, otherwise we will read from it
20899         cancel_lru_locks osc
20900
20901         # clear the OSC stats
20902         $LCTL set_param osc.*.stats=0 &>/dev/null
20903
20904         # Client reads $bulk_size.
20905         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
20906                 iflag=direct &>/dev/null || error "dd failed"
20907
20908         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
20909         if [ x$nrpcs != "x1" ]; then
20910                 $LCTL get_param osc.*.stats
20911                 error "found $nrpcs ost_read RPCs, not 1 as expected"
20912         fi
20913 }
20914 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
20915
20916 test_231b() {
20917         mkdir -p $DIR/$tdir
20918         local i
20919         for i in {0..1023}; do
20920                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
20921                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
20922                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
20923         done
20924         sync
20925 }
20926 run_test 231b "must not assert on fully utilized OST request buffer"
20927
20928 test_232a() {
20929         mkdir -p $DIR/$tdir
20930         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
20931
20932         #define OBD_FAIL_LDLM_OST_LVB            0x31c
20933         do_facet ost1 $LCTL set_param fail_loc=0x31c
20934
20935         # ignore dd failure
20936         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
20937
20938         do_facet ost1 $LCTL set_param fail_loc=0
20939         umount_client $MOUNT || error "umount failed"
20940         mount_client $MOUNT || error "mount failed"
20941         stop ost1 || error "cannot stop ost1"
20942         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
20943 }
20944 run_test 232a "failed lock should not block umount"
20945
20946 test_232b() {
20947         [ $MDS1_VERSION -ge $(version_code 2.10.58) ] ||
20948                 skip "Need MDS version at least 2.10.58"
20949
20950         mkdir -p $DIR/$tdir
20951         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
20952         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1
20953         sync
20954         cancel_lru_locks osc
20955
20956         #define OBD_FAIL_LDLM_OST_LVB            0x31c
20957         do_facet ost1 $LCTL set_param fail_loc=0x31c
20958
20959         # ignore failure
20960         $LFS data_version $DIR/$tdir/$tfile || true
20961
20962         do_facet ost1 $LCTL set_param fail_loc=0
20963         umount_client $MOUNT || error "umount failed"
20964         mount_client $MOUNT || error "mount failed"
20965         stop ost1 || error "cannot stop ost1"
20966         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
20967 }
20968 run_test 232b "failed data version lock should not block umount"
20969
20970 test_233a() {
20971         [ $MDS1_VERSION -ge $(version_code 2.3.64) ] ||
20972                 skip "Need MDS version at least 2.3.64"
20973         [ -n "$FILESET" ] && skip_env "SKIP due to FILESET set"
20974
20975         local fid=$($LFS path2fid $MOUNT)
20976
20977         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
20978                 error "cannot access $MOUNT using its FID '$fid'"
20979 }
20980 run_test 233a "checking that OBF of the FS root succeeds"
20981
20982 test_233b() {
20983         [ $MDS1_VERSION -ge $(version_code 2.5.90) ] ||
20984                 skip "Need MDS version at least 2.5.90"
20985         [ -n "$FILESET" ] && skip_env "SKIP due to FILESET set"
20986
20987         local fid=$($LFS path2fid $MOUNT/.lustre)
20988
20989         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
20990                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
20991
20992         fid=$($LFS path2fid $MOUNT/.lustre/fid)
20993         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
20994                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
20995 }
20996 run_test 233b "checking that OBF of the FS .lustre succeeds"
20997
20998 test_234() {
20999         local p="$TMP/sanityN-$TESTNAME.parameters"
21000         save_lustre_params client "llite.*.xattr_cache" > $p
21001         lctl set_param llite.*.xattr_cache 1 ||
21002                 skip_env "xattr cache is not supported"
21003
21004         mkdir -p $DIR/$tdir || error "mkdir failed"
21005         touch $DIR/$tdir/$tfile || error "touch failed"
21006         # OBD_FAIL_LLITE_XATTR_ENOMEM
21007         $LCTL set_param fail_loc=0x1405
21008         getfattr -n user.attr $DIR/$tdir/$tfile &&
21009                 error "getfattr should have failed with ENOMEM"
21010         $LCTL set_param fail_loc=0x0
21011         rm -rf $DIR/$tdir
21012
21013         restore_lustre_params < $p
21014         rm -f $p
21015 }
21016 run_test 234 "xattr cache should not crash on ENOMEM"
21017
21018 test_235() {
21019         [ $MDS1_VERSION -lt $(version_code 2.4.52) ] &&
21020                 skip "Need MDS version at least 2.4.52"
21021
21022         flock_deadlock $DIR/$tfile
21023         local RC=$?
21024         case $RC in
21025                 0)
21026                 ;;
21027                 124) error "process hangs on a deadlock"
21028                 ;;
21029                 *) error "error executing flock_deadlock $DIR/$tfile"
21030                 ;;
21031         esac
21032 }
21033 run_test 235 "LU-1715: flock deadlock detection does not work properly"
21034
21035 #LU-2935
21036 test_236() {
21037         check_swap_layouts_support
21038
21039         local ref1=/etc/passwd
21040         local ref2=/etc/group
21041         local file1=$DIR/$tdir/f1
21042         local file2=$DIR/$tdir/f2
21043
21044         test_mkdir -c1 $DIR/$tdir
21045         $LFS setstripe -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
21046         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
21047         $LFS setstripe -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
21048         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
21049         local fd=$(free_fd)
21050         local cmd="exec $fd<>$file2"
21051         eval $cmd
21052         rm $file2
21053         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
21054                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
21055         cmd="exec $fd>&-"
21056         eval $cmd
21057         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
21058
21059         #cleanup
21060         rm -rf $DIR/$tdir
21061 }
21062 run_test 236 "Layout swap on open unlinked file"
21063
21064 # LU-4659 linkea consistency
21065 test_238() {
21066         [[ $MDS1_VERSION -gt $(version_code 2.5.57) ]] ||
21067                 [[ $MDS1_VERSION -gt $(version_code 2.5.1) &&
21068                    $MDS1_VERSION -lt $(version_code 2.5.50) ]] ||
21069                 skip "Need MDS version at least 2.5.58 or 2.5.2+"
21070
21071         touch $DIR/$tfile
21072         ln $DIR/$tfile $DIR/$tfile.lnk
21073         touch $DIR/$tfile.new
21074         mv $DIR/$tfile.new $DIR/$tfile
21075         local fid1=$($LFS path2fid $DIR/$tfile)
21076         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
21077         local path1=$($LFS fid2path $FSNAME "$fid1")
21078         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
21079         local path2=$($LFS fid2path $FSNAME "$fid2")
21080         [ $tfile.lnk == $path2 ] ||
21081                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
21082         rm -f $DIR/$tfile*
21083 }
21084 run_test 238 "Verify linkea consistency"
21085
21086 test_239A() { # was test_239
21087         [ $MDS1_VERSION -lt $(version_code 2.5.60) ] &&
21088                 skip "Need MDS version at least 2.5.60"
21089
21090         local list=$(comma_list $(mdts_nodes))
21091
21092         mkdir -p $DIR/$tdir
21093         createmany -o $DIR/$tdir/f- 5000
21094         unlinkmany $DIR/$tdir/f- 5000
21095         [ $MDS1_VERSION -gt $(version_code 2.10.4) ] &&
21096                 do_nodes $list "lctl set_param -n osp.*.force_sync=1"
21097         changes=$(do_nodes $list "lctl get_param -n osp.*MDT*.sync_changes \
21098                         osp.*MDT*.sync_in_flight" | calc_sum)
21099         [ "$changes" -eq 0 ] || error "$changes not synced"
21100 }
21101 run_test 239A "osp_sync test"
21102
21103 test_239a() { #LU-5297
21104         remote_mds_nodsh && skip "remote MDS with nodsh"
21105
21106         touch $DIR/$tfile
21107         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
21108         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
21109         chgrp $RUNAS_GID $DIR/$tfile
21110         wait_delete_completed
21111 }
21112 run_test 239a "process invalid osp sync record correctly"
21113
21114 test_239b() { #LU-5297
21115         remote_mds_nodsh && skip "remote MDS with nodsh"
21116
21117         touch $DIR/$tfile1
21118         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
21119         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
21120         chgrp $RUNAS_GID $DIR/$tfile1
21121         wait_delete_completed
21122         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
21123         touch $DIR/$tfile2
21124         chgrp $RUNAS_GID $DIR/$tfile2
21125         wait_delete_completed
21126 }
21127 run_test 239b "process osp sync record with ENOMEM error correctly"
21128
21129 test_240() {
21130         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
21131         remote_mds_nodsh && skip "remote MDS with nodsh"
21132
21133         mkdir -p $DIR/$tdir
21134
21135         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
21136                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
21137         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
21138                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
21139
21140         umount_client $MOUNT || error "umount failed"
21141         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
21142         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
21143         mount_client $MOUNT || error "failed to mount client"
21144
21145         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
21146         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
21147 }
21148 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
21149
21150 test_241_bio() {
21151         local count=$1
21152         local bsize=$2
21153
21154         for LOOP in $(seq $count); do
21155                 dd if=$DIR/$tfile of=/dev/null bs=$bsize count=1 2>/dev/null
21156                 cancel_lru_locks $OSC || true
21157         done
21158 }
21159
21160 test_241_dio() {
21161         local count=$1
21162         local bsize=$2
21163
21164         for LOOP in $(seq $1); do
21165                 dd if=$DIR/$tfile of=/dev/null bs=$bsize count=1 iflag=direct \
21166                         2>/dev/null
21167         done
21168 }
21169
21170 test_241a() { # was test_241
21171         local bsize=$PAGE_SIZE
21172
21173         (( bsize < 40960 )) && bsize=40960
21174         dd if=/dev/zero of=$DIR/$tfile count=1 bs=$bsize
21175         ls -la $DIR/$tfile
21176         cancel_lru_locks $OSC
21177         test_241_bio 1000 $bsize &
21178         PID=$!
21179         test_241_dio 1000 $bsize
21180         wait $PID
21181 }
21182 run_test 241a "bio vs dio"
21183
21184 test_241b() {
21185         local bsize=$PAGE_SIZE
21186
21187         (( bsize < 40960 )) && bsize=40960
21188         dd if=/dev/zero of=$DIR/$tfile count=1 bs=$bsize
21189         ls -la $DIR/$tfile
21190         test_241_dio 1000 $bsize &
21191         PID=$!
21192         test_241_dio 1000 $bsize
21193         wait $PID
21194 }
21195 run_test 241b "dio vs dio"
21196
21197 test_242() {
21198         remote_mds_nodsh && skip "remote MDS with nodsh"
21199
21200         mkdir_on_mdt0 $DIR/$tdir
21201         touch $DIR/$tdir/$tfile
21202
21203         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
21204         do_facet mds1 lctl set_param fail_loc=0x105
21205         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
21206
21207         do_facet mds1 lctl set_param fail_loc=0
21208         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
21209 }
21210 run_test 242 "mdt_readpage failure should not cause directory unreadable"
21211
21212 test_243()
21213 {
21214         test_mkdir $DIR/$tdir
21215         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
21216 }
21217 run_test 243 "various group lock tests"
21218
21219 test_244a()
21220 {
21221         test_mkdir $DIR/$tdir
21222         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
21223         sendfile_grouplock $DIR/$tdir/$tfile || \
21224                 error "sendfile+grouplock failed"
21225         rm -rf $DIR/$tdir
21226 }
21227 run_test 244a "sendfile with group lock tests"
21228
21229 test_244b()
21230 {
21231         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
21232
21233         local threads=50
21234         local size=$((1024*1024))
21235
21236         test_mkdir $DIR/$tdir
21237         for i in $(seq 1 $threads); do
21238                 local file=$DIR/$tdir/file_$((i / 10))
21239                 $MULTIOP $file OG1234w$size_$((i % 3))w$size_$((i % 4))g1234c &
21240                 local pids[$i]=$!
21241         done
21242         for i in $(seq 1 $threads); do
21243                 wait ${pids[$i]}
21244         done
21245 }
21246 run_test 244b "multi-threaded write with group lock"
21247
21248 test_245a() {
21249         local flagname="multi_mod_rpcs"
21250         local connect_data_name="max_mod_rpcs"
21251         local out
21252
21253         # check if multiple modify RPCs flag is set
21254         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
21255                 grep "connect_flags:")
21256         echo "$out"
21257
21258         echo "$out" | grep -qw $flagname
21259         if [ $? -ne 0 ]; then
21260                 echo "connect flag $flagname is not set"
21261                 return
21262         fi
21263
21264         # check if multiple modify RPCs data is set
21265         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
21266         echo "$out"
21267
21268         echo "$out" | grep -qw $connect_data_name ||
21269                 error "import should have connect data $connect_data_name"
21270 }
21271 run_test 245a "check mdc connection flag/data: multiple modify RPCs"
21272
21273 test_245b() {
21274         local flagname="multi_mod_rpcs"
21275         local connect_data_name="max_mod_rpcs"
21276         local out
21277
21278         remote_mds_nodsh && skip "remote MDS with nodsh"
21279         [[ $MDSCOUNT -ge 2 ]] || skip "needs >= 2 MDTs"
21280
21281         # check if multiple modify RPCs flag is set
21282         out=$(do_facet mds1 \
21283               $LCTL get_param osp.$FSNAME-MDT0001-osp-MDT0000.import |
21284               grep "connect_flags:")
21285         echo "$out"
21286
21287         [[ "$out" =~ $flagname ]] || skip "connect flag $flagname is not set"
21288
21289         # check if multiple modify RPCs data is set
21290         out=$(do_facet mds1 \
21291               $LCTL get_param osp.$FSNAME-MDT0001-osp-MDT0000.import)
21292
21293         [[ "$out" =~ $connect_data_name ]] ||
21294                 {
21295                         echo "$out"
21296                         error "missing connect data $connect_data_name"
21297                 }
21298 }
21299 run_test 245b "check osp connection flag/data: multiple modify RPCs"
21300
21301 cleanup_247() {
21302         local submount=$1
21303
21304         trap 0
21305         umount_client $submount
21306         rmdir $submount
21307 }
21308
21309 test_247a() {
21310         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
21311                 grep -q subtree ||
21312                 skip_env "Fileset feature is not supported"
21313
21314         local submount=${MOUNT}_$tdir
21315
21316         mkdir $MOUNT/$tdir
21317         mkdir -p $submount || error "mkdir $submount failed"
21318         FILESET="$FILESET/$tdir" mount_client $submount ||
21319                 error "mount $submount failed"
21320         trap "cleanup_247 $submount" EXIT
21321         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
21322         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
21323                 error "read $MOUNT/$tdir/$tfile failed"
21324         cleanup_247 $submount
21325 }
21326 run_test 247a "mount subdir as fileset"
21327
21328 test_247b() {
21329         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
21330                 skip_env "Fileset feature is not supported"
21331
21332         local submount=${MOUNT}_$tdir
21333
21334         rm -rf $MOUNT/$tdir
21335         mkdir -p $submount || error "mkdir $submount failed"
21336         SKIP_FILESET=1
21337         FILESET="$FILESET/$tdir" mount_client $submount &&
21338                 error "mount $submount should fail"
21339         rmdir $submount
21340 }
21341 run_test 247b "mount subdir that dose not exist"
21342
21343 test_247c() {
21344         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
21345                 skip_env "Fileset feature is not supported"
21346
21347         local submount=${MOUNT}_$tdir
21348
21349         mkdir -p $MOUNT/$tdir/dir1
21350         mkdir -p $submount || error "mkdir $submount failed"
21351         trap "cleanup_247 $submount" EXIT
21352         FILESET="$FILESET/$tdir" mount_client $submount ||
21353                 error "mount $submount failed"
21354         local fid=$($LFS path2fid $MOUNT/)
21355         $LFS fid2path $submount $fid && error "fid2path should fail"
21356         cleanup_247 $submount
21357 }
21358 run_test 247c "running fid2path outside subdirectory root"
21359
21360 test_247d() {
21361         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
21362                 skip "Fileset feature is not supported"
21363
21364         local submount=${MOUNT}_$tdir
21365
21366         mkdir -p $MOUNT/$tdir/dir1
21367         mkdir -p $submount || error "mkdir $submount failed"
21368         FILESET="$FILESET/$tdir" mount_client $submount ||
21369                 error "mount $submount failed"
21370         trap "cleanup_247 $submount" EXIT
21371
21372         local td=$submount/dir1
21373         local fid=$($LFS path2fid $td)
21374         [ -z "$fid" ] && error "path2fid unable to get $td FID"
21375
21376         # check that we get the same pathname back
21377         local rootpath
21378         local found
21379         for rootpath in "$submount" "$submount///" "$submount/dir1"; do
21380                 echo "$rootpath $fid"
21381                 found=$($LFS fid2path $rootpath "$fid")
21382                 [ -n "$found" ] || error "fid2path should succeed"
21383                 [ "$found" == "$td" ] || error "fid2path $found != $td"
21384         done
21385         # check wrong root path format
21386         rootpath=$submount"_wrong"
21387         found=$($LFS fid2path $rootpath "$fid")
21388         [ -z "$found" ] || error "fid2path should fail ($rootpath != $submount)"
21389
21390         cleanup_247 $submount
21391 }
21392 run_test 247d "running fid2path inside subdirectory root"
21393
21394 # LU-8037
21395 test_247e() {
21396         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
21397                 grep -q subtree ||
21398                 skip "Fileset feature is not supported"
21399
21400         local submount=${MOUNT}_$tdir
21401
21402         mkdir $MOUNT/$tdir
21403         mkdir -p $submount || error "mkdir $submount failed"
21404         FILESET="$FILESET/.." mount_client $submount &&
21405                 error "mount $submount should fail"
21406         rmdir $submount
21407 }
21408 run_test 247e "mount .. as fileset"
21409
21410 test_247f() {
21411         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
21412         [ $MDS1_VERSION -lt $(version_code 2.13.52) ] &&
21413                 skip "Need at least version 2.13.52"
21414         [ $CLIENT_VERSION -lt $(version_code 2.14.50) ] &&
21415                 skip "Need at least version 2.14.50"
21416         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
21417                 grep -q subtree ||
21418                 skip "Fileset feature is not supported"
21419
21420         mkdir_on_mdt0 $DIR/$tdir || error "mkdir $tdir failed"
21421         $LFS mkdir -i $((MDSCOUNT - 1)) $DIR/$tdir/remote ||
21422                 error "mkdir remote failed"
21423         $LFS mkdir -i $((MDSCOUNT - 1)) $DIR/$tdir/remote/subdir ||
21424                 error "mkdir remote/subdir failed"
21425         $LFS mkdir -i 0 -c $MDSCOUNT $DIR/$tdir/striped ||
21426                 error "mkdir striped failed"
21427         mkdir $DIR/$tdir/striped/subdir || error "mkdir striped/subdir failed"
21428
21429         local submount=${MOUNT}_$tdir
21430
21431         mkdir -p $submount || error "mkdir $submount failed"
21432         stack_trap "rmdir $submount"
21433
21434         local dir
21435         local stat
21436         local fileset=$FILESET
21437         local mdts=$(comma_list $(mdts_nodes))
21438
21439         stat=$(do_facet mds1 $LCTL get_param -n \
21440                 mdt.*MDT0000.enable_remote_subdir_mount)
21441         stack_trap "do_nodes $mdts $LCTL set_param \
21442                 mdt.*.enable_remote_subdir_mount=$stat"
21443
21444         do_nodes $mdts "$LCTL set_param mdt.*.enable_remote_subdir_mount=0"
21445         stack_trap "umount_client $submount"
21446         FILESET="$fileset/$tdir/remote" mount_client $submount &&
21447                 error "mount remote dir $dir should fail"
21448
21449         for dir in $tdir/remote/subdir $tdir/striped $tdir/striped/subdir \
21450                 $tdir/striped/. ; do
21451                 FILESET="$fileset/$dir" mount_client $submount ||
21452                         error "mount $dir failed"
21453                 umount_client $submount
21454         done
21455
21456         do_nodes $mdts "$LCTL set_param mdt.*.enable_remote_subdir_mount=1"
21457         FILESET="$fileset/$tdir/remote" mount_client $submount ||
21458                 error "mount $tdir/remote failed"
21459 }
21460 run_test 247f "mount striped or remote directory as fileset"
21461
21462 test_247g() {
21463         [ $MDSCOUNT -lt 4 ] && skip_env "needs >= 4 MDTs"
21464         [ $CLIENT_VERSION -lt $(version_code 2.14.50) ] &&
21465                 skip "Need at least version 2.14.50"
21466
21467         $LFS mkdir -i 0 -c 4 -H fnv_1a_64 $DIR/$tdir ||
21468                 error "mkdir $tdir failed"
21469         touch $DIR/$tdir/$tfile || error "touch $tfile failed"
21470
21471         local submount=${MOUNT}_$tdir
21472
21473         mkdir -p $submount || error "mkdir $submount failed"
21474         stack_trap "rmdir $submount"
21475
21476         FILESET="$fileset/$tdir" mount_client $submount ||
21477                 error "mount $dir failed"
21478         stack_trap "umount $submount"
21479
21480         local mdts=$(comma_list $(mdts_nodes))
21481
21482         local nrpcs
21483
21484         stat $submount > /dev/null
21485         cancel_lru_locks $MDC
21486         stat $submount > /dev/null
21487         stat $submount/$tfile > /dev/null
21488         do_nodes $mdts "$LCTL set_param mdt.*.md_stats=clear > /dev/null"
21489         stat $submount/$tfile > /dev/null
21490         nrpcs=$(do_nodes $mdts "lctl get_param -n mdt.*.md_stats" |
21491                 awk '/getattr/ {sum += $2} END {print sum}')
21492
21493         [ -z "$nrpcs" ] || error "$nrpcs extra getattr sent"
21494 }
21495 run_test 247g "mount striped directory as fileset caches ROOT lookup lock"
21496
21497 test_248a() {
21498         local fast_read_sav=$($LCTL get_param -n llite.*.fast_read 2>/dev/null)
21499         [ -z "$fast_read_sav" ] && skip "no fast read support"
21500
21501         # create a large file for fast read verification
21502         dd if=/dev/zero of=$DIR/$tfile bs=1M count=128 > /dev/null 2>&1
21503
21504         # make sure the file is created correctly
21505         $CHECKSTAT -s $((128*1024*1024)) $DIR/$tfile ||
21506                 { rm -f $DIR/$tfile; skip "file creation error"; }
21507
21508         echo "Test 1: verify that fast read is 4 times faster on cache read"
21509
21510         # small read with fast read enabled
21511         $LCTL set_param -n llite.*.fast_read=1
21512         local t_fast=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
21513                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
21514                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
21515         # small read with fast read disabled
21516         $LCTL set_param -n llite.*.fast_read=0
21517         local t_slow=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
21518                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
21519                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
21520
21521         # verify that fast read is 4 times faster for cache read
21522         [ $(bc <<< "4 * $t_fast < $t_slow") -eq 1 ] ||
21523                 error_not_in_vm "fast read was not 4 times faster: " \
21524                            "$t_fast vs $t_slow"
21525
21526         echo "Test 2: verify the performance between big and small read"
21527         $LCTL set_param -n llite.*.fast_read=1
21528
21529         # 1k non-cache read
21530         cancel_lru_locks osc
21531         local t_1k=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
21532                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
21533                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
21534
21535         # 1M non-cache read
21536         cancel_lru_locks osc
21537         local t_1m=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
21538                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
21539                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
21540
21541         # verify that big IO is not 4 times faster than small IO
21542         [ $(bc <<< "4 * $t_1k >= $t_1m") -eq 1 ] ||
21543                 error_not_in_vm "bigger IO is way too fast: $t_1k vs $t_1m"
21544
21545         $LCTL set_param -n llite.*.fast_read=$fast_read_sav
21546         rm -f $DIR/$tfile
21547 }
21548 run_test 248a "fast read verification"
21549
21550 test_248b() {
21551         # Default short_io_bytes=16384, try both smaller and larger sizes.
21552         # Lustre O_DIRECT read and write needs to be a multiple of PAGE_SIZE.
21553         # 6017024 = 2^12*13*113 = 47008*128 = 11752*512 = 4096*1469 = 53248*113
21554         echo "bs=53248 count=113 normal buffered write"
21555         dd if=/dev/urandom of=$TMP/$tfile.0 bs=53248 count=113 ||
21556                 error "dd of initial data file failed"
21557         stack_trap "rm -f $DIR/$tfile.[0-3] $TMP/$tfile.[0-3]" EXIT
21558
21559         echo "bs=47008 count=128 oflag=dsync normal write $tfile.0"
21560         dd if=$TMP/$tfile.0 of=$DIR/$tfile.0 bs=47008 count=128 oflag=dsync ||
21561                 error "dd with sync normal writes failed"
21562         cmp $TMP/$tfile.0 $DIR/$tfile.0 || error "compare $DIR/$tfile.0 failed"
21563
21564         echo "bs=11752 count=512 oflag=dsync small write $tfile.1"
21565         dd if=$TMP/$tfile.0 of=$DIR/$tfile.1 bs=11752 count=512 oflag=dsync ||
21566                 error "dd with sync small writes failed"
21567         cmp $TMP/$tfile.0 $DIR/$tfile.1 || error "compare $DIR/$tfile.1 failed"
21568
21569         cancel_lru_locks osc
21570
21571         # calculate the small O_DIRECT size and count for the client PAGE_SIZE
21572         local num=$((13 * 113 / (PAGE_SIZE / 4096)))
21573         echo "bs=$PAGE_SIZE count=$num iflag=direct small read $tfile.1"
21574         dd if=$DIR/$tfile.1 of=$TMP/$tfile.1 bs=$PAGE_SIZE count=$num \
21575                 iflag=direct || error "dd with O_DIRECT small read failed"
21576         # adjust bytes checked to handle larger PAGE_SIZE for ARM/PPC
21577         cmp --bytes=$((PAGE_SIZE * num)) $TMP/$tfile.0 $TMP/$tfile.1 ||
21578                 error "compare $TMP/$tfile.1 failed"
21579
21580         local save=$($LCTL get_param -n osc.*OST000*.short_io_bytes | head -n 1)
21581         stack_trap "$LCTL set_param osc.$FSNAME-*.short_io_bytes=$save" EXIT
21582
21583         # just to see what the maximum tunable value is, and test parsing
21584         echo "test invalid parameter 2MB"
21585         $LCTL set_param osc.$FSNAME-OST0000*.short_io_bytes=2M &&
21586                 error "too-large short_io_bytes allowed"
21587         echo "test maximum parameter 512KB"
21588         # if we can set a larger short_io_bytes, run test regardless of version
21589         if ! $LCTL set_param osc.$FSNAME-OST0000*.short_io_bytes=512K; then
21590                 # older clients may not allow setting it this large, that's OK
21591                 [ $CLIENT_VERSION -ge $(version_code 2.13.50) ] ||
21592                         skip "Need at least client version 2.13.50"
21593                 error "medium short_io_bytes failed"
21594         fi
21595         $LCTL get_param osc.$FSNAME-OST0000*.short_io_bytes
21596         size=$($LCTL get_param -n osc.$FSNAME-OST0000*.short_io_bytes)
21597
21598         echo "test large parameter 64KB"
21599         $LCTL set_param osc.$FSNAME-*.short_io_bytes=65536
21600         $LCTL get_param osc.$FSNAME-OST0000*.short_io_bytes
21601
21602         echo "bs=47008 count=128 oflag=dsync large write $tfile.2"
21603         dd if=$TMP/$tfile.0 of=$DIR/$tfile.2 bs=47008 count=128 oflag=dsync ||
21604                 error "dd with sync large writes failed"
21605         cmp $TMP/$tfile.0 $DIR/$tfile.2 || error "compare $DIR/$tfile.2 failed"
21606
21607         # calculate the large O_DIRECT size and count for the client PAGE_SIZE
21608         local size=$(((4096 * 13 + PAGE_SIZE - 1) / PAGE_SIZE * PAGE_SIZE))
21609         num=$((113 * 4096 / PAGE_SIZE))
21610         echo "bs=$size count=$num oflag=direct large write $tfile.3"
21611         dd if=$TMP/$tfile.0 of=$DIR/$tfile.3 bs=$size count=$num oflag=direct ||
21612                 error "dd with O_DIRECT large writes failed"
21613         cmp --bytes=$((size * num)) $TMP/$tfile.0 $DIR/$tfile.3 ||
21614                 error "compare $DIR/$tfile.3 failed"
21615
21616         cancel_lru_locks osc
21617
21618         echo "bs=$size count=$num iflag=direct large read $tfile.2"
21619         dd if=$DIR/$tfile.2 of=$TMP/$tfile.2 bs=$size count=$num iflag=direct ||
21620                 error "dd with O_DIRECT large read failed"
21621         cmp --bytes=$((size * num)) $TMP/$tfile.0 $TMP/$tfile.2 ||
21622                 error "compare $TMP/$tfile.2 failed"
21623
21624         echo "bs=$size count=$num iflag=direct large read $tfile.3"
21625         dd if=$DIR/$tfile.3 of=$TMP/$tfile.3 bs=$size count=$num iflag=direct ||
21626                 error "dd with O_DIRECT large read failed"
21627         cmp --bytes=$((size * num)) $TMP/$tfile.0 $TMP/$tfile.3 ||
21628                 error "compare $TMP/$tfile.3 failed"
21629 }
21630 run_test 248b "test short_io read and write for both small and large sizes"
21631
21632 test_249() { # LU-7890
21633         [ $MDS1_VERSION -lt $(version_code 2.8.53) ] &&
21634                 skip "Need at least version 2.8.54"
21635
21636         rm -f $DIR/$tfile
21637         $LFS setstripe -c 1 $DIR/$tfile
21638         # Offset 2T == 4k * 512M
21639         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 seek=512M ||
21640                 error "dd to 2T offset failed"
21641 }
21642 run_test 249 "Write above 2T file size"
21643
21644 test_250() {
21645         [ "$(facet_fstype ost$(($($LFS getstripe -i $DIR/$tfile) + 1)))" = "zfs" ] \
21646          && skip "no 16TB file size limit on ZFS"
21647
21648         $LFS setstripe -c 1 $DIR/$tfile
21649         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
21650         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
21651         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
21652         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
21653                 conv=notrunc,fsync && error "append succeeded"
21654         return 0
21655 }
21656 run_test 250 "Write above 16T limit"
21657
21658 test_251() {
21659         $LFS setstripe -c -1 -S 1048576 $DIR/$tfile
21660
21661         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
21662         #Skip once - writing the first stripe will succeed
21663         $LCTL set_param fail_loc=0xa0001407 fail_val=1
21664         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
21665                 error "short write happened"
21666
21667         $LCTL set_param fail_loc=0xa0001407 fail_val=1
21668         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
21669                 error "short read happened"
21670
21671         rm -f $DIR/$tfile
21672 }
21673 run_test 251 "Handling short read and write correctly"
21674
21675 test_252() {
21676         remote_mds_nodsh && skip "remote MDS with nodsh"
21677         remote_ost_nodsh && skip "remote OST with nodsh"
21678         if [ "$ost1_FSTYPE" != ldiskfs ] || [ "$mds1_FSTYPE" != ldiskfs ]; then
21679                 skip_env "ldiskfs only test"
21680         fi
21681
21682         local tgt
21683         local dev
21684         local out
21685         local uuid
21686         local num
21687         local gen
21688
21689         # check lr_reader on OST0000
21690         tgt=ost1
21691         dev=$(facet_device $tgt)
21692         out=$(do_facet $tgt $LR_READER $dev)
21693         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
21694         echo "$out"
21695         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
21696         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
21697                 error "Invalid uuid returned by $LR_READER on target $tgt"
21698         echo -e "uuid returned by $LR_READER is '$uuid'\n"
21699
21700         # check lr_reader -c on MDT0000
21701         tgt=mds1
21702         dev=$(facet_device $tgt)
21703         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
21704                 skip "$LR_READER does not support additional options"
21705         fi
21706         out=$(do_facet $tgt $LR_READER -c $dev)
21707         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
21708         echo "$out"
21709         num=$(echo "$out" | grep -c "mdtlov")
21710         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
21711                 error "Invalid number of mdtlov clients returned by $LR_READER"
21712         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
21713
21714         # check lr_reader -cr on MDT0000
21715         out=$(do_facet $tgt $LR_READER -cr $dev)
21716         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
21717         echo "$out"
21718         echo "$out" | grep -q "^reply_data:$" ||
21719                 error "$LR_READER should have returned 'reply_data' section"
21720         num=$(echo "$out" | grep -c "client_generation")
21721         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
21722 }
21723 run_test 252 "check lr_reader tool"
21724
21725 test_253() {
21726         [ $PARALLEL == "yes" ] && skip "skip parallel run"
21727         remote_mds_nodsh && skip "remote MDS with nodsh"
21728         remote_mgs_nodsh && skip "remote MGS with nodsh"
21729
21730         local ostidx=0
21731         local rc=0
21732         local ost_name=$(ostname_from_index $ostidx)
21733
21734         # on the mdt's osc
21735         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $ost_name)
21736         do_facet $SINGLEMDS $LCTL get_param -n \
21737                 osp.$mdtosc_proc1.reserved_mb_high ||
21738                 skip  "remote MDS does not support reserved_mb_high"
21739
21740         rm -rf $DIR/$tdir
21741         wait_mds_ost_sync
21742         wait_delete_completed
21743         mkdir $DIR/$tdir
21744
21745         pool_add $TESTNAME || error "Pool creation failed"
21746         pool_add_targets $TESTNAME 0 || error "Pool add targets failed"
21747
21748         $LFS setstripe $DIR/$tdir -i $ostidx -c 1 -p $FSNAME.$TESTNAME ||
21749                 error "Setstripe failed"
21750
21751         dd if=/dev/zero of=$DIR/$tdir/$tfile.0 bs=1M count=10
21752
21753         local wms=$(ost_watermarks_set_enospc $tfile $ostidx |
21754                     grep "watermarks")
21755         stack_trap "ost_watermarks_clear_enospc $tfile $ostidx $wms" EXIT
21756
21757         local oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
21758                         osp.$mdtosc_proc1.prealloc_status)
21759         echo "prealloc_status $oa_status"
21760
21761         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=1M count=1 &&
21762                 error "File creation should fail"
21763
21764         #object allocation was stopped, but we still able to append files
21765         dd if=/dev/zero of=$DIR/$tdir/$tfile.0 bs=1M seek=6 count=5 \
21766                 oflag=append || error "Append failed"
21767
21768         rm -f $DIR/$tdir/$tfile.0
21769
21770         # For this test, we want to delete the files we created to go out of
21771         # space but leave the watermark, so we remain nearly out of space
21772         ost_watermarks_enospc_delete_files $tfile $ostidx
21773
21774         wait_delete_completed
21775
21776         sleep_maxage
21777
21778         for i in $(seq 10 12); do
21779                 dd if=/dev/zero of=$DIR/$tdir/$tfile.$i bs=1M count=1 \
21780                         2>/dev/null || error "File creation failed after rm"
21781         done
21782
21783         oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
21784                         osp.$mdtosc_proc1.prealloc_status)
21785         echo "prealloc_status $oa_status"
21786
21787         if (( oa_status != 0 )); then
21788                 error "Object allocation still disable after rm"
21789         fi
21790 }
21791 run_test 253 "Check object allocation limit"
21792
21793 test_254() {
21794         [ $PARALLEL == "yes" ] && skip "skip parallel run"
21795         remote_mds_nodsh && skip "remote MDS with nodsh"
21796
21797         local mdt=$(facet_svc $SINGLEMDS)
21798
21799         do_facet $SINGLEMDS $LCTL get_param -n mdd.$mdt.changelog_size ||
21800                 skip "MDS does not support changelog_size"
21801
21802         local cl_user
21803
21804         changelog_register || error "changelog_register failed"
21805
21806         changelog_clear 0 || error "changelog_clear failed"
21807
21808         local size1=$(do_facet $SINGLEMDS \
21809                       $LCTL get_param -n mdd.$mdt.changelog_size)
21810         echo "Changelog size $size1"
21811
21812         rm -rf $DIR/$tdir
21813         $LFS mkdir -i 0 $DIR/$tdir
21814         # change something
21815         mkdir -p $DIR/$tdir/pics/2008/zachy
21816         touch $DIR/$tdir/pics/2008/zachy/timestamp
21817         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
21818         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
21819         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
21820         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
21821         rm $DIR/$tdir/pics/desktop.jpg
21822
21823         local size2=$(do_facet $SINGLEMDS \
21824                       $LCTL get_param -n mdd.$mdt.changelog_size)
21825         echo "Changelog size after work $size2"
21826
21827         (( $size2 > $size1 )) ||
21828                 error "new Changelog size=$size2 less than old size=$size1"
21829 }
21830 run_test 254 "Check changelog size"
21831
21832 ladvise_no_type()
21833 {
21834         local type=$1
21835         local file=$2
21836
21837         lfs ladvise -a invalid $file 2>&1 | grep "Valid types" |
21838                 awk -F: '{print $2}' | grep $type > /dev/null
21839         if [ $? -ne 0 ]; then
21840                 return 0
21841         fi
21842         return 1
21843 }
21844
21845 ladvise_no_ioctl()
21846 {
21847         local file=$1
21848
21849         lfs ladvise -a willread $file > /dev/null 2>&1
21850         if [ $? -eq 0 ]; then
21851                 return 1
21852         fi
21853
21854         lfs ladvise -a willread $file 2>&1 |
21855                 grep "Inappropriate ioctl for device" > /dev/null
21856         if [ $? -eq 0 ]; then
21857                 return 0
21858         fi
21859         return 1
21860 }
21861
21862 percent() {
21863         bc <<<"scale=2; ($1 - $2) * 100 / $2"
21864 }
21865
21866 # run a random read IO workload
21867 # usage: random_read_iops <filename> <filesize> <iosize>
21868 random_read_iops() {
21869         local file=$1
21870         local fsize=$2
21871         local iosize=${3:-4096}
21872
21873         $READS -f $file -s $fsize -b $iosize -n $((fsize / iosize)) -t 60 |
21874                 sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##'
21875 }
21876
21877 drop_file_oss_cache() {
21878         local file="$1"
21879         local nodes="$2"
21880
21881         $LFS ladvise -a dontneed $file 2>/dev/null ||
21882                 do_nodes $nodes "echo 3 > /proc/sys/vm/drop_caches"
21883 }
21884
21885 ladvise_willread_performance()
21886 {
21887         local repeat=10
21888         local average_origin=0
21889         local average_cache=0
21890         local average_ladvise=0
21891
21892         for ((i = 1; i <= $repeat; i++)); do
21893                 echo "Iter $i/$repeat: reading without willread hint"
21894                 cancel_lru_locks osc
21895                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
21896                 local speed_origin=$(random_read_iops $DIR/$tfile $size)
21897                 echo "Iter $i/$repeat: uncached speed: $speed_origin"
21898                 average_origin=$(bc <<<"$average_origin + $speed_origin")
21899
21900                 cancel_lru_locks osc
21901                 local speed_cache=$(random_read_iops $DIR/$tfile $size)
21902                 echo "Iter $i/$repeat: OSS cache speed: $speed_cache"
21903                 average_cache=$(bc <<<"$average_cache + $speed_cache")
21904
21905                 cancel_lru_locks osc
21906                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
21907                 $LFS ladvise -a willread $DIR/$tfile || error "ladvise failed"
21908                 local speed_ladvise=$(random_read_iops $DIR/$tfile $size)
21909                 echo "Iter $i/$repeat: ladvise speed: $speed_ladvise"
21910                 average_ladvise=$(bc <<<"$average_ladvise + $speed_ladvise")
21911         done
21912         average_origin=$(bc <<<"scale=2; $average_origin / $repeat")
21913         average_cache=$(bc <<<"scale=2; $average_cache / $repeat")
21914         average_ladvise=$(bc <<<"scale=2; $average_ladvise / $repeat")
21915
21916         speedup_cache=$(percent $average_cache $average_origin)
21917         speedup_ladvise=$(percent $average_ladvise $average_origin)
21918
21919         echo "Average uncached read: $average_origin"
21920         echo "Average speedup with OSS cached read: " \
21921                 "$average_cache = +$speedup_cache%"
21922         echo "Average speedup with ladvise willread: " \
21923                 "$average_ladvise = +$speedup_ladvise%"
21924
21925         local lowest_speedup=20
21926         if (( ${average_cache%.*} < $lowest_speedup )); then
21927                 echo "Speedup with OSS cached read less than $lowest_speedup%,"\
21928                      " got $average_cache%. Skipping ladvise willread check."
21929                 return 0
21930         fi
21931
21932         # the test won't work on ZFS until it supports 'ladvise dontneed', but
21933         # it is still good to run until then to exercise 'ladvise willread'
21934         ! $LFS ladvise -a dontneed $DIR/$tfile &&
21935                 [ "$ost1_FSTYPE" = "zfs" ] &&
21936                 echo "osd-zfs does not support dontneed or drop_caches" &&
21937                 return 0
21938
21939         lowest_speedup=$(bc <<<"scale=2; $average_cache / 2")
21940         (( ${average_ladvise%.*} > ${lowest_speedup%.*} )) ||
21941                 error_not_in_vm "Speedup with willread is less than " \
21942                         "$lowest_speedup%, got $average_ladvise%"
21943 }
21944
21945 test_255a() {
21946         [ $OST1_VERSION -lt $(version_code 2.8.54) ] &&
21947                 skip "lustre < 2.8.54 does not support ladvise "
21948         remote_ost_nodsh && skip "remote OST with nodsh"
21949
21950         stack_trap "rm -f $DIR/$tfile"
21951         lfs setstripe -c -1 -i 0 $DIR/$tfile || error "$tfile failed"
21952
21953         ladvise_no_type willread $DIR/$tfile &&
21954                 skip "willread ladvise is not supported"
21955
21956         ladvise_no_ioctl $DIR/$tfile &&
21957                 skip "ladvise ioctl is not supported"
21958
21959         local size_mb=100
21960         local size=$((size_mb * 1048576))
21961         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
21962                 error "dd to $DIR/$tfile failed"
21963
21964         lfs ladvise -a willread $DIR/$tfile ||
21965                 error "Ladvise failed with no range argument"
21966
21967         lfs ladvise -a willread -s 0 $DIR/$tfile ||
21968                 error "Ladvise failed with no -l or -e argument"
21969
21970         lfs ladvise -a willread -e 1 $DIR/$tfile ||
21971                 error "Ladvise failed with only -e argument"
21972
21973         lfs ladvise -a willread -l 1 $DIR/$tfile ||
21974                 error "Ladvise failed with only -l argument"
21975
21976         lfs ladvise -a willread -s 2 -e 1 $DIR/$tfile &&
21977                 error "End offset should not be smaller than start offset"
21978
21979         lfs ladvise -a willread -s 2 -e 2 $DIR/$tfile &&
21980                 error "End offset should not be equal to start offset"
21981
21982         lfs ladvise -a willread -s $size -l 1 $DIR/$tfile ||
21983                 error "Ladvise failed with overflowing -s argument"
21984
21985         lfs ladvise -a willread -s 1 -e $((size + 1)) $DIR/$tfile ||
21986                 error "Ladvise failed with overflowing -e argument"
21987
21988         lfs ladvise -a willread -s 1 -l $size $DIR/$tfile ||
21989                 error "Ladvise failed with overflowing -l argument"
21990
21991         lfs ladvise -a willread -l 1 -e 2 $DIR/$tfile &&
21992                 error "Ladvise succeeded with conflicting -l and -e arguments"
21993
21994         echo "Synchronous ladvise should wait"
21995         local delay=4
21996 #define OBD_FAIL_OST_LADVISE_PAUSE       0x237
21997         do_nodes $(comma_list $(osts_nodes)) \
21998                 $LCTL set_param fail_val=$delay fail_loc=0x237
21999
22000         local start_ts=$SECONDS
22001         lfs ladvise -a willread $DIR/$tfile ||
22002                 error "Ladvise failed with no range argument"
22003         local end_ts=$SECONDS
22004         local inteval_ts=$((end_ts - start_ts))
22005
22006         if [ $inteval_ts -lt $(($delay - 1)) ]; then
22007                 error "Synchronous advice didn't wait reply"
22008         fi
22009
22010         echo "Asynchronous ladvise shouldn't wait"
22011         local start_ts=$SECONDS
22012         lfs ladvise -a willread -b $DIR/$tfile ||
22013                 error "Ladvise failed with no range argument"
22014         local end_ts=$SECONDS
22015         local inteval_ts=$((end_ts - start_ts))
22016
22017         if [ $inteval_ts -gt $(($delay / 2)) ]; then
22018                 error "Asynchronous advice blocked"
22019         fi
22020
22021         do_nodes $(comma_list $(osts_nodes)) $LCTL set_param fail_loc=0
22022         ladvise_willread_performance
22023 }
22024 run_test 255a "check 'lfs ladvise -a willread'"
22025
22026 facet_meminfo() {
22027         local facet=$1
22028         local info=$2
22029
22030         do_facet $facet "cat /proc/meminfo | grep ^${info}:" | awk '{print $2}'
22031 }
22032
22033 test_255b() {
22034         [ $OST1_VERSION -lt $(version_code 2.8.54) ] &&
22035                 skip "lustre < 2.8.54 does not support ladvise "
22036         remote_ost_nodsh && skip "remote OST with nodsh"
22037
22038         stack_trap "rm -f $DIR/$tfile"
22039         lfs setstripe -c 1 -i 0 $DIR/$tfile
22040
22041         ladvise_no_type dontneed $DIR/$tfile &&
22042                 skip "dontneed ladvise is not supported"
22043
22044         ladvise_no_ioctl $DIR/$tfile &&
22045                 skip "ladvise ioctl is not supported"
22046
22047         ! $LFS ladvise -a dontneed $DIR/$tfile &&
22048                 [ "$ost1_FSTYPE" = "zfs" ] &&
22049                 skip "zfs-osd does not support 'ladvise dontneed'"
22050
22051         local size_mb=100
22052         local size=$((size_mb * 1048576))
22053         # In order to prevent disturbance of other processes, only check 3/4
22054         # of the memory usage
22055         local kibibytes=$((size_mb * 1024 * 3 / 4))
22056
22057         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
22058                 error "dd to $DIR/$tfile failed"
22059
22060         #force write to complete before dropping OST cache & checking memory
22061         sync
22062
22063         local total=$(facet_meminfo ost1 MemTotal)
22064         echo "Total memory: $total KiB"
22065
22066         do_facet ost1 "sync && echo 3 > /proc/sys/vm/drop_caches"
22067         local before_read=$(facet_meminfo ost1 Cached)
22068         echo "Cache used before read: $before_read KiB"
22069
22070         lfs ladvise -a willread $DIR/$tfile ||
22071                 error "Ladvise willread failed"
22072         local after_read=$(facet_meminfo ost1 Cached)
22073         echo "Cache used after read: $after_read KiB"
22074
22075         lfs ladvise -a dontneed $DIR/$tfile ||
22076                 error "Ladvise dontneed again failed"
22077         local no_read=$(facet_meminfo ost1 Cached)
22078         echo "Cache used after dontneed ladvise: $no_read KiB"
22079
22080         if [ $total -lt $((before_read + kibibytes)) ]; then
22081                 echo "Memory is too small, abort checking"
22082                 return 0
22083         fi
22084
22085         if [ $((before_read + kibibytes)) -gt $after_read ]; then
22086                 error "Ladvise willread should use more memory" \
22087                         "than $kibibytes KiB"
22088         fi
22089
22090         if [ $((no_read + kibibytes)) -gt $after_read ]; then
22091                 error "Ladvise dontneed should release more memory" \
22092                         "than $kibibytes KiB"
22093         fi
22094 }
22095 run_test 255b "check 'lfs ladvise -a dontneed'"
22096
22097 test_255c() {
22098         [ $OST1_VERSION -lt $(version_code 2.10.50) ] &&
22099                 skip "lustre < 2.10.50 does not support lockahead"
22100
22101         local ost1_imp=$(get_osc_import_name client ost1)
22102         local imp_name=$($LCTL list_param osc.$ost1_imp | head -n1 |
22103                          cut -d'.' -f2)
22104         local count
22105         local new_count
22106         local difference
22107         local i
22108         local rc
22109
22110         test_mkdir -p $DIR/$tdir
22111         $LFS setstripe -i 0 -c 1 $DIR/$tdir
22112
22113         #test 10 returns only success/failure
22114         i=10
22115         lockahead_test -d $DIR/$tdir -t $i -f $tfile
22116         rc=$?
22117         if [ $rc -eq 255 ]; then
22118                 error "Ladvise test${i} failed, ${rc}"
22119         fi
22120
22121         #test 11 counts lock enqueue requests, all others count new locks
22122         i=11
22123         count=$(do_facet ost1 \
22124                 $LCTL get_param -n ost.OSS.ost.stats)
22125         count=$(echo "$count" | grep ldlm_extent_enqueue | awk '{ print $2 }')
22126
22127         lockahead_test -d $DIR/$tdir -t $i -f $tfile
22128         rc=$?
22129         if [ $rc -eq 255 ]; then
22130                 error "Ladvise test${i} failed, ${rc}"
22131         fi
22132
22133         new_count=$(do_facet ost1 \
22134                 $LCTL get_param -n ost.OSS.ost.stats)
22135         new_count=$(echo "$new_count" | grep ldlm_extent_enqueue | \
22136                    awk '{ print $2 }')
22137
22138         difference="$((new_count - count))"
22139         if [ $difference -ne $rc ]; then
22140                 error "Ladvise test${i}, bad enqueue count, returned " \
22141                       "${rc}, actual ${difference}"
22142         fi
22143
22144         for i in $(seq 12 21); do
22145                 # If we do not do this, we run the risk of having too many
22146                 # locks and starting lock cancellation while we are checking
22147                 # lock counts.
22148                 cancel_lru_locks osc
22149
22150                 count=$($LCTL get_param -n \
22151                        ldlm.namespaces.$imp_name.lock_unused_count)
22152
22153                 lockahead_test -d $DIR/$tdir -t $i -f $tfile
22154                 rc=$?
22155                 if [ $rc -eq 255 ]; then
22156                         error "Ladvise test ${i} failed, ${rc}"
22157                 fi
22158
22159                 new_count=$($LCTL get_param -n \
22160                        ldlm.namespaces.$imp_name.lock_unused_count)
22161                 difference="$((new_count - count))"
22162
22163                 # Test 15 output is divided by 100 to map down to valid return
22164                 if [ $i -eq 15 ]; then
22165                         rc="$((rc * 100))"
22166                 fi
22167
22168                 if [ $difference -ne $rc ]; then
22169                         error "Ladvise test ${i}, bad lock count, returned " \
22170                               "${rc}, actual ${difference}"
22171                 fi
22172         done
22173
22174         #test 22 returns only success/failure
22175         i=22
22176         lockahead_test -d $DIR/$tdir -t $i -f $tfile
22177         rc=$?
22178         if [ $rc -eq 255 ]; then
22179                 error "Ladvise test${i} failed, ${rc}"
22180         fi
22181 }
22182 run_test 255c "suite of ladvise lockahead tests"
22183
22184 test_256() {
22185         [ $PARALLEL == "yes" ] && skip "skip parallel run"
22186         remote_mds_nodsh && skip "remote MDS with nodsh"
22187         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip "ldiskfs only test"
22188         changelog_users $SINGLEMDS | grep "^cl" &&
22189                 skip "active changelog user"
22190
22191         local cl_user
22192         local cat_sl
22193         local mdt_dev
22194
22195         mdt_dev=$(facet_device $SINGLEMDS)
22196         echo $mdt_dev
22197
22198         changelog_register || error "changelog_register failed"
22199
22200         rm -rf $DIR/$tdir
22201         mkdir_on_mdt -i$(($(facet_number $SINGLEMDS) - 1)) $DIR/$tdir
22202
22203         changelog_clear 0 || error "changelog_clear failed"
22204
22205         # change something
22206         touch $DIR/$tdir/{1..10}
22207
22208         # stop the MDT
22209         stop $SINGLEMDS || error "Fail to stop MDT"
22210
22211         # remount the MDT
22212         start $SINGLEMDS $(facet_device $SINGLEMDS) $MDS_MOUNT_OPTS ||
22213                 error "Fail to start MDT"
22214
22215         #after mount new plainllog is used
22216         touch $DIR/$tdir/{11..19}
22217         local tmpfile="$(mktemp --tmpdir -u $tfile.XXXXXX)"
22218         stack_trap "rm -f $tmpfile"
22219         cat_sl=$(do_facet $SINGLEMDS "sync; \
22220                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
22221                  llog_reader $tmpfile | grep -c type=1064553b")
22222         do_facet $SINGLEMDS llog_reader $tmpfile
22223
22224         [ $cat_sl != 2 ] && error "Changelog catalog has $cat_sl != 2 slots"
22225
22226         changelog_clear 0 || error "changelog_clear failed"
22227
22228         cat_sl=$(do_facet $SINGLEMDS "sync; \
22229                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
22230                  llog_reader $tmpfile | grep -c type=1064553b")
22231
22232         if (( cat_sl == 2 )); then
22233                 error "Empty plain llog was not deleted from changelog catalog"
22234         elif (( cat_sl != 1 )); then
22235                 error "Active plain llog shouldn't be deleted from catalog"
22236         fi
22237 }
22238 run_test 256 "Check llog delete for empty and not full state"
22239
22240 test_257() {
22241         remote_mds_nodsh && skip "remote MDS with nodsh"
22242         [[ $MDS1_VERSION -lt $(version_code 2.8.55) ]] &&
22243                 skip "Need MDS version at least 2.8.55"
22244
22245         test_mkdir $DIR/$tdir
22246
22247         setfattr -n trusted.name1 -v value1 $DIR/$tdir ||
22248                 error "setfattr -n trusted.name1=value1 $DIR/$tdir failed"
22249         stat $DIR/$tdir
22250
22251 #define OBD_FAIL_MDS_XATTR_REP                  0x161
22252         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
22253         local facet=mds$((mdtidx + 1))
22254         set_nodes_failloc $(facet_active_host $facet) 0x80000161
22255         getfattr -n trusted.name1 $DIR/$tdir 2> /dev/null
22256
22257         stop $facet || error "stop MDS failed"
22258         start $facet $(mdsdevname $((mdtidx + 1))) $MDS_MOUNT_OPTS ||
22259                 error "start MDS fail"
22260         wait_recovery_complete $facet
22261 }
22262 run_test 257 "xattr locks are not lost"
22263
22264 # Verify we take the i_mutex when security requires it
22265 test_258a() {
22266 #define OBD_FAIL_IMUTEX_SEC 0x141c
22267         $LCTL set_param fail_loc=0x141c
22268         touch $DIR/$tfile
22269         chmod u+s $DIR/$tfile
22270         chmod a+rwx $DIR/$tfile
22271         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
22272         RC=$?
22273         if [ $RC -ne 0 ]; then
22274                 error "error, failed to take i_mutex, rc=$?"
22275         fi
22276         rm -f $DIR/$tfile
22277 }
22278 run_test 258a "verify i_mutex security behavior when suid attributes is set"
22279
22280 # Verify we do NOT take the i_mutex in the normal case
22281 test_258b() {
22282 #define OBD_FAIL_IMUTEX_NOSEC 0x141d
22283         $LCTL set_param fail_loc=0x141d
22284         touch $DIR/$tfile
22285         chmod a+rwx $DIR
22286         chmod a+rw $DIR/$tfile
22287         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
22288         RC=$?
22289         if [ $RC -ne 0 ]; then
22290                 error "error, took i_mutex unnecessarily, rc=$?"
22291         fi
22292         rm -f $DIR/$tfile
22293
22294 }
22295 run_test 258b "verify i_mutex security behavior"
22296
22297 test_259() {
22298         local file=$DIR/$tfile
22299         local before
22300         local after
22301
22302         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip "ldiskfs only test"
22303
22304         stack_trap "rm -f $file" EXIT
22305
22306         wait_delete_completed
22307         before=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
22308         echo "before: $before"
22309
22310         $LFS setstripe -i 0 -c 1 $file
22311         dd if=/dev/zero of=$file bs=1M count=10 || error "couldn't write"
22312         sync_all_data
22313         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
22314         echo "after write: $after"
22315
22316 #define OBD_FAIL_OSD_FAIL_AT_TRUNCATE          0x2301
22317         do_facet ost1 $LCTL set_param fail_loc=0x2301
22318         $TRUNCATE $file 0
22319         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
22320         echo "after truncate: $after"
22321
22322         stop ost1
22323         do_facet ost1 $LCTL set_param fail_loc=0
22324         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
22325         sleep 2
22326         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
22327         echo "after restart: $after"
22328         [ $((after - before)) -ge $(fs_log_size ost1) ] &&
22329                 error "missing truncate?"
22330
22331         return 0
22332 }
22333 run_test 259 "crash at delayed truncate"
22334
22335 test_260() {
22336 #define OBD_FAIL_MDC_CLOSE               0x806
22337         $LCTL set_param fail_loc=0x80000806
22338         touch $DIR/$tfile
22339
22340 }
22341 run_test 260 "Check mdc_close fail"
22342
22343 ### Data-on-MDT sanity tests ###
22344 test_270a() {
22345         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
22346                 skip "Need MDS version at least 2.10.55 for DoM"
22347
22348         # create DoM file
22349         local dom=$DIR/$tdir/dom_file
22350         local tmp=$DIR/$tdir/tmp_file
22351
22352         mkdir_on_mdt0 $DIR/$tdir
22353
22354         # basic checks for DoM component creation
22355         $LFS setstripe -E 1024K -E 2048K -L mdt $dom 2>/dev/null &&
22356                 error "Can set MDT layout to non-first entry"
22357
22358         $LFS setstripe -E 1024K -L mdt -E 2048K -L mdt $dom 2>/dev/null &&
22359                 error "Can define multiple entries as MDT layout"
22360
22361         $LFS setstripe -E 1M -L mdt $dom || error "Can't create DoM layout"
22362
22363         [ $($LFS getstripe -L $dom) == "mdt" ] || error "bad pattern"
22364         [ $($LFS getstripe -c $dom) == 0 ] || error "bad stripe count"
22365         [ $($LFS getstripe -S $dom) == 1048576 ] || error "bad stripe size"
22366
22367         local mdtidx=$($LFS getstripe -m $dom)
22368         local mdtname=MDT$(printf %04x $mdtidx)
22369         local facet=mds$((mdtidx + 1))
22370         local space_check=1
22371
22372         # Skip free space checks with ZFS
22373         [ "$(facet_fstype $facet)" == "zfs" ] && space_check=0
22374
22375         # write
22376         sync
22377         local size_tmp=$((65536 * 3))
22378         local mdtfree1=$(do_facet $facet \
22379                          lctl get_param -n osd*.*$mdtname.kbytesfree)
22380
22381         dd if=/dev/urandom of=$tmp bs=1024 count=$((size_tmp / 1024))
22382         # check also direct IO along write
22383         # IO size must be a multiple of PAGE_SIZE on all platforms (ARM=64KB)
22384         dd if=$tmp of=$dom bs=65536 count=$((size_tmp / 65536)) oflag=direct
22385         sync
22386         cmp $tmp $dom || error "file data is different"
22387         [ $(stat -c%s $dom) == $size_tmp ] ||
22388                 error "bad size after write: $(stat -c%s $dom) != $size_tmp"
22389         if [ $space_check == 1 ]; then
22390                 local mdtfree2=$(do_facet $facet \
22391                                  lctl get_param -n osd*.*$mdtname.kbytesfree)
22392
22393                 # increase in usage from by $size_tmp
22394                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_tmp / 1024)) ] ||
22395                         error "MDT free space wrong after write: " \
22396                               "$mdtfree1 >= $mdtfree2 + $size_tmp/1024"
22397         fi
22398
22399         # truncate
22400         local size_dom=10000
22401
22402         $TRUNCATE $dom $size_dom
22403         [ $(stat -c%s $dom) == $size_dom ] ||
22404                 error "bad size after truncate: $(stat -c%s $dom) != $size_dom"
22405         if [ $space_check == 1 ]; then
22406                 mdtfree1=$(do_facet $facet \
22407                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
22408                 # decrease in usage from $size_tmp to new $size_dom
22409                 [ $(($mdtfree1 - $mdtfree2)) -ge \
22410                   $(((size_tmp - size_dom) / 1024)) ] ||
22411                         error "MDT free space is wrong after truncate: " \
22412                               "$mdtfree1 >= $mdtfree2 + ($size_tmp - $size_dom) / 1024"
22413         fi
22414
22415         # append
22416         cat $tmp >> $dom
22417         sync
22418         size_dom=$((size_dom + size_tmp))
22419         [ $(stat -c%s $dom) == $size_dom ] ||
22420                 error "bad size after append: $(stat -c%s $dom) != $size_dom"
22421         if [ $space_check == 1 ]; then
22422                 mdtfree2=$(do_facet $facet \
22423                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
22424                 # increase in usage by $size_tmp from previous
22425                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_tmp / 1024)) ] ||
22426                         error "MDT free space is wrong after append: " \
22427                               "$mdtfree1 >= $mdtfree2 + $size_tmp/1024"
22428         fi
22429
22430         # delete
22431         rm $dom
22432         if [ $space_check == 1 ]; then
22433                 mdtfree1=$(do_facet $facet \
22434                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
22435                 # decrease in usage by $size_dom from previous
22436                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_dom / 1024)) ] ||
22437                         error "MDT free space is wrong after removal: " \
22438                               "$mdtfree1 >= $mdtfree2 + $size_dom/1024"
22439         fi
22440
22441         # combined striping
22442         $LFS setstripe -E 1024K -L mdt -E EOF $dom ||
22443                 error "Can't create DoM + OST striping"
22444
22445         size_tmp=2031616 # must be a multiple of PAGE_SIZE=65536 on ARM
22446         dd if=/dev/urandom of=$tmp bs=1024 count=$((size_tmp / 1024))
22447         # check also direct IO along write
22448         dd if=$tmp of=$dom bs=65536 count=$((size_tmp / 65536)) oflag=direct
22449         sync
22450         cmp $tmp $dom || error "file data is different"
22451         [ $(stat -c%s $dom) == $size_tmp ] ||
22452                 error "bad size after write: $(stat -c%s $dom) != $size_tmp"
22453         rm $dom $tmp
22454
22455         return 0
22456 }
22457 run_test 270a "DoM: basic functionality tests"
22458
22459 test_270b() {
22460         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
22461                 skip "Need MDS version at least 2.10.55"
22462
22463         local dom=$DIR/$tdir/dom_file
22464         local max_size=1048576
22465
22466         mkdir -p $DIR/$tdir
22467         $LFS setstripe -E $max_size -L mdt $dom
22468
22469         # truncate over the limit
22470         $TRUNCATE $dom $(($max_size + 1)) &&
22471                 error "successful truncate over the maximum size"
22472         # write over the limit
22473         dd if=/dev/zero of=$dom bs=$max_size seek=1 count=1 &&
22474                 error "successful write over the maximum size"
22475         # append over the limit
22476         dd if=/dev/zero of=$dom bs=$(($max_size - 3)) count=1
22477         echo "12345" >> $dom && error "successful append over the maximum size"
22478         rm $dom
22479
22480         return 0
22481 }
22482 run_test 270b "DoM: maximum size overflow checks for DoM-only file"
22483
22484 test_270c() {
22485         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
22486                 skip "Need MDS version at least 2.10.55"
22487
22488         mkdir -p $DIR/$tdir
22489         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
22490
22491         # check files inherit DoM EA
22492         touch $DIR/$tdir/first
22493         [ $($LFS getstripe -L $DIR/$tdir/first) == "mdt" ] ||
22494                 error "bad pattern"
22495         [ $($LFS getstripe -c $DIR/$tdir/first) == 0 ] ||
22496                 error "bad stripe count"
22497         [ $($LFS getstripe -S $DIR/$tdir/first) == 1048576 ] ||
22498                 error "bad stripe size"
22499
22500         # check directory inherits DoM EA and uses it as default
22501         mkdir $DIR/$tdir/subdir
22502         touch $DIR/$tdir/subdir/second
22503         [ $($LFS getstripe -L $DIR/$tdir/subdir/second) == "mdt" ] ||
22504                 error "bad pattern in sub-directory"
22505         [ $($LFS getstripe -c $DIR/$tdir/subdir/second) == 0 ] ||
22506                 error "bad stripe count in sub-directory"
22507         [ $($LFS getstripe -S $DIR/$tdir/subdir/second) == 1048576 ] ||
22508                 error "bad stripe size in sub-directory"
22509         return 0
22510 }
22511 run_test 270c "DoM: DoM EA inheritance tests"
22512
22513 test_270d() {
22514         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
22515                 skip "Need MDS version at least 2.10.55"
22516
22517         mkdir -p $DIR/$tdir
22518         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
22519
22520         # inherit default DoM striping
22521         mkdir $DIR/$tdir/subdir
22522         touch $DIR/$tdir/subdir/f1
22523
22524         # change default directory striping
22525         $LFS setstripe -c 1 $DIR/$tdir/subdir
22526         touch $DIR/$tdir/subdir/f2
22527         [ $($LFS getstripe -c $DIR/$tdir/subdir/f2) == 1 ] ||
22528                 error "wrong default striping in file 2"
22529         [ $($LFS getstripe -L $DIR/$tdir/subdir/f2) == "raid0" ] ||
22530                 error "bad pattern in file 2"
22531         return 0
22532 }
22533 run_test 270d "DoM: change striping from DoM to RAID0"
22534
22535 test_270e() {
22536         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
22537                 skip "Need MDS version at least 2.10.55"
22538
22539         mkdir -p $DIR/$tdir/dom
22540         mkdir -p $DIR/$tdir/norm
22541         DOMFILES=20
22542         NORMFILES=10
22543         $LFS setstripe -E 1M -L mdt $DIR/$tdir/dom
22544         $LFS setstripe -i 0 -S 2M $DIR/$tdir/norm
22545
22546         createmany -o $DIR/$tdir/dom/dom- $DOMFILES
22547         createmany -o $DIR/$tdir/norm/norm- $NORMFILES
22548
22549         # find DoM files by layout
22550         NUM=$($LFS find -L mdt -type f $DIR/$tdir 2>/dev/null | wc -l)
22551         [ $NUM -eq  $DOMFILES ] ||
22552                 error "lfs find -L: found $NUM, expected $DOMFILES"
22553         echo "Test 1: lfs find 20 DOM files by layout: OK"
22554
22555         # there should be 1 dir with default DOM striping
22556         NUM=$($LFS find -L mdt -type d $DIR/$tdir 2>/dev/null | wc -l)
22557         [ $NUM -eq  1 ] ||
22558                 error "lfs find -L: found $NUM, expected 1 dir"
22559         echo "Test 2: lfs find 1 DOM dir by layout: OK"
22560
22561         # find DoM files by stripe size
22562         NUM=$($LFS find -S -1200K -type f $DIR/$tdir 2>/dev/null | wc -l)
22563         [ $NUM -eq  $DOMFILES ] ||
22564                 error "lfs find -S: found $NUM, expected $DOMFILES"
22565         echo "Test 4: lfs find 20 DOM files by stripe size: OK"
22566
22567         # find files by stripe offset except DoM files
22568         NUM=$($LFS find -i 0 -type f $DIR/$tdir 2>/dev/null | wc -l)
22569         [ $NUM -eq  $NORMFILES ] ||
22570                 error "lfs find -i: found $NUM, expected $NORMFILES"
22571         echo "Test 5: lfs find no DOM files by stripe index: OK"
22572         return 0
22573 }
22574 run_test 270e "DoM: lfs find with DoM files test"
22575
22576 test_270f() {
22577         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
22578                 skip "Need MDS version at least 2.10.55"
22579
22580         local mdtname=${FSNAME}-MDT0000-mdtlov
22581         local dom=$DIR/$tdir/dom_file
22582         local dom_limit_saved=$(do_facet mds1 $LCTL get_param -n \
22583                                                 lod.$mdtname.dom_stripesize)
22584         local dom_limit=131072
22585
22586         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=$dom_limit
22587         local dom_current=$(do_facet mds1 $LCTL get_param -n \
22588                                                 lod.$mdtname.dom_stripesize)
22589         [ ${dom_limit} -eq ${dom_current} ] ||
22590                 error "Cannot change per-MDT DoM stripe limit to $dom_limit"
22591
22592         $LFS mkdir -i 0 -c 1 $DIR/$tdir
22593         $LFS setstripe -d $DIR/$tdir
22594         $LFS setstripe -E $dom_limit -L mdt $DIR/$tdir ||
22595                 error "Can't set directory default striping"
22596
22597         # exceed maximum stripe size
22598         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
22599                 error "Can't create file with $((dom_limit * 2)) DoM stripe"
22600         [ $($LFS getstripe -S $dom) -eq $((dom_limit * 2)) ] &&
22601                 error "Able to create DoM component size more than LOD limit"
22602
22603         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=0
22604         dom_current=$(do_facet mds1 $LCTL get_param -n \
22605                                                 lod.$mdtname.dom_stripesize)
22606         [ 0 -eq ${dom_current} ] ||
22607                 error "Can't set zero DoM stripe limit"
22608         rm $dom
22609
22610         # attempt to create DoM file on server with disabled DoM should
22611         # remove DoM entry from layout and be succeed
22612         $LFS setstripe -E $dom_limit -L mdt -E -1 $dom ||
22613                 error "Can't create DoM file (DoM is disabled)"
22614         [ $($LFS getstripe -L $dom) == "mdt" ] &&
22615                 error "File has DoM component while DoM is disabled"
22616         rm $dom
22617
22618         # attempt to create DoM file with only DoM stripe should return error
22619         $LFS setstripe -E $dom_limit -L mdt $dom &&
22620                 error "Able to create DoM-only file while DoM is disabled"
22621
22622         # too low values to be aligned with smallest stripe size 64K
22623         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=30000
22624         dom_current=$(do_facet mds1 $LCTL get_param -n \
22625                                                 lod.$mdtname.dom_stripesize)
22626         [ 30000 -eq ${dom_current} ] &&
22627                 error "Can set too small DoM stripe limit"
22628
22629         # 64K is a minimal stripe size in Lustre, expect limit of that size
22630         [ 65536 -eq ${dom_current} ] ||
22631                 error "Limit is not set to 64K but ${dom_current}"
22632
22633         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=2147483648
22634         dom_current=$(do_facet mds1 $LCTL get_param -n \
22635                                                 lod.$mdtname.dom_stripesize)
22636         echo $dom_current
22637         [ 2147483648 -eq ${dom_current} ] &&
22638                 error "Can set too large DoM stripe limit"
22639
22640         do_facet mds1 $LCTL set_param -n \
22641                                 lod.$mdtname.dom_stripesize=$((dom_limit * 2))
22642         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
22643                 error "Can't create DoM component size after limit change"
22644         do_facet mds1 $LCTL set_param -n \
22645                                 lod.$mdtname.dom_stripesize=$((dom_limit / 2))
22646         $LFS setstripe -E $dom_limit -L mdt ${dom}_big ||
22647                 error "Can't create DoM file after limit decrease"
22648         [ $($LFS getstripe -S ${dom}_big) -eq $((dom_limit / 2)) ] ||
22649                 error "Can create big DoM component after limit decrease"
22650         touch ${dom}_def ||
22651                 error "Can't create file with old default layout"
22652
22653         do_facet mds1 $LCTL set_param -n lod.*.dom_stripesize=$dom_limit_saved
22654         return 0
22655 }
22656 run_test 270f "DoM: maximum DoM stripe size checks"
22657
22658 test_270g() {
22659         [ $MDS1_VERSION -ge $(version_code 2.13.52) ] ||
22660                 skip "Need MDS version at least 2.13.52"
22661         local dom=$DIR/$tdir/$tfile
22662
22663         $LFS mkdir -i 0 -c 1 $DIR/$tdir
22664         local lodname=${FSNAME}-MDT0000-mdtlov
22665
22666         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
22667         save_lustre_params mds1 "lod.${lodname}.dom_stripesize_max_kb" > $save
22668         save_lustre_params mds1 "lod.${lodname}.dom_threshold_free_mb" >> $save
22669         stack_trap "restore_lustre_params < $save; rm -f $save" EXIT
22670
22671         local dom_limit=1024
22672         local dom_threshold="50%"
22673
22674         $LFS setstripe -d $DIR/$tdir
22675         $LFS setstripe -E ${dom_limit}K -L mdt $DIR/$tdir ||
22676                 error "Can't set directory default striping"
22677
22678         do_facet mds1 $LCTL set_param -n \
22679                                 lod.${lodname}.dom_stripesize_max_kb=$dom_limit
22680         # set 0 threshold and create DOM file to change tunable stripesize
22681         do_facet mds1 $LCTL set_param -n lod.${lodname}.dom_threshold_free_mb=0
22682         $LFS setstripe -E ${dom_limit}K -L mdt -E -1 $dom ||
22683                 error "Failed to create $dom file"
22684         # now tunable dom_cur_stripesize should reach maximum
22685         local dom_current=$(do_facet mds1 $LCTL get_param -n \
22686                                         lod.${lodname}.dom_stripesize_cur_kb)
22687         [[ $dom_current == $dom_limit ]] ||
22688                 error "Current DOM stripesize is not maximum"
22689         rm $dom
22690
22691         # set threshold for further tests
22692         do_facet mds1 $LCTL set_param -n \
22693                         lod.${lodname}.dom_threshold_free_mb=$dom_threshold
22694         echo "DOM threshold is $dom_threshold free space"
22695         local dom_def
22696         local dom_set
22697         # Spoof bfree to exceed threshold
22698         #define OBD_FAIL_MDS_STATFS_SPOOF   0x168
22699         do_facet mds1 $LCTL set_param -n fail_loc=0x0168
22700         for spfree in 40 20 0 15 30 55; do
22701                 do_facet mds1 $LCTL set_param -n fail_val=$spfree
22702                 $LFS setstripe -E ${dom_limit}K -L mdt -E -1 $dom ||
22703                         error "Failed to create $dom file"
22704                 dom_def=$(do_facet mds1 $LCTL get_param -n \
22705                                         lod.${lodname}.dom_stripesize_cur_kb)
22706                 echo "Free space: ${spfree}%, default DOM stripe: ${dom_def}K"
22707                 [[ $dom_def != $dom_current ]] ||
22708                         error "Default stripe size was not changed"
22709                 if (( spfree > 0 )) ; then
22710                         dom_set=$($LFS getstripe -S $dom)
22711                         (( dom_set == dom_def * 1024 )) ||
22712                                 error "DOM component size is still old"
22713                 else
22714                         [[ $($LFS getstripe -L $dom) != "mdt" ]] ||
22715                                 error "DoM component is set with no free space"
22716                 fi
22717                 rm $dom
22718                 dom_current=$dom_def
22719         done
22720 }
22721 run_test 270g "DoM: default DoM stripe size depends on free space"
22722
22723 test_270h() {
22724         [[ $MDS1_VERSION -ge $(version_code 2.13.53) ]] ||
22725                 skip "Need MDS version at least 2.13.53"
22726
22727         local mdtname=${FSNAME}-MDT0000-mdtlov
22728         local dom=$DIR/$tdir/$tfile
22729         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
22730
22731         save_lustre_params mds1 "lod.*.dom_stripesize" > $save
22732         stack_trap "restore_lustre_params < $save; rm -f $save" EXIT
22733
22734         $LFS mkdir -i 0 -c 1 $DIR/$tdir
22735         $LFS setstripe -E 1M -c1  -E -1 -c2 ${dom}_1 ||
22736                 error "can't create OST file"
22737         # mirrored file with DOM entry in the second mirror
22738         $LFS mirror extend -N -E 1M -L mdt -E eof -c2 ${dom}_1 ||
22739                 error "can't create mirror with DoM component"
22740
22741         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=0
22742
22743         # DOM component in the middle and has other enries in the same mirror,
22744         # should succeed but lost DoM component
22745         $LFS setstripe --copy=${dom}_1 $dom ||
22746                 error "Can't create file from OST|DOM mirror layout"
22747         # check new file has no DoM layout after all
22748         [[ $($LFS getstripe -L $dom) != "mdt" ]] ||
22749                 error "File has DoM component while DoM is disabled"
22750 }
22751 run_test 270h "DoM: DoM stripe removal when disabled on server"
22752
22753 test_270i() {
22754         (( $MDS1_VERSION >= $(version_code 2.14.54) )) ||
22755                 skip "Need MDS version at least 2.14.54"
22756
22757         mkdir $DIR/$tdir
22758         $LFS setstripe -L mdt -S 128k -c -1 $DIR/$tdir &&
22759                 error "setstripe should fail" || true
22760 }
22761 run_test 270i "DoM: setting invalid DoM striping should fail"
22762
22763 test_271a() {
22764         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
22765                 skip "Need MDS version at least 2.10.55"
22766
22767         local dom=$DIR/$tdir/dom
22768
22769         mkdir -p $DIR/$tdir
22770
22771         $LFS setstripe -E 1024K -L mdt $dom
22772
22773         lctl set_param -n mdc.*.stats=clear
22774         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
22775         cat $dom > /dev/null
22776         local reads=$(lctl get_param -n mdc.*.stats | grep -c ost_read)
22777         [ $reads -eq 0 ] || error "Unexpected $reads READ RPCs"
22778         ls $dom
22779         rm -f $dom
22780 }
22781 run_test 271a "DoM: data is cached for read after write"
22782
22783 test_271b() {
22784         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
22785                 skip "Need MDS version at least 2.10.55"
22786
22787         local dom=$DIR/$tdir/dom
22788
22789         mkdir -p $DIR/$tdir
22790
22791         $LFS setstripe -E 1024K -L mdt -E EOF $dom
22792
22793         lctl set_param -n mdc.*.stats=clear
22794         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
22795         cancel_lru_locks mdc
22796         $CHECKSTAT -t file -s 4096 $dom || error "stat #1 fails"
22797         # second stat to check size is cached on client
22798         $CHECKSTAT -t file -s 4096 $dom || error "stat #2 fails"
22799         local gls=$(lctl get_param -n mdc.*.stats | grep -c ldlm_glimpse)
22800         [ $gls -eq 0 ] || error "Unexpected $gls glimpse RPCs"
22801         rm -f $dom
22802 }
22803 run_test 271b "DoM: no glimpse RPC for stat (DoM only file)"
22804
22805 test_271ba() {
22806         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
22807                 skip "Need MDS version at least 2.10.55"
22808
22809         local dom=$DIR/$tdir/dom
22810
22811         mkdir -p $DIR/$tdir
22812
22813         $LFS setstripe -E 1024K -L mdt -E EOF $dom
22814
22815         lctl set_param -n mdc.*.stats=clear
22816         lctl set_param -n osc.*.stats=clear
22817         dd if=/dev/zero of=$dom bs=2048K count=1 || return 1
22818         cancel_lru_locks mdc
22819         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
22820         # second stat to check size is cached on client
22821         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
22822         local gls=$(lctl get_param -n mdc.*.stats | grep -c ldlm_glimpse)
22823         [ $gls == 0 ] || error "Unexpected $gls glimpse RPCs"
22824         local gls=$(lctl get_param -n osc.*.stats | grep -c ldlm_glimpse)
22825         [ $gls == 0 ] || error "Unexpected $gls OSC glimpse RPCs"
22826         rm -f $dom
22827 }
22828 run_test 271ba "DoM: no glimpse RPC for stat (combined file)"
22829
22830
22831 get_mdc_stats() {
22832         local mdtidx=$1
22833         local param=$2
22834         local mdt=MDT$(printf %04x $mdtidx)
22835
22836         if [ -z $param ]; then
22837                 lctl get_param -n mdc.*$mdt*.stats
22838         else
22839                 lctl get_param -n mdc.*$mdt*.stats | awk "/$param/"'{print $2}'
22840         fi
22841 }
22842
22843 test_271c() {
22844         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
22845                 skip "Need MDS version at least 2.10.55"
22846
22847         local dom=$DIR/$tdir/dom
22848
22849         mkdir -p $DIR/$tdir
22850
22851         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
22852
22853         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
22854         local facet=mds$((mdtidx + 1))
22855
22856         cancel_lru_locks mdc
22857         do_facet $facet lctl set_param -n mdt.*.dom_lock=0
22858         createmany -o $dom 1000
22859         lctl set_param -n mdc.*.stats=clear
22860         smalliomany -w $dom 1000 200
22861         get_mdc_stats $mdtidx
22862         local enq=$(get_mdc_stats $mdtidx ldlm_ibits_enqueue)
22863         # Each file has 1 open, 1 IO enqueues, total 2000
22864         # but now we have also +1 getxattr for security.capability, total 3000
22865         [ $enq -ge 2000 ] || error "Too few enqueues $enq, expected > 2000"
22866         unlinkmany $dom 1000
22867
22868         cancel_lru_locks mdc
22869         do_facet $facet lctl set_param -n mdt.*.dom_lock=1
22870         createmany -o $dom 1000
22871         lctl set_param -n mdc.*.stats=clear
22872         smalliomany -w $dom 1000 200
22873         local enq_2=$(get_mdc_stats $mdtidx ldlm_ibits_enqueue)
22874         # Expect to see reduced amount of RPCs by 1000 due to single enqueue
22875         # for OPEN and IO lock.
22876         [ $((enq - enq_2)) -ge 1000 ] ||
22877                 error "Too many enqueues $enq_2, expected about $((enq - 1000))"
22878         unlinkmany $dom 1000
22879         return 0
22880 }
22881 run_test 271c "DoM: IO lock at open saves enqueue RPCs"
22882
22883 cleanup_271def_tests() {
22884         trap 0
22885         rm -f $1
22886 }
22887
22888 test_271d() {
22889         [ $MDS1_VERSION -lt $(version_code 2.10.57) ] &&
22890                 skip "Need MDS version at least 2.10.57"
22891
22892         local dom=$DIR/$tdir/dom
22893         local tmp=$TMP/$tfile
22894         trap "cleanup_271def_tests $tmp" EXIT
22895
22896         mkdir -p $DIR/$tdir
22897
22898         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
22899
22900         local mdtidx=$($LFS getstripe --mdt-index $DIR/$tdir)
22901
22902         cancel_lru_locks mdc
22903         dd if=/dev/urandom of=$tmp bs=1000 count=1
22904         dd if=$tmp of=$dom bs=1000 count=1
22905         cancel_lru_locks mdc
22906
22907         cat /etc/hosts >> $tmp
22908         lctl set_param -n mdc.*.stats=clear
22909
22910         # append data to the same file it should update local page
22911         echo "Append to the same page"
22912         cat /etc/hosts >> $dom
22913         local num=$(get_mdc_stats $mdtidx ost_read)
22914         local ra=$(get_mdc_stats $mdtidx req_active)
22915         local rw=$(get_mdc_stats $mdtidx req_waittime)
22916
22917         [ -z $num ] || error "$num READ RPC occured"
22918         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
22919         echo "... DONE"
22920
22921         # compare content
22922         cmp $tmp $dom || error "file miscompare"
22923
22924         cancel_lru_locks mdc
22925         lctl set_param -n mdc.*.stats=clear
22926
22927         echo "Open and read file"
22928         cat $dom > /dev/null
22929         local num=$(get_mdc_stats $mdtidx ost_read)
22930         local ra=$(get_mdc_stats $mdtidx req_active)
22931         local rw=$(get_mdc_stats $mdtidx req_waittime)
22932
22933         [ -z $num ] || error "$num READ RPC occured"
22934         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
22935         echo "... DONE"
22936
22937         # compare content
22938         cmp $tmp $dom || error "file miscompare"
22939
22940         return 0
22941 }
22942 run_test 271d "DoM: read on open (1K file in reply buffer)"
22943
22944 test_271f() {
22945         [ $MDS1_VERSION -lt $(version_code 2.10.57) ] &&
22946                 skip "Need MDS version at least 2.10.57"
22947
22948         local dom=$DIR/$tdir/dom
22949         local tmp=$TMP/$tfile
22950         trap "cleanup_271def_tests $tmp" EXIT
22951
22952         mkdir -p $DIR/$tdir
22953
22954         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
22955
22956         local mdtidx=$($LFS getstripe --mdt-index $DIR/$tdir)
22957
22958         cancel_lru_locks mdc
22959         dd if=/dev/urandom of=$tmp bs=265000 count=1
22960         dd if=$tmp of=$dom bs=265000 count=1
22961         cancel_lru_locks mdc
22962         cat /etc/hosts >> $tmp
22963         lctl set_param -n mdc.*.stats=clear
22964
22965         echo "Append to the same page"
22966         cat /etc/hosts >> $dom
22967         local num=$(get_mdc_stats $mdtidx ost_read)
22968         local ra=$(get_mdc_stats $mdtidx req_active)
22969         local rw=$(get_mdc_stats $mdtidx req_waittime)
22970
22971         [ -z $num ] || error "$num READ RPC occured"
22972         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
22973         echo "... DONE"
22974
22975         # compare content
22976         cmp $tmp $dom || error "file miscompare"
22977
22978         cancel_lru_locks mdc
22979         lctl set_param -n mdc.*.stats=clear
22980
22981         echo "Open and read file"
22982         cat $dom > /dev/null
22983         local num=$(get_mdc_stats $mdtidx ost_read)
22984         local ra=$(get_mdc_stats $mdtidx req_active)
22985         local rw=$(get_mdc_stats $mdtidx req_waittime)
22986
22987         [ -z $num ] && num=0
22988         [ $num -eq 1 ] || error "expect 1 READ RPC, $num occured"
22989         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
22990         echo "... DONE"
22991
22992         # compare content
22993         cmp $tmp $dom || error "file miscompare"
22994
22995         return 0
22996 }
22997 run_test 271f "DoM: read on open (200K file and read tail)"
22998
22999 test_271g() {
23000         [[ $($LCTL get_param mdc.*.import) =~ async_discard ]] ||
23001                 skip "Skipping due to old client or server version"
23002
23003         $LFS setstripe -E 1024K -L mdt -E EOF $DIR1/$tfile
23004         # to get layout
23005         $CHECKSTAT -t file $DIR1/$tfile
23006
23007         $MULTIOP $DIR1/$tfile Ow40960_w4096c &
23008         MULTIOP_PID=$!
23009         sleep 1
23010         #define OBD_FAIL_LDLM_CANCEL_BL_CB_RACE
23011         $LCTL set_param fail_loc=0x80000314
23012         rm $DIR1/$tfile || error "Unlink fails"
23013         RC=$?
23014         kill -USR1 $MULTIOP_PID && wait $MULTIOP_PID || error "multiop failure"
23015         [ $RC -eq 0 ] || error "Failed write to stale object"
23016 }
23017 run_test 271g "Discard DoM data vs client flush race"
23018
23019 test_272a() {
23020         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
23021                 skip "Need MDS version at least 2.11.50"
23022
23023         local dom=$DIR/$tdir/dom
23024         mkdir -p $DIR/$tdir
23025
23026         $LFS setstripe -E 256K -L mdt -E -1 -c1 $dom
23027         dd if=/dev/urandom of=$dom bs=512K count=1 ||
23028                 error "failed to write data into $dom"
23029         local old_md5=$(md5sum $dom)
23030
23031         $LFS migrate -E 256K -L mdt -E -1 -c2 $dom ||
23032                 error "failed to migrate to the same DoM component"
23033
23034         local new_md5=$(md5sum $dom)
23035
23036         [ "$old_md5" == "$new_md5" ] ||
23037                 error "md5sum differ: $old_md5, $new_md5"
23038
23039         [ $($LFS getstripe -c $dom) -eq 2 ] ||
23040                 error "bad final stripe count: $($LFS getstripe -c $dom) != 2"
23041 }
23042 run_test 272a "DoM migration: new layout with the same DOM component"
23043
23044 test_272b() {
23045         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
23046                 skip "Need MDS version at least 2.11.50"
23047
23048         local dom=$DIR/$tdir/dom
23049         mkdir -p $DIR/$tdir
23050         $LFS setstripe -E 1M -L mdt -E -1 -c1 $dom
23051
23052         local mdtidx=$($LFS getstripe -m $dom)
23053         local mdtname=MDT$(printf %04x $mdtidx)
23054         local facet=mds$((mdtidx + 1))
23055
23056         local mdtfree1=$(do_facet $facet \
23057                 lctl get_param -n osd*.*$mdtname.kbytesfree)
23058         dd if=/dev/urandom of=$dom bs=2M count=1 ||
23059                 error "failed to write data into $dom"
23060         local old_md5=$(md5sum $dom)
23061         cancel_lru_locks mdc
23062         local mdtfree1=$(do_facet $facet \
23063                 lctl get_param -n osd*.*$mdtname.kbytesfree)
23064
23065         $LFS migrate -c2 $dom ||
23066                 error "failed to migrate to the new composite layout"
23067         [ $($LFS getstripe -L $dom) != 'mdt' ] ||
23068                 error "MDT stripe was not removed"
23069
23070         cancel_lru_locks mdc
23071         local new_md5=$(md5sum $dom)
23072         [ "$old_md5" == "$new_md5" ] ||
23073                 error "$old_md5 != $new_md5"
23074
23075         # Skip free space checks with ZFS
23076         if [ "$(facet_fstype $facet)" != "zfs" ]; then
23077                 local mdtfree2=$(do_facet $facet \
23078                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
23079                 [ $mdtfree2 -gt $mdtfree1 ] ||
23080                         error "MDT space is not freed after migration"
23081         fi
23082         return 0
23083 }
23084 run_test 272b "DoM migration: DOM file to the OST-striped file (plain)"
23085
23086 test_272c() {
23087         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
23088                 skip "Need MDS version at least 2.11.50"
23089
23090         local dom=$DIR/$tdir/$tfile
23091         mkdir -p $DIR/$tdir
23092         $LFS setstripe -E 1M -L mdt -E -1 -c1 $dom
23093
23094         local mdtidx=$($LFS getstripe -m $dom)
23095         local mdtname=MDT$(printf %04x $mdtidx)
23096         local facet=mds$((mdtidx + 1))
23097
23098         dd if=/dev/urandom of=$dom bs=2M count=1 oflag=direct ||
23099                 error "failed to write data into $dom"
23100         local old_md5=$(md5sum $dom)
23101         cancel_lru_locks mdc
23102         local mdtfree1=$(do_facet $facet \
23103                 lctl get_param -n osd*.*$mdtname.kbytesfree)
23104
23105         $LFS migrate -E 2M -c1 -E -1 -c2 $dom ||
23106                 error "failed to migrate to the new composite layout"
23107         [ $($LFS getstripe -L $dom) == 'mdt' ] &&
23108                 error "MDT stripe was not removed"
23109
23110         cancel_lru_locks mdc
23111         local new_md5=$(md5sum $dom)
23112         [ "$old_md5" == "$new_md5" ] ||
23113                 error "$old_md5 != $new_md5"
23114
23115         # Skip free space checks with ZFS
23116         if [ "$(facet_fstype $facet)" != "zfs" ]; then
23117                 local mdtfree2=$(do_facet $facet \
23118                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
23119                 [ $mdtfree2 -gt $mdtfree1 ] ||
23120                         error "MDS space is not freed after migration"
23121         fi
23122         return 0
23123 }
23124 run_test 272c "DoM migration: DOM file to the OST-striped file (composite)"
23125
23126 test_272d() {
23127         [ $MDS1_VERSION -lt $(version_code 2.12.55) ] &&
23128                 skip "Need MDS version at least 2.12.55"
23129
23130         local dom=$DIR/$tdir/$tfile
23131         mkdir -p $DIR/$tdir
23132         $LFS setstripe -E 1M -L mdt -E -1 -c1 $dom
23133
23134         local mdtidx=$($LFS getstripe -m $dom)
23135         local mdtname=MDT$(printf %04x $mdtidx)
23136         local facet=mds$((mdtidx + 1))
23137
23138         dd if=/dev/urandom of=$dom bs=2M count=1 oflag=direct ||
23139                 error "failed to write data into $dom"
23140         local old_md5=$(md5sum $dom)
23141         cancel_lru_locks mdc
23142         local mdtfree1=$(do_facet $facet \
23143                 lctl get_param -n osd*.*$mdtname.kbytesfree)
23144
23145         $LFS mirror extend -N -E 2M -c1 -E -1 -c2 $dom ||
23146                 error "failed mirroring to the new composite layout"
23147         $LFS mirror resync $dom ||
23148                 error "failed mirror resync"
23149         $LFS mirror split --mirror-id 1 -d $dom ||
23150                 error "failed mirror split"
23151
23152         [ $($LFS getstripe -L $dom) != 'mdt' ] ||
23153                 error "MDT stripe was not removed"
23154
23155         cancel_lru_locks mdc
23156         local new_md5=$(md5sum $dom)
23157         [ "$old_md5" == "$new_md5" ] ||
23158                 error "$old_md5 != $new_md5"
23159
23160         # Skip free space checks with ZFS
23161         if [ "$(facet_fstype $facet)" != "zfs" ]; then
23162                 local mdtfree2=$(do_facet $facet \
23163                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
23164                 [ $mdtfree2 -gt $mdtfree1 ] ||
23165                         error "MDS space is not freed after DOM mirror deletion"
23166         fi
23167         return 0
23168 }
23169 run_test 272d "DoM mirroring: OST-striped mirror to DOM file"
23170
23171 test_272e() {
23172         [ $MDS1_VERSION -lt $(version_code 2.12.55) ] &&
23173                 skip "Need MDS version at least 2.12.55"
23174
23175         local dom=$DIR/$tdir/$tfile
23176         mkdir -p $DIR/$tdir
23177         $LFS setstripe -c 2 $dom
23178
23179         dd if=/dev/urandom of=$dom bs=2M count=1 oflag=direct ||
23180                 error "failed to write data into $dom"
23181         local old_md5=$(md5sum $dom)
23182         cancel_lru_locks
23183
23184         $LFS mirror extend -N -E 1M -L mdt -E eof -c2 $dom ||
23185                 error "failed mirroring to the DOM layout"
23186         $LFS mirror resync $dom ||
23187                 error "failed mirror resync"
23188         $LFS mirror split --mirror-id 1 -d $dom ||
23189                 error "failed mirror split"
23190
23191         [[ $($LFS getstripe -L --component-start=0 $dom) == 'mdt' ]] ||
23192                 error "MDT stripe wasn't set"
23193
23194         cancel_lru_locks
23195         local new_md5=$(md5sum $dom)
23196         [ "$old_md5" == "$new_md5" ] ||
23197                 error "$old_md5 != $new_md5"
23198
23199         return 0
23200 }
23201 run_test 272e "DoM mirroring: DOM mirror to the OST-striped file"
23202
23203 test_272f() {
23204         [ $MDS1_VERSION -lt $(version_code 2.12.55) ] &&
23205                 skip "Need MDS version at least 2.12.55"
23206
23207         local dom=$DIR/$tdir/$tfile
23208         mkdir -p $DIR/$tdir
23209         $LFS setstripe -c 2 $dom
23210
23211         dd if=/dev/urandom of=$dom bs=2M count=1 oflag=direct ||
23212                 error "failed to write data into $dom"
23213         local old_md5=$(md5sum $dom)
23214         cancel_lru_locks
23215
23216         $LFS migrate -E 1M -L mdt -E eof -c2 -v $dom ||
23217                 error "failed migrating to the DOM file"
23218
23219         [[ $($LFS getstripe -L --component-start=0 $dom) == 'mdt' ]] ||
23220                 error "MDT stripe wasn't set"
23221
23222         cancel_lru_locks
23223         local new_md5=$(md5sum $dom)
23224         [ "$old_md5" != "$new_md5" ] &&
23225                 error "$old_md5 != $new_md5"
23226
23227         return 0
23228 }
23229 run_test 272f "DoM migration: OST-striped file to DOM file"
23230
23231 test_273a() {
23232         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
23233                 skip "Need MDS version at least 2.11.50"
23234
23235         # Layout swap cannot be done if either file has DOM component,
23236         # this will never be supported, migration should be used instead
23237
23238         local dom=$DIR/$tdir/$tfile
23239         mkdir -p $DIR/$tdir
23240
23241         $LFS setstripe -c2 ${dom}_plain
23242         $LFS setstripe -E 1M -L mdt -E -1 -c2 ${dom}_dom
23243         $LFS swap_layouts ${dom}_plain ${dom}_dom &&
23244                 error "can swap layout with DoM component"
23245         $LFS swap_layouts ${dom}_dom ${dom}_plain &&
23246                 error "can swap layout with DoM component"
23247
23248         $LFS setstripe -E 1M -c1 -E -1 -c2 ${dom}_comp
23249         $LFS swap_layouts ${dom}_comp ${dom}_dom &&
23250                 error "can swap layout with DoM component"
23251         $LFS swap_layouts ${dom}_dom ${dom}_comp &&
23252                 error "can swap layout with DoM component"
23253         return 0
23254 }
23255 run_test 273a "DoM: layout swapping should fail with DOM"
23256
23257 test_273b() {
23258         mkdir -p $DIR/$tdir
23259         $LFS setstripe -E 1M -L mdt -E -1 -c -1 $DIR/$tdir
23260
23261 #define OBD_FAIL_MDS_COMMITRW_DELAY      0x16b
23262         do_facet mds1 $LCTL set_param fail_loc=0x8000016b fail_val=2
23263
23264         $MULTIOP $DIR/$tdir/$tfile Ouw2097152c
23265 }
23266 run_test 273b "DoM: race writeback and object destroy"
23267
23268 test_275() {
23269         remote_ost_nodsh && skip "remote OST with nodsh"
23270         [ $OST1_VERSION -lt $(version_code 2.10.57) ] &&
23271                 skip "Need OST version >= 2.10.57"
23272
23273         local file=$DIR/$tfile
23274         local oss
23275
23276         oss=$(comma_list $(osts_nodes))
23277
23278         dd if=/dev/urandom of=$file bs=1M count=2 ||
23279                 error "failed to create a file"
23280         cancel_lru_locks osc
23281
23282         #lock 1
23283         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
23284                 error "failed to read a file"
23285
23286 #define OBD_FAIL_LDLM_PAUSE_CANCEL2      0x31f
23287         $LCTL set_param fail_loc=0x8000031f
23288
23289         cancel_lru_locks osc &
23290         sleep 1
23291
23292 #define OBD_FAIL_LDLM_PROLONG_PAUSE      0x32b
23293         do_nodes $oss $LCTL set_param fail_loc=0x8000032b
23294         #IO takes another lock, but matches the PENDING one
23295         #and places it to the IO RPC
23296         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
23297                 error "failed to read a file with PENDING lock"
23298 }
23299 run_test 275 "Read on a canceled duplicate lock"
23300
23301 test_276() {
23302         remote_ost_nodsh && skip "remote OST with nodsh"
23303         local pid
23304
23305         do_facet ost1 "(while true; do \
23306                 $LCTL get_param obdfilter.*.filesfree > /dev/null 2>&1; \
23307                 done) & pid=\\\$!; echo \\\$pid > $TMP/sanity_276_pid" &
23308         pid=$!
23309
23310         for LOOP in $(seq 20); do
23311                 stop ost1
23312                 start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
23313         done
23314         kill -9 $pid
23315         do_facet ost1 "pid=\\\$(cat $TMP/sanity_276_pid); kill -9 \\\$pid; \
23316                 rm $TMP/sanity_276_pid"
23317 }
23318 run_test 276 "Race between mount and obd_statfs"
23319
23320 test_277() {
23321         $LCTL set_param ldlm.namespaces.*.lru_size=0
23322         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
23323         local cached_mb=$($LCTL get_param llite.*.max_cached_mb |
23324                         grep ^used_mb | awk '{print $2}')
23325         [ $cached_mb -eq 1 ] || error "expected mb 1 got $cached_mb"
23326         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 \
23327                 oflag=direct conv=notrunc
23328         cached_mb=$($LCTL get_param llite.*.max_cached_mb |
23329                         grep ^used_mb | awk '{print $2}')
23330         [ $cached_mb -eq 0 ] || error "expected mb 0 got $cached_mb"
23331 }
23332 run_test 277 "Direct IO shall drop page cache"
23333
23334 test_278() {
23335         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
23336         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
23337         [[ "$(facet_host mds1)" != "$(facet_host mds2)" ]] &&
23338                 skip "needs the same host for mdt1 mdt2" && return
23339
23340         local pid1
23341         local pid2
23342
23343 #define OBD_FAIL_OBD_STOP_MDS_RACE     0x60b
23344         do_facet mds2 $LCTL set_param fail_loc=0x8000060c
23345         stop mds2 &
23346         pid2=$!
23347
23348         stop mds1
23349
23350         echo "Starting MDTs"
23351         start mds1 $(mdsdevname 1) $MDS_MOUNT_OPTS
23352         wait $pid2
23353 #For the error assertion will happen. lu_env_get_key(..., &mdt_thread_key)
23354 #will return NULL
23355         do_facet mds2 $LCTL set_param fail_loc=0
23356
23357         start mds2 $(mdsdevname 2) $MDS_MOUNT_OPTS
23358         wait_recovery_complete mds2
23359 }
23360 run_test 278 "Race starting MDS between MDTs stop/start"
23361
23362 test_280() {
23363         [ $MGS_VERSION -lt $(version_code 2.13.52) ] &&
23364                 skip "Need MGS version at least 2.13.52"
23365         [ $PARALLEL == "yes" ] && skip "skip parallel run"
23366         combined_mgs_mds || skip "needs combined MGS/MDT"
23367
23368         umount_client $MOUNT
23369 #define OBD_FAIL_MDS_LLOG_UMOUNT_RACE   0x15e
23370         do_facet mgs $LCTL set_param fail_loc=0x8000015e fail_val=0
23371
23372         mount_client $MOUNT &
23373         sleep 1
23374         stop mgs || error "stop mgs failed"
23375         #for a race mgs would crash
23376         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
23377         # make sure we unmount client before remounting
23378         wait
23379         umount_client $MOUNT
23380         mount_client $MOUNT || error "mount client failed"
23381 }
23382 run_test 280 "Race between MGS umount and client llog processing"
23383
23384 cleanup_test_300() {
23385         trap 0
23386         umask $SAVE_UMASK
23387 }
23388 test_striped_dir() {
23389         local mdt_index=$1
23390         local stripe_count
23391         local stripe_index
23392
23393         mkdir -p $DIR/$tdir
23394
23395         SAVE_UMASK=$(umask)
23396         trap cleanup_test_300 RETURN EXIT
23397
23398         $LFS setdirstripe -i $mdt_index -c 2 -H all_char -o 755 \
23399                                                 $DIR/$tdir/striped_dir ||
23400                 error "set striped dir error"
23401
23402         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
23403         [ "$mode" = "755" ] || error "expect 755 got $mode"
23404
23405         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
23406                 error "getdirstripe failed"
23407         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
23408         if [ "$stripe_count" != "2" ]; then
23409                 error "1:stripe_count is $stripe_count, expect 2"
23410         fi
23411         stripe_count=$($LFS getdirstripe -T $DIR/$tdir/striped_dir)
23412         if [ "$stripe_count" != "2" ]; then
23413                 error "2:stripe_count is $stripe_count, expect 2"
23414         fi
23415
23416         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
23417         if [ "$stripe_index" != "$mdt_index" ]; then
23418                 error "stripe_index is $stripe_index, expect $mdt_index"
23419         fi
23420
23421         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
23422                 error "nlink error after create striped dir"
23423
23424         mkdir $DIR/$tdir/striped_dir/a
23425         mkdir $DIR/$tdir/striped_dir/b
23426
23427         stat $DIR/$tdir/striped_dir/a ||
23428                 error "create dir under striped dir failed"
23429         stat $DIR/$tdir/striped_dir/b ||
23430                 error "create dir under striped dir failed"
23431
23432         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
23433                 error "nlink error after mkdir"
23434
23435         rmdir $DIR/$tdir/striped_dir/a
23436         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
23437                 error "nlink error after rmdir"
23438
23439         rmdir $DIR/$tdir/striped_dir/b
23440         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
23441                 error "nlink error after rmdir"
23442
23443         chattr +i $DIR/$tdir/striped_dir
23444         createmany -o $DIR/$tdir/striped_dir/f 10 &&
23445                 error "immutable flags not working under striped dir!"
23446         chattr -i $DIR/$tdir/striped_dir
23447
23448         rmdir $DIR/$tdir/striped_dir ||
23449                 error "rmdir striped dir error"
23450
23451         cleanup_test_300
23452
23453         true
23454 }
23455
23456 test_300a() {
23457         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
23458                 skip "skipped for lustre < 2.7.0"
23459         [ $PARALLEL == "yes" ] && skip "skip parallel run"
23460         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
23461
23462         test_striped_dir 0 || error "failed on striped dir on MDT0"
23463         test_striped_dir 1 || error "failed on striped dir on MDT0"
23464 }
23465 run_test 300a "basic striped dir sanity test"
23466
23467 test_300b() {
23468         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
23469                 skip "skipped for lustre < 2.7.0"
23470         [ $PARALLEL == "yes" ] && skip "skip parallel run"
23471         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
23472
23473         local i
23474         local mtime1
23475         local mtime2
23476         local mtime3
23477
23478         test_mkdir $DIR/$tdir || error "mkdir fail"
23479         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
23480                 error "set striped dir error"
23481         for i in {0..9}; do
23482                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
23483                 sleep 1
23484                 touch $DIR/$tdir/striped_dir/file_$i || error "touch error $i"
23485                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
23486                 [ $mtime1 -eq $mtime2 ] && error "mtime unchanged after create"
23487                 sleep 1
23488                 rm -f $DIR/$tdir/striped_dir/file_$i || error "unlink error $i"
23489                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
23490                 [ $mtime2 -eq $mtime3 ] && error "mtime unchanged after unlink"
23491         done
23492         true
23493 }
23494 run_test 300b "check ctime/mtime for striped dir"
23495
23496 test_300c() {
23497         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
23498                 skip "skipped for lustre < 2.7.0"
23499         [ $PARALLEL == "yes" ] && skip "skip parallel run"
23500         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
23501
23502         local file_count
23503
23504         mkdir_on_mdt0 $DIR/$tdir
23505         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
23506                 error "set striped dir error"
23507
23508         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
23509                 error "chown striped dir failed"
23510
23511         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
23512                 error "create 5k files failed"
23513
23514         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
23515
23516         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
23517
23518         rm -rf $DIR/$tdir
23519 }
23520 run_test 300c "chown && check ls under striped directory"
23521
23522 test_300d() {
23523         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
23524                 skip "skipped for lustre < 2.7.0"
23525         [ $PARALLEL == "yes" ] && skip "skip parallel run"
23526         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
23527
23528         local stripe_count
23529         local file
23530
23531         mkdir -p $DIR/$tdir
23532         $LFS setstripe -c 2 $DIR/$tdir
23533
23534         #local striped directory
23535         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
23536                 error "set striped dir error"
23537         #look at the directories for debug purposes
23538         ls -l $DIR/$tdir
23539         $LFS getdirstripe $DIR/$tdir
23540         ls -l $DIR/$tdir/striped_dir
23541         $LFS getdirstripe $DIR/$tdir/striped_dir
23542         createmany -o $DIR/$tdir/striped_dir/f 10 ||
23543                 error "create 10 files failed"
23544
23545         #remote striped directory
23546         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
23547                 error "set striped dir error"
23548         #look at the directories for debug purposes
23549         ls -l $DIR/$tdir
23550         $LFS getdirstripe $DIR/$tdir
23551         ls -l $DIR/$tdir/remote_striped_dir
23552         $LFS getdirstripe $DIR/$tdir/remote_striped_dir
23553         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
23554                 error "create 10 files failed"
23555
23556         for file in $(find $DIR/$tdir); do
23557                 stripe_count=$($LFS getstripe -c $file)
23558                 [ $stripe_count -eq 2 ] ||
23559                         error "wrong stripe $stripe_count for $file"
23560         done
23561
23562         rm -rf $DIR/$tdir
23563 }
23564 run_test 300d "check default stripe under striped directory"
23565
23566 test_300e() {
23567         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
23568                 skip "Need MDS version at least 2.7.55"
23569         [ $PARALLEL == "yes" ] && skip "skip parallel run"
23570         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
23571
23572         local stripe_count
23573         local file
23574
23575         mkdir -p $DIR/$tdir
23576
23577         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
23578                 error "set striped dir error"
23579
23580         touch $DIR/$tdir/striped_dir/a
23581         touch $DIR/$tdir/striped_dir/b
23582         touch $DIR/$tdir/striped_dir/c
23583
23584         mkdir $DIR/$tdir/striped_dir/dir_a
23585         mkdir $DIR/$tdir/striped_dir/dir_b
23586         mkdir $DIR/$tdir/striped_dir/dir_c
23587
23588         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_a ||
23589                 error "set striped adir under striped dir error"
23590
23591         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_b ||
23592                 error "set striped bdir under striped dir error"
23593
23594         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_c ||
23595                 error "set striped cdir under striped dir error"
23596
23597         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
23598                 error "rename dir under striped dir fails"
23599
23600         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
23601                 error "rename dir under different stripes fails"
23602
23603         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
23604                 error "rename file under striped dir should succeed"
23605
23606         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
23607                 error "rename dir under striped dir should succeed"
23608
23609         rm -rf $DIR/$tdir
23610 }
23611 run_test 300e "check rename under striped directory"
23612
23613 test_300f() {
23614         [ $PARALLEL == "yes" ] && skip "skip parallel run"
23615         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
23616         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
23617                 skip "Need MDS version at least 2.7.55"
23618
23619         local stripe_count
23620         local file
23621
23622         rm -rf $DIR/$tdir
23623         mkdir -p $DIR/$tdir
23624
23625         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
23626                 error "set striped dir error"
23627
23628         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir1 ||
23629                 error "set striped dir error"
23630
23631         touch $DIR/$tdir/striped_dir/a
23632         mkdir $DIR/$tdir/striped_dir/dir_a
23633         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
23634                 error "create striped dir under striped dir fails"
23635
23636         touch $DIR/$tdir/striped_dir1/b
23637         mkdir $DIR/$tdir/striped_dir1/dir_b
23638         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
23639                 error "create striped dir under striped dir fails"
23640
23641         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
23642                 error "rename dir under different striped dir should fail"
23643
23644         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
23645                 error "rename striped dir under diff striped dir should fail"
23646
23647         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
23648                 error "rename file under diff striped dirs fails"
23649
23650         rm -rf $DIR/$tdir
23651 }
23652 run_test 300f "check rename cross striped directory"
23653
23654 test_300_check_default_striped_dir()
23655 {
23656         local dirname=$1
23657         local default_count=$2
23658         local default_index=$3
23659         local stripe_count
23660         local stripe_index
23661         local dir_stripe_index
23662         local dir
23663
23664         echo "checking $dirname $default_count $default_index"
23665         $LFS setdirstripe -D -c $default_count -i $default_index \
23666                                 -H all_char $DIR/$tdir/$dirname ||
23667                 error "set default stripe on striped dir error"
23668         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
23669         [ $stripe_count -eq $default_count ] ||
23670                 error "expect $default_count get $stripe_count for $dirname"
23671
23672         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
23673         [ $stripe_index -eq $default_index ] ||
23674                 error "expect $default_index get $stripe_index for $dirname"
23675
23676         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
23677                                                 error "create dirs failed"
23678
23679         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
23680         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
23681         for dir in $(find $DIR/$tdir/$dirname/*); do
23682                 stripe_count=$($LFS getdirstripe -c $dir)
23683                 (( $stripe_count == $default_count )) ||
23684                 (( $stripe_count == $MDSCOUNT && $default_count == -1 )) ||
23685                 (( $stripe_count == 0 )) || (( $default_count == 1 )) ||
23686                 error "stripe count $default_count != $stripe_count for $dir"
23687
23688                 stripe_index=$($LFS getdirstripe -i $dir)
23689                 [ $default_index -eq -1 ] ||
23690                         [ $stripe_index -eq $default_index ] ||
23691                         error "$stripe_index != $default_index for $dir"
23692
23693                 #check default stripe
23694                 stripe_count=$($LFS getdirstripe -D -c $dir)
23695                 [ $stripe_count -eq $default_count ] ||
23696                 error "default count $default_count != $stripe_count for $dir"
23697
23698                 stripe_index=$($LFS getdirstripe -D -i $dir)
23699                 [ $stripe_index -eq $default_index ] ||
23700                 error "default index $default_index != $stripe_index for $dir"
23701         done
23702         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
23703 }
23704
23705 test_300g() {
23706         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
23707         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
23708                 skip "Need MDS version at least 2.7.55"
23709
23710         local dir
23711         local stripe_count
23712         local stripe_index
23713
23714         mkdir_on_mdt0 $DIR/$tdir
23715         mkdir $DIR/$tdir/normal_dir
23716
23717         #Checking when client cache stripe index
23718         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
23719         $LFS setdirstripe -D -i1 $DIR/$tdir/striped_dir ||
23720                 error "create striped_dir failed"
23721
23722         $LFS setdirstripe -i0 $DIR/$tdir/striped_dir/dir0 ||
23723                 error "create dir0 fails"
23724         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir0)
23725         [ $stripe_index -eq 0 ] ||
23726                 error "dir0 expect index 0 got $stripe_index"
23727
23728         mkdir $DIR/$tdir/striped_dir/dir1 ||
23729                 error "create dir1 fails"
23730         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir1)
23731         [ $stripe_index -eq 1 ] ||
23732                 error "dir1 expect index 1 got $stripe_index"
23733
23734         #check default stripe count/stripe index
23735         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
23736         test_300_check_default_striped_dir normal_dir 1 0
23737         test_300_check_default_striped_dir normal_dir -1 1
23738         test_300_check_default_striped_dir normal_dir 2 -1
23739
23740         #delete default stripe information
23741         echo "delete default stripeEA"
23742         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
23743                 error "set default stripe on striped dir error"
23744
23745         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
23746         for dir in $(find $DIR/$tdir/normal_dir/*); do
23747                 stripe_count=$($LFS getdirstripe -c $dir)
23748                 [ $stripe_count -eq 0 ] ||
23749                         error "expect 1 get $stripe_count for $dir"
23750         done
23751 }
23752 run_test 300g "check default striped directory for normal directory"
23753
23754 test_300h() {
23755         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
23756         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
23757                 skip "Need MDS version at least 2.7.55"
23758
23759         local dir
23760         local stripe_count
23761
23762         mkdir $DIR/$tdir
23763         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
23764                 error "set striped dir error"
23765
23766         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
23767         test_300_check_default_striped_dir striped_dir 1 0
23768         test_300_check_default_striped_dir striped_dir -1 1
23769         test_300_check_default_striped_dir striped_dir 2 -1
23770
23771         #delete default stripe information
23772         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
23773                 error "set default stripe on striped dir error"
23774
23775         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
23776         for dir in $(find $DIR/$tdir/striped_dir/*); do
23777                 stripe_count=$($LFS getdirstripe -c $dir)
23778                 [ $stripe_count -eq 0 ] ||
23779                         error "expect 1 get $stripe_count for $dir"
23780         done
23781 }
23782 run_test 300h "check default striped directory for striped directory"
23783
23784 test_300i() {
23785         [[ $PARALLEL == "yes" ]] && skip "skip parallel run"
23786         (( $MDSCOUNT >= 2 )) || skip_env "needs >= 2 MDTs"
23787         (( $MDS1_VERSION >= $(version_code 2.7.55) )) ||
23788                 skip "Need MDS version at least 2.7.55"
23789
23790         local stripe_count
23791         local file
23792
23793         mkdir $DIR/$tdir
23794
23795         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
23796                 error "set striped dir error"
23797
23798         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
23799                 error "create files under striped dir failed"
23800
23801         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir ||
23802                 error "set striped hashdir error"
23803
23804         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir/d0 ||
23805                 error "create dir0 under hash dir failed"
23806         $LFS setdirstripe -i0 -c$MDSCOUNT -H fnv_1a_64 $DIR/$tdir/hashdir/d1 ||
23807                 error "create dir1 under hash dir failed"
23808         $LFS setdirstripe -i0 -c$MDSCOUNT -H crush $DIR/$tdir/hashdir/d2 ||
23809                 error "create dir2 under hash dir failed"
23810
23811         # unfortunately, we need to umount to clear dir layout cache for now
23812         # once we fully implement dir layout, we can drop this
23813         umount_client $MOUNT || error "umount failed"
23814         mount_client $MOUNT || error "mount failed"
23815
23816         $LFS find -H fnv_1a_64,crush $DIR/$tdir/hashdir
23817         local dircnt=$($LFS find -H fnv_1a_64,crush $DIR/$tdir/hashdir | wc -l)
23818         (( $dircnt == 2 )) || error "lfs find striped dir got $dircnt != 2"
23819
23820         if (( $MDS1_VERSION > $(version_code 2.15.0) )); then
23821                 $LFS mkdir -i0 -c$MDSCOUNT -H crush2 $DIR/$tdir/hashdir/d3 ||
23822                         error "create crush2 dir $tdir/hashdir/d3 failed"
23823                 $LFS find -H crush2 $DIR/$tdir/hashdir
23824                 dircnt=$($LFS find -H crush2 $DIR/$tdir/hashdir | wc -l)
23825                 (( $dircnt == 1 )) || error "find crush2 dir got $dircnt != 1"
23826
23827                 # mkdir with an invalid hash type (hash=fail_val) from client
23828                 # should be replaced on MDS with a valid (default) hash type
23829                 #define OBD_FAIL_LMV_UNKNOWN_STRIPE     0x1901
23830                 $LCTL set_param fail_loc=0x1901 fail_val=99
23831                 $LFS mkdir -c2 $DIR/$tdir/hashdir/d99
23832
23833                 local hash=$($LFS getdirstripe -H $DIR/$tdir/hashdir/d99)
23834                 local expect=$(do_facet mds1 \
23835                         $LCTL get_param -n lod.$FSNAME-MDT0000-mdtlov.mdt_hash)
23836                 [[ $hash == $expect ]] ||
23837                         error "d99 hash '$hash' != expected hash '$expect'"
23838         fi
23839
23840         #set the stripe to be unknown hash type on read
23841         #define OBD_FAIL_LMV_UNKNOWN_STRIPE     0x1901
23842         $LCTL set_param fail_loc=0x1901 fail_val=99
23843         for ((i = 0; i < 10; i++)); do
23844                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
23845                         error "stat f-$i failed"
23846                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
23847         done
23848
23849         touch $DIR/$tdir/striped_dir/f0 &&
23850                 error "create under striped dir with unknown hash should fail"
23851
23852         $LCTL set_param fail_loc=0
23853
23854         umount_client $MOUNT || error "umount failed"
23855         mount_client $MOUNT || error "mount failed"
23856
23857         return 0
23858 }
23859 run_test 300i "client handle unknown hash type striped directory"
23860
23861 test_300j() {
23862         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
23863         [ $PARALLEL == "yes" ] && skip "skip parallel run"
23864         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
23865                 skip "Need MDS version at least 2.7.55"
23866
23867         local stripe_count
23868         local file
23869
23870         mkdir $DIR/$tdir
23871
23872         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
23873         $LCTL set_param fail_loc=0x1702
23874         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
23875                 error "set striped dir error"
23876
23877         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
23878                 error "create files under striped dir failed"
23879
23880         $LCTL set_param fail_loc=0
23881
23882         rm -rf $DIR/$tdir || error "unlink striped dir fails"
23883
23884         return 0
23885 }
23886 run_test 300j "test large update record"
23887
23888 test_300k() {
23889         [ $PARALLEL == "yes" ] && skip "skip parallel run"
23890         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
23891         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
23892                 skip "Need MDS version at least 2.7.55"
23893
23894         # this test needs a huge transaction
23895         local kb
23896         kb=$(do_facet $SINGLEMDS "$LCTL get_param -n \
23897              osd*.$FSNAME-MDT0000.kbytestotal")
23898         [ $kb -lt $((1024*1024)) ] && skip "MDT0 too small: $kb"
23899
23900         local stripe_count
23901         local file
23902
23903         mkdir $DIR/$tdir
23904
23905         #define OBD_FAIL_LARGE_STRIPE   0x1703
23906         $LCTL set_param fail_loc=0x1703
23907         $LFS setdirstripe -i 0 -c192 $DIR/$tdir/striped_dir ||
23908                 error "set striped dir error"
23909         $LCTL set_param fail_loc=0
23910
23911         $LFS getdirstripe $DIR/$tdir/striped_dir ||
23912                 error "getstripeddir fails"
23913         rm -rf $DIR/$tdir/striped_dir ||
23914                 error "unlink striped dir fails"
23915
23916         return 0
23917 }
23918 run_test 300k "test large striped directory"
23919
23920 test_300l() {
23921         [ $PARALLEL == "yes" ] && skip "skip parallel run"
23922         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
23923         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
23924                 skip "Need MDS version at least 2.7.55"
23925
23926         local stripe_index
23927
23928         test_mkdir -p $DIR/$tdir/striped_dir
23929         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
23930                         error "chown $RUNAS_ID failed"
23931         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
23932                 error "set default striped dir failed"
23933
23934         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
23935         $LCTL set_param fail_loc=0x80000158
23936         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
23937
23938         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
23939         [ $stripe_index -eq 1 ] ||
23940                 error "expect 1 get $stripe_index for $dir"
23941 }
23942 run_test 300l "non-root user to create dir under striped dir with stale layout"
23943
23944 test_300m() {
23945         [ $PARALLEL == "yes" ] && skip "skip parallel run"
23946         [ $MDSCOUNT -ge 2 ] && skip_env "Only for single MDT"
23947         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
23948                 skip "Need MDS version at least 2.7.55"
23949
23950         mkdir -p $DIR/$tdir/striped_dir
23951         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
23952                 error "set default stripes dir error"
23953
23954         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
23955
23956         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
23957         [ $stripe_count -eq 0 ] ||
23958                         error "expect 0 get $stripe_count for a"
23959
23960         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
23961                 error "set default stripes dir error"
23962
23963         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
23964
23965         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
23966         [ $stripe_count -eq 0 ] ||
23967                         error "expect 0 get $stripe_count for b"
23968
23969         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
23970                 error "set default stripes dir error"
23971
23972         mkdir $DIR/$tdir/striped_dir/c &&
23973                 error "default stripe_index is invalid, mkdir c should fails"
23974
23975         rm -rf $DIR/$tdir || error "rmdir fails"
23976 }
23977 run_test 300m "setstriped directory on single MDT FS"
23978
23979 cleanup_300n() {
23980         local list=$(comma_list $(mdts_nodes))
23981
23982         trap 0
23983         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
23984 }
23985
23986 test_300n() {
23987         [ $PARALLEL == "yes" ] && skip "skip parallel run"
23988         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
23989         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
23990                 skip "Need MDS version at least 2.7.55"
23991         remote_mds_nodsh && skip "remote MDS with nodsh"
23992
23993         local stripe_index
23994         local list=$(comma_list $(mdts_nodes))
23995
23996         trap cleanup_300n RETURN EXIT
23997         mkdir -p $DIR/$tdir
23998         chmod 777 $DIR/$tdir
23999         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
24000                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
24001                 error "create striped dir succeeds with gid=0"
24002
24003         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
24004         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
24005                 error "create striped dir fails with gid=-1"
24006
24007         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
24008         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
24009                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
24010                 error "set default striped dir succeeds with gid=0"
24011
24012
24013         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
24014         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
24015                 error "set default striped dir fails with gid=-1"
24016
24017
24018         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
24019         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
24020                                         error "create test_dir fails"
24021         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
24022                                         error "create test_dir1 fails"
24023         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
24024                                         error "create test_dir2 fails"
24025         cleanup_300n
24026 }
24027 run_test 300n "non-root user to create dir under striped dir with default EA"
24028
24029 test_300o() {
24030         [ $PARALLEL == "yes" ] && skip "skip parallel run"
24031         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
24032         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
24033                 skip "Need MDS version at least 2.7.55"
24034
24035         local numfree1
24036         local numfree2
24037
24038         mkdir -p $DIR/$tdir
24039
24040         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
24041         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
24042         if [ $numfree1 -lt 66000 ] || [ $numfree2 -lt 66000 ]; then
24043                 skip "not enough free inodes $numfree1 $numfree2"
24044         fi
24045
24046         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
24047         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
24048         if [ $numfree1 -lt 300000 ] || [ $numfree2 -lt 300000 ]; then
24049                 skip "not enough free space $numfree1 $numfree2"
24050         fi
24051
24052         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
24053                 error "setdirstripe fails"
24054
24055         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
24056                 error "create dirs fails"
24057
24058         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
24059         ls $DIR/$tdir/striped_dir > /dev/null ||
24060                 error "ls striped dir fails"
24061         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
24062                 error "unlink big striped dir fails"
24063 }
24064 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
24065
24066 test_300p() {
24067         [ $PARALLEL == "yes" ] && skip "skip parallel run"
24068         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
24069         remote_mds_nodsh && skip "remote MDS with nodsh"
24070
24071         mkdir_on_mdt0 $DIR/$tdir
24072
24073         #define OBD_FAIL_OUT_ENOSPC     0x1704
24074         do_facet mds2 lctl set_param fail_loc=0x80001704
24075         $LFS setdirstripe -i 0 -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 \
24076                  && error "create striped directory should fail"
24077
24078         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
24079
24080         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
24081         true
24082 }
24083 run_test 300p "create striped directory without space"
24084
24085 test_300q() {
24086         [ $PARALLEL == "yes" ] && skip "skip parallel run"
24087         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
24088
24089         local fd=$(free_fd)
24090         local cmd="exec $fd<$tdir"
24091         cd $DIR
24092         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
24093         eval $cmd
24094         cmd="exec $fd<&-"
24095         trap "eval $cmd" EXIT
24096         cd $tdir || error "cd $tdir fails"
24097         rmdir  ../$tdir || error "rmdir $tdir fails"
24098         mkdir local_dir && error "create dir succeeds"
24099         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
24100         eval $cmd
24101         return 0
24102 }
24103 run_test 300q "create remote directory under orphan directory"
24104
24105 test_300r() {
24106         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
24107                 skip "Need MDS version at least 2.7.55" && return
24108         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
24109
24110         mkdir $DIR/$tdir
24111
24112         $LFS setdirstripe -i 0 -c -1 $DIR/$tdir/striped_dir ||
24113                 error "set striped dir error"
24114
24115         $LFS getdirstripe $DIR/$tdir/striped_dir ||
24116                 error "getstripeddir fails"
24117
24118         local stripe_count
24119         stripe_count=$($LFS getdirstripe $DIR/$tdir/striped_dir |
24120                       awk '/lmv_stripe_count:/ { print $2 }')
24121
24122         [ $MDSCOUNT -ne $stripe_count ] &&
24123                 error "wrong stripe count $stripe_count expected $MDSCOUNT"
24124
24125         rm -rf $DIR/$tdir/striped_dir ||
24126                 error "unlink striped dir fails"
24127 }
24128 run_test 300r "test -1 striped directory"
24129
24130 test_300s_helper() {
24131         local count=$1
24132
24133         local stripe_dir=$DIR/$tdir/striped_dir.$count
24134
24135         $LFS mkdir -c $count $stripe_dir ||
24136                 error "lfs mkdir -c error"
24137
24138         $LFS getdirstripe $stripe_dir ||
24139                 error "lfs getdirstripe fails"
24140
24141         local stripe_count
24142         stripe_count=$($LFS getdirstripe $stripe_dir |
24143                       awk '/lmv_stripe_count:/ { print $2 }')
24144
24145         [ $count -ne $stripe_count ] &&
24146                 error_noexit "bad stripe count $stripe_count expected $count"
24147
24148         local dupe_stripes
24149         dupe_stripes=$($LFS getdirstripe $stripe_dir |
24150                 awk '/0x/ {count[$1] += 1}; END {
24151                         for (idx in count) {
24152                                 if (count[idx]>1) {
24153                                         print "index " idx " count " count[idx]
24154                                 }
24155                         }
24156                 }')
24157
24158         if [[ -n "$dupe_stripes" ]] ; then
24159                 lfs getdirstripe $stripe_dir
24160                 error_noexit "Dupe MDT above: $dupe_stripes "
24161         fi
24162
24163         rm -rf $stripe_dir ||
24164                 error_noexit "unlink $stripe_dir fails"
24165 }
24166
24167 test_300s() {
24168         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
24169                 skip "Need MDS version at least 2.7.55" && return
24170         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
24171
24172         mkdir $DIR/$tdir
24173         for count in $(seq 2 $MDSCOUNT); do
24174                 test_300s_helper $count
24175         done
24176 }
24177 run_test 300s "test lfs mkdir -c without -i"
24178
24179 test_300t() {
24180         (( $MDS1_VERSION >= $(version_code 2.14.55) )) ||
24181                 skip "need MDS 2.14.55 or later"
24182         (( $MDSCOUNT >= 2 )) || skip "needs at least 2 MDTs"
24183
24184         local testdir="$DIR/$tdir/striped_dir"
24185         local dir1=$testdir/dir1
24186         local dir2=$testdir/dir2
24187
24188         mkdir -p $testdir
24189
24190         $LFS setdirstripe -D -c -1 --max-inherit=3 $testdir ||
24191                 error "failed to set default stripe count for $testdir"
24192
24193         mkdir $dir1
24194         local stripe_count=$($LFS getdirstripe -c $dir1)
24195
24196         (( $stripe_count == $MDSCOUNT )) || error "wrong stripe count"
24197
24198         local max_count=$((MDSCOUNT - 1))
24199         local mdts=$(comma_list $(mdts_nodes))
24200
24201         do_nodes $mdts $LCTL set_param lod.*.max_mdt_stripecount=$max_count
24202         stack_trap "do_nodes $mdts $LCTL set_param lod.*.max_mdt_stripecount=0"
24203
24204         mkdir $dir2
24205         stripe_count=$($LFS getdirstripe -c $dir2)
24206
24207         (( $stripe_count == $max_count )) || error "wrong stripe count"
24208 }
24209 run_test 300t "test max_mdt_stripecount"
24210
24211 prepare_remote_file() {
24212         mkdir $DIR/$tdir/src_dir ||
24213                 error "create remote source failed"
24214
24215         cp /etc/hosts $DIR/$tdir/src_dir/a ||
24216                  error "cp to remote source failed"
24217         touch $DIR/$tdir/src_dir/a
24218
24219         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
24220                 error "create remote target dir failed"
24221
24222         touch $DIR/$tdir/tgt_dir/b
24223
24224         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
24225                 error "rename dir cross MDT failed!"
24226
24227         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
24228                 error "src_child still exists after rename"
24229
24230         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
24231                 error "missing file(a) after rename"
24232
24233         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
24234                 error "diff after rename"
24235 }
24236
24237 test_310a() {
24238         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 4 MDTs"
24239         [ $PARALLEL == "yes" ] && skip "skip parallel run"
24240
24241         local remote_file=$DIR/$tdir/tgt_dir/b
24242
24243         mkdir -p $DIR/$tdir
24244
24245         prepare_remote_file || error "prepare remote file failed"
24246
24247         #open-unlink file
24248         $OPENUNLINK $remote_file $remote_file ||
24249                 error "openunlink $remote_file failed"
24250         $CHECKSTAT -a $remote_file || error "$remote_file exists"
24251 }
24252 run_test 310a "open unlink remote file"
24253
24254 test_310b() {
24255         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 4 MDTs"
24256         [ $PARALLEL == "yes" ] && skip "skip parallel run"
24257
24258         local remote_file=$DIR/$tdir/tgt_dir/b
24259
24260         mkdir -p $DIR/$tdir
24261
24262         prepare_remote_file || error "prepare remote file failed"
24263
24264         ln $remote_file $DIR/$tfile || error "link failed for remote file"
24265         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
24266         $CHECKSTAT -t file $remote_file || error "check file failed"
24267 }
24268 run_test 310b "unlink remote file with multiple links while open"
24269
24270 test_310c() {
24271         [ $PARALLEL == "yes" ] && skip "skip parallel run"
24272         [[ $MDSCOUNT -lt 4 ]] && skip_env "needs >= 4 MDTs"
24273
24274         local remote_file=$DIR/$tdir/tgt_dir/b
24275
24276         mkdir -p $DIR/$tdir
24277
24278         prepare_remote_file || error "prepare remote file failed"
24279
24280         ln $remote_file $DIR/$tfile || error "link failed for remote file"
24281         multiop_bg_pause $remote_file O_uc ||
24282                         error "mulitop failed for remote file"
24283         MULTIPID=$!
24284         $MULTIOP $DIR/$tfile Ouc
24285         kill -USR1 $MULTIPID
24286         wait $MULTIPID
24287 }
24288 run_test 310c "open-unlink remote file with multiple links"
24289
24290 #LU-4825
24291 test_311() {
24292         [ $PARALLEL == "yes" ] && skip "skip parallel run"
24293         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
24294         [ $MDS1_VERSION -lt $(version_code 2.8.54) ] &&
24295                 skip "lustre < 2.8.54 does not contain LU-4825 fix"
24296         remote_mds_nodsh && skip "remote MDS with nodsh"
24297
24298         local old_iused=$($LFS df -i | awk '/OST0000/ { print $3; exit; }')
24299         local mdts=$(comma_list $(mdts_nodes))
24300
24301         mkdir -p $DIR/$tdir
24302         $LFS setstripe -i 0 -c 1 $DIR/$tdir
24303         createmany -o $DIR/$tdir/$tfile. 1000
24304
24305         # statfs data is not real time, let's just calculate it
24306         old_iused=$((old_iused + 1000))
24307
24308         local count=$(do_facet $SINGLEMDS "$LCTL get_param -n \
24309                         osp.*OST0000*MDT0000.create_count")
24310         local max_count=$(do_facet $SINGLEMDS "$LCTL get_param -n \
24311                                 osp.*OST0000*MDT0000.max_create_count")
24312         do_nodes $mdts "$LCTL set_param -n osp.*OST0000*.max_create_count=0"
24313
24314         $LFS setstripe -i 0 $DIR/$tdir/$tfile || error "setstripe failed"
24315         local index=$($LFS getstripe -i $DIR/$tdir/$tfile)
24316         [ $index -ne 0 ] || error "$tfile stripe index is 0"
24317
24318         unlinkmany $DIR/$tdir/$tfile. 1000
24319
24320         do_nodes $mdts "$LCTL set_param -n \
24321                         osp.*OST0000*.max_create_count=$max_count"
24322         [ $MDS1_VERSION -lt $(version_code 2.12.51) ] &&
24323                 do_nodes $mdts "$LCTL set_param -n \
24324                                 osp.*OST0000*.create_count=$count"
24325         do_nodes $mdts "$LCTL get_param osp.*OST0000*.create_count" |
24326                         grep "=0" && error "create_count is zero"
24327
24328         local new_iused
24329         for i in $(seq 120); do
24330                 new_iused=$($LFS df -i | awk '/OST0000/ { print $3; exit; }')
24331                 # system may be too busy to destroy all objs in time, use
24332                 # a somewhat small value to not fail autotest
24333                 [ $((old_iused - new_iused)) -gt 400 ] && break
24334                 sleep 1
24335         done
24336
24337         echo "waited $i sec, old Iused $old_iused, new Iused $new_iused"
24338         [ $((old_iused - new_iused)) -gt 400 ] ||
24339                 error "objs not destroyed after unlink"
24340 }
24341 run_test 311 "disable OSP precreate, and unlink should destroy objs"
24342
24343 zfs_oid_to_objid()
24344 {
24345         local ost=$1
24346         local objid=$2
24347
24348         local vdevdir=$(dirname $(facet_vdevice $ost))
24349         local cmd="$ZDB -e -p $vdevdir -ddddd $(facet_device $ost)"
24350         local zfs_zapid=$(do_facet $ost $cmd |
24351                           grep -w "/O/0/d$((objid%32))" -C 5 |
24352                           awk '/Object/{getline; print $1}')
24353         local zfs_objid=$(do_facet $ost $cmd $zfs_zapid |
24354                           awk "/$objid = /"'{printf $3}')
24355
24356         echo $zfs_objid
24357 }
24358
24359 zfs_object_blksz() {
24360         local ost=$1
24361         local objid=$2
24362
24363         local vdevdir=$(dirname $(facet_vdevice $ost))
24364         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
24365         local blksz=$(do_facet $ost $cmd $objid |
24366                       awk '/dblk/{getline; printf $4}')
24367
24368         case "${blksz: -1}" in
24369                 k|K) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024)) ;;
24370                 m|M) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024*1024)) ;;
24371                 *) ;;
24372         esac
24373
24374         echo $blksz
24375 }
24376
24377 test_312() { # LU-4856
24378         remote_ost_nodsh && skip "remote OST with nodsh"
24379         [ "$ost1_FSTYPE" = "zfs" ] ||
24380                 skip_env "the test only applies to zfs"
24381
24382         local max_blksz=$(do_facet ost1 \
24383                           $ZFS get -p recordsize $(facet_device ost1) |
24384                           awk '!/VALUE/{print $3}')
24385
24386         # to make life a little bit easier
24387         $LFS mkdir -c 1 -i 0 $DIR/$tdir
24388         $LFS setstripe -c 1 -i 0 $DIR/$tdir
24389
24390         local tf=$DIR/$tdir/$tfile
24391         touch $tf
24392         local oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
24393
24394         # Get ZFS object id
24395         local zfs_objid=$(zfs_oid_to_objid ost1 $oid)
24396         # block size change by sequential overwrite
24397         local bs
24398
24399         for ((bs=$PAGE_SIZE; bs <= max_blksz; bs *= 4)) ; do
24400                 dd if=/dev/zero of=$tf bs=$bs count=1 oflag=sync conv=notrunc
24401
24402                 local blksz=$(zfs_object_blksz ost1 $zfs_objid)
24403                 [ $blksz -eq $bs ] || error "blksz error: $blksz, expected: $bs"
24404         done
24405         rm -f $tf
24406
24407         # block size change by sequential append write
24408         dd if=/dev/zero of=$tf bs=$PAGE_SIZE count=1 oflag=sync conv=notrunc
24409         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
24410         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
24411         local count
24412
24413         for ((count = 1; count < $((max_blksz / PAGE_SIZE)); count *= 2)); do
24414                 dd if=/dev/zero of=$tf bs=$PAGE_SIZE count=$count seek=$count \
24415                         oflag=sync conv=notrunc
24416
24417                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
24418                 [ $blksz -eq $((2 * count * PAGE_SIZE)) ] ||
24419                         error "blksz error, actual $blksz, " \
24420                                 "expected: 2 * $count * $PAGE_SIZE"
24421         done
24422         rm -f $tf
24423
24424         # random write
24425         touch $tf
24426         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
24427         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
24428
24429         dd if=/dev/zero of=$tf bs=1K count=1 oflag=sync conv=notrunc
24430         blksz=$(zfs_object_blksz ost1 $zfs_objid)
24431         [ $blksz -eq $PAGE_SIZE ] ||
24432                 error "blksz error: $blksz, expected: $PAGE_SIZE"
24433
24434         dd if=/dev/zero of=$tf bs=64K count=1 oflag=sync conv=notrunc seek=128
24435         blksz=$(zfs_object_blksz ost1 $zfs_objid)
24436         [ $blksz -eq 65536 ] || error "blksz error: $blksz, expected: 64k"
24437
24438         dd if=/dev/zero of=$tf bs=1M count=1 oflag=sync conv=notrunc
24439         blksz=$(zfs_object_blksz ost1 $zfs_objid)
24440         [ $blksz -eq 65536 ] || error "rewrite error: $blksz, expected: 64k"
24441 }
24442 run_test 312 "make sure ZFS adjusts its block size by write pattern"
24443
24444 test_313() {
24445         remote_ost_nodsh && skip "remote OST with nodsh"
24446
24447         local file=$DIR/$tfile
24448
24449         rm -f $file
24450         $LFS setstripe -c 1 -i 0 $file || error "setstripe failed"
24451
24452         # define OBD_FAIL_TGT_RCVD_EIO           0x720
24453         do_facet ost1 "$LCTL set_param fail_loc=0x720"
24454         dd if=/dev/zero of=$file bs=$PAGE_SIZE oflag=direct count=1 &&
24455                 error "write should failed"
24456         do_facet ost1 "$LCTL set_param fail_loc=0"
24457         rm -f $file
24458 }
24459 run_test 313 "io should fail after last_rcvd update fail"
24460
24461 test_314() {
24462         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
24463
24464         $LFS setstripe -c 2 -i 0 $DIR/$tfile || error "setstripe failed"
24465         do_facet ost1 "$LCTL set_param fail_loc=0x720"
24466         rm -f $DIR/$tfile
24467         wait_delete_completed
24468         do_facet ost1 "$LCTL set_param fail_loc=0"
24469 }
24470 run_test 314 "OSP shouldn't fail after last_rcvd update failure"
24471
24472 test_315() { # LU-618
24473         [ -f /proc/$$/io ] || skip_env "no IO accounting in kernel"
24474
24475         local file=$DIR/$tfile
24476         rm -f $file
24477
24478         $MULTIOP $file oO_CREAT:O_DIRECT:O_RDWR:w4063232c ||
24479                 error "multiop file write failed"
24480         $MULTIOP $file oO_RDONLY:r4063232_c &
24481         PID=$!
24482
24483         sleep 2
24484
24485         local rbytes=$(awk '/read_bytes/ { print $2 }' /proc/$PID/io)
24486         kill -USR1 $PID
24487
24488         [ $rbytes -gt 4000000 ] || error "read is not accounted ($rbytes)"
24489         rm -f $file
24490 }
24491 run_test 315 "read should be accounted"
24492
24493 test_316() {
24494         (( $MDSCOUNT >= 2 )) || skip "needs >= 2 MDTs"
24495         large_xattr_enabled || skip "ea_inode feature disabled"
24496
24497         mkdir_on_mdt0 $DIR/$tdir || error "mkdir $tdir failed"
24498         mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
24499         chown nobody $DIR/$tdir/d || error "chown $tdir/d failed"
24500         touch $DIR/$tdir/d/$tfile || error "touch $tdir/d/$tfile failed"
24501
24502         $LFS migrate -m1 $DIR/$tdir/d || error "lfs migrate -m1 failed"
24503 }
24504 run_test 316 "lfs migrate of file with large_xattr enabled"
24505
24506 test_317() {
24507         [ $MDS1_VERSION -lt $(version_code 2.11.53) ] &&
24508                 skip "Need MDS version at least 2.11.53"
24509         if [ "$ost1_FSTYPE" == "zfs" ]; then
24510                 skip "LU-10370: no implementation for ZFS"
24511         fi
24512
24513         local trunc_sz
24514         local grant_blk_size
24515
24516         grant_blk_size=$($LCTL get_param osc.$FSNAME*.import |
24517                         awk '/grant_block_size:/ { print $2; exit; }')
24518         #
24519         # Create File of size 5M. Truncate it to below size's and verify
24520         # blocks count.
24521         #
24522         dd if=/dev/zero of=$DIR/$tfile bs=5M count=1 conv=fsync ||
24523                 error "Create file $DIR/$tfile failed"
24524         stack_trap "rm -f $DIR/$tfile" EXIT
24525
24526         for trunc_sz in 2097152 4097 4000 509 0; do
24527                 $TRUNCATE $DIR/$tfile $trunc_sz ||
24528                         error "truncate $tfile to $trunc_sz failed"
24529                 local sz=$(stat --format=%s $DIR/$tfile)
24530                 local blk=$(stat --format=%b $DIR/$tfile)
24531                 local trunc_blk=$((((trunc_sz + (grant_blk_size - 1) ) /
24532                                      grant_blk_size) * 8))
24533
24534                 if [[ $blk -ne $trunc_blk ]]; then
24535                         $(which stat) $DIR/$tfile
24536                         error "Expected Block $trunc_blk got $blk for $tfile"
24537                 fi
24538
24539                 $CHECKSTAT -s $trunc_sz $DIR/$tfile ||
24540                         error "Expected Size $trunc_sz got $sz for $tfile"
24541         done
24542
24543         #
24544         # sparse file test
24545         # Create file with a hole and write actual 65536 bytes which aligned
24546         # with 4K and 64K PAGE_SIZE. Block count must be 128.
24547         #
24548         local bs=65536
24549         dd if=/dev/zero of=$DIR/$tfile bs=$bs count=1 seek=5 conv=fsync ||
24550                 error "Create file : $DIR/$tfile"
24551
24552         #
24553         # Truncate to size $trunc_sz bytes. Strip tail blocks and leave only 8
24554         # blocks. The block count must drop to 8.
24555         #
24556         trunc_sz=$(($(stat --format=%s $DIR/$tfile) -
24557                 ((bs - grant_blk_size) + 1)))
24558         $TRUNCATE $DIR/$tfile $trunc_sz ||
24559                 error "truncate $tfile to $trunc_sz failed"
24560
24561         local trunc_bsz=$((grant_blk_size / $(stat --format=%B $DIR/$tfile)))
24562         sz=$(stat --format=%s $DIR/$tfile)
24563         blk=$(stat --format=%b $DIR/$tfile)
24564
24565         if [[ $blk -ne $trunc_bsz ]]; then
24566                 $(which stat) $DIR/$tfile
24567                 error "Expected Block $trunc_bsz got $blk for $tfile"
24568         fi
24569
24570         $CHECKSTAT -s $trunc_sz $DIR/$tfile ||
24571                 error "Expected Size $trunc_sz got $sz for $tfile"
24572 }
24573 run_test 317 "Verify blocks get correctly update after truncate"
24574
24575 test_318() {
24576         local llite_name="llite.$($LFS getname $MOUNT | awk '{print $1}')"
24577         local old_max_active=$($LCTL get_param -n \
24578                             ${llite_name}.max_read_ahead_async_active \
24579                             2>/dev/null)
24580
24581         $LCTL set_param llite.*.max_read_ahead_async_active=256
24582         local max_active=$($LCTL get_param -n \
24583                            ${llite_name}.max_read_ahead_async_active \
24584                            2>/dev/null)
24585         [ $max_active -ne 256 ] && error "expected 256 but got $max_active"
24586
24587         $LCTL set_param llite.*.max_read_ahead_async_active=0 ||
24588                 error "set max_read_ahead_async_active should succeed"
24589
24590         $LCTL set_param llite.*.max_read_ahead_async_active=512
24591         max_active=$($LCTL get_param -n \
24592                      ${llite_name}.max_read_ahead_async_active 2>/dev/null)
24593         [ $max_active -eq 512 ] || error "expected 512 but got $max_active"
24594
24595         # restore @max_active
24596         [ $old_max_active -ne 0 ] && $LCTL set_param \
24597                 llite.*.max_read_ahead_async_active=$old_max_active
24598
24599         local old_threshold=$($LCTL get_param -n \
24600                 ${llite_name}.read_ahead_async_file_threshold_mb 2>/dev/null)
24601         local max_per_file_mb=$($LCTL get_param -n \
24602                 ${llite_name}.max_read_ahead_per_file_mb 2>/dev/null)
24603
24604         local invalid=$(($max_per_file_mb + 1))
24605         $LCTL set_param \
24606                 llite.*.read_ahead_async_file_threshold_mb=$invalid\
24607                         && error "set $invalid should fail"
24608
24609         local valid=$(($invalid - 1))
24610         $LCTL set_param \
24611                 llite.*.read_ahead_async_file_threshold_mb=$valid ||
24612                         error "set $valid should succeed"
24613         local threshold=$($LCTL get_param -n \
24614                 ${llite_name}.read_ahead_async_file_threshold_mb 2>/dev/null)
24615         [ $threshold -eq $valid ] || error \
24616                 "expect threshold $valid got $threshold"
24617         $LCTL set_param \
24618                 llite.*.read_ahead_async_file_threshold_mb=$old_threshold
24619 }
24620 run_test 318 "Verify async readahead tunables"
24621
24622 test_319() {
24623         (( $MDSCOUNT >= 2 )) || skip "needs >= 2 MDTs"
24624
24625         local before=$(date +%s)
24626         local evict
24627         local mdir=$DIR/$tdir
24628         local file=$mdir/xxx
24629
24630         $LFS mkdir -i0 $mdir || error "mkdir $mdir fails"
24631         touch $file
24632
24633 #define OBD_FAIL_LDLM_LOCAL_CANCEL_PAUSE 0x32c
24634         $LCTL set_param fail_val=5 fail_loc=0x8000032c
24635         $LFS migrate -m1 $mdir &
24636
24637         sleep 1
24638         dd if=$file of=/dev/null
24639         wait
24640         evict=$($LCTL get_param mdc.$FSNAME-MDT*.state |
24641           awk -F"[ [,]" '/EVICTED ]$/ { if (mx<$5) {mx=$5;} } END { print mx }')
24642
24643         [ -z "$evict" ] || [[ $evict -le $before ]] || error "eviction happened"
24644 }
24645 run_test 319 "lost lease lock on migrate error"
24646
24647 test_398a() { # LU-4198
24648         local ost1_imp=$(get_osc_import_name client ost1)
24649         local imp_name=$($LCTL list_param osc.$ost1_imp | head -n1 |
24650                          cut -d'.' -f2)
24651
24652         $LFS setstripe -c 1 -i 0 $DIR/$tfile
24653         $LCTL set_param ldlm.namespaces.*.lru_size=clear
24654
24655         # Disabled: DIO does not push out buffered I/O pages, see LU-12587
24656         # request a new lock on client
24657         #dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
24658
24659         #dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=direct conv=notrunc
24660         #local lock_count=$($LCTL get_param -n \
24661         #                  ldlm.namespaces.$imp_name.lru_size)
24662         #[[ $lock_count -eq 0 ]] || error "lock should be cancelled by direct IO"
24663
24664         $LCTL set_param ldlm.namespaces.*-OST0000-osc-ffff*.lru_size=clear
24665
24666         # no lock cached, should use lockless DIO and not enqueue new lock
24667         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=direct \
24668                 conv=notrunc ||
24669                 error "dio write failed"
24670         lock_count=$($LCTL get_param -n \
24671                      ldlm.namespaces.$imp_name.lru_size)
24672         [[ $lock_count -eq 0 ]] || error "no lock should be held by direct IO"
24673
24674         $LCTL set_param ldlm.namespaces.*-OST0000-osc-ffff*.lru_size=clear
24675
24676         # no lock cached, should use locked DIO append
24677         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=direct oflag=append \
24678                 conv=notrunc || error "DIO append failed"
24679         lock_count=$($LCTL get_param -n \
24680                      ldlm.namespaces.*-OST0000-osc-ffff*.lru_size)
24681         [[ $lock_count -ne 0 ]] || error "lock still must be held by DIO append"
24682 }
24683 run_test 398a "direct IO should cancel lock otherwise lockless"
24684
24685 test_398b() { # LU-4198
24686         which fio || skip_env "no fio installed"
24687         $LFS setstripe -c -1 -S 1M $DIR/$tfile
24688
24689         local size=48
24690         dd if=/dev/zero of=$DIR/$tfile bs=1M count=$size
24691
24692         local njobs=4
24693         # Single page, multiple pages, stripe size, 4*stripe size
24694         for bsize in $(( $PAGE_SIZE )) $(( 4*$PAGE_SIZE )) 1048576 4194304; do
24695                 echo "mix direct rw ${bsize} by fio with $njobs jobs..."
24696                 fio --name=rand-rw --rw=randrw --bs=$bsize --direct=1 \
24697                         --numjobs=$njobs --fallocate=none \
24698                         --iodepth=16 --allow_file_create=0 --size=$((size/njobs))M \
24699                         --filename=$DIR/$tfile &
24700                 bg_pid=$!
24701
24702                 echo "mix buffer rw ${bsize} by fio with $njobs jobs..."
24703                 fio --name=rand-rw --rw=randrw --bs=$bsize \
24704                         --numjobs=$njobs --fallocate=none \
24705                         --iodepth=16 --allow_file_create=0 --size=$((size/njobs))M \
24706                         --filename=$DIR/$tfile || true
24707                 wait $bg_pid
24708         done
24709
24710         evict=$(do_facet client $LCTL get_param \
24711                 osc.$FSNAME-OST*-osc-*/state |
24712             awk -F"[ [,]" '/EVICTED ]$/ { if (t<$5) {t=$5;} } END { print t }')
24713
24714         [ -z "$evict" ] || [[ $evict -le $before ]] ||
24715                 (do_facet client $LCTL get_param \
24716                         osc.$FSNAME-OST*-osc-*/state;
24717                     error "eviction happened: $evict before:$before")
24718
24719         rm -f $DIR/$tfile
24720 }
24721 run_test 398b "DIO and buffer IO race"
24722
24723 test_398c() { # LU-4198
24724         local ost1_imp=$(get_osc_import_name client ost1)
24725         local imp_name=$($LCTL list_param osc.$ost1_imp | head -n1 |
24726                          cut -d'.' -f2)
24727
24728         which fio || skip_env "no fio installed"
24729
24730         saved_debug=$($LCTL get_param -n debug)
24731         $LCTL set_param debug=0
24732
24733         local size=$(lctl get_param -n osc.$FSNAME-OST0000*.kbytesavail | head -1)
24734         ((size /= 1024)) # by megabytes
24735         ((size /= 2)) # write half of the OST at most
24736         [ $size -gt 40 ] && size=40 #reduce test time anyway
24737
24738         $LFS setstripe -c 1 $DIR/$tfile
24739
24740         # it seems like ldiskfs reserves more space than necessary if the
24741         # writing blocks are not mapped, so it extends the file firstly
24742         dd if=/dev/zero of=$DIR/$tfile bs=1M count=$size && sync
24743         cancel_lru_locks osc
24744
24745         # clear and verify rpc_stats later
24746         $LCTL set_param osc.${FSNAME}-OST0000-osc-ffff*.rpc_stats=clear
24747
24748         local njobs=4
24749         echo "writing ${size}M to OST0 by fio with $njobs jobs..."
24750         fio --name=rand-write --rw=randwrite --bs=$PAGE_SIZE --direct=1 \
24751                 --numjobs=$njobs --fallocate=none --ioengine=libaio \
24752                 --iodepth=16 --allow_file_create=0 --size=$((size/njobs))M \
24753                 --filename=$DIR/$tfile
24754         [ $? -eq 0 ] || error "fio write error"
24755
24756         [ $($LCTL get_param -n ldlm.namespaces.$imp_name.lock_count) -eq 0 ] ||
24757                 error "Locks were requested while doing AIO"
24758
24759         # get the percentage of 1-page I/O
24760         pct=$($LCTL get_param osc.${imp_name}.rpc_stats |
24761                 grep -A 1 'pages per rpc' | grep -v 'pages per rpc' |
24762                 awk '{print $7}')
24763         [ $pct -le 50 ] || error "$pct% of I/O are 1-page"
24764
24765         echo "mix rw ${size}M to OST0 by fio with $njobs jobs..."
24766         fio --name=rand-rw --rw=randrw --bs=$PAGE_SIZE --direct=1 \
24767                 --numjobs=$njobs --fallocate=none --ioengine=libaio \
24768                 --iodepth=16 --allow_file_create=0 --size=$((size/njobs))M \
24769                 --filename=$DIR/$tfile
24770         [ $? -eq 0 ] || error "fio mixed read write error"
24771
24772         echo "AIO with large block size ${size}M"
24773         fio --name=rand-rw --rw=randrw --bs=${size}M --direct=1 \
24774                 --numjobs=1 --fallocate=none --ioengine=libaio \
24775                 --iodepth=16 --allow_file_create=0 --size=${size}M \
24776                 --filename=$DIR/$tfile
24777         [ $? -eq 0 ] || error "fio large block size failed"
24778
24779         rm -f $DIR/$tfile
24780         $LCTL set_param debug="$saved_debug"
24781 }
24782 run_test 398c "run fio to test AIO"
24783
24784 test_398d() { #  LU-13846
24785         which aiocp || skip_env "no aiocp installed"
24786         local aio_file=$DIR/$tfile.aio
24787
24788         $LFS setstripe -c -1 -S 1M $DIR/$tfile $aio_file
24789
24790         dd if=/dev/urandom of=$DIR/$tfile bs=1M count=64
24791         aiocp -a $PAGE_SIZE -b 64M -s 64M -f O_DIRECT $DIR/$tfile $aio_file
24792         stack_trap "rm -f $DIR/$tfile $aio_file"
24793
24794         diff $DIR/$tfile $aio_file || error "file diff after aiocp"
24795
24796         # make sure we don't crash and fail properly
24797         aiocp -a 512 -b 64M -s 64M -f O_DIRECT $DIR/$tfile $aio_file &&
24798                 error "aio not aligned with PAGE SIZE should fail"
24799
24800         rm -f $DIR/$tfile $aio_file
24801 }
24802 run_test 398d "run aiocp to verify block size > stripe size"
24803
24804 test_398e() {
24805         dd if=/dev/zero of=$DIR/$tfile bs=1234 count=1
24806         touch $DIR/$tfile.new
24807         dd if=$DIR/$tfile of=$DIR/$tfile.new bs=1M count=1 oflag=direct
24808 }
24809 run_test 398e "O_Direct open cleared by fcntl doesn't cause hang"
24810
24811 test_398f() { #  LU-14687
24812         which aiocp || skip_env "no aiocp installed"
24813         local aio_file=$DIR/$tfile.aio
24814
24815         $LFS setstripe -c -1 -S 1M $DIR/$tfile $aio_file
24816
24817         dd if=/dev/zero of=$DIR/$tfile bs=1M count=64
24818         stack_trap "rm -f $DIR/$tfile $aio_file"
24819
24820         #define OBD_FAIL_LLITE_PAGE_ALLOC 0x1418
24821         $LCTL set_param fail_loc=0x1418
24822         # make sure we don't crash and fail properly
24823         aiocp -b 64M -s 64M -f O_DIRECT $DIR/$tfile $aio_file &&
24824                 error "aio with page allocation failure succeeded"
24825         $LCTL set_param fail_loc=0
24826         diff $DIR/$tfile $aio_file
24827         [[ $? != 0 ]] || error "no diff after failed aiocp"
24828 }
24829 run_test 398f "verify aio handles ll_direct_rw_pages errors correctly"
24830
24831 # NB: To get the parallel DIO behavior in LU-13798, there must be > 1
24832 # stripe and i/o size must be > stripe size
24833 # Old style synchronous DIO waits after submitting each chunk, resulting in a
24834 # single RPC in flight.  This test shows async DIO submission is working by
24835 # showing multiple RPCs in flight.
24836 test_398g() { #  LU-13798
24837         $LFS setstripe -o 0,0 -S 1M $DIR/$tfile
24838
24839         # We need to do some i/o first to acquire enough grant to put our RPCs
24840         # in flight; otherwise a new connection may not have enough grant
24841         # available
24842         dd if=/dev/urandom of=$DIR/$tfile bs=8M count=1 oflag=direct ||
24843                 error "parallel dio failed"
24844         stack_trap "rm -f $DIR/$tfile"
24845
24846         # Reduce RPC size to 1M to avoid combination in to larger RPCs
24847         local pages_per_rpc=$($LCTL get_param osc.*-OST0000-*.max_pages_per_rpc)
24848         $LCTL set_param osc.*-OST0000-*.max_pages_per_rpc=1M
24849         stack_trap "$LCTL set_param -n $pages_per_rpc"
24850
24851         # Recreate file so it's empty
24852         rm -f $DIR/$tfile
24853         $LFS setstripe -o 0,0 -S 1M $DIR/$tfile
24854         #Pause rpc completion to guarantee we see multiple rpcs in flight
24855         #define OBD_FAIL_OST_BRW_PAUSE_BULK
24856         do_facet ost1 $LCTL set_param fail_loc=0x214 fail_val=2
24857         stack_trap "do_facet ost1 $LCTL set_param fail_loc=0"
24858
24859         # Clear rpc stats
24860         $LCTL set_param osc.*.rpc_stats=c
24861
24862         dd if=/dev/urandom of=$DIR/$tfile bs=8M count=1 oflag=direct ||
24863                 error "parallel dio failed"
24864         stack_trap "rm -f $DIR/$tfile"
24865
24866         $LCTL get_param osc.*-OST0000-*.rpc_stats
24867         pct=$($LCTL get_param osc.*-OST0000-*.rpc_stats |
24868                 grep -A 8 'rpcs in flight' | grep -v 'rpcs in flight' |
24869                 grep "8:" | awk '{print $8}')
24870         # We look at the "8 rpcs in flight" field, and verify A) it is present
24871         # and B) it includes all RPCs.  This proves we had 8 RPCs in flight,
24872         # as expected for an 8M DIO to a file with 1M stripes.
24873         [ $pct -eq 100 ] || error "we should see 8 RPCs in flight"
24874
24875         # Verify turning off parallel dio works as expected
24876         # Clear rpc stats
24877         $LCTL set_param osc.*.rpc_stats=c
24878         $LCTL set_param llite.*.parallel_dio=0
24879         stack_trap '$LCTL set_param llite.*.parallel_dio=1'
24880
24881         dd if=/dev/urandom of=$DIR/$tfile bs=8M count=1 oflag=direct ||
24882                 error "dio with parallel dio disabled failed"
24883
24884         # Ideally, we would see only one RPC in flight here, but there is an
24885         # unavoidable race between i/o completion and RPC in flight counting,
24886         # so while only 1 i/o is in flight at a time, the RPC in flight counter
24887         # will sometimes exceed 1 (3 or 4 is not rare on VM testing).
24888         # So instead we just verify it's always < 8.
24889         $LCTL get_param osc.*-OST0000-*.rpc_stats
24890         ret=$($LCTL get_param osc.*-OST0000-*.rpc_stats |
24891                 grep -A 8 'rpcs in flight' | grep -v 'rpcs in flight' |
24892                 grep '^$' -B1 | grep . | awk '{print $1}')
24893         [ $ret != "8:" ] ||
24894                 error "we should see fewer than 8 RPCs in flight (saw $ret)"
24895 }
24896 run_test 398g "verify parallel dio async RPC submission"
24897
24898 test_398h() { #  LU-13798
24899         local dio_file=$DIR/$tfile.dio
24900
24901         $LFS setstripe -C 2 -S 1M $DIR/$tfile $dio_file
24902
24903         dd if=/dev/urandom of=$DIR/$tfile bs=8M count=8 oflag=direct
24904         stack_trap "rm -f $DIR/$tfile $dio_file"
24905
24906         dd if=$DIR/$tfile of=$dio_file bs=8M count=8 iflag=direct oflag=direct ||
24907                 error "parallel dio failed"
24908         diff $DIR/$tfile $dio_file
24909         [[ $? == 0 ]] || error "file diff after aiocp"
24910 }
24911 run_test 398h "verify correctness of read & write with i/o size >> stripe size"
24912
24913 test_398i() { #  LU-13798
24914         local dio_file=$DIR/$tfile.dio
24915
24916         $LFS setstripe -C 2 -S 1M $DIR/$tfile $dio_file
24917
24918         dd if=/dev/urandom of=$DIR/$tfile bs=8M count=8 oflag=direct
24919         stack_trap "rm -f $DIR/$tfile $dio_file"
24920
24921         #define OBD_FAIL_LLITE_PAGE_ALLOC 0x1418
24922         $LCTL set_param fail_loc=0x1418
24923         # make sure we don't crash and fail properly
24924         dd if=$DIR/$tfile of=$dio_file bs=8M count=8 iflag=direct oflag=direct &&
24925                 error "parallel dio page allocation failure succeeded"
24926         diff $DIR/$tfile $dio_file
24927         [[ $? != 0 ]] || error "no diff after failed aiocp"
24928 }
24929 run_test 398i "verify parallel dio handles ll_direct_rw_pages errors correctly"
24930
24931 test_398j() { #  LU-13798
24932         # Stripe size > RPC size but less than i/o size tests split across
24933         # stripes and RPCs for individual i/o op
24934         $LFS setstripe -o 0,0 -S 4M $DIR/$tfile $DIR/$tfile.2
24935
24936         # Reduce RPC size to 1M to guarantee split to multiple RPCs per stripe
24937         local pages_per_rpc=$($LCTL get_param osc.*-OST0000-*.max_pages_per_rpc)
24938         $LCTL set_param osc.*-OST0000-*.max_pages_per_rpc=1M
24939         stack_trap "$LCTL set_param -n $pages_per_rpc"
24940
24941         dd if=/dev/urandom of=$DIR/$tfile bs=8M count=8 oflag=direct ||
24942                 error "parallel dio write failed"
24943         stack_trap "rm -f $DIR/$tfile $DIR/$tfile.2"
24944
24945         dd if=$DIR/$tfile of=$DIR/$tfile.2 bs=8M count=8 iflag=direct ||
24946                 error "parallel dio read failed"
24947         diff $DIR/$tfile $DIR/$tfile.2
24948         [[ $? == 0 ]] || error "file diff after parallel dio read"
24949 }
24950 run_test 398j "test parallel dio where stripe size > rpc_size"
24951
24952 test_398k() { #  LU-13798
24953         wait_delete_completed
24954         wait_mds_ost_sync
24955
24956         # 4 stripe file; we will cause out of space on OST0
24957         $LFS setstripe -o 0,1,0,1 -S 1M $DIR/$tfile
24958
24959         # Fill OST0 (if it's not too large)
24960         ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
24961                    head -n1)
24962         if [[ $ORIGFREE -gt $MAXFREE ]]; then
24963                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
24964         fi
24965         $LFS setstripe -i 0 -c 1 $DIR/$tfile.1
24966         dd if=/dev/zero of=$DIR/$tfile.1 bs=1024 count=$MAXFREE &&
24967                 error "dd should fill OST0"
24968         stack_trap "rm -f $DIR/$tfile.1"
24969
24970         dd if=/dev/urandom of=$DIR/$tfile bs=8M count=8 oflag=direct
24971         err=$?
24972
24973         ls -la $DIR/$tfile
24974         $CHECKSTAT -t file -s 0 $DIR/$tfile ||
24975                 error "file is not 0 bytes in size"
24976
24977         # dd above should not succeed, but don't error until here so we can
24978         # get debug info above
24979         [[ $err != 0 ]] ||
24980                 error "parallel dio write with enospc succeeded"
24981         stack_trap "rm -f $DIR/$tfile"
24982 }
24983 run_test 398k "test enospc on first stripe"
24984
24985 test_398l() { #  LU-13798
24986         wait_delete_completed
24987         wait_mds_ost_sync
24988
24989         # 4 stripe file; we will cause out of space on OST0
24990         # Note the 1M stripe size and the > 1M i/o size mean this ENOSPC
24991         # happens on the second i/o chunk we issue
24992         $LFS setstripe -o 1,0,1,0 -S 1M $DIR/$tfile $DIR/$tfile.2
24993
24994         dd if=/dev/urandom of=$DIR/$tfile bs=8M count=2 oflag=direct
24995         stack_trap "rm -f $DIR/$tfile"
24996
24997         # Fill OST0 (if it's not too large)
24998         ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
24999                    head -n1)
25000         if [[ $ORIGFREE -gt $MAXFREE ]]; then
25001                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
25002         fi
25003         $LFS setstripe -i 0 -c 1 $DIR/$tfile.1
25004         dd if=/dev/zero of=$DIR/$tfile.1 bs=1024 count=$MAXFREE &&
25005                 error "dd should fill OST0"
25006         stack_trap "rm -f $DIR/$tfile.1"
25007
25008         dd if=$DIR/$tfile of=$DIR/$tfile.2 bs=8M count=8 oflag=direct
25009         err=$?
25010         stack_trap "rm -f $DIR/$tfile.2"
25011
25012         # Check that short write completed as expected
25013         ls -la $DIR/$tfile.2
25014         $CHECKSTAT -t file -s 1048576 $DIR/$tfile.2 ||
25015                 error "file is not 1M in size"
25016
25017         # dd above should not succeed, but don't error until here so we can
25018         # get debug info above
25019         [[ $err != 0 ]] ||
25020                 error "parallel dio write with enospc succeeded"
25021
25022         # Truncate source file to same length as output file and diff them
25023         $TRUNCATE $DIR/$tfile 1048576
25024         diff $DIR/$tfile $DIR/$tfile.2
25025         [[ $? == 0 ]] || error "data incorrect after short write"
25026 }
25027 run_test 398l "test enospc on intermediate stripe/RPC"
25028
25029 test_398m() { #  LU-13798
25030         $LFS setstripe -o 0,1,0,1 -S 1M $DIR/$tfile
25031
25032         # Set up failure on OST0, the first stripe:
25033         #define OBD_FAIL_OST_BRW_WRITE_BULK     0x20e
25034         #NB: Fail val is ost # + 1, because we cannot use cfs_fail_val = 0
25035         # So this fail_val specifies OST0
25036         do_facet ost1 $LCTL set_param fail_loc=0x20e fail_val=1
25037         stack_trap "do_facet ost1 $LCTL set_param fail_loc=0"
25038
25039         dd if=/dev/urandom of=$DIR/$tfile bs=8M count=8 oflag=direct &&
25040                 error "parallel dio write with failure on first stripe succeeded"
25041         stack_trap "rm -f $DIR/$tfile"
25042         do_facet ost1 $LCTL set_param fail_loc=0 fail_val=0
25043
25044         # Place data in file for read
25045         dd if=/dev/urandom of=$DIR/$tfile bs=8M count=8 oflag=direct ||
25046                 error "parallel dio write failed"
25047
25048         # Fail read on OST0, first stripe
25049         #define OBD_FAIL_OST_BRW_READ_BULK       0x20f
25050         do_facet ost1 $LCTL set_param fail_loc=0x20f fail_val=1
25051         dd if=$DIR/$tfile of=$DIR/$tfile.2 bs=8M count=8 iflag=direct &&
25052                 error "parallel dio read with error on first stripe succeeded"
25053         rm -f $DIR/$tfile.2
25054         do_facet ost1 $LCTL set_param fail_loc=0 fail_val=0
25055
25056         # Switch to testing on OST1, second stripe
25057         # Clear file contents, maintain striping
25058         echo > $DIR/$tfile
25059         # Set up failure on OST1, second stripe:
25060         do_facet ost1 $LCTL set_param fail_loc=0x20e fail_val=2
25061         stack_trap "do_facet ost1 $LCTL set_param fail_loc=0"
25062
25063         dd if=/dev/urandom of=$DIR/$tfile bs=8M count=8 oflag=direct &&
25064                 error "parallel dio write with failure on first stripe succeeded"
25065         stack_trap "rm -f $DIR/$tfile"
25066         do_facet ost1 $LCTL set_param fail_loc=0 fail_val=0
25067
25068         # Place data in file for read
25069         dd if=/dev/urandom of=$DIR/$tfile bs=8M count=8 oflag=direct ||
25070                 error "parallel dio write failed"
25071
25072         # Fail read on OST1, second stripe
25073         #define OBD_FAIL_OST_BRW_READ_BULK       0x20f
25074         do_facet ost2 $LCTL set_param fail_loc=0x20f fail_val=2
25075         dd if=$DIR/$tfile of=$DIR/$tfile.2 bs=8M count=8 iflag=direct &&
25076                 error "parallel dio read with error on first stripe succeeded"
25077         rm -f $DIR/$tfile.2
25078         do_facet ost2 $LCTL set_param fail_loc=0 fail_val=0
25079 }
25080 run_test 398m "test RPC failures with parallel dio"
25081
25082 # Parallel submission of DIO should not cause problems for append, but it's
25083 # important to verify.
25084 test_398n() { #  LU-13798
25085         $LFS setstripe -C 2 -S 1M $DIR/$tfile
25086
25087         dd if=/dev/urandom of=$DIR/$tfile bs=8M count=8 ||
25088                 error "dd to create source file failed"
25089         stack_trap "rm -f $DIR/$tfile"
25090
25091         dd if=$DIR/$tfile of=$DIR/$tfile.1 bs=8M count=8 oflag=direct oflag=append ||
25092                 error "parallel dio write with failure on second stripe succeeded"
25093         stack_trap "rm -f $DIR/$tfile $DIR/$tfile.1"
25094         diff $DIR/$tfile $DIR/$tfile.1
25095         [[ $? == 0 ]] || error "data incorrect after append"
25096
25097 }
25098 run_test 398n "test append with parallel DIO"
25099
25100 test_398o() {
25101         directio rdwr $DIR/$tfile 0 1 1 || error "bad KMS"
25102 }
25103 run_test 398o "right kms with DIO"
25104
25105 test_fake_rw() {
25106         local read_write=$1
25107         if [ "$read_write" = "write" ]; then
25108                 local dd_cmd="dd if=/dev/zero of=$DIR/$tfile"
25109         elif [ "$read_write" = "read" ]; then
25110                 local dd_cmd="dd of=/dev/null if=$DIR/$tfile"
25111         else
25112                 error "argument error"
25113         fi
25114
25115         # turn off debug for performance testing
25116         local saved_debug=$($LCTL get_param -n debug)
25117         $LCTL set_param debug=0
25118
25119         $LFS setstripe -c 1 -i 0 $DIR/$tfile
25120
25121         # get ost1 size - $FSNAME-OST0000
25122         local ost1_avail_size=$($LFS df $DIR | awk /${ost1_svc}/'{ print $4 }')
25123         local blocks=$((ost1_avail_size/2/1024)) # half avail space by megabytes
25124         [ $blocks -gt 1000 ] && blocks=1000 # 1G in maximum
25125
25126         if [ "$read_write" = "read" ]; then
25127                 $TRUNCATE $DIR/$tfile $(expr 1048576 \* $blocks)
25128         fi
25129
25130         local start_time=$(date +%s.%N)
25131         $dd_cmd bs=1M count=$blocks oflag=sync ||
25132                 error "real dd $read_write error"
25133         local duration=$(bc <<< "$(date +%s.%N) - $start_time")
25134
25135         if [ "$read_write" = "write" ]; then
25136                 rm -f $DIR/$tfile
25137         fi
25138
25139         # define OBD_FAIL_OST_FAKE_RW           0x238
25140         do_facet ost1 $LCTL set_param fail_loc=0x238
25141
25142         local start_time=$(date +%s.%N)
25143         $dd_cmd bs=1M count=$blocks oflag=sync ||
25144                 error "fake dd $read_write error"
25145         local duration_fake=$(bc <<< "$(date +%s.%N) - $start_time")
25146
25147         if [ "$read_write" = "write" ]; then
25148                 # verify file size
25149                 cancel_lru_locks osc
25150                 $CHECKSTAT -t file -s $((blocks * 1024 * 1024)) $DIR/$tfile ||
25151                         error "$tfile size not $blocks MB"
25152         fi
25153         do_facet ost1 $LCTL set_param fail_loc=0
25154
25155         echo "fake $read_write $duration_fake vs. normal $read_write" \
25156                 "$duration in seconds"
25157         [ $(bc <<< "$duration_fake < $duration") -eq 1 ] ||
25158                 error_not_in_vm "fake write is slower"
25159
25160         $LCTL set_param -n debug="$saved_debug"
25161         rm -f $DIR/$tfile
25162 }
25163 test_399a() { # LU-7655 for OST fake write
25164         remote_ost_nodsh && skip "remote OST with nodsh"
25165
25166         test_fake_rw write
25167 }
25168 run_test 399a "fake write should not be slower than normal write"
25169
25170 test_399b() { # LU-8726 for OST fake read
25171         remote_ost_nodsh && skip "remote OST with nodsh"
25172         if [ "$ost1_FSTYPE" != "ldiskfs" ]; then
25173                 skip_env "ldiskfs only test"
25174         fi
25175
25176         test_fake_rw read
25177 }
25178 run_test 399b "fake read should not be slower than normal read"
25179
25180 test_400a() { # LU-1606, was conf-sanity test_74
25181         if ! which $CC > /dev/null 2>&1; then
25182                 skip_env "$CC is not installed"
25183         fi
25184
25185         local extra_flags=''
25186         local out=$TMP/$tfile
25187         local prefix=/usr/include/lustre
25188         local prog
25189
25190         # Oleg removes c files in his test rig so test if any c files exist
25191         [ -z "$(ls -A $LUSTRE_TESTS_API_DIR)" ] && \
25192                 skip_env "Needed c test files are missing"
25193
25194         if ! [[ -d $prefix ]]; then
25195                 # Assume we're running in tree and fixup the include path.
25196                 extra_flags+=" -I$LUSTRE/../lnet/include/uapi -I$LUSTRE/include/uapi -I$LUSTRE/include"
25197                 extra_flags+=" -L$LUSTRE/utils/.lib"
25198         fi
25199
25200         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
25201                 $CC -Wall -Werror -std=c99 $extra_flags -o $out $prog -llustreapi ||
25202                         error "client api broken"
25203         done
25204         rm -f $out
25205 }
25206 run_test 400a "Lustre client api program can compile and link"
25207
25208 test_400b() { # LU-1606, LU-5011
25209         local header
25210         local out=$TMP/$tfile
25211         local prefix=/usr/include/linux/lustre
25212
25213         # We use a hard coded prefix so that this test will not fail
25214         # when run in tree. There are headers in lustre/include/lustre/
25215         # that are not packaged (like lustre_idl.h) and have more
25216         # complicated include dependencies (like config.h and lnet/types.h).
25217         # Since this test about correct packaging we just skip them when
25218         # they don't exist (see below) rather than try to fixup cppflags.
25219
25220         if ! which $CC > /dev/null 2>&1; then
25221                 skip_env "$CC is not installed"
25222         fi
25223
25224         for header in $prefix/*.h; do
25225                 if ! [[ -f "$header" ]]; then
25226                         continue
25227                 fi
25228
25229                 if [[ "$(basename $header)" == lustre_ioctl.h ]]; then
25230                         continue # lustre_ioctl.h is internal header
25231                 fi
25232
25233                 $CC -Wall -Werror -std=c99 -include $header -c -x c /dev/null -o $out ||
25234                         error "cannot compile '$header'"
25235         done
25236         rm -f $out
25237 }
25238 run_test 400b "packaged headers can be compiled"
25239
25240 test_401a() { #LU-7437
25241         local printf_arg=$(find -printf 2>&1 | grep "unrecognized:")
25242         [ -n "$printf_arg" ] && skip_env "find does not support -printf"
25243
25244         #count the number of parameters by "list_param -R"
25245         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
25246         #count the number of parameters by listing proc files
25247         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
25248         echo "proc_dirs='$proc_dirs'"
25249         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
25250         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
25251                       sort -u | wc -l)
25252
25253         [ $params -eq $procs ] ||
25254                 error "found $params parameters vs. $procs proc files"
25255
25256         # test the list_param -D option only returns directories
25257         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
25258         #count the number of parameters by listing proc directories
25259         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
25260                 sort -u | wc -l)
25261
25262         [ $params -eq $procs ] ||
25263                 error "found $params parameters vs. $procs proc files"
25264 }
25265 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
25266
25267 test_401b() {
25268         # jobid_var may not allow arbitrary values, so use jobid_name
25269         # if available
25270         if $LCTL list_param jobid_name > /dev/null 2>&1; then
25271                 local testname=jobid_name tmp='testing%p'
25272         else
25273                 local testname=jobid_var tmp=testing
25274         fi
25275
25276         local save=$($LCTL get_param -n $testname)
25277
25278         $LCTL set_param foo=bar $testname=$tmp bar=baz &&
25279                 error "no error returned when setting bad parameters"
25280
25281         local jobid_new=$($LCTL get_param -n foe $testname baz)
25282         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
25283
25284         $LCTL set_param -n fog=bam $testname=$save bat=fog
25285         local jobid_old=$($LCTL get_param -n foe $testname bag)
25286         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
25287 }
25288 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
25289
25290 test_401c() {
25291         # jobid_var may not allow arbitrary values, so use jobid_name
25292         # if available
25293         if $LCTL list_param jobid_name > /dev/null 2>&1; then
25294                 local testname=jobid_name
25295         else
25296                 local testname=jobid_var
25297         fi
25298
25299         local jobid_var_old=$($LCTL get_param -n $testname)
25300         local jobid_var_new
25301
25302         $LCTL set_param $testname= &&
25303                 error "no error returned for 'set_param a='"
25304
25305         jobid_var_new=$($LCTL get_param -n $testname)
25306         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
25307                 error "$testname was changed by setting without value"
25308
25309         $LCTL set_param $testname &&
25310                 error "no error returned for 'set_param a'"
25311
25312         jobid_var_new=$($LCTL get_param -n $testname)
25313         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
25314                 error "$testname was changed by setting without value"
25315 }
25316 run_test 401c "Verify 'lctl set_param' without value fails in either format."
25317
25318 test_401d() {
25319         # jobid_var may not allow arbitrary values, so use jobid_name
25320         # if available
25321         if $LCTL list_param jobid_name > /dev/null 2>&1; then
25322                 local testname=jobid_name new_value='foo=bar%p'
25323         else
25324                 local testname=jobid_var new_valuie=foo=bar
25325         fi
25326
25327         local jobid_var_old=$($LCTL get_param -n $testname)
25328         local jobid_var_new
25329
25330         $LCTL set_param $testname=$new_value ||
25331                 error "'set_param a=b' did not accept a value containing '='"
25332
25333         jobid_var_new=$($LCTL get_param -n $testname)
25334         [[ "$jobid_var_new" == "$new_value" ]] ||
25335                 error "'set_param a=b' failed on a value containing '='"
25336
25337         # Reset the $testname to test the other format
25338         $LCTL set_param $testname=$jobid_var_old
25339         jobid_var_new=$($LCTL get_param -n $testname)
25340         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
25341                 error "failed to reset $testname"
25342
25343         $LCTL set_param $testname $new_value ||
25344                 error "'set_param a b' did not accept a value containing '='"
25345
25346         jobid_var_new=$($LCTL get_param -n $testname)
25347         [[ "$jobid_var_new" == "$new_value" ]] ||
25348                 error "'set_param a b' failed on a value containing '='"
25349
25350         $LCTL set_param $testname $jobid_var_old
25351         jobid_var_new=$($LCTL get_param -n $testname)
25352         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
25353                 error "failed to reset $testname"
25354 }
25355 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
25356
25357 test_401e() { # LU-14779
25358         $LCTL list_param -R "ldlm.namespaces.MGC*" ||
25359                 error "lctl list_param MGC* failed"
25360         $LCTL get_param "ldlm.namespaces.MGC*" || error "lctl get_param failed"
25361         $LCTL get_param "ldlm.namespaces.MGC*.lru_size" ||
25362                 error "lctl get_param lru_size failed"
25363 }
25364 run_test 401e "verify 'lctl get_param' works with NID in parameter"
25365
25366 test_402() {
25367         [[ $MDS1_VERSION -ge $(version_code 2.7.66) ]] ||
25368         [[ $MDS1_VERSION -ge $(version_code 2.7.18.4) &&
25369                 $MDS1_VERSION -lt $(version_code 2.7.50) ]] ||
25370         [[ $MDS1_VERSION -ge $(version_code 2.7.2) &&
25371                 $MDS1_VERSION -lt $(version_code 2.7.11) ]] ||
25372                 skip "Need MDS version 2.7.2+ or 2.7.18.4+ or 2.7.66+"
25373         remote_mds_nodsh && skip "remote MDS with nodsh"
25374
25375         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
25376 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
25377         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
25378         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
25379                 echo "Touch failed - OK"
25380 }
25381 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
25382
25383 test_403() {
25384         local file1=$DIR/$tfile.1
25385         local file2=$DIR/$tfile.2
25386         local tfile=$TMP/$tfile
25387
25388         rm -f $file1 $file2 $tfile
25389
25390         touch $file1
25391         ln $file1 $file2
25392
25393         # 30 sec OBD_TIMEOUT in ll_getattr()
25394         # right before populating st_nlink
25395         $LCTL set_param fail_loc=0x80001409
25396         stat -c %h $file1 > $tfile &
25397
25398         # create an alias, drop all locks and reclaim the dentry
25399         < $file2
25400         cancel_lru_locks mdc
25401         cancel_lru_locks osc
25402         sysctl -w vm.drop_caches=2
25403
25404         wait
25405
25406         [ $(cat $tfile) -gt 0 ] || error "wrong nlink count: $(cat $tfile)"
25407
25408         rm -f $tfile $file1 $file2
25409 }
25410 run_test 403 "i_nlink should not drop to zero due to aliasing"
25411
25412 test_404() { # LU-6601
25413         [[ $MDS1_VERSION -ge $(version_code 2.8.53) ]] ||
25414                 skip "Need server version newer than 2.8.52"
25415         remote_mds_nodsh && skip "remote MDS with nodsh"
25416
25417         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
25418                 awk '/osp .*-osc-MDT/ { print $4}')
25419
25420         local osp
25421         for osp in $mosps; do
25422                 echo "Deactivate: " $osp
25423                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
25424                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
25425                         awk -vp=$osp '$4 == p { print $2 }')
25426                 [ $stat = IN ] || {
25427                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
25428                         error "deactivate error"
25429                 }
25430                 echo "Activate: " $osp
25431                 do_facet $SINGLEMDS $LCTL --device %$osp activate
25432                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
25433                         awk -vp=$osp '$4 == p { print $2 }')
25434                 [ $stat = UP ] || {
25435                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
25436                         error "activate error"
25437                 }
25438         done
25439 }
25440 run_test 404 "validate manual {de}activated works properly for OSPs"
25441
25442 test_405() {
25443         [ -n "$FILESET" ] && skip "Not functional for FILESET set"
25444         [ $MDS1_VERSION -lt $(version_code 2.6.92) ] ||
25445                 [ $CLIENT_VERSION -lt $(version_code 2.6.99) ] &&
25446                         skip "Layout swap lock is not supported"
25447
25448         check_swap_layouts_support
25449         check_swap_layout_no_dom $DIR
25450
25451         test_mkdir $DIR/$tdir
25452         swap_lock_test -d $DIR/$tdir ||
25453                 error "One layout swap locked test failed"
25454 }
25455 run_test 405 "Various layout swap lock tests"
25456
25457 test_406() {
25458         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
25459         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
25460         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
25461         [ $PARALLEL == "yes" ] && skip "skip parallel run"
25462         [ $MDS1_VERSION -lt $(version_code 2.8.50) ] &&
25463                 skip "Need MDS version at least 2.8.50"
25464
25465         local def_stripe_size=$($LFS getstripe -S $MOUNT)
25466         local test_pool=$TESTNAME
25467
25468         pool_add $test_pool || error "pool_add failed"
25469         pool_add_targets $test_pool 0 $(($OSTCOUNT - 1)) 1 ||
25470                 error "pool_add_targets failed"
25471
25472         save_layout_restore_at_exit $MOUNT
25473
25474         # parent set default stripe count only, child will stripe from both
25475         # parent and fs default
25476         $LFS setstripe -c 1 -i 1 -S $((def_stripe_size * 2)) -p $test_pool $MOUNT ||
25477                 error "setstripe $MOUNT failed"
25478         $LFS mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
25479         $LFS setstripe -c $OSTCOUNT $DIR/$tdir || error "setstripe $tdir failed"
25480         for i in $(seq 10); do
25481                 local f=$DIR/$tdir/$tfile.$i
25482                 touch $f || error "touch failed"
25483                 local count=$($LFS getstripe -c $f)
25484                 [ $count -eq $OSTCOUNT ] ||
25485                         error "$f stripe count $count != $OSTCOUNT"
25486                 local offset=$($LFS getstripe -i $f)
25487                 [ $offset -eq 1 ] || error "$f stripe offset $offset != 1"
25488                 local size=$($LFS getstripe -S $f)
25489                 [ $size -eq $((def_stripe_size * 2)) ] ||
25490                         error "$f stripe size $size != $((def_stripe_size * 2))"
25491                 local pool=$($LFS getstripe -p $f)
25492                 [ $pool == $test_pool ] || error "$f pool $pool != $test_pool"
25493         done
25494
25495         # change fs default striping, delete parent default striping, now child
25496         # will stripe from new fs default striping only
25497         $LFS setstripe -c 1 -S $def_stripe_size -i 0 $MOUNT ||
25498                 error "change $MOUNT default stripe failed"
25499         $LFS setstripe -c 0 $DIR/$tdir ||
25500                 error "delete $tdir default stripe failed"
25501         for i in $(seq 11 20); do
25502                 local f=$DIR/$tdir/$tfile.$i
25503                 touch $f || error "touch $f failed"
25504                 local count=$($LFS getstripe -c $f)
25505                 [ $count -eq 1 ] || error "$f stripe count $count != 1"
25506                 local offset=$($LFS getstripe -i $f)
25507                 [ $offset -eq 0 ] || error "$f stripe offset $offset != 0"
25508                 local size=$($LFS getstripe -S $f)
25509                 [ $size -eq $def_stripe_size ] ||
25510                         error "$f stripe size $size != $def_stripe_size"
25511                 local pool=$($LFS getstripe -p $f)
25512                 [ $pool == $test_pool ] || error "$f pool $pool isn't set"
25513         done
25514
25515         unlinkmany $DIR/$tdir/$tfile. 1 20
25516
25517         local f=$DIR/$tdir/$tfile
25518         pool_remove_all_targets $test_pool $f
25519         pool_remove $test_pool $f
25520 }
25521 run_test 406 "DNE support fs default striping"
25522
25523 test_407() {
25524         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
25525         [[ $MDS1_VERSION -lt $(version_code 2.8.55) ]] &&
25526                 skip "Need MDS version at least 2.8.55"
25527         remote_mds_nodsh && skip "remote MDS with nodsh"
25528
25529         $LFS mkdir -i 0 -c 1 $DIR/$tdir.0 ||
25530                 error "$LFS mkdir -i 0 -c 1 $tdir.0 failed"
25531         $LFS mkdir -i 1 -c 1 $DIR/$tdir.1 ||
25532                 error "$LFS mkdir -i 1 -c 1 $tdir.1 failed"
25533         touch $DIR/$tdir.0/$tfile.0 || error "touch $tdir.0/$tfile.0 failed"
25534
25535         #define OBD_FAIL_DT_TXN_STOP    0x2019
25536         for idx in $(seq $MDSCOUNT); do
25537                 do_facet mds$idx "lctl set_param fail_loc=0x2019"
25538         done
25539         $LFS mkdir -c 2 $DIR/$tdir && error "$LFS mkdir -c 2 $tdir should fail"
25540         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1/$tfile.1 &&
25541                 error "mv $tdir.0/$tfile.0 $tdir.1/$tfile.1 should fail"
25542         true
25543 }
25544 run_test 407 "transaction fail should cause operation fail"
25545
25546 test_408() {
25547         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1 oflag=direct
25548
25549         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
25550         lctl set_param fail_loc=0x8000040a
25551         # let ll_prepare_partial_page() fail
25552         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 conv=notrunc || true
25553
25554         rm -f $DIR/$tfile
25555
25556         # create at least 100 unused inodes so that
25557         # shrink_icache_memory(0) should not return 0
25558         touch $DIR/$tfile-{0..100}
25559         rm -f $DIR/$tfile-{0..100}
25560         sync
25561
25562         echo 2 > /proc/sys/vm/drop_caches
25563 }
25564 run_test 408 "drop_caches should not hang due to page leaks"
25565
25566 test_409()
25567 {
25568         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
25569
25570         mkdir -p $DIR/$tdir || error "(0) Fail to mkdir"
25571         $LFS mkdir -i 1 -c 2 $DIR/$tdir/foo || error "(1) Fail to mkdir"
25572         touch $DIR/$tdir/guard || error "(2) Fail to create"
25573
25574         local PREFIX=$(str_repeat 'A' 128)
25575         echo "Create 1K hard links start at $(date)"
25576         createmany -l $DIR/$tdir/guard $DIR/$tdir/foo/${PREFIX}_ 1000 ||
25577                 error "(3) Fail to hard link"
25578
25579         echo "Links count should be right although linkEA overflow"
25580         stat $DIR/$tdir/guard || error "(4) Fail to stat"
25581         local linkcount=$(stat --format=%h $DIR/$tdir/guard)
25582         [ $linkcount -eq 1001 ] ||
25583                 error "(5) Unexpected hard links count: $linkcount"
25584
25585         echo "List all links start at $(date)"
25586         ls -l $DIR/$tdir/foo > /dev/null ||
25587                 error "(6) Fail to list $DIR/$tdir/foo"
25588
25589         echo "Unlink hard links start at $(date)"
25590         unlinkmany $DIR/$tdir/foo/${PREFIX}_ 1000 ||
25591                 error "(7) Fail to unlink"
25592         echo "Unlink hard links finished at $(date)"
25593 }
25594 run_test 409 "Large amount of cross-MDTs hard links on the same file"
25595
25596 test_410()
25597 {
25598         [[ $CLIENT_VERSION -lt $(version_code 2.9.59) ]] &&
25599                 skip "Need client version at least 2.9.59"
25600         [ -f $LUSTRE/tests/kernel/kinode.ko ] ||
25601                 skip "Need MODULES build"
25602
25603         # Create a file, and stat it from the kernel
25604         local testfile=$DIR/$tfile
25605         touch $testfile
25606
25607         local run_id=$RANDOM
25608         local my_ino=$(stat --format "%i" $testfile)
25609
25610         # Try to insert the module. This will always fail as the
25611         # module is designed to not be inserted.
25612         insmod $LUSTRE/tests/kernel/kinode.ko run_id=$run_id fname=$testfile \
25613             &> /dev/null
25614
25615         # Anything but success is a test failure
25616         dmesg | grep -q \
25617             "lustre_kinode_$run_id: inode numbers are identical: $my_ino" ||
25618             error "no inode match"
25619 }
25620 run_test 410 "Test inode number returned from kernel thread"
25621
25622 cleanup_test411_cgroup() {
25623         trap 0
25624         rmdir "$1"
25625 }
25626
25627 test_411() {
25628         local cg_basedir=/sys/fs/cgroup/memory
25629         # LU-9966
25630         test -f "$cg_basedir/memory.kmem.limit_in_bytes" ||
25631                 skip "no setup for cgroup"
25632
25633         dd if=/dev/zero of=$DIR/$tfile bs=1M count=100 conv=fsync ||
25634                 error "test file creation failed"
25635         cancel_lru_locks osc
25636
25637         # Create a very small memory cgroup to force a slab allocation error
25638         local cgdir=$cg_basedir/osc_slab_alloc
25639         mkdir $cgdir || error "cgroup mkdir '$cgdir' failed"
25640         trap "cleanup_test411_cgroup $cgdir" EXIT
25641         echo 2M > $cgdir/memory.kmem.limit_in_bytes
25642         echo 1M > $cgdir/memory.limit_in_bytes
25643
25644         # Should not LBUG, just be killed by oom-killer
25645         # dd will return 0 even allocation failure in some environment.
25646         # So don't check return value
25647         bash -c "echo \$$ > $cgdir/tasks && dd if=$DIR/$tfile of=/dev/null"
25648         cleanup_test411_cgroup $cgdir
25649
25650         return 0
25651 }
25652 run_test 411 "Slab allocation error with cgroup does not LBUG"
25653
25654 test_412() {
25655         (( $MDSCOUNT > 1 )) || skip_env "needs >= 2 MDTs"
25656         (( $MDS1_VERSION >= $(version_code 2.10.55) )) ||
25657                 skip "Need server version at least 2.10.55"
25658
25659         $LFS mkdir -i $((MDSCOUNT - 1)),$((MDSCOUNT - 2)) $DIR/$tdir ||
25660                 error "mkdir failed"
25661         $LFS getdirstripe $DIR/$tdir
25662         local stripe_index=$($LFS getdirstripe -i $DIR/$tdir)
25663         [ $stripe_index -eq $((MDSCOUNT - 1)) ] ||
25664                 error "expect $((MDSCOUT - 1)) get $stripe_index"
25665         local stripe_count=$($LFS getdirstripe -T $DIR/$tdir)
25666         [ $stripe_count -eq 2 ] ||
25667                 error "expect 2 get $stripe_count"
25668
25669         (( $MDS1_VERSION >= $(version_code 2.14.55) )) || return 0
25670
25671         local index
25672         local index2
25673
25674         # subdirs should be on the same MDT as parent
25675         for i in $(seq 0 $((MDSCOUNT - 1))); do
25676                 $LFS mkdir -i $i $DIR/$tdir/mdt$i || error "mkdir mdt$i failed"
25677                 mkdir $DIR/$tdir/mdt$i/sub || error "mkdir sub failed"
25678                 index=$($LFS getstripe -m $DIR/$tdir/mdt$i/sub)
25679                 (( index == i )) || error "mdt$i/sub on MDT$index"
25680         done
25681
25682         # stripe offset -1, ditto
25683         for i in {1..10}; do
25684                 $LFS mkdir -i -1 $DIR/$tdir/qos$i || error "mkdir qos$i failed"
25685                 index=$($LFS getstripe -m $DIR/$tdir/qos$i)
25686                 mkdir $DIR/$tdir/qos$i/sub || error "mkdir sub failed"
25687                 index2=$($LFS getstripe -m $DIR/$tdir/qos$i/sub)
25688                 (( index == index2 )) ||
25689                         error "qos$i on MDT$index, sub on MDT$index2"
25690         done
25691
25692         local testdir=$DIR/$tdir/inherit
25693
25694         $LFS mkdir -i 1 --max-inherit=3 $testdir || error "mkdir inherit failed"
25695         # inherit 2 levels
25696         for i in 1 2; do
25697                 testdir=$testdir/s$i
25698                 mkdir $testdir || error "mkdir $testdir failed"
25699                 index=$($LFS getstripe -m $testdir)
25700                 (( index == 1 )) ||
25701                         error "$testdir on MDT$index"
25702         done
25703
25704         # not inherit any more
25705         testdir=$testdir/s3
25706         mkdir $testdir || error "mkdir $testdir failed"
25707         getfattr -d -m dmv $testdir | grep dmv &&
25708                 error "default LMV set on $testdir" || true
25709 }
25710 run_test 412 "mkdir on specific MDTs"
25711
25712 TEST413_COUNT=${TEST413_COUNT:-200}
25713 generate_uneven_mdts() {
25714         local threshold=$1
25715         local lmv_qos_maxage
25716         local lod_qos_maxage
25717         local ffree
25718         local bavail
25719         local max
25720         local min
25721         local max_index
25722         local min_index
25723         local tmp
25724         local i
25725
25726         lmv_qos_maxage=$($LCTL get_param -n lmv.*.qos_maxage)
25727         $LCTL set_param lmv.*.qos_maxage=1
25728         stack_trap "$LCTL set_param \
25729                 lmv.*.qos_maxage=$lmv_qos_maxage > /dev/null" RETURN
25730         lod_qos_maxage=$(do_facet mds1 $LCTL get_param -n \
25731                 lod.$FSNAME-MDT0000-mdtlov.qos_maxage | awk '{ print $1 }')
25732         do_nodes $(comma_list $(mdts_nodes)) $LCTL set_param \
25733                 lod.*.mdt_qos_maxage=1
25734         stack_trap "do_nodes $(comma_list $(mdts_nodes)) $LCTL set_param \
25735                 lod.*.mdt_qos_maxage=$lod_qos_maxage > /dev/null" RETURN
25736
25737         echo
25738         echo "Check for uneven MDTs: "
25739
25740         ffree=($(lctl get_param -n mdc.*[mM][dD][cC]-[^M]*.filesfree))
25741         bavail=($(lctl get_param -n mdc.*[mM][dD][cC]-[^M]*.kbytesavail))
25742         bsize=$(lctl get_param -n mdc.*MDT0000*.blocksize)
25743
25744         max=$(((${ffree[0]} >> 8) * (${bavail[0]} * bsize >> 16)))
25745         min=$(((${ffree[0]} >> 8) * (${bavail[0]} * bsize >> 16)))
25746         max_index=0
25747         min_index=0
25748         for ((i = 1; i < ${#ffree[@]}; i++)); do
25749                 tmp=$(((${ffree[i]} >> 8) * (${bavail[i]} * bsize >> 16)))
25750                 if [ $tmp -gt $max ]; then
25751                         max=$tmp
25752                         max_index=$i
25753                 fi
25754                 if [ $tmp -lt $min ]; then
25755                         min=$tmp
25756                         min_index=$i
25757                 fi
25758         done
25759
25760         (( ${ffree[min_index]} > 0 )) ||
25761                 skip "no free files in MDT$min_index"
25762         (( ${ffree[min_index]} < 10000000 )) ||
25763                 skip "too many free files in MDT$min_index"
25764
25765         # Check if we need to generate uneven MDTs
25766         local diff=$(((max - min) * 100 / min))
25767         local testdir=$DIR/$tdir-fillmdt
25768         local start
25769
25770         i=0
25771         while (( diff < threshold )); do
25772                 mkdir -p $testdir
25773                 # generate uneven MDTs, create till $threshold% diff
25774                 echo -n "weight diff=$diff% must be > $threshold% ..."
25775                 echo "Fill MDT$min_index with $TEST413_COUNT files: loop $i"
25776                 testdir=$DIR/$tdir-fillmdt/$i
25777                 [ -d $testdir ] && continue
25778                 $LFS mkdir -i $min_index $testdir ||
25779                         error "mkdir $testdir failed"
25780                 $LFS setstripe -E 1M -L mdt $testdir ||
25781                         error "setstripe $testdir failed"
25782                 start=$SECONDS
25783                 for ((F=0; F < TEST413_COUNT; F++)); do
25784                         dd if=/dev/zero of=$testdir/f.$F bs=128K count=1 > \
25785                                 /dev/null 2>&1 || error "dd $F failed"
25786                 done
25787                 sync; sleep 1; sync
25788
25789                 # wait for QOS to update
25790                 (( SECONDS < start + 1 )) && sleep $((start + 1 - SECONDS))
25791
25792                 ffree=($(lctl get_param -n mdc.*[mM][dD][cC]-*.filesfree))
25793                 bavail=($(lctl get_param -n mdc.*[mM][dD][cC]-*.kbytesavail))
25794                 max=$(((${ffree[max_index]} >> 8) *
25795                         (${bavail[max_index]} * bsize >> 16)))
25796                 min=$(((${ffree[min_index]} >> 8) *
25797                         (${bavail[min_index]} * bsize >> 16)))
25798                 diff=$(((max - min) * 100 / min))
25799                 i=$((i + 1))
25800         done
25801
25802         echo "MDT filesfree available: ${ffree[*]}"
25803         echo "MDT blocks available: ${bavail[*]}"
25804         echo "weight diff=$diff%"
25805 }
25806
25807 test_qos_mkdir() {
25808         local mkdir_cmd=$1
25809         local stripe_count=$2
25810         local mdts=$(comma_list $(mdts_nodes))
25811
25812         local testdir
25813         local lmv_qos_prio_free
25814         local lmv_qos_threshold_rr
25815         local lmv_qos_maxage
25816         local lod_qos_prio_free
25817         local lod_qos_threshold_rr
25818         local lod_qos_maxage
25819         local count
25820         local i
25821
25822         lmv_qos_prio_free=$($LCTL get_param -n lmv.*.qos_prio_free | head -n1)
25823         lmv_qos_prio_free=${lmv_qos_prio_free%%%}
25824         lmv_qos_threshold_rr=$($LCTL get_param -n lmv.*.qos_threshold_rr |
25825                 head -n1)
25826         lmv_qos_threshold_rr=${lmv_qos_threshold_rr%%%}
25827         lmv_qos_maxage=$($LCTL get_param -n lmv.*.qos_maxage)
25828         stack_trap "$LCTL set_param \
25829                 lmv.*.qos_prio_free=$lmv_qos_prio_free > /dev/null"
25830         stack_trap "$LCTL set_param \
25831                 lmv.*.qos_threshold_rr=$lmv_qos_threshold_rr > /dev/null"
25832         stack_trap "$LCTL set_param \
25833                 lmv.*.qos_maxage=$lmv_qos_maxage > /dev/null"
25834
25835         lod_qos_prio_free=$(do_facet mds1 $LCTL get_param -n \
25836                 lod.$FSNAME-MDT0000-mdtlov.mdt_qos_prio_free | head -n1)
25837         lod_qos_prio_free=${lod_qos_prio_free%%%}
25838         lod_qos_threshold_rr=$(do_facet mds1 $LCTL get_param -n \
25839                 lod.$FSNAME-MDT0000-mdtlov.mdt_qos_threshold_rr | head -n1)
25840         lod_qos_threshold_rr=${lod_qos_threshold_rr%%%}
25841         lod_qos_maxage=$(do_facet mds1 $LCTL get_param -n \
25842                 lod.$FSNAME-MDT0000-mdtlov.qos_maxage | awk '{ print $1 }')
25843         stack_trap "do_nodes $mdts $LCTL set_param \
25844                 lod.*.mdt_qos_prio_free=$lod_qos_prio_free > /dev/null"
25845         stack_trap "do_nodes $mdts $LCTL set_param \
25846                 lod.*.mdt_qos_threshold_rr=$lod_qos_threshold_rr > /dev/null"
25847         stack_trap "do_nodes $mdts $LCTL set_param \
25848                 lod.*.mdt_qos_maxage=$lod_qos_maxage > /dev/null"
25849
25850         $LCTL set_param lmv.*.qos_threshold_rr=100 > /dev/null
25851         do_nodes $mdts $LCTL set_param lod.*.mdt_qos_threshold_rr=100 > /dev/null
25852
25853         testdir=$DIR/$tdir-s$stripe_count/rr
25854
25855         local stripe_index=$($LFS getstripe -m $testdir)
25856         local test_mkdir_rr=true
25857
25858         getfattr -d -m dmv -e hex $testdir | grep dmv
25859         if (( $? == 0 && $MDS1_VERSION >= $(version_code 2.14.51) )); then
25860                 echo "defstripe: '$($LFS getdirstripe -D $testdir)'"
25861                 (( $($LFS getdirstripe -D --max-inherit-rr $testdir) == 0 )) &&
25862                         test_mkdir_rr=false
25863         fi
25864
25865         echo
25866         $test_mkdir_rr &&
25867                 echo "Mkdir (stripe_count $stripe_count) roundrobin:" ||
25868                 echo "Mkdir (stripe_count $stripe_count) on stripe $stripe_index"
25869
25870         stack_trap "unlinkmany -d $testdir/subdir $((100 * MDSCOUNT))"
25871         for (( i = 0; i < 100 * MDSCOUNT; i++ )); do
25872                 eval $mkdir_cmd $testdir/subdir$i ||
25873                         error "$mkdir_cmd subdir$i failed"
25874         done
25875
25876         for (( i = 0; i < $MDSCOUNT; i++ )); do
25877                 count=$($LFS getdirstripe -i $testdir/* | grep -c "^$i$")
25878                 echo "$count directories created on MDT$i"
25879                 if $test_mkdir_rr; then
25880                         (( $count == 100 )) ||
25881                                 error "subdirs are not evenly distributed"
25882                 elif (( $i == $stripe_index )); then
25883                         (( $count == 100 * MDSCOUNT )) ||
25884                                 error "$count subdirs created on MDT$i"
25885                 else
25886                         (( $count == 0 )) ||
25887                                 error "$count subdirs created on MDT$i"
25888                 fi
25889
25890                 if $test_mkdir_rr && [ $stripe_count -gt 1 ]; then
25891                         count=$($LFS getdirstripe $testdir/* |
25892                                 grep -c -P "^\s+$i\t")
25893                         echo "$count stripes created on MDT$i"
25894                         # deviation should < 5% of average
25895                         (( $count >= 95 * stripe_count &&
25896                            $count <= 105 * stripe_count)) ||
25897                                 error "stripes are not evenly distributed"
25898                 fi
25899         done
25900
25901         echo
25902         echo "Check for uneven MDTs: "
25903
25904         local ffree
25905         local bavail
25906         local max
25907         local min
25908         local max_index
25909         local min_index
25910         local tmp
25911
25912         ffree=($(lctl get_param -n mdc.*[mM][dD][cC]-[^M]*.filesfree))
25913         bavail=($(lctl get_param -n mdc.*[mM][dD][cC]-[^M]*.kbytesavail))
25914         bsize=$(lctl get_param -n mdc.*MDT0000*.blocksize)
25915
25916         max=$(((${ffree[0]} >> 8) * (${bavail[0]} * bsize >> 16)))
25917         min=$(((${ffree[0]} >> 8) * (${bavail[0]} * bsize >> 16)))
25918         max_index=0
25919         min_index=0
25920         for ((i = 1; i < ${#ffree[@]}; i++)); do
25921                 tmp=$(((${ffree[i]} >> 8) * (${bavail[i]} * bsize >> 16)))
25922                 if [ $tmp -gt $max ]; then
25923                         max=$tmp
25924                         max_index=$i
25925                 fi
25926                 if [ $tmp -lt $min ]; then
25927                         min=$tmp
25928                         min_index=$i
25929                 fi
25930         done
25931
25932         (( ${ffree[min_index]} > 0 )) ||
25933                 skip "no free files in MDT$min_index"
25934         (( ${ffree[min_index]} < 10000000 )) ||
25935                 skip "too many free files in MDT$min_index"
25936
25937         echo "MDT filesfree available: ${ffree[*]}"
25938         echo "MDT blocks available: ${bavail[*]}"
25939         echo "weight diff=$(((max - min) * 100 / min))%"
25940         echo
25941         echo "Mkdir (stripe_count $stripe_count) with balanced space usage:"
25942
25943         $LCTL set_param lmv.*.qos_threshold_rr=0 > /dev/null
25944         $LCTL set_param lmv.*.qos_prio_free=100 > /dev/null
25945         do_nodes $mdts $LCTL set_param lod.*.mdt_qos_threshold_rr=0 > /dev/null
25946         do_nodes $mdts $LCTL set_param lod.*.mdt_qos_prio_free=100 > /dev/null
25947         # decrease statfs age, so that it can be updated in time
25948         $LCTL set_param lmv.*.qos_maxage=1 > /dev/null
25949         do_nodes $mdts $LCTL set_param lod.*.mdt_qos_maxage=1 > /dev/null
25950
25951         sleep 1
25952
25953         testdir=$DIR/$tdir-s$stripe_count/qos
25954         local num=200
25955
25956         stack_trap "unlinkmany -d $testdir/subdir $((num * MDSCOUNT))"
25957         for (( i = 0; i < num * MDSCOUNT; i++ )); do
25958                 eval $mkdir_cmd $testdir/subdir$i ||
25959                         error "$mkdir_cmd subdir$i failed"
25960         done
25961
25962         max=0
25963         for (( i = 0; i < $MDSCOUNT; i++ )); do
25964                 count=$($LFS getdirstripe -i $testdir/* | grep -c "^$i$")
25965                 (( count > max )) && max=$count
25966                 echo "$count directories created on MDT$i"
25967         done
25968
25969         min=$($LFS getdirstripe -i $testdir/* | grep -c "^$min_index$")
25970
25971         # D-value should > 10% of averge
25972         (( max - min > num / 10 )) ||
25973                 error "subdirs shouldn't be evenly distributed: $max - $min < $((num / 10))"
25974
25975         # ditto for stripes
25976         if (( stripe_count > 1 )); then
25977                 max=0
25978                 for (( i = 0; i < $MDSCOUNT; i++ )); do
25979                         count=$($LFS getdirstripe $testdir/* |
25980                                 grep -c -P "^\s+$i\t")
25981                         (( count > max )) && max=$count
25982                         echo "$count stripes created on MDT$i"
25983                 done
25984
25985                 min=$($LFS getdirstripe $testdir/* |
25986                         grep -c -P "^\s+$min_index\t")
25987                 (( max - min > num * stripe_count / 10 )) ||
25988                         error "stripes shouldn't be evenly distributed: $max - $min < $((num / 10)) * $stripe_count"
25989         fi
25990 }
25991
25992 most_full_mdt() {
25993         local ffree
25994         local bavail
25995         local bsize
25996         local min
25997         local min_index
25998         local tmp
25999
26000         ffree=($(lctl get_param -n mdc.*[mM][dD][cC]-[^M]*.filesfree))
26001         bavail=($(lctl get_param -n mdc.*[mM][dD][cC]-[^M]*.kbytesavail))
26002         bsize=$(lctl get_param -n mdc.*MDT0000*.blocksize)
26003
26004         min=$(((${ffree[0]} >> 8) * (${bavail[0]} * bsize >> 16)))
26005         min_index=0
26006         for ((i = 1; i < ${#ffree[@]}; i++)); do
26007                 tmp=$(((${ffree[i]} >> 8) * (${bavail[i]} * bsize >> 16)))
26008                 (( tmp < min )) && min=$tmp && min_index=$i
26009         done
26010
26011         echo -n $min_index
26012 }
26013
26014 test_413a() {
26015         [ $MDSCOUNT -lt 2 ] &&
26016                 skip "We need at least 2 MDTs for this test"
26017
26018         [ $MDS1_VERSION -lt $(version_code 2.12.52) ] &&
26019                 skip "Need server version at least 2.12.52"
26020
26021         local stripe_count
26022
26023         generate_uneven_mdts 100
26024         for stripe_count in $(seq 1 $((MDSCOUNT - 1))); do
26025                 mkdir $DIR/$tdir-s$stripe_count || error "mkdir failed"
26026                 mkdir $DIR/$tdir-s$stripe_count/rr || error "mkdir failed"
26027                 $LFS mkdir -i $(most_full_mdt) $DIR/$tdir-s$stripe_count/qos ||
26028                         error "mkdir failed"
26029                 test_qos_mkdir "$LFS mkdir -i -1 -c $stripe_count" $stripe_count
26030         done
26031 }
26032 run_test 413a "QoS mkdir with 'lfs mkdir -i -1'"
26033
26034 test_413b() {
26035         [ $MDSCOUNT -lt 2 ] &&
26036                 skip "We need at least 2 MDTs for this test"
26037
26038         [ $MDS1_VERSION -lt $(version_code 2.12.52) ] &&
26039                 skip "Need server version at least 2.12.52"
26040
26041         local testdir
26042         local stripe_count
26043
26044         generate_uneven_mdts 100
26045         for stripe_count in $(seq 1 $((MDSCOUNT - 1))); do
26046                 testdir=$DIR/$tdir-s$stripe_count
26047                 mkdir $testdir || error "mkdir $testdir failed"
26048                 mkdir $testdir/rr || error "mkdir rr failed"
26049                 $LFS mkdir -i $(most_full_mdt) $testdir/qos ||
26050                         error "mkdir qos failed"
26051                 $LFS setdirstripe -D -c $stripe_count --max-inherit-rr 2 \
26052                         $testdir/rr || error "setdirstripe rr failed"
26053                 $LFS setdirstripe -D -c $stripe_count $testdir/qos ||
26054                         error "setdirstripe failed"
26055                 test_qos_mkdir "mkdir" $stripe_count
26056         done
26057 }
26058 run_test 413b "QoS mkdir under dir whose default LMV starting MDT offset is -1"
26059
26060 test_413c() {
26061         (( $MDSCOUNT >= 2 )) ||
26062                 skip "We need at least 2 MDTs for this test"
26063
26064         (( $MDS1_VERSION >= $(version_code 2.14.51) )) ||
26065                 skip "Need server version at least 2.14.51"
26066
26067         local testdir
26068         local inherit
26069         local inherit_rr
26070
26071         testdir=$DIR/${tdir}-s1
26072         mkdir $testdir || error "mkdir $testdir failed"
26073         mkdir $testdir/rr || error "mkdir rr failed"
26074         $LFS mkdir -i $(most_full_mdt) $testdir/qos || error "mkdir qos failed"
26075         # default max_inherit is -1, default max_inherit_rr is 0
26076         $LFS setdirstripe -D -c 1 $testdir/rr ||
26077                 error "setdirstripe rr failed"
26078         $LFS setdirstripe -D -c 1 -i -1 -X 2 --max-inherit-rr 1 $testdir/qos ||
26079                 error "setdirstripe qos failed"
26080         test_qos_mkdir "mkdir" 1
26081
26082         mkdir $testdir/rr/level1 || error "mkdir rr/level1 failed"
26083         inherit=$($LFS getdirstripe -D -X $testdir/rr/level1)
26084         (( $inherit == -1 )) || error "rr/level1 inherit $inherit != -1"
26085         inherit_rr=$($LFS getdirstripe -D --max-inherit-rr $testdir/rr/level1)
26086         (( $inherit_rr == 0 )) || error "rr/level1 inherit-rr $inherit_rr != 0"
26087
26088         mkdir $testdir/qos/level1 || error "mkdir qos/level1 failed"
26089         inherit=$($LFS getdirstripe -D -X $testdir/qos/level1)
26090         (( $inherit == 1 )) || error "qos/level1 inherit $inherit != 1"
26091         inherit_rr=$($LFS getdirstripe -D --max-inherit-rr $testdir/qos/level1)
26092         (( $inherit_rr == 0 )) || error "qos/level1 inherit-rr $inherit_rr != 0"
26093         mkdir $testdir/qos/level1/level2 || error "mkdir level2 failed"
26094         getfattr -d -m dmv -e hex $testdir/qos/level1/level2 | grep dmv &&
26095                 error "level2 shouldn't have default LMV" || true
26096 }
26097 run_test 413c "mkdir with default LMV max inherit rr"
26098
26099 test_413d() {
26100         (( MDSCOUNT >= 2 )) ||
26101                 skip "We need at least 2 MDTs for this test"
26102
26103         (( MDS1_VERSION >= $(version_code 2.14.51) )) ||
26104                 skip "Need server version at least 2.14.51"
26105
26106         local lmv_qos_threshold_rr
26107
26108         lmv_qos_threshold_rr=$($LCTL get_param -n lmv.*.qos_threshold_rr |
26109                 head -n1)
26110         stack_trap "$LCTL set_param \
26111                 lmv.*.qos_threshold_rr=$lmv_qos_threshold_rr > /dev/null" EXIT
26112
26113         $LCTL set_param lmv.*.qos_threshold_rr=100 > /dev/null
26114         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
26115         getfattr -d -m dmv -e hex $DIR/$tdir | grep dmv &&
26116                 error "$tdir shouldn't have default LMV"
26117         createmany -d $DIR/$tdir/sub $((100 * MDSCOUNT)) ||
26118                 error "mkdir sub failed"
26119
26120         local count=$($LFS getstripe -m $DIR/$tdir/* | grep -c ^0)
26121
26122         (( count == 100 )) || error "$count subdirs on MDT0"
26123 }
26124 run_test 413d "inherit ROOT default LMV"
26125
26126 test_413e() {
26127         (( MDSCOUNT >= 2 )) ||
26128                 skip "We need at least 2 MDTs for this test"
26129         (( MDS1_VERSION >= $(version_code 2.14.55) )) ||
26130                 skip "Need server version at least 2.14.55"
26131
26132         local testdir=$DIR/$tdir
26133         local tmpfile=$TMP/temp.setdirstripe.stderr.$$
26134         local max_inherit
26135         local sub_max_inherit
26136
26137         mkdir -p $testdir || error "failed to create $testdir"
26138
26139         # set default max-inherit to -1 if stripe count is 0 or 1
26140         $LFS setdirstripe -D -c 1 $testdir ||
26141                 error "failed to set default LMV"
26142         max_inherit=$($LFS getdirstripe -D --max-inherit $testdir)
26143         (( max_inherit == -1 )) ||
26144                 error "wrong max_inherit value $max_inherit"
26145
26146         # set default max_inherit to a fixed value if stripe count is not 0 or 1
26147         $LFS setdirstripe -D -c -1 $testdir ||
26148                 error "failed to set default LMV"
26149         max_inherit=$($LFS getdirstripe -D --max-inherit $testdir)
26150         (( max_inherit > 0 )) ||
26151                 error "wrong max_inherit value $max_inherit"
26152
26153         # and the subdir will decrease the max_inherit by 1
26154         mkdir -p $testdir/subdir-1 || error "failed to make subdir"
26155         sub_max_inherit=$($LFS getdirstripe -D --max-inherit $testdir/subdir-1)
26156         (( sub_max_inherit == max_inherit - 1)) ||
26157                 error "wrong max-inherit of subdir $sub_max_inherit"
26158
26159         # check specified --max-inherit and warning message
26160         stack_trap "rm -f $tmpfile"
26161         $LFS setdirstripe -D -c 2 --max-inherit=-1 $testdir 2> $tmpfile ||
26162                 error "failed to set default LMV"
26163         max_inherit=$($LFS getdirstripe -D --max-inherit $testdir)
26164         (( max_inherit == -1 )) ||
26165                 error "wrong max_inherit value $max_inherit"
26166
26167         # check the warning messages
26168         if ! [[ $(cat $tmpfile) =~ "max-inherit=" ]]; then
26169                 error "failed to detect warning string"
26170         fi
26171 }
26172 run_test 413e "check default max-inherit value"
26173
26174 test_fs_dmv_inherit()
26175 {
26176         local testdir=$DIR/$tdir
26177
26178         local count
26179         local inherit
26180         local inherit_rr
26181
26182         for i in 1 2 3; do
26183                 mkdir $testdir || error "mkdir $testdir failed"
26184                 count=$($LFS getdirstripe -D -c $testdir)
26185                 (( count == 1 )) ||
26186                         error "$testdir default LMV count mismatch $count != 1"
26187                 inherit=$($LFS getdirstripe -D -X $testdir)
26188                 (( inherit == 3 - i )) ||
26189                         error "$testdir default LMV max-inherit $inherit != $((3 - i))"
26190                 inherit_rr=$($LFS getdirstripe -D --max-inherit-rr $testdir)
26191                 (( inherit_rr == 3 - i )) ||
26192                         error "$testdir default LMV max-inherit-rr $inherit_rr != $((3 - i))"
26193                 testdir=$testdir/sub
26194         done
26195
26196         mkdir $testdir || error "mkdir $testdir failed"
26197         count=$($LFS getdirstripe -D -c $testdir)
26198         (( count == 0 )) ||
26199                 error "$testdir default LMV count not zero: $count"
26200 }
26201
26202 test_413f() {
26203         (( MDSCOUNT >= 2 )) || skip "We need at least 2 MDTs for this test"
26204
26205         (( MDS1_VERSION >= $(version_code 2.14.55) )) ||
26206                 skip "Need server version at least 2.14.55"
26207
26208         getfattr -d -m trusted.dmv --absolute-names $DIR > $TMP/dmv.ea ||
26209                 error "dump $DIR default LMV failed"
26210         stack_trap "setfattr --restore=$TMP/dmv.ea"
26211
26212         $LFS setdirstripe -D -i -1 -c 1 -X 3 --max-inherit-rr 3 $DIR ||
26213                 error "set $DIR default LMV failed"
26214
26215         test_fs_dmv_inherit
26216 }
26217 run_test 413f "lfs getdirstripe -D list ROOT default LMV if it's not set on dir"
26218
26219 test_413g() {
26220         (( MDSCOUNT >= 2 )) || skip "We need at least 2 MDTs for this test"
26221
26222         mkdir -p $DIR/$tdir/l2/l3/l4 || error "mkdir $tdir/l1/l2/l3 failed"
26223         getfattr -d -m trusted.dmv --absolute-names $DIR > $TMP/dmv.ea ||
26224                 error "dump $DIR default LMV failed"
26225         stack_trap "setfattr --restore=$TMP/dmv.ea"
26226
26227         $LFS setdirstripe -D -i -1 -c 1 -X 3 --max-inherit-rr 3 $DIR ||
26228                 error "set $DIR default LMV failed"
26229
26230         FILESET="$FILESET/$tdir/l2/l3/l4" mount_client $MOUNT2 ||
26231                 error "mount $MOUNT2 failed"
26232         stack_trap "umount_client $MOUNT2"
26233
26234         local saved_DIR=$DIR
26235
26236         export DIR=$MOUNT2
26237
26238         stack_trap "export DIR=$saved_DIR"
26239
26240         # first check filesystem-wide default LMV inheritance
26241         test_fs_dmv_inherit || error "incorrect fs default LMV inheritance"
26242
26243         # then check subdirs are spread to all MDTs
26244         createmany -d $DIR/s $((MDSCOUNT * 100)) || error "createmany failed"
26245
26246         local count=$($LFS getstripe -m $DIR/s* | sort -u | wc -l)
26247
26248         (( $count == $MDSCOUNT )) || error "dirs are spread to $count MDTs"
26249 }
26250 run_test 413g "enforce ROOT default LMV on subdir mount"
26251
26252 test_413h() {
26253         (( MDSCOUNT >= 2 )) ||
26254                 skip "We need at least 2 MDTs for this test"
26255
26256         (( MDS1_VERSION >= $(version_code 2.15.50.6) )) ||
26257                 skip "Need server version at least 2.15.50.6"
26258
26259         local lmv_qos_maxage=$($LCTL get_param -n lmv.*.qos_maxage)
26260
26261         stack_trap "$LCTL set_param \
26262                 lmv.*.qos_maxage=$lmv_qos_maxage > /dev/null"
26263         $LCTL set_param lmv.*.qos_maxage=1
26264
26265         local depth=5
26266         local rr_depth=4
26267         local dir=$DIR/$tdir/l1/l2/l3/l4/l5
26268         local count=$((MDSCOUNT * 20))
26269
26270         generate_uneven_mdts 50
26271
26272         mkdir -p $dir || error "mkdir $dir failed"
26273         stack_trap "rm -rf $dir"
26274         $LFS setdirstripe -D -c 1 -i -1 --max-inherit=$depth \
26275                 --max-inherit-rr=$rr_depth $dir
26276
26277         for ((d=0; d < depth + 2; d++)); do
26278                 log "dir=$dir:"
26279                 for ((sub=0; sub < count; sub++)); do
26280                         mkdir $dir/d$sub
26281                 done
26282                 $LFS getdirstripe -i $dir/d* | sort | uniq -c | sort -nr
26283                 local num=($($LFS getdirstripe -i $dir/d* | sort | uniq -c))
26284                 # subdirs within $rr_depth should be created round-robin
26285                 if (( d < rr_depth )); then
26286                         (( ${num[0]} != count )) ||
26287                                 error "all objects created on MDT ${num[1]}"
26288                 fi
26289
26290                 dir=$dir/d0
26291         done
26292 }
26293 run_test 413h "don't stick to parent for round-robin dirs"
26294
26295 test_413z() {
26296         local pids=""
26297         local subdir
26298         local pid
26299
26300         for subdir in $(\ls -1 -d $DIR/d413*-fillmdt/*); do
26301                 unlinkmany $subdir/f. $TEST413_COUNT &
26302                 pids="$pids $!"
26303         done
26304
26305         for pid in $pids; do
26306                 wait $pid
26307         done
26308 }
26309 run_test 413z "413 test cleanup"
26310
26311 test_414() {
26312 #define OBD_FAIL_PTLRPC_BULK_ATTACH      0x521
26313         $LCTL set_param fail_loc=0x80000521
26314         dd if=/dev/zero of=$DIR/$tfile bs=2M count=1 oflag=sync
26315         rm -f $DIR/$tfile
26316 }
26317 run_test 414 "simulate ENOMEM in ptlrpc_register_bulk()"
26318
26319 test_415() {
26320         [ $PARALLEL == "yes" ] && skip "skip parallel run"
26321         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
26322                 skip "Need server version at least 2.11.52"
26323
26324         # LU-11102
26325         local total
26326         local setattr_pid
26327         local start_time
26328         local end_time
26329         local duration
26330
26331         total=500
26332         # this test may be slow on ZFS
26333         [ "$mds1_FSTYPE" == "zfs" ] && total=50
26334
26335         # though this test is designed for striped directory, let's test normal
26336         # directory too since lock is always saved as CoS lock.
26337         test_mkdir $DIR/$tdir || error "mkdir $tdir"
26338         createmany -o $DIR/$tdir/$tfile. $total || error "createmany"
26339
26340         (
26341                 while true; do
26342                         touch $DIR/$tdir
26343                 done
26344         ) &
26345         setattr_pid=$!
26346
26347         start_time=$(date +%s)
26348         for i in $(seq $total); do
26349                 mrename $DIR/$tdir/$tfile.$i $DIR/$tdir/$tfile-new.$i \
26350                         > /dev/null
26351         done
26352         end_time=$(date +%s)
26353         duration=$((end_time - start_time))
26354
26355         kill -9 $setattr_pid
26356
26357         echo "rename $total files took $duration sec"
26358         [ $duration -lt 100 ] || error "rename took $duration sec"
26359 }
26360 run_test 415 "lock revoke is not missing"
26361
26362 test_416() {
26363         [ $MDS1_VERSION -lt $(version_code 2.11.55) ] &&
26364                 skip "Need server version at least 2.11.55"
26365
26366         # define OBD_FAIL_OSD_TXN_START    0x19a
26367         do_facet mds1 lctl set_param fail_loc=0x19a
26368
26369         lfs mkdir -c $MDSCOUNT $DIR/$tdir
26370
26371         true
26372 }
26373 run_test 416 "transaction start failure won't cause system hung"
26374
26375 cleanup_417() {
26376         trap 0
26377         do_nodes $(comma_list $(mdts_nodes)) \
26378                 "$LCTL set_param -n mdt.*MDT*.enable_dir_migration=1"
26379         do_nodes $(comma_list $(mdts_nodes)) \
26380                 "$LCTL set_param -n mdt.*MDT*.enable_remote_dir=1"
26381         do_nodes $(comma_list $(mdts_nodes)) \
26382                 "$LCTL set_param -n mdt.*MDT*.enable_striped_dir=1"
26383 }
26384
26385 test_417() {
26386         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
26387         [[ $MDS1_VERSION -lt $(version_code 2.11.56) ]] &&
26388                 skip "Need MDS version at least 2.11.56"
26389
26390         trap cleanup_417 RETURN EXIT
26391
26392         $LFS mkdir -i 1 $DIR/$tdir.1 || error "create remote dir $tdir.1 failed"
26393         do_nodes $(comma_list $(mdts_nodes)) \
26394                 "$LCTL set_param -n mdt.*MDT*.enable_dir_migration=0"
26395         $LFS migrate -m 0 $DIR/$tdir.1 &&
26396                 error "migrate dir $tdir.1 should fail"
26397
26398         do_nodes $(comma_list $(mdts_nodes)) \
26399                 "$LCTL set_param -n mdt.*MDT*.enable_remote_dir=0"
26400         $LFS mkdir -i 1 $DIR/$tdir.2 &&
26401                 error "create remote dir $tdir.2 should fail"
26402
26403         do_nodes $(comma_list $(mdts_nodes)) \
26404                 "$LCTL set_param -n mdt.*MDT*.enable_striped_dir=0"
26405         $LFS mkdir -c 2 $DIR/$tdir.3 &&
26406                 error "create striped dir $tdir.3 should fail"
26407         true
26408 }
26409 run_test 417 "disable remote dir, striped dir and dir migration"
26410
26411 # Checks that the outputs of df [-i] and lfs df [-i] match
26412 #
26413 # usage: check_lfs_df <blocks | inodes> <mountpoint>
26414 check_lfs_df() {
26415         local dir=$2
26416         local inodes
26417         local df_out
26418         local lfs_df_out
26419         local count
26420         local passed=false
26421
26422         # blocks or inodes
26423         [ "$1" == "blocks" ] && inodes= || inodes="-i"
26424
26425         for count in {1..100}; do
26426                 do_nodes "$CLIENTS" \
26427                         $LCTL set_param ldlm.namespaces.*.lru_size=clear
26428                 sync; sleep 0.2
26429
26430                 # read the lines of interest
26431                 df_out=($(df -P $inodes $dir | tail -n +2)) ||
26432                         error "df $inodes $dir | tail -n +2 failed"
26433                 lfs_df_out=($($LFS df $inodes $dir | grep summary:)) ||
26434                         error "lfs df $inodes $dir | grep summary: failed"
26435
26436                 # skip first substrings of each output as they are different
26437                 # "<NID>:/<fsname>" for df, "filesystem_summary:" for lfs df
26438                 # compare the two outputs
26439                 passed=true
26440                 #  skip "available" on MDT until LU-13997 is fixed.
26441                 #for i in {1..5}; do
26442                 for i in 1 2 4 5; do
26443                         [ "${df_out[i]}" != "${lfs_df_out[i]}" ] && passed=false
26444                 done
26445                 $passed && break
26446         done
26447
26448         if ! $passed; then
26449                 df -P $inodes $dir
26450                 echo
26451                 lfs df $inodes $dir
26452                 error "df and lfs df $1 output mismatch: "      \
26453                       "df ${inodes}: ${df_out[*]}, "            \
26454                       "lfs df ${inodes}: ${lfs_df_out[*]}"
26455         fi
26456 }
26457
26458 test_418() {
26459         [ $PARALLEL == "yes" ] && skip "skip parallel run"
26460
26461         local dir=$DIR/$tdir
26462         local numfiles=$((RANDOM % 4096 + 2))
26463         local numblocks=$((RANDOM % 256 + 1))
26464
26465         wait_delete_completed
26466         test_mkdir $dir
26467
26468         # check block output
26469         check_lfs_df blocks $dir
26470         # check inode output
26471         check_lfs_df inodes $dir
26472
26473         # create a single file and retest
26474         echo "Creating a single file and testing"
26475         createmany -o $dir/$tfile- 1 &>/dev/null ||
26476                 error "creating 1 file in $dir failed"
26477         check_lfs_df blocks $dir
26478         check_lfs_df inodes $dir
26479
26480         # create a random number of files
26481         echo "Creating $((numfiles - 1)) files and testing"
26482         createmany -o $dir/$tfile- 1 $((numfiles - 1)) &>/dev/null ||
26483                 error "creating $((numfiles - 1)) files in $dir failed"
26484
26485         # write a random number of blocks to the first test file
26486         echo "Writing $numblocks 4K blocks and testing"
26487         dd if=/dev/urandom of=$dir/${tfile}-0 bs=4K conv=fsync \
26488                 count=$numblocks &>/dev/null ||
26489                 error "dd to $dir/${tfile}-0 failed"
26490
26491         # retest
26492         check_lfs_df blocks $dir
26493         check_lfs_df inodes $dir
26494
26495         unlinkmany $dir/$tfile- $numfiles &>/dev/null ||
26496                 error "unlinking $numfiles files in $dir failed"
26497 }
26498 run_test 418 "df and lfs df outputs match"
26499
26500 test_419()
26501 {
26502         local dir=$DIR/$tdir
26503
26504         mkdir -p $dir
26505         touch $dir/file
26506
26507         cancel_lru_locks mdc
26508
26509         #OBD_FAIL_LLITE_OPEN_BY_NAME    0x1410
26510         $LCTL set_param fail_loc=0x1410
26511         cat $dir/file
26512         $LCTL set_param fail_loc=0
26513         rm -rf $dir
26514 }
26515 run_test 419 "Verify open file by name doesn't crash kernel"
26516
26517 test_420()
26518 {
26519         [[ $MDS1_VERSION -ge $(version_code 2.12.53) ]] ||
26520                 skip "Need MDS version at least 2.12.53"
26521
26522         local SAVE_UMASK=$(umask)
26523         local dir=$DIR/$tdir
26524         local uname=$(getent passwd $RUNAS_ID | cut -d: -f1)
26525
26526         mkdir -p $dir
26527         umask 0000
26528         mkdir -m03777 $dir/testdir
26529         ls -dn $dir/testdir
26530         # Need to remove trailing '.' when SELinux is enabled
26531         local dirperms=$(ls -dn $dir/testdir |
26532                          awk '{ sub(/\.$/, "", $1); print $1}')
26533         [ $dirperms == "drwxrwsrwt" ] ||
26534                 error "incorrect perms on $dir/testdir"
26535
26536         su - $uname -c "PATH=$LUSTRE/tests:\$PATH; \
26537                 openfile -f O_RDONLY:O_CREAT -m 02755 $dir/testdir/testfile"
26538         ls -n $dir/testdir/testfile
26539         local fileperms=$(ls -n $dir/testdir/testfile |
26540                           awk '{ sub(/\.$/, "", $1); print $1}')
26541         [ $fileperms == "-rwxr-xr-x" ] ||
26542                 error "incorrect perms on $dir/testdir/testfile"
26543
26544         umask $SAVE_UMASK
26545 }
26546 run_test 420 "clear SGID bit on non-directories for non-members"
26547
26548 test_421a() {
26549         local cnt
26550         local fid1
26551         local fid2
26552
26553         [ $MDS1_VERSION -lt $(version_code 2.12.54) ] &&
26554                 skip "Need MDS version at least 2.12.54"
26555
26556         test_mkdir $DIR/$tdir
26557         createmany -o $DIR/$tdir/f 3
26558         cnt=$(ls -1 $DIR/$tdir | wc -l)
26559         [ $cnt != 3 ] && error "unexpected #files: $cnt"
26560
26561         fid1=$(lfs path2fid $DIR/$tdir/f1)
26562         fid2=$(lfs path2fid $DIR/$tdir/f2)
26563         $LFS rmfid $DIR $fid1 $fid2 || error "rmfid failed"
26564
26565         stat $DIR/$tdir/f1 && error "f1 still visible on the client"
26566         stat $DIR/$tdir/f2 && error "f2 still visible on the client"
26567
26568         cnt=$(ls -1 $DIR/$tdir | wc -l)
26569         [ $cnt == 1 ] || error "unexpected #files after: $cnt"
26570
26571         rm -f $DIR/$tdir/f3 || error "can't remove f3"
26572         createmany -o $DIR/$tdir/f 3
26573         cnt=$(ls -1 $DIR/$tdir | wc -l)
26574         [ $cnt != 3 ] && error "unexpected #files: $cnt"
26575
26576         fid1=$(lfs path2fid $DIR/$tdir/f1)
26577         fid2=$(lfs path2fid $DIR/$tdir/f2)
26578         echo "remove using fsname $FSNAME"
26579         $LFS rmfid $FSNAME $fid1 $fid2 || error "rmfid with fsname failed"
26580
26581         cnt=$(ls -1 $DIR/$tdir | wc -l)
26582         [ $cnt == 1 ] || error "unexpected #files after: $cnt"
26583 }
26584 run_test 421a "simple rm by fid"
26585
26586 test_421b() {
26587         local cnt
26588         local FID1
26589         local FID2
26590
26591         [ $MDS1_VERSION -lt $(version_code 2.12.54) ] &&
26592                 skip "Need MDS version at least 2.12.54"
26593
26594         test_mkdir $DIR/$tdir
26595         createmany -o $DIR/$tdir/f 3
26596         multiop_bg_pause $DIR/$tdir/f1 o_c || error "multiop failed to start"
26597         MULTIPID=$!
26598
26599         FID1=$(lfs path2fid $DIR/$tdir/f1)
26600         FID2=$(lfs path2fid $DIR/$tdir/f2)
26601         $LFS rmfid $DIR $FID1 $FID2 && error "rmfid didn't fail"
26602
26603         kill -USR1 $MULTIPID
26604         wait
26605
26606         cnt=$(ls $DIR/$tdir | wc -l)
26607         [ $cnt == 2 ] || error "unexpected #files after: $cnt"
26608 }
26609 run_test 421b "rm by fid on open file"
26610
26611 test_421c() {
26612         local cnt
26613         local FIDS
26614
26615         [ $MDS1_VERSION -lt $(version_code 2.12.54) ] &&
26616                 skip "Need MDS version at least 2.12.54"
26617
26618         test_mkdir $DIR/$tdir
26619         createmany -o $DIR/$tdir/f 3
26620         touch $DIR/$tdir/$tfile
26621         createmany -l$DIR/$tdir/$tfile $DIR/$tdir/h 180
26622         cnt=$(ls -1 $DIR/$tdir | wc -l)
26623         [ $cnt != 184 ] && error "unexpected #files: $cnt"
26624
26625         FID1=$(lfs path2fid $DIR/$tdir/$tfile)
26626         $LFS rmfid $DIR $FID1 || error "rmfid failed"
26627
26628         cnt=$(ls $DIR/$tdir | wc -l)
26629         [ $cnt == 3 ] || error "unexpected #files after: $cnt"
26630 }
26631 run_test 421c "rm by fid against hardlinked files"
26632
26633 test_421d() {
26634         local cnt
26635         local FIDS
26636
26637         [ $MDS1_VERSION -lt $(version_code 2.12.54) ] &&
26638                 skip "Need MDS version at least 2.12.54"
26639
26640         test_mkdir $DIR/$tdir
26641         createmany -o $DIR/$tdir/f 4097
26642         cnt=$(ls -1 $DIR/$tdir | wc -l)
26643         [ $cnt != 4097 ] && error "unexpected #files: $cnt"
26644
26645         FIDS=$(lfs path2fid $DIR/$tdir/f* | sed "s/[/][^:]*://g")
26646         $LFS rmfid $DIR $FIDS || error "rmfid failed"
26647
26648         cnt=$(ls $DIR/$tdir | wc -l)
26649         rm -rf $DIR/$tdir
26650         [ $cnt == 0 ] || error "unexpected #files after: $cnt"
26651 }
26652 run_test 421d "rmfid en masse"
26653
26654 test_421e() {
26655         local cnt
26656         local FID
26657
26658         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
26659         [ $MDS1_VERSION -lt $(version_code 2.12.54) ] &&
26660                 skip "Need MDS version at least 2.12.54"
26661
26662         mkdir -p $DIR/$tdir
26663         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
26664         createmany -o $DIR/$tdir/striped_dir/f 512
26665         cnt=$(ls -1 $DIR/$tdir/striped_dir | wc -l)
26666         [ $cnt != 512 ] && error "unexpected #files: $cnt"
26667
26668         FIDS=$(lfs path2fid $DIR/$tdir/striped_dir/f* |
26669                 sed "s/[/][^:]*://g")
26670         $LFS rmfid $DIR $FIDS || error "rmfid failed"
26671
26672         cnt=$(ls $DIR/$tdir/striped_dir | wc -l)
26673         rm -rf $DIR/$tdir
26674         [ $cnt == 0 ] || error "unexpected #files after: $cnt"
26675 }
26676 run_test 421e "rmfid in DNE"
26677
26678 test_421f() {
26679         local cnt
26680         local FID
26681
26682         [ $MDS1_VERSION -lt $(version_code 2.12.54) ] &&
26683                 skip "Need MDS version at least 2.12.54"
26684
26685         test_mkdir $DIR/$tdir
26686         touch $DIR/$tdir/f
26687         cnt=$(ls -1 $DIR/$tdir | wc -l)
26688         [ $cnt != 1 ] && error "unexpected #files: $cnt"
26689
26690         FID=$(lfs path2fid $DIR/$tdir/f)
26691         $RUNAS $LFS rmfid $DIR $FID && error "rmfid didn't fail (1)"
26692         # rmfid should fail
26693         cnt=$(ls -1 $DIR/$tdir | wc -l)
26694         [ $cnt != 1 ] && error "unexpected #files after (2): $cnt"
26695
26696         chmod a+rw $DIR/$tdir
26697         ls -la $DIR/$tdir
26698         $RUNAS $LFS rmfid $DIR $FID && error "rmfid didn't fail (2)"
26699         # rmfid should fail
26700         cnt=$(ls -1 $DIR/$tdir | wc -l)
26701         [ $cnt != 1 ] && error "unexpected #files after (3): $cnt"
26702
26703         rm -f $DIR/$tdir/f
26704         $RUNAS touch $DIR/$tdir/f
26705         FID=$(lfs path2fid $DIR/$tdir/f)
26706         echo "rmfid as root"
26707         $LFS rmfid $DIR $FID || error "rmfid as root failed"
26708         cnt=$(ls -1 $DIR/$tdir | wc -l)
26709         [ $cnt == 0 ] || error "unexpected #files after (4): $cnt"
26710
26711         rm -f $DIR/$tdir/f
26712         $RUNAS touch $DIR/$tdir/f
26713         cnt=$(ls -1 $DIR/$tdir | wc -l)
26714         [ $cnt != 1 ] && error "unexpected #files (4): $cnt"
26715         FID=$(lfs path2fid $DIR/$tdir/f)
26716         # rmfid w/o user_fid2path mount option should fail
26717         $RUNAS $LFS rmfid $DIR $FID && error "rmfid didn't fail(3)"
26718         cnt=$(ls -1 $DIR/$tdir | wc -l)
26719         [ $cnt == 1 ] || error "unexpected #files after (5): $cnt"
26720
26721         tmpdir=$(mktemp -d /tmp/lustre-XXXXXX)
26722         stack_trap "rmdir $tmpdir"
26723         mount_client $tmpdir "$MOUNT_OPTS,user_fid2path" ||
26724                 error "failed to mount client'"
26725         stack_trap "umount_client $tmpdir"
26726
26727         $RUNAS $LFS rmfid $tmpdir $FID || error "rmfid failed"
26728         # rmfid should succeed
26729         cnt=$(ls -1 $tmpdir/$tdir | wc -l)
26730         [ $cnt == 0 ] || error "unexpected #files after (6): $cnt"
26731
26732         # rmfid shouldn't allow to remove files due to dir's permission
26733         chmod a+rwx $tmpdir/$tdir
26734         touch $tmpdir/$tdir/f
26735         ls -la $tmpdir/$tdir
26736         FID=$(lfs path2fid $tmpdir/$tdir/f)
26737         $RUNAS $LFS rmfid $tmpdir $FID && error "rmfid didn't fail"
26738         return 0
26739 }
26740 run_test 421f "rmfid checks permissions"
26741
26742 test_421g() {
26743         local cnt
26744         local FIDS
26745
26746         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
26747         [ $MDS1_VERSION -lt $(version_code 2.12.54) ] &&
26748                 skip "Need MDS version at least 2.12.54"
26749
26750         mkdir -p $DIR/$tdir
26751         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
26752         createmany -o $DIR/$tdir/striped_dir/f 512
26753         cnt=$(ls -1 $DIR/$tdir/striped_dir | wc -l)
26754         [ $cnt != 512 ] && error "unexpected #files: $cnt"
26755
26756         FIDS=$(lfs path2fid $DIR/$tdir/striped_dir/f* |
26757                 sed "s/[/][^:]*://g")
26758
26759         rm -f $DIR/$tdir/striped_dir/f1*
26760         cnt=$(ls -1 $DIR/$tdir/striped_dir | wc -l)
26761         removed=$((512 - cnt))
26762
26763         # few files have been just removed, so we expect
26764         # rmfid to fail on their fids
26765         errors=$($LFS rmfid $DIR $FIDS 2>&1 | wc -l)
26766         [ $removed != $errors ] && error "$errors != $removed"
26767
26768         cnt=$(ls $DIR/$tdir/striped_dir | wc -l)
26769         rm -rf $DIR/$tdir
26770         [ $cnt == 0 ] || error "unexpected #files after: $cnt"
26771 }
26772 run_test 421g "rmfid to return errors properly"
26773
26774 test_422() {
26775         test_mkdir -i 0 -c 1 -p $DIR/$tdir/d1
26776         test_mkdir -i 0 -c 1 -p $DIR/$tdir/d2
26777         test_mkdir -i 0 -c 1 -p $DIR/$tdir/d3
26778         dd if=/dev/zero of=$DIR/$tdir/d1/file1 bs=1k count=1
26779         dd if=/dev/zero of=$DIR/$tdir/d2/file1 bs=1k count=1
26780
26781         local amc=$(at_max_get client)
26782         local amo=$(at_max_get mds1)
26783         local timeout=`lctl get_param -n timeout`
26784
26785         at_max_set 0 client
26786         at_max_set 0 mds1
26787
26788 #define OBD_FAIL_PTLRPC_PAUSE_REQ        0x50a
26789         do_facet mds1 $LCTL set_param fail_loc=0x8000050a \
26790                         fail_val=$(((2*timeout + 10)*1000))
26791         touch $DIR/$tdir/d3/file &
26792         sleep 2
26793 #define OBD_FAIL_TGT_REPLY_DATA_RACE     0x722
26794         do_facet mds1 $LCTL set_param fail_loc=0x80000722 \
26795                         fail_val=$((2*timeout + 5))
26796         mv $DIR/$tdir/d1/file1 $DIR/$tdir/d1/file2 &
26797         local pid=$!
26798         sleep 1
26799         kill -9 $pid
26800         sleep $((2 * timeout))
26801         echo kill $pid
26802         kill -9 $pid
26803         lctl mark touch
26804         touch $DIR/$tdir/d2/file3
26805         touch $DIR/$tdir/d2/file4
26806         touch $DIR/$tdir/d2/file5
26807
26808         wait
26809         at_max_set $amc client
26810         at_max_set $amo mds1
26811
26812         # LU-12838 - verify the ptlrpc thread watchdog is not always throttled
26813         do_facet mds1 "dmesg | grep 'Dumping the stack trace for debugging'" ||
26814                 error "Watchdog is always throttled"
26815 }
26816 run_test 422 "kill a process with RPC in progress"
26817
26818 stat_test() {
26819     df -h $MOUNT &
26820     df -h $MOUNT &
26821     df -h $MOUNT &
26822     df -h $MOUNT &
26823     df -h $MOUNT &
26824     df -h $MOUNT &
26825 }
26826
26827 test_423() {
26828     local _stats
26829     # ensure statfs cache is expired
26830     sleep 2;
26831
26832     _stats=$(stat_test | grep $MOUNT | sort -u | wc -l)
26833     [[ ${_stats} -ne 1 ]] && error "statfs wrong"
26834
26835     return 0
26836 }
26837 run_test 423 "statfs should return a right data"
26838
26839 test_424() {
26840 #define OBD_FAIL_PTLRPC_BULK_REPLY_ATTACH      0x522 | OBD_FAIL_ONCE
26841         $LCTL set_param fail_loc=0x80000522
26842         dd if=/dev/zero of=$DIR/$tfile bs=2M count=1 oflag=sync
26843         rm -f $DIR/$tfile
26844 }
26845 run_test 424 "simulate ENOMEM in ptl_send_rpc bulk reply ME attach"
26846
26847 test_425() {
26848         test_mkdir -c -1 $DIR/$tdir
26849         $LFS setstripe -c -1 $DIR/$tdir
26850
26851         lru_resize_disable "" 100
26852         stack_trap "lru_resize_enable" EXIT
26853
26854         sleep 5
26855
26856         for i in $(seq $((MDSCOUNT * 125))); do
26857                 local t=$DIR/$tdir/$tfile_$i
26858
26859                 dd if=/dev/zero of=$t bs=4K count=1 > /dev/null 2>&1 ||
26860                         error_noexit "Create file $t"
26861         done
26862         stack_trap "rm -rf $DIR/$tdir" EXIT
26863
26864         for oscparam in $($LCTL list_param ldlm.namespaces.*osc-[-0-9a-f]*); do
26865                 local lru_size=$($LCTL get_param -n $oscparam.lru_size)
26866                 local lock_count=$($LCTL get_param -n $oscparam.lock_count)
26867
26868                 [ $lock_count -le $lru_size ] ||
26869                         error "osc lock count $lock_count > lru size $lru_size"
26870         done
26871
26872         for mdcparam in $($LCTL list_param ldlm.namespaces.*mdc-*); do
26873                 local lru_size=$($LCTL get_param -n $mdcparam.lru_size)
26874                 local lock_count=$($LCTL get_param -n $mdcparam.lock_count)
26875
26876                 [ $lock_count -le $lru_size ] ||
26877                         error "mdc lock count $lock_count > lru size $lru_size"
26878         done
26879 }
26880 run_test 425 "lock count should not exceed lru size"
26881
26882 test_426() {
26883         splice-test -r $DIR/$tfile
26884         splice-test -rd $DIR/$tfile
26885         splice-test $DIR/$tfile
26886         splice-test -d $DIR/$tfile
26887 }
26888 run_test 426 "splice test on Lustre"
26889
26890 test_427() {
26891         [ $MDSCOUNT -ge 2 ] || skip "needs >= 2 MDTs"
26892         (( $MDS1_VERSION >= $(version_code 2.12.4) )) ||
26893                 skip "Need MDS version at least 2.12.4"
26894         local log
26895
26896         mkdir $DIR/$tdir
26897         mkdir $DIR/$tdir/1
26898         mkdir $DIR/$tdir/2
26899         test_mkdir -c $MDSCOUNT -i 1 $DIR/$tdir/1/dir
26900         test_mkdir -c $MDSCOUNT -i 1 $DIR/$tdir/2/dir2
26901
26902         $LFS getdirstripe $DIR/$tdir/1/dir
26903
26904         #first setfattr for creating updatelog
26905         setfattr -n user.attr0 -v "some text" $DIR/$tdir/1/dir
26906
26907 #define OBD_FAIL_OUT_OBJECT_MISS        0x1708
26908         do_nodes $(comma_list $(mdts_nodes)) $LCTL set_param fail_loc=0x80001708
26909         setfattr -n user.attr1 -v "some text" $DIR/$tdir/1/dir &
26910         setfattr -n user.attr2 -v "another attr"  $DIR/$tdir/2/dir2 &
26911
26912         sleep 2
26913         fail mds2
26914         wait_recovery_complete mds2 $((2*TIMEOUT))
26915
26916         log=$(do_facet mds1 dmesg | tac | sed "/${TESTNAME//_/ }/,$ d")
26917         echo $log | grep "get update log failed" &&
26918                 error "update log corruption is detected" || true
26919 }
26920 run_test 427 "Failed DNE2 update request shouldn't corrupt updatelog"
26921
26922 test_428() {
26923         [ $PARALLEL == "yes" ] && skip "skip parallel run"
26924         local cache_limit=$CACHE_MAX
26925
26926         stack_trap "$LCTL set_param -n llite.*.max_cached_mb=$cache_limit"
26927         $LCTL set_param -n llite.*.max_cached_mb=64
26928
26929         mkdir $DIR/$tdir
26930         $LFS setstripe -c 1 $DIR/$tdir
26931         eval touch $DIR/$tdir/$tfile.{1..$OSTCOUNT}
26932         stack_trap "rm -f $DIR/$tdir/$tfile.*"
26933         #test write
26934         for f in $(seq 4); do
26935                 dd if=/dev/zero of=$DIR/$tdir/$tfile.$f bs=128M count=1 &
26936         done
26937         wait
26938
26939         cancel_lru_locks osc
26940         # Test read
26941         for f in $(seq 4); do
26942                 dd if=$DIR/$tdir/$tfile.$f of=/dev/null bs=128M count=1 &
26943         done
26944         wait
26945 }
26946 run_test 428 "large block size IO should not hang"
26947
26948 test_429() { # LU-7915 / LU-10948
26949         local ll_opencache_threshold_count="llite.*.opencache_threshold_count"
26950         local testfile=$DIR/$tfile
26951         local mdc_rpcstats="mdc.$FSNAME-MDT0000-*.stats"
26952         local new_flag=1
26953         local first_rpc
26954         local second_rpc
26955         local third_rpc
26956
26957         $LCTL get_param $ll_opencache_threshold_count ||
26958                 skip "client does not have opencache parameter"
26959
26960         set_opencache $new_flag
26961         stack_trap "restore_opencache"
26962         [ $($LCTL get_param -n $ll_opencache_threshold_count) == $new_flag ] ||
26963                 error "enable opencache failed"
26964         touch $testfile
26965         # drop MDC DLM locks
26966         cancel_lru_locks mdc
26967         # clear MDC RPC stats counters
26968         $LCTL set_param $mdc_rpcstats=clear
26969
26970         # According to the current implementation, we need to run 3 times
26971         # open & close file to verify if opencache is enabled correctly.
26972         # 1st, RPCs are sent for lookup/open and open handle is released on
26973         #      close finally.
26974         # 2nd, RPC is sent for open, MDS_OPEN_LOCK is fetched automatically,
26975         #      so open handle won't be released thereafter.
26976         # 3rd, No RPC is sent out.
26977         $MULTIOP $testfile oc || error "multiop failed"
26978         first_rpc=$(calc_stats $mdc_rpcstats ldlm_ibits_enqueue)
26979         echo "1st: $first_rpc RPCs in flight"
26980
26981         $MULTIOP $testfile oc || error "multiop failed"
26982         second_rpc=$(calc_stats $mdc_rpcstats ldlm_ibits_enqueue)
26983         echo "2nd: $second_rpc RPCs in flight"
26984
26985         $MULTIOP $testfile oc || error "multiop failed"
26986         third_rpc=$(calc_stats $mdc_rpcstats ldlm_ibits_enqueue)
26987         echo "3rd: $third_rpc RPCs in flight"
26988
26989         #verify no MDC RPC is sent
26990         [[ $second_rpc == $third_rpc ]] || error "MDC RPC is still sent"
26991 }
26992 run_test 429 "verify if opencache flag on client side does work"
26993
26994 lseek_test_430() {
26995         local offset
26996         local file=$1
26997
26998         # data at [200K, 400K)
26999         dd if=/dev/urandom of=$file bs=256K count=1 seek=1 ||
27000                 error "256K->512K dd fails"
27001         # data at [2M, 3M)
27002         dd if=/dev/urandom of=$file bs=1M count=1 seek=2 ||
27003                 error "2M->3M dd fails"
27004         # data at [4M, 5M)
27005         dd if=/dev/urandom of=$file bs=1M count=1 seek=4 ||
27006                 error "4M->5M dd fails"
27007         echo "Data at 256K...512K, 2M...3M and 4M...5M"
27008         # start at first component hole #1
27009         printf "Seeking hole from 1000 ... "
27010         offset=$(lseek_test -l 1000 $file)
27011         echo $offset
27012         [[ $offset == 1000 ]] || error "offset $offset != 1000"
27013         printf "Seeking data from 1000 ... "
27014         offset=$(lseek_test -d 1000 $file)
27015         echo $offset
27016         [[ $offset == 262144 ]] || error "offset $offset != 262144"
27017
27018         # start at first component data block
27019         printf "Seeking hole from 300000 ... "
27020         offset=$(lseek_test -l 300000 $file)
27021         echo $offset
27022         [[ $offset == 524288 ]] || error "offset $offset != 524288"
27023         printf "Seeking data from 300000 ... "
27024         offset=$(lseek_test -d 300000 $file)
27025         echo $offset
27026         [[ $offset == 300000 ]] || error "offset $offset != 300000"
27027
27028         # start at the first component but beyond end of object size
27029         printf "Seeking hole from 1000000 ... "
27030         offset=$(lseek_test -l 1000000 $file)
27031         echo $offset
27032         [[ $offset == 1000000 ]] || error "offset $offset != 1000000"
27033         printf "Seeking data from 1000000 ... "
27034         offset=$(lseek_test -d 1000000 $file)
27035         echo $offset
27036         [[ $offset == 2097152 ]] || error "offset $offset != 2097152"
27037
27038         # start at second component stripe 2 (empty file)
27039         printf "Seeking hole from 1500000 ... "
27040         offset=$(lseek_test -l 1500000 $file)
27041         echo $offset
27042         [[ $offset == 1500000 ]] || error "offset $offset != 1500000"
27043         printf "Seeking data from 1500000 ... "
27044         offset=$(lseek_test -d 1500000 $file)
27045         echo $offset
27046         [[ $offset == 2097152 ]] || error "offset $offset != 2097152"
27047
27048         # start at second component stripe 1 (all data)
27049         printf "Seeking hole from 3000000 ... "
27050         offset=$(lseek_test -l 3000000 $file)
27051         echo $offset
27052         [[ $offset == 3145728 ]] || error "offset $offset != 3145728"
27053         printf "Seeking data from 3000000 ... "
27054         offset=$(lseek_test -d 3000000 $file)
27055         echo $offset
27056         [[ $offset == 3000000 ]] || error "offset $offset != 3000000"
27057
27058         dd if=/dev/urandom of=$file bs=640K count=1 seek=1 ||
27059                 error "2nd dd fails"
27060         echo "Add data block at 640K...1280K"
27061
27062         # start at before new data block, in hole
27063         printf "Seeking hole from 600000 ... "
27064         offset=$(lseek_test -l 600000 $file)
27065         echo $offset
27066         [[ $offset == 600000 ]] || error "offset $offset != 600000"
27067         printf "Seeking data from 600000 ... "
27068         offset=$(lseek_test -d 600000 $file)
27069         echo $offset
27070         [[ $offset == 655360 ]] || error "offset $offset != 655360"
27071
27072         # start at the first component new data block
27073         printf "Seeking hole from 1000000 ... "
27074         offset=$(lseek_test -l 1000000 $file)
27075         echo $offset
27076         [[ $offset == 1310720 ]] || error "offset $offset != 1310720"
27077         printf "Seeking data from 1000000 ... "
27078         offset=$(lseek_test -d 1000000 $file)
27079         echo $offset
27080         [[ $offset == 1000000 ]] || error "offset $offset != 1000000"
27081
27082         # start at second component stripe 2, new data
27083         printf "Seeking hole from 1200000 ... "
27084         offset=$(lseek_test -l 1200000 $file)
27085         echo $offset
27086         [[ $offset == 1310720 ]] || error "offset $offset != 1310720"
27087         printf "Seeking data from 1200000 ... "
27088         offset=$(lseek_test -d 1200000 $file)
27089         echo $offset
27090         [[ $offset == 1200000 ]] || error "offset $offset != 1200000"
27091
27092         # start beyond file end
27093         printf "Using offset > filesize ... "
27094         lseek_test -l 4000000 $file && error "lseek should fail"
27095         printf "Using offset > filesize ... "
27096         lseek_test -d 4000000 $file && error "lseek should fail"
27097
27098         printf "Done\n\n"
27099 }
27100
27101 test_430a() {
27102         $LCTL get_param mdc.*.import | grep -q 'connect_flags:.*seek' ||
27103                 skip "MDT does not support SEEK_HOLE"
27104
27105         $LCTL get_param osc.*.import | grep -q 'connect_flags:.*seek' ||
27106                 skip "OST does not support SEEK_HOLE"
27107
27108         local file=$DIR/$tdir/$tfile
27109
27110         mkdir -p $DIR/$tdir
27111
27112         $LFS setstripe -E 1M -L mdt -E eof -c2 $file
27113         # OST stripe #1 will have continuous data at [1M, 3M)
27114         # OST stripe #2 is empty
27115         echo "Component #1: 1M DoM, component #2: EOF, 2 stripes 1M"
27116         lseek_test_430 $file
27117         rm $file
27118         $LFS setstripe -E 1M -c2 -S 64K -E 10M -c2 -S 1M $file
27119         echo "Component #1: 1M, 2 stripes 64K, component #2: EOF, 2 stripes 1M"
27120         lseek_test_430 $file
27121         rm $file
27122         $LFS setstripe -c2 -S 512K $file
27123         echo "Two stripes, stripe size 512K"
27124         lseek_test_430 $file
27125         rm $file
27126         # FLR with stale mirror
27127         $LFS setstripe -N -E 512K -c1 -S 64K -E eof -c2 -S 512K \
27128                        -N -c2 -S 1M $file
27129         echo "Mirrored file:"
27130         echo "Component #1: 512K, stripe 64K, component #2: EOF, 2 stripes 512K"
27131         echo "Plain 2 stripes 1M"
27132         lseek_test_430 $file
27133         rm $file
27134 }
27135 run_test 430a "lseek: SEEK_DATA/SEEK_HOLE basic functionality"
27136
27137 test_430b() {
27138         $LCTL get_param osc.*.import | grep -q 'connect_flags:.*seek' ||
27139                 skip "OST does not support SEEK_HOLE"
27140
27141         local offset
27142         local file=$DIR/$tdir/$tfile
27143
27144         mkdir -p $DIR/$tdir
27145         # Empty layout lseek should fail
27146         $MCREATE $file
27147         # seek from 0
27148         printf "Seeking hole from 0 ... "
27149         lseek_test -l 0 $file && error "lseek should fail"
27150         printf "Seeking data from 0 ... "
27151         lseek_test -d 0 $file && error "lseek should fail"
27152         rm $file
27153
27154         # 1M-hole file
27155         $LFS setstripe -E 1M -c2 -E eof $file
27156         $TRUNCATE $file 1048576
27157         printf "Seeking hole from 1000000 ... "
27158         offset=$(lseek_test -l 1000000 $file)
27159         echo $offset
27160         [[ $offset == 1000000 ]] || error "offset $offset != 1000000"
27161         printf "Seeking data from 1000000 ... "
27162         lseek_test -d 1000000 $file && error "lseek should fail"
27163         rm $file
27164
27165         # full component followed by non-inited one
27166         $LFS setstripe -E 1M -c2 -E eof $file
27167         dd if=/dev/urandom of=$file bs=1M count=1
27168         printf "Seeking hole from 1000000 ... "
27169         offset=$(lseek_test -l 1000000 $file)
27170         echo $offset
27171         [[ $offset == 1048576 ]] || error "offset $offset != 1048576"
27172         printf "Seeking hole from 1048576 ... "
27173         lseek_test -l 1048576 $file && error "lseek should fail"
27174         # init second component and truncate back
27175         echo "123" >> $file
27176         $TRUNCATE $file 1048576
27177         printf "Seeking hole from 1000000 ... "
27178         offset=$(lseek_test -l 1000000 $file)
27179         echo $offset
27180         [[ $offset == 1048576 ]] || error "offset $offset != 1048576"
27181         printf "Seeking hole from 1048576 ... "
27182         lseek_test -l 1048576 $file && error "lseek should fail"
27183         # boundary checks for big values
27184         dd if=/dev/urandom of=$file.10g bs=1 count=1 seek=10G
27185         offset=$(lseek_test -d 0 $file.10g)
27186         [[ $offset == 10737418240 ]] || error "offset $offset != 10737418240"
27187         dd if=/dev/urandom of=$file.100g bs=1 count=1 seek=100G
27188         offset=$(lseek_test -d 0 $file.100g)
27189         [[ $offset == 107374182400 ]] || error "offset $offset != 107374182400"
27190         return 0
27191 }
27192 run_test 430b "lseek: SEEK_DATA/SEEK_HOLE special cases"
27193
27194 test_430c() {
27195         $LCTL get_param osc.*.import | grep -q 'connect_flags:.*seek' ||
27196                 skip "OST does not support SEEK_HOLE"
27197
27198         local file=$DIR/$tdir/$tfile
27199         local start
27200
27201         mkdir -p $DIR/$tdir
27202         dd if=/dev/urandom of=$file bs=1k count=1 seek=5M
27203
27204         # cp version 8.33+ prefers lseek over fiemap
27205         if [[ $(cp --version | head -n1 | sed "s/[^0-9]//g") -ge 833 ]]; then
27206                 start=$SECONDS
27207                 time cp $file /dev/null
27208                 (( SECONDS - start < 5 )) ||
27209                         error "cp: too long runtime $((SECONDS - start))"
27210
27211         fi
27212         # tar version 1.29+ supports SEEK_HOLE/DATA
27213         if [[ $(tar --version | head -n1 | sed "s/[^0-9]//g") -ge 129 ]]; then
27214                 start=$SECONDS
27215                 time tar cS $file - | cat > /dev/null
27216                 (( SECONDS - start < 5 )) ||
27217                         error "tar: too long runtime $((SECONDS - start))"
27218         fi
27219 }
27220 run_test 430c "lseek: external tools check"
27221
27222 test_431() { # LU-14187
27223         local file=$DIR/$tdir/$tfile
27224
27225         mkdir -p $DIR/$tdir
27226         $LFS setstripe -c 1 -i 0 $file || error "lfs setstripe failed"
27227         dd if=/dev/urandom of=$file bs=4k count=1
27228         dd if=/dev/urandom of=$file bs=4k count=1 seek=10 conv=notrunc
27229         dd if=/dev/urandom of=$file bs=4k count=1 seek=12 conv=notrunc
27230         #define OBD_FAIL_OST_RESTART_IO 0x251
27231         do_facet ost1 "$LCTL set_param fail_loc=0x251"
27232         $LFS setstripe -c 1 -i 0 $file.0 || error "lfs setstripe failed"
27233         cp $file $file.0
27234         cancel_lru_locks
27235         sync_all_data
27236         echo 3 > /proc/sys/vm/drop_caches
27237         diff  $file $file.0 || error "data diff"
27238 }
27239 run_test 431 "Restart transaction for IO"
27240
27241 cleanup_test_432() {
27242         do_facet mgs $LCTL nodemap_activate 0
27243         wait_nm_sync active
27244 }
27245
27246 test_432() {
27247         local tmpdir=$TMP/dir432
27248
27249         (( $MDS1_VERSION >= $(version_code 2.14.52) )) ||
27250                 skip "Need MDS version at least 2.14.52"
27251
27252         stack_trap cleanup_test_432 EXIT
27253         mkdir $DIR/$tdir
27254         mkdir $tmpdir
27255
27256         do_facet mgs $LCTL nodemap_activate 1
27257         wait_nm_sync active
27258         do_facet mgs $LCTL nodemap_modify --name default \
27259                 --property admin --value 1
27260         do_facet mgs $LCTL nodemap_modify --name default \
27261                 --property trusted --value 1
27262         cancel_lru_locks mdc
27263         wait_nm_sync default admin_nodemap
27264         wait_nm_sync default trusted_nodemap
27265
27266         if [ $(mv $tmpdir $DIR/$tdir/ 2>&1 |
27267                grep -ci "Operation not permitted") -ne 0 ]; then
27268                 error "mv $tmpdir $DIR/$tdir/ hits 'Operation not permitted'"
27269         fi
27270 }
27271 run_test 432 "mv dir from outside Lustre"
27272
27273 test_433() {
27274         [ $PARALLEL == "yes" ] && skip "skip parallel run"
27275
27276         [[ -n "$($LCTL list_param llite.*.inode_cache 2>/dev/null)" ]] ||
27277                 skip "inode cache not supported"
27278
27279         $LCTL set_param llite.*.inode_cache=0
27280         stack_trap "$LCTL set_param llite.*.inode_cache=1"
27281
27282         local count=256
27283         local before
27284         local after
27285
27286         cancel_lru_locks mdc
27287         test_mkdir $DIR/$tdir || error "mkdir $tdir"
27288         createmany -m $DIR/$tdir/f $count
27289         createmany -d $DIR/$tdir/d $count
27290         ls -l $DIR/$tdir > /dev/null
27291         stack_trap "rm -rf $DIR/$tdir"
27292
27293         before=$(num_objects)
27294         cancel_lru_locks mdc
27295         after=$(num_objects)
27296
27297         # sometimes even @before is less than 2 * count
27298         while (( before - after < count )); do
27299                 sleep 1
27300                 after=$(num_objects)
27301                 wait=$((wait + 1))
27302                 (( wait % 5 == 0 )) && echo "wait $wait seconds objects: $after"
27303                 if (( wait > 60 )); then
27304                         error "inode slab grew from $before to $after"
27305                 fi
27306         done
27307
27308         echo "lustre_inode_cache $before objs before lock cancel, $after after"
27309 }
27310 run_test 433 "ldlm lock cancel releases dentries and inodes"
27311
27312 prep_801() {
27313         [[ $MDS1_VERSION -lt $(version_code 2.9.55) ]] ||
27314         [[ $OST1_VERSION -lt $(version_code 2.9.55) ]] &&
27315                 skip "Need server version at least 2.9.55"
27316
27317         start_full_debug_logging
27318 }
27319
27320 post_801() {
27321         stop_full_debug_logging
27322 }
27323
27324 barrier_stat() {
27325         if [ $MGS_VERSION -le $(version_code 2.10.0) ]; then
27326                 local st=$(do_facet mgs $LCTL barrier_stat $FSNAME |
27327                            awk '/The barrier for/ { print $7 }')
27328                 echo $st
27329         else
27330                 local st=$(do_facet mgs $LCTL barrier_stat -s $FSNAME)
27331                 echo \'$st\'
27332         fi
27333 }
27334
27335 barrier_expired() {
27336         local expired
27337
27338         if [ $MGS_VERSION -le $(version_code 2.10.0) ]; then
27339                 expired=$(do_facet mgs $LCTL barrier_stat $FSNAME |
27340                           awk '/will be expired/ { print $7 }')
27341         else
27342                 expired=$(do_facet mgs $LCTL barrier_stat -t $FSNAME)
27343         fi
27344
27345         echo $expired
27346 }
27347
27348 test_801a() {
27349         prep_801
27350
27351         echo "Start barrier_freeze at: $(date)"
27352         #define OBD_FAIL_BARRIER_DELAY          0x2202
27353         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
27354         # Do not reduce barrier time - See LU-11873
27355         do_facet mgs $LCTL barrier_freeze $FSNAME 20 &
27356
27357         sleep 2
27358         local b_status=$(barrier_stat)
27359         echo "Got barrier status at: $(date)"
27360         [ "$b_status" = "'freezing_p1'" ] ||
27361                 error "(1) unexpected barrier status $b_status"
27362
27363         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
27364         wait
27365         b_status=$(barrier_stat)
27366         [ "$b_status" = "'frozen'" ] ||
27367                 error "(2) unexpected barrier status $b_status"
27368
27369         local expired=$(barrier_expired)
27370         echo "sleep $((expired + 3)) seconds, then the barrier will be expired"
27371         sleep $((expired + 3))
27372
27373         b_status=$(barrier_stat)
27374         [ "$b_status" = "'expired'" ] ||
27375                 error "(3) unexpected barrier status $b_status"
27376
27377         # Do not reduce barrier time - See LU-11873
27378         do_facet mgs $LCTL barrier_freeze $FSNAME 20 ||
27379                 error "(4) fail to freeze barrier"
27380
27381         b_status=$(barrier_stat)
27382         [ "$b_status" = "'frozen'" ] ||
27383                 error "(5) unexpected barrier status $b_status"
27384
27385         echo "Start barrier_thaw at: $(date)"
27386         #define OBD_FAIL_BARRIER_DELAY          0x2202
27387         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
27388         do_facet mgs $LCTL barrier_thaw $FSNAME &
27389
27390         sleep 2
27391         b_status=$(barrier_stat)
27392         echo "Got barrier status at: $(date)"
27393         [ "$b_status" = "'thawing'" ] ||
27394                 error "(6) unexpected barrier status $b_status"
27395
27396         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
27397         wait
27398         b_status=$(barrier_stat)
27399         [ "$b_status" = "'thawed'" ] ||
27400                 error "(7) unexpected barrier status $b_status"
27401
27402         #define OBD_FAIL_BARRIER_FAILURE        0x2203
27403         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2203
27404         do_facet mgs $LCTL barrier_freeze $FSNAME
27405
27406         b_status=$(barrier_stat)
27407         [ "$b_status" = "'failed'" ] ||
27408                 error "(8) unexpected barrier status $b_status"
27409
27410         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
27411         do_facet mgs $LCTL barrier_thaw $FSNAME
27412
27413         post_801
27414 }
27415 run_test 801a "write barrier user interfaces and stat machine"
27416
27417 test_801b() {
27418         prep_801
27419
27420         mkdir $DIR/$tdir || error "(1) fail to mkdir"
27421         createmany -d $DIR/$tdir/d 6 || error "(2) fail to mkdir"
27422         touch $DIR/$tdir/d2/f10 || error "(3) fail to touch"
27423         touch $DIR/$tdir/d3/f11 || error "(4) fail to touch"
27424         touch $DIR/$tdir/d4/f12 || error "(5) fail to touch"
27425
27426         cancel_lru_locks mdc
27427
27428         # 180 seconds should be long enough
27429         do_facet mgs $LCTL barrier_freeze $FSNAME 180
27430
27431         local b_status=$(barrier_stat)
27432         [ "$b_status" = "'frozen'" ] ||
27433                 error "(6) unexpected barrier status $b_status"
27434
27435         mkdir $DIR/$tdir/d0/d10 &
27436         mkdir_pid=$!
27437
27438         touch $DIR/$tdir/d1/f13 &
27439         touch_pid=$!
27440
27441         ln $DIR/$tdir/d2/f10 $DIR/$tdir/d2/f14 &
27442         ln_pid=$!
27443
27444         mv $DIR/$tdir/d3/f11 $DIR/$tdir/d3/f15 &
27445         mv_pid=$!
27446
27447         rm -f $DIR/$tdir/d4/f12 &
27448         rm_pid=$!
27449
27450         stat $DIR/$tdir/d5 || error "(7) stat should succeed"
27451
27452         # To guarantee taht the 'stat' is not blocked
27453         b_status=$(barrier_stat)
27454         [ "$b_status" = "'frozen'" ] ||
27455                 error "(8) unexpected barrier status $b_status"
27456
27457         # let above commands to run at background
27458         sleep 5
27459
27460         ps -p $mkdir_pid || error "(9) mkdir should be blocked"
27461         ps -p $touch_pid || error "(10) touch should be blocked"
27462         ps -p $ln_pid || error "(11) link should be blocked"
27463         ps -p $mv_pid || error "(12) rename should be blocked"
27464         ps -p $rm_pid || error "(13) unlink should be blocked"
27465
27466         b_status=$(barrier_stat)
27467         [ "$b_status" = "'frozen'" ] ||
27468                 error "(14) unexpected barrier status $b_status"
27469
27470         do_facet mgs $LCTL barrier_thaw $FSNAME
27471         b_status=$(barrier_stat)
27472         [ "$b_status" = "'thawed'" ] ||
27473                 error "(15) unexpected barrier status $b_status"
27474
27475         wait $mkdir_pid || error "(16) mkdir should succeed"
27476         wait $touch_pid || error "(17) touch should succeed"
27477         wait $ln_pid || error "(18) link should succeed"
27478         wait $mv_pid || error "(19) rename should succeed"
27479         wait $rm_pid || error "(20) unlink should succeed"
27480
27481         post_801
27482 }
27483 run_test 801b "modification will be blocked by write barrier"
27484
27485 test_801c() {
27486         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
27487
27488         prep_801
27489
27490         stop mds2 || error "(1) Fail to stop mds2"
27491
27492         do_facet mgs $LCTL barrier_freeze $FSNAME 30
27493
27494         local b_status=$(barrier_stat)
27495         [ "$b_status" = "'expired'" ] || [ "$b_status" = "'failed'" ] || {
27496                 do_facet mgs $LCTL barrier_thaw $FSNAME
27497                 error "(2) unexpected barrier status $b_status"
27498         }
27499
27500         do_facet mgs $LCTL barrier_rescan $FSNAME ||
27501                 error "(3) Fail to rescan barrier bitmap"
27502
27503         # Do not reduce barrier time - See LU-11873
27504         do_facet mgs $LCTL barrier_freeze $FSNAME 20
27505
27506         b_status=$(barrier_stat)
27507         [ "$b_status" = "'frozen'" ] ||
27508                 error "(4) unexpected barrier status $b_status"
27509
27510         do_facet mgs $LCTL barrier_thaw $FSNAME
27511         b_status=$(barrier_stat)
27512         [ "$b_status" = "'thawed'" ] ||
27513                 error "(5) unexpected barrier status $b_status"
27514
27515         local devname=$(mdsdevname 2)
27516
27517         start mds2 $devname $MDS_MOUNT_OPTS || error "(6) Fail to start mds2"
27518
27519         do_facet mgs $LCTL barrier_rescan $FSNAME ||
27520                 error "(7) Fail to rescan barrier bitmap"
27521
27522         post_801
27523 }
27524 run_test 801c "rescan barrier bitmap"
27525
27526 saved_MGS_MOUNT_OPTS=$MGS_MOUNT_OPTS
27527 saved_MDS_MOUNT_OPTS=$MDS_MOUNT_OPTS
27528 saved_OST_MOUNT_OPTS=$OST_MOUNT_OPTS
27529 saved_MOUNT_OPTS=$MOUNT_OPTS
27530
27531 cleanup_802a() {
27532         trap 0
27533
27534         stopall
27535         MGS_MOUNT_OPTS=$saved_MGS_MOUNT_OPTS
27536         MDS_MOUNT_OPTS=$saved_MDS_MOUNT_OPTS
27537         OST_MOUNT_OPTS=$saved_OST_MOUNT_OPTS
27538         MOUNT_OPTS=$saved_MOUNT_OPTS
27539         setupall
27540 }
27541
27542 test_802a() {
27543         [[ $mds1_FSTYPE = zfs ]] || skip "ZFS specific test"
27544         [[ $MDS1_VERSION -lt $(version_code 2.9.55) ]] ||
27545         [[ $OST1_VERSION -lt $(version_code 2.9.55) ]] &&
27546                 skip "Need server version at least 2.9.55"
27547
27548         [[ $ENABLE_QUOTA ]] && skip "Quota enabled for read-only test"
27549
27550         mkdir $DIR/$tdir || error "(1) fail to mkdir"
27551
27552         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
27553                 error "(2) Fail to copy"
27554
27555         trap cleanup_802a EXIT
27556
27557         # sync by force before remount as readonly
27558         sync; sync_all_data; sleep 3; sync_all_data
27559
27560         stopall
27561
27562         MGS_MOUNT_OPTS=$(csa_add "$MGS_MOUNT_OPTS" -o rdonly_dev)
27563         MDS_MOUNT_OPTS=$(csa_add "$MDS_MOUNT_OPTS" -o rdonly_dev)
27564         OST_MOUNT_OPTS=$(csa_add "$OST_MOUNT_OPTS" -o rdonly_dev)
27565
27566         echo "Mount the server as read only"
27567         setupall server_only || error "(3) Fail to start servers"
27568
27569         echo "Mount client without ro should fail"
27570         mount_client $MOUNT &&
27571                 error "(4) Mount client without 'ro' should fail"
27572
27573         echo "Mount client with ro should succeed"
27574         MOUNT_OPTS=$(csa_add "$MOUNT_OPTS" -o ro)
27575         mount_client $MOUNT ||
27576                 error "(5) Mount client with 'ro' should succeed"
27577
27578         echo "Modify should be refused"
27579         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
27580
27581         echo "Read should be allowed"
27582         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
27583                 error "(7) Read should succeed under ro mode"
27584
27585         cleanup_802a
27586 }
27587 run_test 802a "simulate readonly device"
27588
27589 test_802b() {
27590         [ $PARALLEL == "yes" ] && skip "skip parallel run"
27591         remote_mds_nodsh && skip "remote MDS with nodsh"
27592
27593         do_facet $SINGLEMDS $LCTL get_param mdt.*.readonly ||
27594                 skip "readonly option not available"
27595
27596         $LFS mkdir -i 0 -c 1 $DIR/$tdir || error "(1) fail to mkdir"
27597
27598         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
27599                 error "(2) Fail to copy"
27600
27601         # write back all cached data before setting MDT to readonly
27602         cancel_lru_locks
27603         sync_all_data
27604
27605         do_facet $SINGLEMDS $LCTL set_param mdt.*.readonly=1
27606         stack_trap "do_facet $SINGLEMDS $LCTL set_param mdt.*.readonly=0" EXIT
27607
27608         echo "Modify should be refused"
27609         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
27610
27611         echo "Read should be allowed"
27612         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
27613                 error "(7) Read should succeed under ro mode"
27614
27615         # disable readonly
27616         do_facet $SINGLEMDS $LCTL set_param mdt.*.readonly=0
27617 }
27618 run_test 802b "be able to set MDTs to readonly"
27619
27620 test_803a() {
27621         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
27622         [ $MDS1_VERSION -lt $(version_code 2.10.54) ] &&
27623                 skip "MDS needs to be newer than 2.10.54"
27624
27625         mkdir_on_mdt0 $DIR/$tdir
27626         # Create some objects on all MDTs to trigger related logs objects
27627         for idx in $(seq $MDSCOUNT); do
27628                 $LFS mkdir -c $MDSCOUNT -i $((idx % $MDSCOUNT)) \
27629                         $DIR/$tdir/dir${idx} ||
27630                         error "Fail to create $DIR/$tdir/dir${idx}"
27631         done
27632
27633         sync; sleep 3
27634         wait_delete_completed # ensure old test cleanups are finished
27635         echo "before create:"
27636         $LFS df -i $MOUNT
27637         local before_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
27638
27639         for i in {1..10}; do
27640                 $LFS mkdir -c 1 -i 1 $DIR/$tdir/foo$i ||
27641                         error "Fail to create $DIR/$tdir/foo$i"
27642         done
27643
27644         sync; sleep 3
27645         echo "after create:"
27646         $LFS df -i $MOUNT
27647         local after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
27648
27649         # allow for an llog to be cleaned up during the test
27650         [ $after_used -ge $((before_used + 10 - 1)) ] ||
27651                 error "before ($before_used) + 10 > after ($after_used)"
27652
27653         for i in {1..10}; do
27654                 rm -rf $DIR/$tdir/foo$i ||
27655                         error "Fail to remove $DIR/$tdir/foo$i"
27656         done
27657
27658         sleep 3 # avoid MDT return cached statfs
27659         wait_delete_completed
27660         echo "after unlink:"
27661         $LFS df -i $MOUNT
27662         after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
27663
27664         # allow for an llog to be created during the test
27665         [ $after_used -le $((before_used + 1)) ] ||
27666                 error "after ($after_used) > before ($before_used) + 1"
27667 }
27668 run_test 803a "verify agent object for remote object"
27669
27670 test_803b() {
27671         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
27672         [ $MDS1_VERSION -lt $(version_code 2.13.56) ] &&
27673                 skip "MDS needs to be newer than 2.13.56"
27674         [ $PARALLEL == "yes" ] && skip "skip parallel run"
27675
27676         for i in $(seq 0 $((MDSCOUNT - 1))); do
27677                 $LFS mkdir -i $i $DIR/$tdir.$i || error "mkdir $tdir.$i"
27678         done
27679
27680         local before=0
27681         local after=0
27682
27683         local tmp
27684
27685         stat $DIR/$tdir.* >/dev/null || error "stat $tdir.*"
27686         for i in $(seq 0 $((MDSCOUNT - 1))); do
27687                 tmp=$(do_facet mds$i $LCTL get_param mdt.*-MDT000$i.md_stats |
27688                         awk '/getattr/ { print $2 }')
27689                 before=$((before + tmp))
27690         done
27691         stat $DIR/$tdir.* >/dev/null || error "stat $tdir.*"
27692         for i in $(seq 0 $((MDSCOUNT - 1))); do
27693                 tmp=$(do_facet mds$i $LCTL get_param mdt.*-MDT000$i.md_stats |
27694                         awk '/getattr/ { print $2 }')
27695                 after=$((after + tmp))
27696         done
27697
27698         [ $before -eq $after ] || error "getattr count $before != $after"
27699 }
27700 run_test 803b "remote object can getattr from cache"
27701
27702 test_804() {
27703         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
27704         [ $MDS1_VERSION -lt $(version_code 2.10.54) ] &&
27705                 skip "MDS needs to be newer than 2.10.54"
27706         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
27707
27708         mkdir -p $DIR/$tdir
27709         $LFS mkdir -c 1 -i 1 $DIR/$tdir/dir0 ||
27710                 error "Fail to create $DIR/$tdir/dir0"
27711
27712         local fid=$($LFS path2fid $DIR/$tdir/dir0)
27713         local dev=$(mdsdevname 2)
27714
27715         do_facet mds2 "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
27716                 grep ${fid} || error "NOT found agent entry for dir0"
27717
27718         $LFS mkdir -c $MDSCOUNT -i 0 $DIR/$tdir/dir1 ||
27719                 error "Fail to create $DIR/$tdir/dir1"
27720
27721         touch $DIR/$tdir/dir1/foo0 ||
27722                 error "Fail to create $DIR/$tdir/dir1/foo0"
27723         fid=$($LFS path2fid $DIR/$tdir/dir1/foo0)
27724         local rc=0
27725
27726         for idx in $(seq $MDSCOUNT); do
27727                 dev=$(mdsdevname $idx)
27728                 do_facet mds${idx} \
27729                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
27730                         grep ${fid} && rc=$idx
27731         done
27732
27733         mv $DIR/$tdir/dir1/foo0 $DIR/$tdir/dir1/foo1 ||
27734                 error "Fail to rename foo0 to foo1"
27735         if [ $rc -eq 0 ]; then
27736                 for idx in $(seq $MDSCOUNT); do
27737                         dev=$(mdsdevname $idx)
27738                         do_facet mds${idx} \
27739                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
27740                         grep ${fid} && rc=$idx
27741                 done
27742         fi
27743
27744         mv $DIR/$tdir/dir1/foo1 $DIR/$tdir/dir1/foo2 ||
27745                 error "Fail to rename foo1 to foo2"
27746         if [ $rc -eq 0 ]; then
27747                 for idx in $(seq $MDSCOUNT); do
27748                         dev=$(mdsdevname $idx)
27749                         do_facet mds${idx} \
27750                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
27751                         grep ${fid} && rc=$idx
27752                 done
27753         fi
27754
27755         [ $rc -ne 0 ] || error "NOT found agent entry for foo"
27756
27757         ln $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir0/guard ||
27758                 error "Fail to link to $DIR/$tdir/dir1/foo2"
27759         mv $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir1/foo0 ||
27760                 error "Fail to rename foo2 to foo0"
27761         unlink $DIR/$tdir/dir1/foo0 ||
27762                 error "Fail to unlink $DIR/$tdir/dir1/foo0"
27763         rm -rf $DIR/$tdir/dir0 ||
27764                 error "Fail to rm $DIR/$tdir/dir0"
27765
27766         for idx in $(seq $MDSCOUNT); do
27767                 rc=0
27768
27769                 stop mds${idx}
27770                 dev=$(mdsdevname $idx)
27771                 run_e2fsck $(facet_active_host mds$idx) $dev -n ||
27772                         rc=$?
27773                 start mds${idx} $dev $MDS_MOUNT_OPTS ||
27774                         error "mount mds$idx failed"
27775                 df $MOUNT > /dev/null 2>&1
27776
27777                 # e2fsck should not return error
27778                 [ $rc -eq 0 ] ||
27779                         error "e2fsck detected error on MDT${idx}: rc=$rc"
27780         done
27781 }
27782 run_test 804 "verify agent entry for remote entry"
27783
27784 cleanup_805() {
27785         do_facet $SINGLEMDS zfs set quota=$old $fsset
27786         unlinkmany $DIR/$tdir/f- 1000000
27787         trap 0
27788 }
27789
27790 test_805() {
27791         local zfs_version=$(do_facet mds1 cat /sys/module/zfs/version)
27792         [ "$mds1_FSTYPE" != "zfs" ] && skip "ZFS specific test"
27793         [ $(version_code $zfs_version) -lt $(version_code 0.7.2) ] &&
27794                 skip "netfree not implemented before 0.7"
27795         [[ $MDS1_VERSION -ge $(version_code 2.10.57) ]] ||
27796                 skip "Need MDS version at least 2.10.57"
27797
27798         local fsset
27799         local freekb
27800         local usedkb
27801         local old
27802         local quota
27803         local pref="osd-zfs.$FSNAME-MDT0000."
27804
27805         # limit available space on MDS dataset to meet nospace issue
27806         # quickly. then ZFS 0.7.2 can use reserved space if asked
27807         # properly (using netfree flag in osd_declare_destroy()
27808         fsset=$(do_facet $SINGLEMDS lctl get_param -n $pref.mntdev)
27809         old=$(do_facet $SINGLEMDS zfs get -H quota $fsset | \
27810                 gawk '{print $3}')
27811         freekb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytesfree)
27812         usedkb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytestotal)
27813         let "usedkb=usedkb-freekb"
27814         let "freekb=freekb/2"
27815         if let "freekb > 5000"; then
27816                 let "freekb=5000"
27817         fi
27818         do_facet $SINGLEMDS zfs set quota=$(((usedkb+freekb)*1024)) $fsset
27819         trap cleanup_805 EXIT
27820         mkdir_on_mdt0 $DIR/$tdir
27821         $LFS setstripe -E 1M -c2 -E 4M -c2 -E -1 -c2 $DIR/$tdir ||
27822                 error "Can't set PFL layout"
27823         createmany -m $DIR/$tdir/f- 1000000 && error "ENOSPC wasn't met"
27824         rm -rf $DIR/$tdir || error "not able to remove"
27825         do_facet $SINGLEMDS zfs set quota=$old $fsset
27826         trap 0
27827 }
27828 run_test 805 "ZFS can remove from full fs"
27829
27830 # Size-on-MDS test
27831 check_lsom_data()
27832 {
27833         local file=$1
27834         local expect=$(stat -c %s $file)
27835
27836         check_lsom_size $1 $expect
27837
27838         local blocks=$($LFS getsom -b $file)
27839         expect=$(stat -c %b $file)
27840         [[ $blocks == $expect ]] ||
27841                 error "$file expected blocks: $expect, got: $blocks"
27842 }
27843
27844 check_lsom_size()
27845 {
27846         local size
27847         local expect=$2
27848
27849         cancel_lru_locks mdc
27850
27851         size=$($LFS getsom -s $1)
27852         [[ $size == $expect ]] ||
27853                 error "$file expected size: $expect, got: $size"
27854 }
27855
27856 test_806() {
27857         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
27858                 skip "Need MDS version at least 2.11.52"
27859
27860         local bs=1048576
27861
27862         touch $DIR/$tfile || error "touch $tfile failed"
27863
27864         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
27865         save_lustre_params client "llite.*.xattr_cache" > $save
27866         lctl set_param llite.*.xattr_cache=0
27867         stack_trap "restore_lustre_params < $save; rm -f $save" EXIT
27868
27869         # single-threaded write
27870         echo "Test SOM for single-threaded write"
27871         dd if=/dev/zero of=$DIR/$tfile bs=$bs count=1 ||
27872                 error "write $tfile failed"
27873         check_lsom_size $DIR/$tfile $bs
27874
27875         local num=32
27876         local size=$(($num * $bs))
27877         local offset=0
27878         local i
27879
27880         echo "Test SOM for single client multi-threaded($num) write"
27881         $TRUNCATE $DIR/$tfile 0
27882         for ((i = 0; i < $num; i++)); do
27883                 $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
27884                 local pids[$i]=$!
27885                 offset=$((offset + $bs))
27886         done
27887         for (( i=0; i < $num; i++ )); do
27888                 wait ${pids[$i]}
27889         done
27890         check_lsom_size $DIR/$tfile $size
27891
27892         $TRUNCATE $DIR/$tfile 0
27893         for ((i = 0; i < $num; i++)); do
27894                 offset=$((offset - $bs))
27895                 $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
27896                 local pids[$i]=$!
27897         done
27898         for (( i=0; i < $num; i++ )); do
27899                 wait ${pids[$i]}
27900         done
27901         check_lsom_size $DIR/$tfile $size
27902
27903         # multi-client writes
27904         num=$(get_node_count ${CLIENTS//,/ })
27905         size=$(($num * $bs))
27906         offset=0
27907         i=0
27908
27909         echo "Test SOM for multi-client ($num) writes"
27910         $TRUNCATE $DIR/$tfile 0
27911         for client in ${CLIENTS//,/ }; do
27912                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
27913                 local pids[$i]=$!
27914                 i=$((i + 1))
27915                 offset=$((offset + $bs))
27916         done
27917         for (( i=0; i < $num; i++ )); do
27918                 wait ${pids[$i]}
27919         done
27920         check_lsom_size $DIR/$tfile $offset
27921
27922         i=0
27923         $TRUNCATE $DIR/$tfile 0
27924         for client in ${CLIENTS//,/ }; do
27925                 offset=$((offset - $bs))
27926                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
27927                 local pids[$i]=$!
27928                 i=$((i + 1))
27929         done
27930         for (( i=0; i < $num; i++ )); do
27931                 wait ${pids[$i]}
27932         done
27933         check_lsom_size $DIR/$tfile $size
27934
27935         # verify truncate
27936         echo "Test SOM for truncate"
27937         $TRUNCATE $DIR/$tfile 1048576
27938         check_lsom_size $DIR/$tfile 1048576
27939         $TRUNCATE $DIR/$tfile 1234
27940         check_lsom_size $DIR/$tfile 1234
27941
27942         # verify SOM blocks count
27943         echo "Verify SOM block count"
27944         $TRUNCATE $DIR/$tfile 0
27945         $MULTIOP $DIR/$tfile oO_TRUNC:O_RDWR:w1048576YSc ||
27946                 error "failed to write file $tfile"
27947         check_lsom_data $DIR/$tfile
27948 }
27949 run_test 806 "Verify Lazy Size on MDS"
27950
27951 test_807() {
27952         [ -n "$FILESET" ] && skip "Not functional for FILESET set"
27953         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
27954                 skip "Need MDS version at least 2.11.52"
27955
27956         # Registration step
27957         changelog_register || error "changelog_register failed"
27958         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
27959         changelog_users $SINGLEMDS | grep -q $cl_user ||
27960                 error "User $cl_user not found in changelog_users"
27961
27962         rm -rf $DIR/$tdir || error "rm $tdir failed"
27963         mkdir_on_mdt0 $DIR/$tdir || error "mkdir $tdir failed"
27964         touch $DIR/$tdir/trunc || error "touch $tdir/trunc failed"
27965         $TRUNCATE $DIR/$tdir/trunc 1024 || error "truncate $tdir/trunc failed"
27966         $TRUNCATE $DIR/$tdir/trunc 1048576 ||
27967                 error "truncate $tdir/trunc failed"
27968
27969         local bs=1048576
27970         dd if=/dev/zero of=$DIR/$tdir/single_dd bs=$bs count=1 conv=fsync ||
27971                 error "write $tfile failed"
27972
27973         # multi-client wirtes
27974         local num=$(get_node_count ${CLIENTS//,/ })
27975         local offset=0
27976         local i=0
27977
27978         echo "Test SOM for multi-client ($num) writes"
27979         touch $DIR/$tfile || error "touch $tfile failed"
27980         $TRUNCATE $DIR/$tfile 0
27981         for client in ${CLIENTS//,/ }; do
27982                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
27983                 local pids[$i]=$!
27984                 i=$((i + 1))
27985                 offset=$((offset + $bs))
27986         done
27987         for (( i=0; i < $num; i++ )); do
27988                 wait ${pids[$i]}
27989         done
27990
27991         do_rpc_nodes "$CLIENTS" cancel_lru_locks osc
27992         do_nodes "$CLIENTS" "sync ; sleep 5 ; sync"
27993         $LSOM_SYNC -u $cl_user -m $FSNAME-MDT0000 $MOUNT
27994         check_lsom_data $DIR/$tdir/trunc
27995         check_lsom_data $DIR/$tdir/single_dd
27996         check_lsom_data $DIR/$tfile
27997
27998         rm -rf $DIR/$tdir
27999         # Deregistration step
28000         changelog_deregister || error "changelog_deregister failed"
28001 }
28002 run_test 807 "verify LSOM syncing tool"
28003
28004 check_som_nologged()
28005 {
28006         local lines=$($LFS changelog $FSNAME-MDT0000 |
28007                 grep 'x=trusted.som' | wc -l)
28008         [ $lines -ne 0 ] && error "trusted.som xattr is logged in Changelogs"
28009 }
28010
28011 test_808() {
28012         [ $MDS1_VERSION -lt $(version_code 2.11.55) ] &&
28013                 skip "Need MDS version at least 2.11.55"
28014
28015         # Registration step
28016         changelog_register || error "changelog_register failed"
28017
28018         touch $DIR/$tfile || error "touch $tfile failed"
28019         check_som_nologged
28020
28021         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=1 ||
28022                 error "write $tfile failed"
28023         check_som_nologged
28024
28025         $TRUNCATE $DIR/$tfile 1234
28026         check_som_nologged
28027
28028         $TRUNCATE $DIR/$tfile 1048576
28029         check_som_nologged
28030
28031         # Deregistration step
28032         changelog_deregister || error "changelog_deregister failed"
28033 }
28034 run_test 808 "Check trusted.som xattr not logged in Changelogs"
28035
28036 check_som_nodata()
28037 {
28038         $LFS getsom $1
28039         [[ $? -eq 61 ]] || error "DoM-only file $1 has SOM xattr"
28040 }
28041
28042 test_809() {
28043         [ $MDS1_VERSION -lt $(version_code 2.11.56) ] &&
28044                 skip "Need MDS version at least 2.11.56"
28045
28046         $LFS setstripe -E 1M -L mdt $DIR/$tfile ||
28047                 error "failed to create DoM-only file $DIR/$tfile"
28048         touch $DIR/$tfile || error "touch $tfile failed"
28049         check_som_nodata $DIR/$tfile
28050
28051         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 ||
28052                 error "write $tfile failed"
28053         check_som_nodata $DIR/$tfile
28054
28055         $TRUNCATE $DIR/$tfile 1234
28056         check_som_nodata $DIR/$tfile
28057
28058         $TRUNCATE $DIR/$tfile 4097
28059         check_som_nodata $DIR/$file
28060 }
28061 run_test 809 "Verify no SOM xattr store for DoM-only files"
28062
28063 test_810() {
28064         [ $PARALLEL == "yes" ] && skip "skip parallel run"
28065         $GSS && skip_env "could not run with gss"
28066         [[ $OST1_VERSION -gt $(version_code 2.12.58) ]] ||
28067                 skip "OST < 2.12.58 doesn't align checksum"
28068
28069         set_checksums 1
28070         stack_trap "set_checksums $ORIG_CSUM" EXIT
28071         stack_trap "set_checksum_type $ORIG_CSUM_TYPE" EXIT
28072
28073         local csum
28074         local before
28075         local after
28076         for csum in $CKSUM_TYPES; do
28077                 #define OBD_FAIL_OSC_NO_GRANT   0x411
28078                 $LCTL set_param osc.*.checksum_type=$csum fail_loc=0x411
28079                 for i in "10240 0" "10000 0" "4000 1" "500 1"; do
28080                         eval set -- $i
28081                         dd if=/dev/urandom of=$DIR/$tfile bs=$1 count=2 seek=$2
28082                         before=$(md5sum $DIR/$tfile)
28083                         $LCTL set_param ldlm.namespaces.*osc*.lru_size=clear
28084                         after=$(md5sum $DIR/$tfile)
28085                         [ "$before" == "$after" ] ||
28086                                 error "$csum: $before != $after bs=$1 seek=$2"
28087                 done
28088         done
28089 }
28090 run_test 810 "partial page writes on ZFS (LU-11663)"
28091
28092 test_812a() {
28093         [ $OST1_VERSION -lt $(version_code 2.12.51) ] &&
28094                 skip "OST < 2.12.51 doesn't support this fail_loc"
28095
28096         $LFS setstripe -c 1 -i 0 $DIR/$tfile
28097         # ensure ost1 is connected
28098         stat $DIR/$tfile >/dev/null || error "can't stat"
28099         wait_osc_import_state client ost1 FULL
28100         # no locks, no reqs to let the connection idle
28101         cancel_lru_locks osc
28102
28103         # delay OST_DISCONNECT on OST1 to put OSC into intermediate state
28104 #define OBD_FAIL_OST_DISCONNECT_DELAY    0x245
28105         do_facet ost1 "$LCTL set_param fail_loc=0x245 fail_val=8"
28106         wait_osc_import_state client ost1 CONNECTING
28107         do_facet ost1 "$LCTL set_param fail_loc=0 fail_val=0"
28108
28109         stat $DIR/$tfile >/dev/null || error "can't stat file"
28110 }
28111 run_test 812a "do not drop reqs generated when imp is going to idle (LU-11951)"
28112
28113 test_812b() { # LU-12378
28114         [ $OST1_VERSION -lt $(version_code 2.12.51) ] &&
28115                 skip "OST < 2.12.51 doesn't support this fail_loc"
28116
28117         $LFS setstripe -c 1 -i 0 $DIR/$tfile || error "setstripe failed"
28118         # ensure ost1 is connected
28119         stat $DIR/$tfile >/dev/null || error "can't stat"
28120         wait_osc_import_state client ost1 FULL
28121         # no locks, no reqs to let the connection idle
28122         cancel_lru_locks osc
28123
28124         # delay OST_DISCONNECT on OST1 to put OSC into intermediate state
28125 #define OBD_FAIL_OST_DISCONNECT_DELAY    0x245
28126         do_facet ost1 "$LCTL set_param fail_loc=0x245 fail_val=8"
28127         wait_osc_import_state client ost1 CONNECTING
28128         do_facet ost1 "$LCTL set_param fail_loc=0 fail_val=0"
28129
28130         $LFS quota -u 0 $DIR/ || error "lfs quota should succeed"
28131         wait_osc_import_state client ost1 IDLE
28132 }
28133 run_test 812b "do not drop no resend request for idle connect"
28134
28135 test_812c() {
28136         local old
28137
28138         old=$($LCTL get_param -n osc.*.idle_timeout | head -n 1)
28139
28140         $LFS setstripe -c 1 -o 0 $DIR/$tfile
28141         $LFS getstripe $DIR/$tfile
28142         $LCTL set_param osc.*.idle_timeout=10
28143         stack_trap "$LCTL set_param osc.*.idle_timeout=$old" EXIT
28144         # ensure ost1 is connected
28145         stat $DIR/$tfile >/dev/null || error "can't stat"
28146         wait_osc_import_state client ost1 FULL
28147         # no locks, no reqs to let the connection idle
28148         cancel_lru_locks osc
28149
28150 #define OBD_FAIL_PTLRPC_IDLE_RACE        0x533
28151         $LCTL set_param fail_loc=0x80000533
28152         sleep 15
28153         dd if=/dev/zero of=$DIR/$tfile count=1 conv=sync || error "dd failed"
28154 }
28155 run_test 812c "idle import vs lock enqueue race"
28156
28157 test_813() {
28158         local file_heat_sav=$($LCTL get_param -n llite.*.file_heat 2>/dev/null)
28159         [ -z "$file_heat_sav" ] && skip "no file heat support"
28160
28161         local readsample
28162         local writesample
28163         local readbyte
28164         local writebyte
28165         local readsample1
28166         local writesample1
28167         local readbyte1
28168         local writebyte1
28169
28170         local period_second=$($LCTL get_param -n llite.*.heat_period_second)
28171         local decay_pct=$($LCTL get_param -n llite.*.heat_decay_percentage)
28172
28173         $LCTL set_param -n llite.*.file_heat=1
28174         echo "Turn on file heat"
28175         echo "Period second: $period_second, Decay percentage: $decay_pct"
28176
28177         echo "QQQQ" > $DIR/$tfile
28178         echo "QQQQ" > $DIR/$tfile
28179         echo "QQQQ" > $DIR/$tfile
28180         cat $DIR/$tfile > /dev/null
28181         cat $DIR/$tfile > /dev/null
28182         cat $DIR/$tfile > /dev/null
28183         cat $DIR/$tfile > /dev/null
28184
28185         local out=$($LFS heat_get $DIR/$tfile)
28186
28187         $LFS heat_get $DIR/$tfile
28188         readsample=$(echo "$out" | grep 'readsample' | awk '{ print $2 }')
28189         writesample=$(echo "$out" | grep 'writesample' | awk '{ print $2 }')
28190         readbyte=$(echo "$out" | grep 'readbyte' | awk '{ print $2 }')
28191         writebyte=$(echo "$out" | grep 'writebyte' | awk '{ print $2 }')
28192
28193         [ $readsample -le 4 ] || error "read sample ($readsample) is wrong"
28194         [ $writesample -le 3 ] || error "write sample ($writesample) is wrong"
28195         [ $readbyte -le 20 ] || error "read bytes ($readbyte) is wrong"
28196         [ $writebyte -le 15 ] || error "write bytes ($writebyte) is wrong"
28197
28198         sleep $((period_second + 3))
28199         echo "Sleep $((period_second + 3)) seconds..."
28200         # The recursion formula to calculate the heat of the file f is as
28201         # follow:
28202         # Hi+1(f) = (1-P)*Hi(f)+ P*Ci
28203         # Where Hi is the heat value in the period between time points i*I and
28204         # (i+1)*I; Ci is the access count in the period; the symbol P refers
28205         # to the weight of Ci.
28206         out=$($LFS heat_get $DIR/$tfile)
28207         $LFS heat_get $DIR/$tfile
28208         readsample=$(echo "$out" | grep 'readsample' | awk '{ print $2 }')
28209         writesample=$(echo "$out" | grep 'writesample' | awk '{ print $2 }')
28210         readbyte=$(echo "$out" | grep 'readbyte' | awk '{ print $2 }')
28211         writebyte=$(echo "$out" | grep 'writebyte' | awk '{ print $2 }')
28212
28213         [ $(bc <<< "$readsample <= 4 * $decay_pct / 100") -eq 1 ] ||
28214                 error "read sample ($readsample) is wrong"
28215         [ $(bc <<< "$writesample <= 3 * $decay_pct / 100") -eq 1 ] ||
28216                 error "write sample ($writesample) is wrong"
28217         [ $(bc <<< "$readbyte <= 20 * $decay_pct / 100") -eq 1 ] ||
28218                 error "read bytes ($readbyte) is wrong"
28219         [ $(bc <<< "$writebyte <= 15 * $decay_pct / 100") -eq 1 ] ||
28220                 error "write bytes ($writebyte) is wrong"
28221
28222         echo "QQQQ" > $DIR/$tfile
28223         echo "QQQQ" > $DIR/$tfile
28224         echo "QQQQ" > $DIR/$tfile
28225         cat $DIR/$tfile > /dev/null
28226         cat $DIR/$tfile > /dev/null
28227         cat $DIR/$tfile > /dev/null
28228         cat $DIR/$tfile > /dev/null
28229
28230         sleep $((period_second + 3))
28231         echo "Sleep $((period_second + 3)) seconds..."
28232
28233         out=$($LFS heat_get $DIR/$tfile)
28234         $LFS heat_get $DIR/$tfile
28235         readsample1=$(echo "$out" | grep 'readsample' | awk '{ print $2 }')
28236         writesample1=$(echo "$out" | grep 'writesample' | awk '{ print $2 }')
28237         readbyte1=$(echo "$out" | grep 'readbyte' | awk '{ print $2 }')
28238         writebyte1=$(echo "$out" | grep 'writebyte' | awk '{ print $2 }')
28239
28240         [ $(bc <<< "$readsample1 <= ($readsample * (100 - $decay_pct) + \
28241                 4 * $decay_pct) / 100") -eq 1 ] ||
28242                 error "read sample ($readsample1) is wrong"
28243         [ $(bc <<< "$writesample1 <= ($writesample * (100 - $decay_pct) + \
28244                 3 * $decay_pct) / 100") -eq 1 ] ||
28245                 error "write sample ($writesample1) is wrong"
28246         [ $(bc <<< "$readbyte1 <= ($readbyte * (100 - $decay_pct) + \
28247                 20 * $decay_pct) / 100") -eq 1 ] ||
28248                 error "read bytes ($readbyte1) is wrong"
28249         [ $(bc <<< "$writebyte1 <= ($writebyte * (100 - $decay_pct) + \
28250                 15 * $decay_pct) / 100") -eq 1 ] ||
28251                 error "write bytes ($writebyte1) is wrong"
28252
28253         echo "Turn off file heat for the file $DIR/$tfile"
28254         $LFS heat_set -o $DIR/$tfile
28255
28256         echo "QQQQ" > $DIR/$tfile
28257         echo "QQQQ" > $DIR/$tfile
28258         echo "QQQQ" > $DIR/$tfile
28259         cat $DIR/$tfile > /dev/null
28260         cat $DIR/$tfile > /dev/null
28261         cat $DIR/$tfile > /dev/null
28262         cat $DIR/$tfile > /dev/null
28263
28264         out=$($LFS heat_get $DIR/$tfile)
28265         $LFS heat_get $DIR/$tfile
28266         readsample=$(echo "$out" | grep 'readsample' | awk '{ print $2 }')
28267         writesample=$(echo "$out" | grep 'writesample' | awk '{ print $2 }')
28268         readbyte=$(echo "$out" | grep 'readbyte' | awk '{ print $2 }')
28269         writebyte=$(echo "$out" | grep 'writebyte' | awk '{ print $2 }')
28270
28271         [ $readsample -eq 0 ] || error "read sample ($readsample) is wrong"
28272         [ $writesample -eq 0 ] || error "write sample ($writesample) is wrong"
28273         [ $readbyte -eq 0 ] || error "read bytes ($readbyte) is wrong"
28274         [ $writebyte -eq 0 ] || error "write bytes ($writebyte) is wrong"
28275
28276         echo "Trun on file heat for the file $DIR/$tfile"
28277         $LFS heat_set -O $DIR/$tfile
28278
28279         echo "QQQQ" > $DIR/$tfile
28280         echo "QQQQ" > $DIR/$tfile
28281         echo "QQQQ" > $DIR/$tfile
28282         cat $DIR/$tfile > /dev/null
28283         cat $DIR/$tfile > /dev/null
28284         cat $DIR/$tfile > /dev/null
28285         cat $DIR/$tfile > /dev/null
28286
28287         out=$($LFS heat_get $DIR/$tfile)
28288         $LFS heat_get $DIR/$tfile
28289         readsample=$(echo "$out" | grep 'readsample' | awk '{ print $2 }')
28290         writesample=$(echo "$out" | grep 'writesample' | awk '{ print $2 }')
28291         readbyte=$(echo "$out" | grep 'readbyte' | awk '{ print $2 }')
28292         writebyte=$(echo "$out" | grep 'writebyte' | awk '{ print $2 }')
28293
28294         [ $readsample -gt 0 ] || error "read sample ($readsample) is wrong"
28295         [ $writesample -gt 0 ] || error "write sample ($writesample) is wrong"
28296         [ $readbyte -gt 0 ] || error "read bytes ($readbyte) is wrong"
28297         [ $writebyte -gt 0 ] || error "write bytes ($writebyte) is wrong"
28298
28299         $LFS heat_set -c $DIR/$tfile
28300         $LCTL set_param -n llite.*.file_heat=0
28301         echo "Turn off file heat support for the Lustre filesystem"
28302
28303         echo "QQQQ" > $DIR/$tfile
28304         echo "QQQQ" > $DIR/$tfile
28305         echo "QQQQ" > $DIR/$tfile
28306         cat $DIR/$tfile > /dev/null
28307         cat $DIR/$tfile > /dev/null
28308         cat $DIR/$tfile > /dev/null
28309         cat $DIR/$tfile > /dev/null
28310
28311         out=$($LFS heat_get $DIR/$tfile)
28312         $LFS heat_get $DIR/$tfile
28313         readsample=$(echo "$out" | grep 'readsample' | awk '{ print $2 }')
28314         writesample=$(echo "$out" | grep 'writesample' | awk '{ print $2 }')
28315         readbyte=$(echo "$out" | grep 'readbyte' | awk '{ print $2 }')
28316         writebyte=$(echo "$out" | grep 'writebyte' | awk '{ print $2 }')
28317
28318         [ $readsample -eq 0 ] || error "read sample ($readsample) is wrong"
28319         [ $writesample -eq 0 ] || error "write sample ($writesample) is wrong"
28320         [ $readbyte -eq 0 ] || error "read bytes ($readbyte) is wrong"
28321         [ $writebyte -eq 0 ] || error "write bytes ($writebyte) is wrong"
28322
28323         $LCTL set_param -n llite.*.file_heat=$file_heat_sav
28324         rm -f $DIR/$tfile
28325 }
28326 run_test 813 "File heat verfication"
28327
28328 test_814()
28329 {
28330         dd of=$DIR/$tfile seek=128 bs=1k < /dev/null
28331         echo -n y >> $DIR/$tfile
28332         cp --sparse=always $DIR/$tfile $DIR/${tfile}.cp || error "copy failed"
28333         diff $DIR/$tfile $DIR/${tfile}.cp || error "files should be same"
28334 }
28335 run_test 814 "sparse cp works as expected (LU-12361)"
28336
28337 test_815()
28338 {
28339         writeme -b 100 $DIR/$tfile || error "write 100 bytes failed"
28340         writeme -b 0 $DIR/$tfile || error "write 0 byte failed"
28341 }
28342 run_test 815 "zero byte tiny write doesn't hang (LU-12382)"
28343
28344 test_816() {
28345         local ost1_imp=$(get_osc_import_name client ost1)
28346         local imp_name=$($LCTL list_param osc.$ost1_imp | head -n1 |
28347                          cut -d'.' -f2)
28348
28349         $LFS setstripe -c 1 -i 0 $DIR/$tfile
28350         # ensure ost1 is connected
28351
28352         stat $DIR/$tfile >/dev/null || error "can't stat"
28353         wait_osc_import_state client ost1 FULL
28354         # no locks, no reqs to let the connection idle
28355         cancel_lru_locks osc
28356         lru_resize_disable osc
28357         local before
28358         local now
28359         before=$($LCTL get_param -n \
28360                  ldlm.namespaces.$imp_name.lru_size)
28361
28362         wait_osc_import_state client ost1 IDLE
28363         dd if=/dev/null of=$DIR/$tfile bs=1k count=1 conv=sync
28364         now=$($LCTL get_param -n \
28365               ldlm.namespaces.$imp_name.lru_size)
28366         [ $before == $now ] || error "lru_size changed $before != $now"
28367 }
28368 run_test 816 "do not reset lru_resize on idle reconnect"
28369
28370 cleanup_817() {
28371         umount $tmpdir
28372         exportfs -u localhost:$DIR/nfsexp
28373         rm -rf $DIR/nfsexp
28374 }
28375
28376 test_817() {
28377         systemctl restart nfs-server.service || skip "failed to restart nfsd"
28378
28379         mkdir -p $DIR/nfsexp
28380         exportfs -orw,no_root_squash localhost:$DIR/nfsexp ||
28381                 error "failed to export nfs"
28382
28383         tmpdir=$(mktemp -d /tmp/nfs-XXXXXX)
28384         stack_trap cleanup_817 EXIT
28385
28386         mount -t nfs -orw localhost:$DIR/nfsexp $tmpdir ||
28387                 error "failed to mount nfs to $tmpdir"
28388
28389         cp /bin/true $tmpdir
28390         $DIR/nfsexp/true || error "failed to execute 'true' command"
28391 }
28392 run_test 817 "nfsd won't cache write lock for exec file"
28393
28394 test_818() {
28395         test_mkdir -i0 -c1 $DIR/$tdir
28396         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
28397         $LFS setstripe -c1 -i1 $DIR/$tdir/$tfile
28398         stop $SINGLEMDS
28399
28400         # restore osp-syn threads
28401         stack_trap "fail $SINGLEMDS"
28402
28403         #define OBD_FAIL_OSP_CANT_PROCESS_LLOG          0x2105
28404         do_facet $SINGLEMDS lctl set_param fail_loc=0x80002105
28405         start $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) $MDS_MOUNT_OPTS ||
28406                 error "start $SINGLEMDS failed"
28407         rm -rf $DIR/$tdir
28408
28409         local testid=$(echo $TESTNAME | tr '_' ' ')
28410
28411         do_facet mds1 dmesg | tac | sed "/$testid/,$ d" |
28412                 grep "run LFSCK" || error "run LFSCK is not suggested"
28413 }
28414 run_test 818 "unlink with failed llog"
28415
28416 test_819a() {
28417         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
28418         cancel_lru_locks osc
28419         #define OBD_FAIL_OST_2BIG_NIOBUF                0x248
28420         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000248
28421         dd if=$DIR/$tfile of=/dev/null bs=1M count=1
28422         rm -f $TDIR/$tfile
28423 }
28424 run_test 819a "too big niobuf in read"
28425
28426 test_819b() {
28427         #define OBD_FAIL_OST_2BIG_NIOBUF                0x248
28428         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000248
28429         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
28430         cancel_lru_locks osc
28431         sleep 1
28432         rm -f $TDIR/$tfile
28433 }
28434 run_test 819b "too big niobuf in write"
28435
28436
28437 function test_820_start_ost() {
28438         sleep 5
28439
28440         for num in $(seq $OSTCOUNT); do
28441                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS
28442         done
28443 }
28444
28445 test_820() {
28446         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
28447
28448         mkdir $DIR/$tdir
28449         umount_client $MOUNT || error "umount failed"
28450         for num in $(seq $OSTCOUNT); do
28451                 stop ost$num
28452         done
28453
28454         # mount client with no active OSTs
28455         # so that the client can't initialize max LOV EA size
28456         # from OSC notifications
28457         mount_client $MOUNT || error "mount failed"
28458         # delay OST starting to keep this 0 max EA size for a while
28459         test_820_start_ost &
28460
28461         # create a directory on MDS2
28462         test_mkdir -i 1 -c1 $DIR/$tdir/mds2 ||
28463                 error "Failed to create directory"
28464         # open intent should update default EA size
28465         # see mdc_update_max_ea_from_body()
28466         # notice this is the very first RPC to MDS2
28467         out=$(cp /etc/services $DIR/$tdir/mds2 2>&1)
28468         ret=$?
28469         echo $out
28470         # With SSK, this situation can lead to -EPERM being returned.
28471         # In that case, simply retry.
28472         if [ $ret -ne 0 ] && $SHARED_KEY; then
28473                 if echo "$out" | grep -q "not permitted"; then
28474                         cp /etc/services $DIR/$tdir/mds2
28475                         ret=$?
28476                 fi
28477         fi
28478         [ $ret -eq 0 ] || error "Failed to copy files to mds$n"
28479 }
28480 run_test 820 "update max EA from open intent"
28481
28482 test_823() {
28483         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
28484         local OST_MAX_PRECREATE=20000
28485
28486         (( $MDS1_VERSION >= $(version_code 2.14.56) )) ||
28487                 skip "Need MDS version at least 2.14.56"
28488
28489         save_lustre_params mds1 \
28490                 "osp.$FSNAME-OST*-osc-MDT0000.max_create_count" > $p
28491         do_facet $SINGLEMDS "$LCTL set_param -n \
28492                 osp.$FSNAME-OST*MDT0000.max_create_count=0"
28493         do_facet $SINGLEMDS "$LCTL set_param -n \
28494                 osp.$FSNAME-OST0000*MDT0000.max_create_count=$OST_MAX_PRECREATE"
28495
28496         stack_trap "restore_lustre_params < $p; rm $p"
28497
28498         do_facet $SINGLEMDS "$LCTL set_param -n \
28499                 osp.$FSNAME-OST*-osc-MDT*.create_count=100200"
28500
28501         local count=$(do_facet $SINGLEMDS "$LCTL get_param -n \
28502                       osp.$FSNAME-OST0000*MDT0000.create_count")
28503         local max=$(do_facet $SINGLEMDS "$LCTL get_param -n \
28504                     osp.$FSNAME-OST0000*MDT0000.max_create_count")
28505         local expect_count=$(((($max/2)/256) * 256))
28506
28507         log "setting create_count to 100200:"
28508         log " -result- count: $count with max: $max, expecting: $expect_count"
28509
28510         [[ $count -eq expect_count ]] ||
28511                 error "Create count not set to max precreate."
28512 }
28513 run_test 823 "Setting create_count > OST_MAX_PRECREATE is lowered to maximum"
28514
28515 test_831() {
28516         [[ $MDS1_VERSION -lt $(version_code 2.14.56) ]] &&
28517                 skip "Need MDS version 2.14.56"
28518
28519         local sync_changes=$(do_facet $SINGLEMDS \
28520                 $LCTL get_param -n osp.$FSNAME-OST0000-osc-MDT0000.sync_changes)
28521
28522         [ "$sync_changes" -gt 100 ] &&
28523                 skip "Sync changes $sync_changes > 100 already"
28524
28525         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
28526
28527         $LFS mkdir -i 0 $DIR/$tdir
28528         $LFS setstripe -c 1 -i 0 $DIR/$tdir
28529
28530         save_lustre_params mds1 \
28531                 "osp.$FSNAME-OST*-osc-MDT0000.max_sync_changes" > $p
28532         save_lustre_params mds1 \
28533                 "osp.$FSNAME-OST*-osc-MDT0000.max_rpcs_in_progress" >> $p
28534
28535         do_facet mds1 "$LCTL set_param -n \
28536                 osp.$FSNAME-OST*-osc-MDT0000.max_sync_changes=100 \
28537                 osp.$FSNAME-OST*-osc-MDT0000.max_rpcs_in_progress=128"
28538         stack_trap "restore_lustre_params < $p" EXIT
28539
28540         createmany -o $DIR/$tdir/f- 1000
28541         unlinkmany $DIR/$tdir/f- 1000 &
28542         local UNLINK_PID=$!
28543
28544         while sleep 1; do
28545                 sync_changes=$(do_facet mds1 \
28546                 $LCTL get_param -n osp.$FSNAME-OST0000-osc-MDT0000.sync_changes)
28547                 # the check in the code is racy, fail the test
28548                 # if the value above the limit by 10.
28549                 [ $sync_changes -gt 110 ] && {
28550                         kill -2 $UNLINK_PID
28551                         wait
28552                         error "osp changes throttling failed, $sync_changes>110"
28553                 }
28554                 kill -0 $UNLINK_PID 2> /dev/null || break
28555         done
28556         wait
28557 }
28558 run_test 831 "throttling unlink/setattr queuing on OSP"
28559
28560 #
28561 # tests that do cleanup/setup should be run at the end
28562 #
28563
28564 test_900() {
28565         [ $PARALLEL == "yes" ] && skip "skip parallel run"
28566         local ls
28567
28568         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
28569         $LCTL set_param fail_loc=0x903
28570
28571         cancel_lru_locks MGC
28572
28573         FAIL_ON_ERROR=true cleanup
28574         FAIL_ON_ERROR=true setup
28575 }
28576 run_test 900 "umount should not race with any mgc requeue thread"
28577
28578 # LUS-6253/LU-11185
28579 test_901() {
28580         local old
28581         local count
28582         local oldc
28583         local newc
28584         local olds
28585         local news
28586         [ $PARALLEL == "yes" ] && skip "skip parallel run"
28587
28588         # some get_param have a bug to handle dot in param name
28589         cancel_lru_locks MGC
28590         old=$(mount -t lustre | wc -l)
28591         # 1 config+sptlrpc
28592         # 2 params
28593         # 3 nodemap
28594         # 4 IR
28595         old=$((old * 4))
28596         oldc=0
28597         count=0
28598         while [ $old -ne $oldc ]; do
28599                 oldc=$($LCTL get_param -n 'ldlm.namespaces.MGC*.lock_count')
28600                 sleep 1
28601                 ((count++))
28602                 if [ $count -ge $TIMEOUT ]; then
28603                         error "too large timeout"
28604                 fi
28605         done
28606         umount_client $MOUNT || error "umount failed"
28607         mount_client $MOUNT || error "mount failed"
28608         cancel_lru_locks MGC
28609         newc=$($LCTL get_param -n 'ldlm.namespaces.MGC*.lock_count')
28610
28611         [ $oldc -lt $newc ] && error "mgc lock leak ($oldc != $newc)"
28612
28613         return 0
28614 }
28615 run_test 901 "don't leak a mgc lock on client umount"
28616
28617 # LU-13377
28618 test_902() {
28619         [ $CLIENT_VERSION -lt $(version_code 2.13.52) ] &&
28620                 skip "client does not have LU-13377 fix"
28621         #define OBD_FAIL_LLITE_SHORT_COMMIT 0x1415
28622         $LCTL set_param fail_loc=0x1415
28623         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
28624         cancel_lru_locks osc
28625         rm -f $DIR/$tfile
28626 }
28627 run_test 902 "test short write doesn't hang lustre"
28628
28629 # LU-14711
28630 test_903() {
28631         $LFS setstripe -i 0 -c 1 $DIR/$tfile $DIR/${tfile}-2
28632         echo "blah" > $DIR/${tfile}-2
28633         dd if=/dev/zero of=$DIR/$tfile bs=1M count=6 conv=fsync
28634         #define OBD_FAIL_OSC_SLOW_PAGE_EVICT 0x417
28635         $LCTL set_param fail_loc=0x417 fail_val=20
28636
28637         mv $DIR/${tfile}-2 $DIR/$tfile # Destroys the big object
28638         sleep 1 # To start the destroy
28639         wait_destroy_complete 150 || error "Destroy taking too long"
28640         cat $DIR/$tfile > /dev/null || error "Evicted"
28641 }
28642 run_test 903 "Test long page discard does not cause evictions"
28643
28644 test_904() {
28645         [ "$mds1_FSTYPE" == "ldiskfs" ] || skip "ldiskfs only test"
28646         do_facet mds1 $DEBUGFS -R features $(mdsdevname 1) |
28647                 grep -q project || skip "skip project quota not supported"
28648
28649         local testfile="$DIR/$tdir/$tfile"
28650         local xattr="trusted.projid"
28651         local projid
28652         local mdts=$(comma_list $(mdts_nodes))
28653         local saved=$(do_facet mds1 $LCTL get_param -n \
28654                 osd-ldiskfs.*MDT0000.enable_projid_xattr)
28655
28656         do_nodes $mdts $LCTL set_param osd-ldiskfs.*MDT*.enable_projid_xattr=0
28657         stack_trap "do_nodes $mdts $LCTL set_param \
28658                 osd-ldiskfs.*MDT*.enable_projid_xattr=$saved"
28659
28660         mkdir -p $DIR/$tdir
28661         touch $testfile
28662         #hide projid xattr on server
28663         $LFS project -p 1 $testfile ||
28664                 error "set $testfile project id failed"
28665         getfattr -m - $testfile | grep $xattr &&
28666                 error "do not show trusted.projid when disabled on server"
28667         do_nodes $mdts $LCTL set_param osd-ldiskfs.*MDT*.enable_projid_xattr=1
28668         #should be hidden when projid is 0
28669         $LFS project -p 0 $testfile ||
28670                 error "set $testfile project id failed"
28671         getfattr -m - $testfile | grep $xattr &&
28672                 error "do not show trusted.projid with project ID 0"
28673
28674         #still can getxattr explicitly
28675         projid=$(getfattr -n $xattr $testfile |
28676                 sed -n 's/^trusted\.projid="\(.*\)"/\1/p')
28677         [ $projid == "0" ] ||
28678                 error "projid expected 0 not $projid"
28679
28680         #set the projid via setxattr
28681         setfattr -n $xattr -v "1000" $testfile ||
28682                 error "setattr failed with $?"
28683         projid=($($LFS project $testfile))
28684         [ ${projid[0]} == "1000" ] ||
28685                 error "projid expected 1000 not $projid"
28686
28687         #check the new projid via getxattr
28688         $LFS project -p 1001 $testfile ||
28689                 error "set $testfile project id failed"
28690         getfattr -m - $testfile | grep $xattr ||
28691                 error "should show trusted.projid when project ID != 0"
28692         projid=$(getfattr -n $xattr $testfile |
28693                 sed -n 's/^trusted\.projid="\(.*\)"/\1/p')
28694         [ $projid == "1001" ] ||
28695                 error "projid expected 1001 not $projid"
28696
28697         #try to set invalid projid
28698         setfattr -n $xattr -v "4294967295" $testfile &&
28699                 error "set invalid projid should fail"
28700
28701         #remove the xattr means setting projid to 0
28702         setfattr -x $xattr $testfile ||
28703                 error "setfattr failed with $?"
28704         projid=($($LFS project $testfile))
28705         [ ${projid[0]} == "0" ] ||
28706                 error "projid expected 0 not $projid"
28707
28708         #should be hidden when parent has inherit flag and same projid
28709         $LFS project -srp 1002 $DIR/$tdir ||
28710                 error "set $tdir project id failed"
28711         getfattr -m - $testfile | grep $xattr &&
28712                 error "do not show trusted.projid with inherit flag"
28713
28714         #still can getxattr explicitly
28715         projid=$(getfattr -n $xattr $testfile |
28716                 sed -n 's/^trusted\.projid="\(.*\)"/\1/p')
28717         [ $projid == "1002" ] ||
28718                 error "projid expected 1002 not $projid"
28719 }
28720 run_test 904 "virtual project ID xattr"
28721
28722 # LU-8582
28723 test_905() {
28724         (( $OST1_VERSION >= $(version_code 2.8.54) )) ||
28725                 skip "lustre < 2.8.54 does not support ladvise"
28726
28727         remote_ost_nodsh && skip "remote OST with nodsh"
28728         $LFS setstripe -c -1 -i 0 $DIR/$tfile || error "setstripe failed"
28729
28730         $LFS ladvise -a willread $DIR/$tfile || error "ladvise does not work"
28731
28732         #define OBD_FAIL_OST_OPCODE 0x253
28733         # OST_LADVISE = 21
28734         do_facet ost1 "$LCTL set_param fail_val=21 fail_loc=0x0253"
28735         $LFS ladvise -a willread $DIR/$tfile &&
28736                 error "unexpected success of ladvise with fault injection"
28737         $LFS ladvise -a willread $DIR/$tfile |&
28738                 grep -q "Operation not supported"
28739         (( $? == 0 )) || error "unexpected stderr of ladvise with fault injection"
28740 }
28741 run_test 905 "bad or new opcode should not stuck client"
28742
28743 test_906() {
28744         grep -q io_uring_setup /proc/kallsyms ||
28745                 skip "Client OS does not support io_uring I/O engine"
28746         io_uring_probe || skip "kernel does not support io_uring fully"
28747         which fio || skip_env "no fio installed"
28748         fio --enghelp | grep -q io_uring ||
28749                 skip_env "fio does not support io_uring I/O engine"
28750
28751         local file=$DIR/$tfile
28752         local ioengine="io_uring"
28753         local numjobs=2
28754         local size=50M
28755
28756         fio --name=seqwrite --ioengine=$ioengine        \
28757                 --bs=$PAGE_SIZE --direct=1 --numjobs=$numjobs   \
28758                 --iodepth=64 --size=$size --filename=$file --rw=write ||
28759                 error "fio seqwrite $file failed"
28760
28761         fio --name=seqread --ioengine=$ioengine \
28762                 --bs=$PAGE_SIZE --direct=1 --numjobs=$numjobs   \
28763                 --iodepth=64 --size=$size --filename=$file --rw=read ||
28764                 error "fio seqread $file failed"
28765
28766         rm -f $file || error "rm -f $file failed"
28767 }
28768 run_test 906 "Simple test for io_uring I/O engine via fio"
28769
28770 complete $SECONDS
28771 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
28772 check_and_cleanup_lustre
28773 if [ "$I_MOUNTED" != "yes" ]; then
28774         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
28775 fi
28776 exit_status