Whamcloud - gitweb
LU-11109 mdt: handle zero length xattr values correctly
[fs/lustre-release.git] / lustre / tests / sanity.sh
1 #!/bin/bash
2 # -*- tab-width: 8; indent-tabs-mode: t; -*-
3 #
4 # Run select tests by setting ONLY, or as arguments to the script.
5 # Skip specific tests by setting EXCEPT.
6 #
7 # e.g. ONLY="22 23" or ONLY="`seq 32 39`" or EXCEPT="31"
8 set -e
9
10 ONLY=${ONLY:-"$*"}
11 # bug number for skipped test: LU-9693 LU-6493 LU-9693 LU-11058
12 ALWAYS_EXCEPT="$SANITY_EXCEPT  42a     42b     42c     77k"
13 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
14
15 # skipped tests: LU-8411 LU-9096 LU-9054 ..
16 ALWAYS_EXCEPT="  407     253     312     $ALWAYS_EXCEPT"
17 # skipped tests: LU-4684
18 ALWAYS_EXCEPT="  17n 160d 230 316       $ALWAYS_EXCEPT"
19
20 # Check Grants after these tests
21 GRANT_CHECK_LIST="$GRANT_CHECK_LIST 42a 42b 42c 42d 42e 63a 63b 64a 64b 64c"
22
23 SRCDIR=$(cd $(dirname $0); echo $PWD)
24 export PATH=$PATH:/sbin
25
26 TMP=${TMP:-/tmp}
27 OSC=${OSC:-"osc"}
28
29 CC=${CC:-cc}
30 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
31 CREATETEST=${CREATETEST:-createtest}
32 LFS=${LFS:-lfs}
33 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
34 LCTL=${LCTL:-lctl}
35 OPENFILE=${OPENFILE:-openfile}
36 OPENUNLINK=${OPENUNLINK:-openunlink}
37 export MULTIOP=${MULTIOP:-multiop}
38 READS=${READS:-"reads"}
39 MUNLINK=${MUNLINK:-munlink}
40 SOCKETSERVER=${SOCKETSERVER:-socketserver}
41 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
42 MEMHOG=${MEMHOG:-memhog}
43 DIRECTIO=${DIRECTIO:-directio}
44 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
45 DEF_STRIPE_COUNT=-1
46 CHECK_GRANT=${CHECK_GRANT:-"yes"}
47 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
48 export PARALLEL=${PARALLEL:-"no"}
49
50 export NAME=${NAME:-local}
51
52 SAVE_PWD=$PWD
53
54 CLEANUP=${CLEANUP:-:}
55 SETUP=${SETUP:-:}
56 TRACE=${TRACE:-""}
57 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
58 LUSTRE_TESTS_API_DIR=${LUSTRE_TESTS_API_DIR:-${LUSTRE}/tests/clientapi}
59 . $LUSTRE/tests/test-framework.sh
60 init_test_env $@
61 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
62 init_logging
63
64 if [[ $MDSCOUNT -gt 1 ]]; then
65         # bug number:    LU-11161
66         ALWAYS_EXCEPT+=" 160g"
67 fi
68
69 #                                  5          12          (min)"
70 [ "$SLOW" = "no" ] && EXCEPT_SLOW="27m 64b 68 71 115 300o"
71
72 if [ $(facet_fstype $SINGLEMDS) = "zfs" ]; then
73         # bug number for skipped test: LU-1957
74         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  180"
75         #                                               13    (min)"
76         [ "$SLOW" = "no" ] && EXCEPT_SLOW="$EXCEPT_SLOW 51b"
77 fi
78
79 # Get the SLES distro version
80 #
81 # Returns a version string that should only be used in comparing
82 # strings returned by version_code()
83 sles_version_code()
84 {
85         local version=$(grep VERSION_ID /etc/os-release | cut -d'"' -f2)
86
87         # All SuSE Linux versions have one decimal. version_code expects two
88         local sles_version=$version.0
89         version_code $sles_version
90 }
91
92 # Check if we are running on Ubuntu or SLES so we can make decisions on
93 # what tests to run
94 if [ -r /etc/SuSE-release ]; then
95         sles_version=$(sles_version_code)
96         [ $sles_version -lt $(version_code 11.4.0) ] &&
97                 # bug number for skipped test: LU-4341
98                 ALWAYS_EXCEPT="$ALWAYS_EXCEPT  170"
99         [ $sles_version -lt $(version_code 12.0.0) ] &&
100                 # bug number for skipped test: LU-3703
101                 ALWAYS_EXCEPT="$ALWAYS_EXCEPT  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                         # bug number for skipped test:
111                         #                LU-10334 LU-10335 LU-10335 LU-10335
112                         ALWAYS_EXCEPT+=" 103a     130a     130b     130c"
113                         #                LU-10335 LU-10335 LU-10365 LU-10366
114                         ALWAYS_EXCEPT+=" 130d     130e     400a     410"
115                 fi
116         fi
117 fi
118
119 FAIL_ON_ERROR=false
120
121 cleanup() {
122         echo -n "cln.."
123         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
124         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
125 }
126 setup() {
127         echo -n "mnt.."
128         load_modules
129         setupall || exit 10
130         echo "done"
131 }
132
133 check_swap_layouts_support()
134 {
135         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
136                 skip "Does not support layout lock."
137 }
138
139 check_and_setup_lustre
140 DIR=${DIR:-$MOUNT}
141 assert_DIR
142
143 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
144
145 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
146 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
147 rm -rf $DIR/[Rdfs][0-9]*
148
149 # $RUNAS_ID may get set incorrectly somewhere else
150 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
151
152 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
153
154 build_test_filter
155
156 if [ "${ONLY}" = "MOUNT" ] ; then
157         echo "Lustre is up, please go on"
158         exit
159 fi
160
161 echo "preparing for tests involving mounts"
162 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
163 touch $EXT2_DEV
164 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
165 echo # add a newline after mke2fs.
166
167 umask 077
168
169 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
170 lctl set_param debug=-1 2> /dev/null || true
171 test_0a() {
172         touch $DIR/$tfile
173         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
174         rm $DIR/$tfile
175         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
176 }
177 run_test 0a "touch; rm ====================="
178
179 test_0b() {
180         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
181         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
182 }
183 run_test 0b "chmod 0755 $DIR ============================="
184
185 test_0c() {
186         $LCTL get_param mdc.*.import | grep "state: FULL" ||
187                 error "import not FULL"
188         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
189                 error "bad target"
190 }
191 run_test 0c "check import proc"
192
193 test_0d() { # LU-3397
194         [ $(lustre_version_code mgs) -lt $(version_code 2.10.57) ] &&
195                 skip "proc exports not supported before 2.10.57"
196
197         local mgs_exp="mgs.MGS.exports"
198         local client_uuid=$($LCTL get_param -n mgc.*.uuid)
199         local exp_client_nid
200         local exp_client_version
201         local exp_val
202         local imp_val
203         local temp_imp=$DIR/$tfile.import
204         local temp_exp=$DIR/$tfile.export
205
206         # save mgc import file to $temp_imp
207         $LCTL get_param mgc.*.import | tee $temp_imp
208         # Check if client uuid is found in MGS export
209         for exp_client_nid in $(do_facet mgs $LCTL get_param -N $mgs_exp.*); do
210                 [ $(do_facet mgs $LCTL get_param -n $exp_client_nid.uuid) == \
211                         $client_uuid ] &&
212                         break;
213         done
214         # save mgs export file to $temp_exp
215         do_facet mgs $LCTL get_param $exp_client_nid.export | tee $temp_exp
216
217         # Compare the value of field "connect_flags"
218         imp_val=$(grep "connect_flags" $temp_imp)
219         exp_val=$(grep "connect_flags" $temp_exp)
220         [ "$exp_val" == "$imp_val" ] ||
221                 error "export flags '$exp_val' != import flags '$imp_val'"
222
223         # Compare the value of client version
224         exp_client_version=$(awk '/target_version:/ { print $2 }' $temp_exp)
225         exp_val=$(version_code $exp_client_version)
226         imp_val=$(lustre_version_code client)
227         [ "$exp_val" == "$imp_val" ] ||
228                 error "export client version '$exp_val' != '$imp_val'"
229 }
230 run_test 0d "check export proc ============================="
231
232 test_1() {
233         test_mkdir $DIR/$tdir
234         test_mkdir $DIR/$tdir/d2
235         mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
236         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
237         rmdir $DIR/$tdir/d2
238         rmdir $DIR/$tdir
239         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
240 }
241 run_test 1 "mkdir; remkdir; rmdir"
242
243 test_2() {
244         test_mkdir $DIR/$tdir
245         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
246         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
247         rm -r $DIR/$tdir
248         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
249 }
250 run_test 2 "mkdir; touch; rmdir; check file"
251
252 test_3() {
253         test_mkdir $DIR/$tdir
254         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
255         touch $DIR/$tdir/$tfile
256         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
257         rm -r $DIR/$tdir
258         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
259 }
260 run_test 3 "mkdir; touch; rmdir; check dir"
261
262 # LU-4471 - failed rmdir on remote directories still removes directory on MDT0
263 test_4() {
264         test_mkdir -i 1 $DIR/$tdir
265
266         touch $DIR/$tdir/$tfile ||
267                 error "Create file under remote directory failed"
268
269         rmdir $DIR/$tdir &&
270                 error "Expect error removing in-use dir $DIR/$tdir"
271
272         test -d $DIR/$tdir || error "Remote directory disappeared"
273
274         rm -rf $DIR/$tdir || error "remove remote dir error"
275 }
276 run_test 4 "mkdir; touch dir/file; rmdir; checkdir (expect error)"
277
278 test_5() {
279         test_mkdir $DIR/$tdir
280         test_mkdir $DIR/$tdir/d2
281         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
282         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
283         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
284 }
285 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2"
286
287 test_6a() {
288         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
289         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
290         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
291                 error "$tfile does not have perm 0666 or UID $UID"
292         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
293         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
294                 error "$tfile should be 0666 and owned by UID $UID"
295 }
296 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
297
298 test_6c() {
299         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
300
301         touch $DIR/$tfile
302         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
303         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
304                 error "$tfile should be owned by UID $RUNAS_ID"
305         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
306         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
307                 error "$tfile should be owned by UID $RUNAS_ID"
308 }
309 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
310
311 test_6e() {
312         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
313
314         touch $DIR/$tfile
315         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
316         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
317                 error "$tfile should be owned by GID $UID"
318         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
319         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
320                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
321 }
322 run_test 6e "touch+chgrp $tfile; $RUNAS chgrp $tfile (should return error)"
323
324 test_6g() {
325         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
326
327         test_mkdir $DIR/$tdir
328         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
329         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
330         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
331         test_mkdir $DIR/$tdir/d/subdir
332         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
333                 error "$tdir/d/subdir should be GID $RUNAS_GID"
334         if [[ $MDSCOUNT -gt 1 ]]; then
335                 # check remote dir sgid inherite
336                 $LFS mkdir -i 0 $DIR/$tdir.local ||
337                         error "mkdir $tdir.local failed"
338                 chmod g+s $DIR/$tdir.local ||
339                         error "chmod $tdir.local failed"
340                 chgrp $RUNAS_GID $DIR/$tdir.local ||
341                         error "chgrp $tdir.local failed"
342                 $LFS mkdir -i 1 $DIR/$tdir.local/$tdir.remote ||
343                         error "mkdir $tdir.remote failed"
344                 $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir.local/$tdir.remote ||
345                         error "$tdir.remote should be owned by $UID.$RUNAS_ID"
346                 $CHECKSTAT -p 02755 $DIR/$tdir.local/$tdir.remote ||
347                         error "$tdir.remote should be mode 02755"
348         fi
349 }
350 run_test 6g "verify new dir in sgid dir inherits group"
351
352 test_6h() { # bug 7331
353         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
354
355         touch $DIR/$tfile || error "touch failed"
356         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
357         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
358                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
359         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
360                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
361 }
362 run_test 6h "$RUNAS chown RUNAS_ID.0 .../$tfile (should return error)"
363
364 test_7a() {
365         test_mkdir $DIR/$tdir
366         $MCREATE $DIR/$tdir/$tfile
367         chmod 0666 $DIR/$tdir/$tfile
368         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
369                 error "$tdir/$tfile should be mode 0666"
370 }
371 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
372
373 test_7b() {
374         if [ ! -d $DIR/$tdir ]; then
375                 test_mkdir $DIR/$tdir
376         fi
377         $MCREATE $DIR/$tdir/$tfile
378         echo -n foo > $DIR/$tdir/$tfile
379         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
380         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
381 }
382 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
383
384 test_8() {
385         test_mkdir $DIR/$tdir
386         touch $DIR/$tdir/$tfile
387         chmod 0666 $DIR/$tdir/$tfile
388         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
389                 error "$tfile mode not 0666"
390 }
391 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
392
393 test_9() {
394         test_mkdir $DIR/$tdir
395         test_mkdir $DIR/$tdir/d2
396         test_mkdir $DIR/$tdir/d2/d3
397         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
398 }
399 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
400
401 test_10() {
402         test_mkdir $DIR/$tdir
403         test_mkdir $DIR/$tdir/d2
404         touch $DIR/$tdir/d2/$tfile
405         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
406                 error "$tdir/d2/$tfile not a file"
407 }
408 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
409
410 test_11() {
411         test_mkdir $DIR/$tdir
412         test_mkdir $DIR/$tdir/d2
413         chmod 0666 $DIR/$tdir/d2
414         chmod 0705 $DIR/$tdir/d2
415         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
416                 error "$tdir/d2 mode not 0705"
417 }
418 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
419
420 test_12() {
421         test_mkdir $DIR/$tdir
422         touch $DIR/$tdir/$tfile
423         chmod 0666 $DIR/$tdir/$tfile
424         chmod 0654 $DIR/$tdir/$tfile
425         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
426                 error "$tdir/d2 mode not 0654"
427 }
428 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
429
430 test_13() {
431         test_mkdir $DIR/$tdir
432         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
433         >  $DIR/$tdir/$tfile
434         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
435                 error "$tdir/$tfile size not 0 after truncate"
436 }
437 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
438
439 test_14() {
440         test_mkdir $DIR/$tdir
441         touch $DIR/$tdir/$tfile
442         rm $DIR/$tdir/$tfile
443         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
444 }
445 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
446
447 test_15() {
448         test_mkdir $DIR/$tdir
449         touch $DIR/$tdir/$tfile
450         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
451         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
452                 error "$tdir/${tfile_2} not a file after rename"
453         rm $DIR/$tdir/${tfile}_2 || error "unlink failed after rename"
454 }
455 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
456
457 test_16() {
458         test_mkdir $DIR/$tdir
459         touch $DIR/$tdir/$tfile
460         rm -rf $DIR/$tdir/$tfile
461         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
462 }
463 run_test 16 "touch .../d16/f; rm -rf .../d16/f"
464
465 test_17a() {
466         test_mkdir $DIR/$tdir
467         touch $DIR/$tdir/$tfile
468         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
469         ls -l $DIR/$tdir
470         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
471                 error "$tdir/l-exist not a symlink"
472         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
473                 error "$tdir/l-exist not referencing a file"
474         rm -f $DIR/$tdir/l-exist
475         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
476 }
477 run_test 17a "symlinks: create, remove (real)"
478
479 test_17b() {
480         test_mkdir $DIR/$tdir
481         ln -s no-such-file $DIR/$tdir/l-dangle
482         ls -l $DIR/$tdir
483         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
484                 error "$tdir/l-dangle not referencing no-such-file"
485         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
486                 error "$tdir/l-dangle not referencing non-existent file"
487         rm -f $DIR/$tdir/l-dangle
488         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
489 }
490 run_test 17b "symlinks: create, remove (dangling)"
491
492 test_17c() { # bug 3440 - don't save failed open RPC for replay
493         test_mkdir $DIR/$tdir
494         ln -s foo $DIR/$tdir/$tfile
495         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
496 }
497 run_test 17c "symlinks: open dangling (should return error)"
498
499 test_17d() {
500         test_mkdir $DIR/$tdir
501         ln -s foo $DIR/$tdir/$tfile
502         touch $DIR/$tdir/$tfile || error "creating to new symlink"
503 }
504 run_test 17d "symlinks: create dangling"
505
506 test_17e() {
507         test_mkdir $DIR/$tdir
508         local foo=$DIR/$tdir/$tfile
509         ln -s $foo $foo || error "create symlink failed"
510         ls -l $foo || error "ls -l failed"
511         ls $foo && error "ls not failed" || true
512 }
513 run_test 17e "symlinks: create recursive symlink (should return error)"
514
515 test_17f() {
516         test_mkdir $DIR/$tdir
517         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/$tdir/111
518         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/$tdir/222
519         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/$tdir/333
520         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/$tdir/444
521         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/$tdir/555
522         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
523         ls -l  $DIR/$tdir
524 }
525 run_test 17f "symlinks: long and very long symlink name"
526
527 # str_repeat(S, N) generate a string that is string S repeated N times
528 str_repeat() {
529         local s=$1
530         local n=$2
531         local ret=''
532         while [ $((n -= 1)) -ge 0 ]; do
533                 ret=$ret$s
534         done
535         echo $ret
536 }
537
538 # Long symlinks and LU-2241
539 test_17g() {
540         test_mkdir $DIR/$tdir
541         local TESTS="59 60 61 4094 4095"
542
543         # Fix for inode size boundary in 2.1.4
544         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
545                 TESTS="4094 4095"
546
547         # Patch not applied to 2.2 or 2.3 branches
548         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
549         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
550                 TESTS="4094 4095"
551
552         # skip long symlink name for rhel6.5.
553         # rhel6.5 has a limit (PATH_MAX - sizeof(struct filename))
554         grep -q '6.5' /etc/redhat-release &>/dev/null &&
555                 TESTS="59 60 61 4062 4063"
556
557         for i in $TESTS; do
558                 local SYMNAME=$(str_repeat 'x' $i)
559                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
560                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
561         done
562 }
563 run_test 17g "symlinks: really long symlink name and inode boundaries"
564
565 test_17h() { #bug 17378
566         [ $PARALLEL == "yes" ] && skip "skip parallel run"
567         remote_mds_nodsh && skip "remote MDS with nodsh"
568
569         local mdt_idx
570
571         test_mkdir $DIR/$tdir
572         mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
573         $LFS setstripe -c -1 $DIR/$tdir
574         #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
575         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
576         touch $DIR/$tdir/$tfile || true
577 }
578 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
579
580 test_17i() { #bug 20018
581         [ $PARALLEL == "yes" ] && skip "skip parallel run"
582         remote_mds_nodsh && skip "remote MDS with nodsh"
583
584         local foo=$DIR/$tdir/$tfile
585         local mdt_idx
586
587         test_mkdir -c1 $DIR/$tdir
588         mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
589         ln -s $foo $foo || error "create symlink failed"
590 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
591         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
592         ls -l $foo && error "error not detected"
593         return 0
594 }
595 run_test 17i "don't panic on short symlink (should return error)"
596
597 test_17k() { #bug 22301
598         [ $PARALLEL == "yes" ] && skip "skip parallel run"
599         [[ -z "$(which rsync 2>/dev/null)" ]] &&
600                 skip "no rsync command"
601         rsync --help | grep -q xattr ||
602                 skip_env "$(rsync --version | head -n1) does not support xattrs"
603         test_mkdir $DIR/$tdir
604         test_mkdir $DIR/$tdir.new
605         touch $DIR/$tdir/$tfile
606         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
607         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
608                 error "rsync failed with xattrs enabled"
609 }
610 run_test 17k "symlinks: rsync with xattrs enabled"
611
612 test_17l() { # LU-279
613         [[ -z "$(which getfattr 2>/dev/null)" ]] &&
614                 skip "no getfattr command"
615
616         test_mkdir $DIR/$tdir
617         touch $DIR/$tdir/$tfile
618         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
619         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
620                 # -h to not follow symlinks. -m '' to list all the xattrs.
621                 # grep to remove first line: '# file: $path'.
622                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
623                 do
624                         lgetxattr_size_check $path $xattr ||
625                                 error "lgetxattr_size_check $path $xattr failed"
626                 done
627         done
628 }
629 run_test 17l "Ensure lgetxattr's returned xattr size is consistent"
630
631 # LU-1540
632 test_17m() {
633         [ $PARALLEL == "yes" ] && skip "skip parallel run"
634         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
635                 skip_env "ldiskfs only test"
636         remote_mds_nodsh && skip "remote MDS with nodsh"
637         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
638         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
639                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks"
640
641         local short_sym="0123456789"
642         local wdir=$DIR/$tdir
643         local i
644
645         test_mkdir $wdir
646         long_sym=$short_sym
647         # create a long symlink file
648         for ((i = 0; i < 4; ++i)); do
649                 long_sym=${long_sym}${long_sym}
650         done
651
652         echo "create 512 short and long symlink files under $wdir"
653         for ((i = 0; i < 256; ++i)); do
654                 ln -sf ${long_sym}"a5a5" $wdir/long-$i
655                 ln -sf ${short_sym}"a5a5" $wdir/short-$i
656         done
657
658         echo "erase them"
659         rm -f $wdir/*
660         sync
661         wait_delete_completed
662
663         echo "recreate the 512 symlink files with a shorter string"
664         for ((i = 0; i < 512; ++i)); do
665                 # rewrite the symlink file with a shorter string
666                 ln -sf ${long_sym} $wdir/long-$i || error "long_sym failed"
667                 ln -sf ${short_sym} $wdir/short-$i || error "short_sym failed"
668         done
669
670         local mds_index=$(($($LFS getstripe -m $wdir) + 1))
671         local devname=$(mdsdevname $mds_index)
672
673         echo "stop and checking mds${mds_index}:"
674         # e2fsck should not return error
675         stop mds${mds_index}
676         run_e2fsck $(facet_active_host mds${mds_index}) $devname -n
677         rc=$?
678
679         start mds${mds_index} $devname $MDS_MOUNT_OPTS ||
680                 error "start mds${mds_index} failed"
681         df $MOUNT > /dev/null 2>&1
682         [ $rc -eq 0 ] ||
683                 error "e2fsck detected error for short/long symlink: rc=$rc"
684         rm -f $wdir/*
685 }
686 run_test 17m "run e2fsck against MDT which contains short/long symlink"
687
688 check_fs_consistency_17n() {
689         local mdt_index
690         local rc=0
691
692         # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
693         # so it only check MDT1/MDT2 instead of all of MDTs.
694         for mdt_index in 1 2; do
695                 local devname=$(mdsdevname $mdt_index)
696                 # e2fsck should not return error
697                 stop mds${mdt_index}
698                 run_e2fsck $(facet_active_host mds$mdt_index) $devname -n ||
699                         rc=$((rc + $?))
700
701                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS ||
702                         error "mount mds$mdt_index failed"
703                 df $MOUNT > /dev/null 2>&1
704         done
705         return $rc
706 }
707
708 test_17n() {
709         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
710         [ $PARALLEL == "yes" ] && skip "skip parallel run"
711         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
712                 skip_env "ldiskfs only test"
713         remote_mds_nodsh && skip "remote MDS with nodsh"
714         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
715         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
716                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks"
717
718         local i
719
720         test_mkdir $DIR/$tdir
721         for ((i=0; i<10; i++)); do
722                 $LFS mkdir -i1 -c2 $DIR/$tdir/remote_dir_${i} ||
723                         error "create remote dir error $i"
724                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
725                         error "create files under remote dir failed $i"
726         done
727
728         check_fs_consistency_17n ||
729                 error "e2fsck report error after create files under remote dir"
730
731         for ((i = 0; i < 10; i++)); do
732                 rm -rf $DIR/$tdir/remote_dir_${i} ||
733                         error "destroy remote dir error $i"
734         done
735
736         check_fs_consistency_17n ||
737                 error "e2fsck report error after unlink files under remote dir"
738
739         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.50) ] &&
740                 skip "lustre < 2.4.50 does not support migrate mv"
741
742         for ((i = 0; i < 10; i++)); do
743                 mkdir -p $DIR/$tdir/remote_dir_${i}
744                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
745                         error "create files under remote dir failed $i"
746                 $LFS migrate --mdt-index 1 $DIR/$tdir/remote_dir_${i} ||
747                         error "migrate remote dir error $i"
748         done
749         check_fs_consistency_17n || error "e2fsck report error after migration"
750
751         for ((i = 0; i < 10; i++)); do
752                 rm -rf $DIR/$tdir/remote_dir_${i} ||
753                         error "destroy remote dir error $i"
754         done
755
756         check_fs_consistency_17n || error "e2fsck report error after unlink"
757 }
758 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
759
760 test_17o() {
761         remote_mds_nodsh && skip "remote MDS with nodsh"
762         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.64) ] &&
763                 skip "Need MDS version at least 2.3.64"
764
765         local wdir=$DIR/${tdir}o
766         local mdt_index
767         local rc=0
768
769         test_mkdir $wdir
770         touch $wdir/$tfile
771         mdt_index=$($LFS getstripe -m $wdir/$tfile)
772         mdt_index=$((mdt_index + 1))
773
774         cancel_lru_locks mdc
775         #fail mds will wait the failover finish then set
776         #following fail_loc to avoid interfer the recovery process.
777         fail mds${mdt_index}
778
779         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
780         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
781         ls -l $wdir/$tfile && rc=1
782         do_facet mds${mdt_index} lctl set_param fail_loc=0
783         [[ $rc -eq 0 ]] || error "stat file should fail"
784 }
785 run_test 17o "stat file with incompat LMA feature"
786
787 test_18() {
788         touch $DIR/$tfile || error "Failed to touch $DIR/$tfile: $?"
789         ls $DIR || error "Failed to ls $DIR: $?"
790 }
791 run_test 18 "touch .../f ; ls ... =============================="
792
793 test_19a() {
794         touch $DIR/$tfile
795         ls -l $DIR
796         rm $DIR/$tfile
797         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
798 }
799 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
800
801 test_19b() {
802         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
803 }
804 run_test 19b "ls -l .../f19 (should return error) =============="
805
806 test_19c() {
807         [ $RUNAS_ID -eq $UID ] &&
808                 skip_env "RUNAS_ID = UID = $UID -- skipping"
809
810         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
811 }
812 run_test 19c "$RUNAS touch .../f19 (should return error) =="
813
814 test_19d() {
815         cat $DIR/f19 && error || true
816 }
817 run_test 19d "cat .../f19 (should return error) =============="
818
819 test_20() {
820         touch $DIR/$tfile
821         rm $DIR/$tfile
822         touch $DIR/$tfile
823         rm $DIR/$tfile
824         touch $DIR/$tfile
825         rm $DIR/$tfile
826         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
827 }
828 run_test 20 "touch .../f ; ls -l ..."
829
830 test_21() {
831         test_mkdir $DIR/$tdir
832         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
833         ln -s dangle $DIR/$tdir/link
834         echo foo >> $DIR/$tdir/link
835         cat $DIR/$tdir/dangle
836         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
837         $CHECKSTAT -f -t file $DIR/$tdir/link ||
838                 error "$tdir/link not linked to a file"
839 }
840 run_test 21 "write to dangling link"
841
842 test_22() {
843         local wdir=$DIR/$tdir
844         test_mkdir $wdir
845         chown $RUNAS_ID:$RUNAS_GID $wdir
846         (cd $wdir || error "cd $wdir failed";
847                 $RUNAS tar cf - /etc/hosts /etc/sysconfig/network |
848                 $RUNAS tar xf -)
849         ls -lR $wdir/etc || error "ls -lR $wdir/etc failed"
850         $CHECKSTAT -t dir $wdir/etc || error "checkstat -t dir failed"
851         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $wdir/etc ||
852                 error "checkstat -u failed"
853 }
854 run_test 22 "unpack tar archive as non-root user"
855
856 # was test_23
857 test_23a() {
858         test_mkdir $DIR/$tdir
859         local file=$DIR/$tdir/$tfile
860
861         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
862         openfile -f O_CREAT:O_EXCL $file &&
863                 error "$file recreate succeeded" || true
864 }
865 run_test 23a "O_CREAT|O_EXCL in subdir"
866
867 test_23b() { # bug 18988
868         test_mkdir $DIR/$tdir
869         local file=$DIR/$tdir/$tfile
870
871         rm -f $file
872         echo foo > $file || error "write filed"
873         echo bar >> $file || error "append filed"
874         $CHECKSTAT -s 8 $file || error "wrong size"
875         rm $file
876 }
877 run_test 23b "O_APPEND check"
878
879 # LU-9409, size with O_APPEND and tiny writes
880 test_23c() {
881         local file=$DIR/$tfile
882
883         # single dd
884         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800
885         $CHECKSTAT -s 6400 $file || error "wrong size, expected 6400"
886         rm -f $file
887
888         # racing tiny writes
889         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800 &
890         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800 &
891         wait
892         $CHECKSTAT -s 12800 $file || error "wrong size, expected 12800"
893         rm -f $file
894
895         #racing tiny & normal writes
896         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=4096 count=4 &
897         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=100 &
898         wait
899         $CHECKSTAT -s 17184 $file || error "wrong size, expected 17184"
900         rm -f $file
901
902         #racing tiny & normal writes 2, ugly numbers
903         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=4099 count=11 &
904         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=17 count=173 &
905         wait
906         $CHECKSTAT -s 48030 $file || error "wrong size, expected 48030"
907         rm -f $file
908 }
909 run_test 23c "O_APPEND size checks for tiny writes"
910
911 # LU-11069 file offset is correct after appending writes
912 test_23d() {
913         local file=$DIR/$tfile
914         local offset
915
916         echo CentaurHauls > $file
917         offset=$($MULTIOP $file oO_WRONLY:O_APPEND:w13Zp)
918         if ((offset != 26)); then
919                 error "wrong offset, expected 26, got '$offset'"
920         fi
921 }
922 run_test 23d "file offset is correct after appending writes"
923
924 # rename sanity
925 test_24a() {
926         echo '-- same directory rename'
927         test_mkdir $DIR/$tdir
928         touch $DIR/$tdir/$tfile.1
929         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
930         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
931 }
932 run_test 24a "rename file to non-existent target"
933
934 test_24b() {
935         test_mkdir $DIR/$tdir
936         touch $DIR/$tdir/$tfile.{1,2}
937         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
938         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
939         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
940 }
941 run_test 24b "rename file to existing target"
942
943 test_24c() {
944         test_mkdir $DIR/$tdir
945         test_mkdir $DIR/$tdir/d$testnum.1
946         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
947         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
948         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
949 }
950 run_test 24c "rename directory to non-existent target"
951
952 test_24d() {
953         test_mkdir -c1 $DIR/$tdir
954         test_mkdir -c1 $DIR/$tdir/d$testnum.1
955         test_mkdir -c1 $DIR/$tdir/d$testnum.2
956         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
957         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
958         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
959 }
960 run_test 24d "rename directory to existing target"
961
962 test_24e() {
963         echo '-- cross directory renames --'
964         test_mkdir $DIR/R5a
965         test_mkdir $DIR/R5b
966         touch $DIR/R5a/f
967         mv $DIR/R5a/f $DIR/R5b/g
968         $CHECKSTAT -a $DIR/R5a/f || error "$DIR/R5a/f exists"
969         $CHECKSTAT -t file $DIR/R5b/g || error "$DIR/R5b/g not file type"
970 }
971 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
972
973 test_24f() {
974         test_mkdir $DIR/R6a
975         test_mkdir $DIR/R6b
976         touch $DIR/R6a/f $DIR/R6b/g
977         mv $DIR/R6a/f $DIR/R6b/g
978         $CHECKSTAT -a $DIR/R6a/f || error "$DIR/R6a/f exists"
979         $CHECKSTAT -t file $DIR/R6b/g || error "$DIR/R6b/g not file type"
980 }
981 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
982
983 test_24g() {
984         test_mkdir $DIR/R7a
985         test_mkdir $DIR/R7b
986         test_mkdir $DIR/R7a/d
987         mv $DIR/R7a/d $DIR/R7b/e
988         $CHECKSTAT -a $DIR/R7a/d || error "$DIR/R7a/d exists"
989         $CHECKSTAT -t dir $DIR/R7b/e || error "$DIR/R7b/e not dir type"
990 }
991 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
992
993 test_24h() {
994         test_mkdir -c1 $DIR/R8a
995         test_mkdir -c1 $DIR/R8b
996         test_mkdir -c1 $DIR/R8a/d
997         test_mkdir -c1 $DIR/R8b/e
998         mrename $DIR/R8a/d $DIR/R8b/e
999         $CHECKSTAT -a $DIR/R8a/d || error "$DIR/R8a/d exists"
1000         $CHECKSTAT -t dir $DIR/R8b/e || error "$DIR/R8b/e not dir type"
1001 }
1002 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
1003
1004 test_24i() {
1005         echo "-- rename error cases"
1006         test_mkdir $DIR/R9
1007         test_mkdir $DIR/R9/a
1008         touch $DIR/R9/f
1009         mrename $DIR/R9/f $DIR/R9/a
1010         $CHECKSTAT -t file $DIR/R9/f || error "$DIR/R9/f not file type"
1011         $CHECKSTAT -t dir  $DIR/R9/a || error "$DIR/R9/a not dir type"
1012         $CHECKSTAT -a $DIR/R9/a/f || error "$DIR/R9/a/f exists"
1013 }
1014 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
1015
1016 test_24j() {
1017         test_mkdir $DIR/R10
1018         mrename $DIR/R10/f $DIR/R10/g
1019         $CHECKSTAT -t dir $DIR/R10 || error "$DIR/R10 not dir type"
1020         $CHECKSTAT -a $DIR/R10/f || error "$DIR/R10/f exists"
1021         $CHECKSTAT -a $DIR/R10/g || error "$DIR/R10/g exists"
1022 }
1023 run_test 24j "source does not exist ============================"
1024
1025 test_24k() {
1026         test_mkdir $DIR/R11a
1027         test_mkdir $DIR/R11a/d
1028         touch $DIR/R11a/f
1029         mv $DIR/R11a/f $DIR/R11a/d
1030         $CHECKSTAT -a $DIR/R11a/f || error "$DIR/R11a/f exists"
1031         $CHECKSTAT -t file $DIR/R11a/d/f || error "$DIR/R11a/d/f not file type"
1032 }
1033 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
1034
1035 # bug 2429 - rename foo foo foo creates invalid file
1036 test_24l() {
1037         f="$DIR/f24l"
1038         $MULTIOP $f OcNs || error "rename of ${f} to itself failed"
1039 }
1040 run_test 24l "Renaming a file to itself ========================"
1041
1042 test_24m() {
1043         f="$DIR/f24m"
1044         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
1045         # on ext3 this does not remove either the source or target files
1046         # though the "expected" operation would be to remove the source
1047         $CHECKSTAT -t file ${f} || error "${f} missing"
1048         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
1049 }
1050 run_test 24m "Renaming a file to a hard link to itself ========="
1051
1052 test_24n() {
1053     f="$DIR/f24n"
1054     # this stats the old file after it was renamed, so it should fail
1055     touch ${f}
1056     $CHECKSTAT ${f} || error "${f} missing"
1057     mv ${f} ${f}.rename
1058     $CHECKSTAT ${f}.rename || error "${f}.rename missing"
1059     $CHECKSTAT -a ${f} || error "${f} exists"
1060 }
1061 run_test 24n "Statting the old file after renaming (Posix rename 2)"
1062
1063 test_24o() {
1064         test_mkdir $DIR/$tdir
1065         rename_many -s random -v -n 10 $DIR/$tdir
1066 }
1067 run_test 24o "rename of files during htree split"
1068
1069 test_24p() {
1070         test_mkdir $DIR/R12a
1071         test_mkdir $DIR/R12b
1072         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
1073         mrename $DIR/R12a $DIR/R12b
1074         $CHECKSTAT -a $DIR/R12a || error "$DIR/R12a exists"
1075         $CHECKSTAT -t dir $DIR/R12b || error "$DIR/R12b not dir type"
1076         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
1077         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
1078 }
1079 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
1080
1081 cleanup_multiop_pause() {
1082         trap 0
1083         kill -USR1 $MULTIPID
1084 }
1085
1086 test_24q() {
1087         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1088
1089         test_mkdir $DIR/R13a
1090         test_mkdir $DIR/R13b
1091         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
1092         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
1093         MULTIPID=$!
1094
1095         trap cleanup_multiop_pause EXIT
1096         mrename $DIR/R13a $DIR/R13b
1097         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
1098         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
1099         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
1100         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
1101         cleanup_multiop_pause
1102         wait $MULTIPID || error "multiop close failed"
1103 }
1104 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
1105
1106 test_24r() { #bug 3789
1107         test_mkdir $DIR/R14a
1108         test_mkdir $DIR/R14a/b
1109         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
1110         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
1111         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
1112 }
1113 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
1114
1115 test_24s() {
1116         test_mkdir $DIR/R15a
1117         test_mkdir $DIR/R15a/b
1118         test_mkdir $DIR/R15a/b/c
1119         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
1120         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
1121         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
1122 }
1123 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
1124 test_24t() {
1125         test_mkdir $DIR/R16a
1126         test_mkdir $DIR/R16a/b
1127         test_mkdir $DIR/R16a/b/c
1128         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1129         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1130         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1131 }
1132 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1133
1134 test_24u() { # bug12192
1135         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error "multiop failed"
1136         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1137 }
1138 run_test 24u "create stripe file"
1139
1140 page_size() {
1141         local size
1142         size=$(getconf PAGE_SIZE 2>/dev/null)
1143         echo -n ${size:-4096}
1144 }
1145
1146 simple_cleanup_common() {
1147         local rc=0
1148         trap 0
1149         [ -z "$DIR" -o -z "$tdir" ] && return 0
1150
1151         local start=$SECONDS
1152         rm -rf $DIR/$tdir
1153         rc=$?
1154         wait_delete_completed
1155         echo "cleanup time $((SECONDS - start))"
1156         return $rc
1157 }
1158
1159 max_pages_per_rpc() {
1160         local mdtname="$(printf "MDT%04x" ${1:-0})"
1161         $LCTL get_param -n mdc.*$mdtname*.max_pages_per_rpc
1162 }
1163
1164 test_24v() {
1165         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1166
1167         local nrfiles=${COUNT:-100000}
1168         local fname="$DIR/$tdir/$tfile"
1169
1170         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1171         [ $(facet_fstype $SINGLEMDS) = "zfs" ] && nrfiles=${COUNT:-10000}
1172
1173         test_mkdir "$(dirname $fname)"
1174         # assume MDT0000 has the fewest inodes
1175         local stripes=$($LFS getdirstripe -c $(dirname $fname))
1176         local free_inodes=$(($(mdt_free_inodes 0) * stripes))
1177         [[ $free_inodes -lt $nrfiles ]] && nrfiles=$free_inodes
1178
1179         trap simple_cleanup_common EXIT
1180
1181         createmany -m "$fname" $nrfiles
1182
1183         cancel_lru_locks mdc
1184         lctl set_param mdc.*.stats clear
1185
1186         # was previously test_24D: LU-6101
1187         # readdir() returns correct number of entries after cursor reload
1188         local num_ls=$(ls $DIR/$tdir | wc -l)
1189         local num_uniq=$(ls $DIR/$tdir | sort -u | wc -l)
1190         local num_all=$(ls -a $DIR/$tdir | wc -l)
1191         if [ $num_ls -ne $nrfiles -o $num_uniq -ne $nrfiles -o \
1192              $num_all -ne $((nrfiles + 2)) ]; then
1193                 error "Expected $nrfiles files, got $num_ls " \
1194                         "($num_uniq unique $num_all .&..)"
1195         fi
1196         # LU-5 large readdir
1197         # dirent_size = 32 bytes for sizeof(struct lu_dirent) +
1198         #               N bytes for name (len($nrfiles) rounded to 8 bytes) +
1199         #               8 bytes for luda_type (4 bytes rounded to 8 bytes)
1200         # take into account of overhead in lu_dirpage header and end mark in
1201         # each page, plus one in rpc_num calculation.
1202         local dirent_size=$((32 + (${#tfile} | 7) + 1 + 8))
1203         local page_entries=$((($(page_size) - 24) / dirent_size))
1204         local mdt_idx=$($LFS getdirstripe -i $(dirname $fname))
1205         local rpc_pages=$(max_pages_per_rpc $mdt_idx)
1206         local rpc_max=$((nrfiles / (page_entries * rpc_pages) + stripes))
1207         local mds_readpage=$(calc_stats mdc.*.stats mds_readpage)
1208         echo "readpages: $mds_readpage rpc_max: $rpc_max"
1209         (( $mds_readpage < $rpc_max - 2 || $mds_readpage > $rpc_max + 1)) &&
1210                 error "large readdir doesn't take effect: " \
1211                       "$mds_readpage should be about $rpc_max"
1212
1213         simple_cleanup_common
1214 }
1215 run_test 24v "list large directory (test hash collision, b=17560)"
1216
1217 test_24w() { # bug21506
1218         SZ1=234852
1219         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1220         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1221         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1222         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1223         [[ "$SZ1" -eq "$SZ2" ]] ||
1224                 error "Error reading at the end of the file $tfile"
1225 }
1226 run_test 24w "Reading a file larger than 4Gb"
1227
1228 test_24x() {
1229         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
1230         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1231         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1232                 skip "Need MDS version at least 2.7.56"
1233
1234         local MDTIDX=1
1235         local remote_dir=$DIR/$tdir/remote_dir
1236
1237         test_mkdir $DIR/$tdir
1238         $LFS mkdir -i $MDTIDX $remote_dir ||
1239                 error "create remote directory failed"
1240
1241         test_mkdir $DIR/$tdir/src_dir
1242         touch $DIR/$tdir/src_file
1243         test_mkdir $remote_dir/tgt_dir
1244         touch $remote_dir/tgt_file
1245
1246         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir ||
1247                 error "rename dir cross MDT failed!"
1248
1249         mrename $DIR/$tdir/src_file $remote_dir/tgt_file ||
1250                 error "rename file cross MDT failed!"
1251
1252         touch $DIR/$tdir/ln_file
1253         ln $DIR/$tdir/ln_file $remote_dir/ln_name ||
1254                 error "ln file cross MDT failed"
1255
1256         rm -rf $DIR/$tdir || error "Can not delete directories"
1257 }
1258 run_test 24x "cross MDT rename/link"
1259
1260 test_24y() {
1261         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
1262         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1263
1264         local remote_dir=$DIR/$tdir/remote_dir
1265         local mdtidx=1
1266
1267         test_mkdir $DIR/$tdir
1268         $LFS mkdir -i $mdtidx $remote_dir ||
1269                 error "create remote directory failed"
1270
1271         test_mkdir $remote_dir/src_dir
1272         touch $remote_dir/src_file
1273         test_mkdir $remote_dir/tgt_dir
1274         touch $remote_dir/tgt_file
1275
1276         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1277                 error "rename subdir in the same remote dir failed!"
1278
1279         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1280                 error "rename files in the same remote dir failed!"
1281
1282         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1283                 error "link files in the same remote dir failed!"
1284
1285         rm -rf $DIR/$tdir || error "Can not delete directories"
1286 }
1287 run_test 24y "rename/link on the same dir should succeed"
1288
1289 test_24A() { # LU-3182
1290         local NFILES=5000
1291
1292         rm -rf $DIR/$tdir
1293         test_mkdir $DIR/$tdir
1294         trap simple_cleanup_common EXIT
1295         createmany -m $DIR/$tdir/$tfile $NFILES
1296         local t=$(ls $DIR/$tdir | wc -l)
1297         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1298         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1299         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1300                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1301         fi
1302
1303         simple_cleanup_common || error "Can not delete directories"
1304 }
1305 run_test 24A "readdir() returns correct number of entries."
1306
1307 test_24B() { # LU-4805
1308         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
1309
1310         local count
1311
1312         test_mkdir $DIR/$tdir
1313         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1314                 error "create striped dir failed"
1315
1316         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1317         [ $count -eq 2 ] || error "Expected 2, got $count"
1318
1319         touch $DIR/$tdir/striped_dir/a
1320
1321         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1322         [ $count -eq 3 ] || error "Expected 3, got $count"
1323
1324         touch $DIR/$tdir/striped_dir/.f
1325
1326         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1327         [ $count -eq 4 ] || error "Expected 4, got $count"
1328
1329         rm -rf $DIR/$tdir || error "Can not delete directories"
1330 }
1331 run_test 24B "readdir for striped dir return correct number of entries"
1332
1333 test_24C() {
1334         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
1335
1336         mkdir $DIR/$tdir
1337         mkdir $DIR/$tdir/d0
1338         mkdir $DIR/$tdir/d1
1339
1340         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1341                 error "create striped dir failed"
1342
1343         cd $DIR/$tdir/d0/striped_dir
1344
1345         local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1346         local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1347         local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1348
1349         [ "$d0_ino" = "$parent_ino" ] ||
1350                 error ".. wrong, expect $d0_ino, get $parent_ino"
1351
1352         mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1353                 error "mv striped dir failed"
1354
1355         parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1356
1357         [ "$d1_ino" = "$parent_ino" ] ||
1358                 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1359 }
1360 run_test 24C "check .. in striped dir"
1361
1362 test_24E() {
1363         [[ $MDSCOUNT -lt 4 ]] && skip_env "needs >= 4 MDTs"
1364         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1365
1366         mkdir -p $DIR/$tdir
1367         mkdir $DIR/$tdir/src_dir
1368         $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
1369                 error "create remote source failed"
1370
1371         touch $DIR/$tdir/src_dir/src_child/a
1372
1373         $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
1374                 error "create remote target dir failed"
1375
1376         $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
1377                 error "create remote target child failed"
1378
1379         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
1380                 error "rename dir cross MDT failed!"
1381
1382         find $DIR/$tdir
1383
1384         $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
1385                 error "src_child still exists after rename"
1386
1387         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
1388                 error "missing file(a) after rename"
1389
1390         rm -rf $DIR/$tdir || error "Can not delete directories"
1391 }
1392 run_test 24E "cross MDT rename/link"
1393
1394 test_25a() {
1395         echo '== symlink sanity ============================================='
1396
1397         test_mkdir $DIR/d25
1398         ln -s d25 $DIR/s25
1399         touch $DIR/s25/foo ||
1400                 error "File creation in symlinked directory failed"
1401 }
1402 run_test 25a "create file in symlinked directory ==============="
1403
1404 test_25b() {
1405         [ ! -d $DIR/d25 ] && test_25a
1406         $CHECKSTAT -t file $DIR/s25/foo || error "$DIR/s25/foo not file type"
1407 }
1408 run_test 25b "lookup file in symlinked directory ==============="
1409
1410 test_26a() {
1411         test_mkdir $DIR/d26
1412         test_mkdir $DIR/d26/d26-2
1413         ln -s d26/d26-2 $DIR/s26
1414         touch $DIR/s26/foo || error "File creation failed"
1415 }
1416 run_test 26a "multiple component symlink ======================="
1417
1418 test_26b() {
1419         test_mkdir -p $DIR/$tdir/d26-2
1420         ln -s $tdir/d26-2/foo $DIR/s26-2
1421         touch $DIR/s26-2 || error "File creation failed"
1422 }
1423 run_test 26b "multiple component symlink at end of lookup ======"
1424
1425 test_26c() {
1426         test_mkdir $DIR/d26.2
1427         touch $DIR/d26.2/foo
1428         ln -s d26.2 $DIR/s26.2-1
1429         ln -s s26.2-1 $DIR/s26.2-2
1430         ln -s s26.2-2 $DIR/s26.2-3
1431         chmod 0666 $DIR/s26.2-3/foo
1432 }
1433 run_test 26c "chain of symlinks"
1434
1435 # recursive symlinks (bug 439)
1436 test_26d() {
1437         ln -s d26-3/foo $DIR/d26-3
1438 }
1439 run_test 26d "create multiple component recursive symlink"
1440
1441 test_26e() {
1442         [ ! -h $DIR/d26-3 ] && test_26d
1443         rm $DIR/d26-3
1444 }
1445 run_test 26e "unlink multiple component recursive symlink"
1446
1447 # recursive symlinks (bug 7022)
1448 test_26f() {
1449         test_mkdir $DIR/$tdir
1450         test_mkdir $DIR/$tdir/$tfile
1451         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1452         test_mkdir -p lndir/bar1
1453         test_mkdir $DIR/$tdir/$tfile/$tfile
1454         cd $tfile                || error "cd $tfile failed"
1455         ln -s .. dotdot          || error "ln dotdot failed"
1456         ln -s dotdot/lndir lndir || error "ln lndir failed"
1457         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1458         output=`ls $tfile/$tfile/lndir/bar1`
1459         [ "$output" = bar1 ] && error "unexpected output"
1460         rm -r $tfile             || error "rm $tfile failed"
1461         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1462 }
1463 run_test 26f "rm -r of a directory which has recursive symlink"
1464
1465 test_27a() {
1466         test_mkdir $DIR/$tdir
1467         $LFS getstripe $DIR/$tdir
1468         $LFS setstripe -c 1 $DIR/$tdir/$tfile || error "setstripe failed"
1469         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1470         cp /etc/hosts $DIR/$tdir/$tfile || error "Can't copy to one stripe file"
1471 }
1472 run_test 27a "one stripe file"
1473
1474 test_27b() {
1475         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1476
1477         test_mkdir $DIR/$tdir
1478         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1479         $LFS getstripe -c $DIR/$tdir/$tfile
1480         [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
1481                 error "two-stripe file doesn't have two stripes"
1482
1483         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1484 }
1485 run_test 27b "create and write to two stripe file"
1486
1487 test_27d() {
1488         test_mkdir $DIR/$tdir
1489         $LFS setstripe -c 0 -i -1 -S 0 $DIR/$tdir/$tfile ||
1490                 error "setstripe failed"
1491         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1492         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1493 }
1494 run_test 27d "create file with default settings"
1495
1496 test_27e() {
1497         # LU-5839 adds check for existed layout before setting it
1498         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1499                 skip "Need MDS version at least 2.7.56"
1500
1501         test_mkdir $DIR/$tdir
1502         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1503         $LFS setstripe -c 2 $DIR/$tdir/$tfile && error "setstripe worked twice"
1504         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1505 }
1506 run_test 27e "setstripe existing file (should return error)"
1507
1508 test_27f() {
1509         test_mkdir $DIR/$tdir
1510         $LFS setstripe -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1511                 error "$SETSTRIPE $DIR/$tdir/$tfile failed"
1512         $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1513                 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1514         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1515         $LFS getstripe $DIR/$tdir/$tfile || error "$LFS getstripe failed"
1516 }
1517 run_test 27f "setstripe with bad stripe size (should return error)"
1518
1519 test_27g() {
1520         test_mkdir $DIR/$tdir
1521         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1522         $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "no stripe info" ||
1523                 error "$DIR/$tdir/$tfile has object"
1524 }
1525 run_test 27g "$LFS getstripe with no objects"
1526
1527 test_27i() {
1528         test_mkdir $DIR/$tdir
1529         touch $DIR/$tdir/$tfile || error "touch failed"
1530         [[ $($LFS getstripe -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1531                 error "missing objects"
1532 }
1533 run_test 27i "$LFS getstripe with some objects"
1534
1535 test_27j() {
1536         test_mkdir $DIR/$tdir
1537         $LFS setstripe -i $OSTCOUNT $DIR/$tdir/$tfile &&
1538                 error "setstripe failed" || true
1539 }
1540 run_test 27j "setstripe with bad stripe offset (should return error)"
1541
1542 test_27k() { # bug 2844
1543         test_mkdir $DIR/$tdir
1544         local file=$DIR/$tdir/$tfile
1545         local ll_max_blksize=$((4 * 1024 * 1024))
1546         $LFS setstripe -S 67108864 $file || error "setstripe failed"
1547         local blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1548         [ $blksize -le $ll_max_blksize ] || error "1:$blksize > $ll_max_blksize"
1549         dd if=/dev/zero of=$file bs=4k count=1
1550         blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1551         [ $blksize -le $ll_max_blksize ] || error "2:$blksize > $ll_max_blksize"
1552 }
1553 run_test 27k "limit i_blksize for broken user apps"
1554
1555 test_27l() {
1556         mcreate $DIR/$tfile || error "creating file"
1557         $RUNAS $LFS setstripe -c 1 $DIR/$tfile &&
1558                 error "setstripe should have failed" || true
1559 }
1560 run_test 27l "check setstripe permissions (should return error)"
1561
1562 test_27m() {
1563         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1564
1565         ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1566                    head -n1)
1567         if [[ $ORIGFREE -gt $MAXFREE ]]; then
1568                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1569         fi
1570         trap simple_cleanup_common EXIT
1571         test_mkdir $DIR/$tdir
1572         $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.1
1573         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=1024 count=$MAXFREE &&
1574                 error "dd should fill OST0"
1575         i=2
1576         while $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.$i; do
1577                 i=$((i + 1))
1578                 [ $i -gt 256 ] && break
1579         done
1580         i=$((i + 1))
1581         touch $DIR/$tdir/$tfile.$i
1582         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1583             awk '{print $1}'| grep -w "0") ] &&
1584                 error "OST0 was full but new created file still use it"
1585         i=$((i + 1))
1586         touch $DIR/$tdir/$tfile.$i
1587         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1588             awk '{print $1}'| grep -w "0") ] &&
1589                 error "OST0 was full but new created file still use it"
1590         simple_cleanup_common
1591 }
1592 run_test 27m "create file while OST0 was full"
1593
1594 sleep_maxage() {
1595         local delay=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage |
1596                       awk '{ print $1 * 2; exit; }')
1597         sleep $delay
1598 }
1599
1600 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1601 # if the OST isn't full anymore.
1602 reset_enospc() {
1603         local OSTIDX=${1:-""}
1604
1605         local list=$(comma_list $(osts_nodes))
1606         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1607
1608         do_nodes $list lctl set_param fail_loc=0
1609         sync    # initiate all OST_DESTROYs from MDS to OST
1610         sleep_maxage
1611 }
1612
1613 exhaust_precreations() {
1614         local OSTIDX=$1
1615         local FAILLOC=$2
1616         local FAILIDX=${3:-$OSTIDX}
1617         local ofacet=ost$((OSTIDX + 1))
1618
1619         test_mkdir -p -c1 $DIR/$tdir
1620         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
1621         local mfacet=mds$((mdtidx + 1))
1622         echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1623
1624         local OST=$(ostname_from_index $OSTIDX)
1625
1626         # on the mdt's osc
1627         local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1628         local last_id=$(do_facet $mfacet lctl get_param -n \
1629                         osc.$mdtosc_proc1.prealloc_last_id)
1630         local next_id=$(do_facet $mfacet lctl get_param -n \
1631                         osc.$mdtosc_proc1.prealloc_next_id)
1632
1633         local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1634         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1635
1636         test_mkdir -p $DIR/$tdir/${OST}
1637         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1638 #define OBD_FAIL_OST_ENOSPC              0x215
1639         do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1640         echo "Creating to objid $last_id on ost $OST..."
1641         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1642         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1643         do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1644         sleep_maxage
1645 }
1646
1647 exhaust_all_precreations() {
1648         local i
1649         for (( i=0; i < OSTCOUNT; i++ )) ; do
1650                 exhaust_precreations $i $1 -1
1651         done
1652 }
1653
1654 test_27n() {
1655         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1656         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1657         remote_mds_nodsh && skip "remote MDS with nodsh"
1658         remote_ost_nodsh && skip "remote OST with nodsh"
1659
1660         reset_enospc
1661         rm -f $DIR/$tdir/$tfile
1662         exhaust_precreations 0 0x80000215
1663         $LFS setstripe -c -1 $DIR/$tdir || error "setstripe failed"
1664         touch $DIR/$tdir/$tfile || error "touch failed"
1665         $LFS getstripe $DIR/$tdir/$tfile
1666         reset_enospc
1667 }
1668 run_test 27n "create file with some full OSTs"
1669
1670 test_27o() {
1671         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1672         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1673         remote_mds_nodsh && skip "remote MDS with nodsh"
1674         remote_ost_nodsh && skip "remote OST with nodsh"
1675
1676         reset_enospc
1677         rm -f $DIR/$tdir/$tfile
1678         exhaust_all_precreations 0x215
1679
1680         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1681
1682         reset_enospc
1683         rm -rf $DIR/$tdir/*
1684 }
1685 run_test 27o "create file with all full OSTs (should error)"
1686
1687 test_27p() {
1688         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1689         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1690         remote_mds_nodsh && skip "remote MDS with nodsh"
1691         remote_ost_nodsh && skip "remote OST with nodsh"
1692
1693         reset_enospc
1694         rm -f $DIR/$tdir/$tfile
1695         test_mkdir $DIR/$tdir
1696
1697         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1698         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1699         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1700
1701         exhaust_precreations 0 0x80000215
1702         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1703         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1704         $LFS getstripe $DIR/$tdir/$tfile
1705
1706         reset_enospc
1707 }
1708 run_test 27p "append to a truncated file with some full OSTs"
1709
1710 test_27q() {
1711         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1712         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1713         remote_mds_nodsh && skip "remote MDS with nodsh"
1714         remote_ost_nodsh && skip "remote OST with nodsh"
1715
1716         reset_enospc
1717         rm -f $DIR/$tdir/$tfile
1718
1719         test_mkdir $DIR/$tdir
1720         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1721         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||
1722                 error "truncate $DIR/$tdir/$tfile failed"
1723         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1724
1725         exhaust_all_precreations 0x215
1726
1727         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1728         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1729
1730         reset_enospc
1731 }
1732 run_test 27q "append to truncated file with all OSTs full (should error)"
1733
1734 test_27r() {
1735         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1736         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1737         remote_mds_nodsh && skip "remote MDS with nodsh"
1738         remote_ost_nodsh && skip "remote OST with nodsh"
1739
1740         reset_enospc
1741         rm -f $DIR/$tdir/$tfile
1742         exhaust_precreations 0 0x80000215
1743
1744         $LFS setstripe -i 0 -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1745
1746         reset_enospc
1747 }
1748 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1749
1750 test_27s() { # bug 10725
1751         test_mkdir $DIR/$tdir
1752         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1753         local stripe_count=0
1754         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1755         $LFS setstripe -S $stripe_size -c $stripe_count $DIR/$tdir &&
1756                 error "stripe width >= 2^32 succeeded" || true
1757
1758 }
1759 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1760
1761 test_27t() { # bug 10864
1762         WDIR=$(pwd)
1763         WLFS=$(which lfs)
1764         cd $DIR
1765         touch $tfile
1766         $WLFS getstripe $tfile
1767         cd $WDIR
1768 }
1769 run_test 27t "check that utils parse path correctly"
1770
1771 test_27u() { # bug 4900
1772         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1773         remote_mds_nodsh && skip "remote MDS with nodsh"
1774
1775         local index
1776         local list=$(comma_list $(mdts_nodes))
1777
1778 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1779         do_nodes $list $LCTL set_param fail_loc=0x139
1780         test_mkdir -p $DIR/$tdir
1781         trap simple_cleanup_common EXIT
1782         createmany -o $DIR/$tdir/t- 1000
1783         do_nodes $list $LCTL set_param fail_loc=0
1784
1785         TLOG=$TMP/$tfile.getstripe
1786         $LFS getstripe $DIR/$tdir > $TLOG
1787         OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
1788         unlinkmany $DIR/$tdir/t- 1000
1789         trap 0
1790         [[ $OBJS -gt 0 ]] &&
1791                 error "$OBJS objects created on OST-0. See $TLOG" ||
1792                 rm -f $TLOG
1793 }
1794 run_test 27u "skip object creation on OSC w/o objects"
1795
1796 test_27v() { # bug 4900
1797         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1798         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1799         remote_mds_nodsh && skip "remote MDS with nodsh"
1800         remote_ost_nodsh && skip "remote OST with nodsh"
1801
1802         exhaust_all_precreations 0x215
1803         reset_enospc
1804
1805         $LFS setstripe -c 1 $DIR/$tdir         # 1 stripe / file
1806
1807         touch $DIR/$tdir/$tfile
1808         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1809         # all except ost1
1810         for (( i=1; i < OSTCOUNT; i++ )); do
1811                 do_facet ost$i lctl set_param fail_loc=0x705
1812         done
1813         local START=`date +%s`
1814         createmany -o $DIR/$tdir/$tfile 32
1815
1816         local FINISH=`date +%s`
1817         local TIMEOUT=`lctl get_param -n timeout`
1818         local PROCESS=$((FINISH - START))
1819         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1820                error "$FINISH - $START >= $TIMEOUT / 2"
1821         sleep $((TIMEOUT / 2 - PROCESS))
1822         reset_enospc
1823 }
1824 run_test 27v "skip object creation on slow OST"
1825
1826 test_27w() { # bug 10997
1827         test_mkdir $DIR/$tdir
1828         $LFS setstripe -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1829         [ $($LFS getstripe -S $DIR/$tdir/f0) -ne 65536 ] &&
1830                 error "stripe size $size != 65536" || true
1831         [ $($LFS getstripe -d $DIR/$tdir | grep -c "stripe_count") -eq 0 ] &&
1832                 error "$LFS getstripe -d $DIR/$tdir no 'stripe_count'" || true
1833 }
1834 run_test 27w "check $LFS setstripe -S and getstrip -d options"
1835
1836 test_27wa() {
1837         [[ $OSTCOUNT -lt 2 ]] &&
1838                 skip_env "skipping multiple stripe count/offset test"
1839
1840         test_mkdir $DIR/$tdir
1841         for i in $(seq 1 $OSTCOUNT); do
1842                 offset=$((i - 1))
1843                 $LFS setstripe -c $i -i $offset $DIR/$tdir/f$i ||
1844                         error "setstripe -c $i -i $offset failed"
1845                 count=$($LFS getstripe -c $DIR/$tdir/f$i)
1846                 index=$($LFS getstripe -i $DIR/$tdir/f$i)
1847                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1848                 [ $index -ne $offset ] &&
1849                         error "stripe offset $index != $offset" || true
1850         done
1851 }
1852 run_test 27wa "check $LFS setstripe -c -i options"
1853
1854 test_27x() {
1855         remote_ost_nodsh && skip "remote OST with nodsh"
1856         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1857         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1858
1859         OFFSET=$(($OSTCOUNT - 1))
1860         OSTIDX=0
1861         local OST=$(ostname_from_index $OSTIDX)
1862
1863         test_mkdir $DIR/$tdir
1864         $LFS setstripe -c 1 $DIR/$tdir  # 1 stripe per file
1865         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1866         sleep_maxage
1867         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1868         for i in $(seq 0 $OFFSET); do
1869                 [ $($LFS getstripe $DIR/$tdir/$tfile$i | grep -A 10 obdidx |
1870                         awk '{print $1}' | grep -w "$OSTIDX") ] &&
1871                 error "OST0 was degraded but new created file still use it"
1872         done
1873         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1874 }
1875 run_test 27x "create files while OST0 is degraded"
1876
1877 test_27y() {
1878         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1879         remote_mds_nodsh && skip "remote MDS with nodsh"
1880         remote_ost_nodsh && skip "remote OST with nodsh"
1881         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1882
1883         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1884         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1885                 osc.$mdtosc.prealloc_last_id)
1886         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1887                 osc.$mdtosc.prealloc_next_id)
1888         local fcount=$((last_id - next_id))
1889         [[ $fcount -eq 0 ]] && skip "not enough space on OST0"
1890         [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
1891
1892         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1893                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1894         local OST_DEACTIVE_IDX=-1
1895         local OSC
1896         local OSTIDX
1897         local OST
1898
1899         for OSC in $MDS_OSCS; do
1900                 OST=$(osc_to_ost $OSC)
1901                 OSTIDX=$(index_from_ostuuid $OST)
1902                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1903                         OST_DEACTIVE_IDX=$OSTIDX
1904                 fi
1905                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1906                         echo $OSC "is Deactivated:"
1907                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1908                 fi
1909         done
1910
1911         OSTIDX=$(index_from_ostuuid $OST)
1912         test_mkdir $DIR/$tdir
1913         $LFS setstripe -c 1 $DIR/$tdir      # 1 stripe / file
1914
1915         for OSC in $MDS_OSCS; do
1916                 OST=$(osc_to_ost $OSC)
1917                 OSTIDX=$(index_from_ostuuid $OST)
1918                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1919                         echo $OST "is degraded:"
1920                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1921                                                 obdfilter.$OST.degraded=1
1922                 fi
1923         done
1924
1925         sleep_maxage
1926         createmany -o $DIR/$tdir/$tfile $fcount
1927
1928         for OSC in $MDS_OSCS; do
1929                 OST=$(osc_to_ost $OSC)
1930                 OSTIDX=$(index_from_ostuuid $OST)
1931                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1932                         echo $OST "is recovered from degraded:"
1933                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1934                                                 obdfilter.$OST.degraded=0
1935                 else
1936                         do_facet $SINGLEMDS lctl --device %$OSC activate
1937                 fi
1938         done
1939
1940         # all osp devices get activated, hence -1 stripe count restored
1941         local stripe_count=0
1942
1943         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1944         # devices get activated.
1945         sleep_maxage
1946         $LFS setstripe -c -1 $DIR/$tfile
1947         stripe_count=$($LFS getstripe -c $DIR/$tfile)
1948         rm -f $DIR/$tfile
1949         [ $stripe_count -ne $OSTCOUNT ] &&
1950                 error "Of $OSTCOUNT OSTs, only $stripe_count is available"
1951         return 0
1952 }
1953 run_test 27y "create files while OST0 is degraded and the rest inactive"
1954
1955 check_seq_oid()
1956 {
1957         log "check file $1"
1958
1959         lmm_count=$($GETSTRIPE -c $1)
1960         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1961         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1962
1963         local old_ifs="$IFS"
1964         IFS=$'[:]'
1965         fid=($($LFS path2fid $1))
1966         IFS="$old_ifs"
1967
1968         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1969         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1970
1971         # compare lmm_seq and lu_fid->f_seq
1972         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1973         # compare lmm_object_id and lu_fid->oid
1974         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1975
1976         # check the trusted.fid attribute of the OST objects of the file
1977         local have_obdidx=false
1978         local stripe_nr=0
1979         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1980                 # skip lines up to and including "obdidx"
1981                 [ -z "$obdidx" ] && break
1982                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1983                 $have_obdidx || continue
1984
1985                 local ost=$((obdidx + 1))
1986                 local dev=$(ostdevname $ost)
1987                 local oid_hex
1988
1989                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1990
1991                 seq=$(echo $seq | sed -e "s/^0x//g")
1992                 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
1993                         oid_hex=$(echo $oid)
1994                 else
1995                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1996                 fi
1997                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1998
1999                 local ff=""
2000                 #
2001                 # Don't unmount/remount the OSTs if we don't need to do that.
2002                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
2003                 # update too, until that use mount/ll_decode_filter_fid/mount.
2004                 # Re-enable when debugfs will understand new filter_fid.
2005                 #
2006                 if [ $(facet_fstype ost$ost) == ldiskfs ]; then
2007                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
2008                                 $dev 2>/dev/null" | grep "parent=")
2009                 fi
2010                 if [ -z "$ff" ]; then
2011                         stop ost$ost
2012                         mount_fstype ost$ost
2013                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
2014                                 $(facet_mntpt ost$ost)/$obj_file)
2015                         unmount_fstype ost$ost
2016                         start ost$ost $dev $OST_MOUNT_OPTS
2017                         clients_up
2018                 fi
2019
2020                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
2021
2022                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
2023
2024                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
2025                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
2026                 #
2027                 # fid: parent=[0x200000400:0x1e:0x0] stripe=1 stripe_count=2 \
2028                 #       stripe_size=1048576 component_id=1 component_start=0 \
2029                 #       component_end=33554432
2030                 local ff_parent=$(sed -e 's/.*parent=.//' <<<$ff)
2031                 local ff_pseq=$(cut -d: -f1 <<<$ff_parent)
2032                 local ff_poid=$(cut -d: -f2 <<<$ff_parent)
2033                 local ff_pstripe
2034                 if grep -q 'stripe=' <<<$ff; then
2035                         ff_pstripe=$(sed -e 's/.*stripe=//' -e 's/ .*//' <<<$ff)
2036                 else
2037                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
2038                         # into f_ver in this case.  See comment on ff_parent.
2039                         ff_pstripe=$(cut -d: -f3 <<<$ff_parent | sed -e 's/]//')
2040                 fi
2041
2042                 # compare lmm_seq and filter_fid->ff_parent.f_seq
2043                 [ $ff_pseq = $lmm_seq ] ||
2044                         error "FF parent SEQ $ff_pseq != $lmm_seq"
2045                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
2046                 [ $ff_poid = $lmm_oid ] ||
2047                         error "FF parent OID $ff_poid != $lmm_oid"
2048                 (($ff_pstripe == $stripe_nr)) ||
2049                         error "FF stripe $ff_pstripe != $stripe_nr"
2050
2051                 stripe_nr=$((stripe_nr + 1))
2052                 [ $(lustre_version_code client) -lt $(version_code 2.9.55) ] &&
2053                         continue
2054                 if grep -q 'stripe_count=' <<<$ff; then
2055                         local ff_scnt=$(sed -e 's/.*stripe_count=//' \
2056                                             -e 's/ .*//' <<<$ff)
2057                         [ $lmm_count = $ff_scnt ] ||
2058                                 error "FF stripe count $lmm_count != $ff_scnt"
2059                 fi
2060         done
2061 }
2062
2063 test_27z() {
2064         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2065         remote_ost_nodsh && skip "remote OST with nodsh"
2066
2067         test_mkdir $DIR/$tdir
2068         $LFS setstripe -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
2069                 { error "setstripe -c -1 failed"; return 1; }
2070         # We need to send a write to every object to get parent FID info set.
2071         # This _should_ also work for setattr, but does not currently.
2072         # touch $DIR/$tdir/$tfile-1 ||
2073         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
2074                 { error "dd $tfile-1 failed"; return 2; }
2075         $LFS setstripe -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
2076                 { error "setstripe -c -1 failed"; return 3; }
2077         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
2078                 { error "dd $tfile-2 failed"; return 4; }
2079
2080         # make sure write RPCs have been sent to OSTs
2081         sync; sleep 5; sync
2082
2083         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
2084         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
2085 }
2086 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
2087
2088 test_27A() { # b=19102
2089         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2090
2091         save_layout_restore_at_exit $MOUNT
2092         $LFS setstripe -c 0 -i -1 -S 0 $MOUNT
2093         wait_update $HOSTNAME "$GETSTRIPE -c $MOUNT | sed 's/  *//g'" "1" 20 ||
2094                 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
2095         local default_size=$($GETSTRIPE -S $MOUNT)
2096         local default_offset=$($GETSTRIPE -i $MOUNT)
2097         local dsize=$(do_facet $SINGLEMDS \
2098                 "$LCTL get_param -n lod.$(facet_svc $SINGLEMDS)*.stripesize")
2099         [ $default_size -eq $dsize ] ||
2100                 error "stripe size $default_size != $dsize"
2101         [ $default_offset -eq -1 ] ||
2102                 error "stripe offset $default_offset != -1"
2103 }
2104 run_test 27A "check filesystem-wide default LOV EA values"
2105
2106 test_27B() { # LU-2523
2107         test_mkdir $DIR/$tdir
2108         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
2109         touch $DIR/$tdir/f0
2110         # open f1 with O_LOV_DELAY_CREATE
2111         # rename f0 onto f1
2112         # call setstripe ioctl on open file descriptor for f1
2113         # close
2114         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
2115                 $DIR/$tdir/f0
2116
2117         rm -f $DIR/$tdir/f1
2118         # open f1 with O_LOV_DELAY_CREATE
2119         # unlink f1
2120         # call setstripe ioctl on open file descriptor for f1
2121         # close
2122         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
2123
2124         # Allow multiop to fail in imitation of NFS's busted semantics.
2125         true
2126 }
2127 run_test 27B "call setstripe on open unlinked file/rename victim"
2128
2129 test_27C() { #LU-2871
2130         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2131
2132         declare -a ost_idx
2133         local index
2134         local found
2135         local i
2136         local j
2137
2138         test_mkdir $DIR/$tdir
2139         cd $DIR/$tdir
2140         for i in $(seq 0 $((OSTCOUNT - 1))); do
2141                 # set stripe across all OSTs starting from OST$i
2142                 $SETSTRIPE -i $i -c -1 $tfile$i
2143                 # get striping information
2144                 ost_idx=($($GETSTRIPE $tfile$i |
2145                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2146                 echo ${ost_idx[@]}
2147
2148                 # check the layout
2149                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2150                         error "${#ost_idx[@]} != $OSTCOUNT"
2151
2152                 for index in $(seq 0 $((OSTCOUNT - 1))); do
2153                         found=0
2154                         for j in $(echo ${ost_idx[@]}); do
2155                                 if [ $index -eq $j ]; then
2156                                         found=1
2157                                         break
2158                                 fi
2159                         done
2160                         [ $found = 1 ] ||
2161                                 error "Can not find $index in ${ost_idx[@]}"
2162                 done
2163         done
2164 }
2165 run_test 27C "check full striping across all OSTs"
2166
2167 test_27D() {
2168         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
2169         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
2170         remote_mds_nodsh && skip "remote MDS with nodsh"
2171
2172         local POOL=${POOL:-testpool}
2173         local first_ost=0
2174         local last_ost=$(($OSTCOUNT - 1))
2175         local ost_step=1
2176         local ost_list=$(seq $first_ost $ost_step $last_ost)
2177         local ost_range="$first_ost $last_ost $ost_step"
2178
2179         if ! combined_mgs_mds ; then
2180                 mount_mgs_client
2181         fi
2182
2183         test_mkdir $DIR/$tdir
2184         pool_add $POOL || error "pool_add failed"
2185         pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2186
2187         local skip27D
2188         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ] &&
2189                 skip27D+="-s 29"
2190         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.55) -o \
2191           $(lustre_version_code client) -lt $(version_code 2.9.55) ] &&
2192                 skip27D+=" -s 30,31"
2193         llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT $skip27D ||
2194                 error "llapi_layout_test failed"
2195
2196         destroy_test_pools || error "destroy test pools failed"
2197
2198         if ! combined_mgs_mds ; then
2199                 umount_mgs_client
2200         fi
2201 }
2202 run_test 27D "validate llapi_layout API"
2203
2204 # Verify that default_easize is increased from its initial value after
2205 # accessing a widely striped file.
2206 test_27E() {
2207         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
2208         [ $(lustre_version_code client) -lt $(version_code 2.5.57) ] &&
2209                 skip "client does not have LU-3338 fix"
2210
2211         # 72 bytes is the minimum space required to store striping
2212         # information for a file striped across one OST:
2213         # (sizeof(struct lov_user_md_v3) +
2214         #  sizeof(struct lov_user_ost_data_v1))
2215         local min_easize=72
2216         $LCTL set_param -n llite.*.default_easize $min_easize ||
2217                 error "lctl set_param failed"
2218         local easize=$($LCTL get_param -n llite.*.default_easize)
2219
2220         [ $easize -eq $min_easize ] ||
2221                 error "failed to set default_easize"
2222
2223         $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2224                 error "setstripe failed"
2225         cat $DIR/$tfile
2226         rm $DIR/$tfile
2227
2228         easize=$($LCTL get_param -n llite.*.default_easize)
2229
2230         [ $easize -gt $min_easize ] ||
2231                 error "default_easize not updated"
2232 }
2233 run_test 27E "check that default extended attribute size properly increases"
2234
2235 test_27F() { # LU-5346/LU-7975
2236         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2237         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs"
2238         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.51) ]] &&
2239                 skip "Need MDS version at least 2.8.51"
2240         remote_ost_nodsh && skip "remote OST with nodsh"
2241
2242         test_mkdir $DIR/$tdir
2243         rm -f $DIR/$tdir/f0
2244         $SETSTRIPE -c 2 $DIR/$tdir
2245
2246         # stop all OSTs to reproduce situation for LU-7975 ticket
2247         for num in $(seq $OSTCOUNT); do
2248                 stop ost$num
2249         done
2250
2251         # open/create f0 with O_LOV_DELAY_CREATE
2252         # truncate f0 to a non-0 size
2253         # close
2254         multiop $DIR/$tdir/f0 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T1050000c
2255
2256         $CHECKSTAT -s 1050000 $DIR/$tdir/f0 || error "checkstat failed"
2257         # open/write it again to force delayed layout creation
2258         cat /etc/hosts > $DIR/$tdir/f0 &
2259         catpid=$!
2260
2261         # restart OSTs
2262         for num in $(seq $OSTCOUNT); do
2263                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
2264                         error "ost$num failed to start"
2265         done
2266
2267         wait $catpid || error "cat failed"
2268
2269         cmp /etc/hosts $DIR/$tdir/f0 || error "cmp failed"
2270         [[ $($GETSTRIPE -c $DIR/$tdir/f0) == 2 ]] || error "wrong stripecount"
2271
2272 }
2273 run_test 27F "Client resend delayed layout creation with non-zero size"
2274
2275 test_27G() { #LU-10629
2276         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
2277         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2278         local POOL=${POOL:-testpool}
2279         local ostrange="0 0 1"
2280
2281         test_mkdir $DIR/$tdir
2282         pool_add $POOL || error "pool_add failed"
2283         pool_add_targets $POOL $ostrange || error "pool_add_targets failed"
2284         $LFS setstripe -p $POOL $DIR/$tdir
2285
2286         local pool=$($LFS getstripe -p $DIR/$tdir)
2287
2288         [ "$pool" = "$POOL" ] || error "Striping failed got '$pool' not '$POOL'"
2289
2290         $LFS setstripe -d $DIR/$tdir
2291
2292         pool=$($LFS getstripe -p $DIR/$tdir)
2293
2294         rmdir $DIR/$tdir
2295
2296         [ -z "$pool" ] || error "'$pool' is not empty"
2297 }
2298 run_test 27G "Clear OST pool from stripe"
2299
2300 # createtest also checks that device nodes are created and
2301 # then visible correctly (#2091)
2302 test_28() { # bug 2091
2303         test_mkdir $DIR/d28
2304         $CREATETEST $DIR/d28/ct || error "createtest failed"
2305 }
2306 run_test 28 "create/mknod/mkdir with bad file types ============"
2307
2308 test_29() {
2309         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2310
2311         sync; sleep 1; sync # flush out any dirty pages from previous tests
2312         cancel_lru_locks
2313         test_mkdir $DIR/d29
2314         touch $DIR/d29/foo
2315         log 'first d29'
2316         ls -l $DIR/d29
2317
2318         declare -i LOCKCOUNTORIG=0
2319         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2320                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2321         done
2322         [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
2323
2324         declare -i LOCKUNUSEDCOUNTORIG=0
2325         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2326                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2327         done
2328
2329         log 'second d29'
2330         ls -l $DIR/d29
2331         log 'done'
2332
2333         declare -i LOCKCOUNTCURRENT=0
2334         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2335                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2336         done
2337
2338         declare -i LOCKUNUSEDCOUNTCURRENT=0
2339         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2340                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2341         done
2342
2343         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2344                 $LCTL set_param -n ldlm.dump_namespaces ""
2345                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2346                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2347                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2348                 return 2
2349         fi
2350         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2351                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2352                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2353                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2354                 return 3
2355         fi
2356 }
2357 run_test 29 "IT_GETATTR regression  ============================"
2358
2359 test_30a() { # was test_30
2360         cp $(which ls) $DIR || cp /bin/ls $DIR
2361         $DIR/ls / || error "Can't execute binary from lustre"
2362         rm $DIR/ls
2363 }
2364 run_test 30a "execute binary from Lustre (execve) =============="
2365
2366 test_30b() {
2367         cp `which ls` $DIR || cp /bin/ls $DIR
2368         chmod go+rx $DIR/ls
2369         $RUNAS $DIR/ls / || error "Can't execute binary from lustre as non-root"
2370         rm $DIR/ls
2371 }
2372 run_test 30b "execute binary from Lustre as non-root ==========="
2373
2374 test_30c() { # b=22376
2375         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2376
2377         cp `which ls` $DIR || cp /bin/ls $DIR
2378         chmod a-rw $DIR/ls
2379         cancel_lru_locks mdc
2380         cancel_lru_locks osc
2381         $RUNAS $DIR/ls / || error "Can't execute binary from lustre"
2382         rm -f $DIR/ls
2383 }
2384 run_test 30c "execute binary from Lustre without read perms ===="
2385
2386 test_31a() {
2387         $OPENUNLINK $DIR/f31 $DIR/f31 || error "openunlink failed"
2388         $CHECKSTAT -a $DIR/f31 || error "$DIR/f31 exists"
2389 }
2390 run_test 31a "open-unlink file =================================="
2391
2392 test_31b() {
2393         touch $DIR/f31 || error "touch $DIR/f31 failed"
2394         ln $DIR/f31 $DIR/f31b || error "ln failed"
2395         $MULTIOP $DIR/f31b Ouc || error "multiop failed"
2396         $CHECKSTAT -t file $DIR/f31 || error "$DIR/f31 not file type"
2397 }
2398 run_test 31b "unlink file with multiple links while open ======="
2399
2400 test_31c() {
2401         touch $DIR/f31 || error "touch $DIR/f31 failed"
2402         ln $DIR/f31 $DIR/f31c || error "ln failed"
2403         multiop_bg_pause $DIR/f31 O_uc ||
2404                 error "multiop_bg_pause for $DIR/f31 failed"
2405         MULTIPID=$!
2406         $MULTIOP $DIR/f31c Ouc
2407         kill -USR1 $MULTIPID
2408         wait $MULTIPID
2409 }
2410 run_test 31c "open-unlink file with multiple links ============="
2411
2412 test_31d() {
2413         opendirunlink $DIR/d31d $DIR/d31d || error "opendirunlink failed"
2414         $CHECKSTAT -a $DIR/d31d || error "$DIR/d31d exists"
2415 }
2416 run_test 31d "remove of open directory ========================="
2417
2418 test_31e() { # bug 2904
2419         openfilleddirunlink $DIR/d31e || error "openfilleddirunlink failed"
2420 }
2421 run_test 31e "remove of open non-empty directory ==============="
2422
2423 test_31f() { # bug 4554
2424         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2425
2426         set -vx
2427         test_mkdir $DIR/d31f
2428         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2429         cp /etc/hosts $DIR/d31f
2430         ls -l $DIR/d31f
2431         $GETSTRIPE $DIR/d31f/hosts
2432         multiop_bg_pause $DIR/d31f D_c || return 1
2433         MULTIPID=$!
2434
2435         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2436         test_mkdir $DIR/d31f
2437         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2438         cp /etc/hosts $DIR/d31f
2439         ls -l $DIR/d31f
2440         $GETSTRIPE $DIR/d31f/hosts
2441         multiop_bg_pause $DIR/d31f D_c || return 1
2442         MULTIPID2=$!
2443
2444         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2445         wait $MULTIPID || error "first opendir $MULTIPID failed"
2446
2447         sleep 6
2448
2449         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2450         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2451         set +vx
2452 }
2453 run_test 31f "remove of open directory with open-unlink file ==="
2454
2455 test_31g() {
2456         echo "-- cross directory link --"
2457         test_mkdir -c1 $DIR/${tdir}ga
2458         test_mkdir -c1 $DIR/${tdir}gb
2459         touch $DIR/${tdir}ga/f
2460         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2461         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2462         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2463         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2464         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2465 }
2466 run_test 31g "cross directory link==============="
2467
2468 test_31h() {
2469         echo "-- cross directory link --"
2470         test_mkdir -c1 $DIR/${tdir}
2471         test_mkdir -c1 $DIR/${tdir}/dir
2472         touch $DIR/${tdir}/f
2473         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2474         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2475         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2476         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2477         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2478 }
2479 run_test 31h "cross directory link under child==============="
2480
2481 test_31i() {
2482         echo "-- cross directory link --"
2483         test_mkdir -c1 $DIR/$tdir
2484         test_mkdir -c1 $DIR/$tdir/dir
2485         touch $DIR/$tdir/dir/f
2486         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2487         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2488         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2489         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2490         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2491 }
2492 run_test 31i "cross directory link under parent==============="
2493
2494 test_31j() {
2495         test_mkdir -c1 -p $DIR/$tdir
2496         test_mkdir -c1 -p $DIR/$tdir/dir1
2497         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2498         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2499         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2500         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2501         return 0
2502 }
2503 run_test 31j "link for directory==============="
2504
2505 test_31k() {
2506         test_mkdir -c1 -p $DIR/$tdir
2507         touch $DIR/$tdir/s
2508         touch $DIR/$tdir/exist
2509         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2510         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2511         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2512         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2513         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2514         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2515         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2516         return 0
2517 }
2518 run_test 31k "link to file: the same, non-existing, dir==============="
2519
2520 test_31m() {
2521         mkdir $DIR/d31m
2522         touch $DIR/d31m/s
2523         mkdir $DIR/d31m2
2524         touch $DIR/d31m2/exist
2525         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2526         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2527         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2528         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2529         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2530         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2531         return 0
2532 }
2533 run_test 31m "link to file: the same, non-existing, dir==============="
2534
2535 test_31n() {
2536         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2537         nlink=$(stat --format=%h $DIR/$tfile)
2538         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2539         local fd=$(free_fd)
2540         local cmd="exec $fd<$DIR/$tfile"
2541         eval $cmd
2542         cmd="exec $fd<&-"
2543         trap "eval $cmd" EXIT
2544         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2545         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2546         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2547         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2548         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2549         eval $cmd
2550 }
2551 run_test 31n "check link count of unlinked file"
2552
2553 link_one() {
2554         local TEMPNAME=$(mktemp $1_XXXXXX)
2555         mlink $TEMPNAME $1 2> /dev/null &&
2556                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2557         munlink $TEMPNAME
2558 }
2559
2560 test_31o() { # LU-2901
2561         test_mkdir $DIR/$tdir
2562         for LOOP in $(seq 100); do
2563                 rm -f $DIR/$tdir/$tfile*
2564                 for THREAD in $(seq 8); do
2565                         link_one $DIR/$tdir/$tfile.$LOOP &
2566                 done
2567                 wait
2568                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2569                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2570                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2571                         break || true
2572         done
2573 }
2574 run_test 31o "duplicate hard links with same filename"
2575
2576 test_31p() {
2577         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
2578
2579         test_mkdir $DIR/$tdir
2580         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2581         $LFS setdirstripe -D -c2 -H all_char $DIR/$tdir/striped_dir
2582
2583         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2584                 error "open unlink test1 failed"
2585         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2586                 error "open unlink test2 failed"
2587
2588         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2589                 error "test1 still exists"
2590         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2591                 error "test2 still exists"
2592 }
2593 run_test 31p "remove of open striped directory"
2594
2595 cleanup_test32_mount() {
2596         local rc=0
2597         trap 0
2598         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$//p')
2599         $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
2600         losetup -d $loopdev || true
2601         rm -rf $DIR/$tdir
2602         return $rc
2603 }
2604
2605 test_32a() {
2606         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2607
2608         echo "== more mountpoints and symlinks ================="
2609         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2610         trap cleanup_test32_mount EXIT
2611         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2612         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2613                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2614         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. ||
2615                 error "$DIR/$tdir/ext2-mountpoint/.. not dir type"
2616         cleanup_test32_mount
2617 }
2618 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2619
2620 test_32b() {
2621         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2622
2623         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2624         trap cleanup_test32_mount EXIT
2625         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2626         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2627                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2628         ls -al $DIR/$tdir/ext2-mountpoint/.. ||
2629                 error "Can't list $DIR/$tdir/ext2-mountpoint/.."
2630         cleanup_test32_mount
2631 }
2632 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2633
2634 test_32c() {
2635         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2636
2637         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2638         trap cleanup_test32_mount EXIT
2639         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2640         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2641                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2642         test_mkdir -p $DIR/$tdir/d2/test_dir
2643         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
2644                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_dir not dir type"
2645         cleanup_test32_mount
2646 }
2647 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2648
2649 test_32d() {
2650         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2651
2652         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2653         trap cleanup_test32_mount EXIT
2654         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2655         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2656                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2657         test_mkdir -p $DIR/$tdir/d2/test_dir
2658         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
2659                 error "Can't list $DIR/$tdir/ext2-mountpoint/../d2/test_dir"
2660         cleanup_test32_mount
2661 }
2662 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir"
2663
2664 test_32e() {
2665         rm -fr $DIR/$tdir
2666         test_mkdir -p $DIR/$tdir/tmp
2667         local tmp_dir=$DIR/$tdir/tmp
2668         ln -s $DIR/$tdir $tmp_dir/symlink11
2669         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2670         $CHECKSTAT -t link $DIR/$tdir/tmp/symlink11 || error "symlink11 bad"
2671         $CHECKSTAT -t link $DIR/$tdir/symlink01 || error "symlink01 bad"
2672 }
2673 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir"
2674
2675 test_32f() {
2676         rm -fr $DIR/$tdir
2677         test_mkdir -p $DIR/$tdir/tmp
2678         local tmp_dir=$DIR/$tdir/tmp
2679         ln -s $DIR/$tdir $tmp_dir/symlink11
2680         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2681         ls $DIR/$tdir/tmp/symlink11  || error "symlink11 bad"
2682         ls $DIR/$tdir/symlink01 || error "symlink01 bad"
2683 }
2684 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir"
2685
2686 test_32g() {
2687         local tmp_dir=$DIR/$tdir/tmp
2688         test_mkdir -p $tmp_dir
2689         test_mkdir $DIR/${tdir}2
2690         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2691         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2692         $CHECKSTAT -t link $tmp_dir/symlink12 || error "symlink12 not a link"
2693         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error "symlink02 not a link"
2694         $CHECKSTAT -t dir -f $tmp_dir/symlink12 || error "symlink12 not a dir"
2695         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error "symlink12 not a dir"
2696 }
2697 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2698
2699 test_32h() {
2700         rm -fr $DIR/$tdir $DIR/${tdir}2
2701         tmp_dir=$DIR/$tdir/tmp
2702         test_mkdir -p $tmp_dir
2703         test_mkdir $DIR/${tdir}2
2704         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2705         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2706         ls $tmp_dir/symlink12 || error "listing symlink12"
2707         ls $DIR/$tdir/symlink02  || error "listing symlink02"
2708 }
2709 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2710
2711 test_32i() {
2712         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2713
2714         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2715         trap cleanup_test32_mount EXIT
2716         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2717         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2718                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2719         touch $DIR/$tdir/test_file
2720         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file ||
2721                 error "$DIR/$tdir/ext2-mountpoint/../test_file not file type"
2722         cleanup_test32_mount
2723 }
2724 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2725
2726 test_32j() {
2727         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2728
2729         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2730         trap cleanup_test32_mount EXIT
2731         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2732         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2733                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2734         touch $DIR/$tdir/test_file
2735         cat $DIR/$tdir/ext2-mountpoint/../test_file ||
2736                 error "Can't open $DIR/$tdir/ext2-mountpoint/../test_file"
2737         cleanup_test32_mount
2738 }
2739 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2740
2741 test_32k() {
2742         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2743
2744         rm -fr $DIR/$tdir
2745         trap cleanup_test32_mount EXIT
2746         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2747         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2748                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2749         test_mkdir -p $DIR/$tdir/d2
2750         touch $DIR/$tdir/d2/test_file || error "touch failed"
2751         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
2752                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_file not file type"
2753         cleanup_test32_mount
2754 }
2755 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2756
2757 test_32l() {
2758         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2759
2760         rm -fr $DIR/$tdir
2761         trap cleanup_test32_mount EXIT
2762         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2763         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2764                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2765         test_mkdir -p $DIR/$tdir/d2
2766         touch $DIR/$tdir/d2/test_file || error "touch failed"
2767         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
2768                 error "Can't open $DIR/$tdir/ext2-mountpoint/../d2/test_file"
2769         cleanup_test32_mount
2770 }
2771 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2772
2773 test_32m() {
2774         rm -fr $DIR/d32m
2775         test_mkdir -p $DIR/d32m/tmp
2776         TMP_DIR=$DIR/d32m/tmp
2777         ln -s $DIR $TMP_DIR/symlink11
2778         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2779         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 ||
2780                 error "symlink11 not a link"
2781         $CHECKSTAT -t link $DIR/d32m/symlink01 ||
2782                 error "symlink01 not a link"
2783 }
2784 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2785
2786 test_32n() {
2787         rm -fr $DIR/d32n
2788         test_mkdir -p $DIR/d32n/tmp
2789         TMP_DIR=$DIR/d32n/tmp
2790         ln -s $DIR $TMP_DIR/symlink11
2791         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2792         ls -l $DIR/d32n/tmp/symlink11  || error "listing symlink11"
2793         ls -l $DIR/d32n/symlink01 || error "listing symlink01"
2794 }
2795 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2796
2797 test_32o() {
2798         touch $DIR/$tfile
2799         test_mkdir -p $DIR/d32o/tmp
2800         TMP_DIR=$DIR/d32o/tmp
2801         ln -s $DIR/$tfile $TMP_DIR/symlink12
2802         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2803         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 ||
2804                 error "symlink12 not a link"
2805         $CHECKSTAT -t link $DIR/d32o/symlink02 || error "symlink02 not a link"
2806         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 ||
2807                 error "$DIR/d32o/tmp/symlink12 not file type"
2808         $CHECKSTAT -t file -f $DIR/d32o/symlink02 ||
2809                 error "$DIR/d32o/symlink02 not file type"
2810 }
2811 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2812
2813 test_32p() {
2814         log 32p_1
2815         rm -fr $DIR/d32p
2816         log 32p_2
2817         rm -f $DIR/$tfile
2818         log 32p_3
2819         touch $DIR/$tfile
2820         log 32p_4
2821         test_mkdir -p $DIR/d32p/tmp
2822         log 32p_5
2823         TMP_DIR=$DIR/d32p/tmp
2824         log 32p_6
2825         ln -s $DIR/$tfile $TMP_DIR/symlink12
2826         log 32p_7
2827         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2828         log 32p_8
2829         cat $DIR/d32p/tmp/symlink12 ||
2830                 error "Can't open $DIR/d32p/tmp/symlink12"
2831         log 32p_9
2832         cat $DIR/d32p/symlink02 || error "Can't open $DIR/d32p/symlink02"
2833         log 32p_10
2834 }
2835 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2836
2837 test_32q() {
2838         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2839
2840         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2841         trap cleanup_test32_mount EXIT
2842         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2843         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
2844         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2845                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2846         ls $DIR/$tdir/ext2-mountpoint | grep "\<under_the_mount\>" && error
2847         cleanup_test32_mount
2848 }
2849 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2850
2851 test_32r() {
2852         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2853
2854         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2855         trap cleanup_test32_mount EXIT
2856         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2857         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
2858         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2859                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2860         ls $DIR/$tdir/ext2-mountpoint | grep -q under_the_mount && error || true
2861         cleanup_test32_mount
2862 }
2863 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2864
2865 test_33aa() {
2866         rm -f $DIR/$tfile
2867         touch $DIR/$tfile
2868         chmod 444 $DIR/$tfile
2869         chown $RUNAS_ID $DIR/$tfile
2870         log 33_1
2871         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2872         log 33_2
2873 }
2874 run_test 33aa "write file with mode 444 (should return error)"
2875
2876 test_33a() {
2877         rm -fr $DIR/$tdir
2878         test_mkdir $DIR/$tdir
2879         chown $RUNAS_ID $DIR/$tdir
2880         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile ||
2881                 error "$RUNAS create $tdir/$tfile failed"
2882         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile &&
2883                 error "open RDWR" || true
2884 }
2885 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2886
2887 test_33b() {
2888         rm -fr $DIR/$tdir
2889         test_mkdir $DIR/$tdir
2890         chown $RUNAS_ID $DIR/$tdir
2891         $RUNAS $OPENFILE -f 1286739555 $DIR/$tdir/$tfile || true
2892 }
2893 run_test 33b "test open file with malformed flags (No panic)"
2894
2895 test_33c() {
2896         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2897         remote_ost_nodsh && skip "remote OST with nodsh"
2898
2899         local ostnum
2900         local ostname
2901         local write_bytes
2902         local all_zeros
2903
2904         all_zeros=:
2905         rm -fr $DIR/$tdir
2906         test_mkdir $DIR/$tdir
2907         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2908
2909         sync
2910         for ostnum in $(seq $OSTCOUNT); do
2911                 # test-framework's OST numbering is one-based, while Lustre's
2912                 # is zero-based
2913                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2914                 # Parsing llobdstat's output sucks; we could grep the /proc
2915                 # path, but that's likely to not be as portable as using the
2916                 # llobdstat utility.  So we parse lctl output instead.
2917                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2918                         obdfilter/$ostname/stats |
2919                         awk '/^write_bytes/ {print $7}' )
2920                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2921                 if (( ${write_bytes:-0} > 0 ))
2922                 then
2923                         all_zeros=false
2924                         break;
2925                 fi
2926         done
2927
2928         $all_zeros || return 0
2929
2930         # Write four bytes
2931         echo foo > $DIR/$tdir/bar
2932         # Really write them
2933         sync
2934
2935         # Total up write_bytes after writing.  We'd better find non-zeros.
2936         for ostnum in $(seq $OSTCOUNT); do
2937                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2938                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2939                         obdfilter/$ostname/stats |
2940                         awk '/^write_bytes/ {print $7}' )
2941                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2942                 if (( ${write_bytes:-0} > 0 ))
2943                 then
2944                         all_zeros=false
2945                         break;
2946                 fi
2947         done
2948
2949         if $all_zeros
2950         then
2951                 for ostnum in $(seq $OSTCOUNT); do
2952                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2953                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2954                         do_facet ost$ostnum lctl get_param -n \
2955                                 obdfilter/$ostname/stats
2956                 done
2957                 error "OST not keeping write_bytes stats (b22312)"
2958         fi
2959 }
2960 run_test 33c "test llobdstat and write_bytes"
2961
2962 test_33d() {
2963         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
2964         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2965
2966         local MDTIDX=1
2967         local remote_dir=$DIR/$tdir/remote_dir
2968
2969         test_mkdir $DIR/$tdir
2970         $LFS mkdir -i $MDTIDX $remote_dir ||
2971                 error "create remote directory failed"
2972
2973         touch $remote_dir/$tfile
2974         chmod 444 $remote_dir/$tfile
2975         chown $RUNAS_ID $remote_dir/$tfile
2976
2977         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2978
2979         chown $RUNAS_ID $remote_dir
2980         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2981                                         error "create" || true
2982         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2983                                     error "open RDWR" || true
2984         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
2985 }
2986 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2987
2988 test_33e() {
2989         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
2990
2991         mkdir $DIR/$tdir
2992
2993         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2994         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2995         mkdir $DIR/$tdir/local_dir
2996
2997         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2998         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2999         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3000
3001         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3002                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
3003
3004         rmdir $DIR/$tdir/* || error "rmdir failed"
3005
3006         umask 777
3007         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3008         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3009         mkdir $DIR/$tdir/local_dir
3010
3011         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3012         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3013         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3014
3015         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3016                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
3017
3018         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
3019
3020         umask 000
3021         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3022         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3023         mkdir $DIR/$tdir/local_dir
3024
3025         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3026         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3027         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3028
3029         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3030                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
3031 }
3032 run_test 33e "mkdir and striped directory should have same mode"
3033
3034 cleanup_33f() {
3035         trap 0
3036         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
3037 }
3038
3039 test_33f() {
3040         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3041         remote_mds_nodsh && skip "remote MDS with nodsh"
3042
3043         mkdir $DIR/$tdir
3044         chmod go+rwx $DIR/$tdir
3045         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
3046         trap cleanup_33f EXIT
3047
3048         $RUNAS lfs mkdir -i 0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
3049                 error "cannot create striped directory"
3050
3051         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
3052                 error "cannot create files in striped directory"
3053
3054         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
3055                 error "cannot remove files in striped directory"
3056
3057         $RUNAS rmdir $DIR/$tdir/striped_dir ||
3058                 error "cannot remove striped directory"
3059
3060         cleanup_33f
3061 }
3062 run_test 33f "nonroot user can create, access, and remove a striped directory"
3063
3064 test_33g() {
3065         mkdir -p $DIR/$tdir/dir2
3066
3067         local err=$($RUNAS mkdir $DIR/$tdir/dir2 2>&1)
3068         echo $err
3069         [[ $err =~ "exists" ]] || error "Not exists error"
3070 }
3071 run_test 33g "nonroot user create already existing root created file"
3072
3073 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
3074 test_34a() {
3075         rm -f $DIR/f34
3076         $MCREATE $DIR/f34 || error "mcreate failed"
3077         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" ||
3078                 error "getstripe failed"
3079         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error "truncate failed"
3080         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" ||
3081                 error "getstripe failed"
3082         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3083                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3084 }
3085 run_test 34a "truncate file that has not been opened ==========="
3086
3087 test_34b() {
3088         [ ! -f $DIR/f34 ] && test_34a
3089         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3090                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3091         $OPENFILE -f O_RDONLY $DIR/f34
3092         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" ||
3093                 error "getstripe failed"
3094         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3095                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3096 }
3097 run_test 34b "O_RDONLY opening file doesn't create objects ====="
3098
3099 test_34c() {
3100         [ ! -f $DIR/f34 ] && test_34a
3101         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3102                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3103         $OPENFILE -f O_RDWR $DIR/f34
3104         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
3105         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3106                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3107 }
3108 run_test 34c "O_RDWR opening file-with-size works =============="
3109
3110 test_34d() {
3111         [ ! -f $DIR/f34 ] && test_34a
3112         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 ||
3113                 error "dd failed"
3114         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3115                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3116         rm $DIR/f34
3117 }
3118 run_test 34d "write to sparse file ============================="
3119
3120 test_34e() {
3121         rm -f $DIR/f34e
3122         $MCREATE $DIR/f34e || error "mcreate failed"
3123         $TRUNCATE $DIR/f34e 1000 || error "truncate failed"
3124         $CHECKSTAT -s 1000 $DIR/f34e ||
3125                 error "Size of $DIR/f34e not equal to 1000 bytes"
3126         $OPENFILE -f O_RDWR $DIR/f34e
3127         $CHECKSTAT -s 1000 $DIR/f34e ||
3128                 error "Size of $DIR/f34e not equal to 1000 bytes"
3129 }
3130 run_test 34e "create objects, some with size and some without =="
3131
3132 test_34f() { # bug 6242, 6243
3133         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3134
3135         SIZE34F=48000
3136         rm -f $DIR/f34f
3137         $MCREATE $DIR/f34f || error "mcreate failed"
3138         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
3139         dd if=$DIR/f34f of=$TMP/f34f
3140         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
3141         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
3142         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
3143         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
3144         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
3145 }
3146 run_test 34f "read from a file with no objects until EOF ======="
3147
3148 test_34g() {
3149         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3150
3151         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE ||
3152                 error "dd failed"
3153         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error "truncate failed"
3154         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
3155                 error "Size of $DIR/$tfile not equal to $((TEST_34_SIZE / 2))"
3156         cancel_lru_locks osc
3157         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
3158                 error "wrong size after lock cancel"
3159
3160         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error "truncate failed"
3161         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
3162                 error "expanding truncate failed"
3163         cancel_lru_locks osc
3164         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
3165                 error "wrong expanded size after lock cancel"
3166 }
3167 run_test 34g "truncate long file ==============================="
3168
3169 test_34h() {
3170         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3171
3172         local gid=10
3173         local sz=1000
3174
3175         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error "dd failed"
3176         sync # Flush the cache so that multiop below does not block on cache
3177              # flush when getting the group lock
3178         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
3179         MULTIPID=$!
3180
3181         # Since just timed wait is not good enough, let's do a sync write
3182         # that way we are sure enough time for a roundtrip + processing
3183         # passed + 2 seconds of extra margin.
3184         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
3185         rm $DIR/${tfile}-1
3186         sleep 2
3187
3188         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
3189                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
3190                 kill -9 $MULTIPID
3191         fi
3192         wait $MULTIPID
3193         local nsz=`stat -c %s $DIR/$tfile`
3194         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
3195 }
3196 run_test 34h "ftruncate file under grouplock should not block"
3197
3198 test_35a() {
3199         cp /bin/sh $DIR/f35a
3200         chmod 444 $DIR/f35a
3201         chown $RUNAS_ID $DIR/f35a
3202         $RUNAS $DIR/f35a && error || true
3203         rm $DIR/f35a
3204 }
3205 run_test 35a "exec file with mode 444 (should return and not leak)"
3206
3207 test_36a() {
3208         rm -f $DIR/f36
3209         utime $DIR/f36 || error "utime failed for MDS"
3210 }
3211 run_test 36a "MDS utime check (mknod, utime)"
3212
3213 test_36b() {
3214         echo "" > $DIR/f36
3215         utime $DIR/f36 || error "utime failed for OST"
3216 }
3217 run_test 36b "OST utime check (open, utime)"
3218
3219 test_36c() {
3220         rm -f $DIR/d36/f36
3221         test_mkdir $DIR/d36
3222         chown $RUNAS_ID $DIR/d36
3223         $RUNAS utime $DIR/d36/f36 || error "utime failed for MDS as non-root"
3224 }
3225 run_test 36c "non-root MDS utime check (mknod, utime)"
3226
3227 test_36d() {
3228         [ ! -d $DIR/d36 ] && test_36c
3229         echo "" > $DIR/d36/f36
3230         $RUNAS utime $DIR/d36/f36 || error "utime failed for OST as non-root"
3231 }
3232 run_test 36d "non-root OST utime check (open, utime)"
3233
3234 test_36e() {
3235         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping"
3236
3237         test_mkdir $DIR/$tdir
3238         touch $DIR/$tdir/$tfile
3239         $RUNAS utime $DIR/$tdir/$tfile &&
3240                 error "utime worked, expected failure" || true
3241 }
3242 run_test 36e "utime on non-owned file (should return error)"
3243
3244 subr_36fh() {
3245         local fl="$1"
3246         local LANG_SAVE=$LANG
3247         local LC_LANG_SAVE=$LC_LANG
3248         export LANG=C LC_LANG=C # for date language
3249
3250         DATESTR="Dec 20  2000"
3251         test_mkdir $DIR/$tdir
3252         lctl set_param fail_loc=$fl
3253         date; date +%s
3254         cp /etc/hosts $DIR/$tdir/$tfile
3255         sync & # write RPC generated with "current" inode timestamp, but delayed
3256         sleep 1
3257         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
3258         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
3259         cancel_lru_locks osc
3260         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
3261         date; date +%s
3262         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
3263                 echo "BEFORE: $LS_BEFORE" && \
3264                 echo "AFTER : $LS_AFTER" && \
3265                 echo "WANT  : $DATESTR" && \
3266                 error "$DIR/$tdir/$tfile timestamps changed" || true
3267
3268         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
3269 }
3270
3271 test_36f() {
3272         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3273
3274         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
3275         subr_36fh "0x80000214"
3276 }
3277 run_test 36f "utime on file racing with OST BRW write =========="
3278
3279 test_36g() {
3280         remote_ost_nodsh && skip "remote OST with nodsh"
3281         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3282
3283         local fmd_max_age
3284         local fmd_before
3285         local fmd_after
3286
3287         test_mkdir $DIR/$tdir
3288         fmd_max_age=$(do_facet ost1 \
3289                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
3290                 head -n 1")
3291
3292         fmd_before=$(do_facet ost1 \
3293                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3294         touch $DIR/$tdir/$tfile
3295         sleep $((fmd_max_age + 12))
3296         fmd_after=$(do_facet ost1 \
3297                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3298
3299         echo "fmd_before: $fmd_before"
3300         echo "fmd_after: $fmd_after"
3301         [[ $fmd_after -gt $fmd_before ]] &&
3302                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" &&
3303                 error "fmd didn't expire after ping" || true
3304 }
3305 run_test 36g "filter mod data cache expiry ====================="
3306
3307 test_36h() {
3308         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3309
3310         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
3311         subr_36fh "0x80000227"
3312 }
3313 run_test 36h "utime on file racing with OST BRW write =========="
3314
3315 test_36i() {
3316         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3317
3318         test_mkdir $DIR/$tdir
3319         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3320
3321         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3322         local new_mtime=$((mtime + 200))
3323
3324         #change Modify time of striped dir
3325         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3326                         error "change mtime failed"
3327
3328         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3329
3330         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3331 }
3332 run_test 36i "change mtime on striped directory"
3333
3334 # test_37 - duplicate with tests 32q 32r
3335
3336 test_38() {
3337         local file=$DIR/$tfile
3338         touch $file
3339         openfile -f O_DIRECTORY $file
3340         local RC=$?
3341         local ENOTDIR=20
3342         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3343         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3344 }
3345 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3346
3347 test_39a() { # was test_39
3348         touch $DIR/$tfile
3349         touch $DIR/${tfile}2
3350 #       ls -l  $DIR/$tfile $DIR/${tfile}2
3351 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
3352 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
3353         sleep 2
3354         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3355         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3356                 echo "mtime"
3357                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3358                 echo "atime"
3359                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3360                 echo "ctime"
3361                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3362                 error "O_TRUNC didn't change timestamps"
3363         fi
3364 }
3365 run_test 39a "mtime changed on create"
3366
3367 test_39b() {
3368         test_mkdir -c1 $DIR/$tdir
3369         cp -p /etc/passwd $DIR/$tdir/fopen
3370         cp -p /etc/passwd $DIR/$tdir/flink
3371         cp -p /etc/passwd $DIR/$tdir/funlink
3372         cp -p /etc/passwd $DIR/$tdir/frename
3373         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3374
3375         sleep 1
3376         echo "aaaaaa" >> $DIR/$tdir/fopen
3377         echo "aaaaaa" >> $DIR/$tdir/flink
3378         echo "aaaaaa" >> $DIR/$tdir/funlink
3379         echo "aaaaaa" >> $DIR/$tdir/frename
3380
3381         local open_new=`stat -c %Y $DIR/$tdir/fopen`
3382         local link_new=`stat -c %Y $DIR/$tdir/flink`
3383         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3384         local rename_new=`stat -c %Y $DIR/$tdir/frename`
3385
3386         cat $DIR/$tdir/fopen > /dev/null
3387         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3388         rm -f $DIR/$tdir/funlink2
3389         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3390
3391         for (( i=0; i < 2; i++ )) ; do
3392                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3393                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3394                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3395                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3396
3397                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3398                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3399                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3400                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3401
3402                 cancel_lru_locks osc
3403                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3404         done
3405 }
3406 run_test 39b "mtime change on open, link, unlink, rename  ======"
3407
3408 # this should be set to past
3409 TEST_39_MTIME=`date -d "1 year ago" +%s`
3410
3411 # bug 11063
3412 test_39c() {
3413         touch $DIR1/$tfile
3414         sleep 2
3415         local mtime0=`stat -c %Y $DIR1/$tfile`
3416
3417         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3418         local mtime1=`stat -c %Y $DIR1/$tfile`
3419         [ "$mtime1" = $TEST_39_MTIME ] || \
3420                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3421
3422         local d1=`date +%s`
3423         echo hello >> $DIR1/$tfile
3424         local d2=`date +%s`
3425         local mtime2=`stat -c %Y $DIR1/$tfile`
3426         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3427                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3428
3429         mv $DIR1/$tfile $DIR1/$tfile-1
3430
3431         for (( i=0; i < 2; i++ )) ; do
3432                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3433                 [ "$mtime2" = "$mtime3" ] || \
3434                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3435
3436                 cancel_lru_locks osc
3437                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3438         done
3439 }
3440 run_test 39c "mtime change on rename ==========================="
3441
3442 # bug 21114
3443 test_39d() {
3444         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3445
3446         touch $DIR1/$tfile
3447         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3448
3449         for (( i=0; i < 2; i++ )) ; do
3450                 local mtime=`stat -c %Y $DIR1/$tfile`
3451                 [ $mtime = $TEST_39_MTIME ] || \
3452                         error "mtime($mtime) is not set to $TEST_39_MTIME"
3453
3454                 cancel_lru_locks osc
3455                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3456         done
3457 }
3458 run_test 39d "create, utime, stat =============================="
3459
3460 # bug 21114
3461 test_39e() {
3462         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3463
3464         touch $DIR1/$tfile
3465         local mtime1=`stat -c %Y $DIR1/$tfile`
3466
3467         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3468
3469         for (( i=0; i < 2; i++ )) ; do
3470                 local mtime2=`stat -c %Y $DIR1/$tfile`
3471                 [ $mtime2 = $TEST_39_MTIME ] || \
3472                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3473
3474                 cancel_lru_locks osc
3475                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3476         done
3477 }
3478 run_test 39e "create, stat, utime, stat ========================"
3479
3480 # bug 21114
3481 test_39f() {
3482         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3483
3484         touch $DIR1/$tfile
3485         mtime1=`stat -c %Y $DIR1/$tfile`
3486
3487         sleep 2
3488         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3489
3490         for (( i=0; i < 2; i++ )) ; do
3491                 local mtime2=`stat -c %Y $DIR1/$tfile`
3492                 [ $mtime2 = $TEST_39_MTIME ] || \
3493                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3494
3495                 cancel_lru_locks osc
3496                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3497         done
3498 }
3499 run_test 39f "create, stat, sleep, utime, stat ================="
3500
3501 # bug 11063
3502 test_39g() {
3503         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3504
3505         echo hello >> $DIR1/$tfile
3506         local mtime1=`stat -c %Y $DIR1/$tfile`
3507
3508         sleep 2
3509         chmod o+r $DIR1/$tfile
3510
3511         for (( i=0; i < 2; i++ )) ; do
3512                 local mtime2=`stat -c %Y $DIR1/$tfile`
3513                 [ "$mtime1" = "$mtime2" ] || \
3514                         error "lost mtime: $mtime2, should be $mtime1"
3515
3516                 cancel_lru_locks osc
3517                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3518         done
3519 }
3520 run_test 39g "write, chmod, stat ==============================="
3521
3522 # bug 11063
3523 test_39h() {
3524         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3525
3526         touch $DIR1/$tfile
3527         sleep 1
3528
3529         local d1=`date`
3530         echo hello >> $DIR1/$tfile
3531         local mtime1=`stat -c %Y $DIR1/$tfile`
3532
3533         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3534         local d2=`date`
3535         if [ "$d1" != "$d2" ]; then
3536                 echo "write and touch not within one second"
3537         else
3538                 for (( i=0; i < 2; i++ )) ; do
3539                         local mtime2=`stat -c %Y $DIR1/$tfile`
3540                         [ "$mtime2" = $TEST_39_MTIME ] || \
3541                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3542
3543                         cancel_lru_locks osc
3544                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3545                 done
3546         fi
3547 }
3548 run_test 39h "write, utime within one second, stat ============="
3549
3550 test_39i() {
3551         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3552
3553         touch $DIR1/$tfile
3554         sleep 1
3555
3556         echo hello >> $DIR1/$tfile
3557         local mtime1=`stat -c %Y $DIR1/$tfile`
3558
3559         mv $DIR1/$tfile $DIR1/$tfile-1
3560
3561         for (( i=0; i < 2; i++ )) ; do
3562                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3563
3564                 [ "$mtime1" = "$mtime2" ] || \
3565                         error "lost mtime: $mtime2, should be $mtime1"
3566
3567                 cancel_lru_locks osc
3568                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3569         done
3570 }
3571 run_test 39i "write, rename, stat =============================="
3572
3573 test_39j() {
3574         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3575
3576         start_full_debug_logging
3577         touch $DIR1/$tfile
3578         sleep 1
3579
3580         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3581         lctl set_param fail_loc=0x80000412
3582         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3583                 error "multiop failed"
3584         local multipid=$!
3585         local mtime1=`stat -c %Y $DIR1/$tfile`
3586
3587         mv $DIR1/$tfile $DIR1/$tfile-1
3588
3589         kill -USR1 $multipid
3590         wait $multipid || error "multiop close failed"
3591
3592         for (( i=0; i < 2; i++ )) ; do
3593                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3594                 [ "$mtime1" = "$mtime2" ] ||
3595                         error "mtime is lost on close: $mtime2, " \
3596                               "should be $mtime1"
3597
3598                 cancel_lru_locks osc
3599                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3600         done
3601         lctl set_param fail_loc=0
3602         stop_full_debug_logging
3603 }
3604 run_test 39j "write, rename, close, stat ======================="
3605
3606 test_39k() {
3607         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3608
3609         touch $DIR1/$tfile
3610         sleep 1
3611
3612         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3613         local multipid=$!
3614         local mtime1=`stat -c %Y $DIR1/$tfile`
3615
3616         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3617
3618         kill -USR1 $multipid
3619         wait $multipid || error "multiop close failed"
3620
3621         for (( i=0; i < 2; i++ )) ; do
3622                 local mtime2=`stat -c %Y $DIR1/$tfile`
3623
3624                 [ "$mtime2" = $TEST_39_MTIME ] || \
3625                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3626
3627                 cancel_lru_locks osc
3628                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3629         done
3630 }
3631 run_test 39k "write, utime, close, stat ========================"
3632
3633 # this should be set to future
3634 TEST_39_ATIME=`date -d "1 year" +%s`
3635
3636 test_39l() {
3637         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3638         remote_mds_nodsh && skip "remote MDS with nodsh"
3639
3640         local atime_diff=$(do_facet $SINGLEMDS \
3641                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3642         rm -rf $DIR/$tdir
3643         mkdir -p $DIR/$tdir
3644
3645         # test setting directory atime to future
3646         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3647         local atime=$(stat -c %X $DIR/$tdir)
3648         [ "$atime" = $TEST_39_ATIME ] ||
3649                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3650
3651         # test setting directory atime from future to now
3652         local now=$(date +%s)
3653         touch -a -d @$now $DIR/$tdir
3654
3655         atime=$(stat -c %X $DIR/$tdir)
3656         [ "$atime" -eq "$now"  ] ||
3657                 error "atime is not updated from future: $atime, $now"
3658
3659         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3660         sleep 3
3661
3662         # test setting directory atime when now > dir atime + atime_diff
3663         local d1=$(date +%s)
3664         ls $DIR/$tdir
3665         local d2=$(date +%s)
3666         cancel_lru_locks mdc
3667         atime=$(stat -c %X $DIR/$tdir)
3668         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3669                 error "atime is not updated  : $atime, should be $d2"
3670
3671         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3672         sleep 3
3673
3674         # test not setting directory atime when now < dir atime + atime_diff
3675         ls $DIR/$tdir
3676         cancel_lru_locks mdc
3677         atime=$(stat -c %X $DIR/$tdir)
3678         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3679                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3680
3681         do_facet $SINGLEMDS \
3682                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3683 }
3684 run_test 39l "directory atime update ==========================="
3685
3686 test_39m() {
3687         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3688
3689         touch $DIR1/$tfile
3690         sleep 2
3691         local far_past_mtime=$(date -d "May 29 1953" +%s)
3692         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3693
3694         touch -m -d @$far_past_mtime $DIR1/$tfile
3695         touch -a -d @$far_past_atime $DIR1/$tfile
3696
3697         for (( i=0; i < 2; i++ )) ; do
3698                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3699                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3700                         error "atime or mtime set incorrectly"
3701
3702                 cancel_lru_locks osc
3703                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3704         done
3705 }
3706 run_test 39m "test atime and mtime before 1970"
3707
3708 test_39n() { # LU-3832
3709         remote_mds_nodsh && skip "remote MDS with nodsh"
3710
3711         local atime_diff=$(do_facet $SINGLEMDS \
3712                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3713         local atime0
3714         local atime1
3715         local atime2
3716
3717         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3718
3719         rm -rf $DIR/$tfile
3720         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3721         atime0=$(stat -c %X $DIR/$tfile)
3722
3723         sleep 5
3724         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3725         atime1=$(stat -c %X $DIR/$tfile)
3726
3727         sleep 5
3728         cancel_lru_locks mdc
3729         cancel_lru_locks osc
3730         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3731         atime2=$(stat -c %X $DIR/$tfile)
3732
3733         do_facet $SINGLEMDS \
3734                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3735
3736         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3737         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3738 }
3739 run_test 39n "check that O_NOATIME is honored"
3740
3741 test_39o() {
3742         TESTDIR=$DIR/$tdir/$tfile
3743         [ -e $TESTDIR ] && rm -rf $TESTDIR
3744         mkdir -p $TESTDIR
3745         cd $TESTDIR
3746         links1=2
3747         ls
3748         mkdir a b
3749         ls
3750         links2=$(stat -c %h .)
3751         [ $(($links1 + 2)) != $links2 ] &&
3752                 error "wrong links count $(($links1 + 2)) != $links2"
3753         rmdir b
3754         links3=$(stat -c %h .)
3755         [ $(($links1 + 1)) != $links3 ] &&
3756                 error "wrong links count $links1 != $links3"
3757         return 0
3758 }
3759 run_test 39o "directory cached attributes updated after create"
3760
3761 test_39p() {
3762         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
3763
3764         local MDTIDX=1
3765         TESTDIR=$DIR/$tdir/$tdir
3766         [ -e $TESTDIR ] && rm -rf $TESTDIR
3767         test_mkdir -p $TESTDIR
3768         cd $TESTDIR
3769         links1=2
3770         ls
3771         test_mkdir -i $MDTIDX $TESTDIR/remote_dir1
3772         test_mkdir -i $MDTIDX $TESTDIR/remote_dir2
3773         ls
3774         links2=$(stat -c %h .)
3775         [ $(($links1 + 2)) != $links2 ] &&
3776                 error "wrong links count $(($links1 + 2)) != $links2"
3777         rmdir remote_dir2
3778         links3=$(stat -c %h .)
3779         [ $(($links1 + 1)) != $links3 ] &&
3780                 error "wrong links count $links1 != $links3"
3781         return 0
3782 }
3783 run_test 39p "remote directory cached attributes updated after create ========"
3784
3785
3786 test_39q() { # LU-8041
3787         local testdir=$DIR/$tdir
3788         mkdir -p $testdir
3789         multiop_bg_pause $testdir D_c || error "multiop failed"
3790         local multipid=$!
3791         cancel_lru_locks mdc
3792         kill -USR1 $multipid
3793         local atime=$(stat -c %X $testdir)
3794         [ "$atime" -ne 0 ] || error "atime is zero"
3795 }
3796 run_test 39q "close won't zero out atime"
3797
3798 test_40() {
3799         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3800         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3801                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3802         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3803                 error "$tfile is not 4096 bytes in size"
3804 }
3805 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3806
3807 test_41() {
3808         # bug 1553
3809         small_write $DIR/f41 18
3810 }
3811 run_test 41 "test small file write + fstat ====================="
3812
3813 count_ost_writes() {
3814         lctl get_param -n ${OSC}.*.stats |
3815                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
3816                         END { printf("%0.0f", writes) }'
3817 }
3818
3819 # decent default
3820 WRITEBACK_SAVE=500
3821 DIRTY_RATIO_SAVE=40
3822 MAX_DIRTY_RATIO=50
3823 BG_DIRTY_RATIO_SAVE=10
3824 MAX_BG_DIRTY_RATIO=25
3825
3826 start_writeback() {
3827         trap 0
3828         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3829         # dirty_ratio, dirty_background_ratio
3830         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3831                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3832                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3833                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3834         else
3835                 # if file not here, we are a 2.4 kernel
3836                 kill -CONT `pidof kupdated`
3837         fi
3838 }
3839
3840 stop_writeback() {
3841         # setup the trap first, so someone cannot exit the test at the
3842         # exact wrong time and mess up a machine
3843         trap start_writeback EXIT
3844         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3845         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3846                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3847                 sysctl -w vm.dirty_writeback_centisecs=0
3848                 sysctl -w vm.dirty_writeback_centisecs=0
3849                 # save and increase /proc/sys/vm/dirty_ratio
3850                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3851                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3852                 # save and increase /proc/sys/vm/dirty_background_ratio
3853                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3854                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3855         else
3856                 # if file not here, we are a 2.4 kernel
3857                 kill -STOP `pidof kupdated`
3858         fi
3859 }
3860
3861 # ensure that all stripes have some grant before we test client-side cache
3862 setup_test42() {
3863         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3864                 dd if=/dev/zero of=$i bs=4k count=1
3865                 rm $i
3866         done
3867 }
3868
3869 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3870 # file truncation, and file removal.
3871 test_42a() {
3872         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3873
3874         setup_test42
3875         cancel_lru_locks $OSC
3876         stop_writeback
3877         sync; sleep 1; sync # just to be safe
3878         BEFOREWRITES=`count_ost_writes`
3879         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3880         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3881         AFTERWRITES=`count_ost_writes`
3882         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3883                 error "$BEFOREWRITES < $AFTERWRITES"
3884         start_writeback
3885 }
3886 run_test 42a "ensure that we don't flush on close"
3887
3888 test_42b() {
3889         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3890
3891         setup_test42
3892         cancel_lru_locks $OSC
3893         stop_writeback
3894         sync
3895         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3896         BEFOREWRITES=$(count_ost_writes)
3897         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3898         AFTERWRITES=$(count_ost_writes)
3899         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3900                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3901         fi
3902         BEFOREWRITES=$(count_ost_writes)
3903         sync || error "sync: $?"
3904         AFTERWRITES=$(count_ost_writes)
3905         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3906                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3907         fi
3908         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3909         start_writeback
3910         return 0
3911 }
3912 run_test 42b "test destroy of file with cached dirty data ======"
3913
3914 # if these tests just want to test the effect of truncation,
3915 # they have to be very careful.  consider:
3916 # - the first open gets a {0,EOF}PR lock
3917 # - the first write conflicts and gets a {0, count-1}PW
3918 # - the rest of the writes are under {count,EOF}PW
3919 # - the open for truncate tries to match a {0,EOF}PR
3920 #   for the filesize and cancels the PWs.
3921 # any number of fixes (don't get {0,EOF} on open, match
3922 # composite locks, do smarter file size management) fix
3923 # this, but for now we want these tests to verify that
3924 # the cancellation with truncate intent works, so we
3925 # start the file with a full-file pw lock to match against
3926 # until the truncate.
3927 trunc_test() {
3928         test=$1
3929         file=$DIR/$test
3930         offset=$2
3931         cancel_lru_locks $OSC
3932         stop_writeback
3933         # prime the file with 0,EOF PW to match
3934         touch $file
3935         $TRUNCATE $file 0
3936         sync; sync
3937         # now the real test..
3938         dd if=/dev/zero of=$file bs=1024 count=100
3939         BEFOREWRITES=`count_ost_writes`
3940         $TRUNCATE $file $offset
3941         cancel_lru_locks $OSC
3942         AFTERWRITES=`count_ost_writes`
3943         start_writeback
3944 }
3945
3946 test_42c() {
3947         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3948
3949         trunc_test 42c 1024
3950         [ $BEFOREWRITES -eq $AFTERWRITES ] &&
3951                 error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3952         rm $file
3953 }
3954 run_test 42c "test partial truncate of file with cached dirty data"
3955
3956 test_42d() {
3957         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3958
3959         trunc_test 42d 0
3960         [ $BEFOREWRITES -eq $AFTERWRITES ] ||
3961                 error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3962         rm $file
3963 }
3964 run_test 42d "test complete truncate of file with cached dirty data"
3965
3966 test_42e() { # bug22074
3967         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3968
3969         local TDIR=$DIR/${tdir}e
3970         local pagesz=$(page_size)
3971         local pages=16 # hardcoded 16 pages, don't change it.
3972         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3973         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3974         local max_dirty_mb
3975         local warmup_files
3976
3977         test_mkdir $DIR/${tdir}e
3978         $SETSTRIPE -c 1 $TDIR
3979         createmany -o $TDIR/f $files
3980
3981         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3982
3983         # we assume that with $OSTCOUNT files, at least one of them will
3984         # be allocated on OST0.
3985         warmup_files=$((OSTCOUNT * max_dirty_mb))
3986         createmany -o $TDIR/w $warmup_files
3987
3988         # write a large amount of data into one file and sync, to get good
3989         # avail_grant number from OST.
3990         for ((i=0; i<$warmup_files; i++)); do
3991                 idx=$($GETSTRIPE -i $TDIR/w$i)
3992                 [ $idx -ne 0 ] && continue
3993                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3994                 break
3995         done
3996         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
3997         sync
3998         $LCTL get_param $proc_osc0/cur_dirty_bytes
3999         $LCTL get_param $proc_osc0/cur_grant_bytes
4000
4001         # create as much dirty pages as we can while not to trigger the actual
4002         # RPCs directly. but depends on the env, VFS may trigger flush during this
4003         # period, hopefully we are good.
4004         for ((i=0; i<$warmup_files; i++)); do
4005                 idx=$($GETSTRIPE -i $TDIR/w$i)
4006                 [ $idx -ne 0 ] && continue
4007                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
4008         done
4009         $LCTL get_param $proc_osc0/cur_dirty_bytes
4010         $LCTL get_param $proc_osc0/cur_grant_bytes
4011
4012         # perform the real test
4013         $LCTL set_param $proc_osc0/rpc_stats 0
4014         for ((;i<$files; i++)); do
4015                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
4016                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
4017         done
4018         sync
4019         $LCTL get_param $proc_osc0/rpc_stats
4020
4021         local percent=0
4022         local have_ppr=false
4023         $LCTL get_param $proc_osc0/rpc_stats |
4024                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
4025                         # skip lines until we are at the RPC histogram data
4026                         [ "$PPR" == "pages" ] && have_ppr=true && continue
4027                         $have_ppr || continue
4028
4029                         # we only want the percent stat for < 16 pages
4030                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
4031
4032                         percent=$((percent + WPCT))
4033                         if [[ $percent -gt 15 ]]; then
4034                                 error "less than 16-pages write RPCs" \
4035                                       "$percent% > 15%"
4036                                 break
4037                         fi
4038                 done
4039         rm -rf $TDIR
4040 }
4041 run_test 42e "verify sub-RPC writes are not done synchronously"
4042
4043 test_43A() { # was test_43
4044         test_mkdir $DIR/$tdir
4045         cp -p /bin/ls $DIR/$tdir/$tfile
4046         $MULTIOP $DIR/$tdir/$tfile Ow_c &
4047         pid=$!
4048         # give multiop a chance to open
4049         sleep 1
4050
4051         $DIR/$tdir/$tfile && error "execute $DIR/$tdir/$tfile succeeded" || true
4052         kill -USR1 $pid
4053 }
4054 run_test 43A "execution of file opened for write should return -ETXTBSY"
4055
4056 test_43a() {
4057         test_mkdir $DIR/$tdir
4058         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
4059                 cp -p multiop $DIR/$tdir/multiop
4060         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
4061                 error "multiop open $TMP/$tfile.junk failed"
4062         rm $TMP/$tfile.junk     # delete junk file on close (not part of test)
4063         MULTIOP_PID=$!
4064         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
4065         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
4066         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
4067 }
4068 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
4069
4070 test_43b() {
4071         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4072
4073         test_mkdir $DIR/$tdir
4074         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
4075                 cp -p multiop $DIR/$tdir/multiop
4076         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
4077                 error "multiop open $TMP/$tfile.junk failed"
4078         rm $TMP/$tfile.junk     # delete junk file on close (not part of test)
4079         MULTIOP_PID=$!
4080         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
4081         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
4082         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
4083 }
4084 run_test 43b "truncate of file being executed should return -ETXTBSY"
4085
4086 test_43c() {
4087         local testdir="$DIR/$tdir"
4088         test_mkdir $testdir
4089         cp $SHELL $testdir/
4090         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) |
4091                 ( cd $testdir && md5sum -c )
4092 }
4093 run_test 43c "md5sum of copy into lustre"
4094
4095 test_44A() { # was test_44
4096         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
4097
4098         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
4099         dd if=$DIR/f1 bs=4k count=1 > /dev/null
4100 }
4101 run_test 44A "zero length read from a sparse stripe"
4102
4103 test_44a() {
4104         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
4105                 awk '{ print $2 }')
4106         [ -z "$nstripe" ] && skip "can't get stripe info"
4107         [[ $nstripe -gt $OSTCOUNT ]] &&
4108                 skip "Wrong default_stripe_count: $nstripe OSTCOUNT: $OSTCOUNT"
4109
4110         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
4111                 awk '{ print $2 }')
4112         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
4113                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
4114                         awk '{ print $2 }')
4115         fi
4116
4117         OFFSETS="0 $((stride/2)) $((stride-1))"
4118         for offset in $OFFSETS; do
4119                 for i in $(seq 0 $((nstripe-1))); do
4120                         local GLOBALOFFSETS=""
4121                         # size in Bytes
4122                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
4123                         local myfn=$DIR/d44a-$size
4124                         echo "--------writing $myfn at $size"
4125                         ll_sparseness_write $myfn $size ||
4126                                 error "ll_sparseness_write"
4127                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
4128                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
4129                                 error "ll_sparseness_verify $GLOBALOFFSETS"
4130
4131                         for j in $(seq 0 $((nstripe-1))); do
4132                                 # size in Bytes
4133                                 size=$((((j + $nstripe )*$stride + $offset)))
4134                                 ll_sparseness_write $myfn $size ||
4135                                         error "ll_sparseness_write"
4136                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
4137                         done
4138                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
4139                                 error "ll_sparseness_verify $GLOBALOFFSETS"
4140                         rm -f $myfn
4141                 done
4142         done
4143 }
4144 run_test 44a "test sparse pwrite ==============================="
4145
4146 dirty_osc_total() {
4147         tot=0
4148         for d in `lctl get_param -n ${OSC}.*.cur_dirty_bytes`; do
4149                 tot=$(($tot + $d))
4150         done
4151         echo $tot
4152 }
4153 do_dirty_record() {
4154         before=`dirty_osc_total`
4155         echo executing "\"$*\""
4156         eval $*
4157         after=`dirty_osc_total`
4158         echo before $before, after $after
4159 }
4160 test_45() {
4161         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4162
4163         f="$DIR/f45"
4164         # Obtain grants from OST if it supports it
4165         echo blah > ${f}_grant
4166         stop_writeback
4167         sync
4168         do_dirty_record "echo blah > $f"
4169         [[ $before -eq $after ]] && error "write wasn't cached"
4170         do_dirty_record "> $f"
4171         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
4172         do_dirty_record "echo blah > $f"
4173         [[ $before -eq $after ]] && error "write wasn't cached"
4174         do_dirty_record "sync"
4175         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
4176         do_dirty_record "echo blah > $f"
4177         [[ $before -eq $after ]] && error "write wasn't cached"
4178         do_dirty_record "cancel_lru_locks osc"
4179         [[ $before -gt $after ]] ||
4180                 error "lock cancellation didn't lower dirty count"
4181         start_writeback
4182 }
4183 run_test 45 "osc io page accounting ============================"
4184
4185 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
4186 # test tickles a bug where re-dirtying a page was failing to be mapped to the
4187 # objects offset and an assert hit when an rpc was built with 1023's mapped
4188 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
4189 test_46() {
4190         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4191
4192         f="$DIR/f46"
4193         stop_writeback
4194         sync
4195         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
4196         sync
4197         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
4198         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
4199         sync
4200         start_writeback
4201 }
4202 run_test 46 "dirtying a previously written page ================"
4203
4204 # test_47 is removed "Device nodes check" is moved to test_28
4205
4206 test_48a() { # bug 2399
4207         [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
4208         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.63) ] &&
4209                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly"
4210
4211         test_mkdir $DIR/$tdir
4212         cd $DIR/$tdir
4213         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
4214         test_mkdir $DIR/$tdir
4215         touch foo || error "'touch foo' failed after recreating cwd"
4216         test_mkdir bar
4217         touch .foo || error "'touch .foo' failed after recreating cwd"
4218         test_mkdir .bar
4219         ls . > /dev/null || error "'ls .' failed after recreating cwd"
4220         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4221         cd . || error "'cd .' failed after recreating cwd"
4222         mkdir . && error "'mkdir .' worked after recreating cwd"
4223         rmdir . && error "'rmdir .' worked after recreating cwd"
4224         ln -s . baz || error "'ln -s .' failed after recreating cwd"
4225         cd .. || error "'cd ..' failed after recreating cwd"
4226 }
4227 run_test 48a "Access renamed working dir (should return errors)="
4228
4229 test_48b() { # bug 2399
4230         rm -rf $DIR/$tdir
4231         test_mkdir $DIR/$tdir
4232         cd $DIR/$tdir
4233         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
4234         touch foo && error "'touch foo' worked after removing cwd"
4235         mkdir foo && error "'mkdir foo' worked after removing cwd"
4236         touch .foo && error "'touch .foo' worked after removing cwd"
4237         mkdir .foo && error "'mkdir .foo' worked after removing cwd"
4238         ls . > /dev/null && error "'ls .' worked after removing cwd"
4239         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4240         mkdir . && error "'mkdir .' worked after removing cwd"
4241         rmdir . && error "'rmdir .' worked after removing cwd"
4242         ln -s . foo && error "'ln -s .' worked after removing cwd"
4243         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
4244 }
4245 run_test 48b "Access removed working dir (should return errors)="
4246
4247 test_48c() { # bug 2350
4248         #lctl set_param debug=-1
4249         #set -vx
4250         rm -rf $DIR/$tdir
4251         test_mkdir -p $DIR/$tdir/dir
4252         cd $DIR/$tdir/dir
4253         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4254         $TRACE touch foo && error "touch foo worked after removing cwd"
4255         $TRACE mkdir foo && error "'mkdir foo' worked after removing cwd"
4256         touch .foo && error "touch .foo worked after removing cwd"
4257         mkdir .foo && error "mkdir .foo worked after removing cwd"
4258         $TRACE ls . && error "'ls .' worked after removing cwd"
4259         $TRACE ls .. || error "'ls ..' failed after removing cwd"
4260         $TRACE mkdir . && error "'mkdir .' worked after removing cwd"
4261         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
4262         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
4263         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
4264 }
4265 run_test 48c "Access removed working subdir (should return errors)"
4266
4267 test_48d() { # bug 2350
4268         #lctl set_param debug=-1
4269         #set -vx
4270         rm -rf $DIR/$tdir
4271         test_mkdir -p $DIR/$tdir/dir
4272         cd $DIR/$tdir/dir
4273         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4274         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4275         $TRACE touch foo && error "'touch foo' worked after removing parent"
4276         $TRACE mkdir foo && error "mkdir foo worked after removing parent"
4277         touch .foo && error "'touch .foo' worked after removing parent"
4278         mkdir .foo && error "mkdir .foo worked after removing parent"
4279         $TRACE ls . && error "'ls .' worked after removing parent"
4280         $TRACE ls .. && error "'ls ..' worked after removing parent"
4281         $TRACE mkdir . && error "'mkdir .' worked after removing parent"
4282         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
4283         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
4284         true
4285 }
4286 run_test 48d "Access removed parent subdir (should return errors)"
4287
4288 test_48e() { # bug 4134
4289         #lctl set_param debug=-1
4290         #set -vx
4291         rm -rf $DIR/$tdir
4292         test_mkdir -p $DIR/$tdir/dir
4293         cd $DIR/$tdir/dir
4294         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4295         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4296         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
4297         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
4298         # On a buggy kernel addition of "touch foo" after cd .. will
4299         # produce kernel oops in lookup_hash_it
4300         touch ../foo && error "'cd ..' worked after recreate parent"
4301         cd $DIR
4302         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
4303 }
4304 run_test 48e "Access to recreated parent subdir (should return errors)"
4305
4306 test_49() { # LU-1030
4307         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4308         remote_ost_nodsh && skip "remote OST with nodsh"
4309
4310         # get ost1 size - lustre-OST0000
4311         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
4312                 awk '{ print $4 }')
4313         # write 800M at maximum
4314         [[ $ost1_size -lt 2 ]] && ost1_size=2
4315         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
4316
4317         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
4318         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
4319         local dd_pid=$!
4320
4321         # change max_pages_per_rpc while writing the file
4322         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
4323         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
4324         # loop until dd process exits
4325         while ps ax -opid | grep -wq $dd_pid; do
4326                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
4327                 sleep $((RANDOM % 5 + 1))
4328         done
4329         # restore original max_pages_per_rpc
4330         $LCTL set_param $osc1_mppc=$orig_mppc
4331         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
4332 }
4333 run_test 49 "Change max_pages_per_rpc won't break osc extent"
4334
4335 test_50() {
4336         # bug 1485
4337         test_mkdir $DIR/$tdir
4338         cd $DIR/$tdir
4339         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
4340 }
4341 run_test 50 "special situations: /proc symlinks  ==============="
4342
4343 test_51a() {    # was test_51
4344         # bug 1516 - create an empty entry right after ".." then split dir
4345         test_mkdir -c1 $DIR/$tdir
4346         touch $DIR/$tdir/foo
4347         $MCREATE $DIR/$tdir/bar
4348         rm $DIR/$tdir/foo
4349         createmany -m $DIR/$tdir/longfile 201
4350         FNUM=202
4351         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
4352                 $MCREATE $DIR/$tdir/longfile$FNUM
4353                 FNUM=$(($FNUM + 1))
4354                 echo -n "+"
4355         done
4356         echo
4357         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
4358 }
4359 run_test 51a "special situations: split htree with empty entry =="
4360
4361 cleanup_print_lfs_df () {
4362         trap 0
4363         $LFS df
4364         $LFS df -i
4365 }
4366
4367 test_51b() {
4368         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4369
4370         local dir=$DIR/$tdir
4371         local nrdirs=$((65536 + 100))
4372
4373         # cleanup the directory
4374         rm -fr $dir
4375
4376         test_mkdir -c1 $dir
4377
4378         $LFS df
4379         $LFS df -i
4380         local mdtidx=$(printf "%04x" $($LFS getstripe -m $dir))
4381         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
4382         [[ $numfree -lt $nrdirs ]] &&
4383                 skip "not enough free inodes ($numfree) on MDT$mdtidx"
4384
4385         # need to check free space for the directories as well
4386         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
4387         numfree=$(( blkfree / $(fs_inode_ksize) ))
4388         [[ $numfree -lt $nrdirs ]] && skip "not enough blocks ($numfree)"
4389
4390         trap cleanup_print_lfs_df EXIT
4391
4392         # create files
4393         createmany -d $dir/d $nrdirs || {
4394                 unlinkmany $dir/d $nrdirs
4395                 error "failed to create $nrdirs subdirs in MDT$mdtidx:$dir"
4396         }
4397
4398         # really created :
4399         nrdirs=$(ls -U $dir | wc -l)
4400
4401         # unlink all but 100 subdirectories, then check it still works
4402         local left=100
4403         local delete=$((nrdirs - left))
4404
4405         $LFS df
4406         $LFS df -i
4407
4408         # for ldiskfs the nlink count should be 1, but this is OSD specific
4409         # and so this is listed for informational purposes only
4410         echo "nlink before: $(stat -c %h $dir), created before: $nrdirs"
4411         unlinkmany -d $dir/d $delete ||
4412                 error "unlink of first $delete subdirs failed"
4413
4414         echo "nlink between: $(stat -c %h $dir)"
4415         local found=$(ls -U $dir | wc -l)
4416         [ $found -ne $left ] &&
4417                 error "can't find subdirs: found only $found, expected $left"
4418
4419         unlinkmany -d $dir/d $delete $left ||
4420                 error "unlink of second $left subdirs failed"
4421         # regardless of whether the backing filesystem tracks nlink accurately
4422         # or not, the nlink count shouldn't be more than "." and ".." here
4423         local after=$(stat -c %h $dir)
4424         [[ $after -gt 2 ]] && error "nlink after: $after > 2" ||
4425                 echo "nlink after: $after"
4426
4427         cleanup_print_lfs_df
4428 }
4429 run_test 51b "exceed 64k subdirectory nlink limit on create, verify unlink"
4430
4431 test_51d() {
4432         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4433         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
4434
4435         test_mkdir $DIR/$tdir
4436         createmany -o $DIR/$tdir/t- 1000
4437         $LFS getstripe $DIR/$tdir > $TMP/$tfile
4438         for N in $(seq 0 $((OSTCOUNT - 1))); do
4439                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4440                         END { printf("%0.0f", objs) }' $TMP/$tfile)
4441                 OBJS0[$N]=$(grep -A 1 idx $TMP/$tfile | awk -vobjs=0 \
4442                         '($1 == '$N') { objs += 1 } \
4443                         END { printf("%0.0f", objs) }')
4444                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4445         done
4446         unlinkmany $DIR/$tdir/t- 1000
4447
4448         NLAST=0
4449         for N in $(seq 1 $((OSTCOUNT - 1))); do
4450                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4451                         error "OST $N has less objects vs OST $NLAST" \
4452                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4453                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4454                         error "OST $N has less objects vs OST $NLAST" \
4455                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4456
4457                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4458                         error "OST $N has less #0 objects vs OST $NLAST" \
4459                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4460                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4461                         error "OST $N has less #0 objects vs OST $NLAST" \
4462                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4463                 NLAST=$N
4464         done
4465         rm -f $TMP/$tfile
4466 }
4467 run_test 51d "check object distribution"
4468
4469 test_51e() {
4470         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4471                 skip_env "ldiskfs only test"
4472         fi
4473
4474         test_mkdir -c1 $DIR/$tdir
4475         test_mkdir -c1 $DIR/$tdir/d0
4476
4477         touch $DIR/$tdir/d0/foo
4478         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4479                 error "file exceed 65000 nlink limit!"
4480         unlinkmany $DIR/$tdir/d0/f- 65001
4481         return 0
4482 }
4483 run_test 51e "check file nlink limit"
4484
4485 test_51f() {
4486         test_mkdir $DIR/$tdir
4487
4488         local max=100000
4489         local ulimit_old=$(ulimit -n)
4490         local spare=20 # number of spare fd's for scripts/libraries, etc.
4491         local mdt=$($LFS getstripe -m $DIR/$tdir)
4492         local numfree=$($LFS df -i $DIR/$tdir | awk '/MDT:'$mdt'/ { print $4 }')
4493
4494         echo "MDT$mdt numfree=$numfree, max=$max"
4495         [[ $numfree -gt $max ]] && numfree=$max || numfree=$((numfree * 7 / 8))
4496         if [ $((numfree + spare)) -gt $ulimit_old ]; then
4497                 while ! ulimit -n $((numfree + spare)); do
4498                         numfree=$((numfree * 3 / 4))
4499                 done
4500                 echo "changed ulimit from $ulimit_old to $((numfree + spare))"
4501         else
4502                 echo "left ulimit at $ulimit_old"
4503         fi
4504
4505         createmany -o -k -t 120 $DIR/$tdir/f $numfree || {
4506                 unlinkmany $DIR/$tdir/f $numfree
4507                 error "create+open $numfree files in $DIR/$tdir failed"
4508         }
4509         ulimit -n $ulimit_old
4510
4511         # if createmany exits at 120s there will be fewer than $numfree files
4512         unlinkmany $DIR/$tdir/f $numfree || true
4513 }
4514 run_test 51f "check many open files limit"
4515
4516 test_52a() {
4517         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4518         test_mkdir $DIR/$tdir
4519         touch $DIR/$tdir/foo
4520         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4521         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4522         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4523         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4524         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4525                                         error "link worked"
4526         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4527         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4528         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4529                                                      error "lsattr"
4530         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4531         cp -r $DIR/$tdir $TMP/
4532         rm -fr $DIR/$tdir $TMP/$tdir || error "cleanup rm failed"
4533 }
4534 run_test 52a "append-only flag test (should return errors)"
4535
4536 test_52b() {
4537         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4538         test_mkdir $DIR/$tdir
4539         touch $DIR/$tdir/foo
4540         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4541         cat test > $DIR/$tdir/foo && error "cat test worked"
4542         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4543         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4544         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4545                                         error "link worked"
4546         echo foo >> $DIR/$tdir/foo && error "echo worked"
4547         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4548         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4549         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4550         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4551                                                         error "lsattr"
4552         chattr -i $DIR/$tdir/foo || error "chattr failed"
4553
4554         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4555 }
4556 run_test 52b "immutable flag test (should return errors) ======="
4557
4558 test_53() {
4559         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4560         remote_mds_nodsh && skip "remote MDS with nodsh"
4561         remote_ost_nodsh && skip "remote OST with nodsh"
4562
4563         local param
4564         local param_seq
4565         local ostname
4566         local mds_last
4567         local mds_last_seq
4568         local ost_last
4569         local ost_last_seq
4570         local ost_last_id
4571         local ostnum
4572         local node
4573         local found=false
4574         local support_last_seq=true
4575
4576         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
4577                 support_last_seq=false
4578
4579         # only test MDT0000
4580         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4581         local value
4582         for value in $(do_facet $SINGLEMDS \
4583                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4584                 param=$(echo ${value[0]} | cut -d "=" -f1)
4585                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4586
4587                 if $support_last_seq; then
4588                         param_seq=$(echo $param |
4589                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4590                         mds_last_seq=$(do_facet $SINGLEMDS \
4591                                        $LCTL get_param -n $param_seq)
4592                 fi
4593                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4594
4595                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4596                 node=$(facet_active_host ost$((ostnum+1)))
4597                 param="obdfilter.$ostname.last_id"
4598                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4599                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4600                         ost_last_id=$ost_last
4601
4602                         if $support_last_seq; then
4603                                 ost_last_id=$(echo $ost_last |
4604                                               awk -F':' '{print $2}' |
4605                                               sed -e "s/^0x//g")
4606                                 ost_last_seq=$(echo $ost_last |
4607                                                awk -F':' '{print $1}')
4608                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4609                         fi
4610
4611                         if [[ $ost_last_id != $mds_last ]]; then
4612                                 error "$ost_last_id != $mds_last"
4613                         else
4614                                 found=true
4615                                 break
4616                         fi
4617                 done
4618         done
4619         $found || error "can not match last_seq/last_id for $mdtosc"
4620         return 0
4621 }
4622 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4623
4624 test_54a() {
4625         perl -MSocket -e ';' || skip "no Socket perl module installed"
4626
4627         $SOCKETSERVER $DIR/socket ||
4628                 error "$SOCKETSERVER $DIR/socket failed: $?"
4629         $SOCKETCLIENT $DIR/socket ||
4630                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4631         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4632 }
4633 run_test 54a "unix domain socket test =========================="
4634
4635 test_54b() {
4636         f="$DIR/f54b"
4637         mknod $f c 1 3
4638         chmod 0666 $f
4639         dd if=/dev/zero of=$f bs=$(page_size) count=1
4640 }
4641 run_test 54b "char device works in lustre ======================"
4642
4643 find_loop_dev() {
4644         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4645         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4646         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4647
4648         for i in $(seq 3 7); do
4649                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4650                 LOOPDEV=$LOOPBASE$i
4651                 LOOPNUM=$i
4652                 break
4653         done
4654 }
4655
4656 cleanup_54c() {
4657         local rc=0
4658         loopdev="$DIR/loop54c"
4659
4660         trap 0
4661         $UMOUNT $DIR/$tdir || rc=$?
4662         losetup -d $loopdev || true
4663         losetup -d $LOOPDEV || true
4664         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4665         return $rc
4666 }
4667
4668 test_54c() {
4669         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4670
4671         loopdev="$DIR/loop54c"
4672
4673         find_loop_dev
4674         [ -z "$LOOPNUM" ] && skip_env "couldn't find empty loop device"
4675         trap cleanup_54c EXIT
4676         mknod $loopdev b 7 $LOOPNUM
4677         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4678         dd if=/dev/zero of=$DIR/$tfile bs=$(get_page_size client) seek=1024 count=1 > /dev/null
4679         losetup $loopdev $DIR/$tfile ||
4680                 error "can't set up $loopdev for $DIR/$tfile"
4681         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4682         test_mkdir $DIR/$tdir
4683         mount -t ext2 $loopdev $DIR/$tdir ||
4684                 error "error mounting $loopdev on $DIR/$tdir"
4685         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$(get_page_size client) count=30 ||
4686                 error "dd write"
4687         df $DIR/$tdir
4688         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$(get_page_size client) count=30 ||
4689                 error "dd read"
4690         cleanup_54c
4691 }
4692 run_test 54c "block device works in lustre ====================="
4693
4694 test_54d() {
4695         f="$DIR/f54d"
4696         string="aaaaaa"
4697         mknod $f p
4698         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4699 }
4700 run_test 54d "fifo device works in lustre ======================"
4701
4702 test_54e() {
4703         f="$DIR/f54e"
4704         string="aaaaaa"
4705         cp -aL /dev/console $f
4706         echo $string > $f || error "echo $string to $f failed"
4707 }
4708 run_test 54e "console/tty device works in lustre ======================"
4709
4710 test_56a() {
4711         local numfiles=3
4712         local dir=$DIR/$tdir
4713
4714         rm -rf $dir
4715         test_mkdir -p $dir/dir
4716         for i in $(seq $numfiles); do
4717                 touch $dir/file$i
4718                 touch $dir/dir/file$i
4719         done
4720
4721         local numcomp=$($LFS getstripe --component-count $dir)
4722
4723         [[ $numcomp == 0 ]] && numcomp=1
4724
4725         # test lfs getstripe with --recursive
4726         local filenum=$($LFS getstripe -r $dir | egrep -c "obdidx|l_ost_idx")
4727
4728         [[ $filenum -eq $((numfiles * 2)) ]] ||
4729                 error "$LFS getstripe -r: found $filenum != $((numfiles * 2))"
4730         filenum=$($LFS getstripe $dir | egrep -c "obdidx|l_ost_idx")
4731         [[ $filenum -eq $numfiles ]] ||
4732                 error "$LFS getstripe $dir: found $filenum, not $numfiles"
4733         echo "$LFS getstripe showed obdidx or l_ost_idx"
4734
4735         # test lfs getstripe with file instead of dir
4736         filenum=$($LFS getstripe $dir/file1 | egrep -c "obdidx|l_ost_idx")
4737         [[ $filenum -eq 1 ]] ||
4738                 error "$LFS getstripe $dir/file1: found $filenum, not 1"
4739         echo "$LFS getstripe file1 passed"
4740
4741         #test lfs getstripe with --verbose
4742         filenum=$($LFS getstripe --verbose $dir | grep -c lmm_magic)
4743         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
4744                 error "$LFS getstripe --verbose $dir: "\
4745                       "got $filenum want $((numfiles * numcomp)) lmm_magic"
4746         [[ $($LFS getstripe $dir | grep -c lmm_magic) -eq 0 ]] ||
4747                 error "$LFS getstripe $dir: showed lmm_magic"
4748
4749         #test lfs getstripe with -v prints lmm_fid
4750         filenum=$($LFS getstripe -v $dir | grep -c lmm_fid)
4751         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
4752                 error "$LFS getstripe -v $dir: "\
4753                       "got $filenum want $((numfiles * numcomp)) lmm_fid"
4754         [[ $($LFS getstripe $dir | grep -c lmm_fid) -eq 0 ]] ||
4755                 error "$LFS getstripe $dir: showed lmm_fid by default"
4756         echo "$LFS getstripe --verbose passed"
4757
4758         #check for FID information
4759         local fid1=$($LFS getstripe --fid $dir/file1)
4760         local fid2=$($LFS getstripe --verbose $dir/file1 |
4761                      awk '/lmm_fid: / { print $2; exit; }')
4762         local fid3=$($LFS path2fid $dir/file1)
4763
4764         [ "$fid1" != "$fid2" ] &&
4765                 error "getstripe --fid '$fid1' != getstripe --verbose '$fid2'"
4766         [ "$fid1" != "$fid3" ] &&
4767                 error "getstripe --fid '$fid1' != lfs path2fid '$fid3'"
4768         echo "$LFS getstripe --fid passed"
4769
4770         #test lfs getstripe with --obd
4771         $LFS getstripe --obd wrong_uuid $dir 2>&1 | grep -q "unknown obduuid" ||
4772                 error "$LFS getstripe --obd wrong_uuid: should return error"
4773
4774         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
4775
4776         local ostidx=1
4777         local obduuid=$(ostuuid_from_index $ostidx)
4778         local found=$($LFS getstripe -r --obd $obduuid $dir |
4779                 grep 'lmm_stripe_offset:' | grep -c " $ostidx\$")
4780
4781         filenum=$($LFS getstripe -ir $dir | grep -c "^$ostidx\$")
4782         [[ $($LFS getstripe -id $dir) -ne $ostidx ]] ||
4783                 ((filenum--))
4784         [[ $($LFS getstripe -id $dir/dir) -ne $ostidx ]] ||
4785                 ((filenum--))
4786
4787         [[ $found -eq $filenum ]] ||
4788                 error "$LFS getstripe --obd: found $found expect $filenum"
4789         [[ $($LFS getstripe -r -v --obd $obduuid $dir |
4790                 sed '/^[         ]*'${ostidx}'[  ]/d' |
4791                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4792                 error "$LFS getstripe --obd: should not show file on other obd"
4793         echo "$LFS getstripe --obd passed"
4794 }
4795 run_test 56a "check $LFS getstripe"
4796
4797 test_56b() {
4798         local dir=$DIR/$tdir
4799         local numdirs=3
4800
4801         test_mkdir $dir
4802         for i in $(seq $numdirs); do
4803                 test_mkdir $dir/dir$i
4804         done
4805
4806         # test lfs getdirstripe default mode is non-recursion, which is
4807         # different from lfs getstripe
4808         local dircnt=$($LFS getdirstripe $dir | grep -c lmv_stripe_count)
4809
4810         [[ $dircnt -eq 1 ]] ||
4811                 error "$LFS getdirstripe: found $dircnt, not 1"
4812         dircnt=$($LFS getdirstripe --recursive $dir |
4813                 grep -c lmv_stripe_count)
4814         [[ $dircnt -eq $((numdirs + 1)) ]] ||
4815                 error "$LFS getdirstripe -r: $dircnt, != $((numdirs + 1))"
4816 }
4817 run_test 56b "check $LFS getdirstripe"
4818
4819 test_56c() {
4820         remote_ost_nodsh && skip "remote OST with nodsh"
4821
4822         local ost_idx=0
4823         local ost_name=$(ostname_from_index $ost_idx)
4824         local old_status=$(ost_dev_status $ost_idx)
4825
4826         [[ -z "$old_status" ]] ||
4827                 skip_env "OST $ost_name is in $old_status status"
4828
4829         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=1
4830         sleep_maxage
4831
4832         local new_status=$(ost_dev_status $ost_idx)
4833
4834         [[ "$new_status" = "D" ]] ||
4835                 error "OST $ost_name is in status of '$new_status', not 'D'"
4836
4837         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=0
4838         sleep_maxage
4839
4840         new_status=$(ost_dev_status $ost_idx)
4841         [[ -z "$new_status" ]] ||
4842                 error "OST $ost_name is in status of '$new_status', not ''"
4843 }
4844 run_test 56c "check 'lfs df' showing device status"
4845
4846 NUMFILES=3
4847 NUMDIRS=3
4848 setup_56() {
4849         local local_tdir="$1"
4850         local local_numfiles="$2"
4851         local local_numdirs="$3"
4852         local dir_params="$4"
4853         local dir_stripe_params="$5"
4854
4855         if [ ! -d "$local_tdir" ] ; then
4856                 test_mkdir -p $dir_stripe_params $local_tdir
4857                 [ "$dir_params" ] && $LFS setstripe $dir_params $local_tdir
4858                 for i in $(seq $local_numfiles) ; do
4859                         touch $local_tdir/file$i
4860                 done
4861                 for i in $(seq $local_numdirs) ; do
4862                         test_mkdir $dir_stripe_params $local_tdir/dir$i
4863                         for j in $(seq $local_numfiles) ; do
4864                                 touch $local_tdir/dir$i/file$j
4865                         done
4866                 done
4867         fi
4868 }
4869
4870 setup_56_special() {
4871         local local_tdir=$1
4872         local local_numfiles=$2
4873         local local_numdirs=$3
4874
4875         setup_56 $local_tdir $local_numfiles $local_numdirs
4876
4877         if [ ! -e "$local_tdir/loop${local_numfiles}b" ] ; then
4878                 for i in $(seq $local_numfiles) ; do
4879                         mknod $local_tdir/loop${i}b b 7 $i
4880                         mknod $local_tdir/null${i}c c 1 3
4881                         ln -s $local_tdir/file1 $local_tdir/link${i}
4882                 done
4883                 for i in $(seq $local_numdirs) ; do
4884                         mknod $local_tdir/dir$i/loop${i}b b 7 $i
4885                         mknod $local_tdir/dir$i/null${i}c c 1 3
4886                         ln -s $local_tdir/dir$i/file1 $local_tdir/dir$i/link${i}
4887                 done
4888         fi
4889 }
4890
4891 test_56g() {
4892         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4893         local expected=$(($NUMDIRS + 2))
4894
4895         setup_56 $dir $NUMFILES $NUMDIRS
4896
4897         # test lfs find with -name
4898         for i in $(seq $NUMFILES) ; do
4899                 local nums=$($LFS find -name "*$i" $dir | wc -l)
4900
4901                 [ $nums -eq $expected ] ||
4902                         error "lfs find -name '*$i' $dir wrong: "\
4903                               "found $nums, expected $expected"
4904         done
4905 }
4906 run_test 56g "check lfs find -name"
4907
4908 test_56h() {
4909         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4910         local expected=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4911
4912         setup_56 $dir $NUMFILES $NUMDIRS
4913
4914         # test lfs find with ! -name
4915         for i in $(seq $NUMFILES) ; do
4916                 local nums=$($LFS find ! -name "*$i" $dir | wc -l)
4917
4918                 [ $nums -eq $expected ] ||
4919                         error "lfs find ! -name '*$i' $dir wrong: "\
4920                               "found $nums, expected $expected"
4921         done
4922 }
4923 run_test 56h "check lfs find ! -name"
4924
4925 test_56i() {
4926         local dir=$DIR/$tdir
4927
4928         test_mkdir $dir
4929
4930         local cmd="$LFS find -ost $(ostuuid_from_index 0 $dir) $dir"
4931         local out=$($cmd)
4932
4933         [ -z "$out" ] || error "'$cmd' returned directory '$out'"
4934 }
4935 run_test 56i "check 'lfs find -ost UUID' skips directories"
4936
4937 test_56j() {
4938         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4939
4940         setup_56_special $dir $NUMFILES $NUMDIRS
4941
4942         local expected=$((NUMDIRS + 1))
4943         local cmd="$LFS find -type d $dir"
4944         local nums=$($cmd | wc -l)
4945
4946         [ $nums -eq $expected ] ||
4947                 error "'$cmd' wrong: found $nums, expected $expected"
4948 }
4949 run_test 56j "check lfs find -type d"
4950
4951 test_56k() {
4952         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4953
4954         setup_56_special $dir $NUMFILES $NUMDIRS
4955
4956         local expected=$(((NUMDIRS + 1) * NUMFILES))
4957         local cmd="$LFS find -type f $dir"
4958         local nums=$($cmd | wc -l)
4959
4960         [ $nums -eq $expected ] ||
4961                 error "'$cmd' wrong: found $nums, expected $expected"
4962 }
4963 run_test 56k "check lfs find -type f"
4964
4965 test_56l() {
4966         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4967
4968         setup_56_special $dir $NUMFILES $NUMDIRS
4969
4970         local expected=$((NUMDIRS + NUMFILES))
4971         local cmd="$LFS find -type b $dir"
4972         local nums=$($cmd | wc -l)
4973
4974         [ $nums -eq $expected ] ||
4975                 error "'$cmd' wrong: found $nums, expected $expected"
4976 }
4977 run_test 56l "check lfs find -type b"
4978
4979 test_56m() {
4980         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4981
4982         setup_56_special $dir $NUMFILES $NUMDIRS
4983
4984         local expected=$((NUMDIRS + NUMFILES))
4985         local cmd="$LFS find -type c $dir"
4986         local nums=$($cmd | wc -l)
4987         [ $nums -eq $expected ] ||
4988                 error "'$cmd' wrong: found $nums, expected $expected"
4989 }
4990 run_test 56m "check lfs find -type c"
4991
4992 test_56n() {
4993         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4994         setup_56_special $dir $NUMFILES $NUMDIRS
4995
4996         local expected=$((NUMDIRS + NUMFILES))
4997         local cmd="$LFS find -type l $dir"
4998         local nums=$($cmd | wc -l)
4999
5000         [ $nums -eq $expected ] ||
5001                 error "'$cmd' wrong: found $nums, expected $expected"
5002 }
5003 run_test 56n "check lfs find -type l"
5004
5005 test_56o() {
5006         local dir=$DIR/$tdir
5007
5008         setup_56 $dir $NUMFILES $NUMDIRS
5009         utime $dir/file1 > /dev/null || error "utime (1)"
5010         utime $dir/file2 > /dev/null || error "utime (2)"
5011         utime $dir/dir1 > /dev/null || error "utime (3)"
5012         utime $dir/dir2 > /dev/null || error "utime (4)"
5013         utime $dir/dir1/file1 > /dev/null || error "utime (5)"
5014         dd if=/dev/zero count=1 >> $dir/dir1/file1 && sync
5015
5016         local expected=4
5017         local nums=$($LFS find -mtime +0 $dir | wc -l)
5018
5019         [ $nums -eq $expected ] ||
5020                 error "lfs find -mtime +0 $dir: found $nums expect $expected"
5021
5022         expected=12
5023         cmd="$LFS find -mtime 0 $dir"
5024         nums=$($cmd | wc -l)
5025         [ $nums -eq $expected ] ||
5026                 error "'$cmd' wrong: found $nums, expected $expected"
5027 }
5028 run_test 56o "check lfs find -mtime for old files"
5029
5030 test_56p() {
5031         [ $RUNAS_ID -eq $UID ] &&
5032                 skip_env "RUNAS_ID = UID = $UID -- skipping"
5033
5034         local dir=$DIR/$tdir
5035
5036         setup_56 $dir $NUMFILES $NUMDIRS
5037         chown $RUNAS_ID $dir/file* || error "chown $DIR/${tdir}g/file$i failed"
5038
5039         local expected=$NUMFILES
5040         local cmd="$LFS find -uid $RUNAS_ID $dir"
5041         local nums=$($cmd | wc -l)
5042
5043         [ $nums -eq $expected ] ||
5044                 error "'$cmd' wrong: found $nums, expected $expected"
5045
5046         expected=$(((NUMFILES + 1) * NUMDIRS + 1))
5047         cmd="$LFS find ! -uid $RUNAS_ID $dir"
5048         nums=$($cmd | wc -l)
5049         [ $nums -eq $expected ] ||
5050                 error "'$cmd' wrong: found $nums, expected $expected"
5051 }
5052 run_test 56p "check lfs find -uid and ! -uid"
5053
5054 test_56q() {
5055         [ $RUNAS_ID -eq $UID ] &&
5056                 skip_env "RUNAS_ID = UID = $UID -- skipping"
5057
5058         local dir=$DIR/$tdir
5059
5060         setup_56 $dir $NUMFILES $NUMDIRS
5061         chgrp $RUNAS_GID $dir/file* || error "chown $dir/file$i failed"
5062
5063         local expected=$NUMFILES
5064         local cmd="$LFS find -gid $RUNAS_GID $dir"
5065         local nums=$($cmd | wc -l)
5066
5067         [ $nums -eq $expected ] ||
5068                 error "'$cmd' wrong: found $nums, expected $expected"
5069
5070         expected=$(( ($NUMFILES+1) * $NUMDIRS + 1))
5071         cmd="$LFS find ! -gid $RUNAS_GID $dir"
5072         nums=$($cmd | wc -l)
5073         [ $nums -eq $expected ] ||
5074                 error "'$cmd' wrong: found $nums, expected $expected"
5075 }
5076 run_test 56q "check lfs find -gid and ! -gid"
5077
5078 test_56r() {
5079         local dir=$DIR/$tdir
5080
5081         setup_56 $dir $NUMFILES $NUMDIRS
5082
5083         local expected=12
5084         local cmd="$LFS find -size 0 -type f $dir"
5085         local nums=$($cmd | wc -l)
5086
5087         [ $nums -eq $expected ] ||
5088                 error "'$cmd' wrong: found $nums, expected $expected"
5089         expected=0
5090         cmd="$LFS find ! -size 0 -type f $dir"
5091         nums=$($cmd | wc -l)
5092         [ $nums -eq $expected ] ||
5093                 error "'$cmd' wrong: found $nums, expected $expected"
5094         echo "test" > $dir/$tfile
5095         echo "test2" > $dir/$tfile.2 && sync
5096         expected=1
5097         cmd="$LFS find -size 5 -type f $dir"
5098         nums=$($cmd | wc -l)
5099         [ $nums -eq $expected ] ||
5100                 error "'$cmd' wrong: found $nums, expected $expected"
5101         expected=1
5102         cmd="$LFS find -size +5 -type f $dir"
5103         nums=$($cmd | wc -l)
5104         [ $nums -eq $expected ] ||
5105                 error "'$cmd' wrong: found $nums, expected $expected"
5106         expected=2
5107         cmd="$LFS find -size +0 -type f $dir"
5108         nums=$($cmd | wc -l)
5109         [ $nums -eq $expected ] ||
5110                 error "'$cmd' wrong: found $nums, expected $expected"
5111         expected=2
5112         cmd="$LFS find ! -size -5 -type f $dir"
5113         nums=$($cmd | wc -l)
5114         [ $nums -eq $expected ] ||
5115                 error "'$cmd' wrong: found $nums, expected $expected"
5116         expected=12
5117         cmd="$LFS find -size -5 -type f $dir"
5118         nums=$($cmd | wc -l)
5119         [ $nums -eq $expected ] ||
5120                 error "'$cmd' wrong: found $nums, expected $expected"
5121 }
5122 run_test 56r "check lfs find -size works"
5123
5124 test_56s() { # LU-611 #LU-9369
5125         [[ $OSTCOUNT -lt 2 ]] && skip_env "need at least 2 OSTs"
5126
5127         local dir=$DIR/$tdir
5128         local onestripe=$(((NUMDIRS + 1) * NUMFILES))
5129
5130         setup_56 $dir $NUMFILES $NUMDIRS "-c 1"
5131         for i in $(seq $NUMDIRS); do
5132                 $LFS setstripe -c $((OSTCOUNT + 1)) $dir/dir$i/$tfile
5133         done
5134
5135         local expected=$NUMDIRS
5136         local cmd="$LFS find -c $OSTCOUNT $dir"
5137         local nums=$($cmd | wc -l)
5138
5139         [ $nums -eq $expected ] || {
5140                 $LFS getstripe -R $dir
5141                 error "'$cmd' wrong: found $nums, expected $expected"
5142         }
5143
5144         expected=$((NUMDIRS + onestripe))
5145         cmd="$LFS find -stripe-count +0 -type f $dir"
5146         nums=$($cmd | wc -l)
5147         [ $nums -eq $expected ] || {
5148                 $LFS getstripe -R $dir
5149                 error "'$cmd' wrong: found $nums, expected $expected"
5150         }
5151
5152         expected=$onestripe
5153         cmd="$LFS find -stripe-count 1 -type f $dir"
5154         nums=$($cmd | wc -l)
5155         [ $nums -eq $expected ] || {
5156                 $LFS getstripe -R $dir
5157                 error "'$cmd' wrong: found $nums, expected $expected"
5158         }
5159
5160         cmd="$LFS find -stripe-count -2 -type f $dir"
5161         nums=$($cmd | wc -l)
5162         [ $nums -eq $expected ] || {
5163                 $LFS getstripe -R $dir
5164                 error "'$cmd' wrong: found $nums, expected $expected"
5165         }
5166
5167         expected=0
5168         cmd="$LFS find -stripe-count $((OSTCOUNT + 1)) -type f $dir"
5169         nums=$($cmd | wc -l)
5170         [ $nums -eq $expected ] || {
5171                 $LFS getstripe -R $dir
5172                 error "'$cmd' wrong: found $nums, expected $expected"
5173         }
5174 }
5175 run_test 56s "check lfs find -stripe-count works"
5176
5177 test_56t() { # LU-611 #LU-9369
5178         local dir=$DIR/$tdir
5179
5180         setup_56 $dir 0 $NUMDIRS
5181         for i in $(seq $NUMDIRS); do
5182                 $LFS setstripe -S 8M $dir/dir$i/$tfile
5183         done
5184
5185         local expected=$NUMDIRS
5186         local cmd="$LFS find -S 8M $dir"
5187         local nums=$($cmd | wc -l)
5188
5189         [ $nums -eq $expected ] || {
5190                 $LFS getstripe -R $dir
5191                 error "'$cmd' wrong: found $nums, expected $expected"
5192         }
5193         rm -rf $dir
5194
5195         setup_56 $dir $NUMFILES $NUMDIRS "--stripe-size 512k"
5196
5197         $LFS setstripe -S 256k $dir/$tfile.{0,1,2,3}
5198
5199         expected=$(((NUMDIRS + 1) * NUMFILES))
5200         cmd="$LFS find -stripe-size 512k -type f $dir"
5201         nums=$($cmd | wc -l)
5202         [ $nums -eq $expected ] ||
5203                 error "'$cmd' wrong: found $nums, expected $expected"
5204
5205         cmd="$LFS find -stripe-size +320k -type f $dir"
5206         nums=$($cmd | wc -l)
5207         [ $nums -eq $expected ] ||
5208                 error "'$cmd' wrong: found $nums, expected $expected"
5209
5210         expected=$(((NUMDIRS + 1) * NUMFILES + 4))
5211         cmd="$LFS find -stripe-size +200k -type f $dir"
5212         nums=$($cmd | wc -l)
5213         [ $nums -eq $expected ] ||
5214                 error "'$cmd' wrong: found $nums, expected $expected"
5215
5216         cmd="$LFS find -stripe-size -640k -type f $dir"
5217         nums=$($cmd | wc -l)
5218         [ $nums -eq $expected ] ||
5219                 error "'$cmd' wrong: found $nums, expected $expected"
5220
5221         expected=4
5222         cmd="$LFS find -stripe-size 256k -type f $dir"
5223         nums=$($cmd | wc -l)
5224         [ $nums -eq $expected ] ||
5225                 error "'$cmd' wrong: found $nums, expected $expected"
5226
5227         cmd="$LFS find -stripe-size -320k -type f $dir"
5228         nums=$($cmd | wc -l)
5229         [ $nums -eq $expected ] ||
5230                 error "'$cmd' wrong: found $nums, expected $expected"
5231
5232         expected=0
5233         cmd="$LFS find -stripe-size 1024k -type f $dir"
5234         nums=$($cmd | wc -l)
5235         [ $nums -eq $expected ] ||
5236                 error "'$cmd' wrong: found $nums, expected $expected"
5237 }
5238 run_test 56t "check lfs find -stripe-size works"
5239
5240 test_56u() { # LU-611
5241         local dir=$DIR/$tdir
5242
5243         setup_56 $dir $NUMFILES $NUMDIRS "-i 0 -c 1"
5244
5245         if [[ $OSTCOUNT -gt 1 ]]; then
5246                 $LFS setstripe -i 1 -c 1 $dir/$tfile.{0,1,2,3}
5247                 onestripe=4
5248         else
5249                 onestripe=0
5250         fi
5251
5252         local expected=$(((NUMDIRS + 1) * NUMFILES))
5253         local cmd="$LFS find -stripe-index 0 -type f $dir"
5254         local nums=$($cmd | wc -l)
5255
5256         [ $nums -eq $expected ] ||
5257                 error "'$cmd' wrong: found $nums, expected $expected"
5258
5259         expected=$onestripe
5260         cmd="$LFS find -stripe-index 1 -type f $dir"
5261         nums=$($cmd | wc -l)
5262         [ $nums -eq $expected ] ||
5263                 error "'$cmd' wrong: found $nums, expected $expected"
5264
5265         cmd="$LFS find ! -stripe-index 0 -type f $dir"
5266         nums=$($cmd | wc -l)
5267         [ $nums -eq $expected ] ||
5268                 error "'$cmd' wrong: found $nums, expected $expected"
5269
5270         expected=0
5271         # This should produce an error and not return any files
5272         cmd="$LFS find -stripe-index $OSTCOUNT -type f $dir"
5273         nums=$($cmd 2>/dev/null | wc -l)
5274         [ $nums -eq $expected ] ||
5275                 error "'$cmd' wrong: found $nums, expected $expected"
5276
5277         if [[ $OSTCOUNT -gt 1 ]]; then
5278                 expected=$(((NUMDIRS + 1) * NUMFILES + onestripe))
5279                 cmd="$LFS find -stripe-index 0,1 -type f $dir"
5280                 nums=$($cmd | wc -l)
5281                 [ $nums -eq $expected ] ||
5282                         error "'$cmd' wrong: found $nums, expected $expected"
5283         fi
5284 }
5285 run_test 56u "check lfs find -stripe-index works"
5286
5287 test_56v() {
5288         local mdt_idx=0
5289         local dir=$DIR/$tdir
5290
5291         setup_56 $dir $NUMFILES $NUMDIRS
5292
5293         UUID=$(mdtuuid_from_index $mdt_idx $dir)
5294         [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT $mdt_idx"
5295
5296         for file in $($LFS find -m $UUID $dir); do
5297                 file_midx=$($LFS getstripe -m $file)
5298                 [ $file_midx -eq $mdt_idx ] ||
5299                         error "lfs find -m $UUID != getstripe -m $file_midx"
5300         done
5301 }
5302 run_test 56v "check 'lfs find -m match with lfs getstripe -m'"
5303
5304 test_56w() {
5305         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5306         [ $PARALLEL == "yes" ] && skip "skip parallel run"
5307
5308         local dir=$DIR/$tdir
5309
5310         setup_56 $dir $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
5311
5312         local stripe_size=$($LFS getstripe -S -d $dir) ||
5313                 error "$LFS getstripe -S -d $dir failed"
5314         stripe_size=${stripe_size%% *}
5315
5316         local file_size=$((stripe_size * OSTCOUNT))
5317         local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
5318         local required_space=$((file_num * file_size))
5319         local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
5320                            head -n1)
5321         [[ $free_space -le $((required_space / 1024)) ]] &&
5322                 skip_env "need $required_space, have $free_space kbytes"
5323
5324         local dd_bs=65536
5325         local dd_count=$((file_size / dd_bs))
5326
5327         # write data into the files
5328         local i
5329         local j
5330         local file
5331
5332         for i in $(seq $NUMFILES); do
5333                 file=$dir/file$i
5334                 yes | dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5335                         error "write data into $file failed"
5336         done
5337         for i in $(seq $NUMDIRS); do
5338                 for j in $(seq $NUMFILES); do
5339                         file=$dir/dir$i/file$j
5340                         yes|dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5341                                 error "write data into $file failed"
5342                 done
5343         done
5344
5345         # $LFS_MIGRATE will fail if hard link migration is unsupported
5346         if [[ $(lustre_version_code mds1) -gt $(version_code 2.5.55) ]]; then
5347                 createmany -l$dir/dir1/file1 $dir/dir1/link 200 ||
5348                         error "creating links to $dir/dir1/file1 failed"
5349         fi
5350
5351         local expected=-1
5352
5353         [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
5354
5355         # lfs_migrate file
5356         local cmd="$LFS_MIGRATE -y -c $expected $dir/file1"
5357
5358         echo "$cmd"
5359         eval $cmd || error "$cmd failed"
5360
5361         check_stripe_count $dir/file1 $expected
5362
5363         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.90) ];
5364         then
5365                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
5366                 # OST 1 if it is on OST 0. This file is small enough to
5367                 # be on only one stripe.
5368                 file=$dir/migr_1_ost
5369                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
5370                         error "write data into $file failed"
5371                 local obdidx=$($LFS getstripe -i $file)
5372                 local oldmd5=$(md5sum $file)
5373                 local newobdidx=0
5374
5375                 [[ $obdidx -eq 0 ]] && newobdidx=1
5376                 cmd="$LFS migrate -i $newobdidx $file"
5377                 echo $cmd
5378                 eval $cmd || error "$cmd failed"
5379
5380                 local realobdix=$($LFS getstripe -i $file)
5381                 local newmd5=$(md5sum $file)
5382
5383                 [[ $newobdidx -ne $realobdix ]] &&
5384                         error "new OST is different (was=$obdidx, "\
5385                               "wanted=$newobdidx, got=$realobdix)"
5386                 [[ "$oldmd5" != "$newmd5" ]] &&
5387                         error "md5sum differ: $oldmd5, $newmd5"
5388         fi
5389
5390         # lfs_migrate dir
5391         cmd="$LFS_MIGRATE -y -c $expected $dir/dir1"
5392         echo "$cmd"
5393         eval $cmd || error "$cmd failed"
5394
5395         for j in $(seq $NUMFILES); do
5396                 check_stripe_count $dir/dir1/file$j $expected
5397         done
5398
5399         # lfs_migrate works with lfs find
5400         cmd="$LFS find -stripe_count $OSTCOUNT -type f $dir |
5401              $LFS_MIGRATE -y -c $expected"
5402         echo "$cmd"
5403         eval $cmd || error "$cmd failed"
5404
5405         for i in $(seq 2 $NUMFILES); do
5406                 check_stripe_count $dir/file$i $expected
5407         done
5408         for i in $(seq 2 $NUMDIRS); do
5409                 for j in $(seq $NUMFILES); do
5410                 check_stripe_count $dir/dir$i/file$j $expected
5411                 done
5412         done
5413 }
5414 run_test 56w "check lfs_migrate -c stripe_count works"
5415
5416 test_56wb() {
5417         local file1=$DIR/$tdir/file1
5418         local create_pool=false
5419         local initial_pool=$($LFS getstripe -p $DIR)
5420         local pool_list=()
5421         local pool=""
5422
5423         echo -n "Creating test dir..."
5424         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
5425         echo "done."
5426
5427         echo -n "Creating test file..."
5428         touch $file1 || error "cannot create file"
5429         echo "done."
5430
5431         echo -n "Detecting existing pools..."
5432         pool_list=($($LFS pool_list $FSNAME | grep "$FSNAME\." | cut -d. -f2))
5433
5434         if [ ${#pool_list[@]} -gt 0 ]; then
5435                 echo "${pool_list[@]}"
5436                 for thispool in "${pool_list[@]}"; do
5437                         if [[ -z "$initial_pool" ||
5438                               "$initial_pool" != "$thispool" ]]; then
5439                                 pool="$thispool"
5440                                 echo "Using existing pool '$pool'"
5441                                 break
5442                         fi
5443                 done
5444         else
5445                 echo "none detected."
5446         fi
5447         if [ -z "$pool" ]; then
5448                 pool=${POOL:-testpool}
5449                 [ "$initial_pool" = "$pool" ] && pool="testpool2"
5450                 echo -n "Creating pool '$pool'..."
5451                 create_pool=true
5452                 pool_add $pool &> /dev/null ||
5453                         error "pool_add failed"
5454                 echo "done."
5455
5456                 echo -n "Adding target to pool..."
5457                 pool_add_targets $pool 0 0 1 &> /dev/null ||
5458                         error "pool_add_targets failed"
5459                 echo "done."
5460         fi
5461
5462         echo -n "Setting pool using -p option..."
5463         $LFS_MIGRATE -y -q --no-rsync -p $pool $file1 &> /dev/null ||
5464                 error "migrate failed rc = $?"
5465         echo "done."
5466
5467         echo -n "Verifying test file is in pool after migrating..."
5468         [ "$($LFS getstripe -p $file1)" = $pool ] ||
5469                 error "file was not migrated to pool $pool"
5470         echo "done."
5471
5472         echo -n "Removing test file from pool '$pool'..."
5473         $LFS migrate $file1 &> /dev/null ||
5474                 error "cannot remove from pool"
5475         [ "$($LFS getstripe -p $file1)" ] &&
5476                 error "pool still set"
5477         echo "done."
5478
5479         echo -n "Setting pool using --pool option..."
5480         $LFS_MIGRATE -y -q --no-rsync --pool $pool $file1 &> /dev/null ||
5481                 error "migrate failed rc = $?"
5482         echo "done."
5483
5484         # Clean up
5485         rm -f $file1
5486         if $create_pool; then
5487                 destroy_test_pools 2> /dev/null ||
5488                         error "destroy test pools failed"
5489         fi
5490 }
5491 run_test 56wb "check lfs_migrate pool support"
5492
5493 test_56wc() {
5494         local file1="$DIR/$tdir/file 1"
5495
5496         echo -n "Creating test dir..."
5497         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
5498         local def_stripe_size=$($LFS getstripe -S $DIR/$tdir 2>/dev/null)
5499         $LFS setstripe -S 1M -c 1 "$DIR/$tdir" &> /dev/null ||
5500                 error "cannot set stripe"
5501         echo "done"
5502
5503         echo -n "Setting initial stripe for test file..."
5504         $LFS setstripe -S 512K -c 1 "$file1" &> /dev/null ||
5505                 error "cannot set stripe"
5506         [ $($LFS getstripe -S "$file1") -eq 524288 ] ||
5507                 error "stripe size not set"
5508         echo "done."
5509
5510         # File currently set to -S 512K -c 1
5511
5512         # Ensure -c and -S options are rejected when -R is set
5513         echo -n "Verifying incompatible options are detected..."
5514         $LFS_MIGRATE -y -R -c 1 "$file1" &> /dev/null &&
5515                 error "incompatible -c and -R options not detected"
5516         $LFS_MIGRATE -y -R -S 1M "$file1" &> /dev/null &&
5517                 error "incompatible -S and -R options not detected"
5518         echo "done."
5519
5520         # Ensure unrecognized options are passed through to 'lfs migrate'
5521         echo -n "Verifying -S option is passed through to lfs migrate..."
5522         $LFS_MIGRATE -y -S 1M "$file1" &> /dev/null ||
5523                 error "migration failed"
5524         [ $($LFS getstripe -S "$file1") -eq 1048576 ] ||
5525                 error "file was not restriped"
5526         echo "done."
5527
5528         # File currently set to -S 1M -c 1
5529
5530         # Ensure long options are supported
5531         echo -n "Verifying long options supported..."
5532         $LFS_MIGRATE -y --non-block "$file1" &> /dev/null ||
5533                 error "long option without argument not supported"
5534         $LFS_MIGRATE -y --stripe-size 512K "$file1" &> /dev/null ||
5535                 error "long option with argument not supported"
5536         [ $($LFS getstripe -S "$file1") -eq 524288 ] ||
5537                 error "file not restriped with --stripe-size option"
5538         echo "done."
5539
5540         # File currently set to -S 512K -c 1
5541
5542         if [ "$OSTCOUNT" -gt 1 ]; then
5543                 echo -n "Verifying explicit stripe count can be set..."
5544                 $LFS_MIGRATE -y -c 2 "$file1" &> /dev/null ||
5545                         error "migrate failed"
5546                 [ $($LFS getstripe -c "$file1") -eq 2 ] ||
5547                         error "file not restriped to explicit count"
5548                 echo "done."
5549         fi
5550
5551         # File currently set to -S 512K -c 1 or -S 512K -c 2
5552
5553         # Ensure parent striping is used if -R is set, and no stripe
5554         # count or size is specified
5555         echo -n "Setting stripe for parent directory..."
5556         $LFS setstripe -S 1M -c 1 "$DIR/$tdir" &> /dev/null ||
5557                 error "cannot set stripe"
5558         echo "done."
5559
5560         echo -n "Verifying restripe option uses parent stripe settings..."
5561         $LFS_MIGRATE -y -R "$file1" &> /dev/null ||
5562                 error "migrate failed"
5563         [ $($LFS getstripe -S "$file1") -eq $def_stripe_size ] ||
5564                 error "file not restriped to parent settings"
5565         [ $($LFS getstripe -c "$file1") -eq 1 ] ||
5566                 error "file not restriped to parent settings"
5567         echo "done."
5568
5569         # File currently set to -S 1M -c 1
5570
5571         # Ensure striping is preserved if -R is not set, and no stripe
5572         # count or size is specified
5573         echo -n "Verifying striping size preserved when not specified..."
5574         local orig_stripe_size=$($LFS getstripe -S "$file1" 2>/dev/null)
5575         $LFS setstripe -S 2M -c 1 "$DIR/$tdir" &> /dev/null ||
5576                 error "cannot set stripe on parent directory"
5577         $LFS_MIGRATE -y "$file1" &> /dev/null ||
5578                 error "migrate failed"
5579         [ $($LFS getstripe -S "$file1") -eq $orig_stripe_size ] ||
5580                 error "file was restriped"
5581         echo "done."
5582
5583         # Ensure file name properly detected when final option has no argument
5584         echo -n "Verifying file name properly detected..."
5585         $LFS_MIGRATE -y "$file1" &> /dev/null ||
5586                 error "file name interpreted as option argument"
5587         echo "done."
5588
5589         # Clean up
5590         rm -f "$file1"
5591 }
5592 run_test 56wc "check unrecognized options for lfs_migrate are passed through"
5593
5594 test_56wd() {
5595         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5596
5597         local file1=$DIR/$tdir/file1
5598
5599         echo -n "Creating test dir..."
5600         test_mkdir $DIR/$tdir || error "cannot create dir"
5601         echo "done."
5602
5603         echo -n "Creating test file..."
5604         touch $file1
5605         echo "done."
5606
5607         # Ensure 'lfs migrate' will fail by using a non-existent option,
5608         # and make sure rsync is not called to recover
5609         echo -n "Make sure --no-rsync option works..."
5610         $LFS_MIGRATE -y --no-rsync --invalid-opt $file1 2>&1 |
5611                 grep -q 'refusing to fall back to rsync' ||
5612                 error "rsync was called with --no-rsync set"
5613         echo "done."
5614
5615         # Ensure rsync is called without trying 'lfs migrate' first
5616         echo -n "Make sure --rsync option works..."
5617         $LFS_MIGRATE -y --rsync --invalid-opt $file1 2>&1 |
5618                 grep -q 'falling back to rsync' &&
5619                 error "lfs migrate was called with --rsync set"
5620         echo "done."
5621
5622         echo -n "Make sure --rsync and --no-rsync options are exclusive..."
5623         $LFS_MIGRATE -y --rsync --no-rsync $file1 2>&1 |
5624                 grep -q 'at the same time' ||
5625                 error "--rsync and --no-rsync accepted concurrently"
5626         echo "done."
5627
5628         # Clean up
5629         rm -f $file1
5630 }
5631 run_test 56wd "check lfs_migrate --rsync and --no-rsync work"
5632
5633 test_56x() {
5634         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5635         check_swap_layouts_support
5636
5637         local dir=$DIR/$tdir
5638         local ref1=/etc/passwd
5639         local file1=$dir/file1
5640
5641         test_mkdir $dir || error "creating dir $dir"
5642         $LFS setstripe -c 2 $file1
5643         cp $ref1 $file1
5644         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
5645         stripe=$($LFS getstripe -c $file1)
5646         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5647         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5648
5649         # clean up
5650         rm -f $file1
5651 }
5652 run_test 56x "lfs migration support"
5653
5654 test_56xa() {
5655         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5656         check_swap_layouts_support
5657
5658         local dir=$DIR/$tdir/$testnum
5659
5660         test_mkdir -p $dir
5661
5662         local ref1=/etc/passwd
5663         local file1=$dir/file1
5664
5665         $LFS setstripe -c 2 $file1
5666         cp $ref1 $file1
5667         $LFS migrate --block -c 1 $file1 || error "migrate failed rc = $?"
5668
5669         local stripe=$($LFS getstripe -c $file1)
5670
5671         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5672         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5673
5674         # clean up
5675         rm -f $file1
5676 }
5677 run_test 56xa "lfs migration --block support"
5678
5679 check_migrate_links() {
5680         local dir="$1"
5681         local file1="$dir/file1"
5682         local begin="$2"
5683         local count="$3"
5684         local total_count=$(($begin + $count - 1))
5685         local symlink_count=10
5686         local uniq_count=10
5687
5688         if [ ! -f "$file1" ]; then
5689                 echo -n "creating initial file..."
5690                 $LFS setstripe -c 1 -S "512k" "$file1" ||
5691                         error "cannot setstripe initial file"
5692                 echo "done"
5693
5694                 echo -n "creating symlinks..."
5695                 for s in $(seq 1 $symlink_count); do
5696                         ln -s "$file1" "$dir/slink$s" ||
5697                                 error "cannot create symlinks"
5698                 done
5699                 echo "done"
5700
5701                 echo -n "creating nonlinked files..."
5702                 createmany -o "$dir/uniq" 1 10 &> /dev/null ||
5703                         error "cannot create nonlinked files"
5704                 echo "done"
5705         fi
5706
5707         # create hard links
5708         if [ ! -f "$dir/file$total_count" ]; then
5709                 echo -n "creating hard links $begin:$total_count..."
5710                 createmany -l"$file1" "$dir/file" "$begin" "$count" &>  \
5711                         /dev/null || error "cannot create hard links"
5712                 echo "done"
5713         fi
5714
5715         echo -n "checking number of hard links listed in xattrs..."
5716         local fid=$($LFS getstripe -F "$file1")
5717         local paths=($($LFS fid2path "$MOUNT" "$fid" 2> /dev/null))
5718
5719         echo "${#paths[*]}"
5720         if [ ${#paths[*]} -lt $total_count -a "$begin" -eq 2  ]; then
5721                         skip "hard link list has unexpected size, skipping test"
5722         fi
5723         if [ ${#paths[*]} -ge $total_count -a "$begin" -ne 2  ]; then
5724                         error "link names should exceed xattrs size"
5725         fi
5726
5727         echo -n "migrating files..."
5728         local migrate_out=$($LFS_MIGRATE -y -S '1m' $dir)
5729         local rc=$?
5730         [ $rc -eq 0 ] || error "migrate failed rc = $rc"
5731         echo "done"
5732
5733         # make sure all links have been properly migrated
5734         echo -n "verifying files..."
5735         fid=$($LFS getstripe -F "$file1") ||
5736                 error "cannot get fid for file $file1"
5737         for i in $(seq 2 $total_count); do
5738                 local fid2=$($LFS getstripe -F $dir/file$i)
5739
5740                 [ "$fid2" == "$fid" ] ||
5741                         error "migrated hard link has mismatched FID"
5742         done
5743
5744         # make sure hard links were properly detected, and migration was
5745         # performed only once for the entire link set; nonlinked files should
5746         # also be migrated
5747         local actual=$(grep -c 'done migrate' <<< "$migrate_out")
5748         local expected=$(($uniq_count + 1))
5749
5750         [ "$actual" -eq  "$expected" ] ||
5751                 error "hard links individually migrated ($actual != $expected)"
5752
5753         # make sure the correct number of hard links are present
5754         local hardlinks=$(stat -c '%h' "$file1")
5755
5756         [ $hardlinks -eq $total_count ] ||
5757                 error "num hard links $hardlinks != $total_count"
5758         echo "done"
5759
5760         return 0
5761 }
5762
5763 test_56xb() {
5764         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
5765                 skip "Need MDS version at least 2.10.55"
5766
5767         local dir="$DIR/$tdir"
5768
5769         test_mkdir "$dir" || error "cannot create dir $dir"
5770
5771         echo "testing lfs migrate mode when all links fit within xattrs"
5772         LFS_MIGRATE_RSYNC=false check_migrate_links "$dir" 2 99
5773
5774         echo "testing rsync mode when all links fit within xattrs"
5775         LFS_MIGRATE_RSYNC=true check_migrate_links "$dir" 2 99
5776
5777         echo "testing lfs migrate mode when all links do not fit within xattrs"
5778         LFS_MIGRATE_RSYNC=false check_migrate_links "$dir" 101 100
5779
5780         echo "testing rsync mode when all links do not fit within xattrs"
5781         LFS_MIGRATE_RSYNC=true check_migrate_links "$dir" 101 100
5782
5783         # clean up
5784         rm -rf $dir
5785 }
5786 run_test 56xb "lfs migration hard link support"
5787
5788 test_56y() {
5789         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
5790                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53"
5791
5792         local res=""
5793         local dir=$DIR/$tdir
5794         local f1=$dir/file1
5795         local f2=$dir/file2
5796
5797         test_mkdir -p $dir || error "creating dir $dir"
5798         touch $f1 || error "creating std file $f1"
5799         $MULTIOP $f2 H2c || error "creating released file $f2"
5800
5801         # a directory can be raid0, so ask only for files
5802         res=$($LFS find $dir -L raid0 -type f | wc -l)
5803         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
5804
5805         res=$($LFS find $dir \! -L raid0 -type f | wc -l)
5806         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
5807
5808         # only files can be released, so no need to force file search
5809         res=$($LFS find $dir -L released)
5810         [[ $res == $f2 ]] || error "search released: found $res != $f2"
5811
5812         res=$($LFS find $dir -type f \! -L released)
5813         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
5814 }
5815 run_test 56y "lfs find -L raid0|released"
5816
5817 test_56z() { # LU-4824
5818         # This checks to make sure 'lfs find' continues after errors
5819         # There are two classes of errors that should be caught:
5820         # - If multiple paths are provided, all should be searched even if one
5821         #   errors out
5822         # - If errors are encountered during the search, it should not terminate
5823         #   early
5824         local dir=$DIR/$tdir
5825         local i
5826
5827         test_mkdir $dir
5828         for i in d{0..9}; do
5829                 test_mkdir $dir/$i
5830         done
5831         touch $dir/d{0..9}/$tfile
5832         $LFS find $DIR/non_existent_dir $dir &&
5833                 error "$LFS find did not return an error"
5834         # Make a directory unsearchable. This should NOT be the last entry in
5835         # directory order.  Arbitrarily pick the 6th entry
5836         chmod 700 $($LFS find $dir -type d | sed '6!d')
5837
5838         local count=$($RUNAS $LFS find $DIR/non_existent $dir | wc -l)
5839
5840         # The user should be able to see 10 directories and 9 files
5841         [ $count == 19 ] || error "$LFS find did not continue after error"
5842 }
5843 run_test 56z "lfs find should continue after an error"
5844
5845 test_56aa() { # LU-5937
5846         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
5847
5848         local dir=$DIR/$tdir
5849
5850         mkdir $dir
5851         $LFS setdirstripe -c$MDSCOUNT $dir/striped_dir
5852
5853         createmany -o $dir/striped_dir/${tfile}- 1024
5854         local dirs=$($LFS find --size +8k $dir/)
5855
5856         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
5857 }
5858 run_test 56aa "lfs find --size under striped dir"
5859
5860 test_56ab() { # LU-10705
5861         test_mkdir $DIR/$tdir
5862         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=8k count=1 seek=2k
5863         dd if=/dev/zero of=$DIR/$tdir/$tfile.2 bs=4k count=1 seek=4k
5864         dd if=/dev/zero of=$DIR/$tdir/$tfile.3 bs=1M count=2 seek=16
5865         # Flush writes to ensure valid blocks.  Need to be more thorough for
5866         # ZFS, since blocks are not allocated/returned to client immediately.
5867         sync_all_data
5868         wait_zfs_commit ost1 2
5869         cancel_lru_locks osc
5870         ls -ls $DIR/$tdir
5871
5872         local files=$($LFS find --size +16M $DIR/$tdir | wc -l)
5873
5874         [[ $files == 3 ]] || error ">16M size files $files isn't 3 as expected"
5875
5876         files=$($LFS find --blocks +1M $DIR/$tdir | wc -l)
5877         [[ $files == 1 ]] || error ">1M blocks files $files isn't 1 as expected"
5878
5879         rm -f $DIR/$tdir/$tfile.[123]
5880 }
5881 run_test 56ab "lfs find --blocks"
5882
5883 test_56ba() {
5884         # Create composite files with one component
5885         local dir=$DIR/$tdir
5886
5887         setup_56 $dir/1Mfiles 5 1 "-S 1M --component-end 1M"
5888         # Create composite files with three components
5889         setup_56 $dir/2Mfiles 5 2 "-E 2M -S 1M -E 4M -E 6M"
5890         # Create non-composite files
5891         createmany -o $dir/${tfile}- 10
5892
5893         local nfiles=$($LFS find --component-end 1M --type f $dir | wc -l)
5894
5895         [[ $nfiles == 10 ]] ||
5896                 error "lfs find -E 1M found $nfiles != 10 files"
5897
5898         nfiles=$($LFS find ! -E 1M --type f $dir | wc -l)
5899         [[ $nfiles == 25 ]] ||
5900                 error "lfs find ! -E 1M found $nfiles != 25 files"
5901
5902         # All files have a component that starts at 0
5903         nfiles=$($LFS find --component-start 0 --type f $dir | wc -l)
5904         [[ $nfiles == 35 ]] ||
5905                 error "lfs find --component-start 0 - $nfiles != 35 files"
5906
5907         nfiles=$($LFS find --component-start 2M --type f $dir | wc -l)
5908         [[ $nfiles == 15 ]] ||
5909                 error "lfs find --component-start 2M - $nfiles != 15 files"
5910
5911         # All files created here have a componenet that does not starts at 2M
5912         nfiles=$($LFS find ! --component-start 2M --type f $dir | wc -l)
5913         [[ $nfiles == 35 ]] ||
5914                 error "lfs find ! --component-start 2M - $nfiles != 35 files"
5915
5916         # Find files with a specified number of components
5917         local nfiles=$($LFS find --component-count 3 --type f $dir | wc -l)
5918         [[ $nfiles == 15 ]] ||
5919                 error "lfs find --component-count 3 - $nfiles != 15 files"
5920
5921         # Remember non-composite files have a component count of zero
5922         local nfiles=$($LFS find --component-count 0 --type f $dir | wc -l)
5923         [[ $nfiles == 10 ]] ||
5924                 error "lfs find --component-count 0 - $nfiles != 10 files"
5925
5926         nfiles=$($LFS find ! --component-count 3 --type f $dir | wc -l)
5927         [[ $nfiles == 20 ]] ||
5928                 error "lfs find ! --component-count 3 - $nfiles != 20 files"
5929
5930         # All files have a flag called "init"
5931         local nfiles=$($LFS find --component-flags init --type f $dir | wc -l)
5932         [[ $nfiles == 35 ]] ||
5933                 error "lfs find --component-flags init - $nfiles != 35 files"
5934
5935         # Multi-component files will have a component not initialized
5936         local nfiles=$($LFS find ! --component-flags init --type f $dir | wc -l)
5937         [[ $nfiles == 15 ]] ||
5938                 error "lfs find !--component-flags init - $nfiles != 15 files"
5939
5940         rm -rf $dir
5941
5942 }
5943 run_test 56ba "test lfs find --component-end, -start, -count, and -flags"
5944
5945 test_56ca() {
5946         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.57) ]] ||
5947                 skip "Need MDS version at least 2.10.57"
5948
5949         local td=$DIR/$tdir
5950         local tf=$td/$tfile
5951         local dir
5952         local nfiles
5953         local cmd
5954         local i
5955         local j
5956
5957         # create mirrored directories and mirrored files
5958         mkdir $td || error "mkdir $td failed"
5959         $LFS mirror create -N3 $td || error "create mirrored dir $td failed"
5960         createmany -o $tf- 10 || error "create $tf- failed"
5961
5962         for i in $(seq 2); do
5963                 dir=$td/dir$i
5964                 mkdir $dir || error "mkdir $dir failed"
5965                 $LFS mirror create -N$((3 + i)) $dir ||
5966                         error "create mirrored dir $dir failed"
5967                 createmany -o $dir/$tfile- 10 ||
5968                         error "create $dir/$tfile- failed"
5969         done
5970
5971         # change the states of some mirrored files
5972         echo foo > $tf-6
5973         for i in $(seq 2); do
5974                 dir=$td/dir$i
5975                 for j in $(seq 4 9); do
5976                         echo foo > $dir/$tfile-$j
5977                 done
5978         done
5979
5980         # find mirrored files with specific mirror count
5981         cmd="$LFS find --mirror-count 3 --type f $td"
5982         nfiles=$($cmd | wc -l)
5983         [[ $nfiles = 10 ]] || error "$cmd: $nfiles != 10 files"
5984
5985         cmd="$LFS find ! --mirror-count 3 --type f $td"
5986         nfiles=$($cmd | wc -l)
5987         [[ $nfiles = 20 ]] || error "$cmd: $nfiles != 20 files"
5988
5989         cmd="$LFS find --mirror-count +2 --type f $td"
5990         nfiles=$($cmd | wc -l)
5991         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
5992
5993         cmd="$LFS find --mirror-count -6 --type f $td"
5994         nfiles=$($cmd | wc -l)
5995         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
5996
5997         # find mirrored files with specific file state
5998         cmd="$LFS find --maxdepth 1 --mirror-state=^ro --type f $td"
5999         [[ $($cmd) = $tf-6 ]] || error "$cmd: didn't return $tf-6"
6000
6001         cmd="$LFS find --mirror-state=ro --type f $td"
6002         nfiles=$($cmd | wc -l)
6003         [[ $nfiles = 17 ]] || error "$cmd: $nfiles != 17 files"
6004
6005         cmd="$LFS find ! --mirror-state=ro --type f $td"
6006         nfiles=$($cmd | wc -l)
6007         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
6008
6009         cmd="$LFS find --mirror-state=wp --type f $td"
6010         nfiles=$($cmd | wc -l)
6011         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
6012
6013         cmd="$LFS find ! --mirror-state=sp --type f $td"
6014         nfiles=$($cmd | wc -l)
6015         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
6016 }
6017 run_test 56ca "check lfs find --mirror-count|-N and --mirror-state"
6018
6019 test_57a() {
6020         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6021         # note test will not do anything if MDS is not local
6022         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
6023                 skip_env "ldiskfs only test"
6024         fi
6025         remote_mds_nodsh && skip "remote MDS with nodsh"
6026
6027         local MNTDEV="osd*.*MDT*.mntdev"
6028         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
6029         [ -z "$DEV" ] && error "can't access $MNTDEV"
6030         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
6031                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
6032                         error "can't access $DEV"
6033                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
6034                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
6035                 rm $TMP/t57a.dump
6036         done
6037 }
6038 run_test 57a "verify MDS filesystem created with large inodes =="
6039
6040 test_57b() {
6041         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6042         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
6043                 skip_env "ldiskfs only test"
6044         fi
6045         remote_mds_nodsh && skip "remote MDS with nodsh"
6046
6047         local dir=$DIR/$tdir
6048         local filecount=100
6049         local file1=$dir/f1
6050         local fileN=$dir/f$filecount
6051
6052         rm -rf $dir || error "removing $dir"
6053         test_mkdir -c1 $dir
6054         local mdtidx=$($LFS getstripe -m $dir)
6055         local mdtname=MDT$(printf %04x $mdtidx)
6056         local facet=mds$((mdtidx + 1))
6057
6058         echo "mcreating $filecount files"
6059         createmany -m $dir/f 1 $filecount || error "creating files in $dir"
6060
6061         # verify that files do not have EAs yet
6062         $LFS getstripe $file1 2>&1 | grep -q "no stripe" ||
6063                 error "$file1 has an EA"
6064         $LFS getstripe $fileN 2>&1 | grep -q "no stripe" ||
6065                 error "$fileN has an EA"
6066
6067         sync
6068         sleep 1
6069         df $dir  #make sure we get new statfs data
6070         local mdsfree=$(do_facet $facet \
6071                         lctl get_param -n osd*.*$mdtname.kbytesfree)
6072         local mdcfree=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
6073         local file
6074
6075         echo "opening files to create objects/EAs"
6076         for file in $(seq -f $dir/f%g 1 $filecount); do
6077                 $OPENFILE -f O_RDWR $file > /dev/null 2>&1 ||
6078                         error "opening $file"
6079         done
6080
6081         # verify that files have EAs now
6082         $LFS getstripe $file1 | grep -q "obdidx" || error "$file1 missing EA"
6083         $LFS getstripe $fileN | grep -q "obdidx" || error "$fileN missing EA"
6084
6085         sleep 1  #make sure we get new statfs data
6086         df $dir
6087         local mdsfree2=$(do_facet $facet \
6088                          lctl get_param -n osd*.*$mdtname.kbytesfree)
6089         local mdcfree2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
6090
6091         if [[ $mdcfree2 -lt $((mdcfree - 16)) ]]; then
6092                 if [ "$mdsfree" != "$mdsfree2" ]; then
6093                         error "MDC before $mdcfree != after $mdcfree2"
6094                 else
6095                         echo "MDC before $mdcfree != after $mdcfree2"
6096                         echo "unable to confirm if MDS has large inodes"
6097                 fi
6098         fi
6099         rm -rf $dir
6100 }
6101 run_test 57b "default LOV EAs are stored inside large inodes ==="
6102
6103 test_58() {
6104         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6105         [ -z "$(which wiretest 2>/dev/null)" ] &&
6106                         skip_env "could not find wiretest"
6107
6108         wiretest
6109 }
6110 run_test 58 "verify cross-platform wire constants =============="
6111
6112 test_59() {
6113         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6114
6115         echo "touch 130 files"
6116         createmany -o $DIR/f59- 130
6117         echo "rm 130 files"
6118         unlinkmany $DIR/f59- 130
6119         sync
6120         # wait for commitment of removal
6121         wait_delete_completed
6122 }
6123 run_test 59 "verify cancellation of llog records async ========="
6124
6125 TEST60_HEAD="test_60 run $RANDOM"
6126 test_60a() {
6127         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6128         remote_mgs_nodsh && skip "remote MGS with nodsh"
6129         do_facet mgs "! which run-llog.sh &> /dev/null" &&
6130                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
6131                         skip_env "missing subtest run-llog.sh"
6132
6133         log "$TEST60_HEAD - from kernel mode"
6134         do_facet mgs "$LCTL set_param debug=warning; $LCTL dk > /dev/null"
6135         do_facet mgs "bash run-llog.sh" || error "run-llog.sh failed"
6136         do_facet mgs $LCTL dk > $TMP/$tfile
6137
6138         # LU-6388: test llog_reader
6139         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
6140         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
6141         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
6142                         skip_env "missing llog_reader"
6143         local fstype=$(facet_fstype mgs)
6144         [ $fstype != ldiskfs -a $fstype != zfs ] &&
6145                 skip_env "Only for ldiskfs or zfs type mgs"
6146
6147         local mntpt=$(facet_mntpt mgs)
6148         local mgsdev=$(mgsdevname 1)
6149         local fid_list
6150         local fid
6151         local rec_list
6152         local rec
6153         local rec_type
6154         local obj_file
6155         local path
6156         local seq
6157         local oid
6158         local pass=true
6159
6160         #get fid and record list
6161         fid_list=($(awk '/9_sub.*record/ { print $NF }' /$TMP/$tfile |
6162                 tail -n 4))
6163         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' /$TMP/$tfile |
6164                 tail -n 4))
6165         #remount mgs as ldiskfs or zfs type
6166         stop mgs || error "stop mgs failed"
6167         mount_fstype mgs || error "remount mgs failed"
6168         for ((i = 0; i < ${#fid_list[@]}; i++)); do
6169                 fid=${fid_list[i]}
6170                 rec=${rec_list[i]}
6171                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
6172                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
6173                 oid=$((16#$oid))
6174
6175                 case $fstype in
6176                         ldiskfs )
6177                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
6178                         zfs )
6179                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
6180                 esac
6181                 echo "obj_file is $obj_file"
6182                 do_facet mgs $llog_reader $obj_file
6183
6184                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
6185                         awk '{ print $3 }' | sed -e "s/^type=//g")
6186                 if [ $rec_type != $rec ]; then
6187                         echo "FAILED test_60a wrong record type $rec_type," \
6188                               "should be $rec"
6189                         pass=false
6190                         break
6191                 fi
6192
6193                 #check obj path if record type is LLOG_LOGID_MAGIC
6194                 if [ "$rec" == "1064553b" ]; then
6195                         path=$(do_facet mgs $llog_reader $obj_file |
6196                                 grep "path=" | awk '{ print $NF }' |
6197                                 sed -e "s/^path=//g")
6198                         if [ $obj_file != $mntpt/$path ]; then
6199                                 echo "FAILED test_60a wrong obj path" \
6200                                       "$montpt/$path, should be $obj_file"
6201                                 pass=false
6202                                 break
6203                         fi
6204                 fi
6205         done
6206         rm -f $TMP/$tfile
6207         #restart mgs before "error", otherwise it will block the next test
6208         stop mgs || error "stop mgs failed"
6209         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
6210         $pass || error "test failed, see FAILED test_60a messages for specifics"
6211 }
6212 run_test 60a "llog_test run from kernel module and test llog_reader"
6213
6214 test_60aa() {
6215         remote_mgs_nodsh && skip "remote MGS with nodsh"
6216
6217         # test old logid format
6218         if [ $(lustre_version_code mgs) -le $(version_code 3.1.53) ]; then
6219                 do_facet mgs $LCTL dl | grep MGS
6220                 do_facet mgs "$LCTL --device %MGS llog_print \\\\\\\$$FSNAME-client" ||
6221                         error "old llog_print failed"
6222         fi
6223
6224         # test new logid format
6225         if [ $(lustre_version_code mgs) -ge $(version_code 2.9.53) ]; then
6226                 do_facet mgs "$LCTL --device MGS llog_print $FSNAME-client" ||
6227                         error "new llog_print failed"
6228         fi
6229 }
6230 run_test 60aa "llog_print works with FIDs and simple names"
6231
6232 test_60ab() {
6233         # test llog_print with params
6234
6235         [[ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.11.51) ]] ||
6236                 skip "Need server version greater than 2.11.51"
6237
6238         local yaml
6239         local orig_val
6240
6241         orig_val=$(do_facet mgs $LCTL get_param jobid_name)
6242         do_facet mgs $LCTL set_param -P jobid_name="testname"
6243
6244         yaml=$(do_facet mgs $LCTL --device MGS llog_print params |
6245             grep jobid_name | tail -n 1)
6246
6247         local param=`awk '{ print $10 }' <<< "$yaml"`
6248         local val=`awk '{ print $12 }' <<< "$yaml"`
6249         #return to the default
6250         do_facet mgs $LCTL set_param -P jobid_name=$orig_val
6251         [ $val = "testname" ] || error "bad value: $val"
6252         [ $param = "jobid_name," ] || error "Bad param: $param"
6253 }
6254 run_test 60ab "llog_print params output values from set_param -P"
6255
6256 test_60b() { # bug 6411
6257         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6258
6259         dmesg > $DIR/$tfile
6260         LLOG_COUNT=$(dmesg | awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
6261                                 /llog.test/ {
6262                                         if (marker)
6263                                                 from_marker++
6264                                         from_begin++
6265                                 }
6266                                 END {
6267                                         if (marker)
6268                                                 print from_marker
6269                                         else
6270                                                 print from_begin
6271                                 }")
6272         [[ $LLOG_COUNT -gt 100 ]] &&
6273                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
6274 }
6275 run_test 60b "limit repeated messages from CERROR/CWARN ========"
6276
6277 test_60c() {
6278         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6279
6280         echo "create 5000 files"
6281         createmany -o $DIR/f60c- 5000
6282 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
6283         lctl set_param fail_loc=0x80000137
6284         unlinkmany $DIR/f60c- 5000
6285         lctl set_param fail_loc=0
6286 }
6287 run_test 60c "unlink file when mds full"
6288
6289 test_60d() {
6290         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6291
6292         SAVEPRINTK=$(lctl get_param -n printk)
6293         # verify "lctl mark" is even working"
6294         MESSAGE="test message ID $RANDOM $$"
6295         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
6296         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
6297
6298         lctl set_param printk=0 || error "set lnet.printk failed"
6299         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
6300         MESSAGE="new test message ID $RANDOM $$"
6301         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
6302         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
6303         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
6304
6305         lctl set_param -n printk="$SAVEPRINTK"
6306 }
6307 run_test 60d "test printk console message masking"
6308
6309 test_60e() {
6310         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6311         remote_mds_nodsh && skip "remote MDS with nodsh"
6312
6313         touch $DIR/$tfile
6314 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
6315         do_facet mds1 lctl set_param fail_loc=0x15b
6316         rm $DIR/$tfile
6317 }
6318 run_test 60e "no space while new llog is being created"
6319
6320 test_61() {
6321         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6322
6323         f="$DIR/f61"
6324         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
6325         cancel_lru_locks osc
6326         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
6327         sync
6328 }
6329 run_test 61 "mmap() writes don't make sync hang ================"
6330
6331 # bug 2330 - insufficient obd_match error checking causes LBUG
6332 test_62() {
6333         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6334
6335         f="$DIR/f62"
6336         echo foo > $f
6337         cancel_lru_locks osc
6338         lctl set_param fail_loc=0x405
6339         cat $f && error "cat succeeded, expect -EIO"
6340         lctl set_param fail_loc=0
6341 }
6342 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
6343 # match every page all of the time.
6344 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
6345
6346 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
6347 # Though this test is irrelevant anymore, it helped to reveal some
6348 # other grant bugs (LU-4482), let's keep it.
6349 test_63a() {   # was test_63
6350         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6351
6352         MAX_DIRTY_MB=$(lctl get_param -n osc.*.max_dirty_mb | head -n 1)
6353
6354         for i in `seq 10` ; do
6355                 dd if=/dev/zero of=$DIR/f63 bs=8k &
6356                 sleep 5
6357                 kill $!
6358                 sleep 1
6359         done
6360
6361         rm -f $DIR/f63 || true
6362 }
6363 run_test 63a "Verify oig_wait interruption does not crash ======="
6364
6365 # bug 2248 - async write errors didn't return to application on sync
6366 # bug 3677 - async write errors left page locked
6367 test_63b() {
6368         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6369
6370         debugsave
6371         lctl set_param debug=-1
6372
6373         # ensure we have a grant to do async writes
6374         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
6375         rm $DIR/$tfile
6376
6377         sync    # sync lest earlier test intercept the fail_loc
6378
6379         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
6380         lctl set_param fail_loc=0x80000406
6381         $MULTIOP $DIR/$tfile Owy && \
6382                 error "sync didn't return ENOMEM"
6383         sync; sleep 2; sync     # do a real sync this time to flush page
6384         lctl get_param -n llite.*.dump_page_cache | grep locked && \
6385                 error "locked page left in cache after async error" || true
6386         debugrestore
6387 }
6388 run_test 63b "async write errors should be returned to fsync ==="
6389
6390 test_64a () {
6391         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6392
6393         df $DIR
6394         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
6395 }
6396 run_test 64a "verify filter grant calculations (in kernel) ====="
6397
6398 test_64b () {
6399         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6400
6401         sh oos.sh $MOUNT || error "oos.sh failed: $?"
6402 }
6403 run_test 64b "check out-of-space detection on client"
6404
6405 test_64c() {
6406         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
6407 }
6408 run_test 64c "verify grant shrink"
6409
6410 # this does exactly what osc_request.c:osc_announce_cached() does in
6411 # order to calculate max amount of grants to ask from server
6412 want_grant() {
6413         local tgt=$1
6414
6415         local page_size=$(get_page_size client)
6416
6417         local nrpages=$($LCTL get_param -n osc.${tgt}.max_pages_per_rpc)
6418         local rpc_in_flight=$($LCTL get_param -n osc.${tgt}.max_rpcs_in_flight)
6419
6420         ((rpc_in_flight ++));
6421         nrpages=$((nrpages * rpc_in_flight))
6422
6423         local dirty_max_pages=$($LCTL get_param -n osc.${tgt}.max_dirty_mb)
6424
6425         dirty_max_pages=$((dirty_max_pages * 1024 * 1024 / page_size))
6426
6427         [[ $dirty_max_pages -gt $nrpages ]] && nrpages=$dirty_max_pages
6428         local undirty=$((nrpages * page_size))
6429
6430         local max_extent_pages
6431         max_extent_pages=$($LCTL get_param osc.${tgt}.import |
6432             grep grant_max_extent_size | awk '{print $2}')
6433         max_extent_pages=$((max_extent_pages / page_size))
6434         local nrextents=$(((nrpages + max_extent_pages - 1) / max_extent_pages))
6435         local grant_extent_tax
6436         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6437             grep grant_extent_tax | awk '{print $2}')
6438
6439         undirty=$((undirty + nrextents * grant_extent_tax))
6440
6441         echo $undirty
6442 }
6443
6444 # this is size of unit for grant allocation. It should be equal to
6445 # what tgt_grant.c:tgt_grant_chunk() calculates
6446 grant_chunk() {
6447         local tgt=$1
6448         local max_brw_size
6449         local grant_extent_tax
6450
6451         max_brw_size=$($LCTL get_param osc.${tgt}.import |
6452             grep max_brw_size | awk '{print $2}')
6453
6454         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6455             grep grant_extent_tax | awk '{print $2}')
6456
6457         echo $(((max_brw_size + grant_extent_tax) * 2))
6458 }
6459
6460 test_64d() {
6461         [ $(lustre_version_code ost1) -lt $(version_code 2.10.56) ] &&
6462                 skip "OST < 2.10.55 doesn't limit grants enough"
6463
6464         local tgt=$($LCTL dl | grep "0000-osc-[^mM]" | awk '{print $4}')
6465         local file=$DIR/$tfile
6466
6467         [[ $($LCTL get_param osc.${tgt}.import |
6468              grep "connect_flags:.*grant_param") ]] ||
6469                 skip "no grant_param connect flag"
6470
6471         local olddebug=$($LCTL get_param -n debug 2> /dev/null)
6472
6473         $LCTL set_param debug="$OLDDEBUG" 2> /dev/null || true
6474
6475         local max_cur_granted=$(($(want_grant $tgt) + $(grant_chunk $tgt)))
6476         stack_trap "rm -f $file" EXIT
6477
6478         $SETSTRIPE $file -i 0 -c 1
6479         dd if=/dev/zero of=$file bs=1M count=1000 &
6480         ddpid=$!
6481
6482         while true
6483         do
6484                 local cur_grant=$($LCTL get_param -n osc.${tgt}.cur_grant_bytes)
6485                 if [[ $cur_grant -gt $max_cur_granted ]]
6486                 then
6487                         kill $ddpid
6488                         error "cur_grant $cur_grant > $max_cur_granted"
6489                 fi
6490                 kill -0 $ddpid
6491                 [[ $? -ne 0 ]] && break;
6492                 sleep 2
6493         done
6494
6495         rm -f $DIR/$tfile
6496         wait_delete_completed
6497         $LCTL set_param debug="$olddebug" 2> /dev/null || true
6498 }
6499 run_test 64d "check grant limit exceed"
6500
6501 # bug 1414 - set/get directories' stripe info
6502 test_65a() {
6503         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6504
6505         test_mkdir $DIR/$tdir
6506         touch $DIR/$tdir/f1
6507         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
6508 }
6509 run_test 65a "directory with no stripe info"
6510
6511 test_65b() {
6512         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6513
6514         test_mkdir $DIR/$tdir
6515         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6516
6517         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6518                                                 error "setstripe"
6519         touch $DIR/$tdir/f2
6520         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
6521 }
6522 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
6523
6524 test_65c() {
6525         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6526         [ $OSTCOUNT -lt 2 ] && skip_env "need at least 2 OSTs"
6527
6528         test_mkdir $DIR/$tdir
6529         local stripesize=$($GETSTRIPE -S $DIR/$tdir)
6530
6531         $LFS setstripe -S $((stripesize * 4)) -i 1 \
6532                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
6533         touch $DIR/$tdir/f3
6534         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
6535 }
6536 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
6537
6538 test_65d() {
6539         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6540
6541         test_mkdir $DIR/$tdir
6542         local STRIPECOUNT=$($GETSTRIPE -c $DIR/$tdir)
6543         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6544
6545         if [[ $STRIPECOUNT -le 0 ]]; then
6546                 sc=1
6547         elif [[ $STRIPECOUNT -gt 2000 ]]; then
6548 #LOV_MAX_STRIPE_COUNT is 2000
6549                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
6550         else
6551                 sc=$(($STRIPECOUNT - 1))
6552         fi
6553         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
6554         touch $DIR/$tdir/f4 $DIR/$tdir/f5
6555         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
6556                 error "lverify failed"
6557 }
6558 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
6559
6560 test_65e() {
6561         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6562
6563         test_mkdir $DIR/$tdir
6564
6565         $SETSTRIPE $DIR/$tdir || error "setstripe"
6566         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
6567                                         error "no stripe info failed"
6568         touch $DIR/$tdir/f6
6569         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
6570 }
6571 run_test 65e "directory setstripe defaults"
6572
6573 test_65f() {
6574         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6575
6576         test_mkdir $DIR/${tdir}f
6577         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
6578 }
6579 run_test 65f "dir setstripe permission (should return error) ==="
6580
6581 test_65g() {
6582         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6583
6584         test_mkdir $DIR/$tdir
6585         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6586
6587         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6588                 error "setstripe -S failed"
6589         $LFS setstripe -d $DIR/$tdir || error "setstripe -d failed"
6590         $LFS getstripe -v $DIR/$tdir | grep "Default" ||
6591                 error "delete default stripe failed"
6592 }
6593 run_test 65g "directory setstripe -d"
6594
6595 test_65h() {
6596         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6597
6598         test_mkdir $DIR/$tdir
6599         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6600
6601         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6602                 error "setstripe -S failed"
6603         test_mkdir $DIR/$tdir/dd1
6604         [ $($LFS getstripe -c $DIR/$tdir) = $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
6605                 error "stripe info inherit failed"
6606 }
6607 run_test 65h "directory stripe info inherit ===================="
6608
6609 test_65i() {
6610         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6611
6612         save_layout_restore_at_exit $MOUNT
6613
6614         # bug6367: set non-default striping on root directory
6615         $LFS setstripe -S 65536 -c -1 $MOUNT || error "error setting stripe"
6616
6617         # bug12836: getstripe on -1 default directory striping
6618         $LFS getstripe $MOUNT || error "getstripe $MOUNT failed"
6619
6620         # bug12836: getstripe -v on -1 default directory striping
6621         $LFS getstripe -v $MOUNT || error "getstripe -v $MOUNT failed"
6622
6623         # bug12836: new find on -1 default directory striping
6624         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
6625 }
6626 run_test 65i "various tests to set root directory striping"
6627
6628 test_65j() { # bug6367
6629         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6630
6631         sync; sleep 1
6632
6633         # if we aren't already remounting for each test, do so for this test
6634         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
6635                 cleanup || error "failed to unmount"
6636                 setup
6637         fi
6638
6639         save_layout_restore_at_exit $MOUNT
6640
6641         $SETSTRIPE -d $MOUNT || error "setstripe failed"
6642 }
6643 run_test 65j "set default striping on root directory (bug 6367)="
6644
6645 cleaup_65k() {
6646         rm -rf $DIR/$tdir
6647         wait_delete_completed
6648         do_facet $SINGLEMDS "lctl set_param -n \
6649                 osp.$ost*MDT0000.max_create_count=$max_count"
6650         do_facet $SINGLEMDS "lctl set_param -n \
6651                 osp.$ost*MDT0000.create_count=$count"
6652         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
6653         echo $INACTIVE_OSC "is Activate"
6654
6655         wait_osc_import_state mds ost$ostnum FULL
6656 }
6657
6658 test_65k() { # bug11679
6659         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6660         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
6661         remote_mds_nodsh && skip "remote MDS with nodsh"
6662
6663         local disable_precreate=true
6664         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.8.54) ] &&
6665                 disable_precreate=false
6666
6667         echo "Check OST status: "
6668         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
6669                 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
6670
6671         for OSC in $MDS_OSCS; do
6672                 echo $OSC "is active"
6673                 do_facet $SINGLEMDS lctl --device %$OSC activate
6674         done
6675
6676         for INACTIVE_OSC in $MDS_OSCS; do
6677                 local ost=$(osc_to_ost $INACTIVE_OSC)
6678                 local ostnum=$(do_facet $SINGLEMDS lctl get_param -n \
6679                                lov.*md*.target_obd |
6680                                awk -F: /$ost/'{ print $1 }' | head -n 1)
6681
6682                 mkdir -p $DIR/$tdir
6683                 $SETSTRIPE -i $ostnum -c 1 $DIR/$tdir
6684                 createmany -o $DIR/$tdir/$tfile.$ostnum. 1000
6685
6686                 echo "Deactivate: " $INACTIVE_OSC
6687                 do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
6688
6689                 local count=$(do_facet $SINGLEMDS "lctl get_param -n \
6690                               osp.$ost*MDT0000.create_count")
6691                 local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
6692                                   osp.$ost*MDT0000.max_create_count")
6693                 $disable_precreate &&
6694                         do_facet $SINGLEMDS "lctl set_param -n \
6695                                 osp.$ost*MDT0000.max_create_count=0"
6696
6697                 for idx in $(seq 0 $((OSTCOUNT - 1))); do
6698                         [ -f $DIR/$tdir/$idx ] && continue
6699                         echo "$SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx"
6700                         $SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx ||
6701                                 { cleanup_65k;
6702                                   error "setstripe $idx should succeed"; }
6703                         rm -f $DIR/$tdir/$idx || error "rm $idx failed"
6704                 done
6705                 unlinkmany $DIR/$tdir/$tfile.$ostnum. 1000
6706                 rmdir $DIR/$tdir
6707
6708                 do_facet $SINGLEMDS "lctl set_param -n \
6709                         osp.$ost*MDT0000.max_create_count=$max_count"
6710                 do_facet $SINGLEMDS "lctl set_param -n \
6711                         osp.$ost*MDT0000.create_count=$count"
6712                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
6713                 echo $INACTIVE_OSC "is Activate"
6714
6715                 wait_osc_import_state mds ost$ostnum FULL
6716         done
6717 }
6718 run_test 65k "validate manual striping works properly with deactivated OSCs"
6719
6720 test_65l() { # bug 12836
6721         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6722
6723         test_mkdir -p $DIR/$tdir/test_dir
6724         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
6725         $LFS find -mtime -1 $DIR/$tdir >/dev/null
6726 }
6727 run_test 65l "lfs find on -1 stripe dir ========================"
6728
6729 test_65m() {
6730         local layout=$(save_layout $MOUNT)
6731         $RUNAS $SETSTRIPE -c 2 $MOUNT && {
6732                 restore_layout $MOUNT $layout
6733                 error "setstripe should fail by non-root users"
6734         }
6735         true
6736 }
6737 run_test 65m "normal user can't set filesystem default stripe"
6738
6739 # bug 2543 - update blocks count on client
6740 test_66() {
6741         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6742
6743         COUNT=${COUNT:-8}
6744         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
6745         sync; sync_all_data; sync; sync_all_data
6746         cancel_lru_locks osc
6747         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
6748         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
6749 }
6750 run_test 66 "update inode blocks count on client ==============="
6751
6752 meminfo() {
6753         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
6754 }
6755
6756 swap_used() {
6757         swapon -s | awk '($1 == "'$1'") { print $4 }'
6758 }
6759
6760 # bug5265, obdfilter oa2dentry return -ENOENT
6761 # #define OBD_FAIL_SRV_ENOENT 0x217
6762 test_69() {
6763         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6764         remote_ost_nodsh && skip "remote OST with nodsh"
6765
6766         f="$DIR/$tfile"
6767         $SETSTRIPE -c 1 -i 0 $f
6768
6769         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
6770
6771         do_facet ost1 lctl set_param fail_loc=0x217
6772         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
6773         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
6774
6775         do_facet ost1 lctl set_param fail_loc=0
6776         $DIRECTIO write $f 0 2 || error "write error"
6777
6778         cancel_lru_locks osc
6779         $DIRECTIO read $f 0 1 || error "read error"
6780
6781         do_facet ost1 lctl set_param fail_loc=0x217
6782         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
6783
6784         do_facet ost1 lctl set_param fail_loc=0
6785         rm -f $f
6786 }
6787 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
6788
6789 test_71() {
6790         test_mkdir $DIR/$tdir
6791         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
6792         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
6793 }
6794 run_test 71 "Running dbench on lustre (don't segment fault) ===="
6795
6796 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
6797         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6798         [ "$RUNAS_ID" = "$UID" ] &&
6799                 skip_env "RUNAS_ID = UID = $UID -- skipping"
6800         # Check that testing environment is properly set up. Skip if not
6801         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS ||
6802                 skip_env "User $RUNAS_ID does not exist - skipping"
6803
6804         touch $DIR/$tfile
6805         chmod 777 $DIR/$tfile
6806         chmod ug+s $DIR/$tfile
6807         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
6808                 error "$RUNAS dd $DIR/$tfile failed"
6809         # See if we are still setuid/sgid
6810         test -u $DIR/$tfile -o -g $DIR/$tfile &&
6811                 error "S/gid is not dropped on write"
6812         # Now test that MDS is updated too
6813         cancel_lru_locks mdc
6814         test -u $DIR/$tfile -o -g $DIR/$tfile &&
6815                 error "S/gid is not dropped on MDS"
6816         rm -f $DIR/$tfile
6817 }
6818 run_test 72a "Test that remove suid works properly (bug5695) ===="
6819
6820 test_72b() { # bug 24226 -- keep mode setting when size is not changing
6821         local perm
6822
6823         [ "$RUNAS_ID" = "$UID" ] &&
6824                 skip_env "RUNAS_ID = UID = $UID -- skipping"
6825         [ "$RUNAS_ID" -eq 0 ] &&
6826                 skip_env "RUNAS_ID = 0 -- skipping"
6827         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6828         # Check that testing environment is properly set up. Skip if not
6829         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS ||
6830                 skip_env "User $RUNAS_ID does not exist - skipping"
6831
6832         touch $DIR/${tfile}-f{g,u}
6833         test_mkdir $DIR/${tfile}-dg
6834         test_mkdir $DIR/${tfile}-du
6835         chmod 770 $DIR/${tfile}-{f,d}{g,u}
6836         chmod g+s $DIR/${tfile}-{f,d}g
6837         chmod u+s $DIR/${tfile}-{f,d}u
6838         for perm in 777 2777 4777; do
6839                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
6840                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
6841                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
6842                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
6843         done
6844         true
6845 }
6846 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
6847
6848 # bug 3462 - multiple simultaneous MDC requests
6849 test_73() {
6850         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6851
6852         test_mkdir $DIR/d73-1
6853         test_mkdir $DIR/d73-2
6854         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
6855         pid1=$!
6856
6857         lctl set_param fail_loc=0x80000129
6858         $MULTIOP $DIR/d73-1/f73-2 Oc &
6859         sleep 1
6860         lctl set_param fail_loc=0
6861
6862         $MULTIOP $DIR/d73-2/f73-3 Oc &
6863         pid3=$!
6864
6865         kill -USR1 $pid1
6866         wait $pid1 || return 1
6867
6868         sleep 25
6869
6870         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
6871         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
6872         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
6873
6874         rm -rf $DIR/d73-*
6875 }
6876 run_test 73 "multiple MDC requests (should not deadlock)"
6877
6878 test_74a() { # bug 6149, 6184
6879         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6880
6881         touch $DIR/f74a
6882         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
6883         #
6884         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
6885         # will spin in a tight reconnection loop
6886         $LCTL set_param fail_loc=0x8000030e
6887         # get any lock that won't be difficult - lookup works.
6888         ls $DIR/f74a
6889         $LCTL set_param fail_loc=0
6890         rm -f $DIR/f74a
6891         true
6892 }
6893 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
6894
6895 test_74b() { # bug 13310
6896         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6897
6898         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
6899         #
6900         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
6901         # will spin in a tight reconnection loop
6902         $LCTL set_param fail_loc=0x8000030e
6903         # get a "difficult" lock
6904         touch $DIR/f74b
6905         $LCTL set_param fail_loc=0
6906         rm -f $DIR/f74b
6907         true
6908 }
6909 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
6910
6911 test_74c() {
6912         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6913
6914         #define OBD_FAIL_LDLM_NEW_LOCK
6915         $LCTL set_param fail_loc=0x319
6916         touch $DIR/$tfile && error "touch successful"
6917         $LCTL set_param fail_loc=0
6918         true
6919 }
6920 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
6921
6922 num_inodes() {
6923         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
6924 }
6925
6926 test_76() { # Now for bug 20433, added originally in bug 1443
6927         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6928
6929         local CPUS=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
6930
6931         cancel_lru_locks osc
6932         BEFORE_INODES=$(num_inodes)
6933         echo "before inodes: $BEFORE_INODES"
6934         local COUNT=1000
6935         [ "$SLOW" = "no" ] && COUNT=100
6936         for i in $(seq $COUNT); do
6937                 touch $DIR/$tfile
6938                 rm -f $DIR/$tfile
6939         done
6940         cancel_lru_locks osc
6941         AFTER_INODES=$(num_inodes)
6942         echo "after inodes: $AFTER_INODES"
6943         local wait=0
6944         while [[ $((AFTER_INODES-1*${CPUS:-1})) -gt $BEFORE_INODES ]]; do
6945                 sleep 2
6946                 AFTER_INODES=$(num_inodes)
6947                 wait=$((wait+2))
6948                 echo "wait $wait seconds inodes: $AFTER_INODES"
6949                 if [ $wait -gt 30 ]; then
6950                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
6951                 fi
6952         done
6953 }
6954 run_test 76 "confirm clients recycle inodes properly ===="
6955
6956
6957 export ORIG_CSUM=""
6958 set_checksums()
6959 {
6960         # Note: in sptlrpc modes which enable its own bulk checksum, the
6961         # original crc32_le bulk checksum will be automatically disabled,
6962         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
6963         # will be checked by sptlrpc code against sptlrpc bulk checksum.
6964         # In this case set_checksums() will not be no-op, because sptlrpc
6965         # bulk checksum will be enabled all through the test.
6966
6967         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
6968         lctl set_param -n osc.*.checksums $1
6969         return 0
6970 }
6971
6972 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
6973                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
6974 CKSUM_TYPES=${CKSUM_TYPES:-$(lctl get_param -n osc.*osc-[^mM]*.checksum_type |
6975                              tr -d [] | head -n1)}
6976 set_checksum_type()
6977 {
6978         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
6979         log "set checksum type to $1"
6980         return 0
6981 }
6982 F77_TMP=$TMP/f77-temp
6983 F77SZ=8
6984 setup_f77() {
6985         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
6986                 error "error writing to $F77_TMP"
6987 }
6988
6989 test_77a() { # bug 10889
6990         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6991         $GSS && skip_env "could not run with gss"
6992
6993         [ ! -f $F77_TMP ] && setup_f77
6994         set_checksums 1
6995         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
6996         set_checksums 0
6997         rm -f $DIR/$tfile
6998 }
6999 run_test 77a "normal checksum read/write operation"
7000
7001 test_77b() { # bug 10889
7002         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7003         $GSS && skip_env "could not run with gss"
7004
7005         [ ! -f $F77_TMP ] && setup_f77
7006         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7007         $LCTL set_param fail_loc=0x80000409
7008         set_checksums 1
7009
7010         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
7011                 error "dd error: $?"
7012         $LCTL set_param fail_loc=0
7013
7014         for algo in $CKSUM_TYPES; do
7015                 cancel_lru_locks osc
7016                 set_checksum_type $algo
7017                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
7018                 $LCTL set_param fail_loc=0x80000408
7019                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
7020                 $LCTL set_param fail_loc=0
7021         done
7022         set_checksums 0
7023         set_checksum_type $ORIG_CSUM_TYPE
7024         rm -f $DIR/$tfile
7025 }
7026 run_test 77b "checksum error on client write, read"
7027
7028 cleanup_77c() {
7029         trap 0
7030         set_checksums 0
7031         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=0
7032         $check_ost &&
7033                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=0
7034         [ -n "$osc_file_prefix" ] && rm -f ${osc_file_prefix}*
7035         $check_ost && [ -n "$ost_file_prefix" ] &&
7036                 do_facet ost1 rm -f ${ost_file_prefix}\*
7037 }
7038
7039 test_77c() {
7040         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7041         $GSS && skip_env "could not run with gss"
7042         remote_ost_nodsh && skip "remote OST with nodsh"
7043
7044         local bad1
7045         local osc_file_prefix
7046         local osc_file
7047         local check_ost=false
7048         local ost_file_prefix
7049         local ost_file
7050         local orig_cksum
7051         local dump_cksum
7052         local fid
7053
7054         # ensure corruption will occur on first OSS/OST
7055         $LFS setstripe -i 0 $DIR/$tfile
7056
7057         [ ! -f $F77_TMP ] && setup_f77
7058         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
7059                 error "dd write error: $?"
7060         fid=$($LFS path2fid $DIR/$tfile)
7061
7062         if [ $(lustre_version_code ost1) -ge $(version_code 2.9.57) ]
7063         then
7064                 check_ost=true
7065                 ost_file_prefix=$(do_facet ost1 $LCTL get_param -n debug_path)
7066                 ost_file_prefix=${ost_file_prefix}-checksum_dump-ost-\\${fid}
7067         else
7068                 echo "OSS do not support bulk pages dump upon error"
7069         fi
7070
7071         osc_file_prefix=$($LCTL get_param -n debug_path)
7072         osc_file_prefix=${osc_file_prefix}-checksum_dump-osc-\\${fid}
7073
7074         trap cleanup_77c EXIT
7075
7076         set_checksums 1
7077         # enable bulk pages dump upon error on Client
7078         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=1
7079         # enable bulk pages dump upon error on OSS
7080         $check_ost &&
7081                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=1
7082
7083         # flush Client cache to allow next read to reach OSS
7084         cancel_lru_locks osc
7085
7086         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE       0x408
7087         $LCTL set_param fail_loc=0x80000408
7088         dd if=$DIR/$tfile of=/dev/null bs=1M || error "dd read error: $?"
7089         $LCTL set_param fail_loc=0
7090
7091         rm -f $DIR/$tfile
7092
7093         # check cksum dump on Client
7094         osc_file=$(ls ${osc_file_prefix}*)
7095         [ -n "$osc_file" ] || error "no checksum dump file on Client"
7096         # OBD_FAIL_OSC_CHECKSUM_RECEIVE corrupts with "bad1" at start of file
7097         bad1=$(dd if=$osc_file bs=1 count=4 2>/dev/null) || error "dd error: $?"
7098         [ $bad1 == "bad1" ] || error "unexpected corrupt pattern"
7099         orig_cksum=$(dd if=$F77_TMP bs=1 skip=4 count=1048572 2>/dev/null |
7100                      cksum)
7101         dump_cksum=$(dd if=$osc_file bs=1 skip=4 2>/dev/null | cksum)
7102         [[ "$orig_cksum" == "$dump_cksum" ]] ||
7103                 error "dump content does not match on Client"
7104
7105         $check_ost || skip "No need to check cksum dump on OSS"
7106
7107         # check cksum dump on OSS
7108         ost_file=$(do_facet ost1 ls ${ost_file_prefix}\*)
7109         [ -n "$ost_file" ] || error "no checksum dump file on OSS"
7110         orig_cksum=$(dd if=$F77_TMP bs=1048576 count=1 2>/dev/null | cksum)
7111         dump_cksum=$(do_facet ost1 dd if=$ost_file 2>/dev/null \| cksum)
7112         [[ "$orig_cksum" == "$dump_cksum" ]] ||
7113                 error "dump content does not match on OSS"
7114
7115         cleanup_77c
7116 }
7117 run_test 77c "checksum error on client read with debug"
7118
7119 test_77d() { # bug 10889
7120         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7121         $GSS && skip_env "could not run with gss"
7122
7123         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7124         $LCTL set_param fail_loc=0x80000409
7125         set_checksums 1
7126         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
7127                 error "direct write: rc=$?"
7128         $LCTL set_param fail_loc=0
7129         set_checksums 0
7130
7131         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
7132         $LCTL set_param fail_loc=0x80000408
7133         set_checksums 1
7134         cancel_lru_locks osc
7135         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
7136                 error "direct read: rc=$?"
7137         $LCTL set_param fail_loc=0
7138         set_checksums 0
7139 }
7140 run_test 77d "checksum error on OST direct write, read"
7141
7142 test_77f() { # bug 10889
7143         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7144         $GSS && skip_env "could not run with gss"
7145
7146         set_checksums 1
7147         for algo in $CKSUM_TYPES; do
7148                 cancel_lru_locks osc
7149                 set_checksum_type $algo
7150                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7151                 $LCTL set_param fail_loc=0x409
7152                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
7153                         error "direct write succeeded"
7154                 $LCTL set_param fail_loc=0
7155         done
7156         set_checksum_type $ORIG_CSUM_TYPE
7157         set_checksums 0
7158 }
7159 run_test 77f "repeat checksum error on write (expect error)"
7160
7161 test_77g() { # bug 10889
7162         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7163         $GSS && skip_env "could not run with gss"
7164         remote_ost_nodsh && skip "remote OST with nodsh"
7165
7166         [ ! -f $F77_TMP ] && setup_f77
7167
7168         local file=$DIR/$tfile
7169         stack_trap "rm -f $file" EXIT
7170
7171         $SETSTRIPE -c 1 -i 0 $file
7172         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
7173         do_facet ost1 lctl set_param fail_loc=0x8000021a
7174         set_checksums 1
7175         dd if=$F77_TMP of=$file bs=1M count=$F77SZ ||
7176                 error "write error: rc=$?"
7177         do_facet ost1 lctl set_param fail_loc=0
7178         set_checksums 0
7179
7180         cancel_lru_locks osc
7181         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
7182         do_facet ost1 lctl set_param fail_loc=0x8000021b
7183         set_checksums 1
7184         cmp $F77_TMP $file || error "file compare failed"
7185         do_facet ost1 lctl set_param fail_loc=0
7186         set_checksums 0
7187 }
7188 run_test 77g "checksum error on OST write, read"
7189
7190 test_77k() { # LU-10906
7191         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7192         $GSS && skip_env "could not run with gss"
7193
7194         local cksum_param="osc.$FSNAME*.checksums"
7195         local get_checksum="$LCTL get_param -n $cksum_param | head -n1"
7196         local checksum
7197         local i
7198
7199         [ "$ORIG_CSUM" ] || ORIG_CSUM=$(eval $get_checksum)
7200         stack_trap "wait_update $HOSTNAME '$get_checksum' $ORIG_CSUM" EXIT
7201         stack_trap "do_facet mgs $LCTL set_param -P $cksum_param=$ORIG_CSUM" \
7202                 EXIT
7203
7204         for i in 0 1; do
7205                 do_facet mgs $LCTL set_param -P $cksum_param=$i ||
7206                         error "failed to set checksum=$i on MGS"
7207                 wait_update $HOSTNAME "$get_checksum" $i
7208                 #remount
7209                 echo "remount client, checksum should be $i"
7210                 remount_client $MOUNT || "failed to remount client"
7211                 checksum=$(eval $get_checksum)
7212                 [ $checksum -eq $i ] || error "checksum($checksum) != $i"
7213         done
7214
7215         for opt in "checksum" "nochecksum"; do
7216                 #remount with mount option
7217                 echo "remount client with option $opt, checksum should be $i"
7218                 umount_client $MOUNT || "failed to umount client"
7219                 mount_client $MOUNT "$MOUNT_OPTS,$opt" ||
7220                         "failed to mount client with option '$opt'"
7221                 checksum=$(eval $get_checksum)
7222                 [ $checksum -eq $i ] || error "checksum($checksum) != $i"
7223                 i=$((i - 1))
7224         done
7225
7226         remount_client $MOUNT || "failed to remount client"
7227 }
7228 run_test 77k "enable/disable checksum correctly"
7229
7230 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
7231 rm -f $F77_TMP
7232 unset F77_TMP
7233
7234 cleanup_test_78() {
7235         trap 0
7236         rm -f $DIR/$tfile
7237 }
7238
7239 test_78() { # bug 10901
7240         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7241         remote_ost || skip_env "local OST"
7242
7243         NSEQ=5
7244         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
7245         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
7246         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
7247         echo "MemTotal: $MEMTOTAL"
7248
7249         # reserve 256MB of memory for the kernel and other running processes,
7250         # and then take 1/2 of the remaining memory for the read/write buffers.
7251         if [ $MEMTOTAL -gt 512 ] ;then
7252                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
7253         else
7254                 # for those poor memory-starved high-end clusters...
7255                 MEMTOTAL=$((MEMTOTAL / 2))
7256         fi
7257         echo "Mem to use for directio: $MEMTOTAL"
7258
7259         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
7260         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
7261         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
7262         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
7263                 head -n1)
7264         echo "Smallest OST: $SMALLESTOST"
7265         [[ $SMALLESTOST -lt 10240 ]] &&
7266                 skip "too small OSTSIZE, useless to run large O_DIRECT test"
7267
7268         trap cleanup_test_78 EXIT
7269
7270         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
7271                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
7272
7273         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
7274         echo "File size: $F78SIZE"
7275         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
7276         for i in $(seq 1 $NSEQ); do
7277                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
7278                 echo directIO rdwr round $i of $NSEQ
7279                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
7280         done
7281
7282         cleanup_test_78
7283 }
7284 run_test 78 "handle large O_DIRECT writes correctly ============"
7285
7286 test_79() { # bug 12743
7287         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7288
7289         wait_delete_completed
7290
7291         BKTOTAL=$(calc_osc_kbytes kbytestotal)
7292         BKFREE=$(calc_osc_kbytes kbytesfree)
7293         BKAVAIL=$(calc_osc_kbytes kbytesavail)
7294
7295         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
7296         DFTOTAL=`echo $STRING | cut -d, -f1`
7297         DFUSED=`echo $STRING  | cut -d, -f2`
7298         DFAVAIL=`echo $STRING | cut -d, -f3`
7299         DFFREE=$(($DFTOTAL - $DFUSED))
7300
7301         ALLOWANCE=$((64 * $OSTCOUNT))
7302
7303         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
7304            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
7305                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
7306         fi
7307         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
7308            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
7309                 error "df free($DFFREE) mismatch OST free($BKFREE)"
7310         fi
7311         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
7312            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
7313                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
7314         fi
7315 }
7316 run_test 79 "df report consistency check ======================="
7317
7318 test_80() { # bug 10718
7319         remote_ost_nodsh && skip "remote OST with nodsh"
7320         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7321
7322         # relax strong synchronous semantics for slow backends like ZFS
7323         local soc="obdfilter.*.sync_on_lock_cancel"
7324         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
7325         local hosts=
7326         if [ "$soc_old" != "never" ] &&
7327                 [ "$(facet_fstype ost1)" != "ldiskfs" ]; then
7328                         hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
7329                                 facet_active_host $host; done | sort -u)
7330                         do_nodes $hosts lctl set_param $soc=never
7331         fi
7332
7333         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
7334         sync; sleep 1; sync
7335         local BEFORE=`date +%s`
7336         cancel_lru_locks osc
7337         local AFTER=`date +%s`
7338         local DIFF=$((AFTER-BEFORE))
7339         if [ $DIFF -gt 1 ] ; then
7340                 error "elapsed for 1M@1T = $DIFF"
7341         fi
7342
7343         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
7344
7345         rm -f $DIR/$tfile
7346 }
7347 run_test 80 "Page eviction is equally fast at high offsets too  ===="
7348
7349 test_81a() { # LU-456
7350         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7351         remote_ost_nodsh && skip "remote OST with nodsh"
7352
7353         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
7354         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
7355         do_facet ost1 lctl set_param fail_loc=0x80000228
7356
7357         # write should trigger a retry and success
7358         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
7359         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7360         RC=$?
7361         if [ $RC -ne 0 ] ; then
7362                 error "write should success, but failed for $RC"
7363         fi
7364 }
7365 run_test 81a "OST should retry write when get -ENOSPC ==============="
7366
7367 test_81b() { # LU-456
7368         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7369         remote_ost_nodsh && skip "remote OST with nodsh"
7370
7371         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
7372         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
7373         do_facet ost1 lctl set_param fail_loc=0x228
7374
7375         # write should retry several times and return -ENOSPC finally
7376         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
7377         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7378         RC=$?
7379         ENOSPC=28
7380         if [ $RC -ne $ENOSPC ] ; then
7381                 error "dd should fail for -ENOSPC, but succeed."
7382         fi
7383 }
7384 run_test 81b "OST should return -ENOSPC when retry still fails ======="
7385
7386 test_82() { # LU-1031
7387         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
7388         local gid1=14091995
7389         local gid2=16022000
7390
7391         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
7392         local MULTIPID1=$!
7393         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
7394         local MULTIPID2=$!
7395         kill -USR1 $MULTIPID2
7396         sleep 2
7397         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
7398                 error "First grouplock does not block second one"
7399         else
7400                 echo "Second grouplock blocks first one"
7401         fi
7402         kill -USR1 $MULTIPID1
7403         wait $MULTIPID1
7404         wait $MULTIPID2
7405 }
7406 run_test 82 "Basic grouplock test"
7407
7408 test_83() {
7409         local sfile="/boot/System.map-$(uname -r)"
7410         [ ! -f $sfile ] && skip "No $sfile found"
7411         # define OBD_FAIL_LLITE_PTASK_IO_FAIL 0x140d
7412         $LCTL set_param fail_loc=0x140d
7413         cp $sfile $DIR/$tfile || error "write failed"
7414         diff -c $sfile $DIR/$tfile || error "files are different"
7415         $LCTL set_param fail_loc=0
7416         rm -f $DIR/$tfile
7417 }
7418 run_test 83 "Short write in ptask ==============================="
7419
7420 test_99() {
7421         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs"
7422
7423         test_mkdir $DIR/$tdir.cvsroot
7424         chown $RUNAS_ID $DIR/$tdir.cvsroot
7425
7426         cd $TMP
7427         $RUNAS cvs -d $DIR/$tdir.cvsroot init || error "cvs init failed"
7428
7429         cd /etc/init.d
7430         # some versions of cvs import exit(1) when asked to import links or
7431         # files they can't read.  ignore those files.
7432         local toignore=$(find . -type l -printf '-I %f\n' -o \
7433                          ! -perm /4 -printf '-I %f\n')
7434         $RUNAS cvs -d $DIR/$tdir.cvsroot import -m "nomesg" $toignore \
7435                 $tdir.reposname vtag rtag
7436
7437         cd $DIR
7438         test_mkdir $DIR/$tdir.reposname
7439         chown $RUNAS_ID $DIR/$tdir.reposname
7440         $RUNAS cvs -d $DIR/$tdir.cvsroot co $tdir.reposname
7441
7442         cd $DIR/$tdir.reposname
7443         $RUNAS touch foo99
7444         $RUNAS cvs add -m 'addmsg' foo99
7445         $RUNAS cvs update
7446         $RUNAS cvs commit -m 'nomsg' foo99
7447         rm -fr $DIR/$tdir.cvsroot
7448 }
7449 run_test 99 "cvs strange file/directory operations"
7450
7451 test_100() {
7452         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7453         [[ "$NETTYPE" =~ tcp ]] ||
7454                 skip_env "TCP secure port test, not useful for NETTYPE=$NETTYPE"
7455         remote_ost_nodsh && skip "remote OST with nodsh"
7456         remote_mds_nodsh && skip "remote MDS with nodsh"
7457         remote_servers ||
7458                 skip "useless for local single node setup"
7459
7460         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
7461                 [ "$PROT" != "tcp" ] && continue
7462                 RPORT=$(echo $REMOTE | cut -d: -f2)
7463                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
7464
7465                 rc=0
7466                 LPORT=`echo $LOCAL | cut -d: -f2`
7467                 if [ $LPORT -ge 1024 ]; then
7468                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
7469                         netstat -tna
7470                         error_exit "local: $LPORT > 1024, remote: $RPORT"
7471                 fi
7472         done
7473         [ "$rc" = 0 ] || error_exit "privileged port not found" )
7474 }
7475 run_test 100 "check local port using privileged port ==========="
7476
7477 function get_named_value()
7478 {
7479     local tag
7480
7481     tag=$1
7482     while read ;do
7483         line=$REPLY
7484         case $line in
7485         $tag*)
7486             echo $line | sed "s/^$tag[ ]*//"
7487             break
7488             ;;
7489         esac
7490     done
7491 }
7492
7493 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
7494                    awk '/^max_cached_mb/ { print $2 }')
7495
7496 cleanup_101a() {
7497         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
7498         trap 0
7499 }
7500
7501 test_101a() {
7502         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7503         [ $MDSCOUNT -ge 2 ] && skip_env "needs < 2 MDTs" #LU-4322
7504
7505         local s
7506         local discard
7507         local nreads=10000
7508         local cache_limit=32
7509
7510         $LCTL set_param -n osc.*-osc*.rpc_stats 0
7511         trap cleanup_101a EXIT
7512         $LCTL set_param -n llite.*.read_ahead_stats 0
7513         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
7514
7515         #
7516         # randomly read 10000 of 64K chunks from file 3x 32MB in size
7517         #
7518         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
7519         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
7520
7521         discard=0
7522         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
7523                 get_named_value 'read but discarded' | cut -d" " -f1); do
7524                         discard=$(($discard + $s))
7525         done
7526         cleanup_101a
7527
7528         if [[ $(($discard * 10)) -gt $nreads ]]; then
7529                 $LCTL get_param osc.*-osc*.rpc_stats
7530                 $LCTL get_param llite.*.read_ahead_stats
7531                 error "too many ($discard) discarded pages"
7532         fi
7533         rm -f $DIR/$tfile || true
7534 }
7535 run_test 101a "check read-ahead for random reads"
7536
7537 setup_test101bc() {
7538         test_mkdir $DIR/$tdir
7539         local STRIPE_SIZE=$1
7540         local FILE_LENGTH=$2
7541         STRIPE_OFFSET=0
7542
7543         local FILE_SIZE_MB=$((FILE_LENGTH / STRIPE_SIZE))
7544
7545         local list=$(comma_list $(osts_nodes))
7546         set_osd_param $list '' read_cache_enable 0
7547         set_osd_param $list '' writethrough_cache_enable 0
7548
7549         trap cleanup_test101bc EXIT
7550         # prepare the read-ahead file
7551         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
7552
7553         dd if=/dev/zero of=$DIR/$tfile bs=$STRIPE_SIZE \
7554                                 count=$FILE_SIZE_MB 2> /dev/null
7555
7556 }
7557
7558 cleanup_test101bc() {
7559         trap 0
7560         rm -rf $DIR/$tdir
7561         rm -f $DIR/$tfile
7562
7563         local list=$(comma_list $(osts_nodes))
7564         set_osd_param $list '' read_cache_enable 1
7565         set_osd_param $list '' writethrough_cache_enable 1
7566 }
7567
7568 calc_total() {
7569         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
7570 }
7571
7572 ra_check_101() {
7573         local READ_SIZE=$1
7574         local STRIPE_SIZE=$2
7575         local FILE_LENGTH=$3
7576         local RA_INC=1048576
7577         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
7578         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
7579                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
7580         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
7581                         get_named_value 'read but discarded' |
7582                         cut -d" " -f1 | calc_total)
7583         if [[ $DISCARD -gt $discard_limit ]]; then
7584                 $LCTL get_param llite.*.read_ahead_stats
7585                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
7586         else
7587                 echo "Read-ahead success for size ${READ_SIZE}"
7588         fi
7589 }
7590
7591 test_101b() {
7592         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7593         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
7594
7595         local STRIPE_SIZE=1048576
7596         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
7597
7598         if [ $SLOW == "yes" ]; then
7599                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
7600         else
7601                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
7602         fi
7603
7604         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
7605
7606         # prepare the read-ahead file
7607         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
7608         cancel_lru_locks osc
7609         for BIDX in 2 4 8 16 32 64 128 256
7610         do
7611                 local BSIZE=$((BIDX*4096))
7612                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
7613                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
7614                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
7615                 $LCTL set_param -n llite.*.read_ahead_stats 0
7616                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
7617                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
7618                 cancel_lru_locks osc
7619                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
7620         done
7621         cleanup_test101bc
7622         true
7623 }
7624 run_test 101b "check stride-io mode read-ahead ================="
7625
7626 test_101c() {
7627         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7628
7629         local STRIPE_SIZE=1048576
7630         local FILE_LENGTH=$((STRIPE_SIZE*100))
7631         local nreads=10000
7632         local osc_rpc_stats
7633
7634         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
7635
7636         cancel_lru_locks osc
7637         $LCTL set_param osc.*.rpc_stats 0
7638         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
7639         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
7640                 local stats=$($LCTL get_param -n $osc_rpc_stats)
7641                 local lines=$(echo "$stats" | awk 'END {print NR;}')
7642                 local size
7643
7644                 if [ $lines -le 20 ]; then
7645                         continue
7646                 fi
7647                 for size in 1 2 4 8; do
7648                         local rpc=$(echo "$stats" |
7649                                     awk '($1 == "'$size':") {print $2; exit; }')
7650                         [ $rpc != 0 ] &&
7651                                 error "Small $((size*4))k read IO $rpc !"
7652                 done
7653                 echo "$osc_rpc_stats check passed!"
7654         done
7655         cleanup_test101bc
7656         true
7657 }
7658 run_test 101c "check stripe_size aligned read-ahead ================="
7659
7660 set_read_ahead() {
7661         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
7662         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
7663 }
7664
7665 test_101d() {
7666         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7667
7668         local file=$DIR/$tfile
7669         local sz_MB=${FILESIZE_101d:-500}
7670         local ra_MB=${READAHEAD_MB:-40}
7671
7672         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
7673         [ $free_MB -lt $sz_MB ] &&
7674                 skip "Need free space ${sz_MB}M, have ${free_MB}M"
7675
7676         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
7677         $SETSTRIPE -c -1 $file || error "setstripe failed"
7678
7679         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
7680         echo Cancel LRU locks on lustre client to flush the client cache
7681         cancel_lru_locks osc
7682
7683         echo Disable read-ahead
7684         local old_READAHEAD=$(set_read_ahead 0)
7685
7686         echo Reading the test file $file with read-ahead disabled
7687         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
7688
7689         echo Cancel LRU locks on lustre client to flush the client cache
7690         cancel_lru_locks osc
7691         echo Enable read-ahead with ${ra_MB}MB
7692         set_read_ahead $ra_MB
7693
7694         echo Reading the test file $file with read-ahead enabled
7695         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
7696
7697         echo "read-ahead disabled time read $raOFF"
7698         echo "read-ahead enabled  time read $raON"
7699
7700         set_read_ahead $old_READAHEAD
7701         rm -f $file
7702         wait_delete_completed
7703
7704         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
7705                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
7706 }
7707 run_test 101d "file read with and without read-ahead enabled"
7708
7709 test_101e() {
7710         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7711
7712         local file=$DIR/$tfile
7713         local size_KB=500  #KB
7714         local count=100
7715         local bsize=1024
7716
7717         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
7718         local need_KB=$((count * size_KB))
7719         [[ $free_KB -le $need_KB ]] &&
7720                 skip_env "Need free space $need_KB, have $free_KB"
7721
7722         echo "Creating $count ${size_KB}K test files"
7723         for ((i = 0; i < $count; i++)); do
7724                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
7725         done
7726
7727         echo "Cancel LRU locks on lustre client to flush the client cache"
7728         cancel_lru_locks $OSC
7729
7730         echo "Reset readahead stats"
7731         $LCTL set_param -n llite.*.read_ahead_stats 0
7732
7733         for ((i = 0; i < $count; i++)); do
7734                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
7735         done
7736
7737         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
7738                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
7739
7740         for ((i = 0; i < $count; i++)); do
7741                 rm -rf $file.$i 2>/dev/null
7742         done
7743
7744         #10000 means 20% reads are missing in readahead
7745         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
7746 }
7747 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
7748
7749 test_101f() {
7750         which iozone || skip_env "no iozone installed"
7751
7752         local old_debug=$($LCTL get_param debug)
7753         old_debug=${old_debug#*=}
7754         $LCTL set_param debug="reada mmap"
7755
7756         # create a test file
7757         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
7758
7759         echo Cancel LRU locks on lustre client to flush the client cache
7760         cancel_lru_locks osc
7761
7762         echo Reset readahead stats
7763         $LCTL set_param -n llite.*.read_ahead_stats 0
7764
7765         echo mmap read the file with small block size
7766         iozone -i 1 -u 1 -l 1 -+n -r 32k -s 128m -B -f $DIR/$tfile \
7767                 > /dev/null 2>&1
7768
7769         echo checking missing pages
7770         $LCTL get_param llite.*.read_ahead_stats
7771         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
7772                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
7773
7774         $LCTL set_param debug="$old_debug"
7775         [ $miss -lt 3 ] || error "misses too much pages ('$miss')!"
7776         rm -f $DIR/$tfile
7777 }
7778 run_test 101f "check mmap read performance"
7779
7780 test_101g_brw_size_test() {
7781         local mb=$1
7782         local pages=$((mb * 1048576 / $(page_size)))
7783         local file=$DIR/$tfile
7784
7785         $LCTL set_param osc.*.max_pages_per_rpc=${mb}M ||
7786                 { error "unable to set max_pages_per_rpc=${mb}M"; return 1; }
7787         for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
7788                 [ $mp -ne $pages ] && error "max_pages_per_rpc $mp != $pages" &&
7789                         return 2
7790         done
7791
7792         stack_trap "rm -f $file" EXIT
7793         $LCTL set_param -n osc.*.rpc_stats=0
7794
7795         # 10 RPCs should be enough for the test
7796         local count=10
7797         dd if=/dev/zero of=$file bs=${mb}M count=$count ||
7798                 { error "dd write ${mb} MB blocks failed"; return 3; }
7799         cancel_lru_locks osc
7800         dd of=/dev/null if=$file bs=${mb}M count=$count ||
7801                 { error "dd write ${mb} MB blocks failed"; return 4; }
7802
7803         # calculate number of full-sized read and write RPCs
7804         rpcs=($($LCTL get_param -n 'osc.*.rpc_stats' |
7805                 sed -n '/pages per rpc/,/^$/p' |
7806                 awk '/'$pages':/ { reads += $2; writes += $6 }; \
7807                 END { print reads,writes }'))
7808         [ ${rpcs[0]} -ne $count ] && error "${rpcs[0]} != $count read RPCs" &&
7809                 return 5
7810         [ ${rpcs[1]} -ne $count ] && error "${rpcs[1]} != $count write RPCs" &&
7811                 return 6
7812
7813         return 0
7814 }
7815
7816 test_101g() {
7817         remote_ost_nodsh && skip "remote OST with nodsh"
7818
7819         local rpcs
7820         local osts=$(get_facets OST)
7821         local list=$(comma_list $(osts_nodes))
7822         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
7823         local brw_size="obdfilter.*.brw_size"
7824         local ostver=$(lustre_version_code ost1)
7825         local cliver=$(lustre_version_code client)
7826
7827         $LFS setstripe -i 0 -c 1 $DIR/$tfile
7828
7829         local orig_mb=$(do_facet ost1 $LCTL get_param -n $brw_size | head -n 1)
7830         if [ $ostver -ge $(version_code 2.8.52) -o \
7831              \( $ostver -ge $(version_code 2.7.17) -a \
7832                 $ostver -lt $(version_code 2.7.50) \) ] &&
7833            [ $cliver -ge $(version_code 2.8.52) -o \
7834              \( $cliver -ge $(version_code 2.7.17) -a \
7835                 $cliver -lt $(version_code 2.7.50) \) ]; then
7836                 [ $ostver -ge $(version_code 2.9.52) ] && suffix="M"
7837                 if [[ $orig_mb -lt 16 ]]; then
7838                         save_lustre_params $osts "$brw_size" > $p
7839                         do_nodes $list $LCTL set_param -n $brw_size=16$suffix ||
7840                                 error "set 16MB RPC size failed"
7841
7842                         echo "remount client to enable new RPC size"
7843                         remount_client $MOUNT || error "remount_client failed"
7844                 fi
7845
7846                 test_101g_brw_size_test 16 || error "16MB RPC test failed"
7847                 # should be able to set brw_size=12, but no rpc_stats for that
7848                 test_101g_brw_size_test 8 || error "8MB RPC test failed"
7849         fi
7850
7851         test_101g_brw_size_test 4 || error "4MB RPC test failed"
7852
7853         if [[ $orig_mb -lt 16 ]]; then
7854                 restore_lustre_params < $p
7855                 remount_client $MOUNT || error "remount_client restore failed"
7856         fi
7857
7858         rm -f $p $DIR/$tfile
7859 }
7860 run_test 101g "Big bulk(4/16 MiB) readahead"
7861
7862 setup_test102() {
7863         test_mkdir $DIR/$tdir
7864         chown $RUNAS_ID $DIR/$tdir
7865         STRIPE_SIZE=65536
7866         STRIPE_OFFSET=1
7867         STRIPE_COUNT=$OSTCOUNT
7868         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
7869
7870         trap cleanup_test102 EXIT
7871         cd $DIR
7872         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
7873         cd $DIR/$tdir
7874         for num in 1 2 3 4; do
7875                 for count in $(seq 1 $STRIPE_COUNT); do
7876                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
7877                                 local size=`expr $STRIPE_SIZE \* $num`
7878                                 local file=file"$num-$idx-$count"
7879                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
7880                         done
7881                 done
7882         done
7883
7884         cd $DIR
7885         $1 tar cf $TMP/f102.tar $tdir --xattrs
7886 }
7887
7888 cleanup_test102() {
7889         trap 0
7890         rm -f $TMP/f102.tar
7891         rm -rf $DIR/d0.sanity/d102
7892 }
7893
7894 test_102a() {
7895         [ "$UID" != 0 ] && skip "must run as root"
7896         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
7897                 skip_env "must have user_xattr"
7898
7899         [ -z "$(which setfattr 2>/dev/null)" ] &&
7900                 skip_env "could not find setfattr"
7901
7902         local testfile=$DIR/$tfile
7903
7904         touch $testfile
7905         echo "set/get xattr..."
7906         setfattr -n trusted.name1 -v value1 $testfile ||
7907                 error "setfattr -n trusted.name1=value1 $testfile failed"
7908         getfattr -n trusted.name1 $testfile 2> /dev/null |
7909           grep "trusted.name1=.value1" ||
7910                 error "$testfile missing trusted.name1=value1"
7911
7912         setfattr -n user.author1 -v author1 $testfile ||
7913                 error "setfattr -n user.author1=author1 $testfile failed"
7914         getfattr -n user.author1 $testfile 2> /dev/null |
7915           grep "user.author1=.author1" ||
7916                 error "$testfile missing trusted.author1=author1"
7917
7918         echo "listxattr..."
7919         setfattr -n trusted.name2 -v value2 $testfile ||
7920                 error "$testfile unable to set trusted.name2"
7921         setfattr -n trusted.name3 -v value3 $testfile ||
7922                 error "$testfile unable to set trusted.name3"
7923         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
7924             grep "trusted.name" | wc -l) -eq 3 ] ||
7925                 error "$testfile missing 3 trusted.name xattrs"
7926
7927         setfattr -n user.author2 -v author2 $testfile ||
7928                 error "$testfile unable to set user.author2"
7929         setfattr -n user.author3 -v author3 $testfile ||
7930                 error "$testfile unable to set user.author3"
7931         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
7932             grep "user.author" | wc -l) -eq 3 ] ||
7933                 error "$testfile missing 3 user.author xattrs"
7934
7935         echo "remove xattr..."
7936         setfattr -x trusted.name1 $testfile ||
7937                 error "$testfile error deleting trusted.name1"
7938         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
7939                 error "$testfile did not delete trusted.name1 xattr"
7940
7941         setfattr -x user.author1 $testfile ||
7942                 error "$testfile error deleting user.author1"
7943         echo "set lustre special xattr ..."
7944         $LFS setstripe -c1 $testfile
7945         local lovea=$(getfattr -n "trusted.lov" -e hex $testfile |
7946                 awk -F "=" '/trusted.lov/ { print $2 }' )
7947         setfattr -n "trusted.lov" -v $lovea $testfile ||
7948                 error "$testfile doesn't ignore setting trusted.lov again"
7949         setfattr -n "trusted.lov" -v "invalid_value" $testfile &&
7950                 error "$testfile allow setting invalid trusted.lov"
7951         rm -f $testfile
7952 }
7953 run_test 102a "user xattr test =================================="
7954
7955 test_102b() {
7956         [ -z "$(which setfattr 2>/dev/null)" ] &&
7957                 skip_env "could not find setfattr"
7958         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
7959
7960         # b10930: get/set/list trusted.lov xattr
7961         echo "get/set/list trusted.lov xattr ..."
7962         local testfile=$DIR/$tfile
7963         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
7964                 error "setstripe failed"
7965         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
7966                 error "getstripe failed"
7967         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
7968                 error "can't get trusted.lov from $testfile"
7969
7970         local testfile2=${testfile}2
7971         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
7972                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
7973
7974         $MCREATE $testfile2
7975         setfattr -n trusted.lov -v $value $testfile2
7976         local stripe_size=$($GETSTRIPE -S $testfile2)
7977         local stripe_count=$($GETSTRIPE -c $testfile2)
7978         [[ $stripe_size -eq 65536 ]] ||
7979                 error "stripe size $stripe_size != 65536"
7980         [[ $stripe_count -eq $STRIPECOUNT ]] ||
7981                 error "stripe count $stripe_count != $STRIPECOUNT"
7982         rm -f $DIR/$tfile
7983 }
7984 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
7985
7986 test_102c() {
7987         [ -z "$(which setfattr 2>/dev/null)" ] &&
7988                 skip_env "could not find setfattr"
7989         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
7990
7991         # b10930: get/set/list lustre.lov xattr
7992         echo "get/set/list lustre.lov xattr ..."
7993         test_mkdir $DIR/$tdir
7994         chown $RUNAS_ID $DIR/$tdir
7995         local testfile=$DIR/$tdir/$tfile
7996         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
7997                 error "setstripe failed"
7998         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
7999                 error "getstripe failed"
8000         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
8001         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
8002
8003         local testfile2=${testfile}2
8004         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
8005                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
8006
8007         $RUNAS $MCREATE $testfile2
8008         $RUNAS setfattr -n lustre.lov -v $value $testfile2
8009         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
8010         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
8011         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
8012         [ $stripe_count -eq $STRIPECOUNT ] ||
8013                 error "stripe count $stripe_count != $STRIPECOUNT"
8014 }
8015 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
8016
8017 compare_stripe_info1() {
8018         local stripe_index_all_zero=true
8019
8020         for num in 1 2 3 4; do
8021                 for count in $(seq 1 $STRIPE_COUNT); do
8022                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
8023                                 local size=$((STRIPE_SIZE * num))
8024                                 local file=file"$num-$offset-$count"
8025                                 stripe_size=$($LFS getstripe -S $PWD/$file)
8026                                 [[ $stripe_size -ne $size ]] &&
8027                                     error "$file: size $stripe_size != $size"
8028                                 stripe_count=$($LFS getstripe -c $PWD/$file)
8029                                 # allow fewer stripes to be created, ORI-601
8030                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
8031                                     error "$file: count $stripe_count != $count"
8032                                 stripe_index=$($LFS getstripe -i $PWD/$file)
8033                                 [[ $stripe_index -ne 0 ]] &&
8034                                         stripe_index_all_zero=false
8035                         done
8036                 done
8037         done
8038         $stripe_index_all_zero &&
8039                 error "all files are being extracted starting from OST index 0"
8040         return 0
8041 }
8042
8043 have_xattrs_include() {
8044         tar --help | grep -q xattrs-include &&
8045                 echo --xattrs-include="lustre.*"
8046 }
8047
8048 test_102d() {
8049         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8050         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8051
8052         XINC=$(have_xattrs_include)
8053         setup_test102
8054         tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
8055         cd $DIR/$tdir/$tdir
8056         compare_stripe_info1
8057 }
8058 run_test 102d "tar restore stripe info from tarfile,not keep osts"
8059
8060 test_102f() {
8061         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8062         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8063
8064         XINC=$(have_xattrs_include)
8065         setup_test102
8066         test_mkdir $DIR/$tdir.restore
8067         cd $DIR
8068         tar cf - --xattrs $tdir | tar xf - \
8069                 -C $DIR/$tdir.restore --xattrs $XINC
8070         cd $DIR/$tdir.restore/$tdir
8071         compare_stripe_info1
8072 }
8073 run_test 102f "tar copy files, not keep osts"
8074
8075 grow_xattr() {
8076         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
8077                 skip "must have user_xattr"
8078         [ -z "$(which setfattr 2>/dev/null)" ] &&
8079                 skip_env "could not find setfattr"
8080         [ -z "$(which getfattr 2>/dev/null)" ] &&
8081                 skip_env "could not find getfattr"
8082
8083         local xsize=${1:-1024}  # in bytes
8084         local file=$DIR/$tfile
8085         local value="$(generate_string $xsize)"
8086         local xbig=trusted.big
8087
8088         touch $file
8089         log "save $xbig on $file"
8090         setfattr -n $xbig -v $value $file ||
8091                 error "saving $xbig on $file failed"
8092
8093         local orig=$(get_xattr_value $xbig $file)
8094         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
8095
8096         local xsml=trusted.sml
8097         log "save $xsml on $file"
8098         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
8099
8100         local new=$(get_xattr_value $xbig $file)
8101         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
8102
8103         log "grow $xsml on $file"
8104         setfattr -n $xsml -v "$value" $file ||
8105                 error "growing $xsml on $file failed"
8106
8107         new=$(get_xattr_value $xbig $file)
8108         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
8109         log "$xbig still valid after growing $xsml"
8110
8111         rm -f $file
8112 }
8113
8114 test_102h() { # bug 15777
8115         grow_xattr 1024
8116 }
8117 run_test 102h "grow xattr from inside inode to external block"
8118
8119 test_102ha() {
8120         large_xattr_enabled || skip_env "large_xattr disabled"
8121
8122         grow_xattr $(max_xattr_size)
8123 }
8124 run_test 102ha "grow xattr from inside inode to external inode"
8125
8126 test_102i() { # bug 17038
8127         [ -z "$(which getfattr 2>/dev/null)" ] &&
8128                 skip "could not find getfattr"
8129
8130         touch $DIR/$tfile
8131         ln -s $DIR/$tfile $DIR/${tfile}link
8132         getfattr -n trusted.lov $DIR/$tfile ||
8133                 error "lgetxattr on $DIR/$tfile failed"
8134         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
8135                 grep -i "no such attr" ||
8136                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
8137         rm -f $DIR/$tfile $DIR/${tfile}link
8138 }
8139 run_test 102i "lgetxattr test on symbolic link ============"
8140
8141 test_102j() {
8142         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8143         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8144
8145         XINC=$(have_xattrs_include)
8146         setup_test102 "$RUNAS"
8147         chown $RUNAS_ID $DIR/$tdir
8148         $RUNAS tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
8149         cd $DIR/$tdir/$tdir
8150         compare_stripe_info1 "$RUNAS"
8151 }
8152 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
8153
8154 test_102k() {
8155         [ -z "$(which setfattr 2>/dev/null)" ] &&
8156                 skip "could not find setfattr"
8157
8158         touch $DIR/$tfile
8159         # b22187 just check that does not crash for regular file.
8160         setfattr -n trusted.lov $DIR/$tfile
8161         # b22187 'setfattr -n trusted.lov' should remove LOV EA for directories
8162         local test_kdir=$DIR/$tdir
8163         test_mkdir $test_kdir
8164         local default_size=$($LFS getstripe -S $test_kdir)
8165         local default_count=$($LFS getstripe -c $test_kdir)
8166         local default_offset=$($LFS getstripe -i $test_kdir)
8167         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
8168                 error 'dir setstripe failed'
8169         setfattr -n trusted.lov $test_kdir
8170         local stripe_size=$($LFS getstripe -S $test_kdir)
8171         local stripe_count=$($LFS getstripe -c $test_kdir)
8172         local stripe_offset=$($LFS getstripe -i $test_kdir)
8173         [ $stripe_size -eq $default_size ] ||
8174                 error "stripe size $stripe_size != $default_size"
8175         [ $stripe_count -eq $default_count ] ||
8176                 error "stripe count $stripe_count != $default_count"
8177         [ $stripe_offset -eq $default_offset ] ||
8178                 error "stripe offset $stripe_offset != $default_offset"
8179         rm -rf $DIR/$tfile $test_kdir
8180 }
8181 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
8182
8183 test_102l() {
8184         [ -z "$(which getfattr 2>/dev/null)" ] &&
8185                 skip "could not find getfattr"
8186
8187         # LU-532 trusted. xattr is invisible to non-root
8188         local testfile=$DIR/$tfile
8189
8190         touch $testfile
8191
8192         echo "listxattr as user..."
8193         chown $RUNAS_ID $testfile
8194         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
8195             grep -q "trusted" &&
8196                 error "$testfile trusted xattrs are user visible"
8197
8198         return 0;
8199 }
8200 run_test 102l "listxattr size test =================================="
8201
8202 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
8203         local path=$DIR/$tfile
8204         touch $path
8205
8206         listxattr_size_check $path || error "listattr_size_check $path failed"
8207 }
8208 run_test 102m "Ensure listxattr fails on small bufffer ========"
8209
8210 cleanup_test102
8211
8212 getxattr() { # getxattr path name
8213         # Return the base64 encoding of the value of xattr name on path.
8214         local path=$1
8215         local name=$2
8216
8217         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
8218         # file: $path
8219         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
8220         #
8221         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
8222
8223         getfattr --absolute-names --encoding=base64 --name=$name $path |
8224                 awk -F= -v name=$name '$1 == name {
8225                         print substr($0, index($0, "=") + 1);
8226         }'
8227 }
8228
8229 test_102n() { # LU-4101 mdt: protect internal xattrs
8230         [ -z "$(which setfattr 2>/dev/null)" ] &&
8231                 skip "could not find setfattr"
8232         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.50) ]
8233         then
8234                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
8235         fi
8236
8237         local file0=$DIR/$tfile.0
8238         local file1=$DIR/$tfile.1
8239         local xattr0=$TMP/$tfile.0
8240         local xattr1=$TMP/$tfile.1
8241         local namelist="lov lma lmv link fid version som hsm"
8242         local name
8243         local value
8244
8245         rm -rf $file0 $file1 $xattr0 $xattr1
8246         touch $file0 $file1
8247
8248         # Get 'before' xattrs of $file1.
8249         getfattr --absolute-names --dump --match=- $file1 > $xattr0
8250
8251         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
8252                 namelist+=" lfsck_namespace"
8253         for name in $namelist; do
8254                 # Try to copy xattr from $file0 to $file1.
8255                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
8256
8257                 setfattr --name=trusted.$name --value="$value" $file1 ||
8258                         error "setxattr 'trusted.$name' failed"
8259
8260                 # Try to set a garbage xattr.
8261                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
8262
8263                 if [[ x$name == "xlov" ]]; then
8264                         setfattr --name=trusted.lov --value="$value" $file1 &&
8265                         error "setxattr invalid 'trusted.lov' success"
8266                 else
8267                         setfattr --name=trusted.$name --value="$value" $file1 ||
8268                                 error "setxattr invalid 'trusted.$name' failed"
8269                 fi
8270
8271                 # Try to remove the xattr from $file1. We don't care if this
8272                 # appears to succeed or fail, we just don't want there to be
8273                 # any changes or crashes.
8274                 setfattr --remove=$trusted.$name $file1 2> /dev/null
8275         done
8276
8277         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.6.50) ]
8278         then
8279                 name="lfsck_ns"
8280                 # Try to copy xattr from $file0 to $file1.
8281                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
8282
8283                 setfattr --name=trusted.$name --value="$value" $file1 ||
8284                         error "setxattr 'trusted.$name' failed"
8285
8286                 # Try to set a garbage xattr.
8287                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
8288
8289                 setfattr --name=trusted.$name --value="$value" $file1 ||
8290                         error "setxattr 'trusted.$name' failed"
8291
8292                 # Try to remove the xattr from $file1. We don't care if this
8293                 # appears to succeed or fail, we just don't want there to be
8294                 # any changes or crashes.
8295                 setfattr --remove=$trusted.$name $file1 2> /dev/null
8296         fi
8297
8298         # Get 'after' xattrs of file1.
8299         getfattr --absolute-names --dump --match=- $file1 > $xattr1
8300
8301         if ! diff $xattr0 $xattr1; then
8302                 error "before and after xattrs of '$file1' differ"
8303         fi
8304
8305         rm -rf $file0 $file1 $xattr0 $xattr1
8306
8307         return 0
8308 }
8309 run_test 102n "silently ignore setxattr on internal trusted xattrs"
8310
8311 test_102p() { # LU-4703 setxattr did not check ownership
8312         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.56) ] &&
8313                 skip "MDS needs to be at least 2.5.56"
8314
8315         local testfile=$DIR/$tfile
8316
8317         touch $testfile
8318
8319         echo "setfacl as user..."
8320         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
8321         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
8322
8323         echo "setfattr as user..."
8324         setfacl -m "u:$RUNAS_ID:---" $testfile
8325         $RUNAS setfattr -x system.posix_acl_access $testfile
8326         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
8327 }
8328 run_test 102p "check setxattr(2) correctly fails without permission"
8329
8330 test_102q() {
8331         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
8332                 skip "MDS needs to be at least 2.6.92"
8333
8334         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
8335 }
8336 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
8337
8338 test_102r() {
8339         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.93) ] &&
8340                 skip "MDS needs to be at least 2.6.93"
8341
8342         touch $DIR/$tfile || error "touch"
8343         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
8344         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
8345         rm $DIR/$tfile || error "rm"
8346
8347         #normal directory
8348         mkdir -p $DIR/$tdir || error "mkdir"
8349         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
8350         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
8351         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
8352                 error "$testfile error deleting user.author1"
8353         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
8354                 grep "user.$(basename $tdir)" &&
8355                 error "$tdir did not delete user.$(basename $tdir)"
8356         rmdir $DIR/$tdir || error "rmdir"
8357
8358         #striped directory
8359         test_mkdir $DIR/$tdir
8360         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
8361         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
8362         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
8363                 error "$testfile error deleting user.author1"
8364         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
8365                 grep "user.$(basename $tdir)" &&
8366                 error "$tdir did not delete user.$(basename $tdir)"
8367         rmdir $DIR/$tdir || error "rm striped dir"
8368 }
8369 run_test 102r "set EAs with empty values"
8370
8371 test_102s() {
8372         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
8373                 skip "MDS needs to be at least 2.11.52"
8374
8375         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
8376
8377         save_lustre_params client "llite.*.xattr_cache" > $save
8378
8379         for cache in 0 1; do
8380                 lctl set_param llite.*.xattr_cache=$cache
8381
8382                 rm -f $DIR/$tfile
8383                 touch $DIR/$tfile || error "touch"
8384                 for prefix in lustre security system trusted user; do
8385                         # Note getxattr() may fail with 'Operation not
8386                         # supported' or 'No such attribute' depending
8387                         # on prefix and cache.
8388                         getfattr -n $prefix.n102s $DIR/$tfile &&
8389                                 error "getxattr '$prefix.n102s' should fail (cache = $cache)"
8390                 done
8391         done
8392
8393         restore_lustre_params < $save
8394 }
8395 run_test 102s "getting nonexistent xattrs should fail"
8396
8397 test_102t() {
8398         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
8399                 skip "MDS needs to be at least 2.11.52"
8400
8401         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
8402
8403         save_lustre_params client "llite.*.xattr_cache" > $save
8404
8405         for cache in 0 1; do
8406                 lctl set_param llite.*.xattr_cache=$cache
8407
8408                 for buf_size in 0 256; do
8409                         rm -f $DIR/$tfile
8410                         touch $DIR/$tfile || error "touch"
8411                         setfattr -n user.multiop $DIR/$tfile
8412                         $MULTIOP $DIR/$tfile oa$buf_size ||
8413                                 error "cannot get zero length xattr value (buf_size = $buf_size)"
8414                 done
8415         done
8416
8417         restore_lustre_params < $save
8418 }
8419 run_test 102t "zero length xattr values handled correctly"
8420
8421 run_acl_subtest()
8422 {
8423     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
8424     return $?
8425 }
8426
8427 test_103a() {
8428         [ "$UID" != 0 ] && skip "must run as root"
8429         $GSS && skip_env "could not run under gss"
8430         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
8431                 skip_env "must have acl enabled"
8432         [ -z "$(which setfacl 2>/dev/null)" ] &&
8433                 skip_env "could not find setfacl"
8434         remote_mds_nodsh && skip "remote MDS with nodsh"
8435
8436         gpasswd -a daemon bin                           # LU-5641
8437         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
8438
8439         declare -a identity_old
8440
8441         for num in $(seq $MDSCOUNT); do
8442                 switch_identity $num true || identity_old[$num]=$?
8443         done
8444
8445         SAVE_UMASK=$(umask)
8446         umask 0022
8447         mkdir -p $DIR/$tdir
8448         cd $DIR/$tdir
8449
8450         echo "performing cp ..."
8451         run_acl_subtest cp || error "run_acl_subtest cp failed"
8452         echo "performing getfacl-noacl..."
8453         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
8454         echo "performing misc..."
8455         run_acl_subtest misc || error  "misc test failed"
8456         echo "performing permissions..."
8457         run_acl_subtest permissions || error "permissions failed"
8458         # LU-1482 mdd: Setting xattr are properly checked with and without ACLs
8459         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.8.55) -o \
8460              \( $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6) -a \
8461              $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.29) \) ]
8462         then
8463                 echo "performing permissions xattr..."
8464                 run_acl_subtest permissions_xattr ||
8465                         error "permissions_xattr failed"
8466         fi
8467         echo "performing setfacl..."
8468         run_acl_subtest setfacl || error  "setfacl test failed"
8469
8470         # inheritance test got from HP
8471         echo "performing inheritance..."
8472         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
8473         chmod +x make-tree || error "chmod +x failed"
8474         run_acl_subtest inheritance || error "inheritance test failed"
8475         rm -f make-tree
8476
8477         echo "LU-974 ignore umask when acl is enabled..."
8478         run_acl_subtest 974 || error "LU-974 umask test failed"
8479         if [ $MDSCOUNT -ge 2 ]; then
8480                 run_acl_subtest 974_remote ||
8481                         error "LU-974 umask test failed under remote dir"
8482         fi
8483
8484         echo "LU-2561 newly created file is same size as directory..."
8485         if [ $(facet_fstype $SINGLEMDS) != "zfs" ]; then
8486                 run_acl_subtest 2561 || error "LU-2561 test failed"
8487         else
8488                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
8489         fi
8490
8491         run_acl_subtest 4924 || error "LU-4924 test failed"
8492
8493         cd $SAVE_PWD
8494         umask $SAVE_UMASK
8495
8496         for num in $(seq $MDSCOUNT); do
8497                 if [ "${identity_old[$num]}" = 1 ]; then
8498                         switch_identity $num false || identity_old[$num]=$?
8499                 fi
8500         done
8501 }
8502 run_test 103a "acl test"
8503
8504 test_103b() {
8505         local U
8506
8507         for U in {0..511}; do
8508                 {
8509                 local O=$(printf "%04o" $U)
8510
8511                 umask $(printf "%04o" $((511 ^ $O)))
8512                 $LFS setstripe -c 1 $DIR/$tfile.s$O
8513                 local S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.s$O))
8514
8515                 (( $S == ($O & 0666) )) ||
8516                         error "lfs setstripe $DIR/$tfile.s$O '$S' != '$O'"
8517
8518                 $LFS setstripe -E16M -c 1 -E1G -S4M $DIR/$tfile.p$O
8519                 S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.p$O))
8520                 (( $S == ($O & 0666) )) ||
8521                         error "lfs setstripe -E $DIR/$tfile.p$O '$S' != '$O'"
8522
8523                 $LFS setstripe -N2 -c 1 $DIR/$tfile.m$O
8524                 S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.m$O))
8525                 (( $S == ($O & 0666) )) ||
8526                         error "lfs setstripe -N2 $DIR/$tfile.m$O '$S' != '$O'"
8527                 rm -f $DIR/$tfile.[smp]$0
8528                 } &
8529         done
8530         wait
8531 }
8532 run_test 103b "umask lfs setstripe"
8533
8534 test_103c() {
8535         mkdir -p $DIR/$tdir
8536         cp -rp $DIR/$tdir $DIR/$tdir.bak
8537
8538         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
8539                 error "$DIR/$tdir shouldn't contain default ACL"
8540         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
8541                 error "$DIR/$tdir.bak shouldn't contain default ACL"
8542         true
8543 }
8544 run_test 103c "'cp -rp' won't set empty acl"
8545
8546 test_104a() {
8547         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8548
8549         touch $DIR/$tfile
8550         lfs df || error "lfs df failed"
8551         lfs df -ih || error "lfs df -ih failed"
8552         lfs df -h $DIR || error "lfs df -h $DIR failed"
8553         lfs df -i $DIR || error "lfs df -i $DIR failed"
8554         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
8555         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
8556
8557         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
8558         lctl --device %$OSC deactivate
8559         lfs df || error "lfs df with deactivated OSC failed"
8560         lctl --device %$OSC activate
8561         # wait the osc back to normal
8562         wait_osc_import_state client ost FULL
8563
8564         lfs df || error "lfs df with reactivated OSC failed"
8565         rm -f $DIR/$tfile
8566 }
8567 run_test 104a "lfs df [-ih] [path] test ========================="
8568
8569 test_104b() {
8570         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8571         [ $RUNAS_ID -eq $UID ] &&
8572                 skip_env "RUNAS_ID = UID = $UID -- skipping"
8573
8574         chmod 666 /dev/obd
8575         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
8576                         grep "Permission denied" | wc -l)))
8577         if [ $denied_cnt -ne 0 ]; then
8578                 error "lfs check servers test failed"
8579         fi
8580 }
8581 run_test 104b "$RUNAS lfs check servers test ===================="
8582
8583 test_105a() {
8584         # doesn't work on 2.4 kernels
8585         touch $DIR/$tfile
8586         if $(flock_is_enabled); then
8587                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
8588         else
8589                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
8590         fi
8591         rm -f $DIR/$tfile
8592 }
8593 run_test 105a "flock when mounted without -o flock test ========"
8594
8595 test_105b() {
8596         touch $DIR/$tfile
8597         if $(flock_is_enabled); then
8598                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
8599         else
8600                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
8601         fi
8602         rm -f $DIR/$tfile
8603 }
8604 run_test 105b "fcntl when mounted without -o flock test ========"
8605
8606 test_105c() {
8607         touch $DIR/$tfile
8608         if $(flock_is_enabled); then
8609                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
8610         else
8611                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
8612         fi
8613         rm -f $DIR/$tfile
8614 }
8615 run_test 105c "lockf when mounted without -o flock test"
8616
8617 test_105d() { # bug 15924
8618         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8619
8620         test_mkdir $DIR/$tdir
8621         flock_is_enabled || skip_env "mount w/o flock enabled"
8622         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
8623         $LCTL set_param fail_loc=0x80000315
8624         flocks_test 2 $DIR/$tdir
8625 }
8626 run_test 105d "flock race (should not freeze) ========"
8627
8628 test_105e() { # bug 22660 && 22040
8629         flock_is_enabled || skip_env "mount w/o flock enabled"
8630
8631         touch $DIR/$tfile
8632         flocks_test 3 $DIR/$tfile
8633 }
8634 run_test 105e "Two conflicting flocks from same process"
8635
8636 test_106() { #bug 10921
8637         test_mkdir $DIR/$tdir
8638         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
8639         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
8640 }
8641 run_test 106 "attempt exec of dir followed by chown of that dir"
8642
8643 test_107() {
8644         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8645
8646         CDIR=`pwd`
8647         local file=core
8648
8649         cd $DIR
8650         rm -f $file
8651
8652         local save_pattern=$(sysctl -n kernel.core_pattern)
8653         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
8654         sysctl -w kernel.core_pattern=$file
8655         sysctl -w kernel.core_uses_pid=0
8656
8657         ulimit -c unlimited
8658         sleep 60 &
8659         SLEEPPID=$!
8660
8661         sleep 1
8662
8663         kill -s 11 $SLEEPPID
8664         wait $SLEEPPID
8665         if [ -e $file ]; then
8666                 size=`stat -c%s $file`
8667                 [ $size -eq 0 ] && error "Fail to create core file $file"
8668         else
8669                 error "Fail to create core file $file"
8670         fi
8671         rm -f $file
8672         sysctl -w kernel.core_pattern=$save_pattern
8673         sysctl -w kernel.core_uses_pid=$save_uses_pid
8674         cd $CDIR
8675 }
8676 run_test 107 "Coredump on SIG"
8677
8678 test_110() {
8679         test_mkdir $DIR/$tdir
8680         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255)
8681         $LFS mkdir -c $MDSCOUNT $DIR/$tdir/$(str_repeat 'b' 256) &&
8682                 error "mkdir with 256 char should fail, but did not"
8683         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
8684                 error "create with 255 char failed"
8685         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
8686                 error "create with 256 char should fail, but did not"
8687
8688         ls -l $DIR/$tdir
8689         rm -rf $DIR/$tdir
8690 }
8691 run_test 110 "filename length checking"
8692
8693 #
8694 # Purpose: To verify dynamic thread (OSS) creation.
8695 #
8696 test_115() {
8697         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8698         remote_ost_nodsh && skip "remote OST with nodsh"
8699
8700         # Lustre does not stop service threads once they are started.
8701         # Reset number of running threads to default.
8702         stopall
8703         setupall
8704
8705         local OSTIO_pre
8706         local save_params="$TMP/sanity-$TESTNAME.parameters"
8707
8708         # Get ll_ost_io count before I/O
8709         OSTIO_pre=$(do_facet ost1 \
8710                 "$LCTL get_param ost.OSS.ost_io.threads_started | cut -d= -f2")
8711         # Exit if lustre is not running (ll_ost_io not running).
8712         [ -z "$OSTIO_pre" ] && error "no OSS threads"
8713
8714         echo "Starting with $OSTIO_pre threads"
8715         local thread_max=$((OSTIO_pre * 2))
8716         local rpc_in_flight=$((thread_max * 2))
8717         # Number of I/O Process proposed to be started.
8718         local nfiles
8719         local facets=$(get_facets OST)
8720
8721         save_lustre_params client "osc.*OST*.max_rpcs_in_flight" > $save_params
8722         save_lustre_params $facets "ost.OSS.ost_io.threads_max" >> $save_params
8723
8724         # Set in_flight to $rpc_in_flight
8725         $LCTL set_param osc.*OST*.max_rpcs_in_flight=$rpc_in_flight ||
8726                 error "Failed to set max_rpcs_in_flight to $rpc_in_flight"
8727         nfiles=${rpc_in_flight}
8728         # Set ost thread_max to $thread_max
8729         do_facet ost1 "$LCTL set_param ost.OSS.ost_io.threads_max=$thread_max"
8730
8731         # 5 Minutes should be sufficient for max number of OSS
8732         # threads(thread_max) to be created.
8733         local timeout=300
8734
8735         # Start I/O.
8736         local WTL=${WTL:-"$LUSTRE/tests/write_time_limit"}
8737         test_mkdir $DIR/$tdir
8738         for i in $(seq $nfiles); do
8739                 local file=$DIR/$tdir/${tfile}-$i
8740                 $LFS setstripe -c -1 -i 0 $file
8741                 ($WTL $file $timeout)&
8742         done
8743
8744         # I/O Started - Wait for thread_started to reach thread_max or report
8745         # error if thread_started is more than thread_max.
8746         echo "Waiting for thread_started to reach thread_max"
8747         local thread_started=0
8748         local end_time=$((SECONDS + timeout))
8749
8750         while [ $SECONDS -le $end_time ] ; do
8751                 echo -n "."
8752                 # Get ost i/o thread_started count.
8753                 thread_started=$(do_facet ost1 \
8754                         "$LCTL get_param \
8755                         ost.OSS.ost_io.threads_started | cut -d= -f2")
8756                 # Break out if thread_started is equal/greater than thread_max
8757                 if [[ $thread_started -ge $thread_max ]]; then
8758                         echo ll_ost_io thread_started $thread_started, \
8759                                 equal/greater than thread_max $thread_max
8760                         break
8761                 fi
8762                 sleep 1
8763         done
8764
8765         # Cleanup - We have the numbers, Kill i/o jobs if running.
8766         jobcount=($(jobs -p))
8767         for i in $(seq 0 $((${#jobcount[@]}-1)))
8768         do
8769                 kill -9 ${jobcount[$i]}
8770                 if [ $? -ne 0 ] ; then
8771                         echo Warning: \
8772                         Failed to Kill \'WTL\(I/O\)\' with pid ${jobcount[$i]}
8773                 fi
8774         done
8775
8776         # Cleanup files left by WTL binary.
8777         for i in $(seq $nfiles); do
8778                 local file=$DIR/$tdir/${tfile}-$i
8779                 rm -rf $file
8780                 if [ $? -ne 0 ] ; then
8781                         echo "Warning: Failed to delete file $file"
8782                 fi
8783         done
8784
8785         restore_lustre_params <$save_params
8786         rm -f $save_params || echo "Warning: delete file '$save_params' failed"
8787
8788         # Error out if no new thread has started or Thread started is greater
8789         # than thread max.
8790         if [[ $thread_started -le $OSTIO_pre ||
8791                         $thread_started -gt $thread_max ]]; then
8792                 error "ll_ost_io: thread_started $thread_started" \
8793                       "OSTIO_pre $OSTIO_pre, thread_max $thread_max." \
8794                       "No new thread started or thread started greater " \
8795                       "than thread_max."
8796         fi
8797 }
8798 run_test 115 "verify dynamic thread creation===================="
8799
8800 free_min_max () {
8801         wait_delete_completed
8802         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
8803         echo "OST kbytes available: ${AVAIL[@]}"
8804         MAXV=${AVAIL[0]}
8805         MAXI=0
8806         MINV=${AVAIL[0]}
8807         MINI=0
8808         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
8809                 #echo OST $i: ${AVAIL[i]}kb
8810                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
8811                         MAXV=${AVAIL[i]}
8812                         MAXI=$i
8813                 fi
8814                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
8815                         MINV=${AVAIL[i]}
8816                         MINI=$i
8817                 fi
8818         done
8819         echo "Min free space: OST $MINI: $MINV"
8820         echo "Max free space: OST $MAXI: $MAXV"
8821 }
8822
8823 test_116a() { # was previously test_116()
8824         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8825         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8826         remote_mds_nodsh && skip "remote MDS with nodsh"
8827
8828         echo -n "Free space priority "
8829         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
8830                 head -n1
8831         declare -a AVAIL
8832         free_min_max
8833
8834         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip"
8835         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip"
8836         trap simple_cleanup_common EXIT
8837
8838         # Check if we need to generate uneven OSTs
8839         test_mkdir -p $DIR/$tdir/OST${MINI}
8840         local FILL=$((MINV / 4))
8841         local DIFF=$((MAXV - MINV))
8842         local DIFF2=$((DIFF * 100 / MINV))
8843
8844         local threshold=$(do_facet $SINGLEMDS \
8845                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
8846         threshold=${threshold%%%}
8847         echo -n "Check for uneven OSTs: "
8848         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
8849
8850         if [[ $DIFF2 -gt $threshold ]]; then
8851                 echo "ok"
8852                 echo "Don't need to fill OST$MINI"
8853         else
8854                 # generate uneven OSTs. Write 2% over the QOS threshold value
8855                 echo "no"
8856                 DIFF=$((threshold - DIFF2 + 2))
8857                 DIFF2=$((MINV * DIFF / 100))
8858                 echo "Fill $DIFF% remaining space in OST$MINI with ${DIFF2}KB"
8859                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
8860                         error "setstripe failed"
8861                 DIFF=$((DIFF2 / 2048))
8862                 i=0
8863                 while [ $i -lt $DIFF ]; do
8864                         i=$((i + 1))
8865                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
8866                                 bs=2M count=1 2>/dev/null
8867                         echo -n .
8868                 done
8869                 echo .
8870                 sync
8871                 sleep_maxage
8872                 free_min_max
8873         fi
8874
8875         DIFF=$((MAXV - MINV))
8876         DIFF2=$((DIFF * 100 / MINV))
8877         echo -n "diff=$DIFF=$DIFF2% must be > $threshold% for QOS mode..."
8878         if [ $DIFF2 -gt $threshold ]; then
8879                 echo "ok"
8880         else
8881                 echo "failed - QOS mode won't be used"
8882                 simple_cleanup_common
8883                 skip "QOS imbalance criteria not met"
8884         fi
8885
8886         MINI1=$MINI
8887         MINV1=$MINV
8888         MAXI1=$MAXI
8889         MAXV1=$MAXV
8890
8891         # now fill using QOS
8892         $SETSTRIPE -c 1 $DIR/$tdir
8893         FILL=$((FILL / 200))
8894         if [ $FILL -gt 600 ]; then
8895                 FILL=600
8896         fi
8897         echo "writing $FILL files to QOS-assigned OSTs"
8898         i=0
8899         while [ $i -lt $FILL ]; do
8900                 i=$((i + 1))
8901                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
8902                         count=1 2>/dev/null
8903                 echo -n .
8904         done
8905         echo "wrote $i 200k files"
8906         sync
8907         sleep_maxage
8908
8909         echo "Note: free space may not be updated, so measurements might be off"
8910         free_min_max
8911         DIFF2=$((MAXV - MINV))
8912         echo "free space delta: orig $DIFF final $DIFF2"
8913         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
8914         DIFF=$((MINV1 - ${AVAIL[$MINI1]}))
8915         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
8916         DIFF2=$((MAXV1 - ${AVAIL[$MAXI1]}))
8917         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
8918         if [[ $DIFF -gt 0 ]]; then
8919                 FILL=$((DIFF2 * 100 / DIFF - 100))
8920                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
8921         fi
8922
8923         # Figure out which files were written where
8924         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
8925                awk '/'$MINI1': / {print $2; exit}')
8926         echo $UUID
8927         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
8928         echo "$MINC files created on smaller OST $MINI1"
8929         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
8930                awk '/'$MAXI1': / {print $2; exit}')
8931         echo $UUID
8932         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
8933         echo "$MAXC files created on larger OST $MAXI1"
8934         if [[ $MINC -gt 0 ]]; then
8935                 FILL=$((MAXC * 100 / MINC - 100))
8936                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
8937         fi
8938         [[ $MAXC -gt $MINC ]] ||
8939                 error_ignore LU-9 "stripe QOS didn't balance free space"
8940         simple_cleanup_common
8941 }
8942 run_test 116a "stripe QOS: free space balance ==================="
8943
8944 test_116b() { # LU-2093
8945         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8946         remote_mds_nodsh && skip "remote MDS with nodsh"
8947
8948 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
8949         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
8950                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
8951         [ -z "$old_rr" ] && skip "no QOS"
8952         do_facet $SINGLEMDS lctl set_param \
8953                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
8954         mkdir -p $DIR/$tdir
8955         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
8956         createmany -o $DIR/$tdir/f- 20 || error "can't create"
8957         do_facet $SINGLEMDS lctl set_param fail_loc=0
8958         rm -rf $DIR/$tdir
8959         do_facet $SINGLEMDS lctl set_param \
8960                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
8961 }
8962 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
8963
8964 test_117() # bug 10891
8965 {
8966         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8967
8968         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
8969         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
8970         lctl set_param fail_loc=0x21e
8971         > $DIR/$tfile || error "truncate failed"
8972         lctl set_param fail_loc=0
8973         echo "Truncate succeeded."
8974         rm -f $DIR/$tfile
8975 }
8976 run_test 117 "verify osd extend =========="
8977
8978 NO_SLOW_RESENDCOUNT=4
8979 export OLD_RESENDCOUNT=""
8980 set_resend_count () {
8981         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
8982         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
8983         lctl set_param -n $PROC_RESENDCOUNT $1
8984         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
8985 }
8986
8987 # for reduce test_118* time (b=14842)
8988 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
8989
8990 # Reset async IO behavior after error case
8991 reset_async() {
8992         FILE=$DIR/reset_async
8993
8994         # Ensure all OSCs are cleared
8995         $SETSTRIPE -c -1 $FILE
8996         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
8997         sync
8998         rm $FILE
8999 }
9000
9001 test_118a() #bug 11710
9002 {
9003         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9004
9005         reset_async
9006
9007         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9008         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9009         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9010
9011         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9012                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9013                 return 1;
9014         fi
9015         rm -f $DIR/$tfile
9016 }
9017 run_test 118a "verify O_SYNC works =========="
9018
9019 test_118b()
9020 {
9021         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9022         remote_ost_nodsh && skip "remote OST with nodsh"
9023
9024         reset_async
9025
9026         #define OBD_FAIL_SRV_ENOENT 0x217
9027         set_nodes_failloc "$(osts_nodes)" 0x217
9028         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9029         RC=$?
9030         set_nodes_failloc "$(osts_nodes)" 0
9031         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9032         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9033                     grep -c writeback)
9034
9035         if [[ $RC -eq 0 ]]; then
9036                 error "Must return error due to dropped pages, rc=$RC"
9037                 return 1;
9038         fi
9039
9040         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9041                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9042                 return 1;
9043         fi
9044
9045         echo "Dirty pages not leaked on ENOENT"
9046
9047         # Due to the above error the OSC will issue all RPCs syncronously
9048         # until a subsequent RPC completes successfully without error.
9049         $MULTIOP $DIR/$tfile Ow4096yc
9050         rm -f $DIR/$tfile
9051
9052         return 0
9053 }
9054 run_test 118b "Reclaim dirty pages on fatal error =========="
9055
9056 test_118c()
9057 {
9058         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9059
9060         # for 118c, restore the original resend count, LU-1940
9061         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
9062                                 set_resend_count $OLD_RESENDCOUNT
9063         remote_ost_nodsh && skip "remote OST with nodsh"
9064
9065         reset_async
9066
9067         #define OBD_FAIL_OST_EROFS               0x216
9068         set_nodes_failloc "$(osts_nodes)" 0x216
9069
9070         # multiop should block due to fsync until pages are written
9071         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9072         MULTIPID=$!
9073         sleep 1
9074
9075         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
9076                 error "Multiop failed to block on fsync, pid=$MULTIPID"
9077         fi
9078
9079         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9080                     grep -c writeback)
9081         if [[ $WRITEBACK -eq 0 ]]; then
9082                 error "No page in writeback, writeback=$WRITEBACK"
9083         fi
9084
9085         set_nodes_failloc "$(osts_nodes)" 0
9086         wait $MULTIPID
9087         RC=$?
9088         if [[ $RC -ne 0 ]]; then
9089                 error "Multiop fsync failed, rc=$RC"
9090         fi
9091
9092         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9093         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9094                     grep -c writeback)
9095         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9096                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9097         fi
9098
9099         rm -f $DIR/$tfile
9100         echo "Dirty pages flushed via fsync on EROFS"
9101         return 0
9102 }
9103 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
9104
9105 # continue to use small resend count to reduce test_118* time (b=14842)
9106 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
9107
9108 test_118d()
9109 {
9110         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9111         remote_ost_nodsh && skip "remote OST with nodsh"
9112
9113         reset_async
9114
9115         #define OBD_FAIL_OST_BRW_PAUSE_BULK
9116         set_nodes_failloc "$(osts_nodes)" 0x214
9117         # multiop should block due to fsync until pages are written
9118         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9119         MULTIPID=$!
9120         sleep 1
9121
9122         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
9123                 error "Multiop failed to block on fsync, pid=$MULTIPID"
9124         fi
9125
9126         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9127                     grep -c writeback)
9128         if [[ $WRITEBACK -eq 0 ]]; then
9129                 error "No page in writeback, writeback=$WRITEBACK"
9130         fi
9131
9132         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
9133         set_nodes_failloc "$(osts_nodes)" 0
9134
9135         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9136         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9137                     grep -c writeback)
9138         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9139                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9140         fi
9141
9142         rm -f $DIR/$tfile
9143         echo "Dirty pages gaurenteed flushed via fsync"
9144         return 0
9145 }
9146 run_test 118d "Fsync validation inject a delay of the bulk =========="
9147
9148 test_118f() {
9149         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9150
9151         reset_async
9152
9153         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
9154         lctl set_param fail_loc=0x8000040a
9155
9156         # Should simulate EINVAL error which is fatal
9157         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9158         RC=$?
9159         if [[ $RC -eq 0 ]]; then
9160                 error "Must return error due to dropped pages, rc=$RC"
9161         fi
9162
9163         lctl set_param fail_loc=0x0
9164
9165         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9166         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9167         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9168                     grep -c writeback)
9169         if [[ $LOCKED -ne 0 ]]; then
9170                 error "Locked pages remain in cache, locked=$LOCKED"
9171         fi
9172
9173         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9174                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9175         fi
9176
9177         rm -f $DIR/$tfile
9178         echo "No pages locked after fsync"
9179
9180         reset_async
9181         return 0
9182 }
9183 run_test 118f "Simulate unrecoverable OSC side error =========="
9184
9185 test_118g() {
9186         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9187
9188         reset_async
9189
9190         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
9191         lctl set_param fail_loc=0x406
9192
9193         # simulate local -ENOMEM
9194         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9195         RC=$?
9196
9197         lctl set_param fail_loc=0
9198         if [[ $RC -eq 0 ]]; then
9199                 error "Must return error due to dropped pages, rc=$RC"
9200         fi
9201
9202         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9203         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9204         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9205                         grep -c writeback)
9206         if [[ $LOCKED -ne 0 ]]; then
9207                 error "Locked pages remain in cache, locked=$LOCKED"
9208         fi
9209
9210         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9211                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9212         fi
9213
9214         rm -f $DIR/$tfile
9215         echo "No pages locked after fsync"
9216
9217         reset_async
9218         return 0
9219 }
9220 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
9221
9222 test_118h() {
9223         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9224         remote_ost_nodsh && skip "remote OST with nodsh"
9225
9226         reset_async
9227
9228         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9229         set_nodes_failloc "$(osts_nodes)" 0x20e
9230         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
9231         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9232         RC=$?
9233
9234         set_nodes_failloc "$(osts_nodes)" 0
9235         if [[ $RC -eq 0 ]]; then
9236                 error "Must return error due to dropped pages, rc=$RC"
9237         fi
9238
9239         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9240         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9241         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9242                     grep -c writeback)
9243         if [[ $LOCKED -ne 0 ]]; then
9244                 error "Locked pages remain in cache, locked=$LOCKED"
9245         fi
9246
9247         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9248                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9249         fi
9250
9251         rm -f $DIR/$tfile
9252         echo "No pages locked after fsync"
9253
9254         return 0
9255 }
9256 run_test 118h "Verify timeout in handling recoverables errors  =========="
9257
9258 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
9259
9260 test_118i() {
9261         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9262         remote_ost_nodsh && skip "remote OST with nodsh"
9263
9264         reset_async
9265
9266         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9267         set_nodes_failloc "$(osts_nodes)" 0x20e
9268
9269         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
9270         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9271         PID=$!
9272         sleep 5
9273         set_nodes_failloc "$(osts_nodes)" 0
9274
9275         wait $PID
9276         RC=$?
9277         if [[ $RC -ne 0 ]]; then
9278                 error "got error, but should be not, rc=$RC"
9279         fi
9280
9281         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9282         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9283         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9284         if [[ $LOCKED -ne 0 ]]; then
9285                 error "Locked pages remain in cache, locked=$LOCKED"
9286         fi
9287
9288         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9289                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9290         fi
9291
9292         rm -f $DIR/$tfile
9293         echo "No pages locked after fsync"
9294
9295         return 0
9296 }
9297 run_test 118i "Fix error before timeout in recoverable error  =========="
9298
9299 [ "$SLOW" = "no" ] && set_resend_count 4
9300
9301 test_118j() {
9302         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9303         remote_ost_nodsh && skip "remote OST with nodsh"
9304
9305         reset_async
9306
9307         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
9308         set_nodes_failloc "$(osts_nodes)" 0x220
9309
9310         # return -EIO from OST
9311         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9312         RC=$?
9313         set_nodes_failloc "$(osts_nodes)" 0x0
9314         if [[ $RC -eq 0 ]]; then
9315                 error "Must return error due to dropped pages, rc=$RC"
9316         fi
9317
9318         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9319         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9320         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9321         if [[ $LOCKED -ne 0 ]]; then
9322                 error "Locked pages remain in cache, locked=$LOCKED"
9323         fi
9324
9325         # in recoverable error on OST we want resend and stay until it finished
9326         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9327                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9328         fi
9329
9330         rm -f $DIR/$tfile
9331         echo "No pages locked after fsync"
9332
9333         return 0
9334 }
9335 run_test 118j "Simulate unrecoverable OST side error =========="
9336
9337 test_118k()
9338 {
9339         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9340         remote_ost_nodsh && skip "remote OSTs with nodsh"
9341
9342         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9343         set_nodes_failloc "$(osts_nodes)" 0x20e
9344         test_mkdir $DIR/$tdir
9345
9346         for ((i=0;i<10;i++)); do
9347                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
9348                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
9349                 SLEEPPID=$!
9350                 sleep 0.500s
9351                 kill $SLEEPPID
9352                 wait $SLEEPPID
9353         done
9354
9355         set_nodes_failloc "$(osts_nodes)" 0
9356         rm -rf $DIR/$tdir
9357 }
9358 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
9359
9360 test_118l() # LU-646
9361 {
9362         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9363
9364         test_mkdir $DIR/$tdir
9365         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
9366         rm -rf $DIR/$tdir
9367 }
9368 run_test 118l "fsync dir"
9369
9370 test_118m() # LU-3066
9371 {
9372         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9373
9374         test_mkdir $DIR/$tdir
9375         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
9376         rm -rf $DIR/$tdir
9377 }
9378 run_test 118m "fdatasync dir ========="
9379
9380 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
9381
9382 test_118n()
9383 {
9384         local begin
9385         local end
9386
9387         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9388         remote_ost_nodsh && skip "remote OSTs with nodsh"
9389
9390         # Sleep to avoid a cached response.
9391         #define OBD_STATFS_CACHE_SECONDS 1
9392         sleep 2
9393
9394         # Inject a 10 second delay in the OST_STATFS handler.
9395         #define OBD_FAIL_OST_STATFS_DELAY 0x242
9396         set_nodes_failloc "$(osts_nodes)" 0x242
9397
9398         begin=$SECONDS
9399         stat --file-system $MOUNT > /dev/null
9400         end=$SECONDS
9401
9402         set_nodes_failloc "$(osts_nodes)" 0
9403
9404         if ((end - begin > 20)); then
9405             error "statfs took $((end - begin)) seconds, expected 10"
9406         fi
9407 }
9408 run_test 118n "statfs() sends OST_STATFS requests in parallel"
9409
9410 test_119a() # bug 11737
9411 {
9412         BSIZE=$((512 * 1024))
9413         directio write $DIR/$tfile 0 1 $BSIZE
9414         # We ask to read two blocks, which is more than a file size.
9415         # directio will indicate an error when requested and actual
9416         # sizes aren't equeal (a normal situation in this case) and
9417         # print actual read amount.
9418         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
9419         if [ "$NOB" != "$BSIZE" ]; then
9420                 error "read $NOB bytes instead of $BSIZE"
9421         fi
9422         rm -f $DIR/$tfile
9423 }
9424 run_test 119a "Short directIO read must return actual read amount"
9425
9426 test_119b() # bug 11737
9427 {
9428         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
9429
9430         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
9431         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
9432         sync
9433         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) ||
9434                 error "direct read failed"
9435         rm -f $DIR/$tfile
9436 }
9437 run_test 119b "Sparse directIO read must return actual read amount"
9438
9439 test_119c() # bug 13099
9440 {
9441         BSIZE=1048576
9442         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
9443         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
9444         rm -f $DIR/$tfile
9445 }
9446 run_test 119c "Testing for direct read hitting hole"
9447
9448 test_119d() # bug 15950
9449 {
9450         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9451
9452         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
9453         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
9454         BSIZE=1048576
9455         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
9456         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
9457         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
9458         lctl set_param fail_loc=0x40d
9459         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
9460         pid_dio=$!
9461         sleep 1
9462         cat $DIR/$tfile > /dev/null &
9463         lctl set_param fail_loc=0
9464         pid_reads=$!
9465         wait $pid_dio
9466         log "the DIO writes have completed, now wait for the reads (should not block very long)"
9467         sleep 2
9468         [ -n "`ps h -p $pid_reads -o comm`" ] && \
9469         error "the read rpcs have not completed in 2s"
9470         rm -f $DIR/$tfile
9471         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
9472 }
9473 run_test 119d "The DIO path should try to send a new rpc once one is completed"
9474
9475 test_120a() {
9476         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9477         remote_mds_nodsh && skip "remote MDS with nodsh"
9478         test_mkdir $DIR/$tdir
9479         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9480                 skip_env "no early lock cancel on server"
9481
9482         lru_resize_disable mdc
9483         lru_resize_disable osc
9484         cancel_lru_locks mdc
9485         # asynchronous object destroy at MDT could cause bl ast to client
9486         cancel_lru_locks osc
9487
9488         stat $DIR/$tdir > /dev/null
9489         can1=$(do_facet $SINGLEMDS \
9490                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9491                awk '/ldlm_cancel/ {print $2}')
9492         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9493                awk '/ldlm_bl_callback/ {print $2}')
9494         test_mkdir -c1 $DIR/$tdir/d1
9495         can2=$(do_facet $SINGLEMDS \
9496                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9497                awk '/ldlm_cancel/ {print $2}')
9498         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9499                awk '/ldlm_bl_callback/ {print $2}')
9500         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9501         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9502         lru_resize_enable mdc
9503         lru_resize_enable osc
9504 }
9505 run_test 120a "Early Lock Cancel: mkdir test"
9506
9507 test_120b() {
9508         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9509         remote_mds_nodsh && skip "remote MDS with nodsh"
9510         test_mkdir $DIR/$tdir
9511         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9512                 skip_env "no early lock cancel on server"
9513
9514         lru_resize_disable mdc
9515         lru_resize_disable osc
9516         cancel_lru_locks mdc
9517         stat $DIR/$tdir > /dev/null
9518         can1=$(do_facet $SINGLEMDS \
9519                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9520                awk '/ldlm_cancel/ {print $2}')
9521         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9522                awk '/ldlm_bl_callback/ {print $2}')
9523         touch $DIR/$tdir/f1
9524         can2=$(do_facet $SINGLEMDS \
9525                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9526                awk '/ldlm_cancel/ {print $2}')
9527         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9528                awk '/ldlm_bl_callback/ {print $2}')
9529         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9530         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9531         lru_resize_enable mdc
9532         lru_resize_enable osc
9533 }
9534 run_test 120b "Early Lock Cancel: create test"
9535
9536 test_120c() {
9537         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9538         remote_mds_nodsh && skip "remote MDS with nodsh"
9539         test_mkdir -c1 $DIR/$tdir
9540         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9541                 skip "no early lock cancel on server"
9542
9543         lru_resize_disable mdc
9544         lru_resize_disable osc
9545         test_mkdir -c1 $DIR/$tdir/d1
9546         test_mkdir -c1 $DIR/$tdir/d2
9547         touch $DIR/$tdir/d1/f1
9548         cancel_lru_locks mdc
9549         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
9550         can1=$(do_facet $SINGLEMDS \
9551                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9552                awk '/ldlm_cancel/ {print $2}')
9553         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9554                awk '/ldlm_bl_callback/ {print $2}')
9555         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
9556         can2=$(do_facet $SINGLEMDS \
9557                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9558                awk '/ldlm_cancel/ {print $2}')
9559         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9560                awk '/ldlm_bl_callback/ {print $2}')
9561         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9562         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9563         lru_resize_enable mdc
9564         lru_resize_enable osc
9565 }
9566 run_test 120c "Early Lock Cancel: link test"
9567
9568 test_120d() {
9569         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9570         remote_mds_nodsh && skip "remote MDS with nodsh"
9571         test_mkdir -c1 $DIR/$tdir
9572         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9573                 skip_env "no early lock cancel on server"
9574
9575         lru_resize_disable mdc
9576         lru_resize_disable osc
9577         touch $DIR/$tdir
9578         cancel_lru_locks mdc
9579         stat $DIR/$tdir > /dev/null
9580         can1=$(do_facet $SINGLEMDS \
9581                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9582                awk '/ldlm_cancel/ {print $2}')
9583         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9584                awk '/ldlm_bl_callback/ {print $2}')
9585         chmod a+x $DIR/$tdir
9586         can2=$(do_facet $SINGLEMDS \
9587                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9588                awk '/ldlm_cancel/ {print $2}')
9589         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9590                awk '/ldlm_bl_callback/ {print $2}')
9591         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9592         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9593         lru_resize_enable mdc
9594         lru_resize_enable osc
9595 }
9596 run_test 120d "Early Lock Cancel: setattr test"
9597
9598 test_120e() {
9599         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9600         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9601                 skip_env "no early lock cancel on server"
9602         remote_mds_nodsh && skip "remote MDS with nodsh"
9603
9604         local dlmtrace_set=false
9605
9606         test_mkdir -c1 $DIR/$tdir
9607         lru_resize_disable mdc
9608         lru_resize_disable osc
9609         ! $LCTL get_param debug | grep -q dlmtrace &&
9610                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
9611         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
9612         cancel_lru_locks mdc
9613         cancel_lru_locks osc
9614         dd if=$DIR/$tdir/f1 of=/dev/null
9615         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
9616         # XXX client can not do early lock cancel of OST lock
9617         # during unlink (LU-4206), so cancel osc lock now.
9618         sleep 2
9619         cancel_lru_locks osc
9620         can1=$(do_facet $SINGLEMDS \
9621                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9622                awk '/ldlm_cancel/ {print $2}')
9623         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9624                awk '/ldlm_bl_callback/ {print $2}')
9625         unlink $DIR/$tdir/f1
9626         sleep 5
9627         can2=$(do_facet $SINGLEMDS \
9628                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9629                awk '/ldlm_cancel/ {print $2}')
9630         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9631                awk '/ldlm_bl_callback/ {print $2}')
9632         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
9633                 $LCTL dk $TMP/cancel.debug.txt
9634         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
9635                 $LCTL dk $TMP/blocking.debug.txt
9636         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
9637         lru_resize_enable mdc
9638         lru_resize_enable osc
9639 }
9640 run_test 120e "Early Lock Cancel: unlink test"
9641
9642 test_120f() {
9643         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9644         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9645                 skip_env "no early lock cancel on server"
9646         remote_mds_nodsh && skip "remote MDS with nodsh"
9647
9648         test_mkdir -c1 $DIR/$tdir
9649         lru_resize_disable mdc
9650         lru_resize_disable osc
9651         test_mkdir -c1 $DIR/$tdir/d1
9652         test_mkdir -c1 $DIR/$tdir/d2
9653         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
9654         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
9655         cancel_lru_locks mdc
9656         cancel_lru_locks osc
9657         dd if=$DIR/$tdir/d1/f1 of=/dev/null
9658         dd if=$DIR/$tdir/d2/f2 of=/dev/null
9659         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
9660         # XXX client can not do early lock cancel of OST lock
9661         # during rename (LU-4206), so cancel osc lock now.
9662         sleep 2
9663         cancel_lru_locks osc
9664         can1=$(do_facet $SINGLEMDS \
9665                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9666                awk '/ldlm_cancel/ {print $2}')
9667         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9668                awk '/ldlm_bl_callback/ {print $2}')
9669         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
9670         sleep 5
9671         can2=$(do_facet $SINGLEMDS \
9672                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9673                awk '/ldlm_cancel/ {print $2}')
9674         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9675                awk '/ldlm_bl_callback/ {print $2}')
9676         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9677         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9678         lru_resize_enable mdc
9679         lru_resize_enable osc
9680 }
9681 run_test 120f "Early Lock Cancel: rename test"
9682
9683 test_120g() {
9684         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9685         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9686                 skip_env "no early lock cancel on server"
9687         remote_mds_nodsh && skip "remote MDS with nodsh"
9688
9689         lru_resize_disable mdc
9690         lru_resize_disable osc
9691         count=10000
9692         echo create $count files
9693         test_mkdir $DIR/$tdir
9694         cancel_lru_locks mdc
9695         cancel_lru_locks osc
9696         t0=$(date +%s)
9697
9698         can0=$(do_facet $SINGLEMDS \
9699                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9700                awk '/ldlm_cancel/ {print $2}')
9701         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9702                awk '/ldlm_bl_callback/ {print $2}')
9703         createmany -o $DIR/$tdir/f $count
9704         sync
9705         can1=$(do_facet $SINGLEMDS \
9706                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9707                awk '/ldlm_cancel/ {print $2}')
9708         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9709                awk '/ldlm_bl_callback/ {print $2}')
9710         t1=$(date +%s)
9711         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
9712         echo rm $count files
9713         rm -r $DIR/$tdir
9714         sync
9715         can2=$(do_facet $SINGLEMDS \
9716                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9717                awk '/ldlm_cancel/ {print $2}')
9718         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9719                awk '/ldlm_bl_callback/ {print $2}')
9720         t2=$(date +%s)
9721         echo total: $count removes in $((t2-t1))
9722         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
9723         sleep 2
9724         # wait for commitment of removal
9725         lru_resize_enable mdc
9726         lru_resize_enable osc
9727 }
9728 run_test 120g "Early Lock Cancel: performance test"
9729
9730 test_121() { #bug #10589
9731         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9732
9733         rm -rf $DIR/$tfile
9734         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
9735 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
9736         lctl set_param fail_loc=0x310
9737         cancel_lru_locks osc > /dev/null
9738         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
9739         lctl set_param fail_loc=0
9740         [[ $reads -eq $writes ]] ||
9741                 error "read $reads blocks, must be $writes blocks"
9742 }
9743 run_test 121 "read cancel race ========="
9744
9745 test_123a() { # was test 123, statahead(bug 11401)
9746         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9747
9748         SLOWOK=0
9749         if ! grep -q "processor.*: 1" /proc/cpuinfo; then
9750                 log "testing UP system. Performance may be lower than expected."
9751                 SLOWOK=1
9752         fi
9753
9754         rm -rf $DIR/$tdir
9755         test_mkdir $DIR/$tdir
9756         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
9757         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
9758         MULT=10
9759         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
9760                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
9761
9762                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
9763                 lctl set_param -n llite.*.statahead_max 0
9764                 lctl get_param llite.*.statahead_max
9765                 cancel_lru_locks mdc
9766                 cancel_lru_locks osc
9767                 stime=`date +%s`
9768                 time ls -l $DIR/$tdir | wc -l
9769                 etime=`date +%s`
9770                 delta=$((etime - stime))
9771                 log "ls $i files without statahead: $delta sec"
9772                 lctl set_param llite.*.statahead_max=$max
9773
9774                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
9775                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
9776                 cancel_lru_locks mdc
9777                 cancel_lru_locks osc
9778                 stime=`date +%s`
9779                 time ls -l $DIR/$tdir | wc -l
9780                 etime=`date +%s`
9781                 delta_sa=$((etime - stime))
9782                 log "ls $i files with statahead: $delta_sa sec"
9783                 lctl get_param -n llite.*.statahead_stats
9784                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
9785
9786                 [[ $swrong -lt $ewrong ]] &&
9787                         log "statahead was stopped, maybe too many locks held!"
9788                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
9789
9790                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
9791                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
9792                     lctl set_param -n llite.*.statahead_max 0
9793                     lctl get_param llite.*.statahead_max
9794                     cancel_lru_locks mdc
9795                     cancel_lru_locks osc
9796                     stime=`date +%s`
9797                     time ls -l $DIR/$tdir | wc -l
9798                     etime=`date +%s`
9799                     delta=$((etime - stime))
9800                     log "ls $i files again without statahead: $delta sec"
9801                     lctl set_param llite.*.statahead_max=$max
9802                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
9803                         if [  $SLOWOK -eq 0 ]; then
9804                                 error "ls $i files is slower with statahead!"
9805                         else
9806                                 log "ls $i files is slower with statahead!"
9807                         fi
9808                         break
9809                     fi
9810                 fi
9811
9812                 [ $delta -gt 20 ] && break
9813                 [ $delta -gt 8 ] && MULT=$((50 / delta))
9814                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
9815         done
9816         log "ls done"
9817
9818         stime=`date +%s`
9819         rm -r $DIR/$tdir
9820         sync
9821         etime=`date +%s`
9822         delta=$((etime - stime))
9823         log "rm -r $DIR/$tdir/: $delta seconds"
9824         log "rm done"
9825         lctl get_param -n llite.*.statahead_stats
9826 }
9827 run_test 123a "verify statahead work"
9828
9829 test_123b () { # statahead(bug 15027)
9830         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9831
9832         test_mkdir $DIR/$tdir
9833         createmany -o $DIR/$tdir/$tfile-%d 1000
9834
9835         cancel_lru_locks mdc
9836         cancel_lru_locks osc
9837
9838 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
9839         lctl set_param fail_loc=0x80000803
9840         ls -lR $DIR/$tdir > /dev/null
9841         log "ls done"
9842         lctl set_param fail_loc=0x0
9843         lctl get_param -n llite.*.statahead_stats
9844         rm -r $DIR/$tdir
9845         sync
9846
9847 }
9848 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
9849
9850 test_124a() {
9851         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9852         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
9853                 skip_env "no lru resize on server"
9854
9855         local NR=2000
9856
9857         test_mkdir $DIR/$tdir
9858
9859         log "create $NR files at $DIR/$tdir"
9860         createmany -o $DIR/$tdir/f $NR ||
9861                 error "failed to create $NR files in $DIR/$tdir"
9862
9863         cancel_lru_locks mdc
9864         ls -l $DIR/$tdir > /dev/null
9865
9866         local NSDIR=""
9867         local LRU_SIZE=0
9868         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
9869                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
9870                 LRU_SIZE=$($LCTL get_param -n $PARAM)
9871                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
9872                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
9873                         log "NSDIR=$NSDIR"
9874                         log "NS=$(basename $NSDIR)"
9875                         break
9876                 fi
9877         done
9878
9879         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
9880                 skip "Not enough cached locks created!"
9881         fi
9882         log "LRU=$LRU_SIZE"
9883
9884         local SLEEP=30
9885
9886         # We know that lru resize allows one client to hold $LIMIT locks
9887         # for 10h. After that locks begin to be killed by client.
9888         local MAX_HRS=10
9889         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
9890         log "LIMIT=$LIMIT"
9891         if [ $LIMIT -lt $LRU_SIZE ]; then
9892                 skip "Limit is too small $LIMIT"
9893         fi
9894
9895         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
9896         # killing locks. Some time was spent for creating locks. This means
9897         # that up to the moment of sleep finish we must have killed some of
9898         # them (10-100 locks). This depends on how fast ther were created.
9899         # Many of them were touched in almost the same moment and thus will
9900         # be killed in groups.
9901         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
9902
9903         # Use $LRU_SIZE_B here to take into account real number of locks
9904         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
9905         local LRU_SIZE_B=$LRU_SIZE
9906         log "LVF=$LVF"
9907         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
9908         log "OLD_LVF=$OLD_LVF"
9909         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
9910
9911         # Let's make sure that we really have some margin. Client checks
9912         # cached locks every 10 sec.
9913         SLEEP=$((SLEEP+20))
9914         log "Sleep ${SLEEP} sec"
9915         local SEC=0
9916         while ((SEC<$SLEEP)); do
9917                 echo -n "..."
9918                 sleep 5
9919                 SEC=$((SEC+5))
9920                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
9921                 echo -n "$LRU_SIZE"
9922         done
9923         echo ""
9924         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
9925         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
9926
9927         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
9928                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
9929                 unlinkmany $DIR/$tdir/f $NR
9930                 return
9931         }
9932
9933         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
9934         log "unlink $NR files at $DIR/$tdir"
9935         unlinkmany $DIR/$tdir/f $NR
9936 }
9937 run_test 124a "lru resize ======================================="
9938
9939 get_max_pool_limit()
9940 {
9941         local limit=$($LCTL get_param \
9942                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
9943         local max=0
9944         for l in $limit; do
9945                 if [[ $l -gt $max ]]; then
9946                         max=$l
9947                 fi
9948         done
9949         echo $max
9950 }
9951
9952 test_124b() {
9953         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9954         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
9955                 skip_env "no lru resize on server"
9956
9957         LIMIT=$(get_max_pool_limit)
9958
9959         NR=$(($(default_lru_size)*20))
9960         if [[ $NR -gt $LIMIT ]]; then
9961                 log "Limit lock number by $LIMIT locks"
9962                 NR=$LIMIT
9963         fi
9964
9965         IFree=$(mdsrate_inodes_available)
9966         if [ $IFree -lt $NR ]; then
9967                 log "Limit lock number by $IFree inodes"
9968                 NR=$IFree
9969         fi
9970
9971         lru_resize_disable mdc
9972         test_mkdir -p $DIR/$tdir/disable_lru_resize
9973
9974         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
9975         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
9976         cancel_lru_locks mdc
9977         stime=`date +%s`
9978         PID=""
9979         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
9980         PID="$PID $!"
9981         sleep 2
9982         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
9983         PID="$PID $!"
9984         sleep 2
9985         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
9986         PID="$PID $!"
9987         wait $PID
9988         etime=`date +%s`
9989         nolruresize_delta=$((etime-stime))
9990         log "ls -la time: $nolruresize_delta seconds"
9991         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
9992         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
9993
9994         lru_resize_enable mdc
9995         test_mkdir -p $DIR/$tdir/enable_lru_resize
9996
9997         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
9998         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
9999         cancel_lru_locks mdc
10000         stime=`date +%s`
10001         PID=""
10002         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10003         PID="$PID $!"
10004         sleep 2
10005         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10006         PID="$PID $!"
10007         sleep 2
10008         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10009         PID="$PID $!"
10010         wait $PID
10011         etime=`date +%s`
10012         lruresize_delta=$((etime-stime))
10013         log "ls -la time: $lruresize_delta seconds"
10014         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
10015
10016         if [ $lruresize_delta -gt $nolruresize_delta ]; then
10017                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
10018         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
10019                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
10020         else
10021                 log "lru resize performs the same with no lru resize"
10022         fi
10023         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
10024 }
10025 run_test 124b "lru resize (performance test) ======================="
10026
10027 test_124c() {
10028         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10029         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
10030                 skip_env "no lru resize on server"
10031
10032         # cache ununsed locks on client
10033         local nr=100
10034         cancel_lru_locks mdc
10035         test_mkdir $DIR/$tdir
10036         createmany -o $DIR/$tdir/f $nr ||
10037                 error "failed to create $nr files in $DIR/$tdir"
10038         ls -l $DIR/$tdir > /dev/null
10039
10040         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
10041         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
10042         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
10043         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
10044         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
10045
10046         # set lru_max_age to 1 sec
10047         $LCTL set_param $nsdir.lru_max_age=1000 # milliseconds
10048         echo "sleep $((recalc_p * 2)) seconds..."
10049         sleep $((recalc_p * 2))
10050
10051         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
10052         # restore lru_max_age
10053         $LCTL set_param -n $nsdir.lru_max_age $max_age
10054         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
10055         unlinkmany $DIR/$tdir/f $nr
10056 }
10057 run_test 124c "LRUR cancel very aged locks"
10058
10059 test_125() { # 13358
10060         $LCTL get_param -n llite.*.client_type | grep -q local ||
10061                 skip "must run as local client"
10062         $LCTL get_param -n mdc.*-mdc-*.connect_flags | grep -q acl ||
10063                 skip_env "must have acl enabled"
10064         [ -z "$(which setfacl)" ] && skip_env "must have setfacl tool"
10065
10066         test_mkdir $DIR/$tdir
10067         $LFS setstripe -S 65536 -c -1 $DIR/$tdir || error "setstripe failed"
10068         setfacl -R -m u:bin:rwx $DIR/$tdir || error "setfacl $DIR/$tdir failed"
10069         ls -ld $DIR/$tdir || error "cannot access $DIR/$tdir"
10070 }
10071 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
10072
10073 test_126() { # bug 12829/13455
10074         $GSS && skip_env "must run as gss disabled"
10075         $LCTL get_param -n llite.*.client_type | grep -q local ||
10076                 skip "must run as local client"
10077         [ "$UID" != 0 ] && skip "must run as root, not UID $UID"
10078
10079         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
10080         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
10081         rm -f $DIR/$tfile
10082         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
10083 }
10084 run_test 126 "check that the fsgid provided by the client is taken into account"
10085
10086 test_127a() { # bug 15521
10087         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10088
10089         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
10090         $LCTL set_param osc.*.stats=0
10091         FSIZE=$((2048 * 1024))
10092         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
10093         cancel_lru_locks osc
10094         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
10095
10096         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
10097         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
10098                 echo "got $COUNT $NAME"
10099                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
10100                 eval $NAME=$COUNT || error "Wrong proc format"
10101
10102                 case $NAME in
10103                         read_bytes|write_bytes)
10104                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
10105                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
10106                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
10107                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
10108                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
10109                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
10110                                 error "sumsquare is too small: $SUMSQ"
10111                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
10112                                 error "sumsquare is too big: $SUMSQ"
10113                         ;;
10114                         *) ;;
10115                 esac
10116         done < $DIR/${tfile}.tmp
10117
10118         #check that we actually got some stats
10119         [ "$read_bytes" ] || error "Missing read_bytes stats"
10120         [ "$write_bytes" ] || error "Missing write_bytes stats"
10121         [ "$read_bytes" != 0 ] || error "no read done"
10122         [ "$write_bytes" != 0 ] || error "no write done"
10123 }
10124 run_test 127a "verify the client stats are sane"
10125
10126 test_127b() { # bug LU-333
10127         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10128
10129         $LCTL set_param llite.*.stats=0
10130         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
10131
10132         # perform 2 reads and writes so MAX is different from SUM.
10133         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
10134         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
10135         cancel_lru_locks osc
10136         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
10137         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
10138
10139         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
10140         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
10141                 echo "got $COUNT $NAME"
10142                 eval $NAME=$COUNT || error "Wrong proc format"
10143
10144         case $NAME in
10145                 read_bytes)
10146                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
10147                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
10148                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
10149                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
10150                         ;;
10151                 write_bytes)
10152                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
10153                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
10154                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
10155                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
10156                         ;;
10157                         *) ;;
10158                 esac
10159         done < $TMP/${tfile}.tmp
10160
10161         #check that we actually got some stats
10162         [ "$read_bytes" ] || error "Missing read_bytes stats"
10163         [ "$write_bytes" ] || error "Missing write_bytes stats"
10164         [ "$read_bytes" != 0 ] || error "no read done"
10165         [ "$write_bytes" != 0 ] || error "no write done"
10166
10167         rm -f $TMP/${tfile}.tmp
10168 }
10169 run_test 127b "verify the llite client stats are sane"
10170
10171 test_128() { # bug 15212
10172         touch $DIR/$tfile
10173         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
10174                 find $DIR/$tfile
10175                 find $DIR/$tfile
10176         EOF
10177
10178         result=$(grep error $TMP/$tfile.log)
10179         rm -f $DIR/$tfile $TMP/$tfile.log
10180         [ -z "$result" ] ||
10181                 error "consecutive find's under interactive lfs failed"
10182 }
10183 run_test 128 "interactive lfs for 2 consecutive find's"
10184
10185 set_dir_limits () {
10186         local mntdev
10187         local canondev
10188         local node
10189
10190         local ldproc=/proc/fs/ldiskfs
10191         local facets=$(get_facets MDS)
10192
10193         for facet in ${facets//,/ }; do
10194                 canondev=$(ldiskfs_canon \
10195                            *.$(convert_facet2label $facet).mntdev $facet)
10196                 do_facet $facet "test -e $ldproc/$canondev/max_dir_size" ||
10197                         ldproc=/sys/fs/ldiskfs
10198                 do_facet $facet "echo $1 >$ldproc/$canondev/max_dir_size"
10199                 do_facet $facet "echo $2 >$ldproc/$canondev/warning_dir_size"
10200         done
10201 }
10202
10203 check_mds_dmesg() {
10204         local facets=$(get_facets MDS)
10205         for facet in ${facets//,/ }; do
10206                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
10207         done
10208         return 1
10209 }
10210
10211 test_129() {
10212         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10213         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.56) ]] ||
10214                 skip "Need MDS version with at least 2.5.56"
10215         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
10216                 skip_env "ldiskfs only test"
10217         fi
10218         remote_mds_nodsh && skip "remote MDS with nodsh"
10219
10220         local ENOSPC=28
10221         local EFBIG=27
10222         local has_warning=false
10223
10224         rm -rf $DIR/$tdir
10225         mkdir -p $DIR/$tdir
10226
10227         # block size of mds1
10228         local maxsize=$(($($LCTL get_param -n mdc.*MDT0000*.blocksize) * 5))
10229         set_dir_limits $maxsize $maxsize
10230         local dirsize=$(stat -c%s "$DIR/$tdir")
10231         local nfiles=0
10232         while [[ $dirsize -le $maxsize ]]; do
10233                 $MULTIOP $DIR/$tdir/file_base_$nfiles Oc
10234                 rc=$?
10235                 if ! $has_warning; then
10236                         check_mds_dmesg '"is approaching"' && has_warning=true
10237                 fi
10238                 # check two errors:
10239                 # ENOSPC for new ext4 max_dir_size (kernel commit df981d03ee)
10240                 # EFBIG for previous versions included in ldiskfs series
10241                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
10242                         set_dir_limits 0 0
10243                         echo "return code $rc received as expected"
10244
10245                         createmany -o $DIR/$tdir/file_extra_$nfiles. 5 ||
10246                                 error_exit "create failed w/o dir size limit"
10247
10248                         check_mds_dmesg '"has reached"' ||
10249                                 error_exit "reached message should be output"
10250
10251                         [ $has_warning = "false" ] &&
10252                                 error_exit "warning message should be output"
10253
10254                         dirsize=$(stat -c%s "$DIR/$tdir")
10255
10256                         [[ $dirsize -ge $maxsize ]] && return 0
10257                         error_exit "current dir size $dirsize, " \
10258                                    "previous limit $maxsize"
10259                 elif [ $rc -ne 0 ]; then
10260                         set_dir_limits 0 0
10261                         error_exit "return $rc received instead of expected " \
10262                                    "$EFBIG or $ENOSPC, files in dir $dirsize"
10263                 fi
10264                 nfiles=$((nfiles + 1))
10265                 dirsize=$(stat -c%s "$DIR/$tdir")
10266         done
10267
10268         set_dir_limits 0 0
10269         error "exceeded dir size limit $maxsize($MDSCOUNT) : $dirsize bytes"
10270 }
10271 run_test 129 "test directory size limit ========================"
10272
10273 OLDIFS="$IFS"
10274 cleanup_130() {
10275         trap 0
10276         IFS="$OLDIFS"
10277 }
10278
10279 test_130a() {
10280         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10281         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10282
10283         trap cleanup_130 EXIT RETURN
10284
10285         local fm_file=$DIR/$tfile
10286         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
10287         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
10288                 error "dd failed for $fm_file"
10289
10290         # LU-1795: test filefrag/FIEMAP once, even if unsupported
10291         filefrag -ves $fm_file
10292         RC=$?
10293         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10294                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10295         [ $RC != 0 ] && error "filefrag $fm_file failed"
10296
10297         filefrag_op=$(filefrag -ve -k $fm_file |
10298                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10299         lun=$($GETSTRIPE -i $fm_file)
10300
10301         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
10302         IFS=$'\n'
10303         tot_len=0
10304         for line in $filefrag_op
10305         do
10306                 frag_lun=`echo $line | cut -d: -f5`
10307                 ext_len=`echo $line | cut -d: -f4`
10308                 if (( $frag_lun != $lun )); then
10309                         cleanup_130
10310                         error "FIEMAP on 1-stripe file($fm_file) failed"
10311                         return
10312                 fi
10313                 (( tot_len += ext_len ))
10314         done
10315
10316         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
10317                 cleanup_130
10318                 error "FIEMAP on 1-stripe file($fm_file) failed;"
10319                 return
10320         fi
10321
10322         cleanup_130
10323
10324         echo "FIEMAP on single striped file succeeded"
10325 }
10326 run_test 130a "FIEMAP (1-stripe file)"
10327
10328 test_130b() {
10329         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >= 2 OSTs"
10330
10331         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10332         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10333
10334         trap cleanup_130 EXIT RETURN
10335
10336         local fm_file=$DIR/$tfile
10337         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
10338                         error "setstripe on $fm_file"
10339         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10340                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10341
10342         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
10343                 error "dd failed on $fm_file"
10344
10345         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10346         filefrag_op=$(filefrag -ve -k $fm_file |
10347                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10348
10349         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10350                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10351
10352         IFS=$'\n'
10353         tot_len=0
10354         num_luns=1
10355         for line in $filefrag_op
10356         do
10357                 frag_lun=$(echo $line | cut -d: -f5 |
10358                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10359                 ext_len=$(echo $line | cut -d: -f4)
10360                 if (( $frag_lun != $last_lun )); then
10361                         if (( tot_len != 1024 )); then
10362                                 cleanup_130
10363                                 error "FIEMAP on $fm_file failed; returned " \
10364                                 "len $tot_len for OST $last_lun instead of 1024"
10365                                 return
10366                         else
10367                                 (( num_luns += 1 ))
10368                                 tot_len=0
10369                         fi
10370                 fi
10371                 (( tot_len += ext_len ))
10372                 last_lun=$frag_lun
10373         done
10374         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
10375                 cleanup_130
10376                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10377                         "luns or wrong len for OST $last_lun"
10378                 return
10379         fi
10380
10381         cleanup_130
10382
10383         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
10384 }
10385 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
10386
10387 test_130c() {
10388         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
10389
10390         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10391         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10392
10393         trap cleanup_130 EXIT RETURN
10394
10395         local fm_file=$DIR/$tfile
10396         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
10397         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10398                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10399
10400         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
10401                         error "dd failed on $fm_file"
10402
10403         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10404         filefrag_op=$(filefrag -ve -k $fm_file |
10405                 sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10406
10407         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10408                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10409
10410         IFS=$'\n'
10411         tot_len=0
10412         num_luns=1
10413         for line in $filefrag_op
10414         do
10415                 frag_lun=$(echo $line | cut -d: -f5 |
10416                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10417                 ext_len=$(echo $line | cut -d: -f4)
10418                 if (( $frag_lun != $last_lun )); then
10419                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
10420                         if (( logical != 512 )); then
10421                                 cleanup_130
10422                                 error "FIEMAP on $fm_file failed; returned " \
10423                                 "logical start for lun $logical instead of 512"
10424                                 return
10425                         fi
10426                         if (( tot_len != 512 )); then
10427                                 cleanup_130
10428                                 error "FIEMAP on $fm_file failed; returned " \
10429                                 "len $tot_len for OST $last_lun instead of 1024"
10430                                 return
10431                         else
10432                                 (( num_luns += 1 ))
10433                                 tot_len=0
10434                         fi
10435                 fi
10436                 (( tot_len += ext_len ))
10437                 last_lun=$frag_lun
10438         done
10439         if (( num_luns != 2 || tot_len != 512 )); then
10440                 cleanup_130
10441                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10442                         "luns or wrong len for OST $last_lun"
10443                 return
10444         fi
10445
10446         cleanup_130
10447
10448         echo "FIEMAP on 2-stripe file with hole succeeded"
10449 }
10450 run_test 130c "FIEMAP (2-stripe file with hole)"
10451
10452 test_130d() {
10453         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
10454
10455         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10456         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10457
10458         trap cleanup_130 EXIT RETURN
10459
10460         local fm_file=$DIR/$tfile
10461         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
10462                         error "setstripe on $fm_file"
10463         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10464                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10465
10466         local actual_stripe_count=$($GETSTRIPE -c $fm_file)
10467         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripe_count ||
10468                 error "dd failed on $fm_file"
10469
10470         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10471         filefrag_op=$(filefrag -ve -k $fm_file |
10472                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10473
10474         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10475                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10476
10477         IFS=$'\n'
10478         tot_len=0
10479         num_luns=1
10480         for line in $filefrag_op
10481         do
10482                 frag_lun=$(echo $line | cut -d: -f5 |
10483                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10484                 ext_len=$(echo $line | cut -d: -f4)
10485                 if (( $frag_lun != $last_lun )); then
10486                         if (( tot_len != 1024 )); then
10487                                 cleanup_130
10488                                 error "FIEMAP on $fm_file failed; returned " \
10489                                 "len $tot_len for OST $last_lun instead of 1024"
10490                                 return
10491                         else
10492                                 (( num_luns += 1 ))
10493                                 tot_len=0
10494                         fi
10495                 fi
10496                 (( tot_len += ext_len ))
10497                 last_lun=$frag_lun
10498         done
10499         if (( num_luns != actual_stripe_count || tot_len != 1024 )); then
10500                 cleanup_130
10501                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10502                         "luns or wrong len for OST $last_lun"
10503                 return
10504         fi
10505
10506         cleanup_130
10507
10508         echo "FIEMAP on N-stripe file succeeded"
10509 }
10510 run_test 130d "FIEMAP (N-stripe file)"
10511
10512 test_130e() {
10513         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
10514
10515         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10516         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10517
10518         trap cleanup_130 EXIT RETURN
10519
10520         local fm_file=$DIR/$tfile
10521         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
10522         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10523                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10524
10525         NUM_BLKS=512
10526         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
10527         for ((i = 0; i < $NUM_BLKS; i++))
10528         do
10529                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
10530         done
10531
10532         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10533         filefrag_op=$(filefrag -ve -k $fm_file |
10534                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10535
10536         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10537                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10538
10539         IFS=$'\n'
10540         tot_len=0
10541         num_luns=1
10542         for line in $filefrag_op
10543         do
10544                 frag_lun=$(echo $line | cut -d: -f5 |
10545                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10546                 ext_len=$(echo $line | cut -d: -f4)
10547                 if (( $frag_lun != $last_lun )); then
10548                         if (( tot_len != $EXPECTED_LEN )); then
10549                                 cleanup_130
10550                                 error "FIEMAP on $fm_file failed; returned " \
10551                                 "len $tot_len for OST $last_lun instead " \
10552                                 "of $EXPECTED_LEN"
10553                                 return
10554                         else
10555                                 (( num_luns += 1 ))
10556                                 tot_len=0
10557                         fi
10558                 fi
10559                 (( tot_len += ext_len ))
10560                 last_lun=$frag_lun
10561         done
10562         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
10563                 cleanup_130
10564                 error "FIEMAP on $fm_file failed; returned wrong number " \
10565                         "of luns or wrong len for OST $last_lun"
10566                 return
10567         fi
10568
10569         cleanup_130
10570
10571         echo "FIEMAP with continuation calls succeeded"
10572 }
10573 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
10574
10575 test_130f() {
10576         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10577         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10578
10579         local fm_file=$DIR/$tfile
10580         $MULTIOP $fm_file oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T33554432c ||
10581                 error "multiop create with lov_delay_create on $fm_file"
10582
10583         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10584         filefrag_extents=$(filefrag -vek $fm_file |
10585                            awk '/extents? found/ { print $2 }')
10586         if [[ "$filefrag_extents" != "0" ]]; then
10587                 error "FIEMAP on $fm_file failed; " \
10588                       "returned $filefrag_extents expected 0"
10589         fi
10590
10591         rm -f $fm_file
10592 }
10593 run_test 130f "FIEMAP (unstriped file)"
10594
10595 # Test for writev/readv
10596 test_131a() {
10597         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 ||
10598                 error "writev test failed"
10599         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 ||
10600                 error "readv failed"
10601         rm -f $DIR/$tfile
10602 }
10603 run_test 131a "test iov's crossing stripe boundary for writev/readv"
10604
10605 test_131b() {
10606         local fsize=$((524288 + 1048576 + 1572864))
10607         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 &&
10608                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
10609                         error "append writev test failed"
10610
10611         ((fsize += 1572864 + 1048576))
10612         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 &&
10613                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
10614                         error "append writev test failed"
10615         rm -f $DIR/$tfile
10616 }
10617 run_test 131b "test append writev"
10618
10619 test_131c() {
10620         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
10621         error "NOT PASS"
10622 }
10623 run_test 131c "test read/write on file w/o objects"
10624
10625 test_131d() {
10626         rwv -f $DIR/$tfile -w -n 1 1572864
10627         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
10628         if [ "$NOB" != 1572864 ]; then
10629                 error "Short read filed: read $NOB bytes instead of 1572864"
10630         fi
10631         rm -f $DIR/$tfile
10632 }
10633 run_test 131d "test short read"
10634
10635 test_131e() {
10636         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
10637         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
10638         error "read hitting hole failed"
10639         rm -f $DIR/$tfile
10640 }
10641 run_test 131e "test read hitting hole"
10642
10643 check_stats() {
10644         local facet=$1
10645         local op=$2
10646         local want=${3:-0}
10647         local res
10648
10649         case $facet in
10650         mds*) res=$(do_facet $facet \
10651                    $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$op")
10652                  ;;
10653         ost*) res=$(do_facet $facet \
10654                    $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$op")
10655                  ;;
10656         *) error "Wrong facet '$facet'" ;;
10657         esac
10658         echo $res
10659         [ "$res" ] || error "The counter for $op on $facet was not incremented"
10660         # if the argument $3 is zero, it means any stat increment is ok.
10661         if [[ $want -gt 0 ]]; then
10662                 local count=$(echo $res | awk '{ print $2 }')
10663                 [[ $count -ne $want ]] &&
10664                         error "The $op counter on $facet is $count, not $want"
10665         fi
10666 }
10667
10668 test_133a() {
10669         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10670         remote_ost_nodsh && skip "remote OST with nodsh"
10671         remote_mds_nodsh && skip "remote MDS with nodsh"
10672         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
10673                 skip_env "MDS doesn't support rename stats"
10674
10675         local testdir=$DIR/${tdir}/stats_testdir
10676
10677         mkdir -p $DIR/${tdir}
10678
10679         # clear stats.
10680         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10681         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10682
10683         # verify mdt stats first.
10684         mkdir ${testdir} || error "mkdir failed"
10685         check_stats $SINGLEMDS "mkdir" 1
10686         touch ${testdir}/${tfile} || error "touch failed"
10687         check_stats $SINGLEMDS "open" 1
10688         check_stats $SINGLEMDS "close" 1
10689         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.8.54) ] && {
10690                 mknod ${testdir}/${tfile}-pipe p || error "mknod failed"
10691                 check_stats $SINGLEMDS "mknod" 2
10692         }
10693         rm -f ${testdir}/${tfile}-pipe || error "pipe remove failed"
10694         check_stats $SINGLEMDS "unlink" 1
10695         rm -f ${testdir}/${tfile} || error "file remove failed"
10696         check_stats $SINGLEMDS "unlink" 2
10697
10698         # remove working dir and check mdt stats again.
10699         rmdir ${testdir} || error "rmdir failed"
10700         check_stats $SINGLEMDS "rmdir" 1
10701
10702         local testdir1=$DIR/${tdir}/stats_testdir1
10703         mkdir -p ${testdir}
10704         mkdir -p ${testdir1}
10705         touch ${testdir1}/test1
10706         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
10707         check_stats $SINGLEMDS "crossdir_rename" 1
10708
10709         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
10710         check_stats $SINGLEMDS "samedir_rename" 1
10711
10712         rm -rf $DIR/${tdir}
10713 }
10714 run_test 133a "Verifying MDT stats ========================================"
10715
10716 test_133b() {
10717         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10718         remote_ost_nodsh && skip "remote OST with nodsh"
10719         remote_mds_nodsh && skip "remote MDS with nodsh"
10720
10721         local testdir=$DIR/${tdir}/stats_testdir
10722
10723         mkdir -p ${testdir} || error "mkdir failed"
10724         touch ${testdir}/${tfile} || error "touch failed"
10725         cancel_lru_locks mdc
10726
10727         # clear stats.
10728         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10729         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10730
10731         # extra mdt stats verification.
10732         chmod 444 ${testdir}/${tfile} || error "chmod failed"
10733         check_stats $SINGLEMDS "setattr" 1
10734         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10735         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
10736         then            # LU-1740
10737                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
10738                 check_stats $SINGLEMDS "getattr" 1
10739         fi
10740         # Sleep to avoid a cached response.
10741         #define OBD_STATFS_CACHE_SECONDS 1
10742         sleep 2
10743         $LFS df || error "lfs failed"
10744         check_stats $SINGLEMDS "statfs" 1
10745
10746         rm -rf $DIR/${tdir}
10747 }
10748 run_test 133b "Verifying extra MDT stats =================================="
10749
10750 test_133c() {
10751         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10752         remote_ost_nodsh && skip "remote OST with nodsh"
10753         remote_mds_nodsh && skip "remote MDS with nodsh"
10754
10755         local testdir=$DIR/$tdir/stats_testdir
10756
10757         test_mkdir -p $testdir
10758
10759         # verify obdfilter stats.
10760         $SETSTRIPE -c 1 -i 0 $testdir/$tfile
10761         sync
10762         cancel_lru_locks osc
10763         wait_delete_completed
10764
10765         # clear stats.
10766         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10767         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10768
10769         dd if=/dev/zero of=$testdir/$tfile conv=notrunc bs=512k count=1 ||
10770                 error "dd failed"
10771         sync
10772         cancel_lru_locks osc
10773         check_stats ost1 "write" 1
10774
10775         dd if=$testdir/$tfile of=/dev/null bs=1k count=1 || error "dd failed"
10776         check_stats ost1 "read" 1
10777
10778         > $testdir/$tfile || error "truncate failed"
10779         check_stats ost1 "punch" 1
10780
10781         rm -f $testdir/$tfile || error "file remove failed"
10782         wait_delete_completed
10783         check_stats ost1 "destroy" 1
10784
10785         rm -rf $DIR/$tdir
10786 }
10787 run_test 133c "Verifying OST stats ========================================"
10788
10789 order_2() {
10790         local value=$1
10791         local orig=$value
10792         local order=1
10793
10794         while [ $value -ge 2 ]; do
10795                 order=$((order*2))
10796                 value=$((value/2))
10797         done
10798
10799         if [ $orig -gt $order ]; then
10800                 order=$((order*2))
10801         fi
10802         echo $order
10803 }
10804
10805 size_in_KMGT() {
10806     local value=$1
10807     local size=('K' 'M' 'G' 'T');
10808     local i=0
10809     local size_string=$value
10810
10811     while [ $value -ge 1024 ]; do
10812         if [ $i -gt 3 ]; then
10813             #T is the biggest unit we get here, if that is bigger,
10814             #just return XXXT
10815             size_string=${value}T
10816             break
10817         fi
10818         value=$((value >> 10))
10819         if [ $value -lt 1024 ]; then
10820             size_string=${value}${size[$i]}
10821             break
10822         fi
10823         i=$((i + 1))
10824     done
10825
10826     echo $size_string
10827 }
10828
10829 get_rename_size() {
10830         local size=$1
10831         local context=${2:-.}
10832         local sample=$(do_facet $SINGLEMDS $LCTL \
10833                 get_param mdt.$FSNAME-MDT0000.rename_stats |
10834                 grep -A1 $context |
10835                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
10836         echo $sample
10837 }
10838
10839 test_133d() {
10840         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10841         remote_ost_nodsh && skip "remote OST with nodsh"
10842         remote_mds_nodsh && skip "remote MDS with nodsh"
10843         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
10844                 skip_env "MDS doesn't support rename stats"
10845
10846         local testdir1=$DIR/${tdir}/stats_testdir1
10847         local testdir2=$DIR/${tdir}/stats_testdir2
10848         mkdir -p $DIR/${tdir}
10849
10850         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
10851
10852         lfs mkdir -i 0 -c 1 ${testdir1} || error "mkdir failed"
10853         lfs mkdir -i 0 -c 1 ${testdir2} || error "mkdir failed"
10854
10855         createmany -o $testdir1/test 512 || error "createmany failed"
10856
10857         # check samedir rename size
10858         mv ${testdir1}/test0 ${testdir1}/test_0
10859
10860         local testdir1_size=$(ls -l $DIR/${tdir} |
10861                 awk '/stats_testdir1/ {print $5}')
10862         local testdir2_size=$(ls -l $DIR/${tdir} |
10863                 awk '/stats_testdir2/ {print $5}')
10864
10865         testdir1_size=$(order_2 $testdir1_size)
10866         testdir2_size=$(order_2 $testdir2_size)
10867
10868         testdir1_size=$(size_in_KMGT $testdir1_size)
10869         testdir2_size=$(size_in_KMGT $testdir2_size)
10870
10871         echo "source rename dir size: ${testdir1_size}"
10872         echo "target rename dir size: ${testdir2_size}"
10873
10874         local cmd="do_facet $SINGLEMDS $LCTL "
10875         cmd+="get_param mdt.$FSNAME-MDT0000.rename_stats"
10876
10877         eval $cmd || error "$cmd failed"
10878         local samedir=$($cmd | grep 'same_dir')
10879         local same_sample=$(get_rename_size $testdir1_size)
10880         [ -z "$samedir" ] && error "samedir_rename_size count error"
10881         [[ $same_sample -eq 1 ]] ||
10882                 error "samedir_rename_size error $same_sample"
10883         echo "Check same dir rename stats success"
10884
10885         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
10886
10887         # check crossdir rename size
10888         mv ${testdir1}/test_0 ${testdir2}/test_0
10889
10890         testdir1_size=$(ls -l $DIR/${tdir} |
10891                 awk '/stats_testdir1/ {print $5}')
10892         testdir2_size=$(ls -l $DIR/${tdir} |
10893                 awk '/stats_testdir2/ {print $5}')
10894
10895         testdir1_size=$(order_2 $testdir1_size)
10896         testdir2_size=$(order_2 $testdir2_size)
10897
10898         testdir1_size=$(size_in_KMGT $testdir1_size)
10899         testdir2_size=$(size_in_KMGT $testdir2_size)
10900
10901         echo "source rename dir size: ${testdir1_size}"
10902         echo "target rename dir size: ${testdir2_size}"
10903
10904         eval $cmd || error "$cmd failed"
10905         local crossdir=$($cmd | grep 'crossdir')
10906         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
10907         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
10908         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
10909         [[ $src_sample -eq 1 ]] ||
10910                 error "crossdir_rename_size error $src_sample"
10911         [[ $tgt_sample -eq 1 ]] ||
10912                 error "crossdir_rename_size error $tgt_sample"
10913         echo "Check cross dir rename stats success"
10914         rm -rf $DIR/${tdir}
10915 }
10916 run_test 133d "Verifying rename_stats ========================================"
10917
10918 test_133e() {
10919         remote_mds_nodsh && skip "remote MDS with nodsh"
10920         remote_ost_nodsh && skip "remote OST with nodsh"
10921         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10922
10923         local testdir=$DIR/${tdir}/stats_testdir
10924         local ctr f0 f1 bs=32768 count=42 sum
10925
10926         mkdir -p ${testdir} || error "mkdir failed"
10927
10928         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
10929
10930         for ctr in {write,read}_bytes; do
10931                 sync
10932                 cancel_lru_locks osc
10933
10934                 do_facet ost1 $LCTL set_param -n \
10935                         "obdfilter.*.exports.clear=clear"
10936
10937                 if [ $ctr = write_bytes ]; then
10938                         f0=/dev/zero
10939                         f1=${testdir}/${tfile}
10940                 else
10941                         f0=${testdir}/${tfile}
10942                         f1=/dev/null
10943                 fi
10944
10945                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
10946                         error "dd failed"
10947                 sync
10948                 cancel_lru_locks osc
10949
10950                 sum=$(do_facet ost1 $LCTL get_param \
10951                         "obdfilter.*.exports.*.stats" |
10952                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
10953                                 $1 == ctr { sum += $7 }
10954                                 END { printf("%0.0f", sum) }')
10955
10956                 if ((sum != bs * count)); then
10957                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
10958                 fi
10959         done
10960
10961         rm -rf $DIR/${tdir}
10962 }
10963 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
10964
10965 proc_regexp="/{proc,sys}/{fs,sys,kernel/debug}/{lustre,lnet}/"
10966
10967 test_133f() {
10968         # First without trusting modes.
10969         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
10970         echo "proc_dirs='$proc_dirs'"
10971         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
10972         find $proc_dirs -exec cat '{}' \; &> /dev/null
10973
10974         # Second verifying readability.
10975         $LCTL get_param -R '*' &> /dev/null || error "proc file read failed"
10976
10977         # Verifing writability with badarea_io.
10978         find $proc_dirs \
10979                 -ignore_readdir_race \
10980                 -type f \
10981                 -not -name force_lbug \
10982                 -not -name changelog_mask \
10983                 -exec badarea_io '{}' \; ||
10984                         error "find $proc_dirs failed"
10985 }
10986 run_test 133f "Check reads/writes of client lustre proc files with bad area io"
10987
10988 test_133g() {
10989         remote_mds_nodsh && skip "remote MDS with nodsh"
10990         remote_ost_nodsh && skip "remote OST with nodsh"
10991
10992         # eventually, this can also be replaced with "lctl get_param -R",
10993         # but not until that option is always available on the server
10994         local facet
10995         for facet in mds1 ost1; do
10996                 [ $(lustre_version_code $facet) -le $(version_code 2.5.54) ] &&
10997                         skip_noexit "Too old lustre on $facet"
10998                 local facet_proc_dirs=$(do_facet $facet \
10999                                         \\\ls -d $proc_regexp 2>/dev/null)
11000                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
11001                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
11002                 do_facet $facet find $facet_proc_dirs \
11003                         ! -name req_history \
11004                         -exec cat '{}' \\\; &> /dev/null
11005
11006                 do_facet $facet find $facet_proc_dirs \
11007                         ! -name req_history \
11008                         -type f \
11009                         -exec cat '{}' \\\; &> /dev/null ||
11010                                 error "proc file read failed"
11011
11012                 do_facet $facet find $facet_proc_dirs \
11013                         -ignore_readdir_race \
11014                         -type f \
11015                         -not -name force_lbug \
11016                         -not -name changelog_mask \
11017                         -exec badarea_io '{}' \\\; ||
11018                                 error "$facet find $facet_proc_dirs failed"
11019         done
11020
11021         # remount the FS in case writes/reads /proc break the FS
11022         cleanup || error "failed to unmount"
11023         setup || error "failed to setup"
11024         true
11025 }
11026 run_test 133g "Check reads/writes of server lustre proc files with bad area io"
11027
11028 test_133h() {
11029         remote_mds_nodsh && skip "remote MDS with nodsh"
11030         remote_ost_nodsh && skip "remote OST with nodsh"
11031         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.54) ]] &&
11032                 skip "Need MDS version at least 2.9.54"
11033
11034         local facet
11035
11036         for facet in client mds1 ost1; do
11037                 local facet_proc_dirs=$(do_facet $facet \
11038                                         \\\ls -d $proc_regexp 2> /dev/null)
11039                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
11040                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
11041                 # Get the list of files that are missing the terminating newline
11042                 local missing=($(do_facet $facet \
11043                         find ${facet_proc_dirs} -type f \|              \
11044                                 while read F\; do                       \
11045                                         awk -v FS='\v' -v RS='\v\v'     \
11046                                         "'END { if(NR>0 &&              \
11047                                         \\\$NF !~ /.*\\\n\$/)           \
11048                                                 print FILENAME}'"       \
11049                                         '\$F'\;                         \
11050                                 done 2>/dev/null))
11051                 [ ${#missing[*]} -eq 0 ] ||
11052                         error "files do not end with newline: ${missing[*]}"
11053         done
11054 }
11055 run_test 133h "Proc files should end with newlines"
11056
11057 test_134a() {
11058         remote_mds_nodsh && skip "remote MDS with nodsh"
11059         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
11060                 skip "Need MDS version at least 2.7.54"
11061
11062         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
11063         cancel_lru_locks mdc
11064
11065         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
11066         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
11067         [ $unused -eq 0 ] || error "$unused locks are not cleared"
11068
11069         local nr=1000
11070         createmany -o $DIR/$tdir/f $nr ||
11071                 error "failed to create $nr files in $DIR/$tdir"
11072         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
11073
11074         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
11075         do_facet mds1 $LCTL set_param fail_loc=0x327
11076         do_facet mds1 $LCTL set_param fail_val=500
11077         touch $DIR/$tdir/m
11078
11079         echo "sleep 10 seconds ..."
11080         sleep 10
11081         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
11082
11083         do_facet mds1 $LCTL set_param fail_loc=0
11084         do_facet mds1 $LCTL set_param fail_val=0
11085         [ $lck_cnt -lt $unused ] ||
11086                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
11087
11088         rm $DIR/$tdir/m
11089         unlinkmany $DIR/$tdir/f $nr
11090 }
11091 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
11092
11093 test_134b() {
11094         remote_mds_nodsh && skip "remote MDS with nodsh"
11095         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
11096                 skip "Need MDS version at least 2.7.54"
11097
11098         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
11099         cancel_lru_locks mdc
11100
11101         local low_wm=$(do_facet mds1 $LCTL get_param -n \
11102                         ldlm.lock_reclaim_threshold_mb)
11103         # disable reclaim temporarily
11104         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
11105
11106         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
11107         do_facet mds1 $LCTL set_param fail_loc=0x328
11108         do_facet mds1 $LCTL set_param fail_val=500
11109
11110         $LCTL set_param debug=+trace
11111
11112         local nr=600
11113         createmany -o $DIR/$tdir/f $nr &
11114         local create_pid=$!
11115
11116         echo "Sleep $TIMEOUT seconds ..."
11117         sleep $TIMEOUT
11118         if ! ps -p $create_pid  > /dev/null 2>&1; then
11119                 do_facet mds1 $LCTL set_param fail_loc=0
11120                 do_facet mds1 $LCTL set_param fail_val=0
11121                 do_facet mds1 $LCTL set_param \
11122                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
11123                 error "createmany finished incorrectly!"
11124         fi
11125         do_facet mds1 $LCTL set_param fail_loc=0
11126         do_facet mds1 $LCTL set_param fail_val=0
11127         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
11128         wait $create_pid || return 1
11129
11130         unlinkmany $DIR/$tdir/f $nr
11131 }
11132 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
11133
11134 test_140() { #bug-17379
11135         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11136
11137         test_mkdir $DIR/$tdir
11138         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
11139         cp $(which stat) . || error "Copying stat to $DIR/$tdir"
11140
11141         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
11142         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
11143         local i=0
11144         while i=$((i + 1)); do
11145                 test_mkdir $i
11146                 cd $i || error "Changing to $i"
11147                 ln -s ../stat stat || error "Creating stat symlink"
11148                 # Read the symlink until ELOOP present,
11149                 # not LBUGing the system is considered success,
11150                 # we didn't overrun the stack.
11151                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
11152                 if [ $ret -ne 0 ]; then
11153                         if [ $ret -eq 40 ]; then
11154                                 break  # -ELOOP
11155                         else
11156                                 error "Open stat symlink"
11157                                         return
11158                         fi
11159                 fi
11160         done
11161         i=$((i - 1))
11162         echo "The symlink depth = $i"
11163         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
11164                                         error "Invalid symlink depth"
11165
11166         # Test recursive symlink
11167         ln -s symlink_self symlink_self
11168         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
11169         echo "open symlink_self returns $ret"
11170         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
11171 }
11172 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
11173
11174 test_150() {
11175         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11176
11177         local TF="$TMP/$tfile"
11178
11179         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
11180         cp $TF $DIR/$tfile
11181         cancel_lru_locks $OSC
11182         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
11183         remount_client $MOUNT
11184         df -P $MOUNT
11185         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
11186
11187         $TRUNCATE $TF 6000
11188         $TRUNCATE $DIR/$tfile 6000
11189         cancel_lru_locks $OSC
11190         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
11191
11192         echo "12345" >>$TF
11193         echo "12345" >>$DIR/$tfile
11194         cancel_lru_locks $OSC
11195         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
11196
11197         echo "12345" >>$TF
11198         echo "12345" >>$DIR/$tfile
11199         cancel_lru_locks $OSC
11200         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
11201
11202         rm -f $TF
11203         true
11204 }
11205 run_test 150 "truncate/append tests"
11206
11207 #LU-2902 roc_hit was not able to read all values from lproc
11208 function roc_hit_init() {
11209         local list=$(comma_list $(osts_nodes))
11210         local dir=$DIR/$tdir-check
11211         local file=$dir/$tfile
11212         local BEFORE
11213         local AFTER
11214         local idx
11215
11216         test_mkdir $dir
11217         #use setstripe to do a write to every ost
11218         for i in $(seq 0 $((OSTCOUNT-1))); do
11219                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
11220                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
11221                 idx=$(printf %04x $i)
11222                 BEFORE=$(get_osd_param $list *OST*$idx stats |
11223                         awk '$1 == "cache_access" {sum += $7}
11224                                 END { printf("%0.0f", sum) }')
11225
11226                 cancel_lru_locks osc
11227                 cat $file >/dev/null
11228
11229                 AFTER=$(get_osd_param $list *OST*$idx stats |
11230                         awk '$1 == "cache_access" {sum += $7}
11231                                 END { printf("%0.0f", sum) }')
11232
11233                 echo BEFORE:$BEFORE AFTER:$AFTER
11234                 if ! let "AFTER - BEFORE == 4"; then
11235                         rm -rf $dir
11236                         error "roc_hit is not safe to use"
11237                 fi
11238                 rm $file
11239         done
11240
11241         rm -rf $dir
11242 }
11243
11244 function roc_hit() {
11245         local list=$(comma_list $(osts_nodes))
11246         echo $(get_osd_param $list '' stats |
11247                 awk '$1 == "cache_hit" {sum += $7}
11248                         END { printf("%0.0f", sum) }')
11249 }
11250
11251 function set_cache() {
11252         local on=1
11253
11254         if [ "$2" == "off" ]; then
11255                 on=0;
11256         fi
11257         local list=$(comma_list $(osts_nodes))
11258         set_osd_param $list '' $1_cache_enable $on
11259
11260         cancel_lru_locks osc
11261 }
11262
11263 test_151() {
11264         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11265         remote_ost_nodsh && skip "remote OST with nodsh"
11266
11267         local CPAGES=3
11268         local list=$(comma_list $(osts_nodes))
11269
11270         # check whether obdfilter is cache capable at all
11271         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
11272                 skip "not cache-capable obdfilter"
11273         fi
11274
11275         # check cache is enabled on all obdfilters
11276         if get_osd_param $list '' read_cache_enable | grep 0; then
11277                 skip "oss cache is disabled"
11278         fi
11279
11280         set_osd_param $list '' writethrough_cache_enable 1
11281
11282         # check write cache is enabled on all obdfilters
11283         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
11284                 skip "oss write cache is NOT enabled"
11285         fi
11286
11287         roc_hit_init
11288
11289         #define OBD_FAIL_OBD_NO_LRU  0x609
11290         do_nodes $list $LCTL set_param fail_loc=0x609
11291
11292         # pages should be in the case right after write
11293         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
11294                 error "dd failed"
11295
11296         local BEFORE=$(roc_hit)
11297         cancel_lru_locks osc
11298         cat $DIR/$tfile >/dev/null
11299         local AFTER=$(roc_hit)
11300
11301         do_nodes $list $LCTL set_param fail_loc=0
11302
11303         if ! let "AFTER - BEFORE == CPAGES"; then
11304                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11305         fi
11306
11307         # the following read invalidates the cache
11308         cancel_lru_locks osc
11309         set_osd_param $list '' read_cache_enable 0
11310         cat $DIR/$tfile >/dev/null
11311
11312         # now data shouldn't be found in the cache
11313         BEFORE=$(roc_hit)
11314         cancel_lru_locks osc
11315         cat $DIR/$tfile >/dev/null
11316         AFTER=$(roc_hit)
11317         if let "AFTER - BEFORE != 0"; then
11318                 error "IN CACHE: before: $BEFORE, after: $AFTER"
11319         fi
11320
11321         set_osd_param $list '' read_cache_enable 1
11322         rm -f $DIR/$tfile
11323 }
11324 run_test 151 "test cache on oss and controls ==============================="
11325
11326 test_152() {
11327         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11328
11329         local TF="$TMP/$tfile"
11330
11331         # simulate ENOMEM during write
11332 #define OBD_FAIL_OST_NOMEM      0x226
11333         lctl set_param fail_loc=0x80000226
11334         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
11335         cp $TF $DIR/$tfile
11336         sync || error "sync failed"
11337         lctl set_param fail_loc=0
11338
11339         # discard client's cache
11340         cancel_lru_locks osc
11341
11342         # simulate ENOMEM during read
11343         lctl set_param fail_loc=0x80000226
11344         cmp $TF $DIR/$tfile || error "cmp failed"
11345         lctl set_param fail_loc=0
11346
11347         rm -f $TF
11348 }
11349 run_test 152 "test read/write with enomem ============================"
11350
11351 test_153() {
11352         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
11353 }
11354 run_test 153 "test if fdatasync does not crash ======================="
11355
11356 dot_lustre_fid_permission_check() {
11357         local fid=$1
11358         local ffid=$MOUNT/.lustre/fid/$fid
11359         local test_dir=$2
11360
11361         echo "stat fid $fid"
11362         stat $ffid > /dev/null || error "stat $ffid failed."
11363         echo "touch fid $fid"
11364         touch $ffid || error "touch $ffid failed."
11365         echo "write to fid $fid"
11366         cat /etc/hosts > $ffid || error "write $ffid failed."
11367         echo "read fid $fid"
11368         diff /etc/hosts $ffid || error "read $ffid failed."
11369         echo "append write to fid $fid"
11370         cat /etc/hosts >> $ffid || error "append write $ffid failed."
11371         echo "rename fid $fid"
11372         mv $ffid $test_dir/$tfile.1 &&
11373                 error "rename $ffid to $tfile.1 should fail."
11374         touch $test_dir/$tfile.1
11375         mv $test_dir/$tfile.1 $ffid &&
11376                 error "rename $tfile.1 to $ffid should fail."
11377         rm -f $test_dir/$tfile.1
11378         echo "truncate fid $fid"
11379         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
11380         echo "link fid $fid"
11381         ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
11382         if [[ $($LCTL get_param -n mdc.*-mdc-*.connect_flags) =~ acl ]]; then
11383                 echo "setfacl fid $fid"
11384                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
11385                 echo "getfacl fid $fid"
11386                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
11387         fi
11388         echo "unlink fid $fid"
11389         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
11390         echo "mknod fid $fid"
11391         mknod $ffid c 1 3 && error "mknod $ffid should fail."
11392
11393         fid=[0xf00000400:0x1:0x0]
11394         ffid=$MOUNT/.lustre/fid/$fid
11395
11396         echo "stat non-exist fid $fid"
11397         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
11398         echo "write to non-exist fid $fid"
11399         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
11400         echo "link new fid $fid"
11401         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
11402
11403         mkdir -p $test_dir/$tdir
11404         touch $test_dir/$tdir/$tfile
11405         fid=$($LFS path2fid $test_dir/$tdir)
11406         rc=$?
11407         [ $rc -ne 0 ] &&
11408                 error "error: could not get fid for $test_dir/$dir/$tfile."
11409
11410         ffid=$MOUNT/.lustre/fid/$fid
11411
11412         echo "ls $fid"
11413         ls $ffid > /dev/null || error "ls $ffid failed."
11414         echo "touch $fid/$tfile.1"
11415         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
11416
11417         echo "touch $MOUNT/.lustre/fid/$tfile"
11418         touch $MOUNT/.lustre/fid/$tfile && \
11419                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
11420
11421         echo "setxattr to $MOUNT/.lustre/fid"
11422         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
11423
11424         echo "listxattr for $MOUNT/.lustre/fid"
11425         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
11426
11427         echo "delxattr from $MOUNT/.lustre/fid"
11428         setfattr -x trusted.name1 $MOUNT/.lustre/fid
11429
11430         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
11431         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
11432                 error "touch invalid fid should fail."
11433
11434         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
11435         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
11436                 error "touch non-normal fid should fail."
11437
11438         echo "rename $tdir to $MOUNT/.lustre/fid"
11439         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
11440                 error "rename to $MOUNT/.lustre/fid should fail."
11441
11442         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
11443         then            # LU-3547
11444                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
11445                 local new_obf_mode=777
11446
11447                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
11448                 chmod $new_obf_mode $DIR/.lustre/fid ||
11449                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
11450
11451                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
11452                 [ $obf_mode -eq $new_obf_mode ] ||
11453                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
11454
11455                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
11456                 chmod $old_obf_mode $DIR/.lustre/fid ||
11457                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
11458         fi
11459
11460         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
11461         fid=$($LFS path2fid $test_dir/$tfile-2)
11462
11463         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.50) ]
11464         then # LU-5424
11465                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
11466                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
11467                         error "create lov data thru .lustre failed"
11468         fi
11469         echo "cp /etc/passwd $test_dir/$tfile-2"
11470         cp /etc/passwd $test_dir/$tfile-2 ||
11471                 error "copy to $test_dir/$tfile-2 failed."
11472         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
11473         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
11474                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
11475
11476         rm -rf $test_dir/tfile.lnk
11477         rm -rf $test_dir/$tfile-2
11478 }
11479
11480 test_154A() {
11481         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
11482                 skip "Need MDS version at least 2.4.1"
11483
11484         local tf=$DIR/$tfile
11485         touch $tf
11486
11487         local fid=$($LFS path2fid $tf)
11488         [ -z "$fid" ] && error "path2fid unable to get $tf FID"
11489
11490         # check that we get the same pathname back
11491         local found=$($LFS fid2path $MOUNT "$fid")
11492         [ -z "$found" ] && error "fid2path unable to get '$fid' path"
11493         [ "$found" == "$tf" ] ||
11494                 error "fid2path($fid=path2fid($tf)) = $found != $tf"
11495 }
11496 run_test 154A "lfs path2fid and fid2path basic checks"
11497
11498 test_154B() {
11499         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
11500                 skip "Need MDS version at least 2.4.1"
11501
11502         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
11503         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
11504         local linkea=$($LL_DECODE_LINKEA $DIR/$tdir/$tfile | grep 'pfid')
11505         [ -z "$linkea" ] && error "decode linkea $DIR/$tdir/$tfile failed"
11506
11507         local name=$(echo $linkea | awk '/pfid/ {print $5}' | sed -e "s/'//g")
11508         local PFID=$(echo $linkea | awk '/pfid/ {print $3}' | sed -e "s/,//g")
11509
11510         # check that we get the same pathname
11511         echo "PFID: $PFID, name: $name"
11512         local FOUND=$($LFS fid2path $MOUNT "$PFID")
11513         [ -z "$FOUND" ] && error "fid2path unable to get $PFID path"
11514         [ "$FOUND/$name" != "$DIR/$tdir/$tfile" ] &&
11515                 error "ll_decode_linkea has $FOUND/$name != $DIR/$tdir/$tfile"
11516
11517         rm -rf $DIR/$tdir || error "Can not delete directory $DIR/$tdir"
11518 }
11519 run_test 154B "verify the ll_decode_linkea tool"
11520
11521 test_154a() {
11522         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11523         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11524         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
11525                 skip "Need MDS version at least 2.2.51"
11526         [ -z "$(which setfacl)" ] && skip_env "must have setfacl tool"
11527
11528         cp /etc/hosts $DIR/$tfile
11529
11530         fid=$($LFS path2fid $DIR/$tfile)
11531         rc=$?
11532         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
11533
11534         dot_lustre_fid_permission_check "$fid" $DIR ||
11535                 error "dot lustre permission check $fid failed"
11536
11537         ls -a $MOUNT | grep "\.lustre" && error ".lustre should not be listed"
11538
11539         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
11540
11541         touch $MOUNT/.lustre/file &&
11542                 error "creation is not allowed under .lustre"
11543
11544         mkdir $MOUNT/.lustre/dir &&
11545                 error "mkdir is not allowed under .lustre"
11546
11547         rm -rf $DIR/$tfile
11548 }
11549 run_test 154a "Open-by-FID"
11550
11551 test_154b() {
11552         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11553         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11554         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
11555         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
11556                 skip "Need MDS version at least 2.2.51"
11557
11558         local remote_dir=$DIR/$tdir/remote_dir
11559         local MDTIDX=1
11560         local rc=0
11561
11562         mkdir -p $DIR/$tdir
11563         $LFS mkdir -i $MDTIDX $remote_dir ||
11564                 error "create remote directory failed"
11565
11566         cp /etc/hosts $remote_dir/$tfile
11567
11568         fid=$($LFS path2fid $remote_dir/$tfile)
11569         rc=$?
11570         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
11571
11572         dot_lustre_fid_permission_check "$fid" $remote_dir ||
11573                 error "dot lustre permission check $fid failed"
11574         rm -rf $DIR/$tdir
11575 }
11576 run_test 154b "Open-by-FID for remote directory"
11577
11578 test_154c() {
11579         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
11580                 skip "Need MDS version at least 2.4.1"
11581
11582         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
11583         local FID1=$($LFS path2fid $DIR/$tfile.1)
11584         local FID2=$($LFS path2fid $DIR/$tfile.2)
11585         local FID3=$($LFS path2fid $DIR/$tfile.3)
11586
11587         local N=1
11588         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
11589                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
11590                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
11591                 local want=FID$N
11592                 [ "$FID" = "${!want}" ] ||
11593                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
11594                 N=$((N + 1))
11595         done
11596
11597         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
11598         do
11599                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
11600                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
11601                 N=$((N + 1))
11602         done
11603 }
11604 run_test 154c "lfs path2fid and fid2path multiple arguments"
11605
11606 test_154d() {
11607         remote_mds_nodsh && skip "remote MDS with nodsh"
11608         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.53) ]] &&
11609                 skip "Need MDS version at least 2.5.53"
11610
11611         if remote_mds; then
11612                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
11613         else
11614                 nid="0@lo"
11615         fi
11616         local proc_ofile="mdt.*.exports.'$nid'.open_files"
11617         local fd
11618         local cmd
11619
11620         rm -f $DIR/$tfile
11621         touch $DIR/$tfile
11622
11623         local fid=$($LFS path2fid $DIR/$tfile)
11624         # Open the file
11625         fd=$(free_fd)
11626         cmd="exec $fd<$DIR/$tfile"
11627         eval $cmd
11628         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
11629         echo "$fid_list" | grep "$fid"
11630         rc=$?
11631
11632         cmd="exec $fd>/dev/null"
11633         eval $cmd
11634         if [ $rc -ne 0 ]; then
11635                 error "FID $fid not found in open files list $fid_list"
11636         fi
11637 }
11638 run_test 154d "Verify open file fid"
11639
11640 test_154e()
11641 {
11642         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.50) ]] &&
11643                 skip "Need MDS version at least 2.6.50"
11644
11645         if ls -a $MOUNT | grep -q '^\.lustre$'; then
11646                 error ".lustre returned by readdir"
11647         fi
11648 }
11649 run_test 154e ".lustre is not returned by readdir"
11650
11651 test_154f() {
11652         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11653
11654         # create parent directory on a single MDT to avoid cross-MDT hardlinks
11655         test_mkdir -p -c1 $DIR/$tdir/d
11656         # test dirs inherit from its stripe
11657         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
11658         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
11659         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
11660         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
11661         touch $DIR/f
11662
11663         # get fid of parents
11664         local FID0=$($LFS path2fid $DIR/$tdir/d)
11665         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
11666         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
11667         local FID3=$($LFS path2fid $DIR)
11668
11669         # check that path2fid --parents returns expected <parent_fid>/name
11670         # 1) test for a directory (single parent)
11671         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
11672         [ "$parent" == "$FID0/foo1" ] ||
11673                 error "expected parent: $FID0/foo1, got: $parent"
11674
11675         # 2) test for a file with nlink > 1 (multiple parents)
11676         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
11677         echo "$parent" | grep -F "$FID1/$tfile" ||
11678                 error "$FID1/$tfile not returned in parent list"
11679         echo "$parent" | grep -F "$FID2/link" ||
11680                 error "$FID2/link not returned in parent list"
11681
11682         # 3) get parent by fid
11683         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
11684         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11685         echo "$parent" | grep -F "$FID1/$tfile" ||
11686                 error "$FID1/$tfile not returned in parent list (by fid)"
11687         echo "$parent" | grep -F "$FID2/link" ||
11688                 error "$FID2/link not returned in parent list (by fid)"
11689
11690         # 4) test for entry in root directory
11691         parent=$($LFS path2fid --parents $DIR/f)
11692         echo "$parent" | grep -F "$FID3/f" ||
11693                 error "$FID3/f not returned in parent list"
11694
11695         # 5) test it on root directory
11696         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
11697                 error "$MOUNT should not have parents"
11698
11699         # enable xattr caching and check that linkea is correctly updated
11700         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
11701         save_lustre_params client "llite.*.xattr_cache" > $save
11702         lctl set_param llite.*.xattr_cache 1
11703
11704         # 6.1) linkea update on rename
11705         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
11706
11707         # get parents by fid
11708         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11709         # foo1 should no longer be returned in parent list
11710         echo "$parent" | grep -F "$FID1" &&
11711                 error "$FID1 should no longer be in parent list"
11712         # the new path should appear
11713         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
11714                 error "$FID2/$tfile.moved is not in parent list"
11715
11716         # 6.2) linkea update on unlink
11717         rm -f $DIR/$tdir/d/foo2/link
11718         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11719         # foo2/link should no longer be returned in parent list
11720         echo "$parent" | grep -F "$FID2/link" &&
11721                 error "$FID2/link should no longer be in parent list"
11722         true
11723
11724         rm -f $DIR/f
11725         restore_lustre_params < $save
11726         rm -f $save
11727 }
11728 run_test 154f "get parent fids by reading link ea"
11729
11730 test_154g()
11731 {
11732         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11733         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.92) && \
11734            $(lustre_version_code client) -gt $(version_code 2.6.99) ]] ||
11735                 skip "Need MDS version at least 2.6.92"
11736
11737         mkdir -p $DIR/$tdir
11738         llapi_fid_test -d $DIR/$tdir
11739 }
11740 run_test 154g "various llapi FID tests"
11741
11742 test_155_small_load() {
11743     local temp=$TMP/$tfile
11744     local file=$DIR/$tfile
11745
11746     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
11747         error "dd of=$temp bs=6096 count=1 failed"
11748     cp $temp $file
11749     cancel_lru_locks $OSC
11750     cmp $temp $file || error "$temp $file differ"
11751
11752     $TRUNCATE $temp 6000
11753     $TRUNCATE $file 6000
11754     cmp $temp $file || error "$temp $file differ (truncate1)"
11755
11756     echo "12345" >>$temp
11757     echo "12345" >>$file
11758     cmp $temp $file || error "$temp $file differ (append1)"
11759
11760     echo "12345" >>$temp
11761     echo "12345" >>$file
11762     cmp $temp $file || error "$temp $file differ (append2)"
11763
11764     rm -f $temp $file
11765     true
11766 }
11767
11768 test_155_big_load() {
11769         remote_ost_nodsh && skip "remote OST with nodsh"
11770
11771         local temp=$TMP/$tfile
11772         local file=$DIR/$tfile
11773
11774         free_min_max
11775         local cache_size=$(do_facet ost$((MAXI+1)) \
11776                 "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
11777         local large_file_size=$((cache_size * 2))
11778
11779         echo "OSS cache size: $cache_size KB"
11780         echo "Large file size: $large_file_size KB"
11781
11782         [ $MAXV -le $large_file_size ] &&
11783                 skip_env "max available OST size needs > $large_file_size KB"
11784
11785         $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
11786
11787         dd if=/dev/urandom of=$temp bs=$large_file_size count=1k ||
11788                 error "dd of=$temp bs=$large_file_size count=1k failed"
11789         cp $temp $file
11790         ls -lh $temp $file
11791         cancel_lru_locks osc
11792         cmp $temp $file || error "$temp $file differ"
11793
11794         rm -f $temp $file
11795         true
11796 }
11797
11798 save_writethrough() {
11799         local facets=$(get_facets OST)
11800
11801         save_lustre_params $facets "obdfilter.*.writethrough_cache_enable" > $1
11802         save_lustre_params $facets "osd-*.*.writethrough_cache_enable" >> $1
11803 }
11804
11805 test_155a() {
11806         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11807
11808         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11809
11810         save_writethrough $p
11811
11812         set_cache read on
11813         set_cache writethrough on
11814         test_155_small_load
11815         restore_lustre_params < $p
11816         rm -f $p
11817 }
11818 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
11819
11820 test_155b() {
11821         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11822
11823         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11824
11825         save_writethrough $p
11826
11827         set_cache read on
11828         set_cache writethrough off
11829         test_155_small_load
11830         restore_lustre_params < $p
11831         rm -f $p
11832 }
11833 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
11834
11835 test_155c() {
11836         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11837
11838         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11839
11840         save_writethrough $p
11841
11842         set_cache read off
11843         set_cache writethrough on
11844         test_155_small_load
11845         restore_lustre_params < $p
11846         rm -f $p
11847 }
11848 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
11849
11850 test_155d() {
11851         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11852
11853         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11854
11855         save_writethrough $p
11856
11857         set_cache read off
11858         set_cache writethrough off
11859         test_155_small_load
11860         restore_lustre_params < $p
11861         rm -f $p
11862 }
11863 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
11864
11865 test_155e() {
11866         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11867
11868         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11869
11870         save_writethrough $p
11871
11872         set_cache read on
11873         set_cache writethrough on
11874         test_155_big_load
11875         restore_lustre_params < $p
11876         rm -f $p
11877 }
11878 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
11879
11880 test_155f() {
11881         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11882
11883         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11884
11885         save_writethrough $p
11886
11887         set_cache read on
11888         set_cache writethrough off
11889         test_155_big_load
11890         restore_lustre_params < $p
11891         rm -f $p
11892 }
11893 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
11894
11895 test_155g() {
11896         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11897
11898         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11899
11900         save_writethrough $p
11901
11902         set_cache read off
11903         set_cache writethrough on
11904         test_155_big_load
11905         restore_lustre_params < $p
11906         rm -f $p
11907 }
11908 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
11909
11910 test_155h() {
11911         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11912
11913         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11914
11915         save_writethrough $p
11916
11917         set_cache read off
11918         set_cache writethrough off
11919         test_155_big_load
11920         restore_lustre_params < $p
11921         rm -f $p
11922 }
11923 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
11924
11925 test_156() {
11926         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11927         remote_ost_nodsh && skip "remote OST with nodsh"
11928         [ "$(facet_fstype ost1)" = "zfs" -a \
11929            $(lustre_version_code ost1 -lt $(version_code 2.6.93)) ] &&
11930                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS"
11931
11932         local CPAGES=3
11933         local BEFORE
11934         local AFTER
11935         local file="$DIR/$tfile"
11936         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11937
11938         save_writethrough $p
11939         roc_hit_init
11940
11941         log "Turn on read and write cache"
11942         set_cache read on
11943         set_cache writethrough on
11944
11945         log "Write data and read it back."
11946         log "Read should be satisfied from the cache."
11947         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
11948         BEFORE=$(roc_hit)
11949         cancel_lru_locks osc
11950         cat $file >/dev/null
11951         AFTER=$(roc_hit)
11952         if ! let "AFTER - BEFORE == CPAGES"; then
11953                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11954         else
11955                 log "cache hits:: before: $BEFORE, after: $AFTER"
11956         fi
11957
11958         log "Read again; it should be satisfied from the cache."
11959         BEFORE=$AFTER
11960         cancel_lru_locks osc
11961         cat $file >/dev/null
11962         AFTER=$(roc_hit)
11963         if ! let "AFTER - BEFORE == CPAGES"; then
11964                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11965         else
11966                 log "cache hits:: before: $BEFORE, after: $AFTER"
11967         fi
11968
11969         log "Turn off the read cache and turn on the write cache"
11970         set_cache read off
11971         set_cache writethrough on
11972
11973         log "Read again; it should be satisfied from the cache."
11974         BEFORE=$(roc_hit)
11975         cancel_lru_locks osc
11976         cat $file >/dev/null
11977         AFTER=$(roc_hit)
11978         if ! let "AFTER - BEFORE == CPAGES"; then
11979                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11980         else
11981                 log "cache hits:: before: $BEFORE, after: $AFTER"
11982         fi
11983
11984         log "Read again; it should not be satisfied from the cache."
11985         BEFORE=$AFTER
11986         cancel_lru_locks osc
11987         cat $file >/dev/null
11988         AFTER=$(roc_hit)
11989         if ! let "AFTER - BEFORE == 0"; then
11990                 error "IN CACHE: before: $BEFORE, after: $AFTER"
11991         else
11992                 log "cache hits:: before: $BEFORE, after: $AFTER"
11993         fi
11994
11995         log "Write data and read it back."
11996         log "Read should be satisfied from the cache."
11997         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
11998         BEFORE=$(roc_hit)
11999         cancel_lru_locks osc
12000         cat $file >/dev/null
12001         AFTER=$(roc_hit)
12002         if ! let "AFTER - BEFORE == CPAGES"; then
12003                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12004         else
12005                 log "cache hits:: before: $BEFORE, after: $AFTER"
12006         fi
12007
12008         log "Read again; it should not be satisfied from the cache."
12009         BEFORE=$AFTER
12010         cancel_lru_locks osc
12011         cat $file >/dev/null
12012         AFTER=$(roc_hit)
12013         if ! let "AFTER - BEFORE == 0"; then
12014                 error "IN CACHE: before: $BEFORE, after: $AFTER"
12015         else
12016                 log "cache hits:: before: $BEFORE, after: $AFTER"
12017         fi
12018
12019         log "Turn off read and write cache"
12020         set_cache read off
12021         set_cache writethrough off
12022
12023         log "Write data and read it back"
12024         log "It should not be satisfied from the cache."
12025         rm -f $file
12026         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12027         cancel_lru_locks osc
12028         BEFORE=$(roc_hit)
12029         cat $file >/dev/null
12030         AFTER=$(roc_hit)
12031         if ! let "AFTER - BEFORE == 0"; then
12032                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
12033         else
12034                 log "cache hits:: before: $BEFORE, after: $AFTER"
12035         fi
12036
12037         log "Turn on the read cache and turn off the write cache"
12038         set_cache read on
12039         set_cache writethrough off
12040
12041         log "Write data and read it back"
12042         log "It should not be satisfied from the cache."
12043         rm -f $file
12044         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12045         BEFORE=$(roc_hit)
12046         cancel_lru_locks osc
12047         cat $file >/dev/null
12048         AFTER=$(roc_hit)
12049         if ! let "AFTER - BEFORE == 0"; then
12050                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
12051         else
12052                 log "cache hits:: before: $BEFORE, after: $AFTER"
12053         fi
12054
12055         log "Read again; it should be satisfied from the cache."
12056         BEFORE=$(roc_hit)
12057         cancel_lru_locks osc
12058         cat $file >/dev/null
12059         AFTER=$(roc_hit)
12060         if ! let "AFTER - BEFORE == CPAGES"; then
12061                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12062         else
12063                 log "cache hits:: before: $BEFORE, after: $AFTER"
12064         fi
12065
12066         restore_lustre_params < $p
12067         rm -f $p $file
12068 }
12069 run_test 156 "Verification of tunables"
12070
12071 test_160a() {
12072         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12073         remote_mds_nodsh && skip "remote MDS with nodsh"
12074         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
12075                 skip "Need MDS version at least 2.2.0"
12076
12077         changelog_register || error "changelog_register failed"
12078         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
12079         changelog_users $SINGLEMDS | grep -q $cl_user ||
12080                 error "User $cl_user not found in changelog_users"
12081
12082         # change something
12083         test_mkdir -p $DIR/$tdir/pics/2008/zachy
12084         changelog_clear 0 || error "changelog_clear failed"
12085         touch $DIR/$tdir/pics/2008/zachy/$tfile                 # open 1
12086         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg       # open 2
12087         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
12088         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
12089         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
12090         rm $DIR/$tdir/pics/desktop.jpg
12091
12092         changelog_dump | tail -10
12093
12094         echo "verifying changelog mask"
12095         changelog_chmask "-MKDIR"
12096         changelog_chmask "-CLOSE"
12097
12098         test_mkdir -p $DIR/$tdir/pics/zach/sofia                # not logged
12099         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # not logged
12100
12101         changelog_chmask "+MKDIR"
12102         changelog_chmask "+CLOSE"
12103
12104         test_mkdir -p $DIR/$tdir/pics/2008/sofia                # mkdir 1
12105         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # open 3
12106
12107         changelog_dump | tail -10
12108         MKDIRS=$(changelog_dump | grep -c "MKDIR")
12109         CLOSES=$(changelog_dump | grep -c "CLOSE")
12110         [ $MKDIRS -eq 1 ] || error "MKDIR changelog mask count $MKDIRS != 1"
12111         [ $CLOSES -eq 3 ] || error "CLOSE changelog mask count $CLOSES != 3"
12112
12113         # verify contents
12114         echo "verifying target fid"
12115         local fidc=$(changelog_extract_field "CREAT" "$tfile" "t=")
12116         local fidf=$($LFS path2fid $DIR/$tdir/pics/zach/$tfile)
12117         [ "$fidc" == "$fidf" ] ||
12118                 error "changelog '$tfile' fid $fidc != file fid $fidf"
12119         echo "verifying parent fid"
12120         # The FID returned from the Changelog may be the directory shard on
12121         # a different MDT, and not the FID returned by path2fid on the parent.
12122         # Instead of comparing FIDs, verify that fid2path(fidp) is correct,
12123         # since this is what will matter when recreating this file in the tree.
12124         local fidp=$(changelog_extract_field "CREAT" "$tfile" "p=")
12125         local pathp=$($LFS fid2path $MOUNT "$fidp")
12126         [ "${pathp%/}" == "$DIR/$tdir/pics/zach" ] ||
12127                 error "changelog fid2path($fidc) $pathp != $DIR/$tdir/pics/zach"
12128
12129         echo "getting records for $cl_user"
12130         changelog_users $SINGLEMDS
12131         local user_rec1=$(changelog_user_rec $SINGLEMDS $cl_user)
12132         local nclr=3
12133         __changelog_clear $SINGLEMDS $cl_user +$nclr ||
12134                 error "changelog_clear failed"
12135         local user_rec2=$(changelog_user_rec $SINGLEMDS $cl_user)
12136         echo "verifying user clear: $user_rec1 + $nclr == $user_rec2"
12137         [ $user_rec2 == $((user_rec1 + nclr)) ] ||
12138                 error "user index expect $user_rec1 + $nclr != $user_rec2"
12139
12140         local min0_rec=$(changelog_users $SINGLEMDS |
12141                 awk 'min == "" || $2 < min { min = $2 }; END { print min }')
12142         local first_rec=$($LFS changelog $(facet_svc $SINGLEMDS) |
12143                           awk '{ print $1; exit; }')
12144
12145         changelog_dump | tail -n 5
12146         echo "verifying user min purge: $min0_rec + 1 == $first_rec"
12147         [ $first_rec == $((min0_rec + 1)) ] ||
12148                 error "first index should be $min0_rec + 1 not $first_rec"
12149
12150         # LU-3446 changelog index reset on MDT restart
12151         local cur_rec1=$(changelog_users $SINGLEMDS |
12152                          awk '/^current.index:/ { print $NF }')
12153         changelog_clear 0 ||
12154                 error "clear all changelog records for $cl_user failed"
12155         stop $SINGLEMDS || error "Fail to stop $SINGLEMDS"
12156         start $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) $MDS_MOUNT_OPTS ||
12157                 error "Fail to start $SINGLEMDS"
12158         local cur_rec2=$(changelog_users $SINGLEMDS |
12159                          awk '/^current.index:/ { print $NF }')
12160         echo "verifying index survives MDT restart: $cur_rec1 == $cur_rec2"
12161         [ $cur_rec1 == $cur_rec2 ] ||
12162                 error "current index should be $cur_rec1 not $cur_rec2"
12163
12164         echo "verifying users from this test are deregistered"
12165         changelog_deregister || error "changelog_deregister failed"
12166         changelog_users $SINGLEMDS | grep -q $cl_user &&
12167                 error "User '$cl_user' still in changelog_users"
12168
12169         # lctl get_param -n mdd.*.changelog_users
12170         # current index: 144
12171         # ID    index (idle seconds)
12172         # cl3   144 (2)
12173         if ! changelog_users $SINGLEMDS | grep "^cl"; then
12174                 # this is the normal case where all users were deregistered
12175                 # make sure no new records are added when no users are present
12176                 local last_rec1=$(changelog_users $SINGLEMDS |
12177                                   awk '/^current.index:/ { print $NF }')
12178                 touch $DIR/$tdir/chloe
12179                 local last_rec2=$(changelog_users $SINGLEMDS |
12180                                   awk '/^current.index:/ { print $NF }')
12181                 echo "verify changelogs are off: $last_rec1 == $last_rec2"
12182                 [ $last_rec1 == $last_rec2 ] || error "changelogs not off"
12183         else
12184                 # any changelog users must be leftovers from a previous test
12185                 changelog_users $SINGLEMDS
12186                 echo "other changelog users; can't verify off"
12187         fi
12188 }
12189 run_test 160a "changelog sanity"
12190
12191 test_160b() { # LU-3587
12192         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12193         remote_mds_nodsh && skip "remote MDS with nodsh"
12194         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
12195                 skip "Need MDS version at least 2.2.0"
12196
12197         changelog_register || error "changelog_register failed"
12198         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
12199         changelog_users $SINGLEMDS | grep -q $cl_user ||
12200                 error "User '$cl_user' not found in changelog_users"
12201
12202         local longname1=$(str_repeat a 255)
12203         local longname2=$(str_repeat b 255)
12204
12205         cd $DIR
12206         echo "creating very long named file"
12207         touch $longname1 || error "create of '$longname1' failed"
12208         echo "renaming very long named file"
12209         mv $longname1 $longname2
12210
12211         changelog_dump | grep RENME | tail -n 5
12212         rm -f $longname2
12213 }
12214 run_test 160b "Verify that very long rename doesn't crash in changelog"
12215
12216 test_160c() {
12217         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12218         remote_mds_nodsh && skip "remote MDS with nodsh"
12219
12220         local rc=0
12221         local server_version=$(lustre_version_code $SINGLEMDS)
12222
12223         [[ $server_version -gt $(version_code 2.5.57) ]] ||
12224                 [[ $server_version -gt $(version_code 2.5.1) &&
12225                    $server_version -lt $(version_code 2.5.50) ]] ||
12226                 skip "Need MDS version at least 2.5.58 or 2.5.2+"
12227
12228         # Registration step
12229         changelog_register || error "changelog_register failed"
12230
12231         rm -rf $DIR/$tdir
12232         mkdir -p $DIR/$tdir
12233         $MCREATE $DIR/$tdir/foo_160c
12234         changelog_chmask "-TRUNC"
12235         $TRUNCATE $DIR/$tdir/foo_160c 200
12236         changelog_chmask "+TRUNC"
12237         $TRUNCATE $DIR/$tdir/foo_160c 199
12238         changelog_dump | tail -n 5
12239         local truncs=$(changelog_dump | tail -n 5 | grep -c TRUNC)
12240         [ $truncs -eq 1 ] || error "TRUNC changelog mask count $truncs != 1"
12241 }
12242 run_test 160c "verify that changelog log catch the truncate event"
12243
12244 test_160d() {
12245         remote_mds_nodsh && skip "remote MDS with nodsh"
12246         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
12247         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12248         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.60) ]] ||
12249                 skip "Need MDS version at least 2.7.60"
12250
12251         # Registration step
12252         changelog_register || error "changelog_register failed"
12253
12254         mkdir -p $DIR/$tdir/migrate_dir
12255         changelog_clear 0 || error "changelog_clear failed"
12256
12257         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
12258         changelog_dump | tail -n 5
12259         local migrates=$(changelog_dump | grep -c "MIGRT")
12260         [ $migrates -eq 1 ] || error "MIGRATE changelog count $migrates != 1"
12261 }
12262 run_test 160d "verify that changelog log catch the migrate event"
12263
12264 test_160e() {
12265         remote_mds_nodsh && skip "remote MDS with nodsh"
12266
12267         # Create a user
12268         changelog_register || error "changelog_register failed"
12269
12270         # Delete a future user (expect fail)
12271         local MDT0=$(facet_svc $SINGLEMDS)
12272         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister "cl77"
12273         local rc=$?
12274
12275         if [ $rc -eq 0 ]; then
12276                 error "Deleted non-existant user cl77"
12277         elif [ $rc -ne 2 ]; then
12278                 error "changelog_deregister failed with $rc, expect 2 (ENOENT)"
12279         fi
12280
12281         # Clear to a bad index (1 billion should be safe)
12282         $LFS changelog_clear $MDT0 "${CL_USERS[$SINGLEMDS]%% *}" 1000000000
12283         rc=$?
12284
12285         if [ $rc -eq 0 ]; then
12286                 error "Successfully cleared to invalid CL index"
12287         elif [ $rc -ne 22 ]; then
12288                 error "changelog_clear failed with $rc, expected 22 (EINVAL)"
12289         fi
12290 }
12291 run_test 160e "changelog negative testing (should return errors)"
12292
12293 test_160f() {
12294         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12295         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.56) ]] ||
12296                 { skip "Need MDS version at least 2.10.56"; return 0; }
12297
12298         local mdts=$(comma_list $(mdts_nodes))
12299
12300         # Create a user
12301         changelog_register || error "first changelog_register failed"
12302         changelog_register || error "second changelog_register failed"
12303         local cl_users
12304         declare -A cl_user1
12305         declare -A cl_user2
12306         local user_rec1
12307         local user_rec2
12308         local i
12309
12310         # generate some changelog records to accumulate on each MDT
12311         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "test_mkdir $tdir failed"
12312         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12313                 error "create $DIR/$tdir/$tfile failed"
12314
12315         # check changelogs have been generated
12316         local nbcl=$(changelog_dump | wc -l)
12317         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12318
12319         for param in "changelog_max_idle_time=10" \
12320                      "changelog_gc=1" \
12321                      "changelog_min_gc_interval=2" \
12322                      "changelog_min_free_cat_entries=3"; do
12323                 local MDT0=$(facet_svc $SINGLEMDS)
12324                 local var="${param%=*}"
12325                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12326
12327                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12328                 do_nodes $mdts $LCTL set_param mdd.*.$param
12329         done
12330
12331         # force cl_user2 to be idle (1st part)
12332         sleep 9
12333
12334         # simulate changelog catalog almost full
12335         #define OBD_FAIL_CAT_FREE_RECORDS       0x1313
12336         do_nodes $mdts $LCTL set_param fail_loc=0x1313 fail_val=3
12337
12338         for i in $(seq $MDSCOUNT); do
12339                 cl_users=(${CL_USERS[mds$i]})
12340                 cl_user1[mds$i]="${cl_users[0]}"
12341                 cl_user2[mds$i]="${cl_users[1]}"
12342
12343                 [ -n "${cl_user1[mds$i]}" ] ||
12344                         error "mds$i: no user registered"
12345                 [ -n "${cl_user2[mds$i]}" ] ||
12346                         error "mds$i: only ${cl_user2[mds$i]} is registered"
12347
12348                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12349                 [ -n "$user_rec1" ] ||
12350                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12351                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12352                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12353                 [ -n "$user_rec2" ] ||
12354                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12355                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12356                      "$user_rec1 + 2 == $user_rec2"
12357                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12358                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12359                               "$user_rec1 + 2, but is $user_rec2"
12360                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12361                 [ -n "$user_rec2" ] ||
12362                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12363                 [ $user_rec1 == $user_rec2 ] ||
12364                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12365                               "$user_rec1, but is $user_rec2"
12366         done
12367
12368         # force cl_user2 to be idle (2nd part) and to reach
12369         # changelog_max_idle_time
12370         sleep 2
12371
12372         # generate one more changelog to trigger fail_loc
12373         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12374                 error "create $DIR/$tdir/${tfile}bis failed"
12375
12376         # ensure gc thread is done
12377         for i in $(mdts_nodes); do
12378                 wait_update $i \
12379                         "ps -e -o comm= | grep chlg_gc_thread" "" 20 ||
12380                         error "$i: GC-thread not done"
12381         done
12382
12383         local first_rec
12384         for i in $(seq $MDSCOUNT); do
12385                 # check cl_user1 still registered
12386                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12387                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12388                 # check cl_user2 unregistered
12389                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12390                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12391
12392                 # check changelogs are present and starting at $user_rec1 + 1
12393                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12394                 [ -n "$user_rec1" ] ||
12395                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12396                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12397                             awk '{ print $1; exit; }')
12398
12399                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12400                 [ $((user_rec1 + 1)) == $first_rec ] ||
12401                         error "mds$i: first index should be $user_rec1 + 1, " \
12402                               "but is $first_rec"
12403         done
12404 }
12405 run_test 160f "changelog garbage collect (timestamped users)"
12406
12407 test_160g() {
12408         remote_mds_nodsh && skip "remote MDS with nodsh"
12409         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.56) ]] ||
12410                 skip "Need MDS version at least 2.10.56"
12411
12412         local mdts=$(comma_list $(mdts_nodes))
12413
12414         #define OBD_FAIL_TIME_IN_CHLOG_USER     0x1314
12415         do_nodes $mdts $LCTL set_param fail_loc=0x1314
12416
12417         # Create a user
12418         changelog_register || error "first changelog_register failed"
12419         changelog_register || error "second changelog_register failed"
12420         local cl_users
12421         declare -A cl_user1
12422         declare -A cl_user2
12423         local user_rec1
12424         local user_rec2
12425         local i
12426
12427         # generate some changelog records to accumulate on each MDT
12428         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
12429         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12430                 error "create $DIR/$tdir/$tfile failed"
12431
12432         # check changelogs have been generated
12433         local nbcl=$(changelog_dump | wc -l)
12434         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12435
12436         for param in "changelog_max_idle_indexes=$((nbcl / 2))" \
12437                      "changelog_gc=1" \
12438                      "changelog_min_gc_interval=2" \
12439                      "changelog_min_free_cat_entries=3"; do
12440                 local MDT0=$(facet_svc $SINGLEMDS)
12441                 local var="${param%=*}"
12442                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12443
12444                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12445                 do_nodes $mdts $LCTL set_param mdd.*.$param ||
12446                         error "unable to set mdd.*.$param"
12447         done
12448
12449         # simulate changelog catalog almost full
12450         #define OBD_FAIL_CAT_FREE_RECORDS       0x1313
12451         do_nodes $mdts $LCTL set_param fail_loc=0x1313 fail_val=3
12452
12453         for i in $(seq $MDSCOUNT); do
12454                 cl_users=(${CL_USERS[mds$i]})
12455                 cl_user1[mds$i]="${cl_users[0]}"
12456                 cl_user2[mds$i]="${cl_users[1]}"
12457
12458                 [ -n "${cl_user1[mds$i]}" ] ||
12459                         error "mds$i: no user registered"
12460                 [ -n "${cl_user2[mds$i]}" ] ||
12461                         error "mds$i: only ${cl_user1[mds$i]} is registered"
12462
12463                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12464                 [ -n "$user_rec1" ] ||
12465                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12466                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12467                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12468                 [ -n "$user_rec2" ] ||
12469                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12470                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12471                      "$user_rec1 + 2 == $user_rec2"
12472                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12473                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12474                               "$user_rec1 + 2, but is $user_rec2"
12475                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12476                 [ -n "$user_rec2" ] ||
12477                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12478                 [ $user_rec1 == $user_rec2 ] ||
12479                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12480                               "$user_rec1, but is $user_rec2"
12481         done
12482
12483         # ensure we are past the previous changelog_min_gc_interval set above
12484         sleep 2
12485
12486         # generate one more changelog to trigger fail_loc
12487         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12488                 error "create $DIR/$tdir/${tfile}bis failed"
12489
12490         # ensure gc thread is done
12491         for i in $(mdts_nodes); do
12492                 wait_update $i \
12493                         "ps -e -o comm= | grep chlg_gc_thread" "" 20 ||
12494                         error "$i: GC-thread not done"
12495         done
12496
12497         local first_rec
12498         for i in $(seq $MDSCOUNT); do
12499                 # check cl_user1 still registered
12500                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12501                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12502                 # check cl_user2 unregistered
12503                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12504                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12505
12506                 # check changelogs are present and starting at $user_rec1 + 1
12507                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12508                 [ -n "$user_rec1" ] ||
12509                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12510                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12511                             awk '{ print $1; exit; }')
12512
12513                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12514                 [ $((user_rec1 + 1)) == $first_rec ] ||
12515                         error "mds$i: first index should be $user_rec1 + 1, " \
12516                               "but is $first_rec"
12517         done
12518 }
12519 run_test 160g "changelog garbage collect (old users)"
12520
12521 test_160h() {
12522         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12523         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.56) ]] ||
12524                 { skip "Need MDS version at least 2.10.56"; return 0; }
12525
12526         local mdts=$(comma_list $(mdts_nodes))
12527
12528         # Create a user
12529         changelog_register || error "first changelog_register failed"
12530         changelog_register || error "second changelog_register failed"
12531         local cl_users
12532         declare -A cl_user1
12533         declare -A cl_user2
12534         local user_rec1
12535         local user_rec2
12536         local i
12537
12538         # generate some changelog records to accumulate on each MDT
12539         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "test_mkdir $tdir failed"
12540         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12541                 error "create $DIR/$tdir/$tfile failed"
12542
12543         # check changelogs have been generated
12544         local nbcl=$(changelog_dump | wc -l)
12545         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12546
12547         for param in "changelog_max_idle_time=10" \
12548                      "changelog_gc=1" \
12549                      "changelog_min_gc_interval=2"; do
12550                 local MDT0=$(facet_svc $SINGLEMDS)
12551                 local var="${param%=*}"
12552                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12553
12554                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12555                 do_nodes $mdts $LCTL set_param mdd.*.$param
12556         done
12557
12558         # force cl_user2 to be idle (1st part)
12559         sleep 9
12560
12561         for i in $(seq $MDSCOUNT); do
12562                 cl_users=(${CL_USERS[mds$i]})
12563                 cl_user1[mds$i]="${cl_users[0]}"
12564                 cl_user2[mds$i]="${cl_users[1]}"
12565
12566                 [ -n "${cl_user1[mds$i]}" ] ||
12567                         error "mds$i: no user registered"
12568                 [ -n "${cl_user2[mds$i]}" ] ||
12569                         error "mds$i: only ${cl_user2[mds$i]} is registered"
12570
12571                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12572                 [ -n "$user_rec1" ] ||
12573                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12574                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12575                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12576                 [ -n "$user_rec2" ] ||
12577                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12578                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12579                      "$user_rec1 + 2 == $user_rec2"
12580                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12581                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12582                               "$user_rec1 + 2, but is $user_rec2"
12583                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12584                 [ -n "$user_rec2" ] ||
12585                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12586                 [ $user_rec1 == $user_rec2 ] ||
12587                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12588                               "$user_rec1, but is $user_rec2"
12589         done
12590
12591         # force cl_user2 to be idle (2nd part) and to reach
12592         # changelog_max_idle_time
12593         sleep 2
12594
12595         # force each GC-thread start and block then
12596         # one per MDT/MDD, set fail_val accordingly
12597         #define OBD_FAIL_FORCE_GC_THREAD 0x1316
12598         do_nodes $mdts $LCTL set_param fail_loc=0x1316
12599
12600         # generate more changelogs to trigger fail_loc
12601         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12602                 error "create $DIR/$tdir/${tfile}bis failed"
12603
12604         # stop MDT to stop GC-thread, should be done in back-ground as it will
12605         # block waiting for the thread to be released and exit
12606         declare -A stop_pids
12607         for i in $(seq $MDSCOUNT); do
12608                 stop mds$i &
12609                 stop_pids[mds$i]=$!
12610         done
12611
12612         for i in $(mdts_nodes); do
12613                 local facet
12614                 local nb=0
12615                 local facets=$(facets_up_on_host $i)
12616
12617                 for facet in ${facets//,/ }; do
12618                         if [[ $facet == mds* ]]; then
12619                                 nb=$((nb + 1))
12620                         fi
12621                 done
12622                 # ensure each MDS's gc threads are still present and all in "R"
12623                 # state (OBD_FAIL_FORCE_GC_THREAD effect!)
12624                 [[ $(do_node $i pgrep chlg_gc_thread | wc -l) -eq $nb ]] ||
12625                         error "$i: expected $nb GC-thread"
12626                 wait_update $i \
12627                         "ps -C chlg_gc_thread -o state --no-headers | uniq" \
12628                         "R" 20 ||
12629                         error "$i: GC-thread not found in R-state"
12630                 # check umounts of each MDT on MDS have reached kthread_stop()
12631                 [[ $(do_node $i pgrep umount | wc -l) -eq $nb ]] ||
12632                         error "$i: expected $nb umount"
12633                 wait_update $i \
12634                         "ps -C umount -o state --no-headers | uniq" "D" 20 ||
12635                         error "$i: umount not found in D-state"
12636         done
12637
12638         # release all GC-threads
12639         do_nodes $mdts $LCTL set_param fail_loc=0
12640
12641         # wait for MDT stop to complete
12642         for i in $(seq $MDSCOUNT); do
12643                 wait ${stop_pids[mds$i]} || error "mds$i: stop failed"
12644         done
12645
12646         # XXX
12647         # may try to check if any orphan changelog records are present
12648         # via ldiskfs/zfs and llog_reader...
12649
12650         # re-start/mount MDTs
12651         for i in $(seq $MDSCOUNT); do
12652                 start mds$i $(mdsdevname $i) $MDS_MOUNT_OPTS ||
12653                         error "Fail to start mds$i"
12654         done
12655
12656         local first_rec
12657         for i in $(seq $MDSCOUNT); do
12658                 # check cl_user1 still registered
12659                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12660                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12661                 # check cl_user2 unregistered
12662                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12663                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12664
12665                 # check changelogs are present and starting at $user_rec1 + 1
12666                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12667                 [ -n "$user_rec1" ] ||
12668                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12669                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12670                             awk '{ print $1; exit; }')
12671
12672                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12673                 [ $((user_rec1 + 1)) == $first_rec ] ||
12674                         error "mds$i: first index should be $user_rec1 + 1, " \
12675                               "but is $first_rec"
12676         done
12677 }
12678 run_test 160h "changelog gc thread stop upon umount, orphan records delete " \
12679               "during mount"
12680
12681 test_160i() {
12682
12683         local mdts=$(comma_list $(mdts_nodes))
12684
12685         changelog_register || error "first changelog_register failed"
12686
12687         # generate some changelog records to accumulate on each MDT
12688         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
12689         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12690                 error "create $DIR/$tdir/$tfile failed"
12691
12692         # check changelogs have been generated
12693         local nbcl=$(changelog_dump | wc -l)
12694         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12695
12696         # simulate race between register and unregister
12697         # XXX as fail_loc is set per-MDS, with DNE configs the race
12698         # simulation will only occur for one MDT per MDS and for the
12699         # others the normal race scenario will take place
12700         #define CFS_FAIL_CHLOG_USER_REG_UNREG_RACE          0x1315
12701         do_nodes $mdts $LCTL set_param fail_loc=0x10001315
12702         do_nodes $mdts $LCTL set_param fail_val=1
12703
12704         # unregister 1st user
12705         changelog_deregister &
12706         local pid1=$!
12707         # wait some time for deregister work to reach race rdv
12708         sleep 2
12709         # register 2nd user
12710         changelog_register || error "2nd user register failed"
12711
12712         wait $pid1 || error "1st user deregister failed"
12713
12714         local i
12715         local last_rec
12716         declare -A LAST_REC
12717         for i in $(seq $MDSCOUNT); do
12718                 if changelog_users mds$i | grep "^cl"; then
12719                         # make sure new records are added with one user present
12720                         LAST_REC[mds$i]=$(changelog_users $SINGLEMDS |
12721                                           awk '/^current.index:/ { print $NF }')
12722                 else
12723                         error "mds$i has no user registered"
12724                 fi
12725         done
12726
12727         # generate more changelog records to accumulate on each MDT
12728         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12729                 error "create $DIR/$tdir/${tfile}bis failed"
12730
12731         for i in $(seq $MDSCOUNT); do
12732                 last_rec=$(changelog_users $SINGLEMDS |
12733                            awk '/^current.index:/ { print $NF }')
12734                 echo "verify changelogs are on: $last_rec != ${LAST_REC[mds$i]}"
12735                 [ $last_rec != ${LAST_REC[mds$i]} ] ||
12736                         error "changelogs are off on mds$i"
12737         done
12738 }
12739 run_test 160i "changelog user register/unregister race"
12740
12741 test_161a() {
12742         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12743
12744         test_mkdir -c1 $DIR/$tdir
12745         cp /etc/hosts $DIR/$tdir/$tfile
12746         test_mkdir -c1 $DIR/$tdir/foo1
12747         test_mkdir -c1 $DIR/$tdir/foo2
12748         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
12749         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
12750         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
12751         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
12752         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
12753         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
12754                 $LFS fid2path $DIR $FID
12755                 error "bad link ea"
12756         fi
12757         # middle
12758         rm $DIR/$tdir/foo2/zachary
12759         # last
12760         rm $DIR/$tdir/foo2/thor
12761         # first
12762         rm $DIR/$tdir/$tfile
12763         # rename
12764         mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
12765         [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ] &&
12766                 { $LFS fid2path $DIR $FID; error "bad link rename"; }
12767         rm $DIR/$tdir/foo2/maggie
12768
12769         # overflow the EA
12770         local longname=$tfile.avg_len_is_thirty_two_
12771         stack_trap "unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
12772                 error_noexit 'failed to unlink many hardlinks'" EXIT
12773         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
12774                 error "failed to hardlink many files"
12775         links=$($LFS fid2path $DIR $FID | wc -l)
12776         echo -n "${links}/1000 links in link EA"
12777         [[ $links -gt 60 ]] || error "expected at least 60 links in link EA"
12778 }
12779 run_test 161a "link ea sanity"
12780
12781 test_161b() {
12782         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12783         [ $MDSCOUNT -lt 2 ] && skip_env "skipping remote directory test"
12784
12785         local MDTIDX=1
12786         local remote_dir=$DIR/$tdir/remote_dir
12787
12788         mkdir -p $DIR/$tdir
12789         $LFS mkdir -i $MDTIDX $remote_dir ||
12790                 error "create remote directory failed"
12791
12792         cp /etc/hosts $remote_dir/$tfile
12793         mkdir -p $remote_dir/foo1
12794         mkdir -p $remote_dir/foo2
12795         ln $remote_dir/$tfile $remote_dir/foo1/sofia
12796         ln $remote_dir/$tfile $remote_dir/foo2/zachary
12797         ln $remote_dir/$tfile $remote_dir/foo1/luna
12798         ln $remote_dir/$tfile $remote_dir/foo2/thor
12799
12800         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
12801                      tr -d ']')
12802         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
12803                 $LFS fid2path $DIR $FID
12804                 error "bad link ea"
12805         fi
12806         # middle
12807         rm $remote_dir/foo2/zachary
12808         # last
12809         rm $remote_dir/foo2/thor
12810         # first
12811         rm $remote_dir/$tfile
12812         # rename
12813         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
12814         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
12815         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
12816                 $LFS fid2path $DIR $FID
12817                 error "bad link rename"
12818         fi
12819         rm $remote_dir/foo2/maggie
12820
12821         # overflow the EA
12822         local longname=filename_avg_len_is_thirty_two_
12823         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
12824                 error "failed to hardlink many files"
12825         links=$($LFS fid2path $DIR $FID | wc -l)
12826         echo -n "${links}/1000 links in link EA"
12827         [[ ${links} -gt 60 ]] ||
12828                 error "expected at least 60 links in link EA"
12829         unlinkmany $remote_dir/foo2/$longname 1000 ||
12830         error "failed to unlink many hardlinks"
12831 }
12832 run_test 161b "link ea sanity under remote directory"
12833
12834 test_161c() {
12835         remote_mds_nodsh && skip "remote MDS with nodsh"
12836         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12837         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
12838                 skip "Need MDS version at least 2.1.5"
12839
12840         # define CLF_RENAME_LAST 0x0001
12841         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
12842         changelog_register || error "changelog_register failed"
12843
12844         rm -rf $DIR/$tdir
12845         test_mkdir -i $((MDSCOUNT - 1)) $DIR/$tdir
12846         touch $DIR/$tdir/foo_161c
12847         touch $DIR/$tdir/bar_161c
12848         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
12849         changelog_dump | grep RENME | tail -n 5
12850         local flags=$(changelog_dump | grep "RENME.*bar_161c" | cut -f5 -d' ')
12851         changelog_clear 0 || error "changelog_clear failed"
12852         if [ x$flags != "x0x1" ]; then
12853                 error "flag $flags is not 0x1"
12854         fi
12855
12856         echo "rename overwrite target with nlink = 1, changelog flags=$flags"
12857         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
12858         touch $DIR/$tdir/foo_161c
12859         touch $DIR/$tdir/bar_161c
12860         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
12861         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
12862         changelog_dump | grep RENME | tail -n 5
12863         flags=$(changelog_dump | grep "RENME.*bar_161c" | cut -f5 -d' ')
12864         changelog_clear 0 || error "changelog_clear failed"
12865         if [ x$flags != "x0x0" ]; then
12866                 error "flag $flags is not 0x0"
12867         fi
12868         echo "rename overwrite a target having nlink > 1," \
12869                 "changelog record has flags of $flags"
12870
12871         # rename doesn't overwrite a target (changelog flag 0x0)
12872         touch $DIR/$tdir/foo_161c
12873         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
12874         changelog_dump | grep RENME | tail -n 5
12875         flags=$(changelog_dump | grep RENME | tail -1 | cut -f5 -d' ')
12876         changelog_clear 0 || error "changelog_clear failed"
12877         if [ x$flags != "x0x0" ]; then
12878                 error "flag $flags is not 0x0"
12879         fi
12880         echo "rename doesn't overwrite a target," \
12881                 "changelog record has flags of $flags"
12882
12883         # define CLF_UNLINK_LAST 0x0001
12884         # unlink a file having nlink = 1 (changelog flag 0x1)
12885         rm -f $DIR/$tdir/foo2_161c
12886         changelog_dump | grep UNLNK | tail -n 5
12887         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
12888         changelog_clear 0 || error "changelog_clear failed"
12889         if [ x$flags != "x0x1" ]; then
12890                 error "flag $flags is not 0x1"
12891         fi
12892         echo "unlink a file having nlink = 1," \
12893                 "changelog record has flags of $flags"
12894
12895         # unlink a file having nlink > 1 (changelog flag 0x0)
12896         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
12897         rm -f $DIR/$tdir/foobar_161c
12898         changelog_dump | grep UNLNK | tail -n 5
12899         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
12900         changelog_clear 0 || error "changelog_clear failed"
12901         if [ x$flags != "x0x0" ]; then
12902                 error "flag $flags is not 0x0"
12903         fi
12904         echo "unlink a file having nlink > 1, changelog record flags '$flags'"
12905 }
12906 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
12907
12908 test_161d() {
12909         remote_mds_nodsh && skip "remote MDS with nodsh"
12910
12911         local pid
12912         local fid
12913
12914         changelog_register || error "changelog_register failed"
12915
12916         # work in a standalone dir to avoid locking on $DIR/$MOUNT to
12917         # interfer with $MOUNT/.lustre/fid/ access
12918         mkdir $DIR/$tdir
12919         [[ $? -eq 0 ]] || error "mkdir failed"
12920
12921         #define OBD_FAIL_LLITE_CREATE_NODE_PAUSE 0x140c | OBD_FAIL_ONCE
12922         $LCTL set_param fail_loc=0x8000140c
12923         # 5s pause
12924         $LCTL set_param fail_val=5
12925
12926         # create file
12927         echo foofoo > $DIR/$tdir/$tfile &
12928         pid=$!
12929
12930         # wait for create to be delayed
12931         sleep 2
12932
12933         ps -p $pid
12934         [[ $? -eq 0 ]] || error "create should be blocked"
12935
12936         local tempfile=$(mktemp)
12937         fid=$(changelog_extract_field "CREAT" "$tfile" "t=")
12938         cat $MOUNT/.lustre/fid/$fid 2>/dev/null >$tempfile || error "cat failed"
12939         # some delay may occur during ChangeLog publishing and file read just
12940         # above, that could allow file write to happen finally
12941         [[ -s $tempfile ]] && echo "file should be empty"
12942
12943         $LCTL set_param fail_loc=0
12944
12945         wait $pid
12946         [[ $? -eq 0 ]] || error "create failed"
12947 }
12948 run_test 161d "create with concurrent .lustre/fid access"
12949
12950 check_path() {
12951         local expected="$1"
12952         shift
12953         local fid="$2"
12954
12955         local path
12956         path=$($LFS fid2path "$@")
12957         local rc=$?
12958
12959         if [ $rc -ne 0 ]; then
12960                 error "path looked up of '$expected' failed: rc=$rc"
12961         elif [ "$path" != "$expected" ]; then
12962                 error "path looked up '$path' instead of '$expected'"
12963         else
12964                 echo "FID '$fid' resolves to path '$path' as expected"
12965         fi
12966 }
12967
12968 test_162a() { # was test_162
12969         test_mkdir -p -c1 $DIR/$tdir/d2
12970         touch $DIR/$tdir/d2/$tfile
12971         touch $DIR/$tdir/d2/x1
12972         touch $DIR/$tdir/d2/x2
12973         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
12974         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
12975         # regular file
12976         local fid=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
12977         check_path "$tdir/d2/$tfile" $FSNAME "$fid" --link 0
12978
12979         # softlink
12980         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
12981         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
12982         check_path "$tdir/d2/p/q/r/slink" $FSNAME "$fid" --link 0
12983
12984         # softlink to wrong file
12985         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
12986         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
12987         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME "$fid" --link 0
12988
12989         # hardlink
12990         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
12991         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
12992         fid=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
12993         # fid2path dir/fsname should both work
12994         check_path "$tdir/d2/a/b/c/new_file" $FSNAME "$fid" --link 1
12995         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR "$fid" --link 0
12996
12997         # hardlink count: check that there are 2 links
12998         local nlinks=$($LFS fid2path $DIR "$fid" | wc -l)
12999         [ $nlinks -eq 2 ] || error "expect 2 links, found $nlinks"
13000
13001         # hardlink indexing: remove the first link
13002         rm $DIR/$tdir/d2/p/q/r/hlink
13003         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $fid --link 0
13004 }
13005 run_test 162a "path lookup sanity"
13006
13007 test_162b() {
13008         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13009         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
13010
13011         mkdir $DIR/$tdir
13012         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
13013                                 error "create striped dir failed"
13014
13015         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
13016                                         tail -n 1 | awk '{print $2}')
13017         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
13018
13019         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
13020         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
13021
13022         # regular file
13023         for ((i=0;i<5;i++)); do
13024                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
13025                         error "get fid for f$i failed"
13026                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0
13027
13028                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
13029                         error "get fid for d$i failed"
13030                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0
13031         done
13032
13033         return 0
13034 }
13035 run_test 162b "striped directory path lookup sanity"
13036
13037 # LU-4239: Verify fid2path works with paths 100 or more directories deep
13038 test_162c() {
13039         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.51) ]] &&
13040                 skip "Need MDS version at least 2.7.51"
13041
13042         local lpath=$tdir.local
13043         local rpath=$tdir.remote
13044
13045         test_mkdir $DIR/$lpath
13046         test_mkdir $DIR/$rpath
13047
13048         for ((i = 0; i <= 101; i++)); do
13049                 lpath="$lpath/$i"
13050                 mkdir $DIR/$lpath
13051                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
13052                         error "get fid for local directory $DIR/$lpath failed"
13053                 check_path "$DIR/$lpath" $MOUNT $FID --link 0
13054
13055                 rpath="$rpath/$i"
13056                 test_mkdir $DIR/$rpath
13057                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
13058                         error "get fid for remote directory $DIR/$rpath failed"
13059                 check_path "$DIR/$rpath" $MOUNT $FID --link 0
13060         done
13061
13062         return 0
13063 }
13064 run_test 162c "fid2path works with paths 100 or more directories deep"
13065
13066 test_169() {
13067         # do directio so as not to populate the page cache
13068         log "creating a 10 Mb file"
13069         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
13070         log "starting reads"
13071         dd if=$DIR/$tfile of=/dev/null bs=4096 &
13072         log "truncating the file"
13073         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
13074         log "killing dd"
13075         kill %+ || true # reads might have finished
13076         echo "wait until dd is finished"
13077         wait
13078         log "removing the temporary file"
13079         rm -rf $DIR/$tfile || error "tmp file removal failed"
13080 }
13081 run_test 169 "parallel read and truncate should not deadlock"
13082
13083 test_170() {
13084         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13085
13086         $LCTL clear     # bug 18514
13087         $LCTL debug_daemon start $TMP/${tfile}_log_good
13088         touch $DIR/$tfile
13089         $LCTL debug_daemon stop
13090         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
13091                 error "sed failed to read log_good"
13092
13093         $LCTL debug_daemon start $TMP/${tfile}_log_good
13094         rm -rf $DIR/$tfile
13095         $LCTL debug_daemon stop
13096
13097         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
13098                error "lctl df log_bad failed"
13099
13100         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
13101         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
13102
13103         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
13104         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
13105
13106         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
13107                 error "bad_line good_line1 good_line2 are empty"
13108
13109         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
13110         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
13111         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
13112
13113         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
13114         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
13115         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
13116
13117         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
13118                 error "bad_line_new good_line_new are empty"
13119
13120         local expected_good=$((good_line1 + good_line2*2))
13121
13122         rm -f $TMP/${tfile}*
13123         # LU-231, short malformed line may not be counted into bad lines
13124         if [ $bad_line -ne $bad_line_new ] &&
13125                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
13126                 error "expected $bad_line bad lines, but got $bad_line_new"
13127                 return 1
13128         fi
13129
13130         if [ $expected_good -ne $good_line_new ]; then
13131                 error "expected $expected_good good lines, but got $good_line_new"
13132                 return 2
13133         fi
13134         true
13135 }
13136 run_test 170 "test lctl df to handle corrupted log ====================="
13137
13138 test_171() { # bug20592
13139         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13140
13141         #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
13142         $LCTL set_param fail_loc=0x50e
13143         $LCTL set_param fail_val=3000
13144         multiop_bg_pause $DIR/$tfile O_s || true
13145         local MULTIPID=$!
13146         kill -USR1 $MULTIPID
13147         # cause log dump
13148         sleep 3
13149         wait $MULTIPID
13150         if dmesg | grep "recursive fault"; then
13151                 error "caught a recursive fault"
13152         fi
13153         $LCTL set_param fail_loc=0
13154         true
13155 }
13156 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
13157
13158 # it would be good to share it with obdfilter-survey/iokit-libecho code
13159 setup_obdecho_osc () {
13160         local rc=0
13161         local ost_nid=$1
13162         local obdfilter_name=$2
13163         echo "Creating new osc for $obdfilter_name on $ost_nid"
13164         # make sure we can find loopback nid
13165         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
13166
13167         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
13168                            ${obdfilter_name}_osc_UUID || rc=2; }
13169         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
13170                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
13171         return $rc
13172 }
13173
13174 cleanup_obdecho_osc () {
13175         local obdfilter_name=$1
13176         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
13177         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
13178         return 0
13179 }
13180
13181 obdecho_test() {
13182         local OBD=$1
13183         local node=$2
13184         local pages=${3:-64}
13185         local rc=0
13186         local id
13187
13188         local count=10
13189         local obd_size=$(get_obd_size $node $OBD)
13190         local page_size=$(get_page_size $node)
13191         if [[ -n "$obd_size" ]]; then
13192                 local new_count=$((obd_size / (pages * page_size / 1024)))
13193                 [[ $new_count -ge $count ]] || count=$new_count
13194         fi
13195
13196         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
13197         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
13198                            rc=2; }
13199         if [ $rc -eq 0 ]; then
13200             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
13201             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
13202         fi
13203         echo "New object id is $id"
13204         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
13205                            rc=4; }
13206         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
13207                            "test_brw $count w v $pages $id" || rc=4; }
13208         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
13209                            rc=4; }
13210         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
13211                                         "cleanup" || rc=5; }
13212         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
13213                                         "detach" || rc=6; }
13214         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
13215         return $rc
13216 }
13217
13218 test_180a() {
13219         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13220
13221         if ! module_loaded obdecho; then
13222                 load_module obdecho/obdecho &&
13223                         stack_trap "rmmod obdecho" EXIT ||
13224                         error "unable to load obdecho on client"
13225         fi
13226
13227         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
13228         local host=$($LCTL get_param -n osc.$osc.import |
13229                      awk '/current_connection:/ { print $2 }' )
13230         local target=$($LCTL get_param -n osc.$osc.import |
13231                        awk '/target:/ { print $2 }' )
13232         target=${target%_UUID}
13233
13234         if [ -n "$target" ]; then
13235                 setup_obdecho_osc $host $target &&
13236                         stack_trap "cleanup_obdecho_osc $target" EXIT ||
13237                         { error "obdecho setup failed with $?"; return; }
13238
13239                 obdecho_test ${target}_osc client ||
13240                         error "obdecho_test failed on ${target}_osc"
13241         else
13242                 $LCTL get_param osc.$osc.import
13243                 error "there is no osc.$osc.import target"
13244         fi
13245 }
13246 run_test 180a "test obdecho on osc"
13247
13248 test_180b() {
13249         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13250         remote_ost_nodsh && skip "remote OST with nodsh"
13251
13252         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
13253                 stack_trap "do_facet ost1 rmmod obdecho" EXIT ||
13254                 error "failed to load module obdecho"
13255
13256         local target=$(do_facet ost1 $LCTL dl |
13257                        awk '/obdfilter/ { print $4; exit; }')
13258
13259         if [ -n "$target" ]; then
13260                 obdecho_test $target ost1 || error "obdecho_test failed with $?"
13261         else
13262                 do_facet ost1 $LCTL dl
13263                 error "there is no obdfilter target on ost1"
13264         fi
13265 }
13266 run_test 180b "test obdecho directly on obdfilter"
13267
13268 test_180c() { # LU-2598
13269         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13270         remote_ost_nodsh && skip "remote OST with nodsh"
13271         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
13272                 skip "Need MDS version at least 2.4.0"
13273
13274         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
13275                 stack_trap "do_facet ost1 rmmod obdecho" EXIT ||
13276                 error "failed to load module obdecho"
13277
13278         local target=$(do_facet ost1 $LCTL dl |
13279                        awk '/obdfilter/ { print $4; exit; }')
13280
13281         if [ -n "$target" ]; then
13282                 local pages=16384 # 64MB bulk I/O RPC size
13283
13284                 obdecho_test "$target" ost1 "$pages" ||
13285                         error "obdecho_test with pages=$pages failed with $?"
13286         else
13287                 do_facet ost1 $LCTL dl
13288                 error "there is no obdfilter target on ost1"
13289         fi
13290 }
13291 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
13292
13293 test_181() { # bug 22177
13294         test_mkdir $DIR/$tdir
13295         # create enough files to index the directory
13296         createmany -o $DIR/$tdir/foobar 4000
13297         # print attributes for debug purpose
13298         lsattr -d .
13299         # open dir
13300         multiop_bg_pause $DIR/$tdir D_Sc || return 1
13301         MULTIPID=$!
13302         # remove the files & current working dir
13303         unlinkmany $DIR/$tdir/foobar 4000
13304         rmdir $DIR/$tdir
13305         kill -USR1 $MULTIPID
13306         wait $MULTIPID
13307         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
13308         return 0
13309 }
13310 run_test 181 "Test open-unlinked dir ========================"
13311
13312 test_182() {
13313         local fcount=1000
13314         local tcount=10
13315
13316         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13317
13318         $LCTL set_param mdc.*.rpc_stats=clear
13319
13320         for (( i = 0; i < $tcount; i++ )) ; do
13321                 mkdir $DIR/$tdir/$i
13322         done
13323
13324         for (( i = 0; i < $tcount; i++ )) ; do
13325                 createmany -o $DIR/$tdir/$i/f- $fcount &
13326         done
13327         wait
13328
13329         for (( i = 0; i < $tcount; i++ )) ; do
13330                 unlinkmany $DIR/$tdir/$i/f- $fcount &
13331         done
13332         wait
13333
13334         $LCTL get_param mdc.*.rpc_stats
13335
13336         rm -rf $DIR/$tdir
13337 }
13338 run_test 182 "Test parallel modify metadata operations ================"
13339
13340 test_183() { # LU-2275
13341         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13342         remote_mds_nodsh && skip "remote MDS with nodsh"
13343         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
13344                 skip "Need MDS version at least 2.3.56"
13345
13346         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13347         echo aaa > $DIR/$tdir/$tfile
13348
13349 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
13350         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
13351
13352         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
13353         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
13354
13355         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
13356
13357         # Flush negative dentry cache
13358         touch $DIR/$tdir/$tfile
13359
13360         # We are not checking for any leaked references here, they'll
13361         # become evident next time we do cleanup with module unload.
13362         rm -rf $DIR/$tdir
13363 }
13364 run_test 183 "No crash or request leak in case of strange dispositions ========"
13365
13366 # test suite 184 is for LU-2016, LU-2017
13367 test_184a() {
13368         check_swap_layouts_support
13369
13370         dir0=$DIR/$tdir/$testnum
13371         test_mkdir -p -c1 $dir0
13372         ref1=/etc/passwd
13373         ref2=/etc/group
13374         file1=$dir0/f1
13375         file2=$dir0/f2
13376         $SETSTRIPE -c1 $file1
13377         cp $ref1 $file1
13378         $SETSTRIPE -c2 $file2
13379         cp $ref2 $file2
13380         gen1=$($GETSTRIPE -g $file1)
13381         gen2=$($GETSTRIPE -g $file2)
13382
13383         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
13384         gen=$($GETSTRIPE -g $file1)
13385         [[ $gen1 != $gen ]] ||
13386                 "Layout generation on $file1 does not change"
13387         gen=$($GETSTRIPE -g $file2)
13388         [[ $gen2 != $gen ]] ||
13389                 "Layout generation on $file2 does not change"
13390
13391         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
13392         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
13393
13394         lfsck_verify_pfid $file1 $file2 || error "PFID are not transferred"
13395 }
13396 run_test 184a "Basic layout swap"
13397
13398 test_184b() {
13399         check_swap_layouts_support
13400
13401         dir0=$DIR/$tdir/$testnum
13402         mkdir -p $dir0 || error "creating dir $dir0"
13403         file1=$dir0/f1
13404         file2=$dir0/f2
13405         file3=$dir0/f3
13406         dir1=$dir0/d1
13407         dir2=$dir0/d2
13408         mkdir $dir1 $dir2
13409         $SETSTRIPE -c1 $file1
13410         $SETSTRIPE -c2 $file2
13411         $SETSTRIPE -c1 $file3
13412         chown $RUNAS_ID $file3
13413         gen1=$($GETSTRIPE -g $file1)
13414         gen2=$($GETSTRIPE -g $file2)
13415
13416         $LFS swap_layouts $dir1 $dir2 &&
13417                 error "swap of directories layouts should fail"
13418         $LFS swap_layouts $dir1 $file1 &&
13419                 error "swap of directory and file layouts should fail"
13420         $RUNAS $LFS swap_layouts $file1 $file2 &&
13421                 error "swap of file we cannot write should fail"
13422         $LFS swap_layouts $file1 $file3 &&
13423                 error "swap of file with different owner should fail"
13424         /bin/true # to clear error code
13425 }
13426 run_test 184b "Forbidden layout swap (will generate errors)"
13427
13428 test_184c() {
13429         local cmpn_arg=$(cmp -n 2>&1 | grep "invalid option")
13430         [ -n "$cmpn_arg" ] && skip_env "cmp does not support -n"
13431         check_swap_layouts_support
13432
13433         local dir0=$DIR/$tdir/$testnum
13434         mkdir -p $dir0 || error "creating dir $dir0"
13435
13436         local ref1=$dir0/ref1
13437         local ref2=$dir0/ref2
13438         local file1=$dir0/file1
13439         local file2=$dir0/file2
13440         # create a file large enough for the concurrent test
13441         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
13442         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
13443         echo "ref file size: ref1($(stat -c %s $ref1))," \
13444              "ref2($(stat -c %s $ref2))"
13445
13446         cp $ref2 $file2
13447         dd if=$ref1 of=$file1 bs=16k &
13448         local DD_PID=$!
13449
13450         # Make sure dd starts to copy file
13451         while [ ! -f $file1 ]; do sleep 0.1; done
13452
13453         $LFS swap_layouts $file1 $file2
13454         local rc=$?
13455         wait $DD_PID
13456         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
13457         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
13458
13459         # how many bytes copied before swapping layout
13460         local copied=$(stat -c %s $file2)
13461         local remaining=$(stat -c %s $ref1)
13462         remaining=$((remaining - copied))
13463         echo "Copied $copied bytes before swapping layout..."
13464
13465         cmp -n $copied $file1 $ref2 | grep differ &&
13466                 error "Content mismatch [0, $copied) of ref2 and file1"
13467         cmp -n $copied $file2 $ref1 ||
13468                 error "Content mismatch [0, $copied) of ref1 and file2"
13469         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
13470                 error "Content mismatch [$copied, EOF) of ref1 and file1"
13471
13472         # clean up
13473         rm -f $ref1 $ref2 $file1 $file2
13474 }
13475 run_test 184c "Concurrent write and layout swap"
13476
13477 test_184d() {
13478         check_swap_layouts_support
13479         [ -z "$(which getfattr 2>/dev/null)" ] &&
13480                 skip_env "no getfattr command"
13481
13482         local file1=$DIR/$tdir/$tfile-1
13483         local file2=$DIR/$tdir/$tfile-2
13484         local file3=$DIR/$tdir/$tfile-3
13485         local lovea1
13486         local lovea2
13487
13488         mkdir -p $DIR/$tdir
13489         touch $file1 || error "create $file1 failed"
13490         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
13491                 error "create $file2 failed"
13492         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
13493                 error "create $file3 failed"
13494         lovea1=$(get_layout_param $file1)
13495
13496         $LFS swap_layouts $file2 $file3 ||
13497                 error "swap $file2 $file3 layouts failed"
13498         $LFS swap_layouts $file1 $file2 ||
13499                 error "swap $file1 $file2 layouts failed"
13500
13501         lovea2=$(get_layout_param $file2)
13502         echo "$lovea1"
13503         echo "$lovea2"
13504         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
13505
13506         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
13507         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
13508 }
13509 run_test 184d "allow stripeless layouts swap"
13510
13511 test_184e() {
13512         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.94) ]] ||
13513                 skip "Need MDS version at least 2.6.94"
13514         check_swap_layouts_support
13515         [ -z "$(which getfattr 2>/dev/null)" ] &&
13516                 skip_env "no getfattr command"
13517
13518         local file1=$DIR/$tdir/$tfile-1
13519         local file2=$DIR/$tdir/$tfile-2
13520         local file3=$DIR/$tdir/$tfile-3
13521         local lovea
13522
13523         mkdir -p $DIR/$tdir
13524         touch $file1 || error "create $file1 failed"
13525         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
13526                 error "create $file2 failed"
13527         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
13528                 error "create $file3 failed"
13529
13530         $LFS swap_layouts $file1 $file2 ||
13531                 error "swap $file1 $file2 layouts failed"
13532
13533         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
13534         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
13535
13536         echo 123 > $file1 || error "Should be able to write into $file1"
13537
13538         $LFS swap_layouts $file1 $file3 ||
13539                 error "swap $file1 $file3 layouts failed"
13540
13541         echo 123 > $file1 || error "Should be able to write into $file1"
13542
13543         rm -rf $file1 $file2 $file3
13544 }
13545 run_test 184e "Recreate layout after stripeless layout swaps"
13546
13547 test_185() { # LU-2441
13548         # LU-3553 - no volatile file support in old servers
13549         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
13550                 skip "Need MDS version at least 2.3.60"
13551
13552         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13553         touch $DIR/$tdir/spoo
13554         local mtime1=$(stat -c "%Y" $DIR/$tdir)
13555         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
13556                 error "cannot create/write a volatile file"
13557         [ "$FILESET" == "" ] &&
13558         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
13559                 error "FID is still valid after close"
13560
13561         multiop_bg_pause $DIR/$tdir vVw4096_c
13562         local multi_pid=$!
13563
13564         local OLD_IFS=$IFS
13565         IFS=":"
13566         local fidv=($fid)
13567         IFS=$OLD_IFS
13568         # assume that the next FID for this client is sequential, since stdout
13569         # is unfortunately eaten by multiop_bg_pause
13570         local n=$((${fidv[1]} + 1))
13571         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
13572         if [ "$FILESET" == "" ]; then
13573                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
13574                         error "FID is missing before close"
13575         fi
13576         kill -USR1 $multi_pid
13577         # 1 second delay, so if mtime change we will see it
13578         sleep 1
13579         local mtime2=$(stat -c "%Y" $DIR/$tdir)
13580         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
13581 }
13582 run_test 185 "Volatile file support"
13583
13584 test_187a() {
13585         remote_mds_nodsh && skip "remote MDS with nodsh"
13586         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
13587                 skip "Need MDS version at least 2.3.0"
13588
13589         local dir0=$DIR/$tdir/$testnum
13590         mkdir -p $dir0 || error "creating dir $dir0"
13591
13592         local file=$dir0/file1
13593         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
13594         local dv1=$($LFS data_version $file)
13595         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
13596         local dv2=$($LFS data_version $file)
13597         [[ $dv1 != $dv2 ]] ||
13598                 error "data version did not change on write $dv1 == $dv2"
13599
13600         # clean up
13601         rm -f $file1
13602 }
13603 run_test 187a "Test data version change"
13604
13605 test_187b() {
13606         remote_mds_nodsh && skip "remote MDS with nodsh"
13607         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
13608                 skip "Need MDS version at least 2.3.0"
13609
13610         local dir0=$DIR/$tdir/$testnum
13611         mkdir -p $dir0 || error "creating dir $dir0"
13612
13613         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
13614         [[ ${DV[0]} != ${DV[1]} ]] ||
13615                 error "data version did not change on write"\
13616                       " ${DV[0]} == ${DV[1]}"
13617
13618         # clean up
13619         rm -f $file1
13620 }
13621 run_test 187b "Test data version change on volatile file"
13622
13623 test_200() {
13624         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13625         remote_mgs_nodsh && skip "remote MGS with nodsh"
13626         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
13627
13628         local POOL=${POOL:-cea1}
13629         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
13630         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
13631         # Pool OST targets
13632         local first_ost=0
13633         local last_ost=$(($OSTCOUNT - 1))
13634         local ost_step=2
13635         local ost_list=$(seq $first_ost $ost_step $last_ost)
13636         local ost_range="$first_ost $last_ost $ost_step"
13637         local test_path=$POOL_ROOT/$POOL_DIR_NAME
13638         local file_dir=$POOL_ROOT/file_tst
13639         local subdir=$test_path/subdir
13640         local rc=0
13641
13642         if ! combined_mgs_mds ; then
13643                 mount_mgs_client
13644         fi
13645
13646         while : ; do
13647                 # former test_200a test_200b
13648                 pool_add $POOL                          || { rc=$? ; break; }
13649                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
13650                 # former test_200c test_200d
13651                 mkdir -p $test_path
13652                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
13653                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
13654                 mkdir -p $subdir
13655                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
13656                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
13657                                                         || { rc=$? ; break; }
13658                 # former test_200e test_200f
13659                 local files=$((OSTCOUNT*3))
13660                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
13661                                                         || { rc=$? ; break; }
13662                 pool_create_files $POOL $file_dir $files "$ost_list" \
13663                                                         || { rc=$? ; break; }
13664                 # former test_200g test_200h
13665                 pool_lfs_df $POOL                       || { rc=$? ; break; }
13666                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
13667
13668                 # former test_201a test_201b test_201c
13669                 pool_remove_first_target $POOL          || { rc=$? ; break; }
13670
13671                 local f=$test_path/$tfile
13672                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
13673                 pool_remove $POOL $f                    || { rc=$? ; break; }
13674                 break
13675         done
13676
13677         destroy_test_pools
13678
13679         if ! combined_mgs_mds ; then
13680                 umount_mgs_client
13681         fi
13682         return $rc
13683 }
13684 run_test 200 "OST pools"
13685
13686 # usage: default_attr <count | size | offset>
13687 default_attr() {
13688         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
13689 }
13690
13691 # usage: check_default_stripe_attr
13692 check_default_stripe_attr() {
13693         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
13694         case $1 in
13695         --stripe-count|-c)
13696                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
13697         --stripe-size|-S)
13698                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
13699         --stripe-index|-i)
13700                 EXPECTED=-1;;
13701         *)
13702                 error "unknown getstripe attr '$1'"
13703         esac
13704
13705         [ $ACTUAL == $EXPECTED ] ||
13706                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
13707 }
13708
13709 test_204a() {
13710         test_mkdir $DIR/$tdir
13711         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
13712
13713         check_default_stripe_attr --stripe-count
13714         check_default_stripe_attr --stripe-size
13715         check_default_stripe_attr --stripe-index
13716 }
13717 run_test 204a "Print default stripe attributes"
13718
13719 test_204b() {
13720         test_mkdir $DIR/$tdir
13721         $SETSTRIPE --stripe-count 1 $DIR/$tdir
13722
13723         check_default_stripe_attr --stripe-size
13724         check_default_stripe_attr --stripe-index
13725 }
13726 run_test 204b "Print default stripe size and offset"
13727
13728 test_204c() {
13729         test_mkdir $DIR/$tdir
13730         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
13731
13732         check_default_stripe_attr --stripe-count
13733         check_default_stripe_attr --stripe-index
13734 }
13735 run_test 204c "Print default stripe count and offset"
13736
13737 test_204d() {
13738         test_mkdir $DIR/$tdir
13739         $SETSTRIPE --stripe-index 0 $DIR/$tdir
13740
13741         check_default_stripe_attr --stripe-count
13742         check_default_stripe_attr --stripe-size
13743 }
13744 run_test 204d "Print default stripe count and size"
13745
13746 test_204e() {
13747         test_mkdir $DIR/$tdir
13748         $SETSTRIPE -d $DIR/$tdir
13749
13750         check_default_stripe_attr --stripe-count --raw
13751         check_default_stripe_attr --stripe-size --raw
13752         check_default_stripe_attr --stripe-index --raw
13753 }
13754 run_test 204e "Print raw stripe attributes"
13755
13756 test_204f() {
13757         test_mkdir $DIR/$tdir
13758         $SETSTRIPE --stripe-count 1 $DIR/$tdir
13759
13760         check_default_stripe_attr --stripe-size --raw
13761         check_default_stripe_attr --stripe-index --raw
13762 }
13763 run_test 204f "Print raw stripe size and offset"
13764
13765 test_204g() {
13766         test_mkdir $DIR/$tdir
13767         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
13768
13769         check_default_stripe_attr --stripe-count --raw
13770         check_default_stripe_attr --stripe-index --raw
13771 }
13772 run_test 204g "Print raw stripe count and offset"
13773
13774 test_204h() {
13775         test_mkdir $DIR/$tdir
13776         $SETSTRIPE --stripe-index 0 $DIR/$tdir
13777
13778         check_default_stripe_attr --stripe-count --raw
13779         check_default_stripe_attr --stripe-size --raw
13780 }
13781 run_test 204h "Print raw stripe count and size"
13782
13783 # Figure out which job scheduler is being used, if any,
13784 # or use a fake one
13785 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
13786         JOBENV=SLURM_JOB_ID
13787 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
13788         JOBENV=LSB_JOBID
13789 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
13790         JOBENV=PBS_JOBID
13791 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
13792         JOBENV=LOADL_STEP_ID
13793 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
13794         JOBENV=JOB_ID
13795 else
13796         $LCTL list_param jobid_name > /dev/null 2>&1
13797         if [ $? -eq 0 ]; then
13798                 JOBENV=nodelocal
13799         else
13800                 JOBENV=FAKE_JOBID
13801         fi
13802 fi
13803 LUSTRE_JOBID_SIZE=31 # plus NUL terminator
13804
13805 verify_jobstats() {
13806         local cmd=($1)
13807         shift
13808         local facets="$@"
13809
13810 # we don't really need to clear the stats for this test to work, since each
13811 # command has a unique jobid, but it makes debugging easier if needed.
13812 #       for facet in $facets; do
13813 #               local dev=$(convert_facet2label $facet)
13814 #               # clear old jobstats
13815 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
13816 #       done
13817
13818         # use a new JobID for each test, or we might see an old one
13819         [ "$JOBENV" = "FAKE_JOBID" ] &&
13820                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
13821
13822         JOBVAL=${!JOBENV:0:$LUSTRE_JOBID_SIZE}
13823
13824         [ "$JOBENV" = "nodelocal" ] && {
13825                 FAKE_JOBID=id.$testnum.%e.$RANDOM
13826                 $LCTL set_param jobid_name=$FAKE_JOBID
13827                 JOBVAL=${FAKE_JOBID/\%e/$(basename ${cmd[0]})}
13828         }
13829
13830         log "Test: ${cmd[*]}"
13831         log "Using JobID environment $($LCTL get_param -n jobid_var)=$JOBVAL"
13832
13833         if [ $JOBENV = "FAKE_JOBID" ]; then
13834                 FAKE_JOBID=$JOBVAL ${cmd[*]}
13835         else
13836                 ${cmd[*]}
13837         fi
13838
13839         # all files are created on OST0000
13840         for facet in $facets; do
13841                 local stats="*.$(convert_facet2label $facet).job_stats"
13842
13843                 # strip out libtool wrappers for in-tree executables
13844                 if [ $(do_facet $facet lctl get_param $stats |
13845                        sed -e 's/\.lt-/./' | grep -c $JOBVAL) -ne 1 ]; then
13846                         do_facet $facet lctl get_param $stats
13847                         error "No jobstats for $JOBVAL found on $facet::$stats"
13848                 fi
13849         done
13850 }
13851
13852 jobstats_set() {
13853         local new_jobenv=$1
13854
13855         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$new_jobenv
13856         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $new_jobenv
13857 }
13858
13859 test_205() { # Job stats
13860         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13861         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.1) ]] ||
13862                 skip "Need MDS version with at least 2.7.1"
13863         remote_mgs_nodsh && skip "remote MGS with nodsh"
13864         remote_mds_nodsh && skip "remote MDS with nodsh"
13865         remote_ost_nodsh && skip "remote OST with nodsh"
13866         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
13867                 skip "Server doesn't support jobstats"
13868         [[ $JOBID_VAR = disable ]] && skip_env "jobstats is disabled"
13869
13870         local old_jobenv=$($LCTL get_param -n jobid_var)
13871         [ $old_jobenv != $JOBENV ] && jobstats_set $JOBENV
13872         stack_trap "do_facet mgs \
13873                 $LCTL conf_param $FSNAME.sys.jobid_var=$old_jobenv" EXIT
13874
13875         changelog_register
13876
13877         local old_interval=$(do_facet $SINGLEMDS lctl get_param -n \
13878                                 mdt.*.job_cleanup_interval | head -n 1)
13879         local new_interval=5
13880         do_facet $SINGLEMDS \
13881                 $LCTL set_param mdt.*.job_cleanup_interval=$new_interval
13882         stack_trap "do_facet $SINGLEMDS \
13883                 $LCTL set_param mdt.*.job_cleanup_interval=$old_interval" EXIT
13884         local start=$SECONDS
13885
13886         local cmd
13887         # mkdir
13888         cmd="mkdir $DIR/$tdir"
13889         verify_jobstats "$cmd" "$SINGLEMDS"
13890         # rmdir
13891         cmd="rmdir $DIR/$tdir"
13892         verify_jobstats "$cmd" "$SINGLEMDS"
13893         # mkdir on secondary MDT
13894         if [ $MDSCOUNT -gt 1 ]; then
13895                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
13896                 verify_jobstats "$cmd" "mds2"
13897         fi
13898         # mknod
13899         cmd="mknod $DIR/$tfile c 1 3"
13900         verify_jobstats "$cmd" "$SINGLEMDS"
13901         # unlink
13902         cmd="rm -f $DIR/$tfile"
13903         verify_jobstats "$cmd" "$SINGLEMDS"
13904         # create all files on OST0000 so verify_jobstats can find OST stats
13905         # open & close
13906         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
13907         verify_jobstats "$cmd" "$SINGLEMDS"
13908         # setattr
13909         cmd="touch $DIR/$tfile"
13910         verify_jobstats "$cmd" "$SINGLEMDS ost1"
13911         # write
13912         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
13913         verify_jobstats "$cmd" "ost1"
13914         # read
13915         cancel_lru_locks osc
13916         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
13917         verify_jobstats "$cmd" "ost1"
13918         # truncate
13919         cmd="$TRUNCATE $DIR/$tfile 0"
13920         verify_jobstats "$cmd" "$SINGLEMDS ost1"
13921         # rename
13922         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
13923         verify_jobstats "$cmd" "$SINGLEMDS"
13924         # jobstats expiry - sleep until old stats should be expired
13925         local left=$((new_interval + 5 - (SECONDS - start)))
13926         [ $left -ge 0 ] && wait_update_facet $SINGLEMDS \
13927                 "lctl get_param *.*.job_stats | grep -c 'job_id.*mkdir'" \
13928                         "0" $left
13929         cmd="mkdir $DIR/$tdir.expire"
13930         verify_jobstats "$cmd" "$SINGLEMDS"
13931         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
13932             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
13933
13934         # Ensure that jobid are present in changelog (if supported by MDS)
13935         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.52) ];then
13936                 changelog_dump | tail -10
13937                 jobids=$(changelog_dump | tail -9 | grep -c "j=")
13938                 [ $jobids -eq 9 ] ||
13939                         error "Wrong changelog jobid count $jobids != 9"
13940
13941                 # LU-5862
13942                 JOBENV="disable"
13943                 jobstats_set $JOBENV
13944                 touch $DIR/$tfile
13945                 changelog_dump | grep $tfile
13946                 jobids=$(changelog_dump | grep $tfile | tail -1 | grep -c "j=")
13947                 [ $jobids -eq 0 ] ||
13948                         error "Unexpected jobids when jobid_var=$JOBENV"
13949         fi
13950
13951         lctl set_param jobid_var=USER jobid_name="S.%j.%e.%u.%h.E"
13952         JOBENV="JOBCOMPLEX"
13953         JOBCOMPLEX="S.$USER.touch.$(id -u).$(hostname).E"
13954
13955         verify_jobstats "touch $DIR/$tfile" $SINGLEMDS
13956 }
13957 run_test 205 "Verify job stats"
13958
13959 # LU-1480, LU-1773 and LU-1657
13960 test_206() {
13961         mkdir -p $DIR/$tdir
13962         $SETSTRIPE -c -1 $DIR/$tdir
13963 #define OBD_FAIL_LOV_INIT 0x1403
13964         $LCTL set_param fail_loc=0xa0001403
13965         $LCTL set_param fail_val=1
13966         touch $DIR/$tdir/$tfile || true
13967 }
13968 run_test 206 "fail lov_init_raid0() doesn't lbug"
13969
13970 test_207a() {
13971         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
13972         local fsz=`stat -c %s $DIR/$tfile`
13973         cancel_lru_locks mdc
13974
13975         # do not return layout in getattr intent
13976 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
13977         $LCTL set_param fail_loc=0x170
13978         local sz=`stat -c %s $DIR/$tfile`
13979
13980         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
13981
13982         rm -rf $DIR/$tfile
13983 }
13984 run_test 207a "can refresh layout at glimpse"
13985
13986 test_207b() {
13987         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
13988         local cksum=`md5sum $DIR/$tfile`
13989         local fsz=`stat -c %s $DIR/$tfile`
13990         cancel_lru_locks mdc
13991         cancel_lru_locks osc
13992
13993         # do not return layout in getattr intent
13994 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
13995         $LCTL set_param fail_loc=0x171
13996
13997         # it will refresh layout after the file is opened but before read issues
13998         echo checksum is "$cksum"
13999         echo "$cksum" |md5sum -c --quiet || error "file differs"
14000
14001         rm -rf $DIR/$tfile
14002 }
14003 run_test 207b "can refresh layout at open"
14004
14005 test_208() {
14006         # FIXME: in this test suite, only RD lease is used. This is okay
14007         # for now as only exclusive open is supported. After generic lease
14008         # is done, this test suite should be revised. - Jinshan
14009
14010         remote_mds_nodsh && skip "remote MDS with nodsh"
14011         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
14012                 skip "Need MDS version at least 2.4.52"
14013
14014         echo "==== test 1: verify get lease work"
14015         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
14016
14017         echo "==== test 2: verify lease can be broken by upcoming open"
14018         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
14019         local PID=$!
14020         sleep 1
14021
14022         $MULTIOP $DIR/$tfile oO_RDONLY:c
14023         kill -USR1 $PID && wait $PID || error "break lease error"
14024
14025         echo "==== test 3: verify lease can't be granted if an open already exists"
14026         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
14027         local PID=$!
14028         sleep 1
14029
14030         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
14031         kill -USR1 $PID && wait $PID || error "open file error"
14032
14033         echo "==== test 4: lease can sustain over recovery"
14034         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
14035         PID=$!
14036         sleep 1
14037
14038         fail mds1
14039
14040         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
14041
14042         echo "==== test 5: lease broken can't be regained by replay"
14043         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
14044         PID=$!
14045         sleep 1
14046
14047         # open file to break lease and then recovery
14048         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
14049         fail mds1
14050
14051         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
14052
14053         rm -f $DIR/$tfile
14054 }
14055 run_test 208 "Exclusive open"
14056
14057 test_209() {
14058         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
14059                 skip_env "must have disp_stripe"
14060
14061         touch $DIR/$tfile
14062         sync; sleep 5; sync;
14063
14064         echo 3 > /proc/sys/vm/drop_caches
14065         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
14066
14067         # open/close 500 times
14068         for i in $(seq 500); do
14069                 cat $DIR/$tfile
14070         done
14071
14072         echo 3 > /proc/sys/vm/drop_caches
14073         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
14074
14075         echo "before: $req_before, after: $req_after"
14076         [ $((req_after - req_before)) -ge 300 ] &&
14077                 error "open/close requests are not freed"
14078         return 0
14079 }
14080 run_test 209 "read-only open/close requests should be freed promptly"
14081
14082 test_212() {
14083         size=`date +%s`
14084         size=$((size % 8192 + 1))
14085         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
14086         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
14087         rm -f $DIR/f212 $DIR/f212.xyz
14088 }
14089 run_test 212 "Sendfile test ============================================"
14090
14091 test_213() {
14092         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
14093         cancel_lru_locks osc
14094         lctl set_param fail_loc=0x8000040f
14095         # generate a read lock
14096         cat $DIR/$tfile > /dev/null
14097         # write to the file, it will try to cancel the above read lock.
14098         cat /etc/hosts >> $DIR/$tfile
14099 }
14100 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
14101
14102 test_214() { # for bug 20133
14103         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
14104         for (( i=0; i < 340; i++ )) ; do
14105                 touch $DIR/$tdir/d214c/a$i
14106         done
14107
14108         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
14109         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
14110         ls $DIR/d214c || error "ls $DIR/d214c failed"
14111         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
14112         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
14113 }
14114 run_test 214 "hash-indexed directory test - bug 20133"
14115
14116 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
14117 create_lnet_proc_files() {
14118         lctl get_param -n $1 >$TMP/lnet_$1.sys || error "cannot read lnet.$1"
14119 }
14120
14121 # counterpart of create_lnet_proc_files
14122 remove_lnet_proc_files() {
14123         rm -f $TMP/lnet_$1.sys
14124 }
14125
14126 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
14127 # 3rd arg as regexp for body
14128 check_lnet_proc_stats() {
14129         local l=$(cat "$TMP/lnet_$1" |wc -l)
14130         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
14131
14132         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
14133 }
14134
14135 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
14136 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
14137 # optional and can be regexp for 2nd line (lnet.routes case)
14138 check_lnet_proc_entry() {
14139         local blp=2          # blp stands for 'position of 1st line of body'
14140         [ -z "$5" ] || blp=3 # lnet.routes case
14141
14142         local l=$(cat "$TMP/lnet_$1" |wc -l)
14143         # subtracting one from $blp because the body can be empty
14144         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
14145
14146         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
14147                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
14148
14149         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
14150                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
14151
14152         # bail out if any unexpected line happened
14153         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
14154         [ "$?" != 0 ] || error "$2 misformatted"
14155 }
14156
14157 test_215() { # for bugs 18102, 21079, 21517
14158         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14159
14160         local N='(0|[1-9][0-9]*)'       # non-negative numeric
14161         local P='[1-9][0-9]*'           # positive numeric
14162         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
14163         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
14164         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
14165         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
14166
14167         local L1 # regexp for 1st line
14168         local L2 # regexp for 2nd line (optional)
14169         local BR # regexp for the rest (body)
14170
14171         # lnet.stats should look as 11 space-separated non-negative numerics
14172         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
14173         create_lnet_proc_files "stats"
14174         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
14175         remove_lnet_proc_files "stats"
14176
14177         # lnet.routes should look like this:
14178         # Routing disabled/enabled
14179         # net hops priority state router
14180         # where net is a string like tcp0, hops > 0, priority >= 0,
14181         # state is up/down,
14182         # router is a string like 192.168.1.1@tcp2
14183         L1="^Routing (disabled|enabled)$"
14184         L2="^net +hops +priority +state +router$"
14185         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
14186         create_lnet_proc_files "routes"
14187         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
14188         remove_lnet_proc_files "routes"
14189
14190         # lnet.routers should look like this:
14191         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
14192         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
14193         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
14194         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
14195         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
14196         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
14197         create_lnet_proc_files "routers"
14198         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
14199         remove_lnet_proc_files "routers"
14200
14201         # lnet.peers should look like this:
14202         # nid refs state last max rtr min tx min queue
14203         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
14204         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
14205         # numeric (0 or >0 or <0), queue >= 0.
14206         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
14207         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
14208         create_lnet_proc_files "peers"
14209         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
14210         remove_lnet_proc_files "peers"
14211
14212         # lnet.buffers  should look like this:
14213         # pages count credits min
14214         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
14215         L1="^pages +count +credits +min$"
14216         BR="^ +$N +$N +$I +$I$"
14217         create_lnet_proc_files "buffers"
14218         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
14219         remove_lnet_proc_files "buffers"
14220
14221         # lnet.nis should look like this:
14222         # nid status alive refs peer rtr max tx min
14223         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
14224         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
14225         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
14226         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
14227         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
14228         create_lnet_proc_files "nis"
14229         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
14230         remove_lnet_proc_files "nis"
14231
14232         # can we successfully write to lnet.stats?
14233         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
14234 }
14235 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
14236
14237 test_216() { # bug 20317
14238         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14239         remote_ost_nodsh && skip "remote OST with nodsh"
14240
14241         local node
14242         local facets=$(get_facets OST)
14243         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
14244
14245         save_lustre_params client "osc.*.contention_seconds" > $p
14246         save_lustre_params $facets \
14247                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
14248         save_lustre_params $facets \
14249                 "ldlm.namespaces.filter-*.contended_locks" >> $p
14250         save_lustre_params $facets \
14251                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
14252         clear_stats osc.*.osc_stats
14253
14254         # agressive lockless i/o settings
14255         do_nodes $(comma_list $(osts_nodes)) \
14256                 "lctl set_param -n ldlm.namespaces.*.max_nolock_bytes=2000000 \
14257                         ldlm.namespaces.filter-*.contended_locks=0 \
14258                         ldlm.namespaces.filter-*.contention_seconds=60"
14259         lctl set_param -n osc.*.contention_seconds=60
14260
14261         $DIRECTIO write $DIR/$tfile 0 10 4096
14262         $CHECKSTAT -s 40960 $DIR/$tfile
14263
14264         # disable lockless i/o
14265         do_nodes $(comma_list $(osts_nodes)) \
14266                 "lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes=0 \
14267                         ldlm.namespaces.filter-*.contended_locks=32 \
14268                         ldlm.namespaces.filter-*.contention_seconds=0"
14269         lctl set_param -n osc.*.contention_seconds=0
14270         clear_stats osc.*.osc_stats
14271
14272         dd if=/dev/zero of=$DIR/$tfile count=0
14273         $CHECKSTAT -s 0 $DIR/$tfile
14274
14275         restore_lustre_params <$p
14276         rm -f $p
14277         rm $DIR/$tfile
14278 }
14279 run_test 216 "check lockless direct write updates file size and kms correctly"
14280
14281 test_217() { # bug 22430
14282         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14283
14284         local node
14285         local nid
14286
14287         for node in $(nodes_list); do
14288                 nid=$(host_nids_address $node $NETTYPE)
14289                 if [[ $nid = *-* ]] ; then
14290                         echo "lctl ping $(h2nettype $nid)"
14291                         lctl ping $(h2nettype $nid)
14292                 else
14293                         echo "skipping $node (no hyphen detected)"
14294                 fi
14295         done
14296 }
14297 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
14298
14299 test_218() {
14300        # do directio so as not to populate the page cache
14301        log "creating a 10 Mb file"
14302        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
14303        log "starting reads"
14304        dd if=$DIR/$tfile of=/dev/null bs=4096 &
14305        log "truncating the file"
14306        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
14307        log "killing dd"
14308        kill %+ || true # reads might have finished
14309        echo "wait until dd is finished"
14310        wait
14311        log "removing the temporary file"
14312        rm -rf $DIR/$tfile || error "tmp file removal failed"
14313 }
14314 run_test 218 "parallel read and truncate should not deadlock"
14315
14316 test_219() {
14317         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14318
14319         # write one partial page
14320         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
14321         # set no grant so vvp_io_commit_write will do sync write
14322         $LCTL set_param fail_loc=0x411
14323         # write a full page at the end of file
14324         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
14325
14326         $LCTL set_param fail_loc=0
14327         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
14328         $LCTL set_param fail_loc=0x411
14329         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
14330
14331         # LU-4201
14332         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
14333         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
14334 }
14335 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
14336
14337 test_220() { #LU-325
14338         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14339         remote_ost_nodsh && skip "remote OST with nodsh"
14340         remote_mds_nodsh && skip "remote MDS with nodsh"
14341         remote_mgs_nodsh && skip "remote MGS with nodsh"
14342
14343         local OSTIDX=0
14344
14345         # create on MDT0000 so the last_id and next_id are correct
14346         mkdir $DIR/$tdir
14347         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
14348         OST=${OST%_UUID}
14349
14350         # on the mdt's osc
14351         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
14352         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
14353                         osc.$mdtosc_proc1.prealloc_last_id)
14354         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
14355                         osc.$mdtosc_proc1.prealloc_next_id)
14356
14357         $LFS df -i
14358
14359         if ! combined_mgs_mds ; then
14360                 mount_mgs_client
14361         fi
14362
14363         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
14364         #define OBD_FAIL_OST_ENOINO              0x229
14365         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
14366         create_pool $FSNAME.$TESTNAME || return 1
14367         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
14368
14369         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
14370
14371         MDSOBJS=$((last_id - next_id))
14372         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
14373
14374         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
14375         echo "OST still has $count kbytes free"
14376
14377         echo "create $MDSOBJS files @next_id..."
14378         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
14379
14380         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
14381                         osc.$mdtosc_proc1.prealloc_last_id)
14382         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
14383                         osc.$mdtosc_proc1.prealloc_next_id)
14384
14385         echo "after creation, last_id=$last_id2, next_id=$next_id2"
14386         $LFS df -i
14387
14388         echo "cleanup..."
14389
14390         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
14391         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
14392
14393         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST ||
14394                 error "$LCTL pool_remove $FSNAME.$TESTNAME $OST failed"
14395         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
14396                 error "$LCTL pool_destroy $FSNAME.$TESTNAME failed"
14397         echo "unlink $MDSOBJS files @$next_id..."
14398         unlinkmany $DIR/$tdir/f $MDSOBJS || error "unlinkmany failed"
14399
14400         if ! combined_mgs_mds ; then
14401                 umount_mgs_client
14402         fi
14403 }
14404 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
14405
14406 test_221() {
14407         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14408
14409         dd if=`which date` of=$MOUNT/date oflag=sync
14410         chmod +x $MOUNT/date
14411
14412         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
14413         $LCTL set_param fail_loc=0x80001401
14414
14415         $MOUNT/date > /dev/null
14416         rm -f $MOUNT/date
14417 }
14418 run_test 221 "make sure fault and truncate race to not cause OOM"
14419
14420 test_222a () {
14421         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14422
14423         rm -rf $DIR/$tdir
14424         test_mkdir $DIR/$tdir
14425         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14426         createmany -o $DIR/$tdir/$tfile 10
14427         cancel_lru_locks mdc
14428         cancel_lru_locks osc
14429         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
14430         $LCTL set_param fail_loc=0x31a
14431         ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
14432         $LCTL set_param fail_loc=0
14433         rm -r $DIR/$tdir
14434 }
14435 run_test 222a "AGL for ls should not trigger CLIO lock failure"
14436
14437 test_222b () {
14438         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14439
14440         rm -rf $DIR/$tdir
14441         test_mkdir $DIR/$tdir
14442         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14443         createmany -o $DIR/$tdir/$tfile 10
14444         cancel_lru_locks mdc
14445         cancel_lru_locks osc
14446         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
14447         $LCTL set_param fail_loc=0x31a
14448         rm -r $DIR/$tdir || error "AGL for rmdir failed"
14449         $LCTL set_param fail_loc=0
14450 }
14451 run_test 222b "AGL for rmdir should not trigger CLIO lock failure"
14452
14453 test_223 () {
14454         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14455
14456         rm -rf $DIR/$tdir
14457         test_mkdir $DIR/$tdir
14458         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14459         createmany -o $DIR/$tdir/$tfile 10
14460         cancel_lru_locks mdc
14461         cancel_lru_locks osc
14462         #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
14463         $LCTL set_param fail_loc=0x31b
14464         ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
14465         $LCTL set_param fail_loc=0
14466         rm -r $DIR/$tdir
14467 }
14468 run_test 223 "osc reenqueue if without AGL lock granted ======================="
14469
14470 test_224a() { # LU-1039, MRP-303
14471         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14472
14473         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
14474         $LCTL set_param fail_loc=0x508
14475         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
14476         $LCTL set_param fail_loc=0
14477         df $DIR
14478 }
14479 run_test 224a "Don't panic on bulk IO failure"
14480
14481 test_224b() { # LU-1039, MRP-303
14482         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14483
14484         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
14485         cancel_lru_locks osc
14486         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
14487         $LCTL set_param fail_loc=0x515
14488         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
14489         $LCTL set_param fail_loc=0
14490         df $DIR
14491 }
14492 run_test 224b "Don't panic on bulk IO failure"
14493
14494 test_224c() { # LU-6441
14495         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14496         remote_mds_nodsh && skip "remote MDS with nodsh"
14497
14498         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
14499         save_writethrough $p
14500         set_cache writethrough on
14501
14502         local pages_per_rpc=$($LCTL get_param \
14503                                 osc.*.max_pages_per_rpc)
14504         local at_max=$($LCTL get_param -n at_max)
14505         local timeout=$($LCTL get_param -n timeout)
14506         local test_at="$LCTL get_param -n at_max"
14507         local param_at="$FSNAME.sys.at_max"
14508         local test_timeout="$LCTL get_param -n timeout"
14509         local param_timeout="$FSNAME.sys.timeout"
14510
14511         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
14512
14513         set_conf_param_and_check client "$test_at" "$param_at" 0 ||
14514                 error "conf_param at_max=0 failed"
14515         set_conf_param_and_check client "$test_timeout" "$param_timeout" 5 ||
14516                 error "conf_param timeout=5 failed"
14517
14518         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3   0x520
14519         do_facet ost1 $LCTL set_param fail_loc=0x520
14520         $LFS setstripe -c 1 -i 0 $DIR/$tfile
14521         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
14522         sync
14523         do_facet ost1 $LCTL set_param fail_loc=0
14524
14525         set_conf_param_and_check client "$test_at" "$param_at" $at_max ||
14526                 error "conf_param at_max=$at_max failed"
14527         set_conf_param_and_check client "$test_timeout" "$param_timeout" \
14528                 $timeout || error "conf_param timeout=$timeout failed"
14529
14530         $LCTL set_param -n $pages_per_rpc
14531         restore_lustre_params < $p
14532         rm -f $p
14533 }
14534 run_test 224c "Don't hang if one of md lost during large bulk RPC"
14535
14536 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
14537 test_225a () {
14538         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14539         if [ -z ${MDSSURVEY} ]; then
14540                 skip_env "mds-survey not found"
14541         fi
14542         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
14543                 skip "Need MDS version at least 2.2.51"
14544
14545         local mds=$(facet_host $SINGLEMDS)
14546         local target=$(do_nodes $mds 'lctl dl' |
14547                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
14548
14549         local cmd1="file_count=1000 thrhi=4"
14550         local cmd2="dir_count=2 layer=mdd stripe_count=0"
14551         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
14552         local cmd="$cmd1 $cmd2 $cmd3"
14553
14554         rm -f ${TMP}/mds_survey*
14555         echo + $cmd
14556         eval $cmd || error "mds-survey with zero-stripe failed"
14557         cat ${TMP}/mds_survey*
14558         rm -f ${TMP}/mds_survey*
14559 }
14560 run_test 225a "Metadata survey sanity with zero-stripe"
14561
14562 test_225b () {
14563         if [ -z ${MDSSURVEY} ]; then
14564                 skip_env "mds-survey not found"
14565         fi
14566         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
14567                 skip "Need MDS version at least 2.2.51"
14568         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14569         remote_mds_nodsh && skip "remote MDS with nodsh"
14570         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
14571                 skip_env "Need to mount OST to test"
14572         fi
14573
14574         local mds=$(facet_host $SINGLEMDS)
14575         local target=$(do_nodes $mds 'lctl dl' |
14576                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
14577
14578         local cmd1="file_count=1000 thrhi=4"
14579         local cmd2="dir_count=2 layer=mdd stripe_count=1"
14580         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
14581         local cmd="$cmd1 $cmd2 $cmd3"
14582
14583         rm -f ${TMP}/mds_survey*
14584         echo + $cmd
14585         eval $cmd || error "mds-survey with stripe_count failed"
14586         cat ${TMP}/mds_survey*
14587         rm -f ${TMP}/mds_survey*
14588 }
14589 run_test 225b "Metadata survey sanity with stripe_count = 1"
14590
14591 mcreate_path2fid () {
14592         local mode=$1
14593         local major=$2
14594         local minor=$3
14595         local name=$4
14596         local desc=$5
14597         local path=$DIR/$tdir/$name
14598         local fid
14599         local rc
14600         local fid_path
14601
14602         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
14603                 error "cannot create $desc"
14604
14605         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
14606         rc=$?
14607         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
14608
14609         fid_path=$($LFS fid2path $MOUNT $fid)
14610         rc=$?
14611         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
14612
14613         [ "$path" == "$fid_path" ] ||
14614                 error "fid2path returned $fid_path, expected $path"
14615
14616         echo "pass with $path and $fid"
14617 }
14618
14619 test_226a () {
14620         rm -rf $DIR/$tdir
14621         mkdir -p $DIR/$tdir
14622
14623         mcreate_path2fid 0010666 0 0 fifo "FIFO"
14624         mcreate_path2fid 0020666 1 3 null "character special file (null)"
14625         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
14626         mcreate_path2fid 0040666 0 0 dir "directory"
14627         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
14628         mcreate_path2fid 0100666 0 0 file "regular file"
14629         mcreate_path2fid 0120666 0 0 link "symbolic link"
14630         mcreate_path2fid 0140666 0 0 sock "socket"
14631 }
14632 run_test 226a "call path2fid and fid2path on files of all type"
14633
14634 test_226b () {
14635         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14636
14637         local MDTIDX=1
14638
14639         rm -rf $DIR/$tdir
14640         mkdir -p $DIR/$tdir
14641         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
14642                 error "create remote directory failed"
14643         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
14644         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
14645                                 "character special file (null)"
14646         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
14647                                 "character special file (no device)"
14648         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
14649         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
14650                                 "block special file (loop)"
14651         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
14652         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
14653         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
14654 }
14655 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
14656
14657 # LU-1299 Executing or running ldd on a truncated executable does not
14658 # cause an out-of-memory condition.
14659 test_227() {
14660         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14661         [ -z "$(which ldd)" ] && skip_env "should have ldd tool"
14662
14663         dd if=$(which date) of=$MOUNT/date bs=1k count=1
14664         chmod +x $MOUNT/date
14665
14666         $MOUNT/date > /dev/null
14667         ldd $MOUNT/date > /dev/null
14668         rm -f $MOUNT/date
14669 }
14670 run_test 227 "running truncated executable does not cause OOM"
14671
14672 # LU-1512 try to reuse idle OI blocks
14673 test_228a() {
14674         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14675         remote_mds_nodsh && skip "remote MDS with nodsh"
14676         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
14677                 skip_env "ldiskfs only test"
14678
14679         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14680         local myDIR=$DIR/$tdir
14681
14682         mkdir -p $myDIR
14683         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14684         $LCTL set_param fail_loc=0x80001002
14685         createmany -o $myDIR/t- 10000
14686         $LCTL set_param fail_loc=0
14687         # The guard is current the largest FID holder
14688         touch $myDIR/guard
14689         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14690                     tr -d '[')
14691         local IDX=$(($SEQ % 64))
14692
14693         do_facet $SINGLEMDS sync
14694         # Make sure journal flushed.
14695         sleep 6
14696         local blk1=$(do_facet $SINGLEMDS \
14697                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14698                      grep Blockcount | awk '{print $4}')
14699
14700         # Remove old files, some OI blocks will become idle.
14701         unlinkmany $myDIR/t- 10000
14702         # Create new files, idle OI blocks should be reused.
14703         createmany -o $myDIR/t- 2000
14704         do_facet $SINGLEMDS sync
14705         # Make sure journal flushed.
14706         sleep 6
14707         local blk2=$(do_facet $SINGLEMDS \
14708                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14709                      grep Blockcount | awk '{print $4}')
14710
14711         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14712 }
14713 run_test 228a "try to reuse idle OI blocks"
14714
14715 test_228b() {
14716         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14717         remote_mds_nodsh && skip "remote MDS with nodsh"
14718         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
14719                 skip_env "ldiskfs only test"
14720
14721         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14722         local myDIR=$DIR/$tdir
14723
14724         mkdir -p $myDIR
14725         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14726         $LCTL set_param fail_loc=0x80001002
14727         createmany -o $myDIR/t- 10000
14728         $LCTL set_param fail_loc=0
14729         # The guard is current the largest FID holder
14730         touch $myDIR/guard
14731         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14732                     tr -d '[')
14733         local IDX=$(($SEQ % 64))
14734
14735         do_facet $SINGLEMDS sync
14736         # Make sure journal flushed.
14737         sleep 6
14738         local blk1=$(do_facet $SINGLEMDS \
14739                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14740                      grep Blockcount | awk '{print $4}')
14741
14742         # Remove old files, some OI blocks will become idle.
14743         unlinkmany $myDIR/t- 10000
14744
14745         # stop the MDT
14746         stop $SINGLEMDS || error "Fail to stop MDT."
14747         # remount the MDT
14748         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
14749
14750         df $MOUNT || error "Fail to df."
14751         # Create new files, idle OI blocks should be reused.
14752         createmany -o $myDIR/t- 2000
14753         do_facet $SINGLEMDS sync
14754         # Make sure journal flushed.
14755         sleep 6
14756         local blk2=$(do_facet $SINGLEMDS \
14757                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14758                      grep Blockcount | awk '{print $4}')
14759
14760         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14761 }
14762 run_test 228b "idle OI blocks can be reused after MDT restart"
14763
14764 #LU-1881
14765 test_228c() {
14766         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14767         remote_mds_nodsh && skip "remote MDS with nodsh"
14768         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
14769                 skip_env "ldiskfs only test"
14770
14771         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14772         local myDIR=$DIR/$tdir
14773
14774         mkdir -p $myDIR
14775         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14776         $LCTL set_param fail_loc=0x80001002
14777         # 20000 files can guarantee there are index nodes in the OI file
14778         createmany -o $myDIR/t- 20000
14779         $LCTL set_param fail_loc=0
14780         # The guard is current the largest FID holder
14781         touch $myDIR/guard
14782         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14783                     tr -d '[')
14784         local IDX=$(($SEQ % 64))
14785
14786         do_facet $SINGLEMDS sync
14787         # Make sure journal flushed.
14788         sleep 6
14789         local blk1=$(do_facet $SINGLEMDS \
14790                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14791                      grep Blockcount | awk '{print $4}')
14792
14793         # Remove old files, some OI blocks will become idle.
14794         unlinkmany $myDIR/t- 20000
14795         rm -f $myDIR/guard
14796         # The OI file should become empty now
14797
14798         # Create new files, idle OI blocks should be reused.
14799         createmany -o $myDIR/t- 2000
14800         do_facet $SINGLEMDS sync
14801         # Make sure journal flushed.
14802         sleep 6
14803         local blk2=$(do_facet $SINGLEMDS \
14804                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14805                      grep Blockcount | awk '{print $4}')
14806
14807         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14808 }
14809 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
14810
14811 test_229() { # LU-2482, LU-3448
14812         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14813         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
14814         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
14815                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53"
14816
14817         rm -f $DIR/$tfile
14818
14819         # Create a file with a released layout and stripe count 2.
14820         $MULTIOP $DIR/$tfile H2c ||
14821                 error "failed to create file with released layout"
14822
14823         $GETSTRIPE -v $DIR/$tfile
14824
14825         local pattern=$($GETSTRIPE -L $DIR/$tfile)
14826         [ X"$pattern" = X"released" ] || error "pattern error ($pattern)"
14827
14828         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
14829         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
14830         stat $DIR/$tfile || error "failed to stat released file"
14831
14832         chown $RUNAS_ID $DIR/$tfile ||
14833                 error "chown $RUNAS_ID $DIR/$tfile failed"
14834
14835         chgrp $RUNAS_ID $DIR/$tfile ||
14836                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
14837
14838         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
14839         rm $DIR/$tfile || error "failed to remove released file"
14840 }
14841 run_test 229 "getstripe/stat/rm/attr changes work on released files"
14842
14843 test_230a() {
14844         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14845         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14846
14847         local MDTIDX=1
14848
14849         test_mkdir $DIR/$tdir
14850         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
14851         local mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230_local)
14852         [ $mdt_idx -ne 0 ] &&
14853                 error "create local directory on wrong MDT $mdt_idx"
14854
14855         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
14856                         error "create remote directory failed"
14857         local mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230)
14858         [ $mdt_idx -ne $MDTIDX ] &&
14859                 error "create remote directory on wrong MDT $mdt_idx"
14860
14861         createmany -o $DIR/$tdir/test_230/t- 10 ||
14862                 error "create files on remote directory failed"
14863         mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230/t-0)
14864         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
14865         rm -r $DIR/$tdir || error "unlink remote directory failed"
14866 }
14867 run_test 230a "Create remote directory and files under the remote directory"
14868
14869 test_230b() {
14870         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14871         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14872
14873         local MDTIDX=1
14874         local mdt_index
14875         local i
14876         local file
14877         local pid
14878         local stripe_count
14879         local migrate_dir=$DIR/$tdir/migrate_dir
14880         local other_dir=$DIR/$tdir/other_dir
14881
14882         test_mkdir $DIR/$tdir
14883         test_mkdir -i0 -c1 $migrate_dir
14884         test_mkdir -i0 -c1 $other_dir
14885         for ((i=0; i<10; i++)); do
14886                 mkdir -p $migrate_dir/dir_${i}
14887                 createmany -o $migrate_dir/dir_${i}/f 10 ||
14888                         error "create files under remote dir failed $i"
14889         done
14890
14891         cp /etc/passwd $migrate_dir/$tfile
14892         cp /etc/passwd $other_dir/$tfile
14893         chattr +SAD $migrate_dir
14894         chattr +SAD $migrate_dir/$tfile
14895
14896         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
14897         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
14898         local old_dir_mode=$(stat -c%f $migrate_dir)
14899         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
14900
14901         mkdir -p $migrate_dir/dir_default_stripe2
14902         $SETSTRIPE -c 2 $migrate_dir/dir_default_stripe2
14903         $SETSTRIPE -c 2 $migrate_dir/${tfile}_stripe2
14904
14905         mkdir -p $other_dir
14906         ln $migrate_dir/$tfile $other_dir/luna
14907         ln $migrate_dir/$tfile $migrate_dir/sofia
14908         ln $other_dir/$tfile $migrate_dir/david
14909         ln -s $migrate_dir/$tfile $other_dir/zachary
14910         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
14911         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
14912
14913         $LFS migrate -m $MDTIDX $migrate_dir ||
14914                 error "fails on migrating remote dir to MDT1"
14915
14916         echo "migratate to MDT1, then checking.."
14917         for ((i = 0; i < 10; i++)); do
14918                 for file in $(find $migrate_dir/dir_${i}); do
14919                         mdt_index=$($LFS getstripe -m $file)
14920                         [ $mdt_index == $MDTIDX ] ||
14921                                 error "$file is not on MDT${MDTIDX}"
14922                 done
14923         done
14924
14925         # the multiple link file should still in MDT0
14926         mdt_index=$($LFS getstripe -m $migrate_dir/$tfile)
14927         [ $mdt_index == 0 ] ||
14928                 error "$file is not on MDT${MDTIDX}"
14929
14930         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
14931         [ "$old_dir_flag" = "$new_dir_flag" ] ||
14932                 error " expect $old_dir_flag get $new_dir_flag"
14933
14934         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
14935         [ "$old_file_flag" = "$new_file_flag" ] ||
14936                 error " expect $old_file_flag get $new_file_flag"
14937
14938         local new_dir_mode=$(stat -c%f $migrate_dir)
14939         [ "$old_dir_mode" = "$new_dir_mode" ] ||
14940                 error "expect mode $old_dir_mode get $new_dir_mode"
14941
14942         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
14943         [ "$old_file_mode" = "$new_file_mode" ] ||
14944                 error "expect mode $old_file_mode get $new_file_mode"
14945
14946         diff /etc/passwd $migrate_dir/$tfile ||
14947                 error "$tfile different after migration"
14948
14949         diff /etc/passwd $other_dir/luna ||
14950                 error "luna different after migration"
14951
14952         diff /etc/passwd $migrate_dir/sofia ||
14953                 error "sofia different after migration"
14954
14955         diff /etc/passwd $migrate_dir/david ||
14956                 error "david different after migration"
14957
14958         diff /etc/passwd $other_dir/zachary ||
14959                 error "zachary different after migration"
14960
14961         diff /etc/passwd $migrate_dir/${tfile}_ln ||
14962                 error "${tfile}_ln different after migration"
14963
14964         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
14965                 error "${tfile}_ln_other different after migration"
14966
14967         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
14968         [ $stripe_count = 2 ] ||
14969                 error "dir strpe_count $d != 2 after migration."
14970
14971         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
14972         [ $stripe_count = 2 ] ||
14973                 error "file strpe_count $d != 2 after migration."
14974
14975         #migrate back to MDT0
14976         MDTIDX=0
14977
14978         $LFS migrate -m $MDTIDX $migrate_dir ||
14979                 error "fails on migrating remote dir to MDT0"
14980
14981         echo "migrate back to MDT0, checking.."
14982         for file in $(find $migrate_dir); do
14983                 mdt_index=$($LFS getstripe -m $file)
14984                 [ $mdt_index == $MDTIDX ] ||
14985                         error "$file is not on MDT${MDTIDX}"
14986         done
14987
14988         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
14989         [ "$old_dir_flag" = "$new_dir_flag" ] ||
14990                 error " expect $old_dir_flag get $new_dir_flag"
14991
14992         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
14993         [ "$old_file_flag" = "$new_file_flag" ] ||
14994                 error " expect $old_file_flag get $new_file_flag"
14995
14996         local new_dir_mode=$(stat -c%f $migrate_dir)
14997         [ "$old_dir_mode" = "$new_dir_mode" ] ||
14998                 error "expect mode $old_dir_mode get $new_dir_mode"
14999
15000         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
15001         [ "$old_file_mode" = "$new_file_mode" ] ||
15002                 error "expect mode $old_file_mode get $new_file_mode"
15003
15004         diff /etc/passwd ${migrate_dir}/$tfile ||
15005                 error "$tfile different after migration"
15006
15007         diff /etc/passwd ${other_dir}/luna ||
15008                 error "luna different after migration"
15009
15010         diff /etc/passwd ${migrate_dir}/sofia ||
15011                 error "sofia different after migration"
15012
15013         diff /etc/passwd ${other_dir}/zachary ||
15014                 error "zachary different after migration"
15015
15016         diff /etc/passwd $migrate_dir/${tfile}_ln ||
15017                 error "${tfile}_ln different after migration"
15018
15019         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
15020                 error "${tfile}_ln_other different after migration"
15021
15022         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
15023         [ $stripe_count = 2 ] ||
15024                 error "dir strpe_count $d != 2 after migration."
15025
15026         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
15027         [ $stripe_count = 2 ] ||
15028                 error "file strpe_count $d != 2 after migration."
15029
15030         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15031 }
15032 run_test 230b "migrate directory"
15033
15034 test_230c() {
15035         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15036         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15037         remote_mds_nodsh && skip "remote MDS with nodsh"
15038
15039         local MDTIDX=1
15040         local mdt_index
15041         local file
15042         local migrate_dir=$DIR/$tdir/migrate_dir
15043
15044         #If migrating directory fails in the middle, all entries of
15045         #the directory is still accessiable.
15046         test_mkdir $DIR/$tdir
15047         test_mkdir -i0 -c1 $migrate_dir
15048         stat $migrate_dir
15049         createmany -o $migrate_dir/f 10 ||
15050                 error "create files under ${migrate_dir} failed"
15051
15052         #failed after migrating 5 entries
15053         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
15054         do_facet mds1 lctl set_param fail_loc=0x20001801
15055         do_facet mds1 lctl  set_param fail_val=5
15056         local t=$(ls $migrate_dir | wc -l)
15057         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
15058                 error "migrate should fail after 5 entries"
15059
15060         mkdir $migrate_dir/dir &&
15061                 error "mkdir succeeds under migrating directory"
15062         touch $migrate_dir/file &&
15063                 error "touch file succeeds under migrating directory"
15064
15065         local u=$(ls $migrate_dir | wc -l)
15066         [ "$u" == "$t" ] || error "$u != $t during migration"
15067
15068         for file in $(find $migrate_dir); do
15069                 stat $file || error "stat $file failed"
15070         done
15071
15072         do_facet mds1 lctl set_param fail_loc=0
15073         do_facet mds1 lctl set_param fail_val=0
15074
15075         $LFS migrate -m $MDTIDX $migrate_dir ||
15076                 error "migrate open files should failed with open files"
15077
15078         echo "Finish migration, then checking.."
15079         for file in $(find $migrate_dir); do
15080                 mdt_index=$($LFS getstripe -m $file)
15081                 [ $mdt_index == $MDTIDX ] ||
15082                         error "$file is not on MDT${MDTIDX}"
15083         done
15084
15085         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15086 }
15087 run_test 230c "check directory accessiblity if migration is failed"
15088
15089 test_230d() {
15090         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15091         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15092
15093         local MDTIDX=1
15094         local mdt_index
15095         local migrate_dir=$DIR/$tdir/migrate_dir
15096         local i
15097         local j
15098
15099         test_mkdir $DIR/$tdir
15100         test_mkdir -i0 -c1 $migrate_dir
15101
15102         for ((i=0; i<100; i++)); do
15103                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
15104                 createmany -o $migrate_dir/dir_${i}/f 100 ||
15105                         error "create files under remote dir failed $i"
15106         done
15107
15108         $LFS migrate -m $MDTIDX $migrate_dir ||
15109                 error "migrate remote dir error"
15110
15111         echo "Finish migration, then checking.."
15112         for file in $(find $migrate_dir); do
15113                 mdt_index=$($LFS getstripe -m $file)
15114                 [ $mdt_index == $MDTIDX ] ||
15115                         error "$file is not on MDT${MDTIDX}"
15116         done
15117
15118         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15119 }
15120 run_test 230d "check migrate big directory"
15121
15122 test_230e() {
15123         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15124         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15125
15126         local i
15127         local j
15128         local a_fid
15129         local b_fid
15130
15131         mkdir -p $DIR/$tdir
15132         mkdir $DIR/$tdir/migrate_dir
15133         mkdir $DIR/$tdir/other_dir
15134         touch $DIR/$tdir/migrate_dir/a
15135         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
15136         ls $DIR/$tdir/other_dir
15137
15138         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15139                 error "migrate dir fails"
15140
15141         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
15142         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
15143
15144         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15145         [ $mdt_index == 0 ] || error "a is not on MDT0"
15146
15147         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
15148                 error "migrate dir fails"
15149
15150         mdt_index=$($LFS getstripe -m $DIR/$tdir/other_dir)
15151         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
15152
15153         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15154         [ $mdt_index == 1 ] || error "a is not on MDT1"
15155
15156         mdt_index=$($LFS getstripe -m $DIR/$tdir/other_dir/b)
15157         [ $mdt_index == 1 ] || error "b is not on MDT1"
15158
15159         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
15160         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
15161
15162         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
15163
15164         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15165 }
15166 run_test 230e "migrate mulitple local link files"
15167
15168 test_230f() {
15169         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15170         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15171
15172         local a_fid
15173         local ln_fid
15174
15175         mkdir -p $DIR/$tdir
15176         mkdir $DIR/$tdir/migrate_dir
15177         $LFS mkdir -i1 $DIR/$tdir/other_dir
15178         touch $DIR/$tdir/migrate_dir/a
15179         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
15180         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
15181         ls $DIR/$tdir/other_dir
15182
15183         # a should be migrated to MDT1, since no other links on MDT0
15184         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15185                 error "#1 migrate dir fails"
15186         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
15187         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
15188         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15189         [ $mdt_index == 1 ] || error "a is not on MDT1"
15190
15191         # a should stay on MDT1, because it is a mulitple link file
15192         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
15193                 error "#2 migrate dir fails"
15194         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15195         [ $mdt_index == 1 ] || error "a is not on MDT1"
15196
15197         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15198                 error "#3 migrate dir fails"
15199
15200         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
15201         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
15202         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
15203
15204         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
15205         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
15206
15207         # a should be migrated to MDT0, since no other links on MDT1
15208         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
15209                 error "#4 migrate dir fails"
15210         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15211         [ $mdt_index == 0 ] || error "a is not on MDT0"
15212
15213         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15214 }
15215 run_test 230f "migrate mulitple remote link files"
15216
15217 test_230g() {
15218         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15219         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15220
15221         mkdir -p $DIR/$tdir/migrate_dir
15222
15223         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
15224                 error "migrating dir to non-exist MDT succeeds"
15225         true
15226 }
15227 run_test 230g "migrate dir to non-exist MDT"
15228
15229 test_230h() {
15230         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15231         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15232         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
15233                 skip "Need MDS version at least 2.7.64"
15234
15235         local mdt_index
15236
15237         mkdir -p $DIR/$tdir/migrate_dir
15238
15239         $LFS migrate -m1 $DIR &&
15240                 error "migrating mountpoint1 should fail"
15241
15242         $LFS migrate -m1 $DIR/$tdir/.. &&
15243                 error "migrating mountpoint2 should fail"
15244
15245         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. ||
15246                 error "migrating $tdir fail"
15247
15248         mdt_index=$($LFS getstripe -m $DIR/$tdir)
15249         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
15250
15251         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
15252         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
15253
15254 }
15255 run_test 230h "migrate .. and root"
15256
15257 test_230i() {
15258         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15259         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15260
15261         mkdir -p $DIR/$tdir/migrate_dir
15262
15263         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
15264                 error "migration fails with a tailing slash"
15265
15266         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
15267                 error "migration fails with two tailing slashes"
15268 }
15269 run_test 230i "lfs migrate -m tolerates trailing slashes"
15270
15271 test_231a()
15272 {
15273         # For simplicity this test assumes that max_pages_per_rpc
15274         # is the same across all OSCs
15275         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
15276         local bulk_size=$((max_pages * 4096))
15277         local brw_size=$(do_facet ost1 $LCTL get_param -n obdfilter.*.brw_size |
15278                                        head -n 1)
15279
15280         mkdir -p $DIR/$tdir
15281         $LFS setstripe -S ${brw_size}M $DIR/$tdir ||
15282                 error "failed to set stripe with -S ${brw_size}M option"
15283
15284         # clear the OSC stats
15285         $LCTL set_param osc.*.stats=0 &>/dev/null
15286         stop_writeback
15287
15288         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
15289         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
15290                 oflag=direct &>/dev/null || error "dd failed"
15291
15292         sync; sleep 1; sync # just to be safe
15293         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
15294         if [ x$nrpcs != "x1" ]; then
15295                 $LCTL get_param osc.*.stats
15296                 error "found $nrpcs ost_write RPCs, not 1 as expected"
15297         fi
15298
15299         start_writeback
15300         # Drop the OSC cache, otherwise we will read from it
15301         cancel_lru_locks osc
15302
15303         # clear the OSC stats
15304         $LCTL set_param osc.*.stats=0 &>/dev/null
15305
15306         # Client reads $bulk_size.
15307         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
15308                 iflag=direct &>/dev/null || error "dd failed"
15309
15310         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
15311         if [ x$nrpcs != "x1" ]; then
15312                 $LCTL get_param osc.*.stats
15313                 error "found $nrpcs ost_read RPCs, not 1 as expected"
15314         fi
15315 }
15316 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
15317
15318 test_231b() {
15319         mkdir -p $DIR/$tdir
15320         local i
15321         for i in {0..1023}; do
15322                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
15323                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
15324                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
15325         done
15326         sync
15327 }
15328 run_test 231b "must not assert on fully utilized OST request buffer"
15329
15330 test_232a() {
15331         mkdir -p $DIR/$tdir
15332         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
15333
15334         #define OBD_FAIL_LDLM_OST_LVB            0x31c
15335         do_facet ost1 $LCTL set_param fail_loc=0x31c
15336
15337         # ignore dd failure
15338         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
15339
15340         do_facet ost1 $LCTL set_param fail_loc=0
15341         umount_client $MOUNT || error "umount failed"
15342         mount_client $MOUNT || error "mount failed"
15343         stop ost1 || error "cannot stop ost1"
15344         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
15345 }
15346 run_test 232a "failed lock should not block umount"
15347
15348 test_232b() {
15349         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.58) ] ||
15350                 skip "Need MDS version at least 2.10.58"
15351
15352         mkdir -p $DIR/$tdir
15353         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
15354         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1
15355         sync
15356         cancel_lru_locks osc
15357
15358         #define OBD_FAIL_LDLM_OST_LVB            0x31c
15359         do_facet ost1 $LCTL set_param fail_loc=0x31c
15360
15361         # ignore failure
15362         $LFS data_version $DIR/$tdir/$tfile || true
15363
15364         do_facet ost1 $LCTL set_param fail_loc=0
15365         umount_client $MOUNT || error "umount failed"
15366         mount_client $MOUNT || error "mount failed"
15367         stop ost1 || error "cannot stop ost1"
15368         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
15369 }
15370 run_test 232b "failed data version lock should not block umount"
15371
15372 test_233a() {
15373         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
15374                 skip "Need MDS version at least 2.3.64"
15375         [ -n "$FILESET" ] && skip_env "SKIP due to FILESET set"
15376
15377         local fid=$($LFS path2fid $MOUNT)
15378
15379         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15380                 error "cannot access $MOUNT using its FID '$fid'"
15381 }
15382 run_test 233a "checking that OBF of the FS root succeeds"
15383
15384 test_233b() {
15385         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
15386                 skip "Need MDS version at least 2.5.90"
15387         [ -n "$FILESET" ] && skip_env "SKIP due to FILESET set"
15388
15389         local fid=$($LFS path2fid $MOUNT/.lustre)
15390
15391         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15392                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
15393
15394         fid=$($LFS path2fid $MOUNT/.lustre/fid)
15395         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15396                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
15397 }
15398 run_test 233b "checking that OBF of the FS .lustre succeeds"
15399
15400 test_234() {
15401         local p="$TMP/sanityN-$TESTNAME.parameters"
15402         save_lustre_params client "llite.*.xattr_cache" > $p
15403         lctl set_param llite.*.xattr_cache 1 ||
15404                 skip_env "xattr cache is not supported"
15405
15406         mkdir -p $DIR/$tdir || error "mkdir failed"
15407         touch $DIR/$tdir/$tfile || error "touch failed"
15408         # OBD_FAIL_LLITE_XATTR_ENOMEM
15409         $LCTL set_param fail_loc=0x1405
15410         getfattr -n user.attr $DIR/$tdir/$tfile &&
15411                 error "getfattr should have failed with ENOMEM"
15412         $LCTL set_param fail_loc=0x0
15413         rm -rf $DIR/$tdir
15414
15415         restore_lustre_params < $p
15416         rm -f $p
15417 }
15418 run_test 234 "xattr cache should not crash on ENOMEM"
15419
15420 test_235() {
15421         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
15422                 skip "Need MDS version at least 2.4.52"
15423
15424         flock_deadlock $DIR/$tfile
15425         local RC=$?
15426         case $RC in
15427                 0)
15428                 ;;
15429                 124) error "process hangs on a deadlock"
15430                 ;;
15431                 *) error "error executing flock_deadlock $DIR/$tfile"
15432                 ;;
15433         esac
15434 }
15435 run_test 235 "LU-1715: flock deadlock detection does not work properly"
15436
15437 #LU-2935
15438 test_236() {
15439         check_swap_layouts_support
15440
15441         local ref1=/etc/passwd
15442         local ref2=/etc/group
15443         local file1=$DIR/$tdir/f1
15444         local file2=$DIR/$tdir/f2
15445
15446         test_mkdir -c1 $DIR/$tdir
15447         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
15448         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
15449         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
15450         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
15451         local fd=$(free_fd)
15452         local cmd="exec $fd<>$file2"
15453         eval $cmd
15454         rm $file2
15455         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
15456                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
15457         cmd="exec $fd>&-"
15458         eval $cmd
15459         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
15460
15461         #cleanup
15462         rm -rf $DIR/$tdir
15463 }
15464 run_test 236 "Layout swap on open unlinked file"
15465
15466 # test to verify file handle related system calls
15467 # (name_to_handle_at/open_by_handle_at)
15468 # The new system calls are supported in glibc >= 2.14.
15469
15470 test_237() {
15471         echo "Test file_handle syscalls" > $DIR/$tfile ||
15472                 error "write failed"
15473         check_fhandle_syscalls $DIR/$tfile ||
15474                 error "check_fhandle_syscalls failed"
15475 }
15476 run_test 237 "Verify name_to_handle_at/open_by_handle_at syscalls"
15477
15478 # LU-4659 linkea consistency
15479 test_238() {
15480         local server_version=$(lustre_version_code $SINGLEMDS)
15481
15482         [[ $server_version -gt $(version_code 2.5.57) ]] ||
15483                 [[ $server_version -gt $(version_code 2.5.1) &&
15484                    $server_version -lt $(version_code 2.5.50) ]] ||
15485                 skip "Need MDS version at least 2.5.58 or 2.5.2+"
15486
15487         touch $DIR/$tfile
15488         ln $DIR/$tfile $DIR/$tfile.lnk
15489         touch $DIR/$tfile.new
15490         mv $DIR/$tfile.new $DIR/$tfile
15491         local fid1=$($LFS path2fid $DIR/$tfile)
15492         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
15493         local path1=$($LFS fid2path $FSNAME "$fid1")
15494         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
15495         local path2=$($LFS fid2path $FSNAME "$fid2")
15496         [ $tfile.lnk == $path2 ] ||
15497                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
15498         rm -f $DIR/$tfile*
15499 }
15500 run_test 238 "Verify linkea consistency"
15501
15502 test_239A() { # was test_239
15503         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.60) ] &&
15504                 skip "Need MDS version at least 2.5.60"
15505
15506         local list=$(comma_list $(mdts_nodes))
15507
15508         mkdir -p $DIR/$tdir
15509         createmany -o $DIR/$tdir/f- 5000
15510         unlinkmany $DIR/$tdir/f- 5000
15511         [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.10.53) ] &&
15512                 do_nodes $list "lctl set_param -n osp.*.force_sync=1"
15513         changes=$(do_nodes $list "lctl get_param -n osp.*MDT*.sync_changes \
15514                         osp.*MDT*.sync_in_flight" | calc_sum)
15515         [ "$changes" -eq 0 ] || error "$changes not synced"
15516 }
15517 run_test 239A "osp_sync test"
15518
15519 test_239a() { #LU-5297
15520         remote_mds_nodsh && skip "remote MDS with nodsh"
15521
15522         touch $DIR/$tfile
15523         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
15524         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
15525         chgrp $RUNAS_GID $DIR/$tfile
15526         wait_delete_completed
15527 }
15528 run_test 239a "process invalid osp sync record correctly"
15529
15530 test_239b() { #LU-5297
15531         remote_mds_nodsh && skip "remote MDS with nodsh"
15532
15533         touch $DIR/$tfile1
15534         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
15535         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
15536         chgrp $RUNAS_GID $DIR/$tfile1
15537         wait_delete_completed
15538         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
15539         touch $DIR/$tfile2
15540         chgrp $RUNAS_GID $DIR/$tfile2
15541         wait_delete_completed
15542 }
15543 run_test 239b "process osp sync record with ENOMEM error correctly"
15544
15545 test_240() {
15546         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15547         remote_mds_nodsh && skip "remote MDS with nodsh"
15548
15549         mkdir -p $DIR/$tdir
15550
15551         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
15552                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
15553         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
15554                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
15555
15556         umount_client $MOUNT || error "umount failed"
15557         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
15558         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
15559         mount_client $MOUNT || error "failed to mount client"
15560
15561         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
15562         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
15563 }
15564 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
15565
15566 test_241_bio() {
15567         for LOOP in $(seq $1); do
15568                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 2>/dev/null
15569                 cancel_lru_locks $OSC || true
15570         done
15571 }
15572
15573 test_241_dio() {
15574         for LOOP in $(seq $1); do
15575                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 \
15576                                                 iflag=direct 2>/dev/null
15577         done
15578 }
15579
15580 test_241a() { # was test_241
15581         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
15582         ls -la $DIR/$tfile
15583         cancel_lru_locks $OSC
15584         test_241_bio 1000 &
15585         PID=$!
15586         test_241_dio 1000
15587         wait $PID
15588 }
15589 run_test 241a "bio vs dio"
15590
15591 test_241b() {
15592         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
15593         ls -la $DIR/$tfile
15594         test_241_dio 1000 &
15595         PID=$!
15596         test_241_dio 1000
15597         wait $PID
15598 }
15599 run_test 241b "dio vs dio"
15600
15601 test_242() {
15602         remote_mds_nodsh && skip "remote MDS with nodsh"
15603
15604         mkdir -p $DIR/$tdir
15605         touch $DIR/$tdir/$tfile
15606
15607         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
15608         do_facet mds1 lctl set_param fail_loc=0x105
15609         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
15610
15611         do_facet mds1 lctl set_param fail_loc=0
15612         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
15613 }
15614 run_test 242 "mdt_readpage failure should not cause directory unreadable"
15615
15616 test_243()
15617 {
15618         test_mkdir $DIR/$tdir
15619         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
15620 }
15621 run_test 243 "various group lock tests"
15622
15623 test_244()
15624 {
15625         test_mkdir $DIR/$tdir
15626         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
15627         sendfile_grouplock $DIR/$tdir/$tfile || \
15628                 error "sendfile+grouplock failed"
15629         rm -rf $DIR/$tdir
15630 }
15631 run_test 244 "sendfile with group lock tests"
15632
15633 test_245() {
15634         local flagname="multi_mod_rpcs"
15635         local connect_data_name="max_mod_rpcs"
15636         local out
15637
15638         # check if multiple modify RPCs flag is set
15639         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
15640                 grep "connect_flags:")
15641         echo "$out"
15642
15643         echo "$out" | grep -qw $flagname
15644         if [ $? -ne 0 ]; then
15645                 echo "connect flag $flagname is not set"
15646                 return
15647         fi
15648
15649         # check if multiple modify RPCs data is set
15650         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
15651         echo "$out"
15652
15653         echo "$out" | grep -qw $connect_data_name ||
15654                 error "import should have connect data $connect_data_name"
15655 }
15656 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
15657
15658 test_246() { # LU-7371
15659         remote_ost_nodsh && skip "remote OST with nodsh"
15660         [ $(lustre_version_code ost1) -lt $(version_code 2.7.62) ] &&
15661                 skip "Need OST version >= 2.7.62"
15662
15663         do_facet ost1 $LCTL set_param fail_val=4095
15664 #define OBD_FAIL_OST_READ_SIZE          0x234
15665         do_facet ost1 $LCTL set_param fail_loc=0x234
15666         $LFS setstripe $DIR/$tfile -i 0 -c 1
15667         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
15668         cancel_lru_locks $FSNAME-OST0000
15669         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
15670 }
15671 run_test 246 "Read file of size 4095 should return right length"
15672
15673 cleanup_247() {
15674         local submount=$1
15675
15676         trap 0
15677         umount_client $submount
15678         rmdir $submount
15679 }
15680
15681 test_247a() {
15682         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
15683                 grep -q subtree ||
15684                 skip_env "Fileset feature is not supported"
15685
15686         local submount=${MOUNT}_$tdir
15687
15688         mkdir $MOUNT/$tdir
15689         mkdir -p $submount || error "mkdir $submount failed"
15690         FILESET="$FILESET/$tdir" mount_client $submount ||
15691                 error "mount $submount failed"
15692         trap "cleanup_247 $submount" EXIT
15693         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
15694         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
15695                 error "read $MOUNT/$tdir/$tfile failed"
15696         cleanup_247 $submount
15697 }
15698 run_test 247a "mount subdir as fileset"
15699
15700 test_247b() {
15701         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
15702                 skip_env "Fileset feature is not supported"
15703
15704         local submount=${MOUNT}_$tdir
15705
15706         rm -rf $MOUNT/$tdir
15707         mkdir -p $submount || error "mkdir $submount failed"
15708         SKIP_FILESET=1
15709         FILESET="$FILESET/$tdir" mount_client $submount &&
15710                 error "mount $submount should fail"
15711         rmdir $submount
15712 }
15713 run_test 247b "mount subdir that dose not exist"
15714
15715 test_247c() {
15716         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
15717                 skip_env "Fileset feature is not supported"
15718
15719         local submount=${MOUNT}_$tdir
15720
15721         mkdir -p $MOUNT/$tdir/dir1
15722         mkdir -p $submount || error "mkdir $submount failed"
15723         trap "cleanup_247 $submount" EXIT
15724         FILESET="$FILESET/$tdir" mount_client $submount ||
15725                 error "mount $submount failed"
15726         local fid=$($LFS path2fid $MOUNT/)
15727         $LFS fid2path $submount $fid && error "fid2path should fail"
15728         cleanup_247 $submount
15729 }
15730 run_test 247c "running fid2path outside root"
15731
15732 test_247d() {
15733         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
15734                 skip "Fileset feature is not supported"
15735
15736         local submount=${MOUNT}_$tdir
15737
15738         mkdir -p $MOUNT/$tdir/dir1
15739         mkdir -p $submount || error "mkdir $submount failed"
15740         FILESET="$FILESET/$tdir" mount_client $submount ||
15741                 error "mount $submount failed"
15742         trap "cleanup_247 $submount" EXIT
15743         local fid=$($LFS path2fid $submount/dir1)
15744         $LFS fid2path $submount $fid || error "fid2path should succeed"
15745         cleanup_247 $submount
15746 }
15747 run_test 247d "running fid2path inside root"
15748
15749 # LU-8037
15750 test_247e() {
15751         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
15752                 grep -q subtree ||
15753                 skip "Fileset feature is not supported"
15754
15755         local submount=${MOUNT}_$tdir
15756
15757         mkdir $MOUNT/$tdir
15758         mkdir -p $submount || error "mkdir $submount failed"
15759         FILESET="$FILESET/.." mount_client $submount &&
15760                 error "mount $submount should fail"
15761         rmdir $submount
15762 }
15763 run_test 247e "mount .. as fileset"
15764
15765 test_248() {
15766         local fast_read_sav=$($LCTL get_param -n llite.*.fast_read 2>/dev/null)
15767         [ -z "$fast_read_sav" ] && skip "no fast read support"
15768
15769         # create a large file for fast read verification
15770         dd if=/dev/zero of=$DIR/$tfile bs=1M count=128 > /dev/null 2>&1
15771
15772         # make sure the file is created correctly
15773         $CHECKSTAT -s $((128*1024*1024)) $DIR/$tfile ||
15774                 { rm -f $DIR/$tfile; skip "file creation error"; }
15775
15776         echo "Test 1: verify that fast read is 4 times faster on cache read"
15777
15778         # small read with fast read enabled
15779         $LCTL set_param -n llite.*.fast_read=1
15780         local t_fast=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
15781                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15782                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15783         # small read with fast read disabled
15784         $LCTL set_param -n llite.*.fast_read=0
15785         local t_slow=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
15786                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15787                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15788
15789         # verify that fast read is 4 times faster for cache read
15790         [ $(bc <<< "4 * $t_fast < $t_slow") -eq 1 ] ||
15791                 error_not_in_vm "fast read was not 4 times faster: " \
15792                            "$t_fast vs $t_slow"
15793
15794         echo "Test 2: verify the performance between big and small read"
15795         $LCTL set_param -n llite.*.fast_read=1
15796
15797         # 1k non-cache read
15798         cancel_lru_locks osc
15799         local t_1k=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
15800                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15801                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15802
15803         # 1M non-cache read
15804         cancel_lru_locks osc
15805         local t_1m=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
15806                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15807                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15808
15809         # verify that big IO is not 4 times faster than small IO
15810         [ $(bc <<< "4 * $t_1k >= $t_1m") -eq 1 ] ||
15811                 error_not_in_vm "bigger IO is way too fast: $t_1k vs $t_1m"
15812
15813         $LCTL set_param -n llite.*.fast_read=$fast_read_sav
15814         rm -f $DIR/$tfile
15815 }
15816 run_test 248 "fast read verification"
15817
15818 test_249() { # LU-7890
15819         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
15820                 skip "Need at least version 2.8.54"
15821
15822         rm -f $DIR/$tfile
15823         $SETSTRIPE -c 1 $DIR/$tfile
15824         # Offset 2T == 4k * 512M
15825         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 seek=512M ||
15826                 error "dd to 2T offset failed"
15827 }
15828 run_test 249 "Write above 2T file size"
15829
15830 test_250() {
15831         [ "$(facet_fstype ost$(($($GETSTRIPE -i $DIR/$tfile) + 1)))" = "zfs" ] \
15832          && skip "no 16TB file size limit on ZFS"
15833
15834         $SETSTRIPE -c 1 $DIR/$tfile
15835         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
15836         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
15837         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
15838         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
15839                 conv=notrunc,fsync && error "append succeeded"
15840         return 0
15841 }
15842 run_test 250 "Write above 16T limit"
15843
15844 test_251() {
15845         $SETSTRIPE -c -1 -S 1048576 $DIR/$tfile
15846
15847         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
15848         #Skip once - writing the first stripe will succeed
15849         $LCTL set_param fail_loc=0xa0001407 fail_val=1
15850         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
15851                 error "short write happened"
15852
15853         $LCTL set_param fail_loc=0xa0001407 fail_val=1
15854         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
15855                 error "short read happened"
15856
15857         rm -f $DIR/$tfile
15858 }
15859 run_test 251 "Handling short read and write correctly"
15860
15861 test_252() {
15862         remote_mds_nodsh && skip "remote MDS with nodsh"
15863         remote_ost_nodsh && skip "remote OST with nodsh"
15864         if [ "$(facet_fstype ost1)" != "ldiskfs" -o \
15865              "$(facet_fstype mds1)" != "ldiskfs" ]; then
15866                 skip_env "ldiskfs only test"
15867         fi
15868
15869         local tgt
15870         local dev
15871         local out
15872         local uuid
15873         local num
15874         local gen
15875
15876         # check lr_reader on OST0000
15877         tgt=ost1
15878         dev=$(facet_device $tgt)
15879         out=$(do_facet $tgt $LR_READER $dev)
15880         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
15881         echo "$out"
15882         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
15883         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
15884                 error "Invalid uuid returned by $LR_READER on target $tgt"
15885         echo -e "uuid returned by $LR_READER is '$uuid'\n"
15886
15887         # check lr_reader -c on MDT0000
15888         tgt=mds1
15889         dev=$(facet_device $tgt)
15890         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
15891                 skip "$LR_READER does not support additional options"
15892         fi
15893         out=$(do_facet $tgt $LR_READER -c $dev)
15894         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
15895         echo "$out"
15896         num=$(echo "$out" | grep -c "mdtlov")
15897         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
15898                 error "Invalid number of mdtlov clients returned by $LR_READER"
15899         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
15900
15901         # check lr_reader -cr on MDT0000
15902         out=$(do_facet $tgt $LR_READER -cr $dev)
15903         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
15904         echo "$out"
15905         echo "$out" | grep -q "^reply_data:$" ||
15906                 error "$LR_READER should have returned 'reply_data' section"
15907         num=$(echo "$out" | grep -c "client_generation")
15908         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
15909 }
15910 run_test 252 "check lr_reader tool"
15911
15912 test_253_fill_ost() {
15913         local size_mb #how many MB should we write to pass watermark
15914         local lwm=$3  #low watermark
15915         local free_10mb #10% of free space
15916
15917         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
15918         size_mb=$((free_kb / 1024 - lwm))
15919         free_10mb=$((free_kb / 10240))
15920         #If 10% of free space cross low watermark use it
15921         if (( free_10mb > size_mb )); then
15922                 size_mb=$free_10mb
15923         else
15924                 #At least we need to store 1.1 of difference between
15925                 #free space and low watermark
15926                 size_mb=$((size_mb + size_mb / 10))
15927         fi
15928         if (( lwm <= $((free_kb / 1024)) )) || [ ! -f $DIR/$tdir/1 ]; then
15929                 dd if=/dev/zero of=$DIR/$tdir/1 bs=1M count=$size_mb \
15930                          oflag=append conv=notrunc
15931         fi
15932
15933         sleep_maxage
15934
15935         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
15936         echo "OST still has $((free_kb / 1024)) mbytes free"
15937 }
15938
15939 test_253() {
15940         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15941         remote_mds_nodsh && skip "remote MDS with nodsh"
15942         remote_mgs_nodsh && skip "remote MGS with nodsh"
15943
15944         local ostidx=0
15945         local rc=0
15946
15947         local ost_name=$($LFS osts |
15948                 sed -n 's/^'$ostidx': \(.*\)_UUID .*/\1/p')
15949         # on the mdt's osc
15950         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $ost_name)
15951         do_facet $SINGLEMDS $LCTL get_param -n \
15952                 osp.$mdtosc_proc1.reserved_mb_high ||
15953                 skip  "remote MDS does not support reserved_mb_high"
15954
15955         rm -rf $DIR/$tdir
15956         wait_mds_ost_sync
15957         wait_delete_completed
15958         mkdir $DIR/$tdir
15959
15960         local last_wm_h=$(do_facet $SINGLEMDS $LCTL get_param -n \
15961                         osp.$mdtosc_proc1.reserved_mb_high)
15962         local last_wm_l=$(do_facet $SINGLEMDS $LCTL get_param -n \
15963                         osp.$mdtosc_proc1.reserved_mb_low)
15964         echo "prev high watermark $last_wm_h, prev low watermark $last_wm_l"
15965
15966         if ! combined_mgs_mds ; then
15967                 mount_mgs_client
15968         fi
15969         create_pool $FSNAME.$TESTNAME || error "Pool creation failed"
15970         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $ost_name ||
15971                 error "Adding $ost_name to pool failed"
15972
15973         # Wait for client to see a OST at pool
15974         wait_update $HOSTNAME "$LCTL get_param -n
15975                 lov.$FSNAME-*.pools.$TESTNAME | sort -u |
15976                 grep $ost_name" "$ost_name""_UUID" $((TIMEOUT/2)) ||
15977                 error "Client can not see the pool"
15978         $SETSTRIPE $DIR/$tdir -i $ostidx -c 1 -p $FSNAME.$TESTNAME ||
15979                 error "Setstripe failed"
15980
15981         dd if=/dev/zero of=$DIR/$tdir/0 bs=1M count=10
15982         local blocks=$($LFS df $MOUNT | grep $ost_name | awk '{ print $4 }')
15983         echo "OST still has $((blocks/1024)) mbytes free"
15984
15985         local new_lwm=$((blocks/1024-10))
15986         do_facet $SINGLEMDS $LCTL set_param \
15987                         osp.$mdtosc_proc1.reserved_mb_high=$((new_lwm+5))
15988         do_facet $SINGLEMDS $LCTL set_param \
15989                         osp.$mdtosc_proc1.reserved_mb_low=$new_lwm
15990
15991         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
15992
15993         #First enospc could execute orphan deletion so repeat.
15994         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
15995
15996         local oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
15997                         osp.$mdtosc_proc1.prealloc_status)
15998         echo "prealloc_status $oa_status"
15999
16000         dd if=/dev/zero of=$DIR/$tdir/2 bs=1M count=1 &&
16001                 error "File creation should fail"
16002         #object allocation was stopped, but we still able to append files
16003         dd if=/dev/zero of=$DIR/$tdir/1 bs=1M seek=6 count=5 oflag=append ||
16004                 error "Append failed"
16005         rm -f $DIR/$tdir/1 $DIR/$tdir/0 $DIR/$tdir/r*
16006
16007         wait_delete_completed
16008
16009         sleep_maxage
16010
16011         for i in $(seq 10 12); do
16012                 dd if=/dev/zero of=$DIR/$tdir/$i bs=1M count=1 2>/dev/null ||
16013                         error "File creation failed after rm";
16014         done
16015
16016         oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
16017                         osp.$mdtosc_proc1.prealloc_status)
16018         echo "prealloc_status $oa_status"
16019
16020         if (( oa_status != 0 )); then
16021                 error "Object allocation still disable after rm"
16022         fi
16023         do_facet $SINGLEMDS $LCTL set_param \
16024                         osp.$mdtosc_proc1.reserved_mb_high=$last_wm_h
16025         do_facet $SINGLEMDS $LCTL set_param \
16026                         osp.$mdtosc_proc1.reserved_mb_low=$last_wm_l
16027
16028
16029         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $ost_name ||
16030                 error "Remove $ost_name from pool failed"
16031         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
16032                 error "Pool destroy fialed"
16033
16034         if ! combined_mgs_mds ; then
16035                 umount_mgs_client
16036         fi
16037 }
16038 run_test 253 "Check object allocation limit"
16039
16040 test_254() {
16041         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16042         remote_mds_nodsh && skip "remote MDS with nodsh"
16043         do_facet $SINGLEMDS $LCTL get_param -n mdd.$MDT0.changelog_size ||
16044                 skip "MDS does not support changelog_size"
16045
16046         local cl_user
16047         local MDT0=$(facet_svc $SINGLEMDS)
16048
16049         changelog_register || error "changelog_register failed"
16050
16051         changelog_clear 0 || error "changelog_clear failed"
16052
16053         local size1=$(do_facet $SINGLEMDS \
16054                       $LCTL get_param -n mdd.$MDT0.changelog_size)
16055         echo "Changelog size $size1"
16056
16057         rm -rf $DIR/$tdir
16058         $LFS mkdir -i 0 $DIR/$tdir
16059         # change something
16060         mkdir -p $DIR/$tdir/pics/2008/zachy
16061         touch $DIR/$tdir/pics/2008/zachy/timestamp
16062         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
16063         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
16064         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
16065         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
16066         rm $DIR/$tdir/pics/desktop.jpg
16067
16068         local size2=$(do_facet $SINGLEMDS \
16069                       $LCTL get_param -n mdd.$MDT0.changelog_size)
16070         echo "Changelog size after work $size2"
16071
16072         (( $size2 > $size1 )) ||
16073                 error "new Changelog size=$size2 less than old size=$size1"
16074 }
16075 run_test 254 "Check changelog size"
16076
16077 ladvise_no_type()
16078 {
16079         local type=$1
16080         local file=$2
16081
16082         lfs ladvise -a invalid $file 2>&1 | grep "Valid types" |
16083                 awk -F: '{print $2}' | grep $type > /dev/null
16084         if [ $? -ne 0 ]; then
16085                 return 0
16086         fi
16087         return 1
16088 }
16089
16090 ladvise_no_ioctl()
16091 {
16092         local file=$1
16093
16094         lfs ladvise -a willread $file > /dev/null 2>&1
16095         if [ $? -eq 0 ]; then
16096                 return 1
16097         fi
16098
16099         lfs ladvise -a willread $file 2>&1 |
16100                 grep "Inappropriate ioctl for device" > /dev/null
16101         if [ $? -eq 0 ]; then
16102                 return 0
16103         fi
16104         return 1
16105 }
16106
16107 percent() {
16108         bc <<<"scale=2; ($1 - $2) * 100 / $2"
16109 }
16110
16111 # run a random read IO workload
16112 # usage: random_read_iops <filename> <filesize> <iosize>
16113 random_read_iops() {
16114         local file=$1
16115         local fsize=$2
16116         local iosize=${3:-4096}
16117
16118         $READS -f $file -s $fsize -b $iosize -n $((fsize / iosize)) -t 60 |
16119                 sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##'
16120 }
16121
16122 drop_file_oss_cache() {
16123         local file="$1"
16124         local nodes="$2"
16125
16126         $LFS ladvise -a dontneed $file 2>/dev/null ||
16127                 do_nodes $nodes "echo 3 > /proc/sys/vm/drop_caches"
16128 }
16129
16130 ladvise_willread_performance()
16131 {
16132         local repeat=10
16133         local average_origin=0
16134         local average_cache=0
16135         local average_ladvise=0
16136
16137         for ((i = 1; i <= $repeat; i++)); do
16138                 echo "Iter $i/$repeat: reading without willread hint"
16139                 cancel_lru_locks osc
16140                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
16141                 local speed_origin=$(random_read_iops $DIR/$tfile $size)
16142                 echo "Iter $i/$repeat: uncached speed: $speed_origin"
16143                 average_origin=$(bc <<<"$average_origin + $speed_origin")
16144
16145                 cancel_lru_locks osc
16146                 local speed_cache=$(random_read_iops $DIR/$tfile $size)
16147                 echo "Iter $i/$repeat: OSS cache speed: $speed_cache"
16148                 average_cache=$(bc <<<"$average_cache + $speed_cache")
16149
16150                 cancel_lru_locks osc
16151                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
16152                 $LFS ladvise -a willread $DIR/$tfile || error "ladvise failed"
16153                 local speed_ladvise=$(random_read_iops $DIR/$tfile $size)
16154                 echo "Iter $i/$repeat: ladvise speed: $speed_ladvise"
16155                 average_ladvise=$(bc <<<"$average_ladvise + $speed_ladvise")
16156         done
16157         average_origin=$(bc <<<"scale=2; $average_origin / $repeat")
16158         average_cache=$(bc <<<"scale=2; $average_cache / $repeat")
16159         average_ladvise=$(bc <<<"scale=2; $average_ladvise / $repeat")
16160
16161         speedup_cache=$(percent $average_cache $average_origin)
16162         speedup_ladvise=$(percent $average_ladvise $average_origin)
16163
16164         echo "Average uncached read: $average_origin"
16165         echo "Average speedup with OSS cached read: " \
16166                 "$average_cache = +$speedup_cache%"
16167         echo "Average speedup with ladvise willread: " \
16168                 "$average_ladvise = +$speedup_ladvise%"
16169
16170         local lowest_speedup=20
16171         if [ ${average_cache%.*} -lt $lowest_speedup ]; then
16172                 echo "Speedup with OSS cached read less than $lowest_speedup%," \
16173                         "got $average_cache%. Skipping ladvise willread check."
16174                 return 0
16175         fi
16176
16177         # the test won't work on ZFS until it supports 'ladvise dontneed', but
16178         # it is still good to run until then to exercise 'ladvise willread'
16179         ! $LFS ladvise -a dontneed $DIR/$tfile &&
16180                 [ "$(facet_fstype ost1)" = "zfs" ] &&
16181                 echo "osd-zfs does not support dontneed or drop_caches" &&
16182                 return 0
16183
16184         lowest_speedup=$(bc <<<"scale=2; $average_cache / 2")
16185         [ ${average_ladvise%.*} -gt $lowest_speedup ] ||
16186                 error_not_in_vm "Speedup with willread is less than " \
16187                         "$lowest_speedup%, got $average_ladvise%"
16188 }
16189
16190 test_255a() {
16191         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
16192                 skip "lustre < 2.8.54 does not support ladvise "
16193         remote_ost_nodsh && skip "remote OST with nodsh"
16194
16195         lfs setstripe -c -1 -i 0 $DIR/$tfile || error "$tfile failed"
16196
16197         ladvise_no_type willread $DIR/$tfile &&
16198                 skip "willread ladvise is not supported"
16199
16200         ladvise_no_ioctl $DIR/$tfile &&
16201                 skip "ladvise ioctl is not supported"
16202
16203         local size_mb=100
16204         local size=$((size_mb * 1048576))
16205         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
16206                 error "dd to $DIR/$tfile failed"
16207
16208         lfs ladvise -a willread $DIR/$tfile ||
16209                 error "Ladvise failed with no range argument"
16210
16211         lfs ladvise -a willread -s 0 $DIR/$tfile ||
16212                 error "Ladvise failed with no -l or -e argument"
16213
16214         lfs ladvise -a willread -e 1 $DIR/$tfile ||
16215                 error "Ladvise failed with only -e argument"
16216
16217         lfs ladvise -a willread -l 1 $DIR/$tfile ||
16218                 error "Ladvise failed with only -l argument"
16219
16220         lfs ladvise -a willread -s 2 -e 1 $DIR/$tfile &&
16221                 error "End offset should not be smaller than start offset"
16222
16223         lfs ladvise -a willread -s 2 -e 2 $DIR/$tfile &&
16224                 error "End offset should not be equal to start offset"
16225
16226         lfs ladvise -a willread -s $size -l 1 $DIR/$tfile ||
16227                 error "Ladvise failed with overflowing -s argument"
16228
16229         lfs ladvise -a willread -s 1 -e $((size + 1)) $DIR/$tfile ||
16230                 error "Ladvise failed with overflowing -e argument"
16231
16232         lfs ladvise -a willread -s 1 -l $size $DIR/$tfile ||
16233                 error "Ladvise failed with overflowing -l argument"
16234
16235         lfs ladvise -a willread -l 1 -e 2 $DIR/$tfile &&
16236                 error "Ladvise succeeded with conflicting -l and -e arguments"
16237
16238         echo "Synchronous ladvise should wait"
16239         local delay=4
16240 #define OBD_FAIL_OST_LADVISE_PAUSE       0x237
16241         do_nodes $(comma_list $(osts_nodes)) \
16242                 $LCTL set_param fail_val=$delay fail_loc=0x237
16243
16244         local start_ts=$SECONDS
16245         lfs ladvise -a willread $DIR/$tfile ||
16246                 error "Ladvise failed with no range argument"
16247         local end_ts=$SECONDS
16248         local inteval_ts=$((end_ts - start_ts))
16249
16250         if [ $inteval_ts -lt $(($delay - 1)) ]; then
16251                 error "Synchronous advice didn't wait reply"
16252         fi
16253
16254         echo "Asynchronous ladvise shouldn't wait"
16255         local start_ts=$SECONDS
16256         lfs ladvise -a willread -b $DIR/$tfile ||
16257                 error "Ladvise failed with no range argument"
16258         local end_ts=$SECONDS
16259         local inteval_ts=$((end_ts - start_ts))
16260
16261         if [ $inteval_ts -gt $(($delay / 2)) ]; then
16262                 error "Asynchronous advice blocked"
16263         fi
16264
16265         do_nodes $(comma_list $(osts_nodes)) $LCTL set_param fail_loc=0
16266         ladvise_willread_performance
16267 }
16268 run_test 255a "check 'lfs ladvise -a willread'"
16269
16270 facet_meminfo() {
16271         local facet=$1
16272         local info=$2
16273
16274         do_facet $facet "cat /proc/meminfo | grep ^${info}:" | awk '{print $2}'
16275 }
16276
16277 test_255b() {
16278         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
16279                 skip "lustre < 2.8.54 does not support ladvise "
16280         remote_ost_nodsh && skip "remote OST with nodsh"
16281
16282         lfs setstripe -c 1 -i 0 $DIR/$tfile
16283
16284         ladvise_no_type dontneed $DIR/$tfile &&
16285                 skip "dontneed ladvise is not supported"
16286
16287         ladvise_no_ioctl $DIR/$tfile &&
16288                 skip "ladvise ioctl is not supported"
16289
16290         ! $LFS ladvise -a dontneed $DIR/$tfile &&
16291                 [ "$(facet_fstype ost1)" = "zfs" ] &&
16292                 skip "zfs-osd does not support 'ladvise dontneed'"
16293
16294         local size_mb=100
16295         local size=$((size_mb * 1048576))
16296         # In order to prevent disturbance of other processes, only check 3/4
16297         # of the memory usage
16298         local kibibytes=$((size_mb * 1024 * 3 / 4))
16299
16300         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
16301                 error "dd to $DIR/$tfile failed"
16302
16303         #force write to complete before dropping OST cache & checking memory
16304         sync
16305
16306         local total=$(facet_meminfo ost1 MemTotal)
16307         echo "Total memory: $total KiB"
16308
16309         do_facet ost1 "sync && echo 3 > /proc/sys/vm/drop_caches"
16310         local before_read=$(facet_meminfo ost1 Cached)
16311         echo "Cache used before read: $before_read KiB"
16312
16313         lfs ladvise -a willread $DIR/$tfile ||
16314                 error "Ladvise willread failed"
16315         local after_read=$(facet_meminfo ost1 Cached)
16316         echo "Cache used after read: $after_read KiB"
16317
16318         lfs ladvise -a dontneed $DIR/$tfile ||
16319                 error "Ladvise dontneed again failed"
16320         local no_read=$(facet_meminfo ost1 Cached)
16321         echo "Cache used after dontneed ladvise: $no_read KiB"
16322
16323         if [ $total -lt $((before_read + kibibytes)) ]; then
16324                 echo "Memory is too small, abort checking"
16325                 return 0
16326         fi
16327
16328         if [ $((before_read + kibibytes)) -gt $after_read ]; then
16329                 error "Ladvise willread should use more memory" \
16330                         "than $kibibytes KiB"
16331         fi
16332
16333         if [ $((no_read + kibibytes)) -gt $after_read ]; then
16334                 error "Ladvise dontneed should release more memory" \
16335                         "than $kibibytes KiB"
16336         fi
16337 }
16338 run_test 255b "check 'lfs ladvise -a dontneed'"
16339
16340 test_255c() {
16341         [ $(lustre_version_code ost1) -lt $(version_code 2.10.50) ] &&
16342                 skip "lustre < 2.10.53 does not support lockahead"
16343
16344         local count
16345         local new_count
16346         local difference
16347         local i
16348         local rc
16349
16350         test_mkdir -p $DIR/$tdir
16351         $SETSTRIPE -i 0 $DIR/$tdir
16352
16353         #test 10 returns only success/failure
16354         i=10
16355         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16356         rc=$?
16357         if [ $rc -eq 255 ]; then
16358                 error "Ladvise test${i} failed, ${rc}"
16359         fi
16360
16361         #test 11 counts lock enqueue requests, all others count new locks
16362         i=11
16363         count=$(do_facet ost1 \
16364                 $LCTL get_param -n ost.OSS.ost.stats)
16365         count=$(echo "$count" | grep ldlm_extent_enqueue | awk '{ print $2 }')
16366
16367         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16368         rc=$?
16369         if [ $rc -eq 255 ]; then
16370                 error "Ladvise test${i} failed, ${rc}"
16371         fi
16372
16373         new_count=$(do_facet ost1 \
16374                 $LCTL get_param -n ost.OSS.ost.stats)
16375         new_count=$(echo "$new_count" | grep ldlm_extent_enqueue | \
16376                    awk '{ print $2 }')
16377
16378         difference="$((new_count - count))"
16379         if [ $difference -ne $rc ]; then
16380                 error "Ladvise test${i}, bad enqueue count, returned " \
16381                       "${rc}, actual ${difference}"
16382         fi
16383
16384         for i in $(seq 12 21); do
16385                 # If we do not do this, we run the risk of having too many
16386                 # locks and starting lock cancellation while we are checking
16387                 # lock counts.
16388                 cancel_lru_locks osc
16389
16390                 count=$($LCTL get_param -n \
16391                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
16392
16393                 lockahead_test -d $DIR/$tdir -t $i -f $tfile
16394                 rc=$?
16395                 if [ $rc -eq 255 ]; then
16396                         error "Ladvise test ${i} failed, ${rc}"
16397                 fi
16398
16399                 new_count=$($LCTL get_param -n \
16400                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
16401                 difference="$((new_count - count))"
16402
16403                 # Test 15 output is divided by 100 to map down to valid return
16404                 if [ $i -eq 15 ]; then
16405                         rc="$((rc * 100))"
16406                 fi
16407
16408                 if [ $difference -ne $rc ]; then
16409                         error "Ladvise test ${i}, bad lock count, returned " \
16410                               "${rc}, actual ${difference}"
16411                 fi
16412         done
16413
16414         #test 22 returns only success/failure
16415         i=22
16416         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16417         rc=$?
16418         if [ $rc -eq 255 ]; then
16419                 error "Ladvise test${i} failed, ${rc}"
16420         fi
16421 }
16422 run_test 255c "suite of ladvise lockahead tests"
16423
16424 test_256() {
16425         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16426         remote_mds_nodsh && skip "remote MDS with nodsh"
16427         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
16428                 skip "ldiskfs only test"
16429         changelog_users $SINGLEMDS | grep "^cl" &&
16430                 skip "active changelog user"
16431
16432         local cl_user
16433         local cat_sl
16434         local mdt_dev
16435
16436         mdt_dev=$(mdsdevname 1)
16437         echo $mdt_dev
16438
16439         changelog_register || error "changelog_register failed"
16440
16441         rm -rf $DIR/$tdir
16442         mkdir -p $DIR/$tdir
16443
16444         changelog_clear 0 || error "changelog_clear failed"
16445
16446         # change something
16447         touch $DIR/$tdir/{1..10}
16448
16449         # stop the MDT
16450         stop $SINGLEMDS || error "Fail to stop MDT"
16451
16452         # remount the MDT
16453
16454         start $SINGLEMDS $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT"
16455
16456         #after mount new plainllog is used
16457         touch $DIR/$tdir/{11..19}
16458         local tmpfile=$(mktemp -u $tfile.XXXXXX)
16459         cat_sl=$(do_facet $SINGLEMDS "sync; \
16460                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
16461                  llog_reader $tmpfile | grep -c type=1064553b")
16462         do_facet $SINGLEMDS llog_reader $tmpfile
16463
16464         [ $cat_sl != 2 ] && error "Changelog catalog has $cat_sl != 2 slots"
16465
16466         changelog_clear 0 || error "changelog_clear failed"
16467
16468         cat_sl=$(do_facet $SINGLEMDS "sync; \
16469                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
16470                  llog_reader $tmpfile | grep -c type=1064553b; rm -f $tmpfile")
16471
16472         if (( cat_sl == 2 )); then
16473                 error "Empty plain llog was not deleted from changelog catalog"
16474         elif (( cat_sl != 1 )); then
16475                 error "Active plain llog shouldn't be deleted from catalog"
16476         fi
16477 }
16478 run_test 256 "Check llog delete for empty and not full state"
16479
16480 test_257() {
16481         remote_mds_nodsh && skip "remote MDS with nodsh"
16482         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
16483                 skip "Need MDS version at least 2.8.55"
16484
16485         test_mkdir $DIR/$tdir
16486
16487         setfattr -n trusted.name1 -v value1 $DIR/$tdir ||
16488                 error "setfattr -n trusted.name1=value1 $DIR/$tdir failed"
16489         stat $DIR/$tdir
16490
16491 #define OBD_FAIL_MDS_XATTR_REP                  0x161
16492         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
16493         local facet=mds$((mdtidx + 1))
16494         set_nodes_failloc $(facet_active_host $facet) 0x80000161
16495         getfattr -n trusted.name1 $DIR/$tdir 2> /dev/null
16496
16497         stop $facet || error "stop MDS failed"
16498         start $facet $(mdsdevname $((mdtidx + 1))) $MDS_MOUNT_OPTS ||
16499                 error "start MDS fail"
16500 }
16501 run_test 257 "xattr locks are not lost"
16502
16503 # Verify we take the i_mutex when security requires it
16504 test_258a() {
16505 #define OBD_FAIL_IMUTEX_SEC 0x141c
16506         $LCTL set_param fail_loc=0x141c
16507         touch $DIR/$tfile
16508         chmod u+s $DIR/$tfile
16509         chmod a+rwx $DIR/$tfile
16510         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
16511         RC=$?
16512         if [ $RC -ne 0 ]; then
16513                 error "error, failed to take i_mutex, rc=$?"
16514         fi
16515         rm -f $DIR/$tfile
16516 }
16517 run_test 258a
16518
16519 # Verify we do NOT take the i_mutex in the normal case
16520 test_258b() {
16521 #define OBD_FAIL_IMUTEX_NOSEC 0x141d
16522         $LCTL set_param fail_loc=0x141d
16523         touch $DIR/$tfile
16524         chmod a+rwx $DIR
16525         chmod a+rw $DIR/$tfile
16526         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
16527         RC=$?
16528         if [ $RC -ne 0 ]; then
16529                 error "error, took i_mutex unnecessarily, rc=$?"
16530         fi
16531         rm -f $DIR/$tfile
16532
16533 }
16534 run_test 258b "verify i_mutex security behavior"
16535
16536 test_259() {
16537         local file=$DIR/$tfile
16538         local before
16539         local after
16540
16541         [ "$(facet_fstype mds1)" != "ldiskfs" ] &&
16542                 skip "ldiskfs only test" && return
16543
16544         stack_trap "rm -f $file" EXIT
16545
16546         wait_delete_completed
16547         before=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16548         echo "before: $before"
16549
16550         $LFS setstripe -i 0 -c 1 $file
16551         dd if=/dev/zero of=$file bs=1M count=10 || error "couldn't write"
16552         sync_all_data
16553         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16554         echo "after write: $after"
16555
16556 #define OBD_FAIL_OSD_FAIL_AT_TRUNCATE          0x2301
16557         do_facet ost1 $LCTL set_param fail_loc=0x2301
16558         $TRUNCATE $file 0
16559         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16560         echo "after truncate: $after"
16561
16562         stop ost1
16563         do_facet ost1 $LCTL set_param fail_loc=0
16564         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
16565         sleep 2
16566         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16567         echo "after restart: $after"
16568         [ $((after - before)) -ge $(fs_log_size ost1) ] &&
16569                 error "missing truncate?"
16570
16571         return 0
16572 }
16573 run_test 259 "crash at delayed truncate"
16574
16575 test_260() {
16576 #define OBD_FAIL_MDC_CLOSE               0x806
16577         $LCTL set_param fail_loc=0x80000806
16578         touch $DIR/$tfile
16579
16580 }
16581 run_test 260 "Check mdc_close fail"
16582
16583 ### Data-on-MDT sanity tests ###
16584 test_270a() {
16585         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16586                 skip "Need MDS version at least 2.10.55"
16587
16588         # create DoM file
16589         local dom=$DIR/$tdir/dom_file
16590         local tmp=$DIR/$tdir/tmp_file
16591
16592         mkdir -p $DIR/$tdir
16593
16594         # basic checks for DoM component creation
16595         $LFS setstripe -E 1024K -E 1024K -L mdt $dom 2>/dev/null &&
16596                 error "Can set MDT layout to non-first entry"
16597
16598         $LFS setstripe -E 1024K -L mdt -E 1024K -L mdt $dom 2>/dev/null &&
16599                 error "Can define multiple entries as MDT layout"
16600
16601         $LFS setstripe -E 1M -L mdt $dom ||
16602                 error "Can't create DoM layout"
16603
16604         [ $($LFS getstripe -L $dom) == "mdt" ] || error "bad pattern"
16605         [ $($LFS getstripe -c $dom) == 0 ] || error "bad stripe count"
16606         [ $($LFS getstripe -S $dom) == 1048576 ] || error "bad stripe size"
16607
16608         local mdtidx=$($LFS getstripe -m $dom)
16609         local mdtname=MDT$(printf %04x $mdtidx)
16610         local facet=mds$((mdtidx + 1))
16611         local space_check=1
16612
16613         # Skip free space checks with ZFS
16614         if [ "$(facet_fstype $facet)" == "zfs" ]; then
16615                 space_check=0
16616         fi
16617
16618         # write
16619         sync
16620         local mdtfree1=$(do_facet $facet \
16621                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16622         dd if=/dev/urandom of=$tmp bs=1024 count=100
16623         # check also direct IO along write
16624         dd if=$tmp of=$dom bs=102400 count=1 oflag=direct
16625         sync
16626         cmp $tmp $dom || error "file data is different"
16627         [ $(stat -c%s $dom) == 102400 ] || error "bad size after write"
16628         if [ $space_check == 1 ]; then
16629                 local mdtfree2=$(do_facet $facet \
16630                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16631                 [ $(($mdtfree1 - $mdtfree2)) -ge 102 ] ||
16632                         error "MDT free space is wrong after write"
16633         fi
16634
16635         # truncate
16636         $TRUNCATE $dom 10000
16637         [ $(stat -c%s $dom) == 10000 ] || error "bad size after truncate"
16638         if [ $space_check == 1 ]; then
16639                 mdtfree1=$(do_facet $facet \
16640                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16641                 [ $(($mdtfree1 - $mdtfree2)) -ge 92 ] ||
16642                         error "MDT free space is wrong after truncate"
16643         fi
16644
16645         # append
16646         cat $tmp >> $dom
16647         sync
16648         [ $(stat -c%s $dom) == 112400 ] || error "bad size after append"
16649         if [ $space_check == 1 ]; then
16650                 mdtfree2=$(do_facet $facet \
16651                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16652                 [ $(($mdtfree1 - $mdtfree2)) -ge 102 ] ||
16653                         error "MDT free space is wrong after append"
16654         fi
16655
16656         # delete
16657         rm $dom
16658         if [ $space_check == 1 ]; then
16659                 mdtfree1=$(do_facet $facet \
16660                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16661                 [ $(($mdtfree1 - $mdtfree2)) -ge 112 ] ||
16662                         error "MDT free space is wrong after removal"
16663         fi
16664
16665         # combined striping
16666         $LFS setstripe -E 1024K -L mdt -E EOF $dom ||
16667                 error "Can't create DoM + OST striping"
16668
16669         dd if=/dev/urandom of=$tmp bs=1024 count=2000
16670         # check also direct IO along write
16671         dd if=$tmp of=$dom bs=102400 count=20 oflag=direct
16672         sync
16673         cmp $tmp $dom || error "file data is different"
16674         [ $(stat -c%s $dom) == 2048000 ] || error "bad size after write"
16675         rm $dom
16676         rm $tmp
16677
16678         return 0
16679 }
16680 run_test 270a "DoM: basic functionality tests"
16681
16682 test_270b() {
16683         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16684                 skip "Need MDS version at least 2.10.55"
16685
16686         local dom=$DIR/$tdir/dom_file
16687         local max_size=1048576
16688
16689         mkdir -p $DIR/$tdir
16690         $LFS setstripe -E $max_size -L mdt $dom
16691
16692         # truncate over the limit
16693         $TRUNCATE $dom $(($max_size + 1)) &&
16694                 error "successful truncate over the maximum size"
16695         # write over the limit
16696         dd if=/dev/zero of=$dom bs=$max_size seek=1 count=1 &&
16697                 error "successful write over the maximum size"
16698         # append over the limit
16699         dd if=/dev/zero of=$dom bs=$(($max_size - 3)) count=1
16700         echo "12345" >> $dom && error "successful append over the maximum size"
16701         rm $dom
16702
16703         return 0
16704 }
16705 run_test 270b "DoM: maximum size overflow checks for DoM-only file"
16706
16707 test_270c() {
16708         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16709                 skip "Need MDS version at least 2.10.55"
16710
16711         mkdir -p $DIR/$tdir
16712         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
16713
16714         # check files inherit DoM EA
16715         touch $DIR/$tdir/first
16716         [ $($GETSTRIPE -L $DIR/$tdir/first) == "mdt" ] ||
16717                 error "bad pattern"
16718         [ $($LFS getstripe -c $DIR/$tdir/first) == 0 ] ||
16719                 error "bad stripe count"
16720         [ $($LFS getstripe -S $DIR/$tdir/first) == 1048576 ] ||
16721                 error "bad stripe size"
16722
16723         # check directory inherits DoM EA and uses it as default
16724         mkdir $DIR/$tdir/subdir
16725         touch $DIR/$tdir/subdir/second
16726         [ $($LFS getstripe -L $DIR/$tdir/subdir/second) == "mdt" ] ||
16727                 error "bad pattern in sub-directory"
16728         [ $($LFS getstripe -c $DIR/$tdir/subdir/second) == 0 ] ||
16729                 error "bad stripe count in sub-directory"
16730         [ $($LFS getstripe -S $DIR/$tdir/subdir/second) == 1048576 ] ||
16731                 error "bad stripe size in sub-directory"
16732         return 0
16733 }
16734 run_test 270c "DoM: DoM EA inheritance tests"
16735
16736 test_270d() {
16737         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16738                 skip "Need MDS version at least 2.10.55"
16739
16740         mkdir -p $DIR/$tdir
16741         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
16742
16743         # inherit default DoM striping
16744         mkdir $DIR/$tdir/subdir
16745         touch $DIR/$tdir/subdir/f1
16746
16747         # change default directory striping
16748         $LFS setstripe -c 1 $DIR/$tdir/subdir
16749         touch $DIR/$tdir/subdir/f2
16750         [ $($LFS getstripe -c $DIR/$tdir/subdir/f2) == 1 ] ||
16751                 error "wrong default striping in file 2"
16752         [ $($LFS getstripe -L $DIR/$tdir/subdir/f2) == "raid0" ] ||
16753                 error "bad pattern in file 2"
16754         return 0
16755 }
16756 run_test 270d "DoM: change striping from DoM to RAID0"
16757
16758 test_270e() {
16759         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16760                 skip "Need MDS version at least 2.10.55"
16761
16762         mkdir -p $DIR/$tdir/dom
16763         mkdir -p $DIR/$tdir/norm
16764         DOMFILES=20
16765         NORMFILES=10
16766         $LFS setstripe -E 1M -L mdt $DIR/$tdir/dom
16767         $LFS setstripe -i 0 -S 2M $DIR/$tdir/norm
16768
16769         createmany -o $DIR/$tdir/dom/dom- $DOMFILES
16770         createmany -o $DIR/$tdir/norm/norm- $NORMFILES
16771
16772         # find DoM files by layout
16773         NUM=$($LFS find -L mdt -type f $DIR/$tdir 2>/dev/null | wc -l)
16774         [ $NUM -eq  $DOMFILES ] ||
16775                 error "lfs find -L: found $NUM, expected $DOMFILES"
16776         echo "Test 1: lfs find 20 DOM files by layout: OK"
16777
16778         # there should be 1 dir with default DOM striping
16779         NUM=$($LFS find -L mdt -type d $DIR/$tdir 2>/dev/null | wc -l)
16780         [ $NUM -eq  1 ] ||
16781                 error "lfs find -L: found $NUM, expected 1 dir"
16782         echo "Test 2: lfs find 1 DOM dir by layout: OK"
16783
16784         # find DoM files by stripe size
16785         NUM=$($LFS find -S -1200K -type f $DIR/$tdir 2>/dev/null | wc -l)
16786         [ $NUM -eq  $DOMFILES ] ||
16787                 error "lfs find -S: found $NUM, expected $DOMFILES"
16788         echo "Test 4: lfs find 20 DOM files by stripe size: OK"
16789
16790         # find files by stripe offset except DoM files
16791         NUM=$($LFS find -i 0 -type f $DIR/$tdir 2>/dev/null | wc -l)
16792         [ $NUM -eq  $NORMFILES ] ||
16793                 error "lfs find -i: found $NUM, expected $NORMFILES"
16794         echo "Test 5: lfs find no DOM files by stripe index: OK"
16795         return 0
16796 }
16797 run_test 270e "DoM: lfs find with DoM files test"
16798
16799 test_270f() {
16800         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16801                 skip "Need MDS version at least 2.10.55"
16802
16803         local mdtname=${FSNAME}-MDT0000-mdtlov
16804         local dom=$DIR/$tdir/dom_file
16805         local dom_limit_saved=$(do_facet mds1 $LCTL get_param -n \
16806                                                 lod.$mdtname.dom_stripesize)
16807         local dom_limit=131072
16808
16809         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=$dom_limit
16810         local dom_current=$(do_facet mds1 $LCTL get_param -n \
16811                                                 lod.$mdtname.dom_stripesize)
16812         [ ${dom_limit} -eq ${dom_current} ] ||
16813                 error "Cannot change per-MDT DoM stripe limit to $dom_limit"
16814
16815         $LFS mkdir -i 0 -c 1 $DIR/$tdir
16816         $LFS setstripe -d $DIR/$tdir
16817         $LFS setstripe -E $dom_limit -L mdt $DIR/$tdir ||
16818                 error "Can't set directory default striping"
16819
16820         # exceed maximum stripe size
16821         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
16822                 error "Can't create file with $((dom_limit * 2)) DoM stripe"
16823         [ $($LFS getstripe -S $dom) -eq $((dom_limit * 2)) ] &&
16824                 error "Able to create DoM component size more than LOD limit"
16825
16826         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=0
16827         dom_current=$(do_facet mds1 $LCTL get_param -n \
16828                                                 lod.$mdtname.dom_stripesize)
16829         [ 0 -eq ${dom_current} ] ||
16830                 error "Can't set zero DoM stripe limit"
16831         rm $dom
16832
16833         # attempt to create DoM file on server with disabled DoM should
16834         # remove DoM entry from layout and be succeed
16835         $LFS setstripe -E $dom_limit -L mdt -E -1 $dom ||
16836                 error "Can't create DoM file (DoM is disabled)"
16837         [ $($LFS getstripe -L $dom) == "mdt" ] &&
16838                 error "File has DoM component while DoM is disabled"
16839         rm $dom
16840
16841         # attempt to create DoM file with only DoM stripe should return error
16842         $LFS setstripe -E $dom_limit -L mdt $dom &&
16843                 error "Able to create DoM-only file while DoM is disabled"
16844
16845         # too low values to be aligned with smallest stripe size 64K
16846         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=30000
16847         dom_current=$(do_facet mds1 $LCTL get_param -n \
16848                                                 lod.$mdtname.dom_stripesize)
16849         [ 30000 -eq ${dom_current} ] &&
16850                 error "Can set too small DoM stripe limit"
16851
16852         # 64K is a minimal stripe size in Lustre, expect limit of that size
16853         [ 65536 -eq ${dom_current} ] ||
16854                 error "Limit is not set to 64K but ${dom_current}"
16855
16856         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=2147483648
16857         dom_current=$(do_facet mds1 $LCTL get_param -n \
16858                                                 lod.$mdtname.dom_stripesize)
16859         echo $dom_current
16860         [ 2147483648 -eq ${dom_current} ] &&
16861                 error "Can set too large DoM stripe limit"
16862
16863         do_facet mds1 $LCTL set_param -n \
16864                                 lod.$mdtname.dom_stripesize=$((dom_limit * 2))
16865         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
16866                 error "Can't create DoM component size after limit change"
16867         do_facet mds1 $LCTL set_param -n \
16868                                 lod.$mdtname.dom_stripesize=$((dom_limit / 2))
16869         $LFS setstripe -E $dom_limit -L mdt ${dom}_big ||
16870                 error "Can't create DoM file after limit decrease"
16871         [ $($LFS getstripe -S ${dom}_big) -eq $((dom_limit / 2)) ] ||
16872                 error "Can create big DoM component after limit decrease"
16873         touch ${dom}_def ||
16874                 error "Can't create file with old default layout"
16875
16876         do_facet mds1 $LCTL set_param -n lod.*.dom_stripesize=$dom_limit_saved
16877         return 0
16878 }
16879 run_test 270f "DoM: maximum DoM stripe size checks"
16880
16881 test_271a() {
16882         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16883                 skip "Need MDS version at least 2.10.55"
16884
16885         local dom=$DIR/$tdir/dom
16886
16887         mkdir -p $DIR/$tdir
16888
16889         $LFS setstripe -E 1024K -L mdt $dom
16890
16891         lctl set_param -n mdc.*.stats=clear
16892         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
16893         cat $dom > /dev/null
16894         local reads=$(lctl get_param -n mdc.*.stats |
16895                         awk '/ost_read/ {print $2}')
16896         [ -z $reads ] || error "Unexpected $reads READ RPCs"
16897         ls $dom
16898         rm -f $dom
16899 }
16900 run_test 271a "DoM: data is cached for read after write"
16901
16902 test_271b() {
16903         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16904                 skip "Need MDS version at least 2.10.55"
16905
16906         local dom=$DIR/$tdir/dom
16907
16908         mkdir -p $DIR/$tdir
16909
16910         $LFS setstripe -E 1024K -L mdt -E EOF $dom
16911
16912         lctl set_param -n mdc.*.stats=clear
16913         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
16914         cancel_lru_locks mdc
16915         $CHECKSTAT -t file -s 4096 $dom || error "stat #1 fails"
16916         # second stat to check size is cached on client
16917         $CHECKSTAT -t file -s 4096 $dom || error "stat #2 fails"
16918         local gls=$(lctl get_param -n mdc.*.stats |
16919                         awk '/ldlm_glimpse/ {print $2}')
16920         [ -z $gls ] || error "Unexpected $gls glimpse RPCs"
16921         rm -f $dom
16922 }
16923 run_test 271b "DoM: no glimpse RPC for stat (DoM only file)"
16924
16925 test_271ba() {
16926         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16927                 skip "Need MDS version at least 2.10.55"
16928
16929         local dom=$DIR/$tdir/dom
16930
16931         mkdir -p $DIR/$tdir
16932
16933         $LFS setstripe -E 1024K -L mdt -E EOF $dom
16934
16935         lctl set_param -n mdc.*.stats=clear
16936         lctl set_param -n osc.*.stats=clear
16937         dd if=/dev/zero of=$dom bs=2048K count=1 || return 1
16938         cancel_lru_locks mdc
16939         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
16940         # second stat to check size is cached on client
16941         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
16942         local gls=$(lctl get_param -n mdc.*.stats |
16943                         awk '/ldlm_glimpse/ {print $2}')
16944         [ -z $gls ] || error "Unexpected $gls glimpse RPCs"
16945         local gls=$(lctl get_param -n osc.*.stats |
16946                         awk '/ldlm_glimpse/ {print $2}')
16947         [ -z $gls ] || error "Unexpected $gls OSC glimpse RPCs"
16948         rm -f $dom
16949 }
16950 run_test 271ba "DoM: no glimpse RPC for stat (combined file)"
16951
16952 test_271c() {
16953         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16954                 skip "Need MDS version at least 2.10.55"
16955
16956         local dom=$DIR/$tdir/dom
16957
16958         mkdir -p $DIR/$tdir
16959
16960         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
16961
16962         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
16963         local facet=mds$((mdtidx + 1))
16964
16965         cancel_lru_locks mdc
16966         do_facet $facet lctl set_param -n mdt.*.dom_lock=0
16967         createmany -o $dom 1000
16968         lctl set_param -n mdc.*.stats=clear
16969         smalliomany -w $dom 1000 200
16970         lctl get_param -n mdc.*.stats
16971         local enq=$(lctl get_param -n mdc.*.stats |
16972                         awk '/ldlm_ibits_enqueue/ {print $2}')
16973         # Each file has 1 open, 1 IO enqueues, total 2000
16974         # but now we have also +1 getxattr for security.capability, total 3000
16975         [ $enq -ge 2000 ] || error "Too few enqueues $enq, expected > 2000"
16976         unlinkmany $dom 1000
16977
16978         cancel_lru_locks mdc
16979         do_facet $facet lctl set_param -n mdt.*.dom_lock=1
16980         createmany -o $dom 1000
16981         lctl set_param -n mdc.*.stats=clear
16982         smalliomany -w $dom 1000 200
16983         lctl get_param -n mdc.*.stats
16984         local enq_2=$(lctl get_param -n mdc.*.stats |
16985                         awk '/ldlm_ibits_enqueue/ {print $2}')
16986         # Expect to see reduced amount of RPCs by 1000 due to single enqueue
16987         # for OPEN and IO lock.
16988         [ $((enq - enq_2)) -ge 1000 ] ||
16989                 error "Too many enqueues $enq_2, expected about $((enq - 1000))"
16990         unlinkmany $dom 1000
16991         return 0
16992 }
16993 run_test 271c "DoM: IO lock at open saves enqueue RPCs"
16994
16995 cleanup_271def_tests() {
16996         trap 0
16997         rm -f $1
16998 }
16999
17000 test_271d() {
17001         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.57) ] &&
17002                 skip "Need MDS version at least 2.10.57" && return
17003
17004         local dom=$DIR/$tdir/dom
17005         local tmp=$TMP/$tfile
17006         trap "cleanup_271def_tests $tmp" EXIT
17007
17008         mkdir -p $DIR/$tdir
17009
17010         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17011
17012         local mdtidx=$($GETSTRIPE -M $DIR/$tdir)
17013         local facet=mds$((mdtidx + 1))
17014
17015         cancel_lru_locks mdc
17016         dd if=/dev/urandom of=$tmp bs=1000 count=1
17017         dd if=$tmp of=$dom bs=1000 count=1
17018         cancel_lru_locks mdc
17019
17020         cat /etc/hosts >> $tmp
17021         lctl set_param -n mdc.*.stats=clear
17022
17023         # append data to the same file it should update local page
17024         echo "Append to the same page"
17025         cat /etc/hosts >> $dom
17026         local num=$(lctl get_param -n mdc.*.stats |
17027                 awk '/ost_read/ {print $2}')
17028         local ra=$(lctl get_param -n mdc.*.stats |
17029                 awk '/req_active/ {print $2}')
17030         local rw=$(lctl get_param -n mdc.*.stats |
17031                 awk '/req_waittime/ {print $2}')
17032
17033         [ -z $num ] || error "$num READ RPC occured"
17034         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17035         echo "... DONE"
17036
17037         # compare content
17038         cmp $tmp $dom || error "file miscompare"
17039
17040         cancel_lru_locks mdc
17041         lctl set_param -n mdc.*.stats=clear
17042
17043         echo "Open and read file"
17044         cat $dom > /dev/null
17045         local num=$(lctl get_param -n mdc.*.stats |
17046                 awk '/ost_read/ {print $2}')
17047         local ra=$(lctl get_param -n mdc.*.stats |
17048                 awk '/req_active/ {print $2}')
17049         local rw=$(lctl get_param -n mdc.*.stats |
17050                 awk '/req_waittime/ {print $2}')
17051
17052         [ -z $num ] || error "$num READ RPC occured"
17053         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17054         echo "... DONE"
17055
17056         # compare content
17057         cmp $tmp $dom || error "file miscompare"
17058
17059         return 0
17060 }
17061 run_test 271d "DoM: read on open (1K file in reply buffer)"
17062
17063 test_271e() {
17064         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.57) ] &&
17065                 skip "Need MDS version at least 2.10.57" && return
17066
17067         local dom=$DIR/$tdir/dom
17068         local tmp=$TMP/${tfile}.data
17069         trap "cleanup_271def_tests $tmp" EXIT
17070
17071         mkdir -p $DIR/$tdir
17072
17073         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17074
17075         local mdtidx=$($GETSTRIPE -M $DIR/$tdir)
17076         local facet=mds$((mdtidx + 1))
17077
17078         cancel_lru_locks mdc
17079         dd if=/dev/urandom of=$tmp bs=30K count=1
17080         dd if=$tmp of=$dom bs=30K count=1
17081         cancel_lru_locks mdc
17082         cat /etc/hosts >> $tmp
17083         lctl set_param -n mdc.*.stats=clear
17084
17085         echo "Append to the same page"
17086         cat /etc/hosts >> $dom
17087
17088         local num=$(lctl get_param -n mdc.*.stats | \
17089                 awk '/ost_read/ {print $2}')
17090         local ra=$(lctl get_param -n mdc.*.stats | \
17091                 awk '/req_active/ {print $2}')
17092         local rw=$(lctl get_param -n mdc.*.stats | \
17093                 awk '/req_waittime/ {print $2}')
17094
17095         [ -z $num ] || error "$num READ RPC occured"
17096         # Reply buffer can be adjusted for larger buffer by resend
17097         echo "... DONE with $((ra - rw)) resends"
17098
17099         # compare content
17100         cmp $tmp $dom || error "file miscompare"
17101
17102         cancel_lru_locks mdc
17103         lctl set_param -n mdc.*.stats=clear
17104
17105         echo "Open and read file"
17106         cat $dom > /dev/null
17107         local num=$(lctl get_param -n mdc.*.stats | \
17108                 awk '/ost_read/ {print $2}')
17109         local ra=$(lctl get_param -n mdc.*.stats | \
17110                 awk '/req_active/ {print $2}')
17111         local rw=$(lctl get_param -n mdc.*.stats | \
17112                 awk '/req_waittime/ {print $2}')
17113
17114         [ -z $num ] || error "$num READ RPC occured"
17115         # Reply buffer can be adjusted for larger buffer by resend
17116         echo "... DONE with $((ra - rw)) resends"
17117
17118         # compare content
17119         cmp $tmp $dom || error "file miscompare"
17120
17121         return 0
17122 }
17123 run_test 271e "DoM: read on open (30K file with reply buffer adjusting)"
17124
17125 test_271f() {
17126         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.57) ] &&
17127                 skip "Need MDS version at least 2.10.57" && return
17128
17129         local dom=$DIR/$tdir/dom
17130         local tmp=$TMP/$tfile
17131         trap "cleanup_271def_tests $tmp" EXIT
17132
17133         mkdir -p $DIR/$tdir
17134
17135         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17136
17137         local mdtidx=$($GETSTRIPE -M $DIR/$tdir)
17138         local facet=mds$((mdtidx + 1))
17139
17140         cancel_lru_locks mdc
17141         dd if=/dev/urandom of=$tmp bs=200000 count=1
17142         dd if=$tmp of=$dom bs=200000 count=1
17143         cancel_lru_locks mdc
17144         cat /etc/hosts >> $tmp
17145         lctl set_param -n mdc.*.stats=clear
17146
17147         echo "Append to the same page"
17148         cat /etc/hosts >> $dom
17149         local num=$(lctl get_param -n mdc.*.stats | \
17150                 awk '/ost_read/ {print $2}')
17151         local ra=$(lctl get_param -n mdc.*.stats | \
17152                 awk '/req_active/ {print $2}')
17153         local rw=$(lctl get_param -n mdc.*.stats | \
17154                 awk '/req_waittime/ {print $2}')
17155
17156         [ -z $num ] || error "$num READ RPC occured"
17157         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17158         echo "... DONE"
17159
17160         # compare content
17161         cmp $tmp $dom || error "file miscompare"
17162
17163         cancel_lru_locks mdc
17164         lctl set_param -n mdc.*.stats=clear
17165
17166         echo "Open and read file"
17167         cat $dom > /dev/null
17168         local num=$(lctl get_param -n mdc.*.stats | \
17169                 awk '/ost_read/ {print $2}')
17170         local ra=$(lctl get_param -n mdc.*.stats | \
17171                 awk '/req_active/ {print $2}')
17172         local rw=$(lctl get_param -n mdc.*.stats | \
17173                 awk '/req_waittime/ {print $2}')
17174
17175         [ $num -eq 1 ] || error "expect 1 READ RPC, $num occured"
17176         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17177         echo "... DONE"
17178
17179         # compare content
17180         cmp $tmp $dom || error "file miscompare"
17181
17182         return 0
17183 }
17184 run_test 271f "DoM: read on open (200K file and read tail)"
17185
17186 test_275() {
17187         remote_ost_nodsh && skip "remote OST with nodsh"
17188         [ $(lustre_version_code ost1) -lt $(version_code 2.10.57) ] &&
17189                 skip "Need OST version >= 2.10.57"
17190
17191         local file=$DIR/$tfile
17192         local oss
17193
17194         oss=$(comma_list $(osts_nodes))
17195
17196         dd if=/dev/urandom of=$file bs=1M count=2 ||
17197                 error "failed to create a file"
17198         cancel_lru_locks osc
17199
17200         #lock 1
17201         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
17202                 error "failed to read a file"
17203
17204 #define OBD_FAIL_LDLM_PAUSE_CANCEL2      0x31f
17205         $LCTL set_param fail_loc=0x8000031f
17206
17207         cancel_lru_locks osc &
17208         sleep 1
17209
17210 #define OBD_FAIL_LDLM_PROLONG_PAUSE      0x32b
17211         do_nodes $oss $LCTL set_param fail_loc=0x8000032b
17212         #IO takes another lock, but matches the PENDING one
17213         #and places it to the IO RPC
17214         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
17215                 error "failed to read a file with PENDING lock"
17216 }
17217 run_test 275 "Read on a canceled duplicate lock"
17218
17219 test_276() {
17220         remote_ost_nodsh && skip "remote OST with nodsh"
17221         local pid
17222
17223         do_facet ost1 "(while true; do \
17224                 $LCTL get_param obdfilter.*.filesfree > /dev/null 2>&1; \
17225                 done) & pid=\\\$!; echo \\\$pid > $TMP/sanity_276_pid" &
17226         pid=$!
17227
17228         for LOOP in $(seq 20); do
17229                 stop ost1
17230                 start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
17231         done
17232         kill -9 $pid
17233         do_facet ost1 "pid=\\\$(cat $TMP/sanity_276_pid); kill -9 \\\$pid; \
17234                 rm $TMP/sanity_276_pid"
17235 }
17236 run_test 276 "Race between mount and obd_statfs"
17237
17238 cleanup_test_300() {
17239         trap 0
17240         umask $SAVE_UMASK
17241 }
17242 test_striped_dir() {
17243         local mdt_index=$1
17244         local stripe_count
17245         local stripe_index
17246
17247         mkdir -p $DIR/$tdir
17248
17249         SAVE_UMASK=$(umask)
17250         trap cleanup_test_300 RETURN EXIT
17251
17252         $LFS setdirstripe -i $mdt_index -c 2 -H all_char -o 755 \
17253                                                 $DIR/$tdir/striped_dir ||
17254                 error "set striped dir error"
17255
17256         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
17257         [ "$mode" = "755" ] || error "expect 755 got $mode"
17258
17259         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
17260                 error "getdirstripe failed"
17261         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
17262         if [ "$stripe_count" != "2" ]; then
17263                 error "1:stripe_count is $stripe_count, expect 2"
17264         fi
17265         stripe_count=$($LFS getdirstripe -T $DIR/$tdir/striped_dir)
17266         if [ "$stripe_count" != "2" ]; then
17267                 error "2:stripe_count is $stripe_count, expect 2"
17268         fi
17269
17270         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
17271         if [ "$stripe_index" != "$mdt_index" ]; then
17272                 error "stripe_index is $stripe_index, expect $mdt_index"
17273         fi
17274
17275         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
17276                 error "nlink error after create striped dir"
17277
17278         mkdir $DIR/$tdir/striped_dir/a
17279         mkdir $DIR/$tdir/striped_dir/b
17280
17281         stat $DIR/$tdir/striped_dir/a ||
17282                 error "create dir under striped dir failed"
17283         stat $DIR/$tdir/striped_dir/b ||
17284                 error "create dir under striped dir failed"
17285
17286         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
17287                 error "nlink error after mkdir"
17288
17289         rmdir $DIR/$tdir/striped_dir/a
17290         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
17291                 error "nlink error after rmdir"
17292
17293         rmdir $DIR/$tdir/striped_dir/b
17294         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
17295                 error "nlink error after rmdir"
17296
17297         chattr +i $DIR/$tdir/striped_dir
17298         createmany -o $DIR/$tdir/striped_dir/f 10 &&
17299                 error "immutable flags not working under striped dir!"
17300         chattr -i $DIR/$tdir/striped_dir
17301
17302         rmdir $DIR/$tdir/striped_dir ||
17303                 error "rmdir striped dir error"
17304
17305         cleanup_test_300
17306
17307         true
17308 }
17309
17310 test_300a() {
17311         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
17312                 skip "skipped for lustre < 2.7.0"
17313         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17314         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17315
17316         test_striped_dir 0 || error "failed on striped dir on MDT0"
17317         test_striped_dir 1 || error "failed on striped dir on MDT0"
17318 }
17319 run_test 300a "basic striped dir sanity test"
17320
17321 test_300b() {
17322         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
17323                 skip "skipped for lustre < 2.7.0"
17324         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17325         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17326
17327         local i
17328         local mtime1
17329         local mtime2
17330         local mtime3
17331
17332         test_mkdir $DIR/$tdir || error "mkdir fail"
17333         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17334                 error "set striped dir error"
17335         for i in {0..9}; do
17336                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
17337                 sleep 1
17338                 touch $DIR/$tdir/striped_dir/file_$i || error "touch error $i"
17339                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
17340                 [ $mtime1 -eq $mtime2 ] && error "mtime unchanged after create"
17341                 sleep 1
17342                 rm -f $DIR/$tdir/striped_dir/file_$i || error "unlink error $i"
17343                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
17344                 [ $mtime2 -eq $mtime3 ] && error "mtime unchanged after unlink"
17345         done
17346         true
17347 }
17348 run_test 300b "check ctime/mtime for striped dir"
17349
17350 test_300c() {
17351         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
17352                 skip "skipped for lustre < 2.7.0"
17353         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17354         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17355
17356         local file_count
17357
17358         mkdir -p $DIR/$tdir
17359         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
17360                 error "set striped dir error"
17361
17362         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
17363                 error "chown striped dir failed"
17364
17365         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
17366                 error "create 5k files failed"
17367
17368         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
17369
17370         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
17371
17372         rm -rf $DIR/$tdir
17373 }
17374 run_test 300c "chown && check ls under striped directory"
17375
17376 test_300d() {
17377         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
17378                 skip "skipped for lustre < 2.7.0"
17379         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17380         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17381
17382         local stripe_count
17383         local file
17384
17385         mkdir -p $DIR/$tdir
17386         $SETSTRIPE -c 2 $DIR/$tdir
17387
17388         #local striped directory
17389         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17390                 error "set striped dir error"
17391         createmany -o $DIR/$tdir/striped_dir/f 10 ||
17392                 error "create 10 files failed"
17393
17394         #remote striped directory
17395         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
17396                 error "set striped dir error"
17397         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
17398                 error "create 10 files failed"
17399
17400         for file in $(find $DIR/$tdir); do
17401                 stripe_count=$($LFS getstripe -c $file)
17402                 [ $stripe_count -eq 2 ] ||
17403                         error "wrong stripe $stripe_count for $file"
17404         done
17405
17406         rm -rf $DIR/$tdir
17407 }
17408 run_test 300d "check default stripe under striped directory"
17409
17410 test_300e() {
17411         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17412                 skip "Need MDS version at least 2.7.55"
17413         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17414         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17415
17416         local stripe_count
17417         local file
17418
17419         mkdir -p $DIR/$tdir
17420
17421         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17422                 error "set striped dir error"
17423
17424         touch $DIR/$tdir/striped_dir/a
17425         touch $DIR/$tdir/striped_dir/b
17426         touch $DIR/$tdir/striped_dir/c
17427
17428         mkdir $DIR/$tdir/striped_dir/dir_a
17429         mkdir $DIR/$tdir/striped_dir/dir_b
17430         mkdir $DIR/$tdir/striped_dir/dir_c
17431
17432         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_a ||
17433                 error "set striped adir under striped dir error"
17434
17435         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_b ||
17436                 error "set striped bdir under striped dir error"
17437
17438         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_c ||
17439                 error "set striped cdir under striped dir error"
17440
17441         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
17442                 error "rename dir under striped dir fails"
17443
17444         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
17445                 error "rename dir under different stripes fails"
17446
17447         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
17448                 error "rename file under striped dir should succeed"
17449
17450         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
17451                 error "rename dir under striped dir should succeed"
17452
17453         rm -rf $DIR/$tdir
17454 }
17455 run_test 300e "check rename under striped directory"
17456
17457 test_300f() {
17458         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17459         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17460         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17461                 skip "Need MDS version at least 2.7.55"
17462
17463         local stripe_count
17464         local file
17465
17466         rm -rf $DIR/$tdir
17467         mkdir -p $DIR/$tdir
17468
17469         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17470                 error "set striped dir error"
17471
17472         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir1 ||
17473                 error "set striped dir error"
17474
17475         touch $DIR/$tdir/striped_dir/a
17476         mkdir $DIR/$tdir/striped_dir/dir_a
17477         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
17478                 error "create striped dir under striped dir fails"
17479
17480         touch $DIR/$tdir/striped_dir1/b
17481         mkdir $DIR/$tdir/striped_dir1/dir_b
17482         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
17483                 error "create striped dir under striped dir fails"
17484
17485         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
17486                 error "rename dir under different striped dir should fail"
17487
17488         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
17489                 error "rename striped dir under diff striped dir should fail"
17490
17491         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
17492                 error "rename file under diff striped dirs fails"
17493
17494         rm -rf $DIR/$tdir
17495 }
17496 run_test 300f "check rename cross striped directory"
17497
17498 test_300_check_default_striped_dir()
17499 {
17500         local dirname=$1
17501         local default_count=$2
17502         local default_index=$3
17503         local stripe_count
17504         local stripe_index
17505         local dir_stripe_index
17506         local dir
17507
17508         echo "checking $dirname $default_count $default_index"
17509         $LFS setdirstripe -D -c $default_count -i $default_index \
17510                                 -t all_char $DIR/$tdir/$dirname ||
17511                 error "set default stripe on striped dir error"
17512         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
17513         [ $stripe_count -eq $default_count ] ||
17514                 error "expect $default_count get $stripe_count for $dirname"
17515
17516         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
17517         [ $stripe_index -eq $default_index ] ||
17518                 error "expect $default_index get $stripe_index for $dirname"
17519
17520         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
17521                                                 error "create dirs failed"
17522
17523         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
17524         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
17525         for dir in $(find $DIR/$tdir/$dirname/*); do
17526                 stripe_count=$($LFS getdirstripe -c $dir)
17527                 [ $stripe_count -eq $default_count ] ||
17528                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
17529                 error "stripe count $default_count != $stripe_count for $dir"
17530
17531                 stripe_index=$($LFS getdirstripe -i $dir)
17532                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
17533                         error "$stripe_index != $default_index for $dir"
17534
17535                 #check default stripe
17536                 stripe_count=$($LFS getdirstripe -D -c $dir)
17537                 [ $stripe_count -eq $default_count ] ||
17538                 error "default count $default_count != $stripe_count for $dir"
17539
17540                 stripe_index=$($LFS getdirstripe -D -i $dir)
17541                 [ $stripe_index -eq $default_index ] ||
17542                 error "default index $default_index != $stripe_index for $dir"
17543         done
17544         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
17545 }
17546
17547 test_300g() {
17548         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17549         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17550                 skip "Need MDS version at least 2.7.55"
17551
17552         local dir
17553         local stripe_count
17554         local stripe_index
17555
17556         mkdir $DIR/$tdir
17557         mkdir $DIR/$tdir/normal_dir
17558
17559         #Checking when client cache stripe index
17560         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
17561         $LFS setdirstripe -D -i1 $DIR/$tdir/striped_dir ||
17562                 error "create striped_dir failed"
17563
17564         $LFS setdirstripe -i0 $DIR/$tdir/striped_dir/dir0 ||
17565                 error "create dir0 fails"
17566         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir0)
17567         [ $stripe_index -eq 0 ] ||
17568                 error "dir0 expect index 0 got $stripe_index"
17569
17570         mkdir $DIR/$tdir/striped_dir/dir1 ||
17571                 error "create dir1 fails"
17572         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir1)
17573         [ $stripe_index -eq 1 ] ||
17574                 error "dir1 expect index 1 got $stripe_index"
17575
17576         #check default stripe count/stripe index
17577         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
17578         test_300_check_default_striped_dir normal_dir 1 0
17579         test_300_check_default_striped_dir normal_dir 2 1
17580         test_300_check_default_striped_dir normal_dir 2 -1
17581
17582         #delete default stripe information
17583         echo "delete default stripeEA"
17584         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
17585                 error "set default stripe on striped dir error"
17586
17587         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
17588         for dir in $(find $DIR/$tdir/normal_dir/*); do
17589                 stripe_count=$($LFS getdirstripe -c $dir)
17590                 [ $stripe_count -eq 0 ] ||
17591                         error "expect 1 get $stripe_count for $dir"
17592                 stripe_index=$($LFS getdirstripe -i $dir)
17593                 [ $stripe_index -eq 0 ] ||
17594                         error "expect 0 get $stripe_index for $dir"
17595         done
17596 }
17597 run_test 300g "check default striped directory for normal directory"
17598
17599 test_300h() {
17600         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17601         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17602                 skip "Need MDS version at least 2.7.55"
17603
17604         local dir
17605         local stripe_count
17606
17607         mkdir $DIR/$tdir
17608         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
17609                 error "set striped dir error"
17610
17611         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
17612         test_300_check_default_striped_dir striped_dir 1 0
17613         test_300_check_default_striped_dir striped_dir 2 1
17614         test_300_check_default_striped_dir striped_dir 2 -1
17615
17616         #delete default stripe information
17617         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
17618                 error "set default stripe on striped dir error"
17619
17620         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
17621         for dir in $(find $DIR/$tdir/striped_dir/*); do
17622                 stripe_count=$($LFS getdirstripe -c $dir)
17623                 [ $stripe_count -eq 0 ] ||
17624                         error "expect 1 get $stripe_count for $dir"
17625         done
17626 }
17627 run_test 300h "check default striped directory for striped directory"
17628
17629 test_300i() {
17630         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17631         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17632         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17633                 skip "Need MDS version at least 2.7.55"
17634
17635         local stripe_count
17636         local file
17637
17638         mkdir $DIR/$tdir
17639
17640         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
17641                 error "set striped dir error"
17642
17643         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
17644                 error "create files under striped dir failed"
17645
17646         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir ||
17647                 error "set striped hashdir error"
17648
17649         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir/d0 ||
17650                 error "create dir0 under hash dir failed"
17651         $LFS setdirstripe -i0 -c$MDSCOUNT -H fnv_1a_64 $DIR/$tdir/hashdir/d1 ||
17652                 error "create dir1 under hash dir failed"
17653
17654         # unfortunately, we need to umount to clear dir layout cache for now
17655         # once we fully implement dir layout, we can drop this
17656         umount_client $MOUNT || error "umount failed"
17657         mount_client $MOUNT || error "mount failed"
17658
17659         $LFS find -H fnv_1a_64 $DIR/$tdir/hashdir
17660         local dircnt=$($LFS find -H fnv_1a_64 $DIR/$tdir/hashdir | wc -l)
17661         [ $dircnt -eq 1 ] || error "lfs find striped dir got:$dircnt,except:1"
17662
17663         #set the stripe to be unknown hash type
17664         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
17665         $LCTL set_param fail_loc=0x1901
17666         for ((i = 0; i < 10; i++)); do
17667                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
17668                         error "stat f-$i failed"
17669                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
17670         done
17671
17672         touch $DIR/$tdir/striped_dir/f0 &&
17673                 error "create under striped dir with unknown hash should fail"
17674
17675         $LCTL set_param fail_loc=0
17676
17677         umount_client $MOUNT || error "umount failed"
17678         mount_client $MOUNT || error "mount failed"
17679
17680         return 0
17681 }
17682 run_test 300i "client handle unknown hash type striped directory"
17683
17684 test_300j() {
17685         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17686         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17687         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17688                 skip "Need MDS version at least 2.7.55"
17689
17690         local stripe_count
17691         local file
17692
17693         mkdir $DIR/$tdir
17694
17695         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
17696         $LCTL set_param fail_loc=0x1702
17697         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
17698                 error "set striped dir error"
17699
17700         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
17701                 error "create files under striped dir failed"
17702
17703         $LCTL set_param fail_loc=0
17704
17705         rm -rf $DIR/$tdir || error "unlink striped dir fails"
17706
17707         return 0
17708 }
17709 run_test 300j "test large update record"
17710
17711 test_300k() {
17712         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17713         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17714         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17715                 skip "Need MDS version at least 2.7.55"
17716
17717         local stripe_count
17718         local file
17719
17720         mkdir $DIR/$tdir
17721
17722         #define OBD_FAIL_LARGE_STRIPE   0x1703
17723         $LCTL set_param fail_loc=0x1703
17724         $LFS setdirstripe -i 0 -c512 $DIR/$tdir/striped_dir ||
17725                 error "set striped dir error"
17726         $LCTL set_param fail_loc=0
17727
17728         $LFS getdirstripe $DIR/$tdir/striped_dir ||
17729                 error "getstripeddir fails"
17730         rm -rf $DIR/$tdir/striped_dir ||
17731                 error "unlink striped dir fails"
17732
17733         return 0
17734 }
17735 run_test 300k "test large striped directory"
17736
17737 test_300l() {
17738         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17739         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17740         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17741                 skip "Need MDS version at least 2.7.55"
17742
17743         local stripe_index
17744
17745         test_mkdir -p $DIR/$tdir/striped_dir
17746         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
17747                         error "chown $RUNAS_ID failed"
17748         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
17749                 error "set default striped dir failed"
17750
17751         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
17752         $LCTL set_param fail_loc=0x80000158
17753         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
17754
17755         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
17756         [ $stripe_index -eq 1 ] ||
17757                 error "expect 1 get $stripe_index for $dir"
17758 }
17759 run_test 300l "non-root user to create dir under striped dir with stale layout"
17760
17761 test_300m() {
17762         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17763         [ $MDSCOUNT -ge 2 ] && skip_env "Only for single MDT"
17764         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17765                 skip "Need MDS version at least 2.7.55"
17766
17767         mkdir -p $DIR/$tdir/striped_dir
17768         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
17769                 error "set default stripes dir error"
17770
17771         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
17772
17773         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
17774         [ $stripe_count -eq 0 ] ||
17775                         error "expect 0 get $stripe_count for a"
17776
17777         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
17778                 error "set default stripes dir error"
17779
17780         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
17781
17782         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
17783         [ $stripe_count -eq 0 ] ||
17784                         error "expect 0 get $stripe_count for b"
17785
17786         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
17787                 error "set default stripes dir error"
17788
17789         mkdir $DIR/$tdir/striped_dir/c &&
17790                 error "default stripe_index is invalid, mkdir c should fails"
17791
17792         rm -rf $DIR/$tdir || error "rmdir fails"
17793 }
17794 run_test 300m "setstriped directory on single MDT FS"
17795
17796 cleanup_300n() {
17797         local list=$(comma_list $(mdts_nodes))
17798
17799         trap 0
17800         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
17801 }
17802
17803 test_300n() {
17804         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17805         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17806         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17807                 skip "Need MDS version at least 2.7.55"
17808         remote_mds_nodsh && skip "remote MDS with nodsh"
17809
17810         local stripe_index
17811         local list=$(comma_list $(mdts_nodes))
17812
17813         trap cleanup_300n RETURN EXIT
17814         mkdir -p $DIR/$tdir
17815         chmod 777 $DIR/$tdir
17816         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
17817                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
17818                 error "create striped dir succeeds with gid=0"
17819
17820         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
17821         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
17822                 error "create striped dir fails with gid=-1"
17823
17824         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
17825         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
17826                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
17827                 error "set default striped dir succeeds with gid=0"
17828
17829
17830         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
17831         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
17832                 error "set default striped dir fails with gid=-1"
17833
17834
17835         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
17836         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
17837                                         error "create test_dir fails"
17838         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
17839                                         error "create test_dir1 fails"
17840         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
17841                                         error "create test_dir2 fails"
17842         cleanup_300n
17843 }
17844 run_test 300n "non-root user to create dir under striped dir with default EA"
17845
17846 test_300o() {
17847         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17848         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17849         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17850                 skip "Need MDS version at least 2.7.55"
17851
17852         local numfree1
17853         local numfree2
17854
17855         mkdir -p $DIR/$tdir
17856
17857         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
17858         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
17859         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
17860                 skip "not enough free inodes $numfree1 $numfree2"
17861         fi
17862
17863         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
17864         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
17865         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
17866                 skip "not enough free space $numfree1 $numfree2"
17867         fi
17868
17869         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
17870                 error "setdirstripe fails"
17871
17872         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
17873                 error "create dirs fails"
17874
17875         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
17876         ls $DIR/$tdir/striped_dir > /dev/null ||
17877                 error "ls striped dir fails"
17878         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
17879                 error "unlink big striped dir fails"
17880 }
17881 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
17882
17883 test_300p() {
17884         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17885         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17886         remote_mds_nodsh && skip "remote MDS with nodsh"
17887
17888         mkdir -p $DIR/$tdir
17889
17890         #define OBD_FAIL_OUT_ENOSPC     0x1704
17891         do_facet mds2 lctl set_param fail_loc=0x80001704
17892         $LFS setdirstripe -i 0 -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 \
17893                  && error "create striped directory should fail"
17894
17895         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
17896
17897         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
17898         true
17899 }
17900 run_test 300p "create striped directory without space"
17901
17902 test_300q() {
17903         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17904         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17905
17906         local fd=$(free_fd)
17907         local cmd="exec $fd<$tdir"
17908         cd $DIR
17909         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
17910         eval $cmd
17911         cmd="exec $fd<&-"
17912         trap "eval $cmd" EXIT
17913         cd $tdir || error "cd $tdir fails"
17914         rmdir  ../$tdir || error "rmdir $tdir fails"
17915         mkdir local_dir && error "create dir succeeds"
17916         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
17917         eval $cmd
17918         return 0
17919 }
17920 run_test 300q "create remote directory under orphan directory"
17921
17922 prepare_remote_file() {
17923         mkdir $DIR/$tdir/src_dir ||
17924                 error "create remote source failed"
17925
17926         cp /etc/hosts $DIR/$tdir/src_dir/a ||
17927                  error "cp to remote source failed"
17928         touch $DIR/$tdir/src_dir/a
17929
17930         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
17931                 error "create remote target dir failed"
17932
17933         touch $DIR/$tdir/tgt_dir/b
17934
17935         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
17936                 error "rename dir cross MDT failed!"
17937
17938         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
17939                 error "src_child still exists after rename"
17940
17941         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
17942                 error "missing file(a) after rename"
17943
17944         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
17945                 error "diff after rename"
17946 }
17947
17948 test_310a() {
17949         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 4 MDTs"
17950         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17951
17952         local remote_file=$DIR/$tdir/tgt_dir/b
17953
17954         mkdir -p $DIR/$tdir
17955
17956         prepare_remote_file || error "prepare remote file failed"
17957
17958         #open-unlink file
17959         $OPENUNLINK $remote_file $remote_file ||
17960                 error "openunlink $remote_file failed"
17961         $CHECKSTAT -a $remote_file || error "$remote_file exists"
17962 }
17963 run_test 310a "open unlink remote file"
17964
17965 test_310b() {
17966         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 4 MDTs"
17967         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17968
17969         local remote_file=$DIR/$tdir/tgt_dir/b
17970
17971         mkdir -p $DIR/$tdir
17972
17973         prepare_remote_file || error "prepare remote file failed"
17974
17975         ln $remote_file $DIR/$tfile || error "link failed for remote file"
17976         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
17977         $CHECKSTAT -t file $remote_file || error "check file failed"
17978 }
17979 run_test 310b "unlink remote file with multiple links while open"
17980
17981 test_310c() {
17982         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17983         [[ $MDSCOUNT -lt 4 ]] && skip_env "needs >= 4 MDTs"
17984
17985         local remote_file=$DIR/$tdir/tgt_dir/b
17986
17987         mkdir -p $DIR/$tdir
17988
17989         prepare_remote_file || error "prepare remote file failed"
17990
17991         ln $remote_file $DIR/$tfile || error "link failed for remote file"
17992         multiop_bg_pause $remote_file O_uc ||
17993                         error "mulitop failed for remote file"
17994         MULTIPID=$!
17995         $MULTIOP $DIR/$tfile Ouc
17996         kill -USR1 $MULTIPID
17997         wait $MULTIPID
17998 }
17999 run_test 310c "open-unlink remote file with multiple links"
18000
18001 #LU-4825
18002 test_311() {
18003         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18004         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
18005         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.54) ] &&
18006                 skip "lustre < 2.8.54 does not contain LU-4825 fix"
18007         remote_mds_nodsh && skip "remote MDS with nodsh"
18008
18009         local old_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
18010
18011         mkdir -p $DIR/$tdir
18012         $SETSTRIPE -i 0 -c 1 $DIR/$tdir
18013         createmany -o $DIR/$tdir/$tfile. 1000
18014
18015         # statfs data is not real time, let's just calculate it
18016         old_iused=$((old_iused + 1000))
18017
18018         local count=$(do_facet $SINGLEMDS "lctl get_param -n \
18019                         osp.*OST0000*MDT0000.create_count")
18020         local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
18021                                 osp.*OST0000*MDT0000.max_create_count")
18022         for idx in $(seq $MDSCOUNT); do
18023                 do_facet mds$idx "lctl set_param -n \
18024                         osp.*OST0000*MDT000?.max_create_count=0"
18025         done
18026
18027         $SETSTRIPE -i 0 $DIR/$tdir/$tfile || error "setstripe failed"
18028         local index=$($GETSTRIPE -i $DIR/$tdir/$tfile)
18029         [ $index -ne 0 ] || error "$tfile stripe index is 0"
18030
18031         unlinkmany $DIR/$tdir/$tfile. 1000
18032
18033         for idx in $(seq $MDSCOUNT); do
18034                 do_facet mds$idx "lctl set_param -n \
18035                         osp.*OST0000*MDT000?.max_create_count=$max_count"
18036                 do_facet mds$idx "lctl set_param -n \
18037                         osp.*OST0000*MDT000?.create_count=$count"
18038         done
18039
18040         local new_iused
18041         for i in $(seq 120); do
18042                 new_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
18043                 # system may be too busy to destroy all objs in time, use
18044                 # a somewhat small value to not fail autotest
18045                 [ $((old_iused - new_iused)) -gt 400 ] && break
18046                 sleep 1
18047         done
18048
18049         echo "waited $i sec, old Iused $old_iused, new Iused $new_iused"
18050         [ $((old_iused - new_iused)) -gt 400 ] ||
18051                 error "objs not destroyed after unlink"
18052 }
18053 run_test 311 "disable OSP precreate, and unlink should destroy objs"
18054
18055 zfs_oid_to_objid()
18056 {
18057         local ost=$1
18058         local objid=$2
18059
18060         local vdevdir=$(dirname $(facet_vdevice $ost))
18061         local cmd="$ZDB -e -p $vdevdir -ddddd $(facet_device $ost)"
18062         local zfs_zapid=$(do_facet $ost $cmd |
18063                           grep -w "/O/0/d$((objid%32))" -C 5 |
18064                           awk '/Object/{getline; print $1}')
18065         local zfs_objid=$(do_facet $ost $cmd $zfs_zapid |
18066                           awk "/$objid = /"'{printf $3}')
18067
18068         echo $zfs_objid
18069 }
18070
18071 zfs_object_blksz() {
18072         local ost=$1
18073         local objid=$2
18074
18075         local vdevdir=$(dirname $(facet_vdevice $ost))
18076         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
18077         local blksz=$(do_facet $ost $cmd $objid |
18078                       awk '/dblk/{getline; printf $4}')
18079
18080         case "${blksz: -1}" in
18081                 k|K) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024)) ;;
18082                 m|M) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024*1024)) ;;
18083                 *) ;;
18084         esac
18085
18086         echo $blksz
18087 }
18088
18089 test_312() { # LU-4856
18090         remote_ost_nodsh && skip "remote OST with nodsh"
18091         [ $(facet_fstype ost1) = "zfs" ] ||
18092                 skip_env "the test only applies to zfs"
18093
18094         local max_blksz=$(do_facet ost1 \
18095                           $ZFS get -p recordsize $(facet_device ost1) |
18096                           awk '!/VALUE/{print $3}')
18097         local min_blksz=$(getconf PAGE_SIZE)
18098
18099         # to make life a little bit easier
18100         $LFS mkdir -c 1 -i 0 $DIR/$tdir
18101         $LFS setstripe -c 1 -i 0 $DIR/$tdir
18102
18103         local tf=$DIR/$tdir/$tfile
18104         touch $tf
18105         local oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18106
18107         # Get ZFS object id
18108         local zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18109
18110         # block size change by sequential over write
18111         local blksz
18112         for ((bs=$min_blksz; bs <= max_blksz; bs <<= 2)); do
18113                 dd if=/dev/zero of=$tf bs=$bs count=1 oflag=sync conv=notrunc
18114
18115                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
18116                 [ $blksz -eq $bs ] || error "blksz error: $blksz, expected: $bs"
18117         done
18118         rm -f $tf
18119
18120         # block size change by sequential append write
18121         dd if=/dev/zero of=$tf bs=$min_blksz count=1 oflag=sync conv=notrunc
18122         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18123         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18124
18125         for ((count = 1; count < $((max_blksz / min_blksz)); count *= 2)); do
18126                 dd if=/dev/zero of=$tf bs=$min_blksz count=$count seek=$count \
18127                         oflag=sync conv=notrunc
18128
18129                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
18130                 [ $blksz -eq $((2 * count * min_blksz)) ] ||
18131                         error "blksz error, actual $blksz, "    \
18132                                 "expected: 2 * $count * $min_blksz"
18133         done
18134         rm -f $tf
18135
18136         # random write
18137         touch $tf
18138         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18139         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18140
18141         dd if=/dev/zero of=$tf bs=1K count=1 oflag=sync conv=notrunc
18142         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18143         [ $blksz -eq $min_blksz ] ||
18144                 error "blksz error: $blksz, expected: $min_blksz"
18145
18146         dd if=/dev/zero of=$tf bs=64K count=1 oflag=sync conv=notrunc seek=128
18147         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18148         [ $blksz -eq 65536 ] || error "blksz error: $blksz, expected: 64k"
18149
18150         dd if=/dev/zero of=$tf bs=1M count=1 oflag=sync conv=notrunc
18151         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18152         [ $blksz -eq 65536 ] || error "rewrite error: $blksz, expected: 64k"
18153 }
18154 run_test 312 "make sure ZFS adjusts its block size by write pattern"
18155
18156 test_313() {
18157         remote_ost_nodsh && skip "remote OST with nodsh"
18158
18159         local file=$DIR/$tfile
18160         rm -f $file
18161         $SETSTRIPE -c 1 -i 0 $file || error "setstripe failed"
18162
18163         # define OBD_FAIL_TGT_RCVD_EIO           0x720
18164         do_facet ost1 "$LCTL set_param fail_loc=0x720"
18165         dd if=/dev/zero of=$file bs=4096 oflag=direct count=1 &&
18166                 error "write should failed"
18167         do_facet ost1 "$LCTL set_param fail_loc=0"
18168         rm -f $file
18169 }
18170 run_test 313 "io should fail after last_rcvd update fail"
18171
18172 test_314() {
18173         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
18174
18175         $SETSTRIPE -c 2 -i 0 $DIR/$tfile || error "setstripe failed"
18176         do_facet ost1 "$LCTL set_param fail_loc=0x720"
18177         rm -f $DIR/$tfile
18178         wait_delete_completed
18179         do_facet ost1 "$LCTL set_param fail_loc=0"
18180 }
18181 run_test 314 "OSP shouldn't fail after last_rcvd update failure"
18182
18183 test_315() { # LU-618
18184         local file=$DIR/$tfile
18185         rm -f $file
18186
18187         $MULTIOP $file oO_CREAT:O_DIRECT:O_RDWR:w4096000c
18188         $MULTIOP $file oO_RDONLY:r4096000_c &
18189         PID=$!
18190
18191         sleep 2
18192
18193         local rbytes=$(awk '/read_bytes/ { print $2 }' /proc/$PID/io)
18194         kill -USR1 $PID
18195
18196         [ $rbytes -gt 4000000 ] || error "read is not accounted ($rbytes)"
18197         rm -f $file
18198 }
18199 run_test 315 "read should be accounted"
18200
18201 test_316() {
18202         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
18203         large_xattr_enabled || skip_env "large_xattr disabled"
18204
18205         rm -rf $DIR/$tdir/d
18206         mkdir -p $DIR/$tdir/d
18207         chown nobody $DIR/$tdir/d
18208         touch $DIR/$tdir/d/file
18209
18210         $LFS mv -M1 $DIR/$tdir/d || error "lfs mv failed"
18211 }
18212 run_test 316 "lfs mv"
18213
18214 test_317() {
18215         local trunc_sz
18216         local grant_blk_size
18217
18218         if [ "$(facet_fstype $facet)" == "zfs" ]; then
18219                 skip "LU-10370: no implementation for ZFS" && return
18220         fi
18221
18222         stack_trap "rm -f $DIR/$tfile" EXIT
18223         grant_blk_size=$($LCTL get_param osc.$FSNAME*.import |
18224                         awk '/grant_block_size:/ { print $2; exit; }')
18225         #
18226         # Create File of size 5M. Truncate it to below size's and verify
18227         # blocks count.
18228         #
18229         dd if=/dev/zero of=$DIR/$tfile bs=5M count=1 conv=fsync ||
18230                 error "Create file : $DIR/$tfile"
18231
18232         for trunc_sz in 2097152 4097 4000 509 0; do
18233                 $TRUNCATE $DIR/$tfile $trunc_sz ||
18234                         error "truncate $tfile to $trunc_sz failed"
18235                 local sz=$(stat --format=%s $DIR/$tfile)
18236                 local blk=$(stat --format=%b $DIR/$tfile)
18237                 local trunc_blk=$((((trunc_sz + (grant_blk_size - 1) ) /
18238                                      grant_blk_size) * 8))
18239
18240                 if [[ $blk -ne $trunc_blk ]]; then
18241                         $(which stat) $DIR/$tfile
18242                         error "Expected Block $trunc_blk got $blk for $tfile"
18243                 fi
18244
18245                 $CHECKSTAT -s $trunc_sz $DIR/$tfile ||
18246                         error "Expected Size $trunc_sz got $sz for $tfile"
18247         done
18248
18249         #
18250         # sparse file test
18251         # Create file with a hole and write actual two blocks. Block count
18252         # must be 16.
18253         #
18254         dd if=/dev/zero of=$DIR/$tfile bs=$grant_blk_size count=2 seek=5 \
18255                 conv=fsync || error "Create file : $DIR/$tfile"
18256
18257         # Calculate the final truncate size.
18258         trunc_sz=$(($(stat --format=%s $DIR/$tfile) - (grant_blk_size + 1)))
18259
18260         #
18261         # truncate to size $trunc_sz bytes. Strip the last block
18262         # The block count must drop to 8
18263         #
18264         $TRUNCATE $DIR/$tfile $trunc_sz ||
18265                 error "truncate $tfile to $trunc_sz failed"
18266
18267         local trunc_bsz=$((grant_blk_size / $(stat --format=%B $DIR/$tfile)))
18268         sz=$(stat --format=%s $DIR/$tfile)
18269         blk=$(stat --format=%b $DIR/$tfile)
18270
18271         if [[ $blk -ne $trunc_bsz ]]; then
18272                 $(which stat) $DIR/$tfile
18273                 error "Expected Block $trunc_bsz got $blk for $tfile"
18274         fi
18275
18276         $CHECKSTAT -s $trunc_sz $DIR/$tfile ||
18277                 error "Expected Size $trunc_sz got $sz for $tfile"
18278 }
18279 run_test 317 "Verify blocks get correctly update after truncate"
18280
18281 test_fake_rw() {
18282         local read_write=$1
18283         if [ "$read_write" = "write" ]; then
18284                 local dd_cmd="dd if=/dev/zero of=$DIR/$tfile"
18285         elif [ "$read_write" = "read" ]; then
18286                 local dd_cmd="dd of=/dev/null if=$DIR/$tfile"
18287         else
18288                 error "argument error"
18289         fi
18290
18291         # turn off debug for performance testing
18292         local saved_debug=$($LCTL get_param -n debug)
18293         $LCTL set_param debug=0
18294
18295         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
18296
18297         # get ost1 size - lustre-OST0000
18298         local ost1_avail_size=$($LFS df | awk /${ost1_svc}/'{ print $4 }')
18299         local blocks=$((ost1_avail_size/2/1024)) # half avail space by megabytes
18300         [ $blocks -gt 1000 ] && blocks=1000 # 1G in maximum
18301
18302         if [ "$read_write" = "read" ]; then
18303                 truncate -s $(expr 1048576 \* $blocks) $DIR/$tfile
18304         fi
18305
18306         local start_time=$(date +%s.%N)
18307         $dd_cmd bs=1M count=$blocks oflag=sync ||
18308                 error "real dd $read_write error"
18309         local duration=$(bc <<< "$(date +%s.%N) - $start_time")
18310
18311         if [ "$read_write" = "write" ]; then
18312                 rm -f $DIR/$tfile
18313         fi
18314
18315         # define OBD_FAIL_OST_FAKE_RW           0x238
18316         do_facet ost1 $LCTL set_param fail_loc=0x238
18317
18318         local start_time=$(date +%s.%N)
18319         $dd_cmd bs=1M count=$blocks oflag=sync ||
18320                 error "fake dd $read_write error"
18321         local duration_fake=$(bc <<< "$(date +%s.%N) - $start_time")
18322
18323         if [ "$read_write" = "write" ]; then
18324                 # verify file size
18325                 cancel_lru_locks osc
18326                 $CHECKSTAT -t file -s $((blocks * 1024 * 1024)) $DIR/$tfile ||
18327                         error "$tfile size not $blocks MB"
18328         fi
18329         do_facet ost1 $LCTL set_param fail_loc=0
18330
18331         echo "fake $read_write $duration_fake vs. normal $read_write" \
18332                 "$duration in seconds"
18333         [ $(bc <<< "$duration_fake < $duration") -eq 1 ] ||
18334                 error_not_in_vm "fake write is slower"
18335
18336         $LCTL set_param -n debug="$saved_debug"
18337         rm -f $DIR/$tfile
18338 }
18339 test_399a() { # LU-7655 for OST fake write
18340         remote_ost_nodsh && skip "remote OST with nodsh"
18341
18342         test_fake_rw write
18343 }
18344 run_test 399a "fake write should not be slower than normal write"
18345
18346 test_399b() { # LU-8726 for OST fake read
18347         remote_ost_nodsh && skip "remote OST with nodsh"
18348         if [ "$(facet_fstype ost1)" != "ldiskfs" ]; then
18349                 skip_env "ldiskfs only test"
18350         fi
18351
18352         test_fake_rw read
18353 }
18354 run_test 399b "fake read should not be slower than normal read"
18355
18356 test_400a() { # LU-1606, was conf-sanity test_74
18357         if ! which $CC > /dev/null 2>&1; then
18358                 skip_env "$CC is not installed"
18359         fi
18360
18361         local extra_flags=''
18362         local out=$TMP/$tfile
18363         local prefix=/usr/include/lustre
18364         local prog
18365
18366         if ! [[ -d $prefix ]]; then
18367                 # Assume we're running in tree and fixup the include path.
18368                 extra_flags+=" -I$LUSTRE/include"
18369                 extra_flags+=" -L$LUSTRE/utils"
18370         fi
18371
18372         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
18373                 $CC -Wall -Werror $extra_flags -llustreapi -o $out $prog ||
18374                         error "client api broken"
18375         done
18376         rm -f $out
18377 }
18378 run_test 400a "Lustre client api program can compile and link"
18379
18380 test_400b() { # LU-1606, LU-5011
18381         local header
18382         local out=$TMP/$tfile
18383         local prefix=/usr/include/linux/lustre
18384
18385         # We use a hard coded prefix so that this test will not fail
18386         # when run in tree. There are headers in lustre/include/lustre/
18387         # that are not packaged (like lustre_idl.h) and have more
18388         # complicated include dependencies (like config.h and lnet/types.h).
18389         # Since this test about correct packaging we just skip them when
18390         # they don't exist (see below) rather than try to fixup cppflags.
18391
18392         if ! which $CC > /dev/null 2>&1; then
18393                 skip_env "$CC is not installed"
18394         fi
18395
18396         for header in $prefix/*.h; do
18397                 if ! [[ -f "$header" ]]; then
18398                         continue
18399                 fi
18400
18401                 if [[ "$(basename $header)" == lustre_ioctl.h ]]; then
18402                         continue # lustre_ioctl.h is internal header
18403                 fi
18404
18405                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
18406                         error "cannot compile '$header'"
18407         done
18408         rm -f $out
18409 }
18410 run_test 400b "packaged headers can be compiled"
18411
18412 test_401a() { #LU-7437
18413         local printf_arg=$(find -printf 2>&1 | grep "unrecognized:")
18414         [ -n "$printf_arg" ] && skip_env "find does not support -printf"
18415
18416         #count the number of parameters by "list_param -R"
18417         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
18418         #count the number of parameters by listing proc files
18419         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
18420         echo "proc_dirs='$proc_dirs'"
18421         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
18422         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
18423                       sort -u | wc -l)
18424
18425         [ $params -eq $procs ] ||
18426                 error "found $params parameters vs. $procs proc files"
18427
18428         # test the list_param -D option only returns directories
18429         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
18430         #count the number of parameters by listing proc directories
18431         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
18432                 sort -u | wc -l)
18433
18434         [ $params -eq $procs ] ||
18435                 error "found $params parameters vs. $procs proc files"
18436 }
18437 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
18438
18439 test_401b() {
18440         local save=$($LCTL get_param -n jobid_var)
18441         local tmp=testing
18442
18443         $LCTL set_param foo=bar jobid_var=$tmp bar=baz &&
18444                 error "no error returned when setting bad parameters"
18445
18446         local jobid_new=$($LCTL get_param -n foe jobid_var baz)
18447         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
18448
18449         $LCTL set_param -n fog=bam jobid_var=$save bat=fog
18450         local jobid_old=$($LCTL get_param -n foe jobid_var bag)
18451         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
18452 }
18453 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
18454
18455 test_401c() {
18456         local jobid_var_old=$($LCTL get_param -n jobid_var)
18457         local jobid_var_new
18458
18459         $LCTL set_param jobid_var= &&
18460                 error "no error returned for 'set_param a='"
18461
18462         jobid_var_new=$($LCTL get_param -n jobid_var)
18463         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
18464                 error "jobid_var was changed by setting without value"
18465
18466         $LCTL set_param jobid_var &&
18467                 error "no error returned for 'set_param a'"
18468
18469         jobid_var_new=$($LCTL get_param -n jobid_var)
18470         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
18471                 error "jobid_var was changed by setting without value"
18472 }
18473 run_test 401c "Verify 'lctl set_param' without value fails in either format."
18474
18475 test_401d() {
18476         local jobid_var_old=$($LCTL get_param -n jobid_var)
18477         local jobid_var_new
18478         local new_value="foo=bar"
18479
18480         $LCTL set_param jobid_var=$new_value ||
18481                 error "'set_param a=b' did not accept a value containing '='"
18482
18483         jobid_var_new=$($LCTL get_param -n jobid_var)
18484         [[ "$jobid_var_new" == "$new_value" ]] ||
18485                 error "'set_param a=b' failed on a value containing '='"
18486
18487         # Reset the jobid_var to test the other format
18488         $LCTL set_param jobid_var=$jobid_var_old
18489         jobid_var_new=$($LCTL get_param -n jobid_var)
18490         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
18491                 error "failed to reset jobid_var"
18492
18493         $LCTL set_param jobid_var $new_value ||
18494                 error "'set_param a b' did not accept a value containing '='"
18495
18496         jobid_var_new=$($LCTL get_param -n jobid_var)
18497         [[ "$jobid_var_new" == "$new_value" ]] ||
18498                 error "'set_param a b' failed on a value containing '='"
18499
18500         $LCTL set_param jobid_var $jobid_var_old
18501         jobid_var_new=$($LCTL get_param -n jobid_var)
18502         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
18503                 error "failed to reset jobid_var"
18504 }
18505 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
18506
18507 test_402() {
18508         local server_version=$(lustre_version_code $SINGLEMDS)
18509         [[ $server_version -ge $(version_code 2.7.66) ]] ||
18510         [[ $server_version -ge $(version_code 2.7.18.4) &&
18511                 $server_version -lt $(version_code 2.7.50) ]] ||
18512         [[ $server_version -ge $(version_code 2.7.2) &&
18513                 $server_version -lt $(version_code 2.7.11) ]] ||
18514                 skip "Need MDS version 2.7.2+ or 2.7.18.4+ or 2.7.66+"
18515         remote_mds_nodsh && skip "remote MDS with nodsh"
18516
18517         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
18518 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
18519         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
18520         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
18521                 echo "Touch failed - OK"
18522 }
18523 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
18524
18525 test_403() {
18526         local file1=$DIR/$tfile.1
18527         local file2=$DIR/$tfile.2
18528         local tfile=$TMP/$tfile
18529
18530         rm -f $file1 $file2 $tfile
18531
18532         touch $file1
18533         ln $file1 $file2
18534
18535         # 30 sec OBD_TIMEOUT in ll_getattr()
18536         # right before populating st_nlink
18537         $LCTL set_param fail_loc=0x80001409
18538         stat -c %h $file1 > $tfile &
18539
18540         # create an alias, drop all locks and reclaim the dentry
18541         < $file2
18542         cancel_lru_locks mdc
18543         cancel_lru_locks osc
18544         sysctl -w vm.drop_caches=2
18545
18546         wait
18547
18548         [ $(cat $tfile) -gt 0 ] || error "wrong nlink count: $(cat $tfile)"
18549
18550         rm -f $tfile $file1 $file2
18551 }
18552 run_test 403 "i_nlink should not drop to zero due to aliasing"
18553
18554 test_404() { # LU-6601
18555         local server_version=$(lustre_version_code $SINGLEMDS)
18556         [[ $server_version -ge $(version_code 2.8.53) ]] ||
18557                 skip "Need server version newer than 2.8.52"
18558         remote_mds_nodsh && skip "remote MDS with nodsh"
18559
18560         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
18561                 awk '/osp .*-osc-MDT/ { print $4}')
18562
18563         local osp
18564         for osp in $mosps; do
18565                 echo "Deactivate: " $osp
18566                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
18567                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
18568                         awk -vp=$osp '$4 == p { print $2 }')
18569                 [ $stat = IN ] || {
18570                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
18571                         error "deactivate error"
18572                 }
18573                 echo "Activate: " $osp
18574                 do_facet $SINGLEMDS $LCTL --device %$osp activate
18575                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
18576                         awk -vp=$osp '$4 == p { print $2 }')
18577                 [ $stat = UP ] || {
18578                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
18579                         error "activate error"
18580                 }
18581         done
18582 }
18583 run_test 404 "validate manual {de}activated works properly for OSPs"
18584
18585 test_405() {
18586         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) -o \
18587         [ $(lustre_version_code client) -lt $(version_code 2.6.99) ] &&
18588                 skip "Layout swap lock is not supported"
18589         check_swap_layouts_support
18590
18591         test_mkdir $DIR/$tdir
18592         swap_lock_test -d $DIR/$tdir ||
18593                 error "One layout swap locked test failed"
18594 }
18595 run_test 405 "Various layout swap lock tests"
18596
18597 test_406() {
18598         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18599         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
18600         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
18601         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18602         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.50) ] &&
18603                 skip "Need MDS version at least 2.8.50"
18604
18605         local def_stripe_size=$($LFS getstripe -S $MOUNT)
18606         local test_pool=$TESTNAME
18607
18608         if ! combined_mgs_mds ; then
18609                 mount_mgs_client
18610         fi
18611         pool_add $test_pool || error "pool_add failed"
18612         pool_add_targets $test_pool 0 $(($OSTCOUNT - 1)) 1 ||
18613                 error "pool_add_targets failed"
18614
18615         save_layout_restore_at_exit $MOUNT
18616
18617         # parent set default stripe count only, child will stripe from both
18618         # parent and fs default
18619         $LFS setstripe -c 1 -i 1 -S $((def_stripe_size * 2)) -p $test_pool $MOUNT ||
18620                 error "setstripe $MOUNT failed"
18621         $LFS mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
18622         $LFS setstripe -c $OSTCOUNT $DIR/$tdir || error "setstripe $tdir failed"
18623         for i in $(seq 10); do
18624                 local f=$DIR/$tdir/$tfile.$i
18625                 touch $f || error "touch failed"
18626                 local count=$($LFS getstripe -c $f)
18627                 [ $count -eq $OSTCOUNT ] ||
18628                         error "$f stripe count $count != $OSTCOUNT"
18629                 local offset=$($LFS getstripe -i $f)
18630                 [ $offset -eq 1 ] || error "$f stripe offset $offset != 1"
18631                 local size=$($LFS getstripe -S $f)
18632                 [ $size -eq $((def_stripe_size * 2)) ] ||
18633                         error "$f stripe size $size != $((def_stripe_size * 2))"
18634                 local pool=$($LFS getstripe -p $f)
18635                 [ $pool == $test_pool ] || error "$f pool $pool != $test_pool"
18636         done
18637
18638         # change fs default striping, delete parent default striping, now child
18639         # will stripe from new fs default striping only
18640         $LFS setstripe -c 1 -S $def_stripe_size -i 0 $MOUNT ||
18641                 error "change $MOUNT default stripe failed"
18642         $LFS setstripe -c 0 $DIR/$tdir ||
18643                 error "delete $tdir default stripe failed"
18644         for i in $(seq 11 20); do
18645                 local f=$DIR/$tdir/$tfile.$i
18646                 touch $f || error "touch $f failed"
18647                 local count=$($LFS getstripe -c $f)
18648                 [ $count -eq 1 ] || error "$f stripe count $count != 1"
18649                 local offset=$($LFS getstripe -i $f)
18650                 [ $offset -eq 0 ] || error "$f stripe offset $offset != 0"
18651                 local size=$($LFS getstripe -S $f)
18652                 [ $size -eq $def_stripe_size ] ||
18653                         error "$f stripe size $size != $def_stripe_size"
18654                 local pool=$($LFS getstripe -p $f)
18655                 [ $pool == $test_pool ] || error "$f pool $pool isn't set"
18656         done
18657
18658         unlinkmany $DIR/$tdir/$tfile. 1 20
18659
18660         local f=$DIR/$tdir/$tfile
18661         pool_remove_all_targets $test_pool $f
18662         pool_remove $test_pool $f
18663
18664         if ! combined_mgs_mds ; then
18665                 umount_mgs_client
18666         fi
18667 }
18668 run_test 406 "DNE support fs default striping"
18669
18670 test_407() {
18671         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18672         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
18673                 skip "Need MDS version at least 2.8.55"
18674         remote_mds_nodsh && skip "remote MDS with nodsh"
18675
18676         $LFS mkdir -i 0 -c 1 $DIR/$tdir.0 ||
18677                 error "$LFS mkdir -i 0 -c 1 $tdir.0 failed"
18678         $LFS mkdir -i 1 -c 1 $DIR/$tdir.1 ||
18679                 error "$LFS mkdir -i 1 -c 1 $tdir.1 failed"
18680         touch $DIR/$tdir.0/$tfile.0 || error "touch $tdir.0/$tfile.0 failed"
18681
18682         #define OBD_FAIL_DT_TXN_STOP    0x2019
18683         for idx in $(seq $MDSCOUNT); do
18684                 do_facet mds$idx "lctl set_param fail_loc=0x2019"
18685         done
18686         $LFS mkdir -c 2 $DIR/$tdir && error "$LFS mkdir -c 2 $tdir should fail"
18687         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1/$tfile.1 &&
18688                 error "mv $tdir.0/$tfile.0 $tdir.1/$tfile.1 should fail"
18689         true
18690 }
18691 run_test 407 "transaction fail should cause operation fail"
18692
18693 test_408() {
18694         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 oflag=direct
18695
18696         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
18697         lctl set_param fail_loc=0x8000040a
18698         # let ll_prepare_partial_page() fail
18699         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 conv=notrunc || true
18700
18701         rm -f $DIR/$tfile
18702
18703         # create at least 100 unused inodes so that
18704         # shrink_icache_memory(0) should not return 0
18705         touch $DIR/$tfile-{0..100}
18706         rm -f $DIR/$tfile-{0..100}
18707         sync
18708
18709         echo 2 > /proc/sys/vm/drop_caches
18710 }
18711 run_test 408 "drop_caches should not hang due to page leaks"
18712
18713 test_409()
18714 {
18715         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18716         check_mount_and_prep
18717
18718         mkdir -p $DIR/$tdir || error "(0) Fail to mkdir"
18719         $LFS mkdir -i 1 -c 2 $DIR/$tdir/foo || error "(1) Fail to mkdir"
18720         touch $DIR/$tdir/guard || error "(2) Fail to create"
18721
18722         local PREFIX=$(str_repeat 'A' 128)
18723         echo "Create 1K hard links start at $(date)"
18724         createmany -l $DIR/$tdir/guard $DIR/$tdir/foo/${PREFIX}_ 1000 ||
18725                 error "(3) Fail to hard link"
18726
18727         echo "Links count should be right although linkEA overflow"
18728         stat $DIR/$tdir/guard || error "(4) Fail to stat"
18729         local linkcount=$(stat --format=%h $DIR/$tdir/guard)
18730         [ $linkcount -eq 1001 ] ||
18731                 error "(5) Unexpected hard links count: $linkcount"
18732
18733         echo "List all links start at $(date)"
18734         ls -l $DIR/$tdir/foo > /dev/null ||
18735                 error "(6) Fail to list $DIR/$tdir/foo"
18736
18737         echo "Unlink hard links start at $(date)"
18738         unlinkmany $DIR/$tdir/foo/${PREFIX}_ 1000 ||
18739                 error "(7) Fail to unlink"
18740 }
18741 run_test 409 "Large amount of cross-MDTs hard links on the same file"
18742
18743 test_410()
18744 {
18745         [[ $(lustre_version_code client) -lt $(version_code 2.9.59) ]] &&
18746                 skip "Need client version at least 2.9.59"
18747
18748         # Create a file, and stat it from the kernel
18749         local testfile=$DIR/$tfile
18750         touch $testfile
18751
18752         local run_id=$RANDOM
18753         local my_ino=$(stat --format "%i" $testfile)
18754
18755         # Try to insert the module. This will always fail as the
18756         # module is designed to not be inserted.
18757         insmod $LUSTRE/tests/kernel/kinode.ko run_id=$run_id fname=$testfile \
18758             &> /dev/null
18759
18760         # Anything but success is a test failure
18761         dmesg | grep -q \
18762             "lustre_kinode_$run_id: inode numbers are identical: $my_ino" ||
18763             error "no inode match"
18764 }
18765 run_test 410 "Test inode number returned from kernel thread"
18766
18767 cleanup_test411_cgroup() {
18768         trap 0
18769         rmdir "$1"
18770 }
18771
18772 test_411() {
18773         local cg_basedir=/sys/fs/cgroup/memory
18774         # LU-9966
18775         test -f "$cg_basedir/memory.kmem.limit_in_bytes" ||
18776                 skip "no setup for cgroup"
18777
18778         dd if=/dev/zero of=$DIR/$tfile bs=1M count=100 conv=fsync ||
18779                 error "test file creation failed"
18780         cancel_lru_locks osc
18781
18782         # Create a very small memory cgroup to force a slab allocation error
18783         local cgdir=$cg_basedir/osc_slab_alloc
18784         mkdir $cgdir || error "cgroup mkdir '$cgdir' failed"
18785         trap "cleanup_test411_cgroup $cgdir" EXIT
18786         echo 2M > $cgdir/memory.kmem.limit_in_bytes
18787         echo 1M > $cgdir/memory.limit_in_bytes
18788
18789         # Should not LBUG, just be killed by oom-killer
18790         sh -c "echo \$$ > $cgdir/tasks && dd if=$DIR/$tfile of=/dev/null" &&
18791                 error "fail to trigger a memory allocation error"
18792
18793         cleanup_test411_cgroup $cgdir
18794
18795         return 0
18796 }
18797 run_test 411 "Slab allocation error with cgroup does not LBUG"
18798
18799 test_412() {
18800         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18801         if [ $(lustre_version_code mds1) -lt $(version_code 2.10.55) ]; then
18802                 skip "Need server version at least 2.10.55"
18803         fi
18804
18805         $LFS mkdir -i $((MDSCOUNT - 1)),$((MDSCOUNT - 2)) $DIR/$tdir ||
18806                 error "mkdir failed"
18807         $LFS getdirstripe $DIR/$tdir
18808         local stripe_index=$($LFS getdirstripe -i $DIR/$tdir)
18809         [ $stripe_index -eq $((MDSCOUNT - 1)) ] ||
18810                 error "expect $((MDSCOUT - 1)) get $stripe_index"
18811         local stripe_count=$($LFS getdirstripe -T $DIR/$tdir)
18812         [ $stripe_count -eq 2 ] ||
18813                 error "expect 2 get $stripe_count"
18814 }
18815 run_test 412 "mkdir on specific MDTs"
18816
18817 test_413() {
18818         [ $MDSCOUNT -lt 2 ] &&
18819                 skip "We need at least 2 MDTs for this test"
18820
18821         if [ $(lustre_version_code mds1) -lt $(version_code 2.10.55) ]; then
18822                 skip "Need server version at least 2.10.55"
18823         fi
18824
18825         mkdir $DIR/$tdir || error "mkdir failed"
18826
18827         # find MDT that is the most full
18828         local max=$($LFS df | grep MDT |
18829                 awk 'BEGIN { a=0 }
18830                         { sub("%", "", $5)
18831                           if (0+$5 >= a)
18832                           {
18833                                 a = $5
18834                                 b = $6
18835                           }
18836                         }
18837                      END { split(b, c, ":")
18838                            sub("]", "", c[2])
18839                            print c[2]
18840                          }')
18841
18842         for i in $(seq $((MDSCOUNT - 1))); do
18843                 $LFS mkdir -c $i $DIR/$tdir/d$i ||
18844                         error "mkdir d$i failed"
18845                 $LFS getdirstripe $DIR/$tdir/d$i
18846                 local stripe_index=$($LFS getdirstripe -i $DIR/$tdir/d$i)
18847                 [ $stripe_index -ne $max ] ||
18848                         error "don't expect $max"
18849         done
18850 }
18851 run_test 413 "mkdir on less full MDTs"
18852
18853 test_414() {
18854 #define OBD_FAIL_PTLRPC_BULK_ATTACH      0x521
18855         $LCTL set_param fail_loc=0x80000521
18856         dd if=/dev/zero of=$DIR/$tfile bs=2M count=1 oflag=sync
18857         rm -f $DIR/$tfile
18858 }
18859 run_test 414 "simulate ENOMEM in ptlrpc_register_bulk()"
18860
18861 test_415() {
18862         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18863         [ $(lustre_version_code mds1) -lt $(version_code 2.11.52) ] &&
18864                 skip "Need server version at least 2.11.52"
18865
18866         # LU-11102
18867         local total
18868         local setattr_pid
18869         local start_time
18870         local end_time
18871         local duration
18872
18873         total=500
18874         # this test may be slow on ZFS
18875         [ "$(facet_fstype mds1)" == "zfs" ] && total=100
18876
18877         # though this test is designed for striped directory, let's test normal
18878         # directory too since lock is always saved as CoS lock.
18879         test_mkdir $DIR/$tdir || error "mkdir $tdir"
18880         createmany -o $DIR/$tdir/$tfile. $total || error "createmany"
18881
18882         (
18883                 while true; do
18884                         touch $DIR/$tdir
18885                 done
18886         ) &
18887         setattr_pid=$!
18888
18889         start_time=$(date +%s)
18890         for i in $(seq $total); do
18891                 mrename $DIR/$tdir/$tfile.$i $DIR/$tdir/$tfile-new.$i \
18892                         > /dev/null
18893         done
18894         end_time=$(date +%s)
18895         duration=$((end_time - start_time))
18896
18897         kill -9 $setattr_pid
18898
18899         echo "rename $total files took $duration sec"
18900         [ $duration -lt 100 ] || error "rename took $duration sec"
18901 }
18902 run_test 415 "lock revoke is not missing"
18903
18904 prep_801() {
18905         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
18906         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
18907                 skip "Need server version at least 2.9.55"
18908
18909         start_full_debug_logging
18910 }
18911
18912 post_801() {
18913         stop_full_debug_logging
18914 }
18915
18916 barrier_stat() {
18917         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
18918                 local st=$(do_facet mgs $LCTL barrier_stat $FSNAME |
18919                            awk '/The barrier for/ { print $7 }')
18920                 echo $st
18921         else
18922                 local st=$(do_facet mgs $LCTL barrier_stat -s $FSNAME)
18923                 echo \'$st\'
18924         fi
18925 }
18926
18927 barrier_expired() {
18928         local expired
18929
18930         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
18931                 expired=$(do_facet mgs $LCTL barrier_stat $FSNAME |
18932                           awk '/will be expired/ { print $7 }')
18933         else
18934                 expired=$(do_facet mgs $LCTL barrier_stat -t $FSNAME)
18935         fi
18936
18937         echo $expired
18938 }
18939
18940 test_801a() {
18941         prep_801
18942
18943         echo "Start barrier_freeze at: $(date)"
18944         #define OBD_FAIL_BARRIER_DELAY          0x2202
18945         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
18946         do_facet mgs $LCTL barrier_freeze $FSNAME 10 &
18947
18948         sleep 2
18949         local b_status=$(barrier_stat)
18950         echo "Got barrier status at: $(date)"
18951         [ "$b_status" = "'freezing_p1'" ] ||
18952                 error "(1) unexpected barrier status $b_status"
18953
18954         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
18955         wait
18956         b_status=$(barrier_stat)
18957         [ "$b_status" = "'frozen'" ] ||
18958                 error "(2) unexpected barrier status $b_status"
18959
18960         local expired=$(barrier_expired)
18961         echo "sleep $((expired + 3)) seconds, then the barrier will be expired"
18962         sleep $((expired + 3))
18963
18964         b_status=$(barrier_stat)
18965         [ "$b_status" = "'expired'" ] ||
18966                 error "(3) unexpected barrier status $b_status"
18967
18968         do_facet mgs $LCTL barrier_freeze $FSNAME 10 ||
18969                 error "(4) fail to freeze barrier"
18970
18971         b_status=$(barrier_stat)
18972         [ "$b_status" = "'frozen'" ] ||
18973                 error "(5) unexpected barrier status $b_status"
18974
18975         echo "Start barrier_thaw at: $(date)"
18976         #define OBD_FAIL_BARRIER_DELAY          0x2202
18977         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
18978         do_facet mgs $LCTL barrier_thaw $FSNAME &
18979
18980         sleep 2
18981         b_status=$(barrier_stat)
18982         echo "Got barrier status at: $(date)"
18983         [ "$b_status" = "'thawing'" ] ||
18984                 error "(6) unexpected barrier status $b_status"
18985
18986         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
18987         wait
18988         b_status=$(barrier_stat)
18989         [ "$b_status" = "'thawed'" ] ||
18990                 error "(7) unexpected barrier status $b_status"
18991
18992         #define OBD_FAIL_BARRIER_FAILURE        0x2203
18993         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2203
18994         do_facet mgs $LCTL barrier_freeze $FSNAME
18995
18996         b_status=$(barrier_stat)
18997         [ "$b_status" = "'failed'" ] ||
18998                 error "(8) unexpected barrier status $b_status"
18999
19000         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
19001         do_facet mgs $LCTL barrier_thaw $FSNAME
19002
19003         post_801
19004 }
19005 run_test 801a "write barrier user interfaces and stat machine"
19006
19007 test_801b() {
19008         prep_801
19009
19010         mkdir $DIR/$tdir || error "(1) fail to mkdir"
19011         createmany -d $DIR/$tdir/d 6 || "(2) fail to mkdir"
19012         touch $DIR/$tdir/d2/f10 || error "(3) fail to touch"
19013         touch $DIR/$tdir/d3/f11 || error "(4) fail to touch"
19014         touch $DIR/$tdir/d4/f12 || error "(5) fail to touch"
19015
19016         cancel_lru_locks mdc
19017
19018         # 180 seconds should be long enough
19019         do_facet mgs $LCTL barrier_freeze $FSNAME 180
19020
19021         local b_status=$(barrier_stat)
19022         [ "$b_status" = "'frozen'" ] ||
19023                 error "(6) unexpected barrier status $b_status"
19024
19025         mkdir $DIR/$tdir/d0/d10 &
19026         mkdir_pid=$!
19027
19028         touch $DIR/$tdir/d1/f13 &
19029         touch_pid=$!
19030
19031         ln $DIR/$tdir/d2/f10 $DIR/$tdir/d2/f14 &
19032         ln_pid=$!
19033
19034         mv $DIR/$tdir/d3/f11 $DIR/$tdir/d3/f15 &
19035         mv_pid=$!
19036
19037         rm -f $DIR/$tdir/d4/f12 &
19038         rm_pid=$!
19039
19040         stat $DIR/$tdir/d5 || error "(7) stat should succeed"
19041
19042         # To guarantee taht the 'stat' is not blocked
19043         b_status=$(barrier_stat)
19044         [ "$b_status" = "'frozen'" ] ||
19045                 error "(8) unexpected barrier status $b_status"
19046
19047         # let above commands to run at background
19048         sleep 5
19049
19050         ps -p $mkdir_pid || error "(9) mkdir should be blocked"
19051         ps -p $touch_pid || error "(10) touch should be blocked"
19052         ps -p $ln_pid || error "(11) link should be blocked"
19053         ps -p $mv_pid || error "(12) rename should be blocked"
19054         ps -p $rm_pid || error "(13) unlink should be blocked"
19055
19056         b_status=$(barrier_stat)
19057         [ "$b_status" = "'frozen'" ] ||
19058                 error "(14) unexpected barrier status $b_status"
19059
19060         do_facet mgs $LCTL barrier_thaw $FSNAME
19061         b_status=$(barrier_stat)
19062         [ "$b_status" = "'thawed'" ] ||
19063                 error "(15) unexpected barrier status $b_status"
19064
19065         wait $mkdir_pid || error "(16) mkdir should succeed"
19066         wait $touch_pid || error "(17) touch should succeed"
19067         wait $ln_pid || error "(18) link should succeed"
19068         wait $mv_pid || error "(19) rename should succeed"
19069         wait $rm_pid || error "(20) unlink should succeed"
19070
19071         post_801
19072 }
19073 run_test 801b "modification will be blocked by write barrier"
19074
19075 test_801c() {
19076         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19077
19078         prep_801
19079
19080         stop mds2 || error "(1) Fail to stop mds2"
19081
19082         do_facet mgs $LCTL barrier_freeze $FSNAME 30
19083
19084         local b_status=$(barrier_stat)
19085         [ "$b_status" = "'expired'" -o "$b_status" = "'failed'" ] || {
19086                 do_facet mgs $LCTL barrier_thaw $FSNAME
19087                 error "(2) unexpected barrier status $b_status"
19088         }
19089
19090         do_facet mgs $LCTL barrier_rescan $FSNAME ||
19091                 error "(3) Fail to rescan barrier bitmap"
19092
19093         do_facet mgs $LCTL barrier_freeze $FSNAME 10
19094
19095         b_status=$(barrier_stat)
19096         [ "$b_status" = "'frozen'" ] ||
19097                 error "(4) unexpected barrier status $b_status"
19098
19099         do_facet mgs $LCTL barrier_thaw $FSNAME
19100         b_status=$(barrier_stat)
19101         [ "$b_status" = "'thawed'" ] ||
19102                 error "(5) unexpected barrier status $b_status"
19103
19104         local devname=$(mdsdevname 2)
19105
19106         start mds2 $devname $MDS_MOUNT_OPTS || error "(6) Fail to start mds2"
19107
19108         do_facet mgs $LCTL barrier_rescan $FSNAME ||
19109                 error "(7) Fail to rescan barrier bitmap"
19110
19111         post_801
19112 }
19113 run_test 801c "rescan barrier bitmap"
19114
19115 saved_MGS_MOUNT_OPTS=$MGS_MOUNT_OPTS
19116 saved_MDS_MOUNT_OPTS=$MDS_MOUNT_OPTS
19117 saved_OST_MOUNT_OPTS=$OST_MOUNT_OPTS
19118
19119 cleanup_802() {
19120         trap 0
19121
19122         stopall
19123         MGS_MOUNT_OPTS=$saved_MGS_MOUNT_OPTS
19124         MDS_MOUNT_OPTS=$saved_MDS_MOUNT_OPTS
19125         OST_MOUNT_OPTS=$saved_OST_MOUNT_OPTS
19126         setupall
19127 }
19128
19129 test_802() {
19130
19131         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
19132         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
19133                 skip "Need server version at least 2.9.55"
19134
19135         mkdir $DIR/$tdir || error "(1) fail to mkdir"
19136
19137         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
19138                 error "(2) Fail to copy"
19139
19140         trap cleanup_802 EXIT
19141
19142         # sync by force before remount as readonly
19143         sync; sync_all_data; sleep 3; sync_all_data
19144
19145         stopall
19146
19147         MGS_MOUNT_OPTS=$(csa_add "$MGS_MOUNT_OPTS" -o rdonly_dev)
19148         MDS_MOUNT_OPTS=$(csa_add "$MDS_MOUNT_OPTS" -o rdonly_dev)
19149         OST_MOUNT_OPTS=$(csa_add "$OST_MOUNT_OPTS" -o rdonly_dev)
19150
19151         echo "Mount the server as read only"
19152         setupall server_only || error "(3) Fail to start servers"
19153
19154         echo "Mount client without ro should fail"
19155         mount_client $MOUNT &&
19156                 error "(4) Mount client without 'ro' should fail"
19157
19158         echo "Mount client with ro should succeed"
19159         mount_client $MOUNT ro ||
19160                 error "(5) Mount client with 'ro' should succeed"
19161
19162         echo "Modify should be refused"
19163         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
19164
19165         echo "Read should be allowed"
19166         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
19167                 error "(7) Read should succeed under ro mode"
19168
19169         cleanup_802
19170 }
19171 run_test 802 "simulate readonly device"
19172
19173 test_803() {
19174         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19175         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.54) ] &&
19176                 skip "MDS needs to be newer than 2.10.54"
19177
19178         mkdir -p $DIR/$tdir
19179         # Create some objects on all MDTs to trigger related logs objects
19180         for idx in $(seq $MDSCOUNT); do
19181                 $LFS mkdir -c $MDSCOUNT -i $((idx % $MDSCOUNT)) \
19182                         $DIR/$tdir/dir${idx} ||
19183                         error "Fail to create $DIR/$tdir/dir${idx}"
19184         done
19185
19186         sync; sleep 3
19187         echo "before create:"
19188         $LFS df -i $MOUNT
19189         local before_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19190
19191         for ((i=0; i<10; i++)); do
19192                 $LFS mkdir -c 1 -i 1 $DIR/$tdir/foo$i ||
19193                         error "Fail to create $DIR/$tdir/foo$i"
19194         done
19195
19196         sync; sleep 3
19197         echo "after create:"
19198         $LFS df -i $MOUNT
19199         local after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19200
19201         [ $after_used -ge $((before_used + 10)) ] ||
19202                 error "before ($before_used) + 10 > after ($after_used)"
19203
19204         for ((i=0; i<10; i++)); do
19205                 rm -rf $DIR/$tdir/foo$i ||
19206                         error "Fail to remove $DIR/$tdir/foo$i"
19207         done
19208
19209         sleep 3 # avoid MDT return cached statfs
19210         wait_delete_completed
19211         echo "after unlink:"
19212         $LFS df -i $MOUNT
19213         before_used=$after_used
19214         after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19215
19216         [ $after_used -le $((before_used - 8)) ] ||
19217                 error "before ($before_used) - 8 < after ($after_used)"
19218 }
19219 run_test 803 "verify agent object for remote object"
19220
19221 test_804() {
19222         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19223         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.54) ] &&
19224                 skip "MDS needs to be newer than 2.10.54"
19225         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
19226                 skip_env "ldiskfs only test"
19227
19228         mkdir -p $DIR/$tdir
19229         $LFS mkdir -c 1 -i 1 $DIR/$tdir/dir0 ||
19230                 error "Fail to create $DIR/$tdir/dir0"
19231
19232         local fid=$($LFS path2fid $DIR/$tdir/dir0)
19233         local dev=$(mdsdevname 2)
19234
19235         do_facet mds2 "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19236                 grep ${fid} || error "NOT found agent entry for dir0"
19237
19238         $LFS mkdir -c $MDSCOUNT -i 0 $DIR/$tdir/dir1 ||
19239                 error "Fail to create $DIR/$tdir/dir1"
19240
19241         touch $DIR/$tdir/dir1/foo0 ||
19242                 error "Fail to create $DIR/$tdir/dir1/foo0"
19243         fid=$($LFS path2fid $DIR/$tdir/dir1/foo0)
19244         local rc=0
19245
19246         for idx in $(seq $MDSCOUNT); do
19247                 dev=$(mdsdevname $idx)
19248                 do_facet mds${idx} \
19249                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19250                         grep ${fid} && rc=$idx
19251         done
19252
19253         mv $DIR/$tdir/dir1/foo0 $DIR/$tdir/dir1/foo1 ||
19254                 error "Fail to rename foo0 to foo1"
19255         if [ $rc -eq 0 ]; then
19256                 for idx in $(seq $MDSCOUNT); do
19257                         dev=$(mdsdevname $idx)
19258                         do_facet mds${idx} \
19259                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19260                         grep ${fid} && rc=$idx
19261                 done
19262         fi
19263
19264         mv $DIR/$tdir/dir1/foo1 $DIR/$tdir/dir1/foo2 ||
19265                 error "Fail to rename foo1 to foo2"
19266         if [ $rc -eq 0 ]; then
19267                 for idx in $(seq $MDSCOUNT); do
19268                         dev=$(mdsdevname $idx)
19269                         do_facet mds${idx} \
19270                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19271                         grep ${fid} && rc=$idx
19272                 done
19273         fi
19274
19275         [ $rc -ne 0 ] || error "NOT found agent entry for foo"
19276
19277         ln $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir0/guard ||
19278                 error "Fail to link to $DIR/$tdir/dir1/foo2"
19279         mv $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir1/foo0 ||
19280                 error "Fail to rename foo2 to foo0"
19281         unlink $DIR/$tdir/dir1/foo0 ||
19282                 error "Fail to unlink $DIR/$tdir/dir1/foo0"
19283         rm -rf $DIR/$tdir/dir0 ||
19284                 error "Fail to rm $DIR/$tdir/dir0"
19285
19286         for idx in $(seq $MDSCOUNT); do
19287                 dev=$(mdsdevname $idx)
19288                 rc=0
19289
19290                 stop mds${idx}
19291                 run_e2fsck $(facet_active_host mds$idx) $dev -n ||
19292                         rc=$?
19293                 start mds${idx} $dev $MDS_MOUNT_OPTS ||
19294                         error "mount mds$idx failed"
19295                 df $MOUNT > /dev/null 2>&1
19296
19297                 # e2fsck should not return error
19298                 [ $rc -eq 0 ] ||
19299                         error "e2fsck detected error on MDT${idx}: rc=$rc"
19300         done
19301 }
19302 run_test 804 "verify agent entry for remote entry"
19303
19304 cleanup_805() {
19305         do_facet $SINGLEMDS zfs set quota=$old $fsset
19306         unlinkmany $DIR/$tdir/f- 1000000
19307         trap 0
19308 }
19309
19310 test_805() {
19311         local zfs_version=$(do_node $SINGLEMDS cat /sys/module/zfs/version)
19312         [ "$(facet_fstype mds1)" != "zfs" ] &&
19313                 skip "ZFS specific test"
19314         [ $(version_code $zfs_version) -lt $(version_code 0.7.2) ] &&
19315                 skip "netfree not implemented before 0.7"
19316         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.57) ]] ||
19317                 skip "Need MDS version at least 2.10.57"
19318
19319         local fsset
19320         local freekb
19321         local usedkb
19322         local old
19323         local quota
19324         local pref="osd-zfs.lustre-MDT0000."
19325
19326         # limit available space on MDS dataset to meet nospace issue
19327         # quickly. then ZFS 0.7.2 can use reserved space if asked
19328         # properly (using netfree flag in osd_declare_destroy()
19329         fsset=$(do_facet $SINGLEMDS lctl get_param -n $pref.mntdev)
19330         old=$(do_facet $SINGLEMDS zfs get -H quota $fsset | \
19331                 gawk '{print $3}')
19332         freekb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytesfree)
19333         usedkb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytestotal)
19334         let "usedkb=usedkb-freekb"
19335         let "freekb=freekb/2"
19336         if let "freekb > 5000"; then
19337                 let "freekb=5000"
19338         fi
19339         do_facet $SINGLEMDS zfs set quota=$(((usedkb+freekb)*1024)) $fsset
19340         trap cleanup_805 EXIT
19341         mkdir $DIR/$tdir
19342         $LFS setstripe -E 1M -L mdt $DIR/$tdir || error "DoM not working"
19343         createmany -m $DIR/$tdir/f- 1000000 && error "ENOSPC wasn't met"
19344         rm -rf $DIR/$tdir || error "not able to remove"
19345         do_facet $SINGLEMDS zfs set quota=$old $fsset
19346         trap 0
19347 }
19348 run_test 805 "ZFS can remove from full fs"
19349
19350 # Size-on-MDS test
19351 check_lsom_data()
19352 {
19353         local file=$1
19354         local size=$($LFS getsom -s $file)
19355         local expect=$(stat -c %s $file)
19356
19357         [[ $size == $expect ]] ||
19358                 error "$file expected size: $expect, got: $size"
19359
19360         local blocks=$($LFS getsom -b $file)
19361         expect=$(stat -c %b $file)
19362         [[ $blocks == $expect ]] ||
19363                 error "$file expected blocks: $expect, got: $blocks"
19364 }
19365
19366 check_lsom_size()
19367 {
19368         local size=$($LFS getsom -s $1)
19369         local expect=$2
19370
19371         [[ $size == $expect ]] ||
19372                 error "$file expected size: $expect, got: $size"
19373 }
19374
19375 test_806() {
19376         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
19377                 skip "Need MDS version at least 2.11.52" && return
19378
19379         local bs=1048576
19380
19381         touch $DIR/$tfile || error "touch $tfile failed"
19382
19383         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
19384         save_lustre_params client "llite.*.xattr_cache" > $save
19385         lctl set_param llite.*.xattr_cache=0
19386         stack_trap "restore_lustre_params < $save" EXIT
19387
19388         # single-threaded write
19389         echo "Test SOM for single-threaded write"
19390         dd if=/dev/zero of=$DIR/$tfile bs=$bs count=1 ||
19391                 error "write $tfile failed"
19392         check_lsom_size $DIR/$tfile $bs
19393
19394         local num=32
19395         local size=$(($num * $bs))
19396         local offset=0
19397         local i
19398
19399         echo "Test SOM for single client muti-threaded($num) write"
19400         $TRUNCATE $DIR/$tfile 0
19401         for ((i = 0; i < $num; i++)); do
19402                 $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
19403                 local pids[$i]=$!
19404                 offset=$((offset + $bs))
19405         done
19406         for (( i=0; i < $num; i++ )); do
19407                 wait ${pids[$i]}
19408         done
19409         check_lsom_size $DIR/$tfile $size
19410
19411         $TRUNCATE $DIR/$tfile 0
19412         for ((i = 0; i < $num; i++)); do
19413                 offset=$((offset - $bs))
19414                 $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
19415                 local pids[$i]=$!
19416         done
19417         for (( i=0; i < $num; i++ )); do
19418                 wait ${pids[$i]}
19419         done
19420         check_lsom_size $DIR/$tfile $size
19421
19422         # multi-client wirtes
19423         num=$(get_node_count ${CLIENTS//,/ })
19424         size=$(($num * $bs))
19425         offset=0
19426         i=0
19427
19428         echo "Test SOM for muti-client ($num) writes"
19429         $TRUNCATE $DIR/$tfile 0
19430         for client in ${CLIENTS//,/ }; do
19431                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
19432                 local pids[$i]=$!
19433                 i=$((i + 1))
19434                 offset=$((offset + $bs))
19435         done
19436         for (( i=0; i < $num; i++ )); do
19437                 wait ${pids[$i]}
19438         done
19439         check_lsom_size $DIR/$tfile $offset
19440
19441         i=0
19442         $TRUNCATE $DIR/$tfile 0
19443         for client in ${CLIENTS//,/ }; do
19444                 offset=$((offset - $bs))
19445                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
19446                 local pids[$i]=$!
19447                 i=$((i + 1))
19448         done
19449         for (( i=0; i < $num; i++ )); do
19450                 wait ${pids[$i]}
19451         done
19452         check_lsom_size $DIR/$tfile $size
19453
19454         # verify truncate
19455         echo "Test SOM for truncate"
19456         $TRUNCATE $DIR/$tfile 1048576
19457         check_lsom_size $DIR/$tfile 1048576
19458         $TRUNCATE $DIR/$tfile 1234
19459         check_lsom_size $DIR/$tfile 1234
19460
19461         # verify SOM blocks count
19462         echo "Verify SOM block count"
19463         $TRUNCATE $DIR/$tfile 0
19464         $MULTIOP $DIR/$tfile oO_TRUNC:O_RDWR:w1048576YSc ||
19465                 error "failed to write file $tfile"
19466         check_lsom_data $DIR/$tfile
19467 }
19468 run_test 806 "Verify Lazy Size on MDS"
19469
19470 test_807() {
19471         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
19472                 skip "Need MDS version at least 2.11.52" && return
19473
19474         # Registration step
19475         changelog_register || error "changelog_register failed"
19476         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
19477         changelog_users $SINGLEMDS | grep -q $cl_user ||
19478                 error "User $cl_user not found in changelog_users"
19479
19480         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
19481         save_lustre_params client "llite.*.xattr_cache" > $save
19482         lctl set_param llite.*.xattr_cache=0
19483         stack_trap "restore_lustre_params < $save" EXIT
19484
19485         rm -rf $DIR/$tdir || error "rm $tdir failed"
19486         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
19487         touch $DIR/$tdir/trunc || error "touch $tdir/trunc failed"
19488         $TRUNCATE $DIR/$tdir/trunc 1024 || error "truncate $tdir/trunc failed"
19489         $TRUNCATE $DIR/$tdir/trunc 1048576 ||
19490                 error "truncate $tdir/trunc failed"
19491
19492         local bs=1048576
19493         dd if=/dev/zero of=$DIR/$tdir/single_dd bs=$bs count=1 ||
19494                 error "write $tfile failed"
19495
19496         # multi-client wirtes
19497         local num=$(get_node_count ${CLIENTS//,/ })
19498         local offset=0
19499         local i=0
19500
19501         echo "Test SOM for muti-client ($num) writes"
19502         touch $DIR/$tfile || error "touch $tfile failed"
19503         $TRUNCATE $DIR/$tfile 0
19504         for client in ${CLIENTS//,/ }; do
19505                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
19506                 local pids[$i]=$!
19507                 i=$((i + 1))
19508                 offset=$((offset + $bs))
19509         done
19510         for (( i=0; i < $num; i++ )); do
19511                 wait ${pids[$i]}
19512         done
19513
19514         sleep 5
19515         $LSOM_SYNC -u $cl_user -m $FSNAME-MDT0000 $MOUNT
19516         check_lsom_data $DIR/$tdir/trunc
19517         check_lsom_data $DIR/$tdir/single_dd
19518         check_lsom_data $DIR/$tfile
19519
19520         rm -rf $DIR/$tdir
19521         # Deregistration step
19522         changelog_deregister || error "changelog_deregister failed"
19523 }
19524 run_test 807 "verify LSOM syncing tool"
19525
19526 #
19527 # tests that do cleanup/setup should be run at the end
19528 #
19529
19530 test_900() {
19531         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19532         local ls
19533
19534         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
19535         $LCTL set_param fail_loc=0x903
19536
19537         cancel_lru_locks MGC
19538
19539         FAIL_ON_ERROR=true cleanup
19540         FAIL_ON_ERROR=true setup
19541 }
19542 run_test 900 "umount should not race with any mgc requeue thread"
19543
19544 complete $SECONDS
19545 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
19546 check_and_cleanup_lustre
19547 if [ "$I_MOUNTED" != "yes" ]; then
19548         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
19549 fi
19550 exit_status