Whamcloud - gitweb
f5a086852de6c261cc007c02da8e86ae19d004c9
[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 test_27H() {
2301         [[ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.11.53) ]] &&
2302                 skip "Need MDS version newer than 2.11.53"
2303         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
2304         test_mkdir $DIR/$tdir
2305         $LFS setstripe -o 0 -o 2 $DIR/$tdir || error "setstripe failed"
2306         touch $DIR/$tdir/$tfile
2307         $LFS getstripe -c $DIR/$tdir/$tfile
2308         [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
2309                 error "two-stripe file doesn't have two stripes"
2310
2311         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
2312         $LFS getstripe -y $DIR/$tdir/$tfile
2313         (( $($LFS getstripe -y $DIR/$tdir/$tfile |
2314              egrep -c "l_ost_idx: [02]$") == "2" )) ||
2315                 error "expected l_ost_idx: [02]$ not matched"
2316 }
2317 run_test 27H "Set specific OSTs stripe"
2318
2319 # createtest also checks that device nodes are created and
2320 # then visible correctly (#2091)
2321 test_28() { # bug 2091
2322         test_mkdir $DIR/d28
2323         $CREATETEST $DIR/d28/ct || error "createtest failed"
2324 }
2325 run_test 28 "create/mknod/mkdir with bad file types ============"
2326
2327 test_29() {
2328         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2329
2330         sync; sleep 1; sync # flush out any dirty pages from previous tests
2331         cancel_lru_locks
2332         test_mkdir $DIR/d29
2333         touch $DIR/d29/foo
2334         log 'first d29'
2335         ls -l $DIR/d29
2336
2337         declare -i LOCKCOUNTORIG=0
2338         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2339                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2340         done
2341         [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
2342
2343         declare -i LOCKUNUSEDCOUNTORIG=0
2344         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2345                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2346         done
2347
2348         log 'second d29'
2349         ls -l $DIR/d29
2350         log 'done'
2351
2352         declare -i LOCKCOUNTCURRENT=0
2353         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2354                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2355         done
2356
2357         declare -i LOCKUNUSEDCOUNTCURRENT=0
2358         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2359                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2360         done
2361
2362         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2363                 $LCTL set_param -n ldlm.dump_namespaces ""
2364                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2365                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2366                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2367                 return 2
2368         fi
2369         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2370                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2371                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2372                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2373                 return 3
2374         fi
2375 }
2376 run_test 29 "IT_GETATTR regression  ============================"
2377
2378 test_30a() { # was test_30
2379         cp $(which ls) $DIR || cp /bin/ls $DIR
2380         $DIR/ls / || error "Can't execute binary from lustre"
2381         rm $DIR/ls
2382 }
2383 run_test 30a "execute binary from Lustre (execve) =============="
2384
2385 test_30b() {
2386         cp `which ls` $DIR || cp /bin/ls $DIR
2387         chmod go+rx $DIR/ls
2388         $RUNAS $DIR/ls / || error "Can't execute binary from lustre as non-root"
2389         rm $DIR/ls
2390 }
2391 run_test 30b "execute binary from Lustre as non-root ==========="
2392
2393 test_30c() { # b=22376
2394         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2395
2396         cp `which ls` $DIR || cp /bin/ls $DIR
2397         chmod a-rw $DIR/ls
2398         cancel_lru_locks mdc
2399         cancel_lru_locks osc
2400         $RUNAS $DIR/ls / || error "Can't execute binary from lustre"
2401         rm -f $DIR/ls
2402 }
2403 run_test 30c "execute binary from Lustre without read perms ===="
2404
2405 test_31a() {
2406         $OPENUNLINK $DIR/f31 $DIR/f31 || error "openunlink failed"
2407         $CHECKSTAT -a $DIR/f31 || error "$DIR/f31 exists"
2408 }
2409 run_test 31a "open-unlink file =================================="
2410
2411 test_31b() {
2412         touch $DIR/f31 || error "touch $DIR/f31 failed"
2413         ln $DIR/f31 $DIR/f31b || error "ln failed"
2414         $MULTIOP $DIR/f31b Ouc || error "multiop failed"
2415         $CHECKSTAT -t file $DIR/f31 || error "$DIR/f31 not file type"
2416 }
2417 run_test 31b "unlink file with multiple links while open ======="
2418
2419 test_31c() {
2420         touch $DIR/f31 || error "touch $DIR/f31 failed"
2421         ln $DIR/f31 $DIR/f31c || error "ln failed"
2422         multiop_bg_pause $DIR/f31 O_uc ||
2423                 error "multiop_bg_pause for $DIR/f31 failed"
2424         MULTIPID=$!
2425         $MULTIOP $DIR/f31c Ouc
2426         kill -USR1 $MULTIPID
2427         wait $MULTIPID
2428 }
2429 run_test 31c "open-unlink file with multiple links ============="
2430
2431 test_31d() {
2432         opendirunlink $DIR/d31d $DIR/d31d || error "opendirunlink failed"
2433         $CHECKSTAT -a $DIR/d31d || error "$DIR/d31d exists"
2434 }
2435 run_test 31d "remove of open directory ========================="
2436
2437 test_31e() { # bug 2904
2438         openfilleddirunlink $DIR/d31e || error "openfilleddirunlink failed"
2439 }
2440 run_test 31e "remove of open non-empty directory ==============="
2441
2442 test_31f() { # bug 4554
2443         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2444
2445         set -vx
2446         test_mkdir $DIR/d31f
2447         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2448         cp /etc/hosts $DIR/d31f
2449         ls -l $DIR/d31f
2450         $GETSTRIPE $DIR/d31f/hosts
2451         multiop_bg_pause $DIR/d31f D_c || return 1
2452         MULTIPID=$!
2453
2454         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2455         test_mkdir $DIR/d31f
2456         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2457         cp /etc/hosts $DIR/d31f
2458         ls -l $DIR/d31f
2459         $GETSTRIPE $DIR/d31f/hosts
2460         multiop_bg_pause $DIR/d31f D_c || return 1
2461         MULTIPID2=$!
2462
2463         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2464         wait $MULTIPID || error "first opendir $MULTIPID failed"
2465
2466         sleep 6
2467
2468         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2469         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2470         set +vx
2471 }
2472 run_test 31f "remove of open directory with open-unlink file ==="
2473
2474 test_31g() {
2475         echo "-- cross directory link --"
2476         test_mkdir -c1 $DIR/${tdir}ga
2477         test_mkdir -c1 $DIR/${tdir}gb
2478         touch $DIR/${tdir}ga/f
2479         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2480         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2481         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2482         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2483         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2484 }
2485 run_test 31g "cross directory link==============="
2486
2487 test_31h() {
2488         echo "-- cross directory link --"
2489         test_mkdir -c1 $DIR/${tdir}
2490         test_mkdir -c1 $DIR/${tdir}/dir
2491         touch $DIR/${tdir}/f
2492         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2493         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2494         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2495         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2496         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2497 }
2498 run_test 31h "cross directory link under child==============="
2499
2500 test_31i() {
2501         echo "-- cross directory link --"
2502         test_mkdir -c1 $DIR/$tdir
2503         test_mkdir -c1 $DIR/$tdir/dir
2504         touch $DIR/$tdir/dir/f
2505         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2506         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2507         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2508         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2509         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2510 }
2511 run_test 31i "cross directory link under parent==============="
2512
2513 test_31j() {
2514         test_mkdir -c1 -p $DIR/$tdir
2515         test_mkdir -c1 -p $DIR/$tdir/dir1
2516         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2517         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2518         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2519         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2520         return 0
2521 }
2522 run_test 31j "link for directory==============="
2523
2524 test_31k() {
2525         test_mkdir -c1 -p $DIR/$tdir
2526         touch $DIR/$tdir/s
2527         touch $DIR/$tdir/exist
2528         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2529         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2530         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2531         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2532         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2533         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2534         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2535         return 0
2536 }
2537 run_test 31k "link to file: the same, non-existing, dir==============="
2538
2539 test_31m() {
2540         mkdir $DIR/d31m
2541         touch $DIR/d31m/s
2542         mkdir $DIR/d31m2
2543         touch $DIR/d31m2/exist
2544         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2545         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2546         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2547         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2548         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2549         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2550         return 0
2551 }
2552 run_test 31m "link to file: the same, non-existing, dir==============="
2553
2554 test_31n() {
2555         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2556         nlink=$(stat --format=%h $DIR/$tfile)
2557         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2558         local fd=$(free_fd)
2559         local cmd="exec $fd<$DIR/$tfile"
2560         eval $cmd
2561         cmd="exec $fd<&-"
2562         trap "eval $cmd" EXIT
2563         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2564         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2565         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2566         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2567         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2568         eval $cmd
2569 }
2570 run_test 31n "check link count of unlinked file"
2571
2572 link_one() {
2573         local TEMPNAME=$(mktemp $1_XXXXXX)
2574         mlink $TEMPNAME $1 2> /dev/null &&
2575                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2576         munlink $TEMPNAME
2577 }
2578
2579 test_31o() { # LU-2901
2580         test_mkdir $DIR/$tdir
2581         for LOOP in $(seq 100); do
2582                 rm -f $DIR/$tdir/$tfile*
2583                 for THREAD in $(seq 8); do
2584                         link_one $DIR/$tdir/$tfile.$LOOP &
2585                 done
2586                 wait
2587                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2588                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2589                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2590                         break || true
2591         done
2592 }
2593 run_test 31o "duplicate hard links with same filename"
2594
2595 test_31p() {
2596         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
2597
2598         test_mkdir $DIR/$tdir
2599         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2600         $LFS setdirstripe -D -c2 -H all_char $DIR/$tdir/striped_dir
2601
2602         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2603                 error "open unlink test1 failed"
2604         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2605                 error "open unlink test2 failed"
2606
2607         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2608                 error "test1 still exists"
2609         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2610                 error "test2 still exists"
2611 }
2612 run_test 31p "remove of open striped directory"
2613
2614 cleanup_test32_mount() {
2615         local rc=0
2616         trap 0
2617         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$//p')
2618         $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
2619         losetup -d $loopdev || true
2620         rm -rf $DIR/$tdir
2621         return $rc
2622 }
2623
2624 test_32a() {
2625         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2626
2627         echo "== more mountpoints and symlinks ================="
2628         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2629         trap cleanup_test32_mount EXIT
2630         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2631         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2632                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2633         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. ||
2634                 error "$DIR/$tdir/ext2-mountpoint/.. not dir type"
2635         cleanup_test32_mount
2636 }
2637 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2638
2639 test_32b() {
2640         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2641
2642         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2643         trap cleanup_test32_mount EXIT
2644         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2645         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2646                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2647         ls -al $DIR/$tdir/ext2-mountpoint/.. ||
2648                 error "Can't list $DIR/$tdir/ext2-mountpoint/.."
2649         cleanup_test32_mount
2650 }
2651 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2652
2653 test_32c() {
2654         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2655
2656         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2657         trap cleanup_test32_mount EXIT
2658         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2659         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2660                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2661         test_mkdir -p $DIR/$tdir/d2/test_dir
2662         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
2663                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_dir not dir type"
2664         cleanup_test32_mount
2665 }
2666 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2667
2668 test_32d() {
2669         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2670
2671         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2672         trap cleanup_test32_mount EXIT
2673         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2674         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2675                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2676         test_mkdir -p $DIR/$tdir/d2/test_dir
2677         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
2678                 error "Can't list $DIR/$tdir/ext2-mountpoint/../d2/test_dir"
2679         cleanup_test32_mount
2680 }
2681 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir"
2682
2683 test_32e() {
2684         rm -fr $DIR/$tdir
2685         test_mkdir -p $DIR/$tdir/tmp
2686         local tmp_dir=$DIR/$tdir/tmp
2687         ln -s $DIR/$tdir $tmp_dir/symlink11
2688         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2689         $CHECKSTAT -t link $DIR/$tdir/tmp/symlink11 || error "symlink11 bad"
2690         $CHECKSTAT -t link $DIR/$tdir/symlink01 || error "symlink01 bad"
2691 }
2692 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir"
2693
2694 test_32f() {
2695         rm -fr $DIR/$tdir
2696         test_mkdir -p $DIR/$tdir/tmp
2697         local tmp_dir=$DIR/$tdir/tmp
2698         ln -s $DIR/$tdir $tmp_dir/symlink11
2699         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2700         ls $DIR/$tdir/tmp/symlink11  || error "symlink11 bad"
2701         ls $DIR/$tdir/symlink01 || error "symlink01 bad"
2702 }
2703 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir"
2704
2705 test_32g() {
2706         local tmp_dir=$DIR/$tdir/tmp
2707         test_mkdir -p $tmp_dir
2708         test_mkdir $DIR/${tdir}2
2709         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2710         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2711         $CHECKSTAT -t link $tmp_dir/symlink12 || error "symlink12 not a link"
2712         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error "symlink02 not a link"
2713         $CHECKSTAT -t dir -f $tmp_dir/symlink12 || error "symlink12 not a dir"
2714         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error "symlink12 not a dir"
2715 }
2716 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2717
2718 test_32h() {
2719         rm -fr $DIR/$tdir $DIR/${tdir}2
2720         tmp_dir=$DIR/$tdir/tmp
2721         test_mkdir -p $tmp_dir
2722         test_mkdir $DIR/${tdir}2
2723         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2724         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2725         ls $tmp_dir/symlink12 || error "listing symlink12"
2726         ls $DIR/$tdir/symlink02  || error "listing symlink02"
2727 }
2728 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2729
2730 test_32i() {
2731         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2732
2733         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2734         trap cleanup_test32_mount EXIT
2735         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2736         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2737                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2738         touch $DIR/$tdir/test_file
2739         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file ||
2740                 error "$DIR/$tdir/ext2-mountpoint/../test_file not file type"
2741         cleanup_test32_mount
2742 }
2743 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2744
2745 test_32j() {
2746         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2747
2748         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2749         trap cleanup_test32_mount EXIT
2750         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2751         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2752                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2753         touch $DIR/$tdir/test_file
2754         cat $DIR/$tdir/ext2-mountpoint/../test_file ||
2755                 error "Can't open $DIR/$tdir/ext2-mountpoint/../test_file"
2756         cleanup_test32_mount
2757 }
2758 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2759
2760 test_32k() {
2761         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2762
2763         rm -fr $DIR/$tdir
2764         trap cleanup_test32_mount EXIT
2765         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2766         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2767                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2768         test_mkdir -p $DIR/$tdir/d2
2769         touch $DIR/$tdir/d2/test_file || error "touch failed"
2770         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
2771                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_file not file type"
2772         cleanup_test32_mount
2773 }
2774 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2775
2776 test_32l() {
2777         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2778
2779         rm -fr $DIR/$tdir
2780         trap cleanup_test32_mount EXIT
2781         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2782         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2783                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2784         test_mkdir -p $DIR/$tdir/d2
2785         touch $DIR/$tdir/d2/test_file || error "touch failed"
2786         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
2787                 error "Can't open $DIR/$tdir/ext2-mountpoint/../d2/test_file"
2788         cleanup_test32_mount
2789 }
2790 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2791
2792 test_32m() {
2793         rm -fr $DIR/d32m
2794         test_mkdir -p $DIR/d32m/tmp
2795         TMP_DIR=$DIR/d32m/tmp
2796         ln -s $DIR $TMP_DIR/symlink11
2797         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2798         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 ||
2799                 error "symlink11 not a link"
2800         $CHECKSTAT -t link $DIR/d32m/symlink01 ||
2801                 error "symlink01 not a link"
2802 }
2803 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2804
2805 test_32n() {
2806         rm -fr $DIR/d32n
2807         test_mkdir -p $DIR/d32n/tmp
2808         TMP_DIR=$DIR/d32n/tmp
2809         ln -s $DIR $TMP_DIR/symlink11
2810         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2811         ls -l $DIR/d32n/tmp/symlink11  || error "listing symlink11"
2812         ls -l $DIR/d32n/symlink01 || error "listing symlink01"
2813 }
2814 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2815
2816 test_32o() {
2817         touch $DIR/$tfile
2818         test_mkdir -p $DIR/d32o/tmp
2819         TMP_DIR=$DIR/d32o/tmp
2820         ln -s $DIR/$tfile $TMP_DIR/symlink12
2821         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2822         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 ||
2823                 error "symlink12 not a link"
2824         $CHECKSTAT -t link $DIR/d32o/symlink02 || error "symlink02 not a link"
2825         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 ||
2826                 error "$DIR/d32o/tmp/symlink12 not file type"
2827         $CHECKSTAT -t file -f $DIR/d32o/symlink02 ||
2828                 error "$DIR/d32o/symlink02 not file type"
2829 }
2830 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2831
2832 test_32p() {
2833         log 32p_1
2834         rm -fr $DIR/d32p
2835         log 32p_2
2836         rm -f $DIR/$tfile
2837         log 32p_3
2838         touch $DIR/$tfile
2839         log 32p_4
2840         test_mkdir -p $DIR/d32p/tmp
2841         log 32p_5
2842         TMP_DIR=$DIR/d32p/tmp
2843         log 32p_6
2844         ln -s $DIR/$tfile $TMP_DIR/symlink12
2845         log 32p_7
2846         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2847         log 32p_8
2848         cat $DIR/d32p/tmp/symlink12 ||
2849                 error "Can't open $DIR/d32p/tmp/symlink12"
2850         log 32p_9
2851         cat $DIR/d32p/symlink02 || error "Can't open $DIR/d32p/symlink02"
2852         log 32p_10
2853 }
2854 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2855
2856 test_32q() {
2857         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2858
2859         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2860         trap cleanup_test32_mount EXIT
2861         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2862         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
2863         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2864                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2865         ls $DIR/$tdir/ext2-mountpoint | grep "\<under_the_mount\>" && error
2866         cleanup_test32_mount
2867 }
2868 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2869
2870 test_32r() {
2871         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2872
2873         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2874         trap cleanup_test32_mount EXIT
2875         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2876         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
2877         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2878                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2879         ls $DIR/$tdir/ext2-mountpoint | grep -q under_the_mount && error || true
2880         cleanup_test32_mount
2881 }
2882 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2883
2884 test_33aa() {
2885         rm -f $DIR/$tfile
2886         touch $DIR/$tfile
2887         chmod 444 $DIR/$tfile
2888         chown $RUNAS_ID $DIR/$tfile
2889         log 33_1
2890         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2891         log 33_2
2892 }
2893 run_test 33aa "write file with mode 444 (should return error)"
2894
2895 test_33a() {
2896         rm -fr $DIR/$tdir
2897         test_mkdir $DIR/$tdir
2898         chown $RUNAS_ID $DIR/$tdir
2899         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile ||
2900                 error "$RUNAS create $tdir/$tfile failed"
2901         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile &&
2902                 error "open RDWR" || true
2903 }
2904 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2905
2906 test_33b() {
2907         rm -fr $DIR/$tdir
2908         test_mkdir $DIR/$tdir
2909         chown $RUNAS_ID $DIR/$tdir
2910         $RUNAS $OPENFILE -f 1286739555 $DIR/$tdir/$tfile || true
2911 }
2912 run_test 33b "test open file with malformed flags (No panic)"
2913
2914 test_33c() {
2915         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2916         remote_ost_nodsh && skip "remote OST with nodsh"
2917
2918         local ostnum
2919         local ostname
2920         local write_bytes
2921         local all_zeros
2922
2923         all_zeros=:
2924         rm -fr $DIR/$tdir
2925         test_mkdir $DIR/$tdir
2926         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2927
2928         sync
2929         for ostnum in $(seq $OSTCOUNT); do
2930                 # test-framework's OST numbering is one-based, while Lustre's
2931                 # is zero-based
2932                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2933                 # Parsing llobdstat's output sucks; we could grep the /proc
2934                 # path, but that's likely to not be as portable as using the
2935                 # llobdstat utility.  So we parse lctl output instead.
2936                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2937                         obdfilter/$ostname/stats |
2938                         awk '/^write_bytes/ {print $7}' )
2939                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2940                 if (( ${write_bytes:-0} > 0 ))
2941                 then
2942                         all_zeros=false
2943                         break;
2944                 fi
2945         done
2946
2947         $all_zeros || return 0
2948
2949         # Write four bytes
2950         echo foo > $DIR/$tdir/bar
2951         # Really write them
2952         sync
2953
2954         # Total up write_bytes after writing.  We'd better find non-zeros.
2955         for ostnum in $(seq $OSTCOUNT); do
2956                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2957                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2958                         obdfilter/$ostname/stats |
2959                         awk '/^write_bytes/ {print $7}' )
2960                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2961                 if (( ${write_bytes:-0} > 0 ))
2962                 then
2963                         all_zeros=false
2964                         break;
2965                 fi
2966         done
2967
2968         if $all_zeros
2969         then
2970                 for ostnum in $(seq $OSTCOUNT); do
2971                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2972                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2973                         do_facet ost$ostnum lctl get_param -n \
2974                                 obdfilter/$ostname/stats
2975                 done
2976                 error "OST not keeping write_bytes stats (b22312)"
2977         fi
2978 }
2979 run_test 33c "test llobdstat and write_bytes"
2980
2981 test_33d() {
2982         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
2983         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2984
2985         local MDTIDX=1
2986         local remote_dir=$DIR/$tdir/remote_dir
2987
2988         test_mkdir $DIR/$tdir
2989         $LFS mkdir -i $MDTIDX $remote_dir ||
2990                 error "create remote directory failed"
2991
2992         touch $remote_dir/$tfile
2993         chmod 444 $remote_dir/$tfile
2994         chown $RUNAS_ID $remote_dir/$tfile
2995
2996         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2997
2998         chown $RUNAS_ID $remote_dir
2999         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
3000                                         error "create" || true
3001         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
3002                                     error "open RDWR" || true
3003         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
3004 }
3005 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
3006
3007 test_33e() {
3008         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3009
3010         mkdir $DIR/$tdir
3011
3012         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3013         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3014         mkdir $DIR/$tdir/local_dir
3015
3016         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3017         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3018         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3019
3020         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3021                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
3022
3023         rmdir $DIR/$tdir/* || error "rmdir failed"
3024
3025         umask 777
3026         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3027         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3028         mkdir $DIR/$tdir/local_dir
3029
3030         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3031         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3032         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3033
3034         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3035                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
3036
3037         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
3038
3039         umask 000
3040         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3041         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3042         mkdir $DIR/$tdir/local_dir
3043
3044         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3045         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3046         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3047
3048         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3049                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
3050 }
3051 run_test 33e "mkdir and striped directory should have same mode"
3052
3053 cleanup_33f() {
3054         trap 0
3055         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
3056 }
3057
3058 test_33f() {
3059         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3060         remote_mds_nodsh && skip "remote MDS with nodsh"
3061
3062         mkdir $DIR/$tdir
3063         chmod go+rwx $DIR/$tdir
3064         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
3065         trap cleanup_33f EXIT
3066
3067         $RUNAS lfs mkdir -i 0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
3068                 error "cannot create striped directory"
3069
3070         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
3071                 error "cannot create files in striped directory"
3072
3073         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
3074                 error "cannot remove files in striped directory"
3075
3076         $RUNAS rmdir $DIR/$tdir/striped_dir ||
3077                 error "cannot remove striped directory"
3078
3079         cleanup_33f
3080 }
3081 run_test 33f "nonroot user can create, access, and remove a striped directory"
3082
3083 test_33g() {
3084         mkdir -p $DIR/$tdir/dir2
3085
3086         local err=$($RUNAS mkdir $DIR/$tdir/dir2 2>&1)
3087         echo $err
3088         [[ $err =~ "exists" ]] || error "Not exists error"
3089 }
3090 run_test 33g "nonroot user create already existing root created file"
3091
3092 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
3093 test_34a() {
3094         rm -f $DIR/f34
3095         $MCREATE $DIR/f34 || error "mcreate failed"
3096         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" ||
3097                 error "getstripe failed"
3098         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error "truncate failed"
3099         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" ||
3100                 error "getstripe failed"
3101         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3102                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3103 }
3104 run_test 34a "truncate file that has not been opened ==========="
3105
3106 test_34b() {
3107         [ ! -f $DIR/f34 ] && test_34a
3108         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3109                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3110         $OPENFILE -f O_RDONLY $DIR/f34
3111         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" ||
3112                 error "getstripe failed"
3113         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3114                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3115 }
3116 run_test 34b "O_RDONLY opening file doesn't create objects ====="
3117
3118 test_34c() {
3119         [ ! -f $DIR/f34 ] && test_34a
3120         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3121                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3122         $OPENFILE -f O_RDWR $DIR/f34
3123         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
3124         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3125                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3126 }
3127 run_test 34c "O_RDWR opening file-with-size works =============="
3128
3129 test_34d() {
3130         [ ! -f $DIR/f34 ] && test_34a
3131         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 ||
3132                 error "dd failed"
3133         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3134                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3135         rm $DIR/f34
3136 }
3137 run_test 34d "write to sparse file ============================="
3138
3139 test_34e() {
3140         rm -f $DIR/f34e
3141         $MCREATE $DIR/f34e || error "mcreate failed"
3142         $TRUNCATE $DIR/f34e 1000 || error "truncate failed"
3143         $CHECKSTAT -s 1000 $DIR/f34e ||
3144                 error "Size of $DIR/f34e not equal to 1000 bytes"
3145         $OPENFILE -f O_RDWR $DIR/f34e
3146         $CHECKSTAT -s 1000 $DIR/f34e ||
3147                 error "Size of $DIR/f34e not equal to 1000 bytes"
3148 }
3149 run_test 34e "create objects, some with size and some without =="
3150
3151 test_34f() { # bug 6242, 6243
3152         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3153
3154         SIZE34F=48000
3155         rm -f $DIR/f34f
3156         $MCREATE $DIR/f34f || error "mcreate failed"
3157         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
3158         dd if=$DIR/f34f of=$TMP/f34f
3159         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
3160         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
3161         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
3162         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
3163         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
3164 }
3165 run_test 34f "read from a file with no objects until EOF ======="
3166
3167 test_34g() {
3168         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3169
3170         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE ||
3171                 error "dd failed"
3172         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error "truncate failed"
3173         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
3174                 error "Size of $DIR/$tfile not equal to $((TEST_34_SIZE / 2))"
3175         cancel_lru_locks osc
3176         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
3177                 error "wrong size after lock cancel"
3178
3179         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error "truncate failed"
3180         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
3181                 error "expanding truncate failed"
3182         cancel_lru_locks osc
3183         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
3184                 error "wrong expanded size after lock cancel"
3185 }
3186 run_test 34g "truncate long file ==============================="
3187
3188 test_34h() {
3189         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3190
3191         local gid=10
3192         local sz=1000
3193
3194         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error "dd failed"
3195         sync # Flush the cache so that multiop below does not block on cache
3196              # flush when getting the group lock
3197         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
3198         MULTIPID=$!
3199
3200         # Since just timed wait is not good enough, let's do a sync write
3201         # that way we are sure enough time for a roundtrip + processing
3202         # passed + 2 seconds of extra margin.
3203         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
3204         rm $DIR/${tfile}-1
3205         sleep 2
3206
3207         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
3208                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
3209                 kill -9 $MULTIPID
3210         fi
3211         wait $MULTIPID
3212         local nsz=`stat -c %s $DIR/$tfile`
3213         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
3214 }
3215 run_test 34h "ftruncate file under grouplock should not block"
3216
3217 test_35a() {
3218         cp /bin/sh $DIR/f35a
3219         chmod 444 $DIR/f35a
3220         chown $RUNAS_ID $DIR/f35a
3221         $RUNAS $DIR/f35a && error || true
3222         rm $DIR/f35a
3223 }
3224 run_test 35a "exec file with mode 444 (should return and not leak)"
3225
3226 test_36a() {
3227         rm -f $DIR/f36
3228         utime $DIR/f36 || error "utime failed for MDS"
3229 }
3230 run_test 36a "MDS utime check (mknod, utime)"
3231
3232 test_36b() {
3233         echo "" > $DIR/f36
3234         utime $DIR/f36 || error "utime failed for OST"
3235 }
3236 run_test 36b "OST utime check (open, utime)"
3237
3238 test_36c() {
3239         rm -f $DIR/d36/f36
3240         test_mkdir $DIR/d36
3241         chown $RUNAS_ID $DIR/d36
3242         $RUNAS utime $DIR/d36/f36 || error "utime failed for MDS as non-root"
3243 }
3244 run_test 36c "non-root MDS utime check (mknod, utime)"
3245
3246 test_36d() {
3247         [ ! -d $DIR/d36 ] && test_36c
3248         echo "" > $DIR/d36/f36
3249         $RUNAS utime $DIR/d36/f36 || error "utime failed for OST as non-root"
3250 }
3251 run_test 36d "non-root OST utime check (open, utime)"
3252
3253 test_36e() {
3254         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping"
3255
3256         test_mkdir $DIR/$tdir
3257         touch $DIR/$tdir/$tfile
3258         $RUNAS utime $DIR/$tdir/$tfile &&
3259                 error "utime worked, expected failure" || true
3260 }
3261 run_test 36e "utime on non-owned file (should return error)"
3262
3263 subr_36fh() {
3264         local fl="$1"
3265         local LANG_SAVE=$LANG
3266         local LC_LANG_SAVE=$LC_LANG
3267         export LANG=C LC_LANG=C # for date language
3268
3269         DATESTR="Dec 20  2000"
3270         test_mkdir $DIR/$tdir
3271         lctl set_param fail_loc=$fl
3272         date; date +%s
3273         cp /etc/hosts $DIR/$tdir/$tfile
3274         sync & # write RPC generated with "current" inode timestamp, but delayed
3275         sleep 1
3276         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
3277         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
3278         cancel_lru_locks osc
3279         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
3280         date; date +%s
3281         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
3282                 echo "BEFORE: $LS_BEFORE" && \
3283                 echo "AFTER : $LS_AFTER" && \
3284                 echo "WANT  : $DATESTR" && \
3285                 error "$DIR/$tdir/$tfile timestamps changed" || true
3286
3287         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
3288 }
3289
3290 test_36f() {
3291         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3292
3293         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
3294         subr_36fh "0x80000214"
3295 }
3296 run_test 36f "utime on file racing with OST BRW write =========="
3297
3298 test_36g() {
3299         remote_ost_nodsh && skip "remote OST with nodsh"
3300         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3301
3302         local fmd_max_age
3303         local fmd_before
3304         local fmd_after
3305
3306         test_mkdir $DIR/$tdir
3307         fmd_max_age=$(do_facet ost1 \
3308                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
3309                 head -n 1")
3310
3311         fmd_before=$(do_facet ost1 \
3312                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3313         touch $DIR/$tdir/$tfile
3314         sleep $((fmd_max_age + 12))
3315         fmd_after=$(do_facet ost1 \
3316                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3317
3318         echo "fmd_before: $fmd_before"
3319         echo "fmd_after: $fmd_after"
3320         [[ $fmd_after -gt $fmd_before ]] &&
3321                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" &&
3322                 error "fmd didn't expire after ping" || true
3323 }
3324 run_test 36g "filter mod data cache expiry ====================="
3325
3326 test_36h() {
3327         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3328
3329         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
3330         subr_36fh "0x80000227"
3331 }
3332 run_test 36h "utime on file racing with OST BRW write =========="
3333
3334 test_36i() {
3335         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3336
3337         test_mkdir $DIR/$tdir
3338         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3339
3340         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3341         local new_mtime=$((mtime + 200))
3342
3343         #change Modify time of striped dir
3344         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3345                         error "change mtime failed"
3346
3347         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3348
3349         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3350 }
3351 run_test 36i "change mtime on striped directory"
3352
3353 # test_37 - duplicate with tests 32q 32r
3354
3355 test_38() {
3356         local file=$DIR/$tfile
3357         touch $file
3358         openfile -f O_DIRECTORY $file
3359         local RC=$?
3360         local ENOTDIR=20
3361         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3362         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3363 }
3364 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3365
3366 test_39a() { # was test_39
3367         touch $DIR/$tfile
3368         touch $DIR/${tfile}2
3369 #       ls -l  $DIR/$tfile $DIR/${tfile}2
3370 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
3371 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
3372         sleep 2
3373         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3374         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3375                 echo "mtime"
3376                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3377                 echo "atime"
3378                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3379                 echo "ctime"
3380                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3381                 error "O_TRUNC didn't change timestamps"
3382         fi
3383 }
3384 run_test 39a "mtime changed on create"
3385
3386 test_39b() {
3387         test_mkdir -c1 $DIR/$tdir
3388         cp -p /etc/passwd $DIR/$tdir/fopen
3389         cp -p /etc/passwd $DIR/$tdir/flink
3390         cp -p /etc/passwd $DIR/$tdir/funlink
3391         cp -p /etc/passwd $DIR/$tdir/frename
3392         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3393
3394         sleep 1
3395         echo "aaaaaa" >> $DIR/$tdir/fopen
3396         echo "aaaaaa" >> $DIR/$tdir/flink
3397         echo "aaaaaa" >> $DIR/$tdir/funlink
3398         echo "aaaaaa" >> $DIR/$tdir/frename
3399
3400         local open_new=`stat -c %Y $DIR/$tdir/fopen`
3401         local link_new=`stat -c %Y $DIR/$tdir/flink`
3402         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3403         local rename_new=`stat -c %Y $DIR/$tdir/frename`
3404
3405         cat $DIR/$tdir/fopen > /dev/null
3406         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3407         rm -f $DIR/$tdir/funlink2
3408         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3409
3410         for (( i=0; i < 2; i++ )) ; do
3411                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3412                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3413                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3414                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3415
3416                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3417                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3418                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3419                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3420
3421                 cancel_lru_locks osc
3422                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3423         done
3424 }
3425 run_test 39b "mtime change on open, link, unlink, rename  ======"
3426
3427 # this should be set to past
3428 TEST_39_MTIME=`date -d "1 year ago" +%s`
3429
3430 # bug 11063
3431 test_39c() {
3432         touch $DIR1/$tfile
3433         sleep 2
3434         local mtime0=`stat -c %Y $DIR1/$tfile`
3435
3436         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3437         local mtime1=`stat -c %Y $DIR1/$tfile`
3438         [ "$mtime1" = $TEST_39_MTIME ] || \
3439                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3440
3441         local d1=`date +%s`
3442         echo hello >> $DIR1/$tfile
3443         local d2=`date +%s`
3444         local mtime2=`stat -c %Y $DIR1/$tfile`
3445         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3446                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3447
3448         mv $DIR1/$tfile $DIR1/$tfile-1
3449
3450         for (( i=0; i < 2; i++ )) ; do
3451                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3452                 [ "$mtime2" = "$mtime3" ] || \
3453                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3454
3455                 cancel_lru_locks osc
3456                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3457         done
3458 }
3459 run_test 39c "mtime change on rename ==========================="
3460
3461 # bug 21114
3462 test_39d() {
3463         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3464
3465         touch $DIR1/$tfile
3466         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3467
3468         for (( i=0; i < 2; i++ )) ; do
3469                 local mtime=`stat -c %Y $DIR1/$tfile`
3470                 [ $mtime = $TEST_39_MTIME ] || \
3471                         error "mtime($mtime) is not set to $TEST_39_MTIME"
3472
3473                 cancel_lru_locks osc
3474                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3475         done
3476 }
3477 run_test 39d "create, utime, stat =============================="
3478
3479 # bug 21114
3480 test_39e() {
3481         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3482
3483         touch $DIR1/$tfile
3484         local mtime1=`stat -c %Y $DIR1/$tfile`
3485
3486         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3487
3488         for (( i=0; i < 2; i++ )) ; do
3489                 local mtime2=`stat -c %Y $DIR1/$tfile`
3490                 [ $mtime2 = $TEST_39_MTIME ] || \
3491                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3492
3493                 cancel_lru_locks osc
3494                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3495         done
3496 }
3497 run_test 39e "create, stat, utime, stat ========================"
3498
3499 # bug 21114
3500 test_39f() {
3501         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3502
3503         touch $DIR1/$tfile
3504         mtime1=`stat -c %Y $DIR1/$tfile`
3505
3506         sleep 2
3507         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3508
3509         for (( i=0; i < 2; i++ )) ; do
3510                 local mtime2=`stat -c %Y $DIR1/$tfile`
3511                 [ $mtime2 = $TEST_39_MTIME ] || \
3512                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3513
3514                 cancel_lru_locks osc
3515                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3516         done
3517 }
3518 run_test 39f "create, stat, sleep, utime, stat ================="
3519
3520 # bug 11063
3521 test_39g() {
3522         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3523
3524         echo hello >> $DIR1/$tfile
3525         local mtime1=`stat -c %Y $DIR1/$tfile`
3526
3527         sleep 2
3528         chmod o+r $DIR1/$tfile
3529
3530         for (( i=0; i < 2; i++ )) ; do
3531                 local mtime2=`stat -c %Y $DIR1/$tfile`
3532                 [ "$mtime1" = "$mtime2" ] || \
3533                         error "lost mtime: $mtime2, should be $mtime1"
3534
3535                 cancel_lru_locks osc
3536                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3537         done
3538 }
3539 run_test 39g "write, chmod, stat ==============================="
3540
3541 # bug 11063
3542 test_39h() {
3543         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3544
3545         touch $DIR1/$tfile
3546         sleep 1
3547
3548         local d1=`date`
3549         echo hello >> $DIR1/$tfile
3550         local mtime1=`stat -c %Y $DIR1/$tfile`
3551
3552         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3553         local d2=`date`
3554         if [ "$d1" != "$d2" ]; then
3555                 echo "write and touch not within one second"
3556         else
3557                 for (( i=0; i < 2; i++ )) ; do
3558                         local mtime2=`stat -c %Y $DIR1/$tfile`
3559                         [ "$mtime2" = $TEST_39_MTIME ] || \
3560                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3561
3562                         cancel_lru_locks osc
3563                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3564                 done
3565         fi
3566 }
3567 run_test 39h "write, utime within one second, stat ============="
3568
3569 test_39i() {
3570         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3571
3572         touch $DIR1/$tfile
3573         sleep 1
3574
3575         echo hello >> $DIR1/$tfile
3576         local mtime1=`stat -c %Y $DIR1/$tfile`
3577
3578         mv $DIR1/$tfile $DIR1/$tfile-1
3579
3580         for (( i=0; i < 2; i++ )) ; do
3581                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3582
3583                 [ "$mtime1" = "$mtime2" ] || \
3584                         error "lost mtime: $mtime2, should be $mtime1"
3585
3586                 cancel_lru_locks osc
3587                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3588         done
3589 }
3590 run_test 39i "write, rename, stat =============================="
3591
3592 test_39j() {
3593         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3594
3595         start_full_debug_logging
3596         touch $DIR1/$tfile
3597         sleep 1
3598
3599         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3600         lctl set_param fail_loc=0x80000412
3601         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3602                 error "multiop failed"
3603         local multipid=$!
3604         local mtime1=`stat -c %Y $DIR1/$tfile`
3605
3606         mv $DIR1/$tfile $DIR1/$tfile-1
3607
3608         kill -USR1 $multipid
3609         wait $multipid || error "multiop close failed"
3610
3611         for (( i=0; i < 2; i++ )) ; do
3612                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3613                 [ "$mtime1" = "$mtime2" ] ||
3614                         error "mtime is lost on close: $mtime2, " \
3615                               "should be $mtime1"
3616
3617                 cancel_lru_locks osc
3618                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3619         done
3620         lctl set_param fail_loc=0
3621         stop_full_debug_logging
3622 }
3623 run_test 39j "write, rename, close, stat ======================="
3624
3625 test_39k() {
3626         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3627
3628         touch $DIR1/$tfile
3629         sleep 1
3630
3631         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3632         local multipid=$!
3633         local mtime1=`stat -c %Y $DIR1/$tfile`
3634
3635         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3636
3637         kill -USR1 $multipid
3638         wait $multipid || error "multiop close failed"
3639
3640         for (( i=0; i < 2; i++ )) ; do
3641                 local mtime2=`stat -c %Y $DIR1/$tfile`
3642
3643                 [ "$mtime2" = $TEST_39_MTIME ] || \
3644                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3645
3646                 cancel_lru_locks osc
3647                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3648         done
3649 }
3650 run_test 39k "write, utime, close, stat ========================"
3651
3652 # this should be set to future
3653 TEST_39_ATIME=`date -d "1 year" +%s`
3654
3655 test_39l() {
3656         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3657         remote_mds_nodsh && skip "remote MDS with nodsh"
3658
3659         local atime_diff=$(do_facet $SINGLEMDS \
3660                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3661         rm -rf $DIR/$tdir
3662         mkdir -p $DIR/$tdir
3663
3664         # test setting directory atime to future
3665         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3666         local atime=$(stat -c %X $DIR/$tdir)
3667         [ "$atime" = $TEST_39_ATIME ] ||
3668                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3669
3670         # test setting directory atime from future to now
3671         local now=$(date +%s)
3672         touch -a -d @$now $DIR/$tdir
3673
3674         atime=$(stat -c %X $DIR/$tdir)
3675         [ "$atime" -eq "$now"  ] ||
3676                 error "atime is not updated from future: $atime, $now"
3677
3678         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3679         sleep 3
3680
3681         # test setting directory atime when now > dir atime + atime_diff
3682         local d1=$(date +%s)
3683         ls $DIR/$tdir
3684         local d2=$(date +%s)
3685         cancel_lru_locks mdc
3686         atime=$(stat -c %X $DIR/$tdir)
3687         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3688                 error "atime is not updated  : $atime, should be $d2"
3689
3690         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3691         sleep 3
3692
3693         # test not setting directory atime when now < dir atime + atime_diff
3694         ls $DIR/$tdir
3695         cancel_lru_locks mdc
3696         atime=$(stat -c %X $DIR/$tdir)
3697         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3698                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3699
3700         do_facet $SINGLEMDS \
3701                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3702 }
3703 run_test 39l "directory atime update ==========================="
3704
3705 test_39m() {
3706         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3707
3708         touch $DIR1/$tfile
3709         sleep 2
3710         local far_past_mtime=$(date -d "May 29 1953" +%s)
3711         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3712
3713         touch -m -d @$far_past_mtime $DIR1/$tfile
3714         touch -a -d @$far_past_atime $DIR1/$tfile
3715
3716         for (( i=0; i < 2; i++ )) ; do
3717                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3718                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3719                         error "atime or mtime set incorrectly"
3720
3721                 cancel_lru_locks osc
3722                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3723         done
3724 }
3725 run_test 39m "test atime and mtime before 1970"
3726
3727 test_39n() { # LU-3832
3728         remote_mds_nodsh && skip "remote MDS with nodsh"
3729
3730         local atime_diff=$(do_facet $SINGLEMDS \
3731                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3732         local atime0
3733         local atime1
3734         local atime2
3735
3736         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3737
3738         rm -rf $DIR/$tfile
3739         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3740         atime0=$(stat -c %X $DIR/$tfile)
3741
3742         sleep 5
3743         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3744         atime1=$(stat -c %X $DIR/$tfile)
3745
3746         sleep 5
3747         cancel_lru_locks mdc
3748         cancel_lru_locks osc
3749         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3750         atime2=$(stat -c %X $DIR/$tfile)
3751
3752         do_facet $SINGLEMDS \
3753                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3754
3755         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3756         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3757 }
3758 run_test 39n "check that O_NOATIME is honored"
3759
3760 test_39o() {
3761         TESTDIR=$DIR/$tdir/$tfile
3762         [ -e $TESTDIR ] && rm -rf $TESTDIR
3763         mkdir -p $TESTDIR
3764         cd $TESTDIR
3765         links1=2
3766         ls
3767         mkdir a b
3768         ls
3769         links2=$(stat -c %h .)
3770         [ $(($links1 + 2)) != $links2 ] &&
3771                 error "wrong links count $(($links1 + 2)) != $links2"
3772         rmdir b
3773         links3=$(stat -c %h .)
3774         [ $(($links1 + 1)) != $links3 ] &&
3775                 error "wrong links count $links1 != $links3"
3776         return 0
3777 }
3778 run_test 39o "directory cached attributes updated after create"
3779
3780 test_39p() {
3781         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
3782
3783         local MDTIDX=1
3784         TESTDIR=$DIR/$tdir/$tdir
3785         [ -e $TESTDIR ] && rm -rf $TESTDIR
3786         test_mkdir -p $TESTDIR
3787         cd $TESTDIR
3788         links1=2
3789         ls
3790         test_mkdir -i $MDTIDX $TESTDIR/remote_dir1
3791         test_mkdir -i $MDTIDX $TESTDIR/remote_dir2
3792         ls
3793         links2=$(stat -c %h .)
3794         [ $(($links1 + 2)) != $links2 ] &&
3795                 error "wrong links count $(($links1 + 2)) != $links2"
3796         rmdir remote_dir2
3797         links3=$(stat -c %h .)
3798         [ $(($links1 + 1)) != $links3 ] &&
3799                 error "wrong links count $links1 != $links3"
3800         return 0
3801 }
3802 run_test 39p "remote directory cached attributes updated after create ========"
3803
3804
3805 test_39q() { # LU-8041
3806         local testdir=$DIR/$tdir
3807         mkdir -p $testdir
3808         multiop_bg_pause $testdir D_c || error "multiop failed"
3809         local multipid=$!
3810         cancel_lru_locks mdc
3811         kill -USR1 $multipid
3812         local atime=$(stat -c %X $testdir)
3813         [ "$atime" -ne 0 ] || error "atime is zero"
3814 }
3815 run_test 39q "close won't zero out atime"
3816
3817 test_40() {
3818         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3819         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3820                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3821         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3822                 error "$tfile is not 4096 bytes in size"
3823 }
3824 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3825
3826 test_41() {
3827         # bug 1553
3828         small_write $DIR/f41 18
3829 }
3830 run_test 41 "test small file write + fstat ====================="
3831
3832 count_ost_writes() {
3833         lctl get_param -n ${OSC}.*.stats |
3834                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
3835                         END { printf("%0.0f", writes) }'
3836 }
3837
3838 # decent default
3839 WRITEBACK_SAVE=500
3840 DIRTY_RATIO_SAVE=40
3841 MAX_DIRTY_RATIO=50
3842 BG_DIRTY_RATIO_SAVE=10
3843 MAX_BG_DIRTY_RATIO=25
3844
3845 start_writeback() {
3846         trap 0
3847         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3848         # dirty_ratio, dirty_background_ratio
3849         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3850                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3851                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3852                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3853         else
3854                 # if file not here, we are a 2.4 kernel
3855                 kill -CONT `pidof kupdated`
3856         fi
3857 }
3858
3859 stop_writeback() {
3860         # setup the trap first, so someone cannot exit the test at the
3861         # exact wrong time and mess up a machine
3862         trap start_writeback EXIT
3863         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3864         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3865                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3866                 sysctl -w vm.dirty_writeback_centisecs=0
3867                 sysctl -w vm.dirty_writeback_centisecs=0
3868                 # save and increase /proc/sys/vm/dirty_ratio
3869                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3870                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3871                 # save and increase /proc/sys/vm/dirty_background_ratio
3872                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3873                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3874         else
3875                 # if file not here, we are a 2.4 kernel
3876                 kill -STOP `pidof kupdated`
3877         fi
3878 }
3879
3880 # ensure that all stripes have some grant before we test client-side cache
3881 setup_test42() {
3882         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3883                 dd if=/dev/zero of=$i bs=4k count=1
3884                 rm $i
3885         done
3886 }
3887
3888 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3889 # file truncation, and file removal.
3890 test_42a() {
3891         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3892
3893         setup_test42
3894         cancel_lru_locks $OSC
3895         stop_writeback
3896         sync; sleep 1; sync # just to be safe
3897         BEFOREWRITES=`count_ost_writes`
3898         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3899         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3900         AFTERWRITES=`count_ost_writes`
3901         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3902                 error "$BEFOREWRITES < $AFTERWRITES"
3903         start_writeback
3904 }
3905 run_test 42a "ensure that we don't flush on close"
3906
3907 test_42b() {
3908         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3909
3910         setup_test42
3911         cancel_lru_locks $OSC
3912         stop_writeback
3913         sync
3914         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3915         BEFOREWRITES=$(count_ost_writes)
3916         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3917         AFTERWRITES=$(count_ost_writes)
3918         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3919                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3920         fi
3921         BEFOREWRITES=$(count_ost_writes)
3922         sync || error "sync: $?"
3923         AFTERWRITES=$(count_ost_writes)
3924         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3925                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3926         fi
3927         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3928         start_writeback
3929         return 0
3930 }
3931 run_test 42b "test destroy of file with cached dirty data ======"
3932
3933 # if these tests just want to test the effect of truncation,
3934 # they have to be very careful.  consider:
3935 # - the first open gets a {0,EOF}PR lock
3936 # - the first write conflicts and gets a {0, count-1}PW
3937 # - the rest of the writes are under {count,EOF}PW
3938 # - the open for truncate tries to match a {0,EOF}PR
3939 #   for the filesize and cancels the PWs.
3940 # any number of fixes (don't get {0,EOF} on open, match
3941 # composite locks, do smarter file size management) fix
3942 # this, but for now we want these tests to verify that
3943 # the cancellation with truncate intent works, so we
3944 # start the file with a full-file pw lock to match against
3945 # until the truncate.
3946 trunc_test() {
3947         test=$1
3948         file=$DIR/$test
3949         offset=$2
3950         cancel_lru_locks $OSC
3951         stop_writeback
3952         # prime the file with 0,EOF PW to match
3953         touch $file
3954         $TRUNCATE $file 0
3955         sync; sync
3956         # now the real test..
3957         dd if=/dev/zero of=$file bs=1024 count=100
3958         BEFOREWRITES=`count_ost_writes`
3959         $TRUNCATE $file $offset
3960         cancel_lru_locks $OSC
3961         AFTERWRITES=`count_ost_writes`
3962         start_writeback
3963 }
3964
3965 test_42c() {
3966         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3967
3968         trunc_test 42c 1024
3969         [ $BEFOREWRITES -eq $AFTERWRITES ] &&
3970                 error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3971         rm $file
3972 }
3973 run_test 42c "test partial truncate of file with cached dirty data"
3974
3975 test_42d() {
3976         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3977
3978         trunc_test 42d 0
3979         [ $BEFOREWRITES -eq $AFTERWRITES ] ||
3980                 error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3981         rm $file
3982 }
3983 run_test 42d "test complete truncate of file with cached dirty data"
3984
3985 test_42e() { # bug22074
3986         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3987
3988         local TDIR=$DIR/${tdir}e
3989         local pagesz=$(page_size)
3990         local pages=16 # hardcoded 16 pages, don't change it.
3991         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3992         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3993         local max_dirty_mb
3994         local warmup_files
3995
3996         test_mkdir $DIR/${tdir}e
3997         $SETSTRIPE -c 1 $TDIR
3998         createmany -o $TDIR/f $files
3999
4000         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
4001
4002         # we assume that with $OSTCOUNT files, at least one of them will
4003         # be allocated on OST0.
4004         warmup_files=$((OSTCOUNT * max_dirty_mb))
4005         createmany -o $TDIR/w $warmup_files
4006
4007         # write a large amount of data into one file and sync, to get good
4008         # avail_grant number from OST.
4009         for ((i=0; i<$warmup_files; i++)); do
4010                 idx=$($GETSTRIPE -i $TDIR/w$i)
4011                 [ $idx -ne 0 ] && continue
4012                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
4013                 break
4014         done
4015         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
4016         sync
4017         $LCTL get_param $proc_osc0/cur_dirty_bytes
4018         $LCTL get_param $proc_osc0/cur_grant_bytes
4019
4020         # create as much dirty pages as we can while not to trigger the actual
4021         # RPCs directly. but depends on the env, VFS may trigger flush during this
4022         # period, hopefully we are good.
4023         for ((i=0; i<$warmup_files; i++)); do
4024                 idx=$($GETSTRIPE -i $TDIR/w$i)
4025                 [ $idx -ne 0 ] && continue
4026                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
4027         done
4028         $LCTL get_param $proc_osc0/cur_dirty_bytes
4029         $LCTL get_param $proc_osc0/cur_grant_bytes
4030
4031         # perform the real test
4032         $LCTL set_param $proc_osc0/rpc_stats 0
4033         for ((;i<$files; i++)); do
4034                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
4035                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
4036         done
4037         sync
4038         $LCTL get_param $proc_osc0/rpc_stats
4039
4040         local percent=0
4041         local have_ppr=false
4042         $LCTL get_param $proc_osc0/rpc_stats |
4043                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
4044                         # skip lines until we are at the RPC histogram data
4045                         [ "$PPR" == "pages" ] && have_ppr=true && continue
4046                         $have_ppr || continue
4047
4048                         # we only want the percent stat for < 16 pages
4049                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
4050
4051                         percent=$((percent + WPCT))
4052                         if [[ $percent -gt 15 ]]; then
4053                                 error "less than 16-pages write RPCs" \
4054                                       "$percent% > 15%"
4055                                 break
4056                         fi
4057                 done
4058         rm -rf $TDIR
4059 }
4060 run_test 42e "verify sub-RPC writes are not done synchronously"
4061
4062 test_43A() { # was test_43
4063         test_mkdir $DIR/$tdir
4064         cp -p /bin/ls $DIR/$tdir/$tfile
4065         $MULTIOP $DIR/$tdir/$tfile Ow_c &
4066         pid=$!
4067         # give multiop a chance to open
4068         sleep 1
4069
4070         $DIR/$tdir/$tfile && error "execute $DIR/$tdir/$tfile succeeded" || true
4071         kill -USR1 $pid
4072 }
4073 run_test 43A "execution of file opened for write should return -ETXTBSY"
4074
4075 test_43a() {
4076         test_mkdir $DIR/$tdir
4077         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
4078                 cp -p multiop $DIR/$tdir/multiop
4079         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
4080                 error "multiop open $TMP/$tfile.junk failed"
4081         rm $TMP/$tfile.junk     # delete junk file on close (not part of test)
4082         MULTIOP_PID=$!
4083         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
4084         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
4085         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
4086 }
4087 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
4088
4089 test_43b() {
4090         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4091
4092         test_mkdir $DIR/$tdir
4093         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
4094                 cp -p multiop $DIR/$tdir/multiop
4095         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
4096                 error "multiop open $TMP/$tfile.junk failed"
4097         rm $TMP/$tfile.junk     # delete junk file on close (not part of test)
4098         MULTIOP_PID=$!
4099         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
4100         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
4101         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
4102 }
4103 run_test 43b "truncate of file being executed should return -ETXTBSY"
4104
4105 test_43c() {
4106         local testdir="$DIR/$tdir"
4107         test_mkdir $testdir
4108         cp $SHELL $testdir/
4109         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) |
4110                 ( cd $testdir && md5sum -c )
4111 }
4112 run_test 43c "md5sum of copy into lustre"
4113
4114 test_44A() { # was test_44
4115         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
4116
4117         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
4118         dd if=$DIR/f1 bs=4k count=1 > /dev/null
4119 }
4120 run_test 44A "zero length read from a sparse stripe"
4121
4122 test_44a() {
4123         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
4124                 awk '{ print $2 }')
4125         [ -z "$nstripe" ] && skip "can't get stripe info"
4126         [[ $nstripe -gt $OSTCOUNT ]] &&
4127                 skip "Wrong default_stripe_count: $nstripe OSTCOUNT: $OSTCOUNT"
4128
4129         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
4130                 awk '{ print $2 }')
4131         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
4132                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
4133                         awk '{ print $2 }')
4134         fi
4135
4136         OFFSETS="0 $((stride/2)) $((stride-1))"
4137         for offset in $OFFSETS; do
4138                 for i in $(seq 0 $((nstripe-1))); do
4139                         local GLOBALOFFSETS=""
4140                         # size in Bytes
4141                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
4142                         local myfn=$DIR/d44a-$size
4143                         echo "--------writing $myfn at $size"
4144                         ll_sparseness_write $myfn $size ||
4145                                 error "ll_sparseness_write"
4146                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
4147                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
4148                                 error "ll_sparseness_verify $GLOBALOFFSETS"
4149
4150                         for j in $(seq 0 $((nstripe-1))); do
4151                                 # size in Bytes
4152                                 size=$((((j + $nstripe )*$stride + $offset)))
4153                                 ll_sparseness_write $myfn $size ||
4154                                         error "ll_sparseness_write"
4155                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
4156                         done
4157                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
4158                                 error "ll_sparseness_verify $GLOBALOFFSETS"
4159                         rm -f $myfn
4160                 done
4161         done
4162 }
4163 run_test 44a "test sparse pwrite ==============================="
4164
4165 dirty_osc_total() {
4166         tot=0
4167         for d in `lctl get_param -n ${OSC}.*.cur_dirty_bytes`; do
4168                 tot=$(($tot + $d))
4169         done
4170         echo $tot
4171 }
4172 do_dirty_record() {
4173         before=`dirty_osc_total`
4174         echo executing "\"$*\""
4175         eval $*
4176         after=`dirty_osc_total`
4177         echo before $before, after $after
4178 }
4179 test_45() {
4180         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4181
4182         f="$DIR/f45"
4183         # Obtain grants from OST if it supports it
4184         echo blah > ${f}_grant
4185         stop_writeback
4186         sync
4187         do_dirty_record "echo blah > $f"
4188         [[ $before -eq $after ]] && error "write wasn't cached"
4189         do_dirty_record "> $f"
4190         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
4191         do_dirty_record "echo blah > $f"
4192         [[ $before -eq $after ]] && error "write wasn't cached"
4193         do_dirty_record "sync"
4194         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
4195         do_dirty_record "echo blah > $f"
4196         [[ $before -eq $after ]] && error "write wasn't cached"
4197         do_dirty_record "cancel_lru_locks osc"
4198         [[ $before -gt $after ]] ||
4199                 error "lock cancellation didn't lower dirty count"
4200         start_writeback
4201 }
4202 run_test 45 "osc io page accounting ============================"
4203
4204 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
4205 # test tickles a bug where re-dirtying a page was failing to be mapped to the
4206 # objects offset and an assert hit when an rpc was built with 1023's mapped
4207 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
4208 test_46() {
4209         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4210
4211         f="$DIR/f46"
4212         stop_writeback
4213         sync
4214         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
4215         sync
4216         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
4217         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
4218         sync
4219         start_writeback
4220 }
4221 run_test 46 "dirtying a previously written page ================"
4222
4223 # test_47 is removed "Device nodes check" is moved to test_28
4224
4225 test_48a() { # bug 2399
4226         [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
4227         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.63) ] &&
4228                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly"
4229
4230         test_mkdir $DIR/$tdir
4231         cd $DIR/$tdir
4232         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
4233         test_mkdir $DIR/$tdir
4234         touch foo || error "'touch foo' failed after recreating cwd"
4235         test_mkdir bar
4236         touch .foo || error "'touch .foo' failed after recreating cwd"
4237         test_mkdir .bar
4238         ls . > /dev/null || error "'ls .' failed after recreating cwd"
4239         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4240         cd . || error "'cd .' failed after recreating cwd"
4241         mkdir . && error "'mkdir .' worked after recreating cwd"
4242         rmdir . && error "'rmdir .' worked after recreating cwd"
4243         ln -s . baz || error "'ln -s .' failed after recreating cwd"
4244         cd .. || error "'cd ..' failed after recreating cwd"
4245 }
4246 run_test 48a "Access renamed working dir (should return errors)="
4247
4248 test_48b() { # bug 2399
4249         rm -rf $DIR/$tdir
4250         test_mkdir $DIR/$tdir
4251         cd $DIR/$tdir
4252         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
4253         touch foo && error "'touch foo' worked after removing cwd"
4254         mkdir foo && error "'mkdir foo' worked after removing cwd"
4255         touch .foo && error "'touch .foo' worked after removing cwd"
4256         mkdir .foo && error "'mkdir .foo' worked after removing cwd"
4257         ls . > /dev/null && error "'ls .' worked after removing cwd"
4258         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4259         mkdir . && error "'mkdir .' worked after removing cwd"
4260         rmdir . && error "'rmdir .' worked after removing cwd"
4261         ln -s . foo && error "'ln -s .' worked after removing cwd"
4262         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
4263 }
4264 run_test 48b "Access removed working dir (should return errors)="
4265
4266 test_48c() { # bug 2350
4267         #lctl set_param debug=-1
4268         #set -vx
4269         rm -rf $DIR/$tdir
4270         test_mkdir -p $DIR/$tdir/dir
4271         cd $DIR/$tdir/dir
4272         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4273         $TRACE touch foo && error "touch foo worked after removing cwd"
4274         $TRACE mkdir foo && error "'mkdir foo' worked after removing cwd"
4275         touch .foo && error "touch .foo worked after removing cwd"
4276         mkdir .foo && error "mkdir .foo worked after removing cwd"
4277         $TRACE ls . && error "'ls .' worked after removing cwd"
4278         $TRACE ls .. || error "'ls ..' failed after removing cwd"
4279         $TRACE mkdir . && error "'mkdir .' worked after removing cwd"
4280         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
4281         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
4282         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
4283 }
4284 run_test 48c "Access removed working subdir (should return errors)"
4285
4286 test_48d() { # bug 2350
4287         #lctl set_param debug=-1
4288         #set -vx
4289         rm -rf $DIR/$tdir
4290         test_mkdir -p $DIR/$tdir/dir
4291         cd $DIR/$tdir/dir
4292         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4293         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4294         $TRACE touch foo && error "'touch foo' worked after removing parent"
4295         $TRACE mkdir foo && error "mkdir foo worked after removing parent"
4296         touch .foo && error "'touch .foo' worked after removing parent"
4297         mkdir .foo && error "mkdir .foo worked after removing parent"
4298         $TRACE ls . && error "'ls .' worked after removing parent"
4299         $TRACE ls .. && error "'ls ..' worked after removing parent"
4300         $TRACE mkdir . && error "'mkdir .' worked after removing parent"
4301         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
4302         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
4303         true
4304 }
4305 run_test 48d "Access removed parent subdir (should return errors)"
4306
4307 test_48e() { # bug 4134
4308         #lctl set_param debug=-1
4309         #set -vx
4310         rm -rf $DIR/$tdir
4311         test_mkdir -p $DIR/$tdir/dir
4312         cd $DIR/$tdir/dir
4313         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4314         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4315         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
4316         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
4317         # On a buggy kernel addition of "touch foo" after cd .. will
4318         # produce kernel oops in lookup_hash_it
4319         touch ../foo && error "'cd ..' worked after recreate parent"
4320         cd $DIR
4321         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
4322 }
4323 run_test 48e "Access to recreated parent subdir (should return errors)"
4324
4325 test_49() { # LU-1030
4326         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4327         remote_ost_nodsh && skip "remote OST with nodsh"
4328
4329         # get ost1 size - lustre-OST0000
4330         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
4331                 awk '{ print $4 }')
4332         # write 800M at maximum
4333         [[ $ost1_size -lt 2 ]] && ost1_size=2
4334         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
4335
4336         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
4337         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
4338         local dd_pid=$!
4339
4340         # change max_pages_per_rpc while writing the file
4341         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
4342         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
4343         # loop until dd process exits
4344         while ps ax -opid | grep -wq $dd_pid; do
4345                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
4346                 sleep $((RANDOM % 5 + 1))
4347         done
4348         # restore original max_pages_per_rpc
4349         $LCTL set_param $osc1_mppc=$orig_mppc
4350         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
4351 }
4352 run_test 49 "Change max_pages_per_rpc won't break osc extent"
4353
4354 test_50() {
4355         # bug 1485
4356         test_mkdir $DIR/$tdir
4357         cd $DIR/$tdir
4358         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
4359 }
4360 run_test 50 "special situations: /proc symlinks  ==============="
4361
4362 test_51a() {    # was test_51
4363         # bug 1516 - create an empty entry right after ".." then split dir
4364         test_mkdir -c1 $DIR/$tdir
4365         touch $DIR/$tdir/foo
4366         $MCREATE $DIR/$tdir/bar
4367         rm $DIR/$tdir/foo
4368         createmany -m $DIR/$tdir/longfile 201
4369         FNUM=202
4370         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
4371                 $MCREATE $DIR/$tdir/longfile$FNUM
4372                 FNUM=$(($FNUM + 1))
4373                 echo -n "+"
4374         done
4375         echo
4376         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
4377 }
4378 run_test 51a "special situations: split htree with empty entry =="
4379
4380 cleanup_print_lfs_df () {
4381         trap 0
4382         $LFS df
4383         $LFS df -i
4384 }
4385
4386 test_51b() {
4387         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4388
4389         local dir=$DIR/$tdir
4390         local nrdirs=$((65536 + 100))
4391
4392         # cleanup the directory
4393         rm -fr $dir
4394
4395         test_mkdir -c1 $dir
4396
4397         $LFS df
4398         $LFS df -i
4399         local mdtidx=$(printf "%04x" $($LFS getstripe -m $dir))
4400         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
4401         [[ $numfree -lt $nrdirs ]] &&
4402                 skip "not enough free inodes ($numfree) on MDT$mdtidx"
4403
4404         # need to check free space for the directories as well
4405         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
4406         numfree=$(( blkfree / $(fs_inode_ksize) ))
4407         [[ $numfree -lt $nrdirs ]] && skip "not enough blocks ($numfree)"
4408
4409         trap cleanup_print_lfs_df EXIT
4410
4411         # create files
4412         createmany -d $dir/d $nrdirs || {
4413                 unlinkmany $dir/d $nrdirs
4414                 error "failed to create $nrdirs subdirs in MDT$mdtidx:$dir"
4415         }
4416
4417         # really created :
4418         nrdirs=$(ls -U $dir | wc -l)
4419
4420         # unlink all but 100 subdirectories, then check it still works
4421         local left=100
4422         local delete=$((nrdirs - left))
4423
4424         $LFS df
4425         $LFS df -i
4426
4427         # for ldiskfs the nlink count should be 1, but this is OSD specific
4428         # and so this is listed for informational purposes only
4429         echo "nlink before: $(stat -c %h $dir), created before: $nrdirs"
4430         unlinkmany -d $dir/d $delete ||
4431                 error "unlink of first $delete subdirs failed"
4432
4433         echo "nlink between: $(stat -c %h $dir)"
4434         local found=$(ls -U $dir | wc -l)
4435         [ $found -ne $left ] &&
4436                 error "can't find subdirs: found only $found, expected $left"
4437
4438         unlinkmany -d $dir/d $delete $left ||
4439                 error "unlink of second $left subdirs failed"
4440         # regardless of whether the backing filesystem tracks nlink accurately
4441         # or not, the nlink count shouldn't be more than "." and ".." here
4442         local after=$(stat -c %h $dir)
4443         [[ $after -gt 2 ]] && error "nlink after: $after > 2" ||
4444                 echo "nlink after: $after"
4445
4446         cleanup_print_lfs_df
4447 }
4448 run_test 51b "exceed 64k subdirectory nlink limit on create, verify unlink"
4449
4450 test_51d() {
4451         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4452         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
4453
4454         test_mkdir $DIR/$tdir
4455         createmany -o $DIR/$tdir/t- 1000
4456         $LFS getstripe $DIR/$tdir > $TMP/$tfile
4457         for N in $(seq 0 $((OSTCOUNT - 1))); do
4458                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4459                         END { printf("%0.0f", objs) }' $TMP/$tfile)
4460                 OBJS0[$N]=$(grep -A 1 idx $TMP/$tfile | awk -vobjs=0 \
4461                         '($1 == '$N') { objs += 1 } \
4462                         END { printf("%0.0f", objs) }')
4463                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4464         done
4465         unlinkmany $DIR/$tdir/t- 1000
4466
4467         NLAST=0
4468         for N in $(seq 1 $((OSTCOUNT - 1))); do
4469                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4470                         error "OST $N has less objects vs OST $NLAST" \
4471                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4472                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4473                         error "OST $N has less objects vs OST $NLAST" \
4474                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4475
4476                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4477                         error "OST $N has less #0 objects vs OST $NLAST" \
4478                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4479                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4480                         error "OST $N has less #0 objects vs OST $NLAST" \
4481                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4482                 NLAST=$N
4483         done
4484         rm -f $TMP/$tfile
4485 }
4486 run_test 51d "check object distribution"
4487
4488 test_51e() {
4489         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4490                 skip_env "ldiskfs only test"
4491         fi
4492
4493         test_mkdir -c1 $DIR/$tdir
4494         test_mkdir -c1 $DIR/$tdir/d0
4495
4496         touch $DIR/$tdir/d0/foo
4497         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4498                 error "file exceed 65000 nlink limit!"
4499         unlinkmany $DIR/$tdir/d0/f- 65001
4500         return 0
4501 }
4502 run_test 51e "check file nlink limit"
4503
4504 test_51f() {
4505         test_mkdir $DIR/$tdir
4506
4507         local max=100000
4508         local ulimit_old=$(ulimit -n)
4509         local spare=20 # number of spare fd's for scripts/libraries, etc.
4510         local mdt=$($LFS getstripe -m $DIR/$tdir)
4511         local numfree=$($LFS df -i $DIR/$tdir | awk '/MDT:'$mdt'/ { print $4 }')
4512
4513         echo "MDT$mdt numfree=$numfree, max=$max"
4514         [[ $numfree -gt $max ]] && numfree=$max || numfree=$((numfree * 7 / 8))
4515         if [ $((numfree + spare)) -gt $ulimit_old ]; then
4516                 while ! ulimit -n $((numfree + spare)); do
4517                         numfree=$((numfree * 3 / 4))
4518                 done
4519                 echo "changed ulimit from $ulimit_old to $((numfree + spare))"
4520         else
4521                 echo "left ulimit at $ulimit_old"
4522         fi
4523
4524         createmany -o -k -t 120 $DIR/$tdir/f $numfree || {
4525                 unlinkmany $DIR/$tdir/f $numfree
4526                 error "create+open $numfree files in $DIR/$tdir failed"
4527         }
4528         ulimit -n $ulimit_old
4529
4530         # if createmany exits at 120s there will be fewer than $numfree files
4531         unlinkmany $DIR/$tdir/f $numfree || true
4532 }
4533 run_test 51f "check many open files limit"
4534
4535 test_52a() {
4536         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4537         test_mkdir $DIR/$tdir
4538         touch $DIR/$tdir/foo
4539         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4540         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4541         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4542         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4543         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4544                                         error "link worked"
4545         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4546         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4547         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4548                                                      error "lsattr"
4549         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4550         cp -r $DIR/$tdir $TMP/
4551         rm -fr $DIR/$tdir $TMP/$tdir || error "cleanup rm failed"
4552 }
4553 run_test 52a "append-only flag test (should return errors)"
4554
4555 test_52b() {
4556         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4557         test_mkdir $DIR/$tdir
4558         touch $DIR/$tdir/foo
4559         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4560         cat test > $DIR/$tdir/foo && error "cat test worked"
4561         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4562         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4563         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4564                                         error "link worked"
4565         echo foo >> $DIR/$tdir/foo && error "echo worked"
4566         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4567         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4568         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4569         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4570                                                         error "lsattr"
4571         chattr -i $DIR/$tdir/foo || error "chattr failed"
4572
4573         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4574 }
4575 run_test 52b "immutable flag test (should return errors) ======="
4576
4577 test_53() {
4578         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4579         remote_mds_nodsh && skip "remote MDS with nodsh"
4580         remote_ost_nodsh && skip "remote OST with nodsh"
4581
4582         local param
4583         local param_seq
4584         local ostname
4585         local mds_last
4586         local mds_last_seq
4587         local ost_last
4588         local ost_last_seq
4589         local ost_last_id
4590         local ostnum
4591         local node
4592         local found=false
4593         local support_last_seq=true
4594
4595         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
4596                 support_last_seq=false
4597
4598         # only test MDT0000
4599         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4600         local value
4601         for value in $(do_facet $SINGLEMDS \
4602                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4603                 param=$(echo ${value[0]} | cut -d "=" -f1)
4604                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4605
4606                 if $support_last_seq; then
4607                         param_seq=$(echo $param |
4608                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4609                         mds_last_seq=$(do_facet $SINGLEMDS \
4610                                        $LCTL get_param -n $param_seq)
4611                 fi
4612                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4613
4614                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4615                 node=$(facet_active_host ost$((ostnum+1)))
4616                 param="obdfilter.$ostname.last_id"
4617                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4618                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4619                         ost_last_id=$ost_last
4620
4621                         if $support_last_seq; then
4622                                 ost_last_id=$(echo $ost_last |
4623                                               awk -F':' '{print $2}' |
4624                                               sed -e "s/^0x//g")
4625                                 ost_last_seq=$(echo $ost_last |
4626                                                awk -F':' '{print $1}')
4627                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4628                         fi
4629
4630                         if [[ $ost_last_id != $mds_last ]]; then
4631                                 error "$ost_last_id != $mds_last"
4632                         else
4633                                 found=true
4634                                 break
4635                         fi
4636                 done
4637         done
4638         $found || error "can not match last_seq/last_id for $mdtosc"
4639         return 0
4640 }
4641 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4642
4643 test_54a() {
4644         perl -MSocket -e ';' || skip "no Socket perl module installed"
4645
4646         $SOCKETSERVER $DIR/socket ||
4647                 error "$SOCKETSERVER $DIR/socket failed: $?"
4648         $SOCKETCLIENT $DIR/socket ||
4649                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4650         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4651 }
4652 run_test 54a "unix domain socket test =========================="
4653
4654 test_54b() {
4655         f="$DIR/f54b"
4656         mknod $f c 1 3
4657         chmod 0666 $f
4658         dd if=/dev/zero of=$f bs=$(page_size) count=1
4659 }
4660 run_test 54b "char device works in lustre ======================"
4661
4662 find_loop_dev() {
4663         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4664         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4665         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4666
4667         for i in $(seq 3 7); do
4668                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4669                 LOOPDEV=$LOOPBASE$i
4670                 LOOPNUM=$i
4671                 break
4672         done
4673 }
4674
4675 cleanup_54c() {
4676         local rc=0
4677         loopdev="$DIR/loop54c"
4678
4679         trap 0
4680         $UMOUNT $DIR/$tdir || rc=$?
4681         losetup -d $loopdev || true
4682         losetup -d $LOOPDEV || true
4683         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4684         return $rc
4685 }
4686
4687 test_54c() {
4688         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4689
4690         loopdev="$DIR/loop54c"
4691
4692         find_loop_dev
4693         [ -z "$LOOPNUM" ] && skip_env "couldn't find empty loop device"
4694         trap cleanup_54c EXIT
4695         mknod $loopdev b 7 $LOOPNUM
4696         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4697         dd if=/dev/zero of=$DIR/$tfile bs=$(get_page_size client) seek=1024 count=1 > /dev/null
4698         losetup $loopdev $DIR/$tfile ||
4699                 error "can't set up $loopdev for $DIR/$tfile"
4700         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4701         test_mkdir $DIR/$tdir
4702         mount -t ext2 $loopdev $DIR/$tdir ||
4703                 error "error mounting $loopdev on $DIR/$tdir"
4704         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$(get_page_size client) count=30 ||
4705                 error "dd write"
4706         df $DIR/$tdir
4707         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$(get_page_size client) count=30 ||
4708                 error "dd read"
4709         cleanup_54c
4710 }
4711 run_test 54c "block device works in lustre ====================="
4712
4713 test_54d() {
4714         f="$DIR/f54d"
4715         string="aaaaaa"
4716         mknod $f p
4717         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4718 }
4719 run_test 54d "fifo device works in lustre ======================"
4720
4721 test_54e() {
4722         f="$DIR/f54e"
4723         string="aaaaaa"
4724         cp -aL /dev/console $f
4725         echo $string > $f || error "echo $string to $f failed"
4726 }
4727 run_test 54e "console/tty device works in lustre ======================"
4728
4729 test_56a() {
4730         local numfiles=3
4731         local dir=$DIR/$tdir
4732
4733         rm -rf $dir
4734         test_mkdir -p $dir/dir
4735         for i in $(seq $numfiles); do
4736                 touch $dir/file$i
4737                 touch $dir/dir/file$i
4738         done
4739
4740         local numcomp=$($LFS getstripe --component-count $dir)
4741
4742         [[ $numcomp == 0 ]] && numcomp=1
4743
4744         # test lfs getstripe with --recursive
4745         local filenum=$($LFS getstripe -r $dir | egrep -c "obdidx|l_ost_idx")
4746
4747         [[ $filenum -eq $((numfiles * 2)) ]] ||
4748                 error "$LFS getstripe -r: found $filenum != $((numfiles * 2))"
4749         filenum=$($LFS getstripe $dir | egrep -c "obdidx|l_ost_idx")
4750         [[ $filenum -eq $numfiles ]] ||
4751                 error "$LFS getstripe $dir: found $filenum, not $numfiles"
4752         echo "$LFS getstripe showed obdidx or l_ost_idx"
4753
4754         # test lfs getstripe with file instead of dir
4755         filenum=$($LFS getstripe $dir/file1 | egrep -c "obdidx|l_ost_idx")
4756         [[ $filenum -eq 1 ]] ||
4757                 error "$LFS getstripe $dir/file1: found $filenum, not 1"
4758         echo "$LFS getstripe file1 passed"
4759
4760         #test lfs getstripe with --verbose
4761         filenum=$($LFS getstripe --verbose $dir | grep -c lmm_magic)
4762         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
4763                 error "$LFS getstripe --verbose $dir: "\
4764                       "got $filenum want $((numfiles * numcomp)) lmm_magic"
4765         [[ $($LFS getstripe $dir | grep -c lmm_magic) -eq 0 ]] ||
4766                 error "$LFS getstripe $dir: showed lmm_magic"
4767
4768         #test lfs getstripe with -v prints lmm_fid
4769         filenum=$($LFS getstripe -v $dir | grep -c lmm_fid)
4770         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
4771                 error "$LFS getstripe -v $dir: "\
4772                       "got $filenum want $((numfiles * numcomp)) lmm_fid"
4773         [[ $($LFS getstripe $dir | grep -c lmm_fid) -eq 0 ]] ||
4774                 error "$LFS getstripe $dir: showed lmm_fid by default"
4775         echo "$LFS getstripe --verbose passed"
4776
4777         #check for FID information
4778         local fid1=$($LFS getstripe --fid $dir/file1)
4779         local fid2=$($LFS getstripe --verbose $dir/file1 |
4780                      awk '/lmm_fid: / { print $2; exit; }')
4781         local fid3=$($LFS path2fid $dir/file1)
4782
4783         [ "$fid1" != "$fid2" ] &&
4784                 error "getstripe --fid '$fid1' != getstripe --verbose '$fid2'"
4785         [ "$fid1" != "$fid3" ] &&
4786                 error "getstripe --fid '$fid1' != lfs path2fid '$fid3'"
4787         echo "$LFS getstripe --fid passed"
4788
4789         #test lfs getstripe with --obd
4790         $LFS getstripe --obd wrong_uuid $dir 2>&1 | grep -q "unknown obduuid" ||
4791                 error "$LFS getstripe --obd wrong_uuid: should return error"
4792
4793         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
4794
4795         local ostidx=1
4796         local obduuid=$(ostuuid_from_index $ostidx)
4797         local found=$($LFS getstripe -r --obd $obduuid $dir |
4798                 grep 'lmm_stripe_offset:' | grep -c " $ostidx\$")
4799
4800         filenum=$($LFS getstripe -ir $dir | grep -c "^$ostidx\$")
4801         [[ $($LFS getstripe -id $dir) -ne $ostidx ]] ||
4802                 ((filenum--))
4803         [[ $($LFS getstripe -id $dir/dir) -ne $ostidx ]] ||
4804                 ((filenum--))
4805
4806         [[ $found -eq $filenum ]] ||
4807                 error "$LFS getstripe --obd: found $found expect $filenum"
4808         [[ $($LFS getstripe -r -v --obd $obduuid $dir |
4809                 sed '/^[         ]*'${ostidx}'[  ]/d' |
4810                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4811                 error "$LFS getstripe --obd: should not show file on other obd"
4812         echo "$LFS getstripe --obd passed"
4813 }
4814 run_test 56a "check $LFS getstripe"
4815
4816 test_56b() {
4817         local dir=$DIR/$tdir
4818         local numdirs=3
4819
4820         test_mkdir $dir
4821         for i in $(seq $numdirs); do
4822                 test_mkdir $dir/dir$i
4823         done
4824
4825         # test lfs getdirstripe default mode is non-recursion, which is
4826         # different from lfs getstripe
4827         local dircnt=$($LFS getdirstripe $dir | grep -c lmv_stripe_count)
4828
4829         [[ $dircnt -eq 1 ]] ||
4830                 error "$LFS getdirstripe: found $dircnt, not 1"
4831         dircnt=$($LFS getdirstripe --recursive $dir |
4832                 grep -c lmv_stripe_count)
4833         [[ $dircnt -eq $((numdirs + 1)) ]] ||
4834                 error "$LFS getdirstripe -r: $dircnt, != $((numdirs + 1))"
4835 }
4836 run_test 56b "check $LFS getdirstripe"
4837
4838 test_56c() {
4839         remote_ost_nodsh && skip "remote OST with nodsh"
4840
4841         local ost_idx=0
4842         local ost_name=$(ostname_from_index $ost_idx)
4843         local old_status=$(ost_dev_status $ost_idx)
4844
4845         [[ -z "$old_status" ]] ||
4846                 skip_env "OST $ost_name is in $old_status status"
4847
4848         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=1
4849         sleep_maxage
4850
4851         local new_status=$(ost_dev_status $ost_idx)
4852
4853         [[ "$new_status" = "D" ]] ||
4854                 error "OST $ost_name is in status of '$new_status', not 'D'"
4855
4856         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=0
4857         sleep_maxage
4858
4859         new_status=$(ost_dev_status $ost_idx)
4860         [[ -z "$new_status" ]] ||
4861                 error "OST $ost_name is in status of '$new_status', not ''"
4862 }
4863 run_test 56c "check 'lfs df' showing device status"
4864
4865 NUMFILES=3
4866 NUMDIRS=3
4867 setup_56() {
4868         local local_tdir="$1"
4869         local local_numfiles="$2"
4870         local local_numdirs="$3"
4871         local dir_params="$4"
4872         local dir_stripe_params="$5"
4873
4874         if [ ! -d "$local_tdir" ] ; then
4875                 test_mkdir -p $dir_stripe_params $local_tdir
4876                 [ "$dir_params" ] && $LFS setstripe $dir_params $local_tdir
4877                 for i in $(seq $local_numfiles) ; do
4878                         touch $local_tdir/file$i
4879                 done
4880                 for i in $(seq $local_numdirs) ; do
4881                         test_mkdir $dir_stripe_params $local_tdir/dir$i
4882                         for j in $(seq $local_numfiles) ; do
4883                                 touch $local_tdir/dir$i/file$j
4884                         done
4885                 done
4886         fi
4887 }
4888
4889 setup_56_special() {
4890         local local_tdir=$1
4891         local local_numfiles=$2
4892         local local_numdirs=$3
4893
4894         setup_56 $local_tdir $local_numfiles $local_numdirs
4895
4896         if [ ! -e "$local_tdir/loop${local_numfiles}b" ] ; then
4897                 for i in $(seq $local_numfiles) ; do
4898                         mknod $local_tdir/loop${i}b b 7 $i
4899                         mknod $local_tdir/null${i}c c 1 3
4900                         ln -s $local_tdir/file1 $local_tdir/link${i}
4901                 done
4902                 for i in $(seq $local_numdirs) ; do
4903                         mknod $local_tdir/dir$i/loop${i}b b 7 $i
4904                         mknod $local_tdir/dir$i/null${i}c c 1 3
4905                         ln -s $local_tdir/dir$i/file1 $local_tdir/dir$i/link${i}
4906                 done
4907         fi
4908 }
4909
4910 test_56g() {
4911         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4912         local expected=$(($NUMDIRS + 2))
4913
4914         setup_56 $dir $NUMFILES $NUMDIRS
4915
4916         # test lfs find with -name
4917         for i in $(seq $NUMFILES) ; do
4918                 local nums=$($LFS find -name "*$i" $dir | wc -l)
4919
4920                 [ $nums -eq $expected ] ||
4921                         error "lfs find -name '*$i' $dir wrong: "\
4922                               "found $nums, expected $expected"
4923         done
4924 }
4925 run_test 56g "check lfs find -name"
4926
4927 test_56h() {
4928         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4929         local expected=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4930
4931         setup_56 $dir $NUMFILES $NUMDIRS
4932
4933         # test lfs find with ! -name
4934         for i in $(seq $NUMFILES) ; do
4935                 local nums=$($LFS find ! -name "*$i" $dir | wc -l)
4936
4937                 [ $nums -eq $expected ] ||
4938                         error "lfs find ! -name '*$i' $dir wrong: "\
4939                               "found $nums, expected $expected"
4940         done
4941 }
4942 run_test 56h "check lfs find ! -name"
4943
4944 test_56i() {
4945         local dir=$DIR/$tdir
4946
4947         test_mkdir $dir
4948
4949         local cmd="$LFS find -ost $(ostuuid_from_index 0 $dir) $dir"
4950         local out=$($cmd)
4951
4952         [ -z "$out" ] || error "'$cmd' returned directory '$out'"
4953 }
4954 run_test 56i "check 'lfs find -ost UUID' skips directories"
4955
4956 test_56j() {
4957         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4958
4959         setup_56_special $dir $NUMFILES $NUMDIRS
4960
4961         local expected=$((NUMDIRS + 1))
4962         local cmd="$LFS find -type d $dir"
4963         local nums=$($cmd | wc -l)
4964
4965         [ $nums -eq $expected ] ||
4966                 error "'$cmd' wrong: found $nums, expected $expected"
4967 }
4968 run_test 56j "check lfs find -type d"
4969
4970 test_56k() {
4971         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4972
4973         setup_56_special $dir $NUMFILES $NUMDIRS
4974
4975         local expected=$(((NUMDIRS + 1) * NUMFILES))
4976         local cmd="$LFS find -type f $dir"
4977         local nums=$($cmd | wc -l)
4978
4979         [ $nums -eq $expected ] ||
4980                 error "'$cmd' wrong: found $nums, expected $expected"
4981 }
4982 run_test 56k "check lfs find -type f"
4983
4984 test_56l() {
4985         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4986
4987         setup_56_special $dir $NUMFILES $NUMDIRS
4988
4989         local expected=$((NUMDIRS + NUMFILES))
4990         local cmd="$LFS find -type b $dir"
4991         local nums=$($cmd | wc -l)
4992
4993         [ $nums -eq $expected ] ||
4994                 error "'$cmd' wrong: found $nums, expected $expected"
4995 }
4996 run_test 56l "check lfs find -type b"
4997
4998 test_56m() {
4999         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5000
5001         setup_56_special $dir $NUMFILES $NUMDIRS
5002
5003         local expected=$((NUMDIRS + NUMFILES))
5004         local cmd="$LFS find -type c $dir"
5005         local nums=$($cmd | wc -l)
5006         [ $nums -eq $expected ] ||
5007                 error "'$cmd' wrong: found $nums, expected $expected"
5008 }
5009 run_test 56m "check lfs find -type c"
5010
5011 test_56n() {
5012         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5013         setup_56_special $dir $NUMFILES $NUMDIRS
5014
5015         local expected=$((NUMDIRS + NUMFILES))
5016         local cmd="$LFS find -type l $dir"
5017         local nums=$($cmd | wc -l)
5018
5019         [ $nums -eq $expected ] ||
5020                 error "'$cmd' wrong: found $nums, expected $expected"
5021 }
5022 run_test 56n "check lfs find -type l"
5023
5024 test_56o() {
5025         local dir=$DIR/$tdir
5026
5027         setup_56 $dir $NUMFILES $NUMDIRS
5028         utime $dir/file1 > /dev/null || error "utime (1)"
5029         utime $dir/file2 > /dev/null || error "utime (2)"
5030         utime $dir/dir1 > /dev/null || error "utime (3)"
5031         utime $dir/dir2 > /dev/null || error "utime (4)"
5032         utime $dir/dir1/file1 > /dev/null || error "utime (5)"
5033         dd if=/dev/zero count=1 >> $dir/dir1/file1 && sync
5034
5035         local expected=4
5036         local nums=$($LFS find -mtime +0 $dir | wc -l)
5037
5038         [ $nums -eq $expected ] ||
5039                 error "lfs find -mtime +0 $dir: found $nums expect $expected"
5040
5041         expected=12
5042         cmd="$LFS find -mtime 0 $dir"
5043         nums=$($cmd | wc -l)
5044         [ $nums -eq $expected ] ||
5045                 error "'$cmd' wrong: found $nums, expected $expected"
5046 }
5047 run_test 56o "check lfs find -mtime for old files"
5048
5049 test_56p() {
5050         [ $RUNAS_ID -eq $UID ] &&
5051                 skip_env "RUNAS_ID = UID = $UID -- skipping"
5052
5053         local dir=$DIR/$tdir
5054
5055         setup_56 $dir $NUMFILES $NUMDIRS
5056         chown $RUNAS_ID $dir/file* || error "chown $DIR/${tdir}g/file$i failed"
5057
5058         local expected=$NUMFILES
5059         local cmd="$LFS find -uid $RUNAS_ID $dir"
5060         local nums=$($cmd | wc -l)
5061
5062         [ $nums -eq $expected ] ||
5063                 error "'$cmd' wrong: found $nums, expected $expected"
5064
5065         expected=$(((NUMFILES + 1) * NUMDIRS + 1))
5066         cmd="$LFS find ! -uid $RUNAS_ID $dir"
5067         nums=$($cmd | wc -l)
5068         [ $nums -eq $expected ] ||
5069                 error "'$cmd' wrong: found $nums, expected $expected"
5070 }
5071 run_test 56p "check lfs find -uid and ! -uid"
5072
5073 test_56q() {
5074         [ $RUNAS_ID -eq $UID ] &&
5075                 skip_env "RUNAS_ID = UID = $UID -- skipping"
5076
5077         local dir=$DIR/$tdir
5078
5079         setup_56 $dir $NUMFILES $NUMDIRS
5080         chgrp $RUNAS_GID $dir/file* || error "chown $dir/file$i failed"
5081
5082         local expected=$NUMFILES
5083         local cmd="$LFS find -gid $RUNAS_GID $dir"
5084         local nums=$($cmd | wc -l)
5085
5086         [ $nums -eq $expected ] ||
5087                 error "'$cmd' wrong: found $nums, expected $expected"
5088
5089         expected=$(( ($NUMFILES+1) * $NUMDIRS + 1))
5090         cmd="$LFS find ! -gid $RUNAS_GID $dir"
5091         nums=$($cmd | wc -l)
5092         [ $nums -eq $expected ] ||
5093                 error "'$cmd' wrong: found $nums, expected $expected"
5094 }
5095 run_test 56q "check lfs find -gid and ! -gid"
5096
5097 test_56r() {
5098         local dir=$DIR/$tdir
5099
5100         setup_56 $dir $NUMFILES $NUMDIRS
5101
5102         local expected=12
5103         local cmd="$LFS find -size 0 -type f $dir"
5104         local nums=$($cmd | wc -l)
5105
5106         [ $nums -eq $expected ] ||
5107                 error "'$cmd' wrong: found $nums, expected $expected"
5108         expected=0
5109         cmd="$LFS find ! -size 0 -type f $dir"
5110         nums=$($cmd | wc -l)
5111         [ $nums -eq $expected ] ||
5112                 error "'$cmd' wrong: found $nums, expected $expected"
5113         echo "test" > $dir/$tfile
5114         echo "test2" > $dir/$tfile.2 && sync
5115         expected=1
5116         cmd="$LFS find -size 5 -type f $dir"
5117         nums=$($cmd | wc -l)
5118         [ $nums -eq $expected ] ||
5119                 error "'$cmd' wrong: found $nums, expected $expected"
5120         expected=1
5121         cmd="$LFS find -size +5 -type f $dir"
5122         nums=$($cmd | wc -l)
5123         [ $nums -eq $expected ] ||
5124                 error "'$cmd' wrong: found $nums, expected $expected"
5125         expected=2
5126         cmd="$LFS find -size +0 -type f $dir"
5127         nums=$($cmd | wc -l)
5128         [ $nums -eq $expected ] ||
5129                 error "'$cmd' wrong: found $nums, expected $expected"
5130         expected=2
5131         cmd="$LFS find ! -size -5 -type f $dir"
5132         nums=$($cmd | wc -l)
5133         [ $nums -eq $expected ] ||
5134                 error "'$cmd' wrong: found $nums, expected $expected"
5135         expected=12
5136         cmd="$LFS find -size -5 -type f $dir"
5137         nums=$($cmd | wc -l)
5138         [ $nums -eq $expected ] ||
5139                 error "'$cmd' wrong: found $nums, expected $expected"
5140 }
5141 run_test 56r "check lfs find -size works"
5142
5143 test_56s() { # LU-611 #LU-9369
5144         [[ $OSTCOUNT -lt 2 ]] && skip_env "need at least 2 OSTs"
5145
5146         local dir=$DIR/$tdir
5147         local onestripe=$(((NUMDIRS + 1) * NUMFILES))
5148
5149         setup_56 $dir $NUMFILES $NUMDIRS "-c 1"
5150         for i in $(seq $NUMDIRS); do
5151                 $LFS setstripe -c $((OSTCOUNT + 1)) $dir/dir$i/$tfile
5152         done
5153
5154         local expected=$NUMDIRS
5155         local cmd="$LFS find -c $OSTCOUNT $dir"
5156         local nums=$($cmd | wc -l)
5157
5158         [ $nums -eq $expected ] || {
5159                 $LFS getstripe -R $dir
5160                 error "'$cmd' wrong: found $nums, expected $expected"
5161         }
5162
5163         expected=$((NUMDIRS + onestripe))
5164         cmd="$LFS find -stripe-count +0 -type f $dir"
5165         nums=$($cmd | wc -l)
5166         [ $nums -eq $expected ] || {
5167                 $LFS getstripe -R $dir
5168                 error "'$cmd' wrong: found $nums, expected $expected"
5169         }
5170
5171         expected=$onestripe
5172         cmd="$LFS find -stripe-count 1 -type f $dir"
5173         nums=$($cmd | wc -l)
5174         [ $nums -eq $expected ] || {
5175                 $LFS getstripe -R $dir
5176                 error "'$cmd' wrong: found $nums, expected $expected"
5177         }
5178
5179         cmd="$LFS find -stripe-count -2 -type f $dir"
5180         nums=$($cmd | wc -l)
5181         [ $nums -eq $expected ] || {
5182                 $LFS getstripe -R $dir
5183                 error "'$cmd' wrong: found $nums, expected $expected"
5184         }
5185
5186         expected=0
5187         cmd="$LFS find -stripe-count $((OSTCOUNT + 1)) -type f $dir"
5188         nums=$($cmd | wc -l)
5189         [ $nums -eq $expected ] || {
5190                 $LFS getstripe -R $dir
5191                 error "'$cmd' wrong: found $nums, expected $expected"
5192         }
5193 }
5194 run_test 56s "check lfs find -stripe-count works"
5195
5196 test_56t() { # LU-611 #LU-9369
5197         local dir=$DIR/$tdir
5198
5199         setup_56 $dir 0 $NUMDIRS
5200         for i in $(seq $NUMDIRS); do
5201                 $LFS setstripe -S 8M $dir/dir$i/$tfile
5202         done
5203
5204         local expected=$NUMDIRS
5205         local cmd="$LFS find -S 8M $dir"
5206         local nums=$($cmd | wc -l)
5207
5208         [ $nums -eq $expected ] || {
5209                 $LFS getstripe -R $dir
5210                 error "'$cmd' wrong: found $nums, expected $expected"
5211         }
5212         rm -rf $dir
5213
5214         setup_56 $dir $NUMFILES $NUMDIRS "--stripe-size 512k"
5215
5216         $LFS setstripe -S 256k $dir/$tfile.{0,1,2,3}
5217
5218         expected=$(((NUMDIRS + 1) * NUMFILES))
5219         cmd="$LFS find -stripe-size 512k -type f $dir"
5220         nums=$($cmd | wc -l)
5221         [ $nums -eq $expected ] ||
5222                 error "'$cmd' wrong: found $nums, expected $expected"
5223
5224         cmd="$LFS find -stripe-size +320k -type f $dir"
5225         nums=$($cmd | wc -l)
5226         [ $nums -eq $expected ] ||
5227                 error "'$cmd' wrong: found $nums, expected $expected"
5228
5229         expected=$(((NUMDIRS + 1) * NUMFILES + 4))
5230         cmd="$LFS find -stripe-size +200k -type f $dir"
5231         nums=$($cmd | wc -l)
5232         [ $nums -eq $expected ] ||
5233                 error "'$cmd' wrong: found $nums, expected $expected"
5234
5235         cmd="$LFS find -stripe-size -640k -type f $dir"
5236         nums=$($cmd | wc -l)
5237         [ $nums -eq $expected ] ||
5238                 error "'$cmd' wrong: found $nums, expected $expected"
5239
5240         expected=4
5241         cmd="$LFS find -stripe-size 256k -type f $dir"
5242         nums=$($cmd | wc -l)
5243         [ $nums -eq $expected ] ||
5244                 error "'$cmd' wrong: found $nums, expected $expected"
5245
5246         cmd="$LFS find -stripe-size -320k -type f $dir"
5247         nums=$($cmd | wc -l)
5248         [ $nums -eq $expected ] ||
5249                 error "'$cmd' wrong: found $nums, expected $expected"
5250
5251         expected=0
5252         cmd="$LFS find -stripe-size 1024k -type f $dir"
5253         nums=$($cmd | wc -l)
5254         [ $nums -eq $expected ] ||
5255                 error "'$cmd' wrong: found $nums, expected $expected"
5256 }
5257 run_test 56t "check lfs find -stripe-size works"
5258
5259 test_56u() { # LU-611
5260         local dir=$DIR/$tdir
5261
5262         setup_56 $dir $NUMFILES $NUMDIRS "-i 0 -c 1"
5263
5264         if [[ $OSTCOUNT -gt 1 ]]; then
5265                 $LFS setstripe -i 1 -c 1 $dir/$tfile.{0,1,2,3}
5266                 onestripe=4
5267         else
5268                 onestripe=0
5269         fi
5270
5271         local expected=$(((NUMDIRS + 1) * NUMFILES))
5272         local cmd="$LFS find -stripe-index 0 -type f $dir"
5273         local nums=$($cmd | wc -l)
5274
5275         [ $nums -eq $expected ] ||
5276                 error "'$cmd' wrong: found $nums, expected $expected"
5277
5278         expected=$onestripe
5279         cmd="$LFS find -stripe-index 1 -type f $dir"
5280         nums=$($cmd | wc -l)
5281         [ $nums -eq $expected ] ||
5282                 error "'$cmd' wrong: found $nums, expected $expected"
5283
5284         cmd="$LFS find ! -stripe-index 0 -type f $dir"
5285         nums=$($cmd | wc -l)
5286         [ $nums -eq $expected ] ||
5287                 error "'$cmd' wrong: found $nums, expected $expected"
5288
5289         expected=0
5290         # This should produce an error and not return any files
5291         cmd="$LFS find -stripe-index $OSTCOUNT -type f $dir"
5292         nums=$($cmd 2>/dev/null | wc -l)
5293         [ $nums -eq $expected ] ||
5294                 error "'$cmd' wrong: found $nums, expected $expected"
5295
5296         if [[ $OSTCOUNT -gt 1 ]]; then
5297                 expected=$(((NUMDIRS + 1) * NUMFILES + onestripe))
5298                 cmd="$LFS find -stripe-index 0,1 -type f $dir"
5299                 nums=$($cmd | wc -l)
5300                 [ $nums -eq $expected ] ||
5301                         error "'$cmd' wrong: found $nums, expected $expected"
5302         fi
5303 }
5304 run_test 56u "check lfs find -stripe-index works"
5305
5306 test_56v() {
5307         local mdt_idx=0
5308         local dir=$DIR/$tdir
5309
5310         setup_56 $dir $NUMFILES $NUMDIRS
5311
5312         UUID=$(mdtuuid_from_index $mdt_idx $dir)
5313         [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT $mdt_idx"
5314
5315         for file in $($LFS find -m $UUID $dir); do
5316                 file_midx=$($LFS getstripe -m $file)
5317                 [ $file_midx -eq $mdt_idx ] ||
5318                         error "lfs find -m $UUID != getstripe -m $file_midx"
5319         done
5320 }
5321 run_test 56v "check 'lfs find -m match with lfs getstripe -m'"
5322
5323 test_56w() {
5324         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5325         [ $PARALLEL == "yes" ] && skip "skip parallel run"
5326
5327         local dir=$DIR/$tdir
5328
5329         setup_56 $dir $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
5330
5331         local stripe_size=$($LFS getstripe -S -d $dir) ||
5332                 error "$LFS getstripe -S -d $dir failed"
5333         stripe_size=${stripe_size%% *}
5334
5335         local file_size=$((stripe_size * OSTCOUNT))
5336         local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
5337         local required_space=$((file_num * file_size))
5338         local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
5339                            head -n1)
5340         [[ $free_space -le $((required_space / 1024)) ]] &&
5341                 skip_env "need $required_space, have $free_space kbytes"
5342
5343         local dd_bs=65536
5344         local dd_count=$((file_size / dd_bs))
5345
5346         # write data into the files
5347         local i
5348         local j
5349         local file
5350
5351         for i in $(seq $NUMFILES); do
5352                 file=$dir/file$i
5353                 yes | dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5354                         error "write data into $file failed"
5355         done
5356         for i in $(seq $NUMDIRS); do
5357                 for j in $(seq $NUMFILES); do
5358                         file=$dir/dir$i/file$j
5359                         yes|dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5360                                 error "write data into $file failed"
5361                 done
5362         done
5363
5364         # $LFS_MIGRATE will fail if hard link migration is unsupported
5365         if [[ $(lustre_version_code mds1) -gt $(version_code 2.5.55) ]]; then
5366                 createmany -l$dir/dir1/file1 $dir/dir1/link 200 ||
5367                         error "creating links to $dir/dir1/file1 failed"
5368         fi
5369
5370         local expected=-1
5371
5372         [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
5373
5374         # lfs_migrate file
5375         local cmd="$LFS_MIGRATE -y -c $expected $dir/file1"
5376
5377         echo "$cmd"
5378         eval $cmd || error "$cmd failed"
5379
5380         check_stripe_count $dir/file1 $expected
5381
5382         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.90) ];
5383         then
5384                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
5385                 # OST 1 if it is on OST 0. This file is small enough to
5386                 # be on only one stripe.
5387                 file=$dir/migr_1_ost
5388                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
5389                         error "write data into $file failed"
5390                 local obdidx=$($LFS getstripe -i $file)
5391                 local oldmd5=$(md5sum $file)
5392                 local newobdidx=0
5393
5394                 [[ $obdidx -eq 0 ]] && newobdidx=1
5395                 cmd="$LFS migrate -i $newobdidx $file"
5396                 echo $cmd
5397                 eval $cmd || error "$cmd failed"
5398
5399                 local realobdix=$($LFS getstripe -i $file)
5400                 local newmd5=$(md5sum $file)
5401
5402                 [[ $newobdidx -ne $realobdix ]] &&
5403                         error "new OST is different (was=$obdidx, "\
5404                               "wanted=$newobdidx, got=$realobdix)"
5405                 [[ "$oldmd5" != "$newmd5" ]] &&
5406                         error "md5sum differ: $oldmd5, $newmd5"
5407         fi
5408
5409         # lfs_migrate dir
5410         cmd="$LFS_MIGRATE -y -c $expected $dir/dir1"
5411         echo "$cmd"
5412         eval $cmd || error "$cmd failed"
5413
5414         for j in $(seq $NUMFILES); do
5415                 check_stripe_count $dir/dir1/file$j $expected
5416         done
5417
5418         # lfs_migrate works with lfs find
5419         cmd="$LFS find -stripe_count $OSTCOUNT -type f $dir |
5420              $LFS_MIGRATE -y -c $expected"
5421         echo "$cmd"
5422         eval $cmd || error "$cmd failed"
5423
5424         for i in $(seq 2 $NUMFILES); do
5425                 check_stripe_count $dir/file$i $expected
5426         done
5427         for i in $(seq 2 $NUMDIRS); do
5428                 for j in $(seq $NUMFILES); do
5429                 check_stripe_count $dir/dir$i/file$j $expected
5430                 done
5431         done
5432 }
5433 run_test 56w "check lfs_migrate -c stripe_count works"
5434
5435 test_56wb() {
5436         local file1=$DIR/$tdir/file1
5437         local create_pool=false
5438         local initial_pool=$($LFS getstripe -p $DIR)
5439         local pool_list=()
5440         local pool=""
5441
5442         echo -n "Creating test dir..."
5443         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
5444         echo "done."
5445
5446         echo -n "Creating test file..."
5447         touch $file1 || error "cannot create file"
5448         echo "done."
5449
5450         echo -n "Detecting existing pools..."
5451         pool_list=($($LFS pool_list $FSNAME | grep "$FSNAME\." | cut -d. -f2))
5452
5453         if [ ${#pool_list[@]} -gt 0 ]; then
5454                 echo "${pool_list[@]}"
5455                 for thispool in "${pool_list[@]}"; do
5456                         if [[ -z "$initial_pool" ||
5457                               "$initial_pool" != "$thispool" ]]; then
5458                                 pool="$thispool"
5459                                 echo "Using existing pool '$pool'"
5460                                 break
5461                         fi
5462                 done
5463         else
5464                 echo "none detected."
5465         fi
5466         if [ -z "$pool" ]; then
5467                 pool=${POOL:-testpool}
5468                 [ "$initial_pool" = "$pool" ] && pool="testpool2"
5469                 echo -n "Creating pool '$pool'..."
5470                 create_pool=true
5471                 pool_add $pool &> /dev/null ||
5472                         error "pool_add failed"
5473                 echo "done."
5474
5475                 echo -n "Adding target to pool..."
5476                 pool_add_targets $pool 0 0 1 &> /dev/null ||
5477                         error "pool_add_targets failed"
5478                 echo "done."
5479         fi
5480
5481         echo -n "Setting pool using -p option..."
5482         $LFS_MIGRATE -y -q --no-rsync -p $pool $file1 &> /dev/null ||
5483                 error "migrate failed rc = $?"
5484         echo "done."
5485
5486         echo -n "Verifying test file is in pool after migrating..."
5487         [ "$($LFS getstripe -p $file1)" = $pool ] ||
5488                 error "file was not migrated to pool $pool"
5489         echo "done."
5490
5491         echo -n "Removing test file from pool '$pool'..."
5492         $LFS migrate $file1 &> /dev/null ||
5493                 error "cannot remove from pool"
5494         [ "$($LFS getstripe -p $file1)" ] &&
5495                 error "pool still set"
5496         echo "done."
5497
5498         echo -n "Setting pool using --pool option..."
5499         $LFS_MIGRATE -y -q --no-rsync --pool $pool $file1 &> /dev/null ||
5500                 error "migrate failed rc = $?"
5501         echo "done."
5502
5503         # Clean up
5504         rm -f $file1
5505         if $create_pool; then
5506                 destroy_test_pools 2> /dev/null ||
5507                         error "destroy test pools failed"
5508         fi
5509 }
5510 run_test 56wb "check lfs_migrate pool support"
5511
5512 test_56wc() {
5513         local file1="$DIR/$tdir/file 1"
5514
5515         echo -n "Creating test dir..."
5516         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
5517         local def_stripe_size=$($LFS getstripe -S $DIR/$tdir 2>/dev/null)
5518         $LFS setstripe -S 1M -c 1 "$DIR/$tdir" &> /dev/null ||
5519                 error "cannot set stripe"
5520         echo "done"
5521
5522         echo -n "Setting initial stripe for test file..."
5523         $LFS setstripe -S 512K -c 1 "$file1" &> /dev/null ||
5524                 error "cannot set stripe"
5525         [ $($LFS getstripe -S "$file1") -eq 524288 ] ||
5526                 error "stripe size not set"
5527         echo "done."
5528
5529         # File currently set to -S 512K -c 1
5530
5531         # Ensure -c and -S options are rejected when -R is set
5532         echo -n "Verifying incompatible options are detected..."
5533         $LFS_MIGRATE -y -R -c 1 "$file1" &> /dev/null &&
5534                 error "incompatible -c and -R options not detected"
5535         $LFS_MIGRATE -y -R -S 1M "$file1" &> /dev/null &&
5536                 error "incompatible -S and -R options not detected"
5537         echo "done."
5538
5539         # Ensure unrecognized options are passed through to 'lfs migrate'
5540         echo -n "Verifying -S option is passed through to lfs migrate..."
5541         $LFS_MIGRATE -y -S 1M "$file1" &> /dev/null ||
5542                 error "migration failed"
5543         [ $($LFS getstripe -S "$file1") -eq 1048576 ] ||
5544                 error "file was not restriped"
5545         echo "done."
5546
5547         # File currently set to -S 1M -c 1
5548
5549         # Ensure long options are supported
5550         echo -n "Verifying long options supported..."
5551         $LFS_MIGRATE -y --non-block "$file1" &> /dev/null ||
5552                 error "long option without argument not supported"
5553         $LFS_MIGRATE -y --stripe-size 512K "$file1" &> /dev/null ||
5554                 error "long option with argument not supported"
5555         [ $($LFS getstripe -S "$file1") -eq 524288 ] ||
5556                 error "file not restriped with --stripe-size option"
5557         echo "done."
5558
5559         # File currently set to -S 512K -c 1
5560
5561         if [ "$OSTCOUNT" -gt 1 ]; then
5562                 echo -n "Verifying explicit stripe count can be set..."
5563                 $LFS_MIGRATE -y -c 2 "$file1" &> /dev/null ||
5564                         error "migrate failed"
5565                 [ $($LFS getstripe -c "$file1") -eq 2 ] ||
5566                         error "file not restriped to explicit count"
5567                 echo "done."
5568         fi
5569
5570         # File currently set to -S 512K -c 1 or -S 512K -c 2
5571
5572         # Ensure parent striping is used if -R is set, and no stripe
5573         # count or size is specified
5574         echo -n "Setting stripe for parent directory..."
5575         $LFS setstripe -S 1M -c 1 "$DIR/$tdir" &> /dev/null ||
5576                 error "cannot set stripe"
5577         echo "done."
5578
5579         echo -n "Verifying restripe option uses parent stripe settings..."
5580         $LFS_MIGRATE -y -R "$file1" &> /dev/null ||
5581                 error "migrate failed"
5582         [ $($LFS getstripe -S "$file1") -eq $def_stripe_size ] ||
5583                 error "file not restriped to parent settings"
5584         [ $($LFS getstripe -c "$file1") -eq 1 ] ||
5585                 error "file not restriped to parent settings"
5586         echo "done."
5587
5588         # File currently set to -S 1M -c 1
5589
5590         # Ensure striping is preserved if -R is not set, and no stripe
5591         # count or size is specified
5592         echo -n "Verifying striping size preserved when not specified..."
5593         local orig_stripe_size=$($LFS getstripe -S "$file1" 2>/dev/null)
5594         $LFS setstripe -S 2M -c 1 "$DIR/$tdir" &> /dev/null ||
5595                 error "cannot set stripe on parent directory"
5596         $LFS_MIGRATE -y "$file1" &> /dev/null ||
5597                 error "migrate failed"
5598         [ $($LFS getstripe -S "$file1") -eq $orig_stripe_size ] ||
5599                 error "file was restriped"
5600         echo "done."
5601
5602         # Ensure file name properly detected when final option has no argument
5603         echo -n "Verifying file name properly detected..."
5604         $LFS_MIGRATE -y "$file1" &> /dev/null ||
5605                 error "file name interpreted as option argument"
5606         echo "done."
5607
5608         # Clean up
5609         rm -f "$file1"
5610 }
5611 run_test 56wc "check unrecognized options for lfs_migrate are passed through"
5612
5613 test_56wd() {
5614         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5615
5616         local file1=$DIR/$tdir/file1
5617
5618         echo -n "Creating test dir..."
5619         test_mkdir $DIR/$tdir || error "cannot create dir"
5620         echo "done."
5621
5622         echo -n "Creating test file..."
5623         touch $file1
5624         echo "done."
5625
5626         # Ensure 'lfs migrate' will fail by using a non-existent option,
5627         # and make sure rsync is not called to recover
5628         echo -n "Make sure --no-rsync option works..."
5629         $LFS_MIGRATE -y --no-rsync --invalid-opt $file1 2>&1 |
5630                 grep -q 'refusing to fall back to rsync' ||
5631                 error "rsync was called with --no-rsync set"
5632         echo "done."
5633
5634         # Ensure rsync is called without trying 'lfs migrate' first
5635         echo -n "Make sure --rsync option works..."
5636         $LFS_MIGRATE -y --rsync --invalid-opt $file1 2>&1 |
5637                 grep -q 'falling back to rsync' &&
5638                 error "lfs migrate was called with --rsync set"
5639         echo "done."
5640
5641         echo -n "Make sure --rsync and --no-rsync options are exclusive..."
5642         $LFS_MIGRATE -y --rsync --no-rsync $file1 2>&1 |
5643                 grep -q 'at the same time' ||
5644                 error "--rsync and --no-rsync accepted concurrently"
5645         echo "done."
5646
5647         # Clean up
5648         rm -f $file1
5649 }
5650 run_test 56wd "check lfs_migrate --rsync and --no-rsync work"
5651
5652 test_56x() {
5653         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5654         check_swap_layouts_support
5655
5656         local dir=$DIR/$tdir
5657         local ref1=/etc/passwd
5658         local file1=$dir/file1
5659
5660         test_mkdir $dir || error "creating dir $dir"
5661         $LFS setstripe -c 2 $file1
5662         cp $ref1 $file1
5663         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
5664         stripe=$($LFS getstripe -c $file1)
5665         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5666         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5667
5668         # clean up
5669         rm -f $file1
5670 }
5671 run_test 56x "lfs migration support"
5672
5673 test_56xa() {
5674         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5675         check_swap_layouts_support
5676
5677         local dir=$DIR/$tdir/$testnum
5678
5679         test_mkdir -p $dir
5680
5681         local ref1=/etc/passwd
5682         local file1=$dir/file1
5683
5684         $LFS setstripe -c 2 $file1
5685         cp $ref1 $file1
5686         $LFS migrate --block -c 1 $file1 || error "migrate failed rc = $?"
5687
5688         local stripe=$($LFS getstripe -c $file1)
5689
5690         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5691         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5692
5693         # clean up
5694         rm -f $file1
5695 }
5696 run_test 56xa "lfs migration --block support"
5697
5698 check_migrate_links() {
5699         local dir="$1"
5700         local file1="$dir/file1"
5701         local begin="$2"
5702         local count="$3"
5703         local total_count=$(($begin + $count - 1))
5704         local symlink_count=10
5705         local uniq_count=10
5706
5707         if [ ! -f "$file1" ]; then
5708                 echo -n "creating initial file..."
5709                 $LFS setstripe -c 1 -S "512k" "$file1" ||
5710                         error "cannot setstripe initial file"
5711                 echo "done"
5712
5713                 echo -n "creating symlinks..."
5714                 for s in $(seq 1 $symlink_count); do
5715                         ln -s "$file1" "$dir/slink$s" ||
5716                                 error "cannot create symlinks"
5717                 done
5718                 echo "done"
5719
5720                 echo -n "creating nonlinked files..."
5721                 createmany -o "$dir/uniq" 1 10 &> /dev/null ||
5722                         error "cannot create nonlinked files"
5723                 echo "done"
5724         fi
5725
5726         # create hard links
5727         if [ ! -f "$dir/file$total_count" ]; then
5728                 echo -n "creating hard links $begin:$total_count..."
5729                 createmany -l"$file1" "$dir/file" "$begin" "$count" &>  \
5730                         /dev/null || error "cannot create hard links"
5731                 echo "done"
5732         fi
5733
5734         echo -n "checking number of hard links listed in xattrs..."
5735         local fid=$($LFS getstripe -F "$file1")
5736         local paths=($($LFS fid2path "$MOUNT" "$fid" 2> /dev/null))
5737
5738         echo "${#paths[*]}"
5739         if [ ${#paths[*]} -lt $total_count -a "$begin" -eq 2  ]; then
5740                         skip "hard link list has unexpected size, skipping test"
5741         fi
5742         if [ ${#paths[*]} -ge $total_count -a "$begin" -ne 2  ]; then
5743                         error "link names should exceed xattrs size"
5744         fi
5745
5746         echo -n "migrating files..."
5747         local migrate_out=$($LFS_MIGRATE -y -S '1m' $dir)
5748         local rc=$?
5749         [ $rc -eq 0 ] || error "migrate failed rc = $rc"
5750         echo "done"
5751
5752         # make sure all links have been properly migrated
5753         echo -n "verifying files..."
5754         fid=$($LFS getstripe -F "$file1") ||
5755                 error "cannot get fid for file $file1"
5756         for i in $(seq 2 $total_count); do
5757                 local fid2=$($LFS getstripe -F $dir/file$i)
5758
5759                 [ "$fid2" == "$fid" ] ||
5760                         error "migrated hard link has mismatched FID"
5761         done
5762
5763         # make sure hard links were properly detected, and migration was
5764         # performed only once for the entire link set; nonlinked files should
5765         # also be migrated
5766         local actual=$(grep -c 'done migrate' <<< "$migrate_out")
5767         local expected=$(($uniq_count + 1))
5768
5769         [ "$actual" -eq  "$expected" ] ||
5770                 error "hard links individually migrated ($actual != $expected)"
5771
5772         # make sure the correct number of hard links are present
5773         local hardlinks=$(stat -c '%h' "$file1")
5774
5775         [ $hardlinks -eq $total_count ] ||
5776                 error "num hard links $hardlinks != $total_count"
5777         echo "done"
5778
5779         return 0
5780 }
5781
5782 test_56xb() {
5783         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
5784                 skip "Need MDS version at least 2.10.55"
5785
5786         local dir="$DIR/$tdir"
5787
5788         test_mkdir "$dir" || error "cannot create dir $dir"
5789
5790         echo "testing lfs migrate mode when all links fit within xattrs"
5791         LFS_MIGRATE_RSYNC=false check_migrate_links "$dir" 2 99
5792
5793         echo "testing rsync mode when all links fit within xattrs"
5794         LFS_MIGRATE_RSYNC=true check_migrate_links "$dir" 2 99
5795
5796         echo "testing lfs migrate mode when all links do not fit within xattrs"
5797         LFS_MIGRATE_RSYNC=false check_migrate_links "$dir" 101 100
5798
5799         echo "testing rsync mode when all links do not fit within xattrs"
5800         LFS_MIGRATE_RSYNC=true check_migrate_links "$dir" 101 100
5801
5802         # clean up
5803         rm -rf $dir
5804 }
5805 run_test 56xb "lfs migration hard link support"
5806
5807 test_56y() {
5808         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
5809                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53"
5810
5811         local res=""
5812         local dir=$DIR/$tdir
5813         local f1=$dir/file1
5814         local f2=$dir/file2
5815
5816         test_mkdir -p $dir || error "creating dir $dir"
5817         touch $f1 || error "creating std file $f1"
5818         $MULTIOP $f2 H2c || error "creating released file $f2"
5819
5820         # a directory can be raid0, so ask only for files
5821         res=$($LFS find $dir -L raid0 -type f | wc -l)
5822         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
5823
5824         res=$($LFS find $dir \! -L raid0 -type f | wc -l)
5825         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
5826
5827         # only files can be released, so no need to force file search
5828         res=$($LFS find $dir -L released)
5829         [[ $res == $f2 ]] || error "search released: found $res != $f2"
5830
5831         res=$($LFS find $dir -type f \! -L released)
5832         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
5833 }
5834 run_test 56y "lfs find -L raid0|released"
5835
5836 test_56z() { # LU-4824
5837         # This checks to make sure 'lfs find' continues after errors
5838         # There are two classes of errors that should be caught:
5839         # - If multiple paths are provided, all should be searched even if one
5840         #   errors out
5841         # - If errors are encountered during the search, it should not terminate
5842         #   early
5843         local dir=$DIR/$tdir
5844         local i
5845
5846         test_mkdir $dir
5847         for i in d{0..9}; do
5848                 test_mkdir $dir/$i
5849         done
5850         touch $dir/d{0..9}/$tfile
5851         $LFS find $DIR/non_existent_dir $dir &&
5852                 error "$LFS find did not return an error"
5853         # Make a directory unsearchable. This should NOT be the last entry in
5854         # directory order.  Arbitrarily pick the 6th entry
5855         chmod 700 $($LFS find $dir -type d | sed '6!d')
5856
5857         local count=$($RUNAS $LFS find $DIR/non_existent $dir | wc -l)
5858
5859         # The user should be able to see 10 directories and 9 files
5860         [ $count == 19 ] || error "$LFS find did not continue after error"
5861 }
5862 run_test 56z "lfs find should continue after an error"
5863
5864 test_56aa() { # LU-5937
5865         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
5866
5867         local dir=$DIR/$tdir
5868
5869         mkdir $dir
5870         $LFS setdirstripe -c$MDSCOUNT $dir/striped_dir
5871
5872         createmany -o $dir/striped_dir/${tfile}- 1024
5873         local dirs=$($LFS find --size +8k $dir/)
5874
5875         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
5876 }
5877 run_test 56aa "lfs find --size under striped dir"
5878
5879 test_56ab() { # LU-10705
5880         test_mkdir $DIR/$tdir
5881         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=8k count=1 seek=2k
5882         dd if=/dev/zero of=$DIR/$tdir/$tfile.2 bs=4k count=1 seek=4k
5883         dd if=/dev/zero of=$DIR/$tdir/$tfile.3 bs=1M count=2 seek=16
5884         # Flush writes to ensure valid blocks.  Need to be more thorough for
5885         # ZFS, since blocks are not allocated/returned to client immediately.
5886         sync_all_data
5887         wait_zfs_commit ost1 2
5888         cancel_lru_locks osc
5889         ls -ls $DIR/$tdir
5890
5891         local files=$($LFS find --size +16M $DIR/$tdir | wc -l)
5892
5893         [[ $files == 3 ]] || error ">16M size files $files isn't 3 as expected"
5894
5895         files=$($LFS find --blocks +1M $DIR/$tdir | wc -l)
5896         [[ $files == 1 ]] || error ">1M blocks files $files isn't 1 as expected"
5897
5898         rm -f $DIR/$tdir/$tfile.[123]
5899 }
5900 run_test 56ab "lfs find --blocks"
5901
5902 test_56ba() {
5903         # Create composite files with one component
5904         local dir=$DIR/$tdir
5905
5906         setup_56 $dir/1Mfiles 5 1 "-S 1M --component-end 1M"
5907         # Create composite files with three components
5908         setup_56 $dir/2Mfiles 5 2 "-E 2M -S 1M -E 4M -E 6M"
5909         # Create non-composite files
5910         createmany -o $dir/${tfile}- 10
5911
5912         local nfiles=$($LFS find --component-end 1M --type f $dir | wc -l)
5913
5914         [[ $nfiles == 10 ]] ||
5915                 error "lfs find -E 1M found $nfiles != 10 files"
5916
5917         nfiles=$($LFS find ! -E 1M --type f $dir | wc -l)
5918         [[ $nfiles == 25 ]] ||
5919                 error "lfs find ! -E 1M found $nfiles != 25 files"
5920
5921         # All files have a component that starts at 0
5922         nfiles=$($LFS find --component-start 0 --type f $dir | wc -l)
5923         [[ $nfiles == 35 ]] ||
5924                 error "lfs find --component-start 0 - $nfiles != 35 files"
5925
5926         nfiles=$($LFS find --component-start 2M --type f $dir | wc -l)
5927         [[ $nfiles == 15 ]] ||
5928                 error "lfs find --component-start 2M - $nfiles != 15 files"
5929
5930         # All files created here have a componenet that does not starts at 2M
5931         nfiles=$($LFS find ! --component-start 2M --type f $dir | wc -l)
5932         [[ $nfiles == 35 ]] ||
5933                 error "lfs find ! --component-start 2M - $nfiles != 35 files"
5934
5935         # Find files with a specified number of components
5936         local nfiles=$($LFS find --component-count 3 --type f $dir | wc -l)
5937         [[ $nfiles == 15 ]] ||
5938                 error "lfs find --component-count 3 - $nfiles != 15 files"
5939
5940         # Remember non-composite files have a component count of zero
5941         local nfiles=$($LFS find --component-count 0 --type f $dir | wc -l)
5942         [[ $nfiles == 10 ]] ||
5943                 error "lfs find --component-count 0 - $nfiles != 10 files"
5944
5945         nfiles=$($LFS find ! --component-count 3 --type f $dir | wc -l)
5946         [[ $nfiles == 20 ]] ||
5947                 error "lfs find ! --component-count 3 - $nfiles != 20 files"
5948
5949         # All files have a flag called "init"
5950         local nfiles=$($LFS find --component-flags init --type f $dir | wc -l)
5951         [[ $nfiles == 35 ]] ||
5952                 error "lfs find --component-flags init - $nfiles != 35 files"
5953
5954         # Multi-component files will have a component not initialized
5955         local nfiles=$($LFS find ! --component-flags init --type f $dir | wc -l)
5956         [[ $nfiles == 15 ]] ||
5957                 error "lfs find !--component-flags init - $nfiles != 15 files"
5958
5959         rm -rf $dir
5960
5961 }
5962 run_test 56ba "test lfs find --component-end, -start, -count, and -flags"
5963
5964 test_56ca() {
5965         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.57) ]] ||
5966                 skip "Need MDS version at least 2.10.57"
5967
5968         local td=$DIR/$tdir
5969         local tf=$td/$tfile
5970         local dir
5971         local nfiles
5972         local cmd
5973         local i
5974         local j
5975
5976         # create mirrored directories and mirrored files
5977         mkdir $td || error "mkdir $td failed"
5978         $LFS mirror create -N3 $td || error "create mirrored dir $td failed"
5979         createmany -o $tf- 10 || error "create $tf- failed"
5980
5981         for i in $(seq 2); do
5982                 dir=$td/dir$i
5983                 mkdir $dir || error "mkdir $dir failed"
5984                 $LFS mirror create -N$((3 + i)) $dir ||
5985                         error "create mirrored dir $dir failed"
5986                 createmany -o $dir/$tfile- 10 ||
5987                         error "create $dir/$tfile- failed"
5988         done
5989
5990         # change the states of some mirrored files
5991         echo foo > $tf-6
5992         for i in $(seq 2); do
5993                 dir=$td/dir$i
5994                 for j in $(seq 4 9); do
5995                         echo foo > $dir/$tfile-$j
5996                 done
5997         done
5998
5999         # find mirrored files with specific mirror count
6000         cmd="$LFS find --mirror-count 3 --type f $td"
6001         nfiles=$($cmd | wc -l)
6002         [[ $nfiles = 10 ]] || error "$cmd: $nfiles != 10 files"
6003
6004         cmd="$LFS find ! --mirror-count 3 --type f $td"
6005         nfiles=$($cmd | wc -l)
6006         [[ $nfiles = 20 ]] || error "$cmd: $nfiles != 20 files"
6007
6008         cmd="$LFS find --mirror-count +2 --type f $td"
6009         nfiles=$($cmd | wc -l)
6010         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
6011
6012         cmd="$LFS find --mirror-count -6 --type f $td"
6013         nfiles=$($cmd | wc -l)
6014         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
6015
6016         # find mirrored files with specific file state
6017         cmd="$LFS find --maxdepth 1 --mirror-state=^ro --type f $td"
6018         [[ $($cmd) = $tf-6 ]] || error "$cmd: didn't return $tf-6"
6019
6020         cmd="$LFS find --mirror-state=ro --type f $td"
6021         nfiles=$($cmd | wc -l)
6022         [[ $nfiles = 17 ]] || error "$cmd: $nfiles != 17 files"
6023
6024         cmd="$LFS find ! --mirror-state=ro --type f $td"
6025         nfiles=$($cmd | wc -l)
6026         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
6027
6028         cmd="$LFS find --mirror-state=wp --type f $td"
6029         nfiles=$($cmd | wc -l)
6030         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
6031
6032         cmd="$LFS find ! --mirror-state=sp --type f $td"
6033         nfiles=$($cmd | wc -l)
6034         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
6035 }
6036 run_test 56ca "check lfs find --mirror-count|-N and --mirror-state"
6037
6038 test_57a() {
6039         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6040         # note test will not do anything if MDS is not local
6041         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
6042                 skip_env "ldiskfs only test"
6043         fi
6044         remote_mds_nodsh && skip "remote MDS with nodsh"
6045
6046         local MNTDEV="osd*.*MDT*.mntdev"
6047         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
6048         [ -z "$DEV" ] && error "can't access $MNTDEV"
6049         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
6050                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
6051                         error "can't access $DEV"
6052                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
6053                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
6054                 rm $TMP/t57a.dump
6055         done
6056 }
6057 run_test 57a "verify MDS filesystem created with large inodes =="
6058
6059 test_57b() {
6060         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6061         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
6062                 skip_env "ldiskfs only test"
6063         fi
6064         remote_mds_nodsh && skip "remote MDS with nodsh"
6065
6066         local dir=$DIR/$tdir
6067         local filecount=100
6068         local file1=$dir/f1
6069         local fileN=$dir/f$filecount
6070
6071         rm -rf $dir || error "removing $dir"
6072         test_mkdir -c1 $dir
6073         local mdtidx=$($LFS getstripe -m $dir)
6074         local mdtname=MDT$(printf %04x $mdtidx)
6075         local facet=mds$((mdtidx + 1))
6076
6077         echo "mcreating $filecount files"
6078         createmany -m $dir/f 1 $filecount || error "creating files in $dir"
6079
6080         # verify that files do not have EAs yet
6081         $LFS getstripe $file1 2>&1 | grep -q "no stripe" ||
6082                 error "$file1 has an EA"
6083         $LFS getstripe $fileN 2>&1 | grep -q "no stripe" ||
6084                 error "$fileN has an EA"
6085
6086         sync
6087         sleep 1
6088         df $dir  #make sure we get new statfs data
6089         local mdsfree=$(do_facet $facet \
6090                         lctl get_param -n osd*.*$mdtname.kbytesfree)
6091         local mdcfree=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
6092         local file
6093
6094         echo "opening files to create objects/EAs"
6095         for file in $(seq -f $dir/f%g 1 $filecount); do
6096                 $OPENFILE -f O_RDWR $file > /dev/null 2>&1 ||
6097                         error "opening $file"
6098         done
6099
6100         # verify that files have EAs now
6101         $LFS getstripe $file1 | grep -q "obdidx" || error "$file1 missing EA"
6102         $LFS getstripe $fileN | grep -q "obdidx" || error "$fileN missing EA"
6103
6104         sleep 1  #make sure we get new statfs data
6105         df $dir
6106         local mdsfree2=$(do_facet $facet \
6107                          lctl get_param -n osd*.*$mdtname.kbytesfree)
6108         local mdcfree2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
6109
6110         if [[ $mdcfree2 -lt $((mdcfree - 16)) ]]; then
6111                 if [ "$mdsfree" != "$mdsfree2" ]; then
6112                         error "MDC before $mdcfree != after $mdcfree2"
6113                 else
6114                         echo "MDC before $mdcfree != after $mdcfree2"
6115                         echo "unable to confirm if MDS has large inodes"
6116                 fi
6117         fi
6118         rm -rf $dir
6119 }
6120 run_test 57b "default LOV EAs are stored inside large inodes ==="
6121
6122 test_58() {
6123         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6124         [ -z "$(which wiretest 2>/dev/null)" ] &&
6125                         skip_env "could not find wiretest"
6126
6127         wiretest
6128 }
6129 run_test 58 "verify cross-platform wire constants =============="
6130
6131 test_59() {
6132         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6133
6134         echo "touch 130 files"
6135         createmany -o $DIR/f59- 130
6136         echo "rm 130 files"
6137         unlinkmany $DIR/f59- 130
6138         sync
6139         # wait for commitment of removal
6140         wait_delete_completed
6141 }
6142 run_test 59 "verify cancellation of llog records async ========="
6143
6144 TEST60_HEAD="test_60 run $RANDOM"
6145 test_60a() {
6146         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6147         remote_mgs_nodsh && skip "remote MGS with nodsh"
6148         do_facet mgs "! which run-llog.sh &> /dev/null" &&
6149                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
6150                         skip_env "missing subtest run-llog.sh"
6151
6152         log "$TEST60_HEAD - from kernel mode"
6153         do_facet mgs "$LCTL set_param debug=warning; $LCTL dk > /dev/null"
6154         do_facet mgs "bash run-llog.sh" || error "run-llog.sh failed"
6155         do_facet mgs $LCTL dk > $TMP/$tfile
6156
6157         # LU-6388: test llog_reader
6158         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
6159         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
6160         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
6161                         skip_env "missing llog_reader"
6162         local fstype=$(facet_fstype mgs)
6163         [ $fstype != ldiskfs -a $fstype != zfs ] &&
6164                 skip_env "Only for ldiskfs or zfs type mgs"
6165
6166         local mntpt=$(facet_mntpt mgs)
6167         local mgsdev=$(mgsdevname 1)
6168         local fid_list
6169         local fid
6170         local rec_list
6171         local rec
6172         local rec_type
6173         local obj_file
6174         local path
6175         local seq
6176         local oid
6177         local pass=true
6178
6179         #get fid and record list
6180         fid_list=($(awk '/9_sub.*record/ { print $NF }' /$TMP/$tfile |
6181                 tail -n 4))
6182         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' /$TMP/$tfile |
6183                 tail -n 4))
6184         #remount mgs as ldiskfs or zfs type
6185         stop mgs || error "stop mgs failed"
6186         mount_fstype mgs || error "remount mgs failed"
6187         for ((i = 0; i < ${#fid_list[@]}; i++)); do
6188                 fid=${fid_list[i]}
6189                 rec=${rec_list[i]}
6190                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
6191                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
6192                 oid=$((16#$oid))
6193
6194                 case $fstype in
6195                         ldiskfs )
6196                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
6197                         zfs )
6198                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
6199                 esac
6200                 echo "obj_file is $obj_file"
6201                 do_facet mgs $llog_reader $obj_file
6202
6203                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
6204                         awk '{ print $3 }' | sed -e "s/^type=//g")
6205                 if [ $rec_type != $rec ]; then
6206                         echo "FAILED test_60a wrong record type $rec_type," \
6207                               "should be $rec"
6208                         pass=false
6209                         break
6210                 fi
6211
6212                 #check obj path if record type is LLOG_LOGID_MAGIC
6213                 if [ "$rec" == "1064553b" ]; then
6214                         path=$(do_facet mgs $llog_reader $obj_file |
6215                                 grep "path=" | awk '{ print $NF }' |
6216                                 sed -e "s/^path=//g")
6217                         if [ $obj_file != $mntpt/$path ]; then
6218                                 echo "FAILED test_60a wrong obj path" \
6219                                       "$montpt/$path, should be $obj_file"
6220                                 pass=false
6221                                 break
6222                         fi
6223                 fi
6224         done
6225         rm -f $TMP/$tfile
6226         #restart mgs before "error", otherwise it will block the next test
6227         stop mgs || error "stop mgs failed"
6228         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
6229         $pass || error "test failed, see FAILED test_60a messages for specifics"
6230 }
6231 run_test 60a "llog_test run from kernel module and test llog_reader"
6232
6233 test_60aa() {
6234         remote_mgs_nodsh && skip "remote MGS with nodsh"
6235
6236         # test old logid format
6237         if [ $(lustre_version_code mgs) -le $(version_code 3.1.53) ]; then
6238                 do_facet mgs $LCTL dl | grep MGS
6239                 do_facet mgs "$LCTL --device %MGS llog_print \\\\\\\$$FSNAME-client" ||
6240                         error "old llog_print failed"
6241         fi
6242
6243         # test new logid format
6244         if [ $(lustre_version_code mgs) -ge $(version_code 2.9.53) ]; then
6245                 do_facet mgs "$LCTL --device MGS llog_print $FSNAME-client" ||
6246                         error "new llog_print failed"
6247         fi
6248 }
6249 run_test 60aa "llog_print works with FIDs and simple names"
6250
6251 test_60ab() {
6252         # test llog_print with params
6253
6254         [[ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.11.51) ]] ||
6255                 skip "Need server version greater than 2.11.51"
6256
6257         local yaml
6258         local orig_val
6259
6260         orig_val=$(do_facet mgs $LCTL get_param jobid_name)
6261         do_facet mgs $LCTL set_param -P jobid_name="testname"
6262
6263         yaml=$(do_facet mgs $LCTL --device MGS llog_print params |
6264             grep jobid_name | tail -n 1)
6265
6266         local param=`awk '{ print $10 }' <<< "$yaml"`
6267         local val=`awk '{ print $12 }' <<< "$yaml"`
6268         #return to the default
6269         do_facet mgs $LCTL set_param -P jobid_name=$orig_val
6270         [ $val = "testname" ] || error "bad value: $val"
6271         [ $param = "jobid_name," ] || error "Bad param: $param"
6272 }
6273 run_test 60ab "llog_print params output values from set_param -P"
6274
6275 test_60b() { # bug 6411
6276         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6277
6278         dmesg > $DIR/$tfile
6279         LLOG_COUNT=$(dmesg | awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
6280                                 /llog.test/ {
6281                                         if (marker)
6282                                                 from_marker++
6283                                         from_begin++
6284                                 }
6285                                 END {
6286                                         if (marker)
6287                                                 print from_marker
6288                                         else
6289                                                 print from_begin
6290                                 }")
6291         [[ $LLOG_COUNT -gt 100 ]] &&
6292                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
6293 }
6294 run_test 60b "limit repeated messages from CERROR/CWARN ========"
6295
6296 test_60c() {
6297         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6298
6299         echo "create 5000 files"
6300         createmany -o $DIR/f60c- 5000
6301 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
6302         lctl set_param fail_loc=0x80000137
6303         unlinkmany $DIR/f60c- 5000
6304         lctl set_param fail_loc=0
6305 }
6306 run_test 60c "unlink file when mds full"
6307
6308 test_60d() {
6309         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6310
6311         SAVEPRINTK=$(lctl get_param -n printk)
6312         # verify "lctl mark" is even working"
6313         MESSAGE="test message ID $RANDOM $$"
6314         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
6315         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
6316
6317         lctl set_param printk=0 || error "set lnet.printk failed"
6318         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
6319         MESSAGE="new test message ID $RANDOM $$"
6320         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
6321         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
6322         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
6323
6324         lctl set_param -n printk="$SAVEPRINTK"
6325 }
6326 run_test 60d "test printk console message masking"
6327
6328 test_60e() {
6329         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6330         remote_mds_nodsh && skip "remote MDS with nodsh"
6331
6332         touch $DIR/$tfile
6333 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
6334         do_facet mds1 lctl set_param fail_loc=0x15b
6335         rm $DIR/$tfile
6336 }
6337 run_test 60e "no space while new llog is being created"
6338
6339 test_61() {
6340         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6341
6342         f="$DIR/f61"
6343         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
6344         cancel_lru_locks osc
6345         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
6346         sync
6347 }
6348 run_test 61 "mmap() writes don't make sync hang ================"
6349
6350 # bug 2330 - insufficient obd_match error checking causes LBUG
6351 test_62() {
6352         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6353
6354         f="$DIR/f62"
6355         echo foo > $f
6356         cancel_lru_locks osc
6357         lctl set_param fail_loc=0x405
6358         cat $f && error "cat succeeded, expect -EIO"
6359         lctl set_param fail_loc=0
6360 }
6361 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
6362 # match every page all of the time.
6363 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
6364
6365 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
6366 # Though this test is irrelevant anymore, it helped to reveal some
6367 # other grant bugs (LU-4482), let's keep it.
6368 test_63a() {   # was test_63
6369         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6370
6371         MAX_DIRTY_MB=$(lctl get_param -n osc.*.max_dirty_mb | head -n 1)
6372
6373         for i in `seq 10` ; do
6374                 dd if=/dev/zero of=$DIR/f63 bs=8k &
6375                 sleep 5
6376                 kill $!
6377                 sleep 1
6378         done
6379
6380         rm -f $DIR/f63 || true
6381 }
6382 run_test 63a "Verify oig_wait interruption does not crash ======="
6383
6384 # bug 2248 - async write errors didn't return to application on sync
6385 # bug 3677 - async write errors left page locked
6386 test_63b() {
6387         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6388
6389         debugsave
6390         lctl set_param debug=-1
6391
6392         # ensure we have a grant to do async writes
6393         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
6394         rm $DIR/$tfile
6395
6396         sync    # sync lest earlier test intercept the fail_loc
6397
6398         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
6399         lctl set_param fail_loc=0x80000406
6400         $MULTIOP $DIR/$tfile Owy && \
6401                 error "sync didn't return ENOMEM"
6402         sync; sleep 2; sync     # do a real sync this time to flush page
6403         lctl get_param -n llite.*.dump_page_cache | grep locked && \
6404                 error "locked page left in cache after async error" || true
6405         debugrestore
6406 }
6407 run_test 63b "async write errors should be returned to fsync ==="
6408
6409 test_64a () {
6410         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6411
6412         df $DIR
6413         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
6414 }
6415 run_test 64a "verify filter grant calculations (in kernel) ====="
6416
6417 test_64b () {
6418         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6419
6420         sh oos.sh $MOUNT || error "oos.sh failed: $?"
6421 }
6422 run_test 64b "check out-of-space detection on client"
6423
6424 test_64c() {
6425         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
6426 }
6427 run_test 64c "verify grant shrink"
6428
6429 # this does exactly what osc_request.c:osc_announce_cached() does in
6430 # order to calculate max amount of grants to ask from server
6431 want_grant() {
6432         local tgt=$1
6433
6434         local page_size=$(get_page_size client)
6435
6436         local nrpages=$($LCTL get_param -n osc.${tgt}.max_pages_per_rpc)
6437         local rpc_in_flight=$($LCTL get_param -n osc.${tgt}.max_rpcs_in_flight)
6438
6439         ((rpc_in_flight ++));
6440         nrpages=$((nrpages * rpc_in_flight))
6441
6442         local dirty_max_pages=$($LCTL get_param -n osc.${tgt}.max_dirty_mb)
6443
6444         dirty_max_pages=$((dirty_max_pages * 1024 * 1024 / page_size))
6445
6446         [[ $dirty_max_pages -gt $nrpages ]] && nrpages=$dirty_max_pages
6447         local undirty=$((nrpages * page_size))
6448
6449         local max_extent_pages
6450         max_extent_pages=$($LCTL get_param osc.${tgt}.import |
6451             grep grant_max_extent_size | awk '{print $2}')
6452         max_extent_pages=$((max_extent_pages / page_size))
6453         local nrextents=$(((nrpages + max_extent_pages - 1) / max_extent_pages))
6454         local grant_extent_tax
6455         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6456             grep grant_extent_tax | awk '{print $2}')
6457
6458         undirty=$((undirty + nrextents * grant_extent_tax))
6459
6460         echo $undirty
6461 }
6462
6463 # this is size of unit for grant allocation. It should be equal to
6464 # what tgt_grant.c:tgt_grant_chunk() calculates
6465 grant_chunk() {
6466         local tgt=$1
6467         local max_brw_size
6468         local grant_extent_tax
6469
6470         max_brw_size=$($LCTL get_param osc.${tgt}.import |
6471             grep max_brw_size | awk '{print $2}')
6472
6473         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6474             grep grant_extent_tax | awk '{print $2}')
6475
6476         echo $(((max_brw_size + grant_extent_tax) * 2))
6477 }
6478
6479 test_64d() {
6480         [ $(lustre_version_code ost1) -lt $(version_code 2.10.56) ] &&
6481                 skip "OST < 2.10.55 doesn't limit grants enough"
6482
6483         local tgt=$($LCTL dl | grep "0000-osc-[^mM]" | awk '{print $4}')
6484         local file=$DIR/$tfile
6485
6486         [[ $($LCTL get_param osc.${tgt}.import |
6487              grep "connect_flags:.*grant_param") ]] ||
6488                 skip "no grant_param connect flag"
6489
6490         local olddebug=$($LCTL get_param -n debug 2> /dev/null)
6491
6492         $LCTL set_param debug="$OLDDEBUG" 2> /dev/null || true
6493
6494         local max_cur_granted=$(($(want_grant $tgt) + $(grant_chunk $tgt)))
6495         stack_trap "rm -f $file" EXIT
6496
6497         $SETSTRIPE $file -i 0 -c 1
6498         dd if=/dev/zero of=$file bs=1M count=1000 &
6499         ddpid=$!
6500
6501         while true
6502         do
6503                 local cur_grant=$($LCTL get_param -n osc.${tgt}.cur_grant_bytes)
6504                 if [[ $cur_grant -gt $max_cur_granted ]]
6505                 then
6506                         kill $ddpid
6507                         error "cur_grant $cur_grant > $max_cur_granted"
6508                 fi
6509                 kill -0 $ddpid
6510                 [[ $? -ne 0 ]] && break;
6511                 sleep 2
6512         done
6513
6514         rm -f $DIR/$tfile
6515         wait_delete_completed
6516         $LCTL set_param debug="$olddebug" 2> /dev/null || true
6517 }
6518 run_test 64d "check grant limit exceed"
6519
6520 # bug 1414 - set/get directories' stripe info
6521 test_65a() {
6522         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6523
6524         test_mkdir $DIR/$tdir
6525         touch $DIR/$tdir/f1
6526         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
6527 }
6528 run_test 65a "directory with no stripe info"
6529
6530 test_65b() {
6531         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6532
6533         test_mkdir $DIR/$tdir
6534         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6535
6536         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6537                                                 error "setstripe"
6538         touch $DIR/$tdir/f2
6539         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
6540 }
6541 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
6542
6543 test_65c() {
6544         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6545         [ $OSTCOUNT -lt 2 ] && skip_env "need at least 2 OSTs"
6546
6547         test_mkdir $DIR/$tdir
6548         local stripesize=$($GETSTRIPE -S $DIR/$tdir)
6549
6550         $LFS setstripe -S $((stripesize * 4)) -i 1 \
6551                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
6552         touch $DIR/$tdir/f3
6553         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
6554 }
6555 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
6556
6557 test_65d() {
6558         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6559
6560         test_mkdir $DIR/$tdir
6561         local STRIPECOUNT=$($GETSTRIPE -c $DIR/$tdir)
6562         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6563
6564         if [[ $STRIPECOUNT -le 0 ]]; then
6565                 sc=1
6566         elif [[ $STRIPECOUNT -gt 2000 ]]; then
6567 #LOV_MAX_STRIPE_COUNT is 2000
6568                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
6569         else
6570                 sc=$(($STRIPECOUNT - 1))
6571         fi
6572         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
6573         touch $DIR/$tdir/f4 $DIR/$tdir/f5
6574         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
6575                 error "lverify failed"
6576 }
6577 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
6578
6579 test_65e() {
6580         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6581
6582         test_mkdir $DIR/$tdir
6583
6584         $SETSTRIPE $DIR/$tdir || error "setstripe"
6585         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
6586                                         error "no stripe info failed"
6587         touch $DIR/$tdir/f6
6588         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
6589 }
6590 run_test 65e "directory setstripe defaults"
6591
6592 test_65f() {
6593         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6594
6595         test_mkdir $DIR/${tdir}f
6596         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
6597 }
6598 run_test 65f "dir setstripe permission (should return error) ==="
6599
6600 test_65g() {
6601         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6602
6603         test_mkdir $DIR/$tdir
6604         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6605
6606         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6607                 error "setstripe -S failed"
6608         $LFS setstripe -d $DIR/$tdir || error "setstripe -d failed"
6609         $LFS getstripe -v $DIR/$tdir | grep "Default" ||
6610                 error "delete default stripe failed"
6611 }
6612 run_test 65g "directory setstripe -d"
6613
6614 test_65h() {
6615         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6616
6617         test_mkdir $DIR/$tdir
6618         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6619
6620         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6621                 error "setstripe -S failed"
6622         test_mkdir $DIR/$tdir/dd1
6623         [ $($LFS getstripe -c $DIR/$tdir) = $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
6624                 error "stripe info inherit failed"
6625 }
6626 run_test 65h "directory stripe info inherit ===================="
6627
6628 test_65i() {
6629         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6630
6631         save_layout_restore_at_exit $MOUNT
6632
6633         # bug6367: set non-default striping on root directory
6634         $LFS setstripe -S 65536 -c -1 $MOUNT || error "error setting stripe"
6635
6636         # bug12836: getstripe on -1 default directory striping
6637         $LFS getstripe $MOUNT || error "getstripe $MOUNT failed"
6638
6639         # bug12836: getstripe -v on -1 default directory striping
6640         $LFS getstripe -v $MOUNT || error "getstripe -v $MOUNT failed"
6641
6642         # bug12836: new find on -1 default directory striping
6643         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
6644 }
6645 run_test 65i "various tests to set root directory striping"
6646
6647 test_65j() { # bug6367
6648         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6649
6650         sync; sleep 1
6651
6652         # if we aren't already remounting for each test, do so for this test
6653         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
6654                 cleanup || error "failed to unmount"
6655                 setup
6656         fi
6657
6658         save_layout_restore_at_exit $MOUNT
6659
6660         $SETSTRIPE -d $MOUNT || error "setstripe failed"
6661 }
6662 run_test 65j "set default striping on root directory (bug 6367)="
6663
6664 cleaup_65k() {
6665         rm -rf $DIR/$tdir
6666         wait_delete_completed
6667         do_facet $SINGLEMDS "lctl set_param -n \
6668                 osp.$ost*MDT0000.max_create_count=$max_count"
6669         do_facet $SINGLEMDS "lctl set_param -n \
6670                 osp.$ost*MDT0000.create_count=$count"
6671         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
6672         echo $INACTIVE_OSC "is Activate"
6673
6674         wait_osc_import_state mds ost$ostnum FULL
6675 }
6676
6677 test_65k() { # bug11679
6678         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6679         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
6680         remote_mds_nodsh && skip "remote MDS with nodsh"
6681
6682         local disable_precreate=true
6683         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.8.54) ] &&
6684                 disable_precreate=false
6685
6686         echo "Check OST status: "
6687         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
6688                 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
6689
6690         for OSC in $MDS_OSCS; do
6691                 echo $OSC "is active"
6692                 do_facet $SINGLEMDS lctl --device %$OSC activate
6693         done
6694
6695         for INACTIVE_OSC in $MDS_OSCS; do
6696                 local ost=$(osc_to_ost $INACTIVE_OSC)
6697                 local ostnum=$(do_facet $SINGLEMDS lctl get_param -n \
6698                                lov.*md*.target_obd |
6699                                awk -F: /$ost/'{ print $1 }' | head -n 1)
6700
6701                 mkdir -p $DIR/$tdir
6702                 $SETSTRIPE -i $ostnum -c 1 $DIR/$tdir
6703                 createmany -o $DIR/$tdir/$tfile.$ostnum. 1000
6704
6705                 echo "Deactivate: " $INACTIVE_OSC
6706                 do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
6707
6708                 local count=$(do_facet $SINGLEMDS "lctl get_param -n \
6709                               osp.$ost*MDT0000.create_count")
6710                 local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
6711                                   osp.$ost*MDT0000.max_create_count")
6712                 $disable_precreate &&
6713                         do_facet $SINGLEMDS "lctl set_param -n \
6714                                 osp.$ost*MDT0000.max_create_count=0"
6715
6716                 for idx in $(seq 0 $((OSTCOUNT - 1))); do
6717                         [ -f $DIR/$tdir/$idx ] && continue
6718                         echo "$SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx"
6719                         $SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx ||
6720                                 { cleanup_65k;
6721                                   error "setstripe $idx should succeed"; }
6722                         rm -f $DIR/$tdir/$idx || error "rm $idx failed"
6723                 done
6724                 unlinkmany $DIR/$tdir/$tfile.$ostnum. 1000
6725                 rmdir $DIR/$tdir
6726
6727                 do_facet $SINGLEMDS "lctl set_param -n \
6728                         osp.$ost*MDT0000.max_create_count=$max_count"
6729                 do_facet $SINGLEMDS "lctl set_param -n \
6730                         osp.$ost*MDT0000.create_count=$count"
6731                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
6732                 echo $INACTIVE_OSC "is Activate"
6733
6734                 wait_osc_import_state mds ost$ostnum FULL
6735         done
6736 }
6737 run_test 65k "validate manual striping works properly with deactivated OSCs"
6738
6739 test_65l() { # bug 12836
6740         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6741
6742         test_mkdir -p $DIR/$tdir/test_dir
6743         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
6744         $LFS find -mtime -1 $DIR/$tdir >/dev/null
6745 }
6746 run_test 65l "lfs find on -1 stripe dir ========================"
6747
6748 test_65m() {
6749         local layout=$(save_layout $MOUNT)
6750         $RUNAS $SETSTRIPE -c 2 $MOUNT && {
6751                 restore_layout $MOUNT $layout
6752                 error "setstripe should fail by non-root users"
6753         }
6754         true
6755 }
6756 run_test 65m "normal user can't set filesystem default stripe"
6757
6758 # bug 2543 - update blocks count on client
6759 test_66() {
6760         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6761
6762         COUNT=${COUNT:-8}
6763         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
6764         sync; sync_all_data; sync; sync_all_data
6765         cancel_lru_locks osc
6766         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
6767         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
6768 }
6769 run_test 66 "update inode blocks count on client ==============="
6770
6771 meminfo() {
6772         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
6773 }
6774
6775 swap_used() {
6776         swapon -s | awk '($1 == "'$1'") { print $4 }'
6777 }
6778
6779 # bug5265, obdfilter oa2dentry return -ENOENT
6780 # #define OBD_FAIL_SRV_ENOENT 0x217
6781 test_69() {
6782         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6783         remote_ost_nodsh && skip "remote OST with nodsh"
6784
6785         f="$DIR/$tfile"
6786         $SETSTRIPE -c 1 -i 0 $f
6787
6788         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
6789
6790         do_facet ost1 lctl set_param fail_loc=0x217
6791         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
6792         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
6793
6794         do_facet ost1 lctl set_param fail_loc=0
6795         $DIRECTIO write $f 0 2 || error "write error"
6796
6797         cancel_lru_locks osc
6798         $DIRECTIO read $f 0 1 || error "read error"
6799
6800         do_facet ost1 lctl set_param fail_loc=0x217
6801         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
6802
6803         do_facet ost1 lctl set_param fail_loc=0
6804         rm -f $f
6805 }
6806 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
6807
6808 test_71() {
6809         test_mkdir $DIR/$tdir
6810         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
6811         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
6812 }
6813 run_test 71 "Running dbench on lustre (don't segment fault) ===="
6814
6815 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
6816         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6817         [ "$RUNAS_ID" = "$UID" ] &&
6818                 skip_env "RUNAS_ID = UID = $UID -- skipping"
6819         # Check that testing environment is properly set up. Skip if not
6820         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS ||
6821                 skip_env "User $RUNAS_ID does not exist - skipping"
6822
6823         touch $DIR/$tfile
6824         chmod 777 $DIR/$tfile
6825         chmod ug+s $DIR/$tfile
6826         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
6827                 error "$RUNAS dd $DIR/$tfile failed"
6828         # See if we are still setuid/sgid
6829         test -u $DIR/$tfile -o -g $DIR/$tfile &&
6830                 error "S/gid is not dropped on write"
6831         # Now test that MDS is updated too
6832         cancel_lru_locks mdc
6833         test -u $DIR/$tfile -o -g $DIR/$tfile &&
6834                 error "S/gid is not dropped on MDS"
6835         rm -f $DIR/$tfile
6836 }
6837 run_test 72a "Test that remove suid works properly (bug5695) ===="
6838
6839 test_72b() { # bug 24226 -- keep mode setting when size is not changing
6840         local perm
6841
6842         [ "$RUNAS_ID" = "$UID" ] &&
6843                 skip_env "RUNAS_ID = UID = $UID -- skipping"
6844         [ "$RUNAS_ID" -eq 0 ] &&
6845                 skip_env "RUNAS_ID = 0 -- skipping"
6846         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6847         # Check that testing environment is properly set up. Skip if not
6848         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS ||
6849                 skip_env "User $RUNAS_ID does not exist - skipping"
6850
6851         touch $DIR/${tfile}-f{g,u}
6852         test_mkdir $DIR/${tfile}-dg
6853         test_mkdir $DIR/${tfile}-du
6854         chmod 770 $DIR/${tfile}-{f,d}{g,u}
6855         chmod g+s $DIR/${tfile}-{f,d}g
6856         chmod u+s $DIR/${tfile}-{f,d}u
6857         for perm in 777 2777 4777; do
6858                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
6859                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
6860                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
6861                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
6862         done
6863         true
6864 }
6865 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
6866
6867 # bug 3462 - multiple simultaneous MDC requests
6868 test_73() {
6869         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6870
6871         test_mkdir $DIR/d73-1
6872         test_mkdir $DIR/d73-2
6873         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
6874         pid1=$!
6875
6876         lctl set_param fail_loc=0x80000129
6877         $MULTIOP $DIR/d73-1/f73-2 Oc &
6878         sleep 1
6879         lctl set_param fail_loc=0
6880
6881         $MULTIOP $DIR/d73-2/f73-3 Oc &
6882         pid3=$!
6883
6884         kill -USR1 $pid1
6885         wait $pid1 || return 1
6886
6887         sleep 25
6888
6889         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
6890         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
6891         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
6892
6893         rm -rf $DIR/d73-*
6894 }
6895 run_test 73 "multiple MDC requests (should not deadlock)"
6896
6897 test_74a() { # bug 6149, 6184
6898         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6899
6900         touch $DIR/f74a
6901         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
6902         #
6903         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
6904         # will spin in a tight reconnection loop
6905         $LCTL set_param fail_loc=0x8000030e
6906         # get any lock that won't be difficult - lookup works.
6907         ls $DIR/f74a
6908         $LCTL set_param fail_loc=0
6909         rm -f $DIR/f74a
6910         true
6911 }
6912 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
6913
6914 test_74b() { # bug 13310
6915         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6916
6917         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
6918         #
6919         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
6920         # will spin in a tight reconnection loop
6921         $LCTL set_param fail_loc=0x8000030e
6922         # get a "difficult" lock
6923         touch $DIR/f74b
6924         $LCTL set_param fail_loc=0
6925         rm -f $DIR/f74b
6926         true
6927 }
6928 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
6929
6930 test_74c() {
6931         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6932
6933         #define OBD_FAIL_LDLM_NEW_LOCK
6934         $LCTL set_param fail_loc=0x319
6935         touch $DIR/$tfile && error "touch successful"
6936         $LCTL set_param fail_loc=0
6937         true
6938 }
6939 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
6940
6941 num_inodes() {
6942         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
6943 }
6944
6945 test_76() { # Now for bug 20433, added originally in bug 1443
6946         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6947
6948         local CPUS=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
6949
6950         cancel_lru_locks osc
6951         BEFORE_INODES=$(num_inodes)
6952         echo "before inodes: $BEFORE_INODES"
6953         local COUNT=1000
6954         [ "$SLOW" = "no" ] && COUNT=100
6955         for i in $(seq $COUNT); do
6956                 touch $DIR/$tfile
6957                 rm -f $DIR/$tfile
6958         done
6959         cancel_lru_locks osc
6960         AFTER_INODES=$(num_inodes)
6961         echo "after inodes: $AFTER_INODES"
6962         local wait=0
6963         while [[ $((AFTER_INODES-1*${CPUS:-1})) -gt $BEFORE_INODES ]]; do
6964                 sleep 2
6965                 AFTER_INODES=$(num_inodes)
6966                 wait=$((wait+2))
6967                 echo "wait $wait seconds inodes: $AFTER_INODES"
6968                 if [ $wait -gt 30 ]; then
6969                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
6970                 fi
6971         done
6972 }
6973 run_test 76 "confirm clients recycle inodes properly ===="
6974
6975
6976 export ORIG_CSUM=""
6977 set_checksums()
6978 {
6979         # Note: in sptlrpc modes which enable its own bulk checksum, the
6980         # original crc32_le bulk checksum will be automatically disabled,
6981         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
6982         # will be checked by sptlrpc code against sptlrpc bulk checksum.
6983         # In this case set_checksums() will not be no-op, because sptlrpc
6984         # bulk checksum will be enabled all through the test.
6985
6986         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
6987         lctl set_param -n osc.*.checksums $1
6988         return 0
6989 }
6990
6991 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
6992                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
6993 CKSUM_TYPES=${CKSUM_TYPES:-$(lctl get_param -n osc.*osc-[^mM]*.checksum_type |
6994                              tr -d [] | head -n1)}
6995 set_checksum_type()
6996 {
6997         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
6998         log "set checksum type to $1"
6999         return 0
7000 }
7001 F77_TMP=$TMP/f77-temp
7002 F77SZ=8
7003 setup_f77() {
7004         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
7005                 error "error writing to $F77_TMP"
7006 }
7007
7008 test_77a() { # bug 10889
7009         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7010         $GSS && skip_env "could not run with gss"
7011
7012         [ ! -f $F77_TMP ] && setup_f77
7013         set_checksums 1
7014         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
7015         set_checksums 0
7016         rm -f $DIR/$tfile
7017 }
7018 run_test 77a "normal checksum read/write operation"
7019
7020 test_77b() { # bug 10889
7021         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7022         $GSS && skip_env "could not run with gss"
7023
7024         [ ! -f $F77_TMP ] && setup_f77
7025         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7026         $LCTL set_param fail_loc=0x80000409
7027         set_checksums 1
7028
7029         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
7030                 error "dd error: $?"
7031         $LCTL set_param fail_loc=0
7032
7033         for algo in $CKSUM_TYPES; do
7034                 cancel_lru_locks osc
7035                 set_checksum_type $algo
7036                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
7037                 $LCTL set_param fail_loc=0x80000408
7038                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
7039                 $LCTL set_param fail_loc=0
7040         done
7041         set_checksums 0
7042         set_checksum_type $ORIG_CSUM_TYPE
7043         rm -f $DIR/$tfile
7044 }
7045 run_test 77b "checksum error on client write, read"
7046
7047 cleanup_77c() {
7048         trap 0
7049         set_checksums 0
7050         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=0
7051         $check_ost &&
7052                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=0
7053         [ -n "$osc_file_prefix" ] && rm -f ${osc_file_prefix}*
7054         $check_ost && [ -n "$ost_file_prefix" ] &&
7055                 do_facet ost1 rm -f ${ost_file_prefix}\*
7056 }
7057
7058 test_77c() {
7059         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7060         $GSS && skip_env "could not run with gss"
7061         remote_ost_nodsh && skip "remote OST with nodsh"
7062
7063         local bad1
7064         local osc_file_prefix
7065         local osc_file
7066         local check_ost=false
7067         local ost_file_prefix
7068         local ost_file
7069         local orig_cksum
7070         local dump_cksum
7071         local fid
7072
7073         # ensure corruption will occur on first OSS/OST
7074         $LFS setstripe -i 0 $DIR/$tfile
7075
7076         [ ! -f $F77_TMP ] && setup_f77
7077         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
7078                 error "dd write error: $?"
7079         fid=$($LFS path2fid $DIR/$tfile)
7080
7081         if [ $(lustre_version_code ost1) -ge $(version_code 2.9.57) ]
7082         then
7083                 check_ost=true
7084                 ost_file_prefix=$(do_facet ost1 $LCTL get_param -n debug_path)
7085                 ost_file_prefix=${ost_file_prefix}-checksum_dump-ost-\\${fid}
7086         else
7087                 echo "OSS do not support bulk pages dump upon error"
7088         fi
7089
7090         osc_file_prefix=$($LCTL get_param -n debug_path)
7091         osc_file_prefix=${osc_file_prefix}-checksum_dump-osc-\\${fid}
7092
7093         trap cleanup_77c EXIT
7094
7095         set_checksums 1
7096         # enable bulk pages dump upon error on Client
7097         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=1
7098         # enable bulk pages dump upon error on OSS
7099         $check_ost &&
7100                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=1
7101
7102         # flush Client cache to allow next read to reach OSS
7103         cancel_lru_locks osc
7104
7105         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE       0x408
7106         $LCTL set_param fail_loc=0x80000408
7107         dd if=$DIR/$tfile of=/dev/null bs=1M || error "dd read error: $?"
7108         $LCTL set_param fail_loc=0
7109
7110         rm -f $DIR/$tfile
7111
7112         # check cksum dump on Client
7113         osc_file=$(ls ${osc_file_prefix}*)
7114         [ -n "$osc_file" ] || error "no checksum dump file on Client"
7115         # OBD_FAIL_OSC_CHECKSUM_RECEIVE corrupts with "bad1" at start of file
7116         bad1=$(dd if=$osc_file bs=1 count=4 2>/dev/null) || error "dd error: $?"
7117         [ $bad1 == "bad1" ] || error "unexpected corrupt pattern"
7118         orig_cksum=$(dd if=$F77_TMP bs=1 skip=4 count=1048572 2>/dev/null |
7119                      cksum)
7120         dump_cksum=$(dd if=$osc_file bs=1 skip=4 2>/dev/null | cksum)
7121         [[ "$orig_cksum" == "$dump_cksum" ]] ||
7122                 error "dump content does not match on Client"
7123
7124         $check_ost || skip "No need to check cksum dump on OSS"
7125
7126         # check cksum dump on OSS
7127         ost_file=$(do_facet ost1 ls ${ost_file_prefix}\*)
7128         [ -n "$ost_file" ] || error "no checksum dump file on OSS"
7129         orig_cksum=$(dd if=$F77_TMP bs=1048576 count=1 2>/dev/null | cksum)
7130         dump_cksum=$(do_facet ost1 dd if=$ost_file 2>/dev/null \| cksum)
7131         [[ "$orig_cksum" == "$dump_cksum" ]] ||
7132                 error "dump content does not match on OSS"
7133
7134         cleanup_77c
7135 }
7136 run_test 77c "checksum error on client read with debug"
7137
7138 test_77d() { # bug 10889
7139         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7140         $GSS && skip_env "could not run with gss"
7141
7142         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7143         $LCTL set_param fail_loc=0x80000409
7144         set_checksums 1
7145         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
7146                 error "direct write: rc=$?"
7147         $LCTL set_param fail_loc=0
7148         set_checksums 0
7149
7150         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
7151         $LCTL set_param fail_loc=0x80000408
7152         set_checksums 1
7153         cancel_lru_locks osc
7154         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
7155                 error "direct read: rc=$?"
7156         $LCTL set_param fail_loc=0
7157         set_checksums 0
7158 }
7159 run_test 77d "checksum error on OST direct write, read"
7160
7161 test_77f() { # bug 10889
7162         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7163         $GSS && skip_env "could not run with gss"
7164
7165         set_checksums 1
7166         for algo in $CKSUM_TYPES; do
7167                 cancel_lru_locks osc
7168                 set_checksum_type $algo
7169                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7170                 $LCTL set_param fail_loc=0x409
7171                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
7172                         error "direct write succeeded"
7173                 $LCTL set_param fail_loc=0
7174         done
7175         set_checksum_type $ORIG_CSUM_TYPE
7176         set_checksums 0
7177 }
7178 run_test 77f "repeat checksum error on write (expect error)"
7179
7180 test_77g() { # bug 10889
7181         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7182         $GSS && skip_env "could not run with gss"
7183         remote_ost_nodsh && skip "remote OST with nodsh"
7184
7185         [ ! -f $F77_TMP ] && setup_f77
7186
7187         local file=$DIR/$tfile
7188         stack_trap "rm -f $file" EXIT
7189
7190         $SETSTRIPE -c 1 -i 0 $file
7191         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
7192         do_facet ost1 lctl set_param fail_loc=0x8000021a
7193         set_checksums 1
7194         dd if=$F77_TMP of=$file bs=1M count=$F77SZ ||
7195                 error "write error: rc=$?"
7196         do_facet ost1 lctl set_param fail_loc=0
7197         set_checksums 0
7198
7199         cancel_lru_locks osc
7200         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
7201         do_facet ost1 lctl set_param fail_loc=0x8000021b
7202         set_checksums 1
7203         cmp $F77_TMP $file || error "file compare failed"
7204         do_facet ost1 lctl set_param fail_loc=0
7205         set_checksums 0
7206 }
7207 run_test 77g "checksum error on OST write, read"
7208
7209 test_77k() { # LU-10906
7210         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7211         $GSS && skip_env "could not run with gss"
7212
7213         local cksum_param="osc.$FSNAME*.checksums"
7214         local get_checksum="$LCTL get_param -n $cksum_param | head -n1"
7215         local checksum
7216         local i
7217
7218         [ "$ORIG_CSUM" ] || ORIG_CSUM=$(eval $get_checksum)
7219         stack_trap "wait_update $HOSTNAME '$get_checksum' $ORIG_CSUM" EXIT
7220         stack_trap "do_facet mgs $LCTL set_param -P $cksum_param=$ORIG_CSUM" \
7221                 EXIT
7222
7223         for i in 0 1; do
7224                 do_facet mgs $LCTL set_param -P $cksum_param=$i ||
7225                         error "failed to set checksum=$i on MGS"
7226                 wait_update $HOSTNAME "$get_checksum" $i
7227                 #remount
7228                 echo "remount client, checksum should be $i"
7229                 remount_client $MOUNT || "failed to remount client"
7230                 checksum=$(eval $get_checksum)
7231                 [ $checksum -eq $i ] || error "checksum($checksum) != $i"
7232         done
7233
7234         for opt in "checksum" "nochecksum"; do
7235                 #remount with mount option
7236                 echo "remount client with option $opt, checksum should be $i"
7237                 umount_client $MOUNT || "failed to umount client"
7238                 mount_client $MOUNT "$MOUNT_OPTS,$opt" ||
7239                         "failed to mount client with option '$opt'"
7240                 checksum=$(eval $get_checksum)
7241                 [ $checksum -eq $i ] || error "checksum($checksum) != $i"
7242                 i=$((i - 1))
7243         done
7244
7245         remount_client $MOUNT || "failed to remount client"
7246 }
7247 run_test 77k "enable/disable checksum correctly"
7248
7249 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
7250 rm -f $F77_TMP
7251 unset F77_TMP
7252
7253 cleanup_test_78() {
7254         trap 0
7255         rm -f $DIR/$tfile
7256 }
7257
7258 test_78() { # bug 10901
7259         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7260         remote_ost || skip_env "local OST"
7261
7262         NSEQ=5
7263         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
7264         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
7265         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
7266         echo "MemTotal: $MEMTOTAL"
7267
7268         # reserve 256MB of memory for the kernel and other running processes,
7269         # and then take 1/2 of the remaining memory for the read/write buffers.
7270         if [ $MEMTOTAL -gt 512 ] ;then
7271                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
7272         else
7273                 # for those poor memory-starved high-end clusters...
7274                 MEMTOTAL=$((MEMTOTAL / 2))
7275         fi
7276         echo "Mem to use for directio: $MEMTOTAL"
7277
7278         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
7279         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
7280         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
7281         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
7282                 head -n1)
7283         echo "Smallest OST: $SMALLESTOST"
7284         [[ $SMALLESTOST -lt 10240 ]] &&
7285                 skip "too small OSTSIZE, useless to run large O_DIRECT test"
7286
7287         trap cleanup_test_78 EXIT
7288
7289         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
7290                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
7291
7292         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
7293         echo "File size: $F78SIZE"
7294         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
7295         for i in $(seq 1 $NSEQ); do
7296                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
7297                 echo directIO rdwr round $i of $NSEQ
7298                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
7299         done
7300
7301         cleanup_test_78
7302 }
7303 run_test 78 "handle large O_DIRECT writes correctly ============"
7304
7305 test_79() { # bug 12743
7306         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7307
7308         wait_delete_completed
7309
7310         BKTOTAL=$(calc_osc_kbytes kbytestotal)
7311         BKFREE=$(calc_osc_kbytes kbytesfree)
7312         BKAVAIL=$(calc_osc_kbytes kbytesavail)
7313
7314         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
7315         DFTOTAL=`echo $STRING | cut -d, -f1`
7316         DFUSED=`echo $STRING  | cut -d, -f2`
7317         DFAVAIL=`echo $STRING | cut -d, -f3`
7318         DFFREE=$(($DFTOTAL - $DFUSED))
7319
7320         ALLOWANCE=$((64 * $OSTCOUNT))
7321
7322         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
7323            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
7324                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
7325         fi
7326         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
7327            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
7328                 error "df free($DFFREE) mismatch OST free($BKFREE)"
7329         fi
7330         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
7331            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
7332                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
7333         fi
7334 }
7335 run_test 79 "df report consistency check ======================="
7336
7337 test_80() { # bug 10718
7338         remote_ost_nodsh && skip "remote OST with nodsh"
7339         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7340
7341         # relax strong synchronous semantics for slow backends like ZFS
7342         local soc="obdfilter.*.sync_on_lock_cancel"
7343         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
7344         local hosts=
7345         if [ "$soc_old" != "never" ] &&
7346                 [ "$(facet_fstype ost1)" != "ldiskfs" ]; then
7347                         hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
7348                                 facet_active_host $host; done | sort -u)
7349                         do_nodes $hosts lctl set_param $soc=never
7350         fi
7351
7352         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
7353         sync; sleep 1; sync
7354         local BEFORE=`date +%s`
7355         cancel_lru_locks osc
7356         local AFTER=`date +%s`
7357         local DIFF=$((AFTER-BEFORE))
7358         if [ $DIFF -gt 1 ] ; then
7359                 error "elapsed for 1M@1T = $DIFF"
7360         fi
7361
7362         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
7363
7364         rm -f $DIR/$tfile
7365 }
7366 run_test 80 "Page eviction is equally fast at high offsets too  ===="
7367
7368 test_81a() { # LU-456
7369         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7370         remote_ost_nodsh && skip "remote OST with nodsh"
7371
7372         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
7373         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
7374         do_facet ost1 lctl set_param fail_loc=0x80000228
7375
7376         # write should trigger a retry and success
7377         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
7378         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7379         RC=$?
7380         if [ $RC -ne 0 ] ; then
7381                 error "write should success, but failed for $RC"
7382         fi
7383 }
7384 run_test 81a "OST should retry write when get -ENOSPC ==============="
7385
7386 test_81b() { # LU-456
7387         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7388         remote_ost_nodsh && skip "remote OST with nodsh"
7389
7390         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
7391         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
7392         do_facet ost1 lctl set_param fail_loc=0x228
7393
7394         # write should retry several times and return -ENOSPC finally
7395         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
7396         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7397         RC=$?
7398         ENOSPC=28
7399         if [ $RC -ne $ENOSPC ] ; then
7400                 error "dd should fail for -ENOSPC, but succeed."
7401         fi
7402 }
7403 run_test 81b "OST should return -ENOSPC when retry still fails ======="
7404
7405 test_82() { # LU-1031
7406         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
7407         local gid1=14091995
7408         local gid2=16022000
7409
7410         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
7411         local MULTIPID1=$!
7412         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
7413         local MULTIPID2=$!
7414         kill -USR1 $MULTIPID2
7415         sleep 2
7416         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
7417                 error "First grouplock does not block second one"
7418         else
7419                 echo "Second grouplock blocks first one"
7420         fi
7421         kill -USR1 $MULTIPID1
7422         wait $MULTIPID1
7423         wait $MULTIPID2
7424 }
7425 run_test 82 "Basic grouplock test"
7426
7427 test_83() {
7428         local sfile="/boot/System.map-$(uname -r)"
7429         [ ! -f $sfile ] && skip "No $sfile found"
7430         # define OBD_FAIL_LLITE_PTASK_IO_FAIL 0x140d
7431         $LCTL set_param fail_loc=0x140d
7432         cp $sfile $DIR/$tfile || error "write failed"
7433         diff -c $sfile $DIR/$tfile || error "files are different"
7434         $LCTL set_param fail_loc=0
7435         rm -f $DIR/$tfile
7436 }
7437 run_test 83 "Short write in ptask ==============================="
7438
7439 test_99() {
7440         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs"
7441
7442         test_mkdir $DIR/$tdir.cvsroot
7443         chown $RUNAS_ID $DIR/$tdir.cvsroot
7444
7445         cd $TMP
7446         $RUNAS cvs -d $DIR/$tdir.cvsroot init || error "cvs init failed"
7447
7448         cd /etc/init.d
7449         # some versions of cvs import exit(1) when asked to import links or
7450         # files they can't read.  ignore those files.
7451         local toignore=$(find . -type l -printf '-I %f\n' -o \
7452                          ! -perm /4 -printf '-I %f\n')
7453         $RUNAS cvs -d $DIR/$tdir.cvsroot import -m "nomesg" $toignore \
7454                 $tdir.reposname vtag rtag
7455
7456         cd $DIR
7457         test_mkdir $DIR/$tdir.reposname
7458         chown $RUNAS_ID $DIR/$tdir.reposname
7459         $RUNAS cvs -d $DIR/$tdir.cvsroot co $tdir.reposname
7460
7461         cd $DIR/$tdir.reposname
7462         $RUNAS touch foo99
7463         $RUNAS cvs add -m 'addmsg' foo99
7464         $RUNAS cvs update
7465         $RUNAS cvs commit -m 'nomsg' foo99
7466         rm -fr $DIR/$tdir.cvsroot
7467 }
7468 run_test 99 "cvs strange file/directory operations"
7469
7470 test_100() {
7471         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7472         [[ "$NETTYPE" =~ tcp ]] ||
7473                 skip_env "TCP secure port test, not useful for NETTYPE=$NETTYPE"
7474         remote_ost_nodsh && skip "remote OST with nodsh"
7475         remote_mds_nodsh && skip "remote MDS with nodsh"
7476         remote_servers ||
7477                 skip "useless for local single node setup"
7478
7479         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
7480                 [ "$PROT" != "tcp" ] && continue
7481                 RPORT=$(echo $REMOTE | cut -d: -f2)
7482                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
7483
7484                 rc=0
7485                 LPORT=`echo $LOCAL | cut -d: -f2`
7486                 if [ $LPORT -ge 1024 ]; then
7487                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
7488                         netstat -tna
7489                         error_exit "local: $LPORT > 1024, remote: $RPORT"
7490                 fi
7491         done
7492         [ "$rc" = 0 ] || error_exit "privileged port not found" )
7493 }
7494 run_test 100 "check local port using privileged port ==========="
7495
7496 function get_named_value()
7497 {
7498     local tag
7499
7500     tag=$1
7501     while read ;do
7502         line=$REPLY
7503         case $line in
7504         $tag*)
7505             echo $line | sed "s/^$tag[ ]*//"
7506             break
7507             ;;
7508         esac
7509     done
7510 }
7511
7512 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
7513                    awk '/^max_cached_mb/ { print $2 }')
7514
7515 cleanup_101a() {
7516         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
7517         trap 0
7518 }
7519
7520 test_101a() {
7521         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7522         [ $MDSCOUNT -ge 2 ] && skip_env "needs < 2 MDTs" #LU-4322
7523
7524         local s
7525         local discard
7526         local nreads=10000
7527         local cache_limit=32
7528
7529         $LCTL set_param -n osc.*-osc*.rpc_stats 0
7530         trap cleanup_101a EXIT
7531         $LCTL set_param -n llite.*.read_ahead_stats 0
7532         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
7533
7534         #
7535         # randomly read 10000 of 64K chunks from file 3x 32MB in size
7536         #
7537         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
7538         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
7539
7540         discard=0
7541         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
7542                 get_named_value 'read but discarded' | cut -d" " -f1); do
7543                         discard=$(($discard + $s))
7544         done
7545         cleanup_101a
7546
7547         if [[ $(($discard * 10)) -gt $nreads ]]; then
7548                 $LCTL get_param osc.*-osc*.rpc_stats
7549                 $LCTL get_param llite.*.read_ahead_stats
7550                 error "too many ($discard) discarded pages"
7551         fi
7552         rm -f $DIR/$tfile || true
7553 }
7554 run_test 101a "check read-ahead for random reads"
7555
7556 setup_test101bc() {
7557         test_mkdir $DIR/$tdir
7558         local STRIPE_SIZE=$1
7559         local FILE_LENGTH=$2
7560         STRIPE_OFFSET=0
7561
7562         local FILE_SIZE_MB=$((FILE_LENGTH / STRIPE_SIZE))
7563
7564         local list=$(comma_list $(osts_nodes))
7565         set_osd_param $list '' read_cache_enable 0
7566         set_osd_param $list '' writethrough_cache_enable 0
7567
7568         trap cleanup_test101bc EXIT
7569         # prepare the read-ahead file
7570         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
7571
7572         dd if=/dev/zero of=$DIR/$tfile bs=$STRIPE_SIZE \
7573                                 count=$FILE_SIZE_MB 2> /dev/null
7574
7575 }
7576
7577 cleanup_test101bc() {
7578         trap 0
7579         rm -rf $DIR/$tdir
7580         rm -f $DIR/$tfile
7581
7582         local list=$(comma_list $(osts_nodes))
7583         set_osd_param $list '' read_cache_enable 1
7584         set_osd_param $list '' writethrough_cache_enable 1
7585 }
7586
7587 calc_total() {
7588         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
7589 }
7590
7591 ra_check_101() {
7592         local READ_SIZE=$1
7593         local STRIPE_SIZE=$2
7594         local FILE_LENGTH=$3
7595         local RA_INC=1048576
7596         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
7597         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
7598                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
7599         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
7600                         get_named_value 'read but discarded' |
7601                         cut -d" " -f1 | calc_total)
7602         if [[ $DISCARD -gt $discard_limit ]]; then
7603                 $LCTL get_param llite.*.read_ahead_stats
7604                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
7605         else
7606                 echo "Read-ahead success for size ${READ_SIZE}"
7607         fi
7608 }
7609
7610 test_101b() {
7611         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7612         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
7613
7614         local STRIPE_SIZE=1048576
7615         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
7616
7617         if [ $SLOW == "yes" ]; then
7618                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
7619         else
7620                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
7621         fi
7622
7623         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
7624
7625         # prepare the read-ahead file
7626         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
7627         cancel_lru_locks osc
7628         for BIDX in 2 4 8 16 32 64 128 256
7629         do
7630                 local BSIZE=$((BIDX*4096))
7631                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
7632                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
7633                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
7634                 $LCTL set_param -n llite.*.read_ahead_stats 0
7635                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
7636                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
7637                 cancel_lru_locks osc
7638                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
7639         done
7640         cleanup_test101bc
7641         true
7642 }
7643 run_test 101b "check stride-io mode read-ahead ================="
7644
7645 test_101c() {
7646         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7647
7648         local STRIPE_SIZE=1048576
7649         local FILE_LENGTH=$((STRIPE_SIZE*100))
7650         local nreads=10000
7651         local osc_rpc_stats
7652
7653         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
7654
7655         cancel_lru_locks osc
7656         $LCTL set_param osc.*.rpc_stats 0
7657         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
7658         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
7659                 local stats=$($LCTL get_param -n $osc_rpc_stats)
7660                 local lines=$(echo "$stats" | awk 'END {print NR;}')
7661                 local size
7662
7663                 if [ $lines -le 20 ]; then
7664                         continue
7665                 fi
7666                 for size in 1 2 4 8; do
7667                         local rpc=$(echo "$stats" |
7668                                     awk '($1 == "'$size':") {print $2; exit; }')
7669                         [ $rpc != 0 ] &&
7670                                 error "Small $((size*4))k read IO $rpc !"
7671                 done
7672                 echo "$osc_rpc_stats check passed!"
7673         done
7674         cleanup_test101bc
7675         true
7676 }
7677 run_test 101c "check stripe_size aligned read-ahead ================="
7678
7679 set_read_ahead() {
7680         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
7681         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
7682 }
7683
7684 test_101d() {
7685         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7686
7687         local file=$DIR/$tfile
7688         local sz_MB=${FILESIZE_101d:-500}
7689         local ra_MB=${READAHEAD_MB:-40}
7690
7691         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
7692         [ $free_MB -lt $sz_MB ] &&
7693                 skip "Need free space ${sz_MB}M, have ${free_MB}M"
7694
7695         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
7696         $SETSTRIPE -c -1 $file || error "setstripe failed"
7697
7698         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
7699         echo Cancel LRU locks on lustre client to flush the client cache
7700         cancel_lru_locks osc
7701
7702         echo Disable read-ahead
7703         local old_READAHEAD=$(set_read_ahead 0)
7704
7705         echo Reading the test file $file with read-ahead disabled
7706         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
7707
7708         echo Cancel LRU locks on lustre client to flush the client cache
7709         cancel_lru_locks osc
7710         echo Enable read-ahead with ${ra_MB}MB
7711         set_read_ahead $ra_MB
7712
7713         echo Reading the test file $file with read-ahead enabled
7714         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
7715
7716         echo "read-ahead disabled time read $raOFF"
7717         echo "read-ahead enabled  time read $raON"
7718
7719         set_read_ahead $old_READAHEAD
7720         rm -f $file
7721         wait_delete_completed
7722
7723         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
7724                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
7725 }
7726 run_test 101d "file read with and without read-ahead enabled"
7727
7728 test_101e() {
7729         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7730
7731         local file=$DIR/$tfile
7732         local size_KB=500  #KB
7733         local count=100
7734         local bsize=1024
7735
7736         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
7737         local need_KB=$((count * size_KB))
7738         [[ $free_KB -le $need_KB ]] &&
7739                 skip_env "Need free space $need_KB, have $free_KB"
7740
7741         echo "Creating $count ${size_KB}K test files"
7742         for ((i = 0; i < $count; i++)); do
7743                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
7744         done
7745
7746         echo "Cancel LRU locks on lustre client to flush the client cache"
7747         cancel_lru_locks $OSC
7748
7749         echo "Reset readahead stats"
7750         $LCTL set_param -n llite.*.read_ahead_stats 0
7751
7752         for ((i = 0; i < $count; i++)); do
7753                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
7754         done
7755
7756         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
7757                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
7758
7759         for ((i = 0; i < $count; i++)); do
7760                 rm -rf $file.$i 2>/dev/null
7761         done
7762
7763         #10000 means 20% reads are missing in readahead
7764         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
7765 }
7766 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
7767
7768 test_101f() {
7769         which iozone || skip_env "no iozone installed"
7770
7771         local old_debug=$($LCTL get_param debug)
7772         old_debug=${old_debug#*=}
7773         $LCTL set_param debug="reada mmap"
7774
7775         # create a test file
7776         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
7777
7778         echo Cancel LRU locks on lustre client to flush the client cache
7779         cancel_lru_locks osc
7780
7781         echo Reset readahead stats
7782         $LCTL set_param -n llite.*.read_ahead_stats 0
7783
7784         echo mmap read the file with small block size
7785         iozone -i 1 -u 1 -l 1 -+n -r 32k -s 128m -B -f $DIR/$tfile \
7786                 > /dev/null 2>&1
7787
7788         echo checking missing pages
7789         $LCTL get_param llite.*.read_ahead_stats
7790         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
7791                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
7792
7793         $LCTL set_param debug="$old_debug"
7794         [ $miss -lt 3 ] || error "misses too much pages ('$miss')!"
7795         rm -f $DIR/$tfile
7796 }
7797 run_test 101f "check mmap read performance"
7798
7799 test_101g_brw_size_test() {
7800         local mb=$1
7801         local pages=$((mb * 1048576 / $(page_size)))
7802         local file=$DIR/$tfile
7803
7804         $LCTL set_param osc.*.max_pages_per_rpc=${mb}M ||
7805                 { error "unable to set max_pages_per_rpc=${mb}M"; return 1; }
7806         for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
7807                 [ $mp -ne $pages ] && error "max_pages_per_rpc $mp != $pages" &&
7808                         return 2
7809         done
7810
7811         stack_trap "rm -f $file" EXIT
7812         $LCTL set_param -n osc.*.rpc_stats=0
7813
7814         # 10 RPCs should be enough for the test
7815         local count=10
7816         dd if=/dev/zero of=$file bs=${mb}M count=$count ||
7817                 { error "dd write ${mb} MB blocks failed"; return 3; }
7818         cancel_lru_locks osc
7819         dd of=/dev/null if=$file bs=${mb}M count=$count ||
7820                 { error "dd write ${mb} MB blocks failed"; return 4; }
7821
7822         # calculate number of full-sized read and write RPCs
7823         rpcs=($($LCTL get_param -n 'osc.*.rpc_stats' |
7824                 sed -n '/pages per rpc/,/^$/p' |
7825                 awk '/'$pages':/ { reads += $2; writes += $6 }; \
7826                 END { print reads,writes }'))
7827         [ ${rpcs[0]} -ne $count ] && error "${rpcs[0]} != $count read RPCs" &&
7828                 return 5
7829         [ ${rpcs[1]} -ne $count ] && error "${rpcs[1]} != $count write RPCs" &&
7830                 return 6
7831
7832         return 0
7833 }
7834
7835 test_101g() {
7836         remote_ost_nodsh && skip "remote OST with nodsh"
7837
7838         local rpcs
7839         local osts=$(get_facets OST)
7840         local list=$(comma_list $(osts_nodes))
7841         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
7842         local brw_size="obdfilter.*.brw_size"
7843         local ostver=$(lustre_version_code ost1)
7844         local cliver=$(lustre_version_code client)
7845
7846         $LFS setstripe -i 0 -c 1 $DIR/$tfile
7847
7848         local orig_mb=$(do_facet ost1 $LCTL get_param -n $brw_size | head -n 1)
7849         if [ $ostver -ge $(version_code 2.8.52) -o \
7850              \( $ostver -ge $(version_code 2.7.17) -a \
7851                 $ostver -lt $(version_code 2.7.50) \) ] &&
7852            [ $cliver -ge $(version_code 2.8.52) -o \
7853              \( $cliver -ge $(version_code 2.7.17) -a \
7854                 $cliver -lt $(version_code 2.7.50) \) ]; then
7855                 [ $ostver -ge $(version_code 2.9.52) ] && suffix="M"
7856                 if [[ $orig_mb -lt 16 ]]; then
7857                         save_lustre_params $osts "$brw_size" > $p
7858                         do_nodes $list $LCTL set_param -n $brw_size=16$suffix ||
7859                                 error "set 16MB RPC size failed"
7860
7861                         echo "remount client to enable new RPC size"
7862                         remount_client $MOUNT || error "remount_client failed"
7863                 fi
7864
7865                 test_101g_brw_size_test 16 || error "16MB RPC test failed"
7866                 # should be able to set brw_size=12, but no rpc_stats for that
7867                 test_101g_brw_size_test 8 || error "8MB RPC test failed"
7868         fi
7869
7870         test_101g_brw_size_test 4 || error "4MB RPC test failed"
7871
7872         if [[ $orig_mb -lt 16 ]]; then
7873                 restore_lustre_params < $p
7874                 remount_client $MOUNT || error "remount_client restore failed"
7875         fi
7876
7877         rm -f $p $DIR/$tfile
7878 }
7879 run_test 101g "Big bulk(4/16 MiB) readahead"
7880
7881 setup_test102() {
7882         test_mkdir $DIR/$tdir
7883         chown $RUNAS_ID $DIR/$tdir
7884         STRIPE_SIZE=65536
7885         STRIPE_OFFSET=1
7886         STRIPE_COUNT=$OSTCOUNT
7887         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
7888
7889         trap cleanup_test102 EXIT
7890         cd $DIR
7891         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
7892         cd $DIR/$tdir
7893         for num in 1 2 3 4; do
7894                 for count in $(seq 1 $STRIPE_COUNT); do
7895                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
7896                                 local size=`expr $STRIPE_SIZE \* $num`
7897                                 local file=file"$num-$idx-$count"
7898                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
7899                         done
7900                 done
7901         done
7902
7903         cd $DIR
7904         $1 tar cf $TMP/f102.tar $tdir --xattrs
7905 }
7906
7907 cleanup_test102() {
7908         trap 0
7909         rm -f $TMP/f102.tar
7910         rm -rf $DIR/d0.sanity/d102
7911 }
7912
7913 test_102a() {
7914         [ "$UID" != 0 ] && skip "must run as root"
7915         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
7916                 skip_env "must have user_xattr"
7917
7918         [ -z "$(which setfattr 2>/dev/null)" ] &&
7919                 skip_env "could not find setfattr"
7920
7921         local testfile=$DIR/$tfile
7922
7923         touch $testfile
7924         echo "set/get xattr..."
7925         setfattr -n trusted.name1 -v value1 $testfile ||
7926                 error "setfattr -n trusted.name1=value1 $testfile failed"
7927         getfattr -n trusted.name1 $testfile 2> /dev/null |
7928           grep "trusted.name1=.value1" ||
7929                 error "$testfile missing trusted.name1=value1"
7930
7931         setfattr -n user.author1 -v author1 $testfile ||
7932                 error "setfattr -n user.author1=author1 $testfile failed"
7933         getfattr -n user.author1 $testfile 2> /dev/null |
7934           grep "user.author1=.author1" ||
7935                 error "$testfile missing trusted.author1=author1"
7936
7937         echo "listxattr..."
7938         setfattr -n trusted.name2 -v value2 $testfile ||
7939                 error "$testfile unable to set trusted.name2"
7940         setfattr -n trusted.name3 -v value3 $testfile ||
7941                 error "$testfile unable to set trusted.name3"
7942         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
7943             grep "trusted.name" | wc -l) -eq 3 ] ||
7944                 error "$testfile missing 3 trusted.name xattrs"
7945
7946         setfattr -n user.author2 -v author2 $testfile ||
7947                 error "$testfile unable to set user.author2"
7948         setfattr -n user.author3 -v author3 $testfile ||
7949                 error "$testfile unable to set user.author3"
7950         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
7951             grep "user.author" | wc -l) -eq 3 ] ||
7952                 error "$testfile missing 3 user.author xattrs"
7953
7954         echo "remove xattr..."
7955         setfattr -x trusted.name1 $testfile ||
7956                 error "$testfile error deleting trusted.name1"
7957         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
7958                 error "$testfile did not delete trusted.name1 xattr"
7959
7960         setfattr -x user.author1 $testfile ||
7961                 error "$testfile error deleting user.author1"
7962         echo "set lustre special xattr ..."
7963         $LFS setstripe -c1 $testfile
7964         local lovea=$(getfattr -n "trusted.lov" -e hex $testfile |
7965                 awk -F "=" '/trusted.lov/ { print $2 }' )
7966         setfattr -n "trusted.lov" -v $lovea $testfile ||
7967                 error "$testfile doesn't ignore setting trusted.lov again"
7968         setfattr -n "trusted.lov" -v "invalid_value" $testfile &&
7969                 error "$testfile allow setting invalid trusted.lov"
7970         rm -f $testfile
7971 }
7972 run_test 102a "user xattr test =================================="
7973
7974 test_102b() {
7975         [ -z "$(which setfattr 2>/dev/null)" ] &&
7976                 skip_env "could not find setfattr"
7977         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
7978
7979         # b10930: get/set/list trusted.lov xattr
7980         echo "get/set/list trusted.lov xattr ..."
7981         local testfile=$DIR/$tfile
7982         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
7983                 error "setstripe failed"
7984         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
7985                 error "getstripe failed"
7986         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
7987                 error "can't get trusted.lov from $testfile"
7988
7989         local testfile2=${testfile}2
7990         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
7991                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
7992
7993         $MCREATE $testfile2
7994         setfattr -n trusted.lov -v $value $testfile2
7995         local stripe_size=$($GETSTRIPE -S $testfile2)
7996         local stripe_count=$($GETSTRIPE -c $testfile2)
7997         [[ $stripe_size -eq 65536 ]] ||
7998                 error "stripe size $stripe_size != 65536"
7999         [[ $stripe_count -eq $STRIPECOUNT ]] ||
8000                 error "stripe count $stripe_count != $STRIPECOUNT"
8001         rm -f $DIR/$tfile
8002 }
8003 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
8004
8005 test_102c() {
8006         [ -z "$(which setfattr 2>/dev/null)" ] &&
8007                 skip_env "could not find setfattr"
8008         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8009
8010         # b10930: get/set/list lustre.lov xattr
8011         echo "get/set/list lustre.lov xattr ..."
8012         test_mkdir $DIR/$tdir
8013         chown $RUNAS_ID $DIR/$tdir
8014         local testfile=$DIR/$tdir/$tfile
8015         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
8016                 error "setstripe failed"
8017         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
8018                 error "getstripe failed"
8019         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
8020         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
8021
8022         local testfile2=${testfile}2
8023         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
8024                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
8025
8026         $RUNAS $MCREATE $testfile2
8027         $RUNAS setfattr -n lustre.lov -v $value $testfile2
8028         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
8029         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
8030         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
8031         [ $stripe_count -eq $STRIPECOUNT ] ||
8032                 error "stripe count $stripe_count != $STRIPECOUNT"
8033 }
8034 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
8035
8036 compare_stripe_info1() {
8037         local stripe_index_all_zero=true
8038
8039         for num in 1 2 3 4; do
8040                 for count in $(seq 1 $STRIPE_COUNT); do
8041                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
8042                                 local size=$((STRIPE_SIZE * num))
8043                                 local file=file"$num-$offset-$count"
8044                                 stripe_size=$($LFS getstripe -S $PWD/$file)
8045                                 [[ $stripe_size -ne $size ]] &&
8046                                     error "$file: size $stripe_size != $size"
8047                                 stripe_count=$($LFS getstripe -c $PWD/$file)
8048                                 # allow fewer stripes to be created, ORI-601
8049                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
8050                                     error "$file: count $stripe_count != $count"
8051                                 stripe_index=$($LFS getstripe -i $PWD/$file)
8052                                 [[ $stripe_index -ne 0 ]] &&
8053                                         stripe_index_all_zero=false
8054                         done
8055                 done
8056         done
8057         $stripe_index_all_zero &&
8058                 error "all files are being extracted starting from OST index 0"
8059         return 0
8060 }
8061
8062 have_xattrs_include() {
8063         tar --help | grep -q xattrs-include &&
8064                 echo --xattrs-include="lustre.*"
8065 }
8066
8067 test_102d() {
8068         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8069         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8070
8071         XINC=$(have_xattrs_include)
8072         setup_test102
8073         tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
8074         cd $DIR/$tdir/$tdir
8075         compare_stripe_info1
8076 }
8077 run_test 102d "tar restore stripe info from tarfile,not keep osts"
8078
8079 test_102f() {
8080         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8081         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8082
8083         XINC=$(have_xattrs_include)
8084         setup_test102
8085         test_mkdir $DIR/$tdir.restore
8086         cd $DIR
8087         tar cf - --xattrs $tdir | tar xf - \
8088                 -C $DIR/$tdir.restore --xattrs $XINC
8089         cd $DIR/$tdir.restore/$tdir
8090         compare_stripe_info1
8091 }
8092 run_test 102f "tar copy files, not keep osts"
8093
8094 grow_xattr() {
8095         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
8096                 skip "must have user_xattr"
8097         [ -z "$(which setfattr 2>/dev/null)" ] &&
8098                 skip_env "could not find setfattr"
8099         [ -z "$(which getfattr 2>/dev/null)" ] &&
8100                 skip_env "could not find getfattr"
8101
8102         local xsize=${1:-1024}  # in bytes
8103         local file=$DIR/$tfile
8104         local value="$(generate_string $xsize)"
8105         local xbig=trusted.big
8106
8107         touch $file
8108         log "save $xbig on $file"
8109         setfattr -n $xbig -v $value $file ||
8110                 error "saving $xbig on $file failed"
8111
8112         local orig=$(get_xattr_value $xbig $file)
8113         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
8114
8115         local xsml=trusted.sml
8116         log "save $xsml on $file"
8117         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
8118
8119         local new=$(get_xattr_value $xbig $file)
8120         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
8121
8122         log "grow $xsml on $file"
8123         setfattr -n $xsml -v "$value" $file ||
8124                 error "growing $xsml on $file failed"
8125
8126         new=$(get_xattr_value $xbig $file)
8127         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
8128         log "$xbig still valid after growing $xsml"
8129
8130         rm -f $file
8131 }
8132
8133 test_102h() { # bug 15777
8134         grow_xattr 1024
8135 }
8136 run_test 102h "grow xattr from inside inode to external block"
8137
8138 test_102ha() {
8139         large_xattr_enabled || skip_env "ea_inode feature disabled"
8140
8141         grow_xattr $(max_xattr_size)
8142 }
8143 run_test 102ha "grow xattr from inside inode to external inode"
8144
8145 test_102i() { # bug 17038
8146         [ -z "$(which getfattr 2>/dev/null)" ] &&
8147                 skip "could not find getfattr"
8148
8149         touch $DIR/$tfile
8150         ln -s $DIR/$tfile $DIR/${tfile}link
8151         getfattr -n trusted.lov $DIR/$tfile ||
8152                 error "lgetxattr on $DIR/$tfile failed"
8153         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
8154                 grep -i "no such attr" ||
8155                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
8156         rm -f $DIR/$tfile $DIR/${tfile}link
8157 }
8158 run_test 102i "lgetxattr test on symbolic link ============"
8159
8160 test_102j() {
8161         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8162         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8163
8164         XINC=$(have_xattrs_include)
8165         setup_test102 "$RUNAS"
8166         chown $RUNAS_ID $DIR/$tdir
8167         $RUNAS tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
8168         cd $DIR/$tdir/$tdir
8169         compare_stripe_info1 "$RUNAS"
8170 }
8171 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
8172
8173 test_102k() {
8174         [ -z "$(which setfattr 2>/dev/null)" ] &&
8175                 skip "could not find setfattr"
8176
8177         touch $DIR/$tfile
8178         # b22187 just check that does not crash for regular file.
8179         setfattr -n trusted.lov $DIR/$tfile
8180         # b22187 'setfattr -n trusted.lov' should remove LOV EA for directories
8181         local test_kdir=$DIR/$tdir
8182         test_mkdir $test_kdir
8183         local default_size=$($LFS getstripe -S $test_kdir)
8184         local default_count=$($LFS getstripe -c $test_kdir)
8185         local default_offset=$($LFS getstripe -i $test_kdir)
8186         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
8187                 error 'dir setstripe failed'
8188         setfattr -n trusted.lov $test_kdir
8189         local stripe_size=$($LFS getstripe -S $test_kdir)
8190         local stripe_count=$($LFS getstripe -c $test_kdir)
8191         local stripe_offset=$($LFS getstripe -i $test_kdir)
8192         [ $stripe_size -eq $default_size ] ||
8193                 error "stripe size $stripe_size != $default_size"
8194         [ $stripe_count -eq $default_count ] ||
8195                 error "stripe count $stripe_count != $default_count"
8196         [ $stripe_offset -eq $default_offset ] ||
8197                 error "stripe offset $stripe_offset != $default_offset"
8198         rm -rf $DIR/$tfile $test_kdir
8199 }
8200 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
8201
8202 test_102l() {
8203         [ -z "$(which getfattr 2>/dev/null)" ] &&
8204                 skip "could not find getfattr"
8205
8206         # LU-532 trusted. xattr is invisible to non-root
8207         local testfile=$DIR/$tfile
8208
8209         touch $testfile
8210
8211         echo "listxattr as user..."
8212         chown $RUNAS_ID $testfile
8213         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
8214             grep -q "trusted" &&
8215                 error "$testfile trusted xattrs are user visible"
8216
8217         return 0;
8218 }
8219 run_test 102l "listxattr size test =================================="
8220
8221 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
8222         local path=$DIR/$tfile
8223         touch $path
8224
8225         listxattr_size_check $path || error "listattr_size_check $path failed"
8226 }
8227 run_test 102m "Ensure listxattr fails on small bufffer ========"
8228
8229 cleanup_test102
8230
8231 getxattr() { # getxattr path name
8232         # Return the base64 encoding of the value of xattr name on path.
8233         local path=$1
8234         local name=$2
8235
8236         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
8237         # file: $path
8238         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
8239         #
8240         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
8241
8242         getfattr --absolute-names --encoding=base64 --name=$name $path |
8243                 awk -F= -v name=$name '$1 == name {
8244                         print substr($0, index($0, "=") + 1);
8245         }'
8246 }
8247
8248 test_102n() { # LU-4101 mdt: protect internal xattrs
8249         [ -z "$(which setfattr 2>/dev/null)" ] &&
8250                 skip "could not find setfattr"
8251         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.50) ]
8252         then
8253                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
8254         fi
8255
8256         local file0=$DIR/$tfile.0
8257         local file1=$DIR/$tfile.1
8258         local xattr0=$TMP/$tfile.0
8259         local xattr1=$TMP/$tfile.1
8260         local namelist="lov lma lmv link fid version som hsm"
8261         local name
8262         local value
8263
8264         rm -rf $file0 $file1 $xattr0 $xattr1
8265         touch $file0 $file1
8266
8267         # Get 'before' xattrs of $file1.
8268         getfattr --absolute-names --dump --match=- $file1 > $xattr0
8269
8270         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
8271                 namelist+=" lfsck_namespace"
8272         for name in $namelist; do
8273                 # Try to copy xattr from $file0 to $file1.
8274                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
8275
8276                 setfattr --name=trusted.$name --value="$value" $file1 ||
8277                         error "setxattr 'trusted.$name' failed"
8278
8279                 # Try to set a garbage xattr.
8280                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
8281
8282                 if [[ x$name == "xlov" ]]; then
8283                         setfattr --name=trusted.lov --value="$value" $file1 &&
8284                         error "setxattr invalid 'trusted.lov' success"
8285                 else
8286                         setfattr --name=trusted.$name --value="$value" $file1 ||
8287                                 error "setxattr invalid 'trusted.$name' failed"
8288                 fi
8289
8290                 # Try to remove the xattr from $file1. We don't care if this
8291                 # appears to succeed or fail, we just don't want there to be
8292                 # any changes or crashes.
8293                 setfattr --remove=$trusted.$name $file1 2> /dev/null
8294         done
8295
8296         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.6.50) ]
8297         then
8298                 name="lfsck_ns"
8299                 # Try to copy xattr from $file0 to $file1.
8300                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
8301
8302                 setfattr --name=trusted.$name --value="$value" $file1 ||
8303                         error "setxattr 'trusted.$name' failed"
8304
8305                 # Try to set a garbage xattr.
8306                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
8307
8308                 setfattr --name=trusted.$name --value="$value" $file1 ||
8309                         error "setxattr 'trusted.$name' failed"
8310
8311                 # Try to remove the xattr from $file1. We don't care if this
8312                 # appears to succeed or fail, we just don't want there to be
8313                 # any changes or crashes.
8314                 setfattr --remove=$trusted.$name $file1 2> /dev/null
8315         fi
8316
8317         # Get 'after' xattrs of file1.
8318         getfattr --absolute-names --dump --match=- $file1 > $xattr1
8319
8320         if ! diff $xattr0 $xattr1; then
8321                 error "before and after xattrs of '$file1' differ"
8322         fi
8323
8324         rm -rf $file0 $file1 $xattr0 $xattr1
8325
8326         return 0
8327 }
8328 run_test 102n "silently ignore setxattr on internal trusted xattrs"
8329
8330 test_102p() { # LU-4703 setxattr did not check ownership
8331         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.56) ] &&
8332                 skip "MDS needs to be at least 2.5.56"
8333
8334         local testfile=$DIR/$tfile
8335
8336         touch $testfile
8337
8338         echo "setfacl as user..."
8339         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
8340         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
8341
8342         echo "setfattr as user..."
8343         setfacl -m "u:$RUNAS_ID:---" $testfile
8344         $RUNAS setfattr -x system.posix_acl_access $testfile
8345         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
8346 }
8347 run_test 102p "check setxattr(2) correctly fails without permission"
8348
8349 test_102q() {
8350         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
8351                 skip "MDS needs to be at least 2.6.92"
8352
8353         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
8354 }
8355 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
8356
8357 test_102r() {
8358         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.93) ] &&
8359                 skip "MDS needs to be at least 2.6.93"
8360
8361         touch $DIR/$tfile || error "touch"
8362         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
8363         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
8364         rm $DIR/$tfile || error "rm"
8365
8366         #normal directory
8367         mkdir -p $DIR/$tdir || error "mkdir"
8368         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
8369         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
8370         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
8371                 error "$testfile error deleting user.author1"
8372         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
8373                 grep "user.$(basename $tdir)" &&
8374                 error "$tdir did not delete user.$(basename $tdir)"
8375         rmdir $DIR/$tdir || error "rmdir"
8376
8377         #striped directory
8378         test_mkdir $DIR/$tdir
8379         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
8380         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
8381         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
8382                 error "$testfile error deleting user.author1"
8383         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
8384                 grep "user.$(basename $tdir)" &&
8385                 error "$tdir did not delete user.$(basename $tdir)"
8386         rmdir $DIR/$tdir || error "rm striped dir"
8387 }
8388 run_test 102r "set EAs with empty values"
8389
8390 test_102s() {
8391         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
8392                 skip "MDS needs to be at least 2.11.52"
8393
8394         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
8395
8396         save_lustre_params client "llite.*.xattr_cache" > $save
8397
8398         for cache in 0 1; do
8399                 lctl set_param llite.*.xattr_cache=$cache
8400
8401                 rm -f $DIR/$tfile
8402                 touch $DIR/$tfile || error "touch"
8403                 for prefix in lustre security system trusted user; do
8404                         # Note getxattr() may fail with 'Operation not
8405                         # supported' or 'No such attribute' depending
8406                         # on prefix and cache.
8407                         getfattr -n $prefix.n102s $DIR/$tfile &&
8408                                 error "getxattr '$prefix.n102s' should fail (cache = $cache)"
8409                 done
8410         done
8411
8412         restore_lustre_params < $save
8413 }
8414 run_test 102s "getting nonexistent xattrs should fail"
8415
8416 test_102t() {
8417         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
8418                 skip "MDS needs to be at least 2.11.52"
8419
8420         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
8421
8422         save_lustre_params client "llite.*.xattr_cache" > $save
8423
8424         for cache in 0 1; do
8425                 lctl set_param llite.*.xattr_cache=$cache
8426
8427                 for buf_size in 0 256; do
8428                         rm -f $DIR/$tfile
8429                         touch $DIR/$tfile || error "touch"
8430                         setfattr -n user.multiop $DIR/$tfile
8431                         $MULTIOP $DIR/$tfile oa$buf_size ||
8432                                 error "cannot get zero length xattr value (buf_size = $buf_size)"
8433                 done
8434         done
8435
8436         restore_lustre_params < $save
8437 }
8438 run_test 102t "zero length xattr values handled correctly"
8439
8440 run_acl_subtest()
8441 {
8442     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
8443     return $?
8444 }
8445
8446 test_103a() {
8447         [ "$UID" != 0 ] && skip "must run as root"
8448         $GSS && skip_env "could not run under gss"
8449         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
8450                 skip_env "must have acl enabled"
8451         [ -z "$(which setfacl 2>/dev/null)" ] &&
8452                 skip_env "could not find setfacl"
8453         remote_mds_nodsh && skip "remote MDS with nodsh"
8454
8455         gpasswd -a daemon bin                           # LU-5641
8456         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
8457
8458         declare -a identity_old
8459
8460         for num in $(seq $MDSCOUNT); do
8461                 switch_identity $num true || identity_old[$num]=$?
8462         done
8463
8464         SAVE_UMASK=$(umask)
8465         umask 0022
8466         mkdir -p $DIR/$tdir
8467         cd $DIR/$tdir
8468
8469         echo "performing cp ..."
8470         run_acl_subtest cp || error "run_acl_subtest cp failed"
8471         echo "performing getfacl-noacl..."
8472         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
8473         echo "performing misc..."
8474         run_acl_subtest misc || error  "misc test failed"
8475         echo "performing permissions..."
8476         run_acl_subtest permissions || error "permissions failed"
8477         # LU-1482 mdd: Setting xattr are properly checked with and without ACLs
8478         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.8.55) -o \
8479              \( $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6) -a \
8480              $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.29) \) ]
8481         then
8482                 echo "performing permissions xattr..."
8483                 run_acl_subtest permissions_xattr ||
8484                         error "permissions_xattr failed"
8485         fi
8486         echo "performing setfacl..."
8487         run_acl_subtest setfacl || error  "setfacl test failed"
8488
8489         # inheritance test got from HP
8490         echo "performing inheritance..."
8491         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
8492         chmod +x make-tree || error "chmod +x failed"
8493         run_acl_subtest inheritance || error "inheritance test failed"
8494         rm -f make-tree
8495
8496         echo "LU-974 ignore umask when acl is enabled..."
8497         run_acl_subtest 974 || error "LU-974 umask test failed"
8498         if [ $MDSCOUNT -ge 2 ]; then
8499                 run_acl_subtest 974_remote ||
8500                         error "LU-974 umask test failed under remote dir"
8501         fi
8502
8503         echo "LU-2561 newly created file is same size as directory..."
8504         if [ $(facet_fstype $SINGLEMDS) != "zfs" ]; then
8505                 run_acl_subtest 2561 || error "LU-2561 test failed"
8506         else
8507                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
8508         fi
8509
8510         run_acl_subtest 4924 || error "LU-4924 test failed"
8511
8512         cd $SAVE_PWD
8513         umask $SAVE_UMASK
8514
8515         for num in $(seq $MDSCOUNT); do
8516                 if [ "${identity_old[$num]}" = 1 ]; then
8517                         switch_identity $num false || identity_old[$num]=$?
8518                 fi
8519         done
8520 }
8521 run_test 103a "acl test"
8522
8523 test_103b() {
8524         local U
8525
8526         for U in {0..511}; do
8527                 {
8528                 local O=$(printf "%04o" $U)
8529
8530                 umask $(printf "%04o" $((511 ^ $O)))
8531                 $LFS setstripe -c 1 $DIR/$tfile.s$O
8532                 local S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.s$O))
8533
8534                 (( $S == ($O & 0666) )) ||
8535                         error "lfs setstripe $DIR/$tfile.s$O '$S' != '$O'"
8536
8537                 $LFS setstripe -E16M -c 1 -E1G -S4M $DIR/$tfile.p$O
8538                 S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.p$O))
8539                 (( $S == ($O & 0666) )) ||
8540                         error "lfs setstripe -E $DIR/$tfile.p$O '$S' != '$O'"
8541
8542                 $LFS setstripe -N2 -c 1 $DIR/$tfile.m$O
8543                 S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.m$O))
8544                 (( $S == ($O & 0666) )) ||
8545                         error "lfs setstripe -N2 $DIR/$tfile.m$O '$S' != '$O'"
8546                 rm -f $DIR/$tfile.[smp]$0
8547                 } &
8548         done
8549         wait
8550 }
8551 run_test 103b "umask lfs setstripe"
8552
8553 test_103c() {
8554         mkdir -p $DIR/$tdir
8555         cp -rp $DIR/$tdir $DIR/$tdir.bak
8556
8557         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
8558                 error "$DIR/$tdir shouldn't contain default ACL"
8559         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
8560                 error "$DIR/$tdir.bak shouldn't contain default ACL"
8561         true
8562 }
8563 run_test 103c "'cp -rp' won't set empty acl"
8564
8565 test_104a() {
8566         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8567
8568         touch $DIR/$tfile
8569         lfs df || error "lfs df failed"
8570         lfs df -ih || error "lfs df -ih failed"
8571         lfs df -h $DIR || error "lfs df -h $DIR failed"
8572         lfs df -i $DIR || error "lfs df -i $DIR failed"
8573         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
8574         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
8575
8576         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
8577         lctl --device %$OSC deactivate
8578         lfs df || error "lfs df with deactivated OSC failed"
8579         lctl --device %$OSC activate
8580         # wait the osc back to normal
8581         wait_osc_import_state client ost FULL
8582
8583         lfs df || error "lfs df with reactivated OSC failed"
8584         rm -f $DIR/$tfile
8585 }
8586 run_test 104a "lfs df [-ih] [path] test ========================="
8587
8588 test_104b() {
8589         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8590         [ $RUNAS_ID -eq $UID ] &&
8591                 skip_env "RUNAS_ID = UID = $UID -- skipping"
8592
8593         chmod 666 /dev/obd
8594         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
8595                         grep "Permission denied" | wc -l)))
8596         if [ $denied_cnt -ne 0 ]; then
8597                 error "lfs check servers test failed"
8598         fi
8599 }
8600 run_test 104b "$RUNAS lfs check servers test ===================="
8601
8602 test_105a() {
8603         # doesn't work on 2.4 kernels
8604         touch $DIR/$tfile
8605         if $(flock_is_enabled); then
8606                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
8607         else
8608                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
8609         fi
8610         rm -f $DIR/$tfile
8611 }
8612 run_test 105a "flock when mounted without -o flock test ========"
8613
8614 test_105b() {
8615         touch $DIR/$tfile
8616         if $(flock_is_enabled); then
8617                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
8618         else
8619                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
8620         fi
8621         rm -f $DIR/$tfile
8622 }
8623 run_test 105b "fcntl when mounted without -o flock test ========"
8624
8625 test_105c() {
8626         touch $DIR/$tfile
8627         if $(flock_is_enabled); then
8628                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
8629         else
8630                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
8631         fi
8632         rm -f $DIR/$tfile
8633 }
8634 run_test 105c "lockf when mounted without -o flock test"
8635
8636 test_105d() { # bug 15924
8637         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8638
8639         test_mkdir $DIR/$tdir
8640         flock_is_enabled || skip_env "mount w/o flock enabled"
8641         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
8642         $LCTL set_param fail_loc=0x80000315
8643         flocks_test 2 $DIR/$tdir
8644 }
8645 run_test 105d "flock race (should not freeze) ========"
8646
8647 test_105e() { # bug 22660 && 22040
8648         flock_is_enabled || skip_env "mount w/o flock enabled"
8649
8650         touch $DIR/$tfile
8651         flocks_test 3 $DIR/$tfile
8652 }
8653 run_test 105e "Two conflicting flocks from same process"
8654
8655 test_106() { #bug 10921
8656         test_mkdir $DIR/$tdir
8657         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
8658         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
8659 }
8660 run_test 106 "attempt exec of dir followed by chown of that dir"
8661
8662 test_107() {
8663         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8664
8665         CDIR=`pwd`
8666         local file=core
8667
8668         cd $DIR
8669         rm -f $file
8670
8671         local save_pattern=$(sysctl -n kernel.core_pattern)
8672         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
8673         sysctl -w kernel.core_pattern=$file
8674         sysctl -w kernel.core_uses_pid=0
8675
8676         ulimit -c unlimited
8677         sleep 60 &
8678         SLEEPPID=$!
8679
8680         sleep 1
8681
8682         kill -s 11 $SLEEPPID
8683         wait $SLEEPPID
8684         if [ -e $file ]; then
8685                 size=`stat -c%s $file`
8686                 [ $size -eq 0 ] && error "Fail to create core file $file"
8687         else
8688                 error "Fail to create core file $file"
8689         fi
8690         rm -f $file
8691         sysctl -w kernel.core_pattern=$save_pattern
8692         sysctl -w kernel.core_uses_pid=$save_uses_pid
8693         cd $CDIR
8694 }
8695 run_test 107 "Coredump on SIG"
8696
8697 test_110() {
8698         test_mkdir $DIR/$tdir
8699         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255)
8700         $LFS mkdir -c $MDSCOUNT $DIR/$tdir/$(str_repeat 'b' 256) &&
8701                 error "mkdir with 256 char should fail, but did not"
8702         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
8703                 error "create with 255 char failed"
8704         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
8705                 error "create with 256 char should fail, but did not"
8706
8707         ls -l $DIR/$tdir
8708         rm -rf $DIR/$tdir
8709 }
8710 run_test 110 "filename length checking"
8711
8712 #
8713 # Purpose: To verify dynamic thread (OSS) creation.
8714 #
8715 test_115() {
8716         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8717         remote_ost_nodsh && skip "remote OST with nodsh"
8718
8719         # Lustre does not stop service threads once they are started.
8720         # Reset number of running threads to default.
8721         stopall
8722         setupall
8723
8724         local OSTIO_pre
8725         local save_params="$TMP/sanity-$TESTNAME.parameters"
8726
8727         # Get ll_ost_io count before I/O
8728         OSTIO_pre=$(do_facet ost1 \
8729                 "$LCTL get_param ost.OSS.ost_io.threads_started | cut -d= -f2")
8730         # Exit if lustre is not running (ll_ost_io not running).
8731         [ -z "$OSTIO_pre" ] && error "no OSS threads"
8732
8733         echo "Starting with $OSTIO_pre threads"
8734         local thread_max=$((OSTIO_pre * 2))
8735         local rpc_in_flight=$((thread_max * 2))
8736         # Number of I/O Process proposed to be started.
8737         local nfiles
8738         local facets=$(get_facets OST)
8739
8740         save_lustre_params client "osc.*OST*.max_rpcs_in_flight" > $save_params
8741         save_lustre_params $facets "ost.OSS.ost_io.threads_max" >> $save_params
8742
8743         # Set in_flight to $rpc_in_flight
8744         $LCTL set_param osc.*OST*.max_rpcs_in_flight=$rpc_in_flight ||
8745                 error "Failed to set max_rpcs_in_flight to $rpc_in_flight"
8746         nfiles=${rpc_in_flight}
8747         # Set ost thread_max to $thread_max
8748         do_facet ost1 "$LCTL set_param ost.OSS.ost_io.threads_max=$thread_max"
8749
8750         # 5 Minutes should be sufficient for max number of OSS
8751         # threads(thread_max) to be created.
8752         local timeout=300
8753
8754         # Start I/O.
8755         local WTL=${WTL:-"$LUSTRE/tests/write_time_limit"}
8756         test_mkdir $DIR/$tdir
8757         for i in $(seq $nfiles); do
8758                 local file=$DIR/$tdir/${tfile}-$i
8759                 $LFS setstripe -c -1 -i 0 $file
8760                 ($WTL $file $timeout)&
8761         done
8762
8763         # I/O Started - Wait for thread_started to reach thread_max or report
8764         # error if thread_started is more than thread_max.
8765         echo "Waiting for thread_started to reach thread_max"
8766         local thread_started=0
8767         local end_time=$((SECONDS + timeout))
8768
8769         while [ $SECONDS -le $end_time ] ; do
8770                 echo -n "."
8771                 # Get ost i/o thread_started count.
8772                 thread_started=$(do_facet ost1 \
8773                         "$LCTL get_param \
8774                         ost.OSS.ost_io.threads_started | cut -d= -f2")
8775                 # Break out if thread_started is equal/greater than thread_max
8776                 if [[ $thread_started -ge $thread_max ]]; then
8777                         echo ll_ost_io thread_started $thread_started, \
8778                                 equal/greater than thread_max $thread_max
8779                         break
8780                 fi
8781                 sleep 1
8782         done
8783
8784         # Cleanup - We have the numbers, Kill i/o jobs if running.
8785         jobcount=($(jobs -p))
8786         for i in $(seq 0 $((${#jobcount[@]}-1)))
8787         do
8788                 kill -9 ${jobcount[$i]}
8789                 if [ $? -ne 0 ] ; then
8790                         echo Warning: \
8791                         Failed to Kill \'WTL\(I/O\)\' with pid ${jobcount[$i]}
8792                 fi
8793         done
8794
8795         # Cleanup files left by WTL binary.
8796         for i in $(seq $nfiles); do
8797                 local file=$DIR/$tdir/${tfile}-$i
8798                 rm -rf $file
8799                 if [ $? -ne 0 ] ; then
8800                         echo "Warning: Failed to delete file $file"
8801                 fi
8802         done
8803
8804         restore_lustre_params <$save_params
8805         rm -f $save_params || echo "Warning: delete file '$save_params' failed"
8806
8807         # Error out if no new thread has started or Thread started is greater
8808         # than thread max.
8809         if [[ $thread_started -le $OSTIO_pre ||
8810                         $thread_started -gt $thread_max ]]; then
8811                 error "ll_ost_io: thread_started $thread_started" \
8812                       "OSTIO_pre $OSTIO_pre, thread_max $thread_max." \
8813                       "No new thread started or thread started greater " \
8814                       "than thread_max."
8815         fi
8816 }
8817 run_test 115 "verify dynamic thread creation===================="
8818
8819 free_min_max () {
8820         wait_delete_completed
8821         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
8822         echo "OST kbytes available: ${AVAIL[@]}"
8823         MAXV=${AVAIL[0]}
8824         MAXI=0
8825         MINV=${AVAIL[0]}
8826         MINI=0
8827         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
8828                 #echo OST $i: ${AVAIL[i]}kb
8829                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
8830                         MAXV=${AVAIL[i]}
8831                         MAXI=$i
8832                 fi
8833                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
8834                         MINV=${AVAIL[i]}
8835                         MINI=$i
8836                 fi
8837         done
8838         echo "Min free space: OST $MINI: $MINV"
8839         echo "Max free space: OST $MAXI: $MAXV"
8840 }
8841
8842 test_116a() { # was previously test_116()
8843         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8844         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8845         remote_mds_nodsh && skip "remote MDS with nodsh"
8846
8847         echo -n "Free space priority "
8848         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
8849                 head -n1
8850         declare -a AVAIL
8851         free_min_max
8852
8853         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip"
8854         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip"
8855         trap simple_cleanup_common EXIT
8856
8857         # Check if we need to generate uneven OSTs
8858         test_mkdir -p $DIR/$tdir/OST${MINI}
8859         local FILL=$((MINV / 4))
8860         local DIFF=$((MAXV - MINV))
8861         local DIFF2=$((DIFF * 100 / MINV))
8862
8863         local threshold=$(do_facet $SINGLEMDS \
8864                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
8865         threshold=${threshold%%%}
8866         echo -n "Check for uneven OSTs: "
8867         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
8868
8869         if [[ $DIFF2 -gt $threshold ]]; then
8870                 echo "ok"
8871                 echo "Don't need to fill OST$MINI"
8872         else
8873                 # generate uneven OSTs. Write 2% over the QOS threshold value
8874                 echo "no"
8875                 DIFF=$((threshold - DIFF2 + 2))
8876                 DIFF2=$((MINV * DIFF / 100))
8877                 echo "Fill $DIFF% remaining space in OST$MINI with ${DIFF2}KB"
8878                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
8879                         error "setstripe failed"
8880                 DIFF=$((DIFF2 / 2048))
8881                 i=0
8882                 while [ $i -lt $DIFF ]; do
8883                         i=$((i + 1))
8884                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
8885                                 bs=2M count=1 2>/dev/null
8886                         echo -n .
8887                 done
8888                 echo .
8889                 sync
8890                 sleep_maxage
8891                 free_min_max
8892         fi
8893
8894         DIFF=$((MAXV - MINV))
8895         DIFF2=$((DIFF * 100 / MINV))
8896         echo -n "diff=$DIFF=$DIFF2% must be > $threshold% for QOS mode..."
8897         if [ $DIFF2 -gt $threshold ]; then
8898                 echo "ok"
8899         else
8900                 echo "failed - QOS mode won't be used"
8901                 simple_cleanup_common
8902                 skip "QOS imbalance criteria not met"
8903         fi
8904
8905         MINI1=$MINI
8906         MINV1=$MINV
8907         MAXI1=$MAXI
8908         MAXV1=$MAXV
8909
8910         # now fill using QOS
8911         $SETSTRIPE -c 1 $DIR/$tdir
8912         FILL=$((FILL / 200))
8913         if [ $FILL -gt 600 ]; then
8914                 FILL=600
8915         fi
8916         echo "writing $FILL files to QOS-assigned OSTs"
8917         i=0
8918         while [ $i -lt $FILL ]; do
8919                 i=$((i + 1))
8920                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
8921                         count=1 2>/dev/null
8922                 echo -n .
8923         done
8924         echo "wrote $i 200k files"
8925         sync
8926         sleep_maxage
8927
8928         echo "Note: free space may not be updated, so measurements might be off"
8929         free_min_max
8930         DIFF2=$((MAXV - MINV))
8931         echo "free space delta: orig $DIFF final $DIFF2"
8932         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
8933         DIFF=$((MINV1 - ${AVAIL[$MINI1]}))
8934         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
8935         DIFF2=$((MAXV1 - ${AVAIL[$MAXI1]}))
8936         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
8937         if [[ $DIFF -gt 0 ]]; then
8938                 FILL=$((DIFF2 * 100 / DIFF - 100))
8939                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
8940         fi
8941
8942         # Figure out which files were written where
8943         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
8944                awk '/'$MINI1': / {print $2; exit}')
8945         echo $UUID
8946         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
8947         echo "$MINC files created on smaller OST $MINI1"
8948         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
8949                awk '/'$MAXI1': / {print $2; exit}')
8950         echo $UUID
8951         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
8952         echo "$MAXC files created on larger OST $MAXI1"
8953         if [[ $MINC -gt 0 ]]; then
8954                 FILL=$((MAXC * 100 / MINC - 100))
8955                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
8956         fi
8957         [[ $MAXC -gt $MINC ]] ||
8958                 error_ignore LU-9 "stripe QOS didn't balance free space"
8959         simple_cleanup_common
8960 }
8961 run_test 116a "stripe QOS: free space balance ==================="
8962
8963 test_116b() { # LU-2093
8964         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8965         remote_mds_nodsh && skip "remote MDS with nodsh"
8966
8967 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
8968         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
8969                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
8970         [ -z "$old_rr" ] && skip "no QOS"
8971         do_facet $SINGLEMDS lctl set_param \
8972                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
8973         mkdir -p $DIR/$tdir
8974         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
8975         createmany -o $DIR/$tdir/f- 20 || error "can't create"
8976         do_facet $SINGLEMDS lctl set_param fail_loc=0
8977         rm -rf $DIR/$tdir
8978         do_facet $SINGLEMDS lctl set_param \
8979                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
8980 }
8981 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
8982
8983 test_117() # bug 10891
8984 {
8985         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8986
8987         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
8988         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
8989         lctl set_param fail_loc=0x21e
8990         > $DIR/$tfile || error "truncate failed"
8991         lctl set_param fail_loc=0
8992         echo "Truncate succeeded."
8993         rm -f $DIR/$tfile
8994 }
8995 run_test 117 "verify osd extend =========="
8996
8997 NO_SLOW_RESENDCOUNT=4
8998 export OLD_RESENDCOUNT=""
8999 set_resend_count () {
9000         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
9001         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
9002         lctl set_param -n $PROC_RESENDCOUNT $1
9003         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
9004 }
9005
9006 # for reduce test_118* time (b=14842)
9007 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
9008
9009 # Reset async IO behavior after error case
9010 reset_async() {
9011         FILE=$DIR/reset_async
9012
9013         # Ensure all OSCs are cleared
9014         $SETSTRIPE -c -1 $FILE
9015         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
9016         sync
9017         rm $FILE
9018 }
9019
9020 test_118a() #bug 11710
9021 {
9022         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9023
9024         reset_async
9025
9026         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9027         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9028         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9029
9030         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9031                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9032                 return 1;
9033         fi
9034         rm -f $DIR/$tfile
9035 }
9036 run_test 118a "verify O_SYNC works =========="
9037
9038 test_118b()
9039 {
9040         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9041         remote_ost_nodsh && skip "remote OST with nodsh"
9042
9043         reset_async
9044
9045         #define OBD_FAIL_SRV_ENOENT 0x217
9046         set_nodes_failloc "$(osts_nodes)" 0x217
9047         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9048         RC=$?
9049         set_nodes_failloc "$(osts_nodes)" 0
9050         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9051         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9052                     grep -c writeback)
9053
9054         if [[ $RC -eq 0 ]]; then
9055                 error "Must return error due to dropped pages, rc=$RC"
9056                 return 1;
9057         fi
9058
9059         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9060                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9061                 return 1;
9062         fi
9063
9064         echo "Dirty pages not leaked on ENOENT"
9065
9066         # Due to the above error the OSC will issue all RPCs syncronously
9067         # until a subsequent RPC completes successfully without error.
9068         $MULTIOP $DIR/$tfile Ow4096yc
9069         rm -f $DIR/$tfile
9070
9071         return 0
9072 }
9073 run_test 118b "Reclaim dirty pages on fatal error =========="
9074
9075 test_118c()
9076 {
9077         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9078
9079         # for 118c, restore the original resend count, LU-1940
9080         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
9081                                 set_resend_count $OLD_RESENDCOUNT
9082         remote_ost_nodsh && skip "remote OST with nodsh"
9083
9084         reset_async
9085
9086         #define OBD_FAIL_OST_EROFS               0x216
9087         set_nodes_failloc "$(osts_nodes)" 0x216
9088
9089         # multiop should block due to fsync until pages are written
9090         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9091         MULTIPID=$!
9092         sleep 1
9093
9094         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
9095                 error "Multiop failed to block on fsync, pid=$MULTIPID"
9096         fi
9097
9098         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9099                     grep -c writeback)
9100         if [[ $WRITEBACK -eq 0 ]]; then
9101                 error "No page in writeback, writeback=$WRITEBACK"
9102         fi
9103
9104         set_nodes_failloc "$(osts_nodes)" 0
9105         wait $MULTIPID
9106         RC=$?
9107         if [[ $RC -ne 0 ]]; then
9108                 error "Multiop fsync failed, rc=$RC"
9109         fi
9110
9111         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9112         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9113                     grep -c writeback)
9114         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9115                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9116         fi
9117
9118         rm -f $DIR/$tfile
9119         echo "Dirty pages flushed via fsync on EROFS"
9120         return 0
9121 }
9122 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
9123
9124 # continue to use small resend count to reduce test_118* time (b=14842)
9125 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
9126
9127 test_118d()
9128 {
9129         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9130         remote_ost_nodsh && skip "remote OST with nodsh"
9131
9132         reset_async
9133
9134         #define OBD_FAIL_OST_BRW_PAUSE_BULK
9135         set_nodes_failloc "$(osts_nodes)" 0x214
9136         # multiop should block due to fsync until pages are written
9137         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9138         MULTIPID=$!
9139         sleep 1
9140
9141         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
9142                 error "Multiop failed to block on fsync, pid=$MULTIPID"
9143         fi
9144
9145         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9146                     grep -c writeback)
9147         if [[ $WRITEBACK -eq 0 ]]; then
9148                 error "No page in writeback, writeback=$WRITEBACK"
9149         fi
9150
9151         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
9152         set_nodes_failloc "$(osts_nodes)" 0
9153
9154         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9155         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9156                     grep -c writeback)
9157         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9158                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9159         fi
9160
9161         rm -f $DIR/$tfile
9162         echo "Dirty pages gaurenteed flushed via fsync"
9163         return 0
9164 }
9165 run_test 118d "Fsync validation inject a delay of the bulk =========="
9166
9167 test_118f() {
9168         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9169
9170         reset_async
9171
9172         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
9173         lctl set_param fail_loc=0x8000040a
9174
9175         # Should simulate EINVAL error which is fatal
9176         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9177         RC=$?
9178         if [[ $RC -eq 0 ]]; then
9179                 error "Must return error due to dropped pages, rc=$RC"
9180         fi
9181
9182         lctl set_param fail_loc=0x0
9183
9184         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9185         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9186         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9187                     grep -c writeback)
9188         if [[ $LOCKED -ne 0 ]]; then
9189                 error "Locked pages remain in cache, locked=$LOCKED"
9190         fi
9191
9192         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9193                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9194         fi
9195
9196         rm -f $DIR/$tfile
9197         echo "No pages locked after fsync"
9198
9199         reset_async
9200         return 0
9201 }
9202 run_test 118f "Simulate unrecoverable OSC side error =========="
9203
9204 test_118g() {
9205         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9206
9207         reset_async
9208
9209         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
9210         lctl set_param fail_loc=0x406
9211
9212         # simulate local -ENOMEM
9213         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9214         RC=$?
9215
9216         lctl set_param fail_loc=0
9217         if [[ $RC -eq 0 ]]; then
9218                 error "Must return error due to dropped pages, rc=$RC"
9219         fi
9220
9221         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9222         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9223         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9224                         grep -c writeback)
9225         if [[ $LOCKED -ne 0 ]]; then
9226                 error "Locked pages remain in cache, locked=$LOCKED"
9227         fi
9228
9229         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9230                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9231         fi
9232
9233         rm -f $DIR/$tfile
9234         echo "No pages locked after fsync"
9235
9236         reset_async
9237         return 0
9238 }
9239 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
9240
9241 test_118h() {
9242         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9243         remote_ost_nodsh && skip "remote OST with nodsh"
9244
9245         reset_async
9246
9247         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9248         set_nodes_failloc "$(osts_nodes)" 0x20e
9249         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
9250         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9251         RC=$?
9252
9253         set_nodes_failloc "$(osts_nodes)" 0
9254         if [[ $RC -eq 0 ]]; then
9255                 error "Must return error due to dropped pages, rc=$RC"
9256         fi
9257
9258         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9259         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9260         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9261                     grep -c writeback)
9262         if [[ $LOCKED -ne 0 ]]; then
9263                 error "Locked pages remain in cache, locked=$LOCKED"
9264         fi
9265
9266         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9267                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9268         fi
9269
9270         rm -f $DIR/$tfile
9271         echo "No pages locked after fsync"
9272
9273         return 0
9274 }
9275 run_test 118h "Verify timeout in handling recoverables errors  =========="
9276
9277 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
9278
9279 test_118i() {
9280         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9281         remote_ost_nodsh && skip "remote OST with nodsh"
9282
9283         reset_async
9284
9285         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9286         set_nodes_failloc "$(osts_nodes)" 0x20e
9287
9288         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
9289         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9290         PID=$!
9291         sleep 5
9292         set_nodes_failloc "$(osts_nodes)" 0
9293
9294         wait $PID
9295         RC=$?
9296         if [[ $RC -ne 0 ]]; then
9297                 error "got error, but should be not, rc=$RC"
9298         fi
9299
9300         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9301         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9302         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9303         if [[ $LOCKED -ne 0 ]]; then
9304                 error "Locked pages remain in cache, locked=$LOCKED"
9305         fi
9306
9307         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9308                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9309         fi
9310
9311         rm -f $DIR/$tfile
9312         echo "No pages locked after fsync"
9313
9314         return 0
9315 }
9316 run_test 118i "Fix error before timeout in recoverable error  =========="
9317
9318 [ "$SLOW" = "no" ] && set_resend_count 4
9319
9320 test_118j() {
9321         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9322         remote_ost_nodsh && skip "remote OST with nodsh"
9323
9324         reset_async
9325
9326         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
9327         set_nodes_failloc "$(osts_nodes)" 0x220
9328
9329         # return -EIO from OST
9330         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9331         RC=$?
9332         set_nodes_failloc "$(osts_nodes)" 0x0
9333         if [[ $RC -eq 0 ]]; then
9334                 error "Must return error due to dropped pages, rc=$RC"
9335         fi
9336
9337         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9338         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9339         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9340         if [[ $LOCKED -ne 0 ]]; then
9341                 error "Locked pages remain in cache, locked=$LOCKED"
9342         fi
9343
9344         # in recoverable error on OST we want resend and stay until it finished
9345         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9346                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9347         fi
9348
9349         rm -f $DIR/$tfile
9350         echo "No pages locked after fsync"
9351
9352         return 0
9353 }
9354 run_test 118j "Simulate unrecoverable OST side error =========="
9355
9356 test_118k()
9357 {
9358         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9359         remote_ost_nodsh && skip "remote OSTs with nodsh"
9360
9361         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9362         set_nodes_failloc "$(osts_nodes)" 0x20e
9363         test_mkdir $DIR/$tdir
9364
9365         for ((i=0;i<10;i++)); do
9366                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
9367                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
9368                 SLEEPPID=$!
9369                 sleep 0.500s
9370                 kill $SLEEPPID
9371                 wait $SLEEPPID
9372         done
9373
9374         set_nodes_failloc "$(osts_nodes)" 0
9375         rm -rf $DIR/$tdir
9376 }
9377 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
9378
9379 test_118l() # LU-646
9380 {
9381         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9382
9383         test_mkdir $DIR/$tdir
9384         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
9385         rm -rf $DIR/$tdir
9386 }
9387 run_test 118l "fsync dir"
9388
9389 test_118m() # LU-3066
9390 {
9391         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9392
9393         test_mkdir $DIR/$tdir
9394         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
9395         rm -rf $DIR/$tdir
9396 }
9397 run_test 118m "fdatasync dir ========="
9398
9399 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
9400
9401 test_118n()
9402 {
9403         local begin
9404         local end
9405
9406         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9407         remote_ost_nodsh && skip "remote OSTs with nodsh"
9408
9409         # Sleep to avoid a cached response.
9410         #define OBD_STATFS_CACHE_SECONDS 1
9411         sleep 2
9412
9413         # Inject a 10 second delay in the OST_STATFS handler.
9414         #define OBD_FAIL_OST_STATFS_DELAY 0x242
9415         set_nodes_failloc "$(osts_nodes)" 0x242
9416
9417         begin=$SECONDS
9418         stat --file-system $MOUNT > /dev/null
9419         end=$SECONDS
9420
9421         set_nodes_failloc "$(osts_nodes)" 0
9422
9423         if ((end - begin > 20)); then
9424             error "statfs took $((end - begin)) seconds, expected 10"
9425         fi
9426 }
9427 run_test 118n "statfs() sends OST_STATFS requests in parallel"
9428
9429 test_119a() # bug 11737
9430 {
9431         BSIZE=$((512 * 1024))
9432         directio write $DIR/$tfile 0 1 $BSIZE
9433         # We ask to read two blocks, which is more than a file size.
9434         # directio will indicate an error when requested and actual
9435         # sizes aren't equeal (a normal situation in this case) and
9436         # print actual read amount.
9437         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
9438         if [ "$NOB" != "$BSIZE" ]; then
9439                 error "read $NOB bytes instead of $BSIZE"
9440         fi
9441         rm -f $DIR/$tfile
9442 }
9443 run_test 119a "Short directIO read must return actual read amount"
9444
9445 test_119b() # bug 11737
9446 {
9447         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
9448
9449         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
9450         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
9451         sync
9452         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) ||
9453                 error "direct read failed"
9454         rm -f $DIR/$tfile
9455 }
9456 run_test 119b "Sparse directIO read must return actual read amount"
9457
9458 test_119c() # bug 13099
9459 {
9460         BSIZE=1048576
9461         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
9462         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
9463         rm -f $DIR/$tfile
9464 }
9465 run_test 119c "Testing for direct read hitting hole"
9466
9467 test_119d() # bug 15950
9468 {
9469         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9470
9471         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
9472         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
9473         BSIZE=1048576
9474         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
9475         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
9476         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
9477         lctl set_param fail_loc=0x40d
9478         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
9479         pid_dio=$!
9480         sleep 1
9481         cat $DIR/$tfile > /dev/null &
9482         lctl set_param fail_loc=0
9483         pid_reads=$!
9484         wait $pid_dio
9485         log "the DIO writes have completed, now wait for the reads (should not block very long)"
9486         sleep 2
9487         [ -n "`ps h -p $pid_reads -o comm`" ] && \
9488         error "the read rpcs have not completed in 2s"
9489         rm -f $DIR/$tfile
9490         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
9491 }
9492 run_test 119d "The DIO path should try to send a new rpc once one is completed"
9493
9494 test_120a() {
9495         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9496         remote_mds_nodsh && skip "remote MDS with nodsh"
9497         test_mkdir $DIR/$tdir
9498         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9499                 skip_env "no early lock cancel on server"
9500
9501         lru_resize_disable mdc
9502         lru_resize_disable osc
9503         cancel_lru_locks mdc
9504         # asynchronous object destroy at MDT could cause bl ast to client
9505         cancel_lru_locks osc
9506
9507         stat $DIR/$tdir > /dev/null
9508         can1=$(do_facet $SINGLEMDS \
9509                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9510                awk '/ldlm_cancel/ {print $2}')
9511         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9512                awk '/ldlm_bl_callback/ {print $2}')
9513         test_mkdir -c1 $DIR/$tdir/d1
9514         can2=$(do_facet $SINGLEMDS \
9515                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9516                awk '/ldlm_cancel/ {print $2}')
9517         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9518                awk '/ldlm_bl_callback/ {print $2}')
9519         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9520         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9521         lru_resize_enable mdc
9522         lru_resize_enable osc
9523 }
9524 run_test 120a "Early Lock Cancel: mkdir test"
9525
9526 test_120b() {
9527         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9528         remote_mds_nodsh && skip "remote MDS with nodsh"
9529         test_mkdir $DIR/$tdir
9530         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9531                 skip_env "no early lock cancel on server"
9532
9533         lru_resize_disable mdc
9534         lru_resize_disable osc
9535         cancel_lru_locks mdc
9536         stat $DIR/$tdir > /dev/null
9537         can1=$(do_facet $SINGLEMDS \
9538                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9539                awk '/ldlm_cancel/ {print $2}')
9540         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9541                awk '/ldlm_bl_callback/ {print $2}')
9542         touch $DIR/$tdir/f1
9543         can2=$(do_facet $SINGLEMDS \
9544                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9545                awk '/ldlm_cancel/ {print $2}')
9546         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9547                awk '/ldlm_bl_callback/ {print $2}')
9548         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9549         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9550         lru_resize_enable mdc
9551         lru_resize_enable osc
9552 }
9553 run_test 120b "Early Lock Cancel: create test"
9554
9555 test_120c() {
9556         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9557         remote_mds_nodsh && skip "remote MDS with nodsh"
9558         test_mkdir -c1 $DIR/$tdir
9559         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9560                 skip "no early lock cancel on server"
9561
9562         lru_resize_disable mdc
9563         lru_resize_disable osc
9564         test_mkdir -c1 $DIR/$tdir/d1
9565         test_mkdir -c1 $DIR/$tdir/d2
9566         touch $DIR/$tdir/d1/f1
9567         cancel_lru_locks mdc
9568         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
9569         can1=$(do_facet $SINGLEMDS \
9570                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9571                awk '/ldlm_cancel/ {print $2}')
9572         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9573                awk '/ldlm_bl_callback/ {print $2}')
9574         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
9575         can2=$(do_facet $SINGLEMDS \
9576                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9577                awk '/ldlm_cancel/ {print $2}')
9578         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9579                awk '/ldlm_bl_callback/ {print $2}')
9580         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9581         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9582         lru_resize_enable mdc
9583         lru_resize_enable osc
9584 }
9585 run_test 120c "Early Lock Cancel: link test"
9586
9587 test_120d() {
9588         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9589         remote_mds_nodsh && skip "remote MDS with nodsh"
9590         test_mkdir -c1 $DIR/$tdir
9591         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9592                 skip_env "no early lock cancel on server"
9593
9594         lru_resize_disable mdc
9595         lru_resize_disable osc
9596         touch $DIR/$tdir
9597         cancel_lru_locks mdc
9598         stat $DIR/$tdir > /dev/null
9599         can1=$(do_facet $SINGLEMDS \
9600                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9601                awk '/ldlm_cancel/ {print $2}')
9602         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9603                awk '/ldlm_bl_callback/ {print $2}')
9604         chmod a+x $DIR/$tdir
9605         can2=$(do_facet $SINGLEMDS \
9606                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9607                awk '/ldlm_cancel/ {print $2}')
9608         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9609                awk '/ldlm_bl_callback/ {print $2}')
9610         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9611         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9612         lru_resize_enable mdc
9613         lru_resize_enable osc
9614 }
9615 run_test 120d "Early Lock Cancel: setattr test"
9616
9617 test_120e() {
9618         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9619         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9620                 skip_env "no early lock cancel on server"
9621         remote_mds_nodsh && skip "remote MDS with nodsh"
9622
9623         local dlmtrace_set=false
9624
9625         test_mkdir -c1 $DIR/$tdir
9626         lru_resize_disable mdc
9627         lru_resize_disable osc
9628         ! $LCTL get_param debug | grep -q dlmtrace &&
9629                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
9630         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
9631         cancel_lru_locks mdc
9632         cancel_lru_locks osc
9633         dd if=$DIR/$tdir/f1 of=/dev/null
9634         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
9635         # XXX client can not do early lock cancel of OST lock
9636         # during unlink (LU-4206), so cancel osc lock now.
9637         sleep 2
9638         cancel_lru_locks osc
9639         can1=$(do_facet $SINGLEMDS \
9640                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9641                awk '/ldlm_cancel/ {print $2}')
9642         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9643                awk '/ldlm_bl_callback/ {print $2}')
9644         unlink $DIR/$tdir/f1
9645         sleep 5
9646         can2=$(do_facet $SINGLEMDS \
9647                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9648                awk '/ldlm_cancel/ {print $2}')
9649         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9650                awk '/ldlm_bl_callback/ {print $2}')
9651         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
9652                 $LCTL dk $TMP/cancel.debug.txt
9653         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
9654                 $LCTL dk $TMP/blocking.debug.txt
9655         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
9656         lru_resize_enable mdc
9657         lru_resize_enable osc
9658 }
9659 run_test 120e "Early Lock Cancel: unlink test"
9660
9661 test_120f() {
9662         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9663         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9664                 skip_env "no early lock cancel on server"
9665         remote_mds_nodsh && skip "remote MDS with nodsh"
9666
9667         test_mkdir -c1 $DIR/$tdir
9668         lru_resize_disable mdc
9669         lru_resize_disable osc
9670         test_mkdir -c1 $DIR/$tdir/d1
9671         test_mkdir -c1 $DIR/$tdir/d2
9672         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
9673         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
9674         cancel_lru_locks mdc
9675         cancel_lru_locks osc
9676         dd if=$DIR/$tdir/d1/f1 of=/dev/null
9677         dd if=$DIR/$tdir/d2/f2 of=/dev/null
9678         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
9679         # XXX client can not do early lock cancel of OST lock
9680         # during rename (LU-4206), so cancel osc lock now.
9681         sleep 2
9682         cancel_lru_locks osc
9683         can1=$(do_facet $SINGLEMDS \
9684                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9685                awk '/ldlm_cancel/ {print $2}')
9686         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9687                awk '/ldlm_bl_callback/ {print $2}')
9688         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
9689         sleep 5
9690         can2=$(do_facet $SINGLEMDS \
9691                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9692                awk '/ldlm_cancel/ {print $2}')
9693         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9694                awk '/ldlm_bl_callback/ {print $2}')
9695         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9696         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9697         lru_resize_enable mdc
9698         lru_resize_enable osc
9699 }
9700 run_test 120f "Early Lock Cancel: rename test"
9701
9702 test_120g() {
9703         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9704         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9705                 skip_env "no early lock cancel on server"
9706         remote_mds_nodsh && skip "remote MDS with nodsh"
9707
9708         lru_resize_disable mdc
9709         lru_resize_disable osc
9710         count=10000
9711         echo create $count files
9712         test_mkdir $DIR/$tdir
9713         cancel_lru_locks mdc
9714         cancel_lru_locks osc
9715         t0=$(date +%s)
9716
9717         can0=$(do_facet $SINGLEMDS \
9718                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9719                awk '/ldlm_cancel/ {print $2}')
9720         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9721                awk '/ldlm_bl_callback/ {print $2}')
9722         createmany -o $DIR/$tdir/f $count
9723         sync
9724         can1=$(do_facet $SINGLEMDS \
9725                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9726                awk '/ldlm_cancel/ {print $2}')
9727         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9728                awk '/ldlm_bl_callback/ {print $2}')
9729         t1=$(date +%s)
9730         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
9731         echo rm $count files
9732         rm -r $DIR/$tdir
9733         sync
9734         can2=$(do_facet $SINGLEMDS \
9735                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9736                awk '/ldlm_cancel/ {print $2}')
9737         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9738                awk '/ldlm_bl_callback/ {print $2}')
9739         t2=$(date +%s)
9740         echo total: $count removes in $((t2-t1))
9741         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
9742         sleep 2
9743         # wait for commitment of removal
9744         lru_resize_enable mdc
9745         lru_resize_enable osc
9746 }
9747 run_test 120g "Early Lock Cancel: performance test"
9748
9749 test_121() { #bug #10589
9750         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9751
9752         rm -rf $DIR/$tfile
9753         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
9754 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
9755         lctl set_param fail_loc=0x310
9756         cancel_lru_locks osc > /dev/null
9757         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
9758         lctl set_param fail_loc=0
9759         [[ $reads -eq $writes ]] ||
9760                 error "read $reads blocks, must be $writes blocks"
9761 }
9762 run_test 121 "read cancel race ========="
9763
9764 test_123a() { # was test 123, statahead(bug 11401)
9765         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9766
9767         SLOWOK=0
9768         if ! grep -q "processor.*: 1" /proc/cpuinfo; then
9769                 log "testing UP system. Performance may be lower than expected."
9770                 SLOWOK=1
9771         fi
9772
9773         rm -rf $DIR/$tdir
9774         test_mkdir $DIR/$tdir
9775         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
9776         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
9777         MULT=10
9778         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
9779                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
9780
9781                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
9782                 lctl set_param -n llite.*.statahead_max 0
9783                 lctl get_param llite.*.statahead_max
9784                 cancel_lru_locks mdc
9785                 cancel_lru_locks osc
9786                 stime=`date +%s`
9787                 time ls -l $DIR/$tdir | wc -l
9788                 etime=`date +%s`
9789                 delta=$((etime - stime))
9790                 log "ls $i files without statahead: $delta sec"
9791                 lctl set_param llite.*.statahead_max=$max
9792
9793                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
9794                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
9795                 cancel_lru_locks mdc
9796                 cancel_lru_locks osc
9797                 stime=`date +%s`
9798                 time ls -l $DIR/$tdir | wc -l
9799                 etime=`date +%s`
9800                 delta_sa=$((etime - stime))
9801                 log "ls $i files with statahead: $delta_sa sec"
9802                 lctl get_param -n llite.*.statahead_stats
9803                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
9804
9805                 [[ $swrong -lt $ewrong ]] &&
9806                         log "statahead was stopped, maybe too many locks held!"
9807                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
9808
9809                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
9810                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
9811                     lctl set_param -n llite.*.statahead_max 0
9812                     lctl get_param llite.*.statahead_max
9813                     cancel_lru_locks mdc
9814                     cancel_lru_locks osc
9815                     stime=`date +%s`
9816                     time ls -l $DIR/$tdir | wc -l
9817                     etime=`date +%s`
9818                     delta=$((etime - stime))
9819                     log "ls $i files again without statahead: $delta sec"
9820                     lctl set_param llite.*.statahead_max=$max
9821                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
9822                         if [  $SLOWOK -eq 0 ]; then
9823                                 error "ls $i files is slower with statahead!"
9824                         else
9825                                 log "ls $i files is slower with statahead!"
9826                         fi
9827                         break
9828                     fi
9829                 fi
9830
9831                 [ $delta -gt 20 ] && break
9832                 [ $delta -gt 8 ] && MULT=$((50 / delta))
9833                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
9834         done
9835         log "ls done"
9836
9837         stime=`date +%s`
9838         rm -r $DIR/$tdir
9839         sync
9840         etime=`date +%s`
9841         delta=$((etime - stime))
9842         log "rm -r $DIR/$tdir/: $delta seconds"
9843         log "rm done"
9844         lctl get_param -n llite.*.statahead_stats
9845 }
9846 run_test 123a "verify statahead work"
9847
9848 test_123b () { # statahead(bug 15027)
9849         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9850
9851         test_mkdir $DIR/$tdir
9852         createmany -o $DIR/$tdir/$tfile-%d 1000
9853
9854         cancel_lru_locks mdc
9855         cancel_lru_locks osc
9856
9857 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
9858         lctl set_param fail_loc=0x80000803
9859         ls -lR $DIR/$tdir > /dev/null
9860         log "ls done"
9861         lctl set_param fail_loc=0x0
9862         lctl get_param -n llite.*.statahead_stats
9863         rm -r $DIR/$tdir
9864         sync
9865
9866 }
9867 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
9868
9869 test_124a() {
9870         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9871         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
9872                 skip_env "no lru resize on server"
9873
9874         local NR=2000
9875
9876         test_mkdir $DIR/$tdir
9877
9878         log "create $NR files at $DIR/$tdir"
9879         createmany -o $DIR/$tdir/f $NR ||
9880                 error "failed to create $NR files in $DIR/$tdir"
9881
9882         cancel_lru_locks mdc
9883         ls -l $DIR/$tdir > /dev/null
9884
9885         local NSDIR=""
9886         local LRU_SIZE=0
9887         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
9888                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
9889                 LRU_SIZE=$($LCTL get_param -n $PARAM)
9890                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
9891                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
9892                         log "NSDIR=$NSDIR"
9893                         log "NS=$(basename $NSDIR)"
9894                         break
9895                 fi
9896         done
9897
9898         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
9899                 skip "Not enough cached locks created!"
9900         fi
9901         log "LRU=$LRU_SIZE"
9902
9903         local SLEEP=30
9904
9905         # We know that lru resize allows one client to hold $LIMIT locks
9906         # for 10h. After that locks begin to be killed by client.
9907         local MAX_HRS=10
9908         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
9909         log "LIMIT=$LIMIT"
9910         if [ $LIMIT -lt $LRU_SIZE ]; then
9911                 skip "Limit is too small $LIMIT"
9912         fi
9913
9914         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
9915         # killing locks. Some time was spent for creating locks. This means
9916         # that up to the moment of sleep finish we must have killed some of
9917         # them (10-100 locks). This depends on how fast ther were created.
9918         # Many of them were touched in almost the same moment and thus will
9919         # be killed in groups.
9920         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
9921
9922         # Use $LRU_SIZE_B here to take into account real number of locks
9923         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
9924         local LRU_SIZE_B=$LRU_SIZE
9925         log "LVF=$LVF"
9926         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
9927         log "OLD_LVF=$OLD_LVF"
9928         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
9929
9930         # Let's make sure that we really have some margin. Client checks
9931         # cached locks every 10 sec.
9932         SLEEP=$((SLEEP+20))
9933         log "Sleep ${SLEEP} sec"
9934         local SEC=0
9935         while ((SEC<$SLEEP)); do
9936                 echo -n "..."
9937                 sleep 5
9938                 SEC=$((SEC+5))
9939                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
9940                 echo -n "$LRU_SIZE"
9941         done
9942         echo ""
9943         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
9944         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
9945
9946         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
9947                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
9948                 unlinkmany $DIR/$tdir/f $NR
9949                 return
9950         }
9951
9952         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
9953         log "unlink $NR files at $DIR/$tdir"
9954         unlinkmany $DIR/$tdir/f $NR
9955 }
9956 run_test 124a "lru resize ======================================="
9957
9958 get_max_pool_limit()
9959 {
9960         local limit=$($LCTL get_param \
9961                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
9962         local max=0
9963         for l in $limit; do
9964                 if [[ $l -gt $max ]]; then
9965                         max=$l
9966                 fi
9967         done
9968         echo $max
9969 }
9970
9971 test_124b() {
9972         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9973         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
9974                 skip_env "no lru resize on server"
9975
9976         LIMIT=$(get_max_pool_limit)
9977
9978         NR=$(($(default_lru_size)*20))
9979         if [[ $NR -gt $LIMIT ]]; then
9980                 log "Limit lock number by $LIMIT locks"
9981                 NR=$LIMIT
9982         fi
9983
9984         IFree=$(mdsrate_inodes_available)
9985         if [ $IFree -lt $NR ]; then
9986                 log "Limit lock number by $IFree inodes"
9987                 NR=$IFree
9988         fi
9989
9990         lru_resize_disable mdc
9991         test_mkdir -p $DIR/$tdir/disable_lru_resize
9992
9993         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
9994         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
9995         cancel_lru_locks mdc
9996         stime=`date +%s`
9997         PID=""
9998         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
9999         PID="$PID $!"
10000         sleep 2
10001         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
10002         PID="$PID $!"
10003         sleep 2
10004         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
10005         PID="$PID $!"
10006         wait $PID
10007         etime=`date +%s`
10008         nolruresize_delta=$((etime-stime))
10009         log "ls -la time: $nolruresize_delta seconds"
10010         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
10011         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
10012
10013         lru_resize_enable mdc
10014         test_mkdir -p $DIR/$tdir/enable_lru_resize
10015
10016         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
10017         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
10018         cancel_lru_locks mdc
10019         stime=`date +%s`
10020         PID=""
10021         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10022         PID="$PID $!"
10023         sleep 2
10024         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10025         PID="$PID $!"
10026         sleep 2
10027         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10028         PID="$PID $!"
10029         wait $PID
10030         etime=`date +%s`
10031         lruresize_delta=$((etime-stime))
10032         log "ls -la time: $lruresize_delta seconds"
10033         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
10034
10035         if [ $lruresize_delta -gt $nolruresize_delta ]; then
10036                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
10037         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
10038                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
10039         else
10040                 log "lru resize performs the same with no lru resize"
10041         fi
10042         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
10043 }
10044 run_test 124b "lru resize (performance test) ======================="
10045
10046 test_124c() {
10047         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10048         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
10049                 skip_env "no lru resize on server"
10050
10051         # cache ununsed locks on client
10052         local nr=100
10053         cancel_lru_locks mdc
10054         test_mkdir $DIR/$tdir
10055         createmany -o $DIR/$tdir/f $nr ||
10056                 error "failed to create $nr files in $DIR/$tdir"
10057         ls -l $DIR/$tdir > /dev/null
10058
10059         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
10060         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
10061         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
10062         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
10063         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
10064
10065         # set lru_max_age to 1 sec
10066         $LCTL set_param $nsdir.lru_max_age=1000 # milliseconds
10067         echo "sleep $((recalc_p * 2)) seconds..."
10068         sleep $((recalc_p * 2))
10069
10070         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
10071         # restore lru_max_age
10072         $LCTL set_param -n $nsdir.lru_max_age $max_age
10073         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
10074         unlinkmany $DIR/$tdir/f $nr
10075 }
10076 run_test 124c "LRUR cancel very aged locks"
10077
10078 test_125() { # 13358
10079         $LCTL get_param -n llite.*.client_type | grep -q local ||
10080                 skip "must run as local client"
10081         $LCTL get_param -n mdc.*-mdc-*.connect_flags | grep -q acl ||
10082                 skip_env "must have acl enabled"
10083         [ -z "$(which setfacl)" ] && skip_env "must have setfacl tool"
10084
10085         test_mkdir $DIR/$tdir
10086         $LFS setstripe -S 65536 -c -1 $DIR/$tdir || error "setstripe failed"
10087         setfacl -R -m u:bin:rwx $DIR/$tdir || error "setfacl $DIR/$tdir failed"
10088         ls -ld $DIR/$tdir || error "cannot access $DIR/$tdir"
10089 }
10090 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
10091
10092 test_126() { # bug 12829/13455
10093         $GSS && skip_env "must run as gss disabled"
10094         $LCTL get_param -n llite.*.client_type | grep -q local ||
10095                 skip "must run as local client"
10096         [ "$UID" != 0 ] && skip "must run as root, not UID $UID"
10097
10098         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
10099         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
10100         rm -f $DIR/$tfile
10101         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
10102 }
10103 run_test 126 "check that the fsgid provided by the client is taken into account"
10104
10105 test_127a() { # bug 15521
10106         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10107
10108         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
10109         $LCTL set_param osc.*.stats=0
10110         FSIZE=$((2048 * 1024))
10111         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
10112         cancel_lru_locks osc
10113         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
10114
10115         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
10116         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
10117                 echo "got $COUNT $NAME"
10118                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
10119                 eval $NAME=$COUNT || error "Wrong proc format"
10120
10121                 case $NAME in
10122                         read_bytes|write_bytes)
10123                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
10124                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
10125                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
10126                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
10127                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
10128                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
10129                                 error "sumsquare is too small: $SUMSQ"
10130                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
10131                                 error "sumsquare is too big: $SUMSQ"
10132                         ;;
10133                         *) ;;
10134                 esac
10135         done < $DIR/${tfile}.tmp
10136
10137         #check that we actually got some stats
10138         [ "$read_bytes" ] || error "Missing read_bytes stats"
10139         [ "$write_bytes" ] || error "Missing write_bytes stats"
10140         [ "$read_bytes" != 0 ] || error "no read done"
10141         [ "$write_bytes" != 0 ] || error "no write done"
10142 }
10143 run_test 127a "verify the client stats are sane"
10144
10145 test_127b() { # bug LU-333
10146         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10147
10148         $LCTL set_param llite.*.stats=0
10149         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
10150
10151         # perform 2 reads and writes so MAX is different from SUM.
10152         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
10153         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
10154         cancel_lru_locks osc
10155         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
10156         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
10157
10158         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
10159         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
10160                 echo "got $COUNT $NAME"
10161                 eval $NAME=$COUNT || error "Wrong proc format"
10162
10163         case $NAME in
10164                 read_bytes)
10165                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
10166                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
10167                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
10168                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
10169                         ;;
10170                 write_bytes)
10171                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
10172                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
10173                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
10174                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
10175                         ;;
10176                         *) ;;
10177                 esac
10178         done < $TMP/${tfile}.tmp
10179
10180         #check that we actually got some stats
10181         [ "$read_bytes" ] || error "Missing read_bytes stats"
10182         [ "$write_bytes" ] || error "Missing write_bytes stats"
10183         [ "$read_bytes" != 0 ] || error "no read done"
10184         [ "$write_bytes" != 0 ] || error "no write done"
10185
10186         rm -f $TMP/${tfile}.tmp
10187 }
10188 run_test 127b "verify the llite client stats are sane"
10189
10190 test_128() { # bug 15212
10191         touch $DIR/$tfile
10192         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
10193                 find $DIR/$tfile
10194                 find $DIR/$tfile
10195         EOF
10196
10197         result=$(grep error $TMP/$tfile.log)
10198         rm -f $DIR/$tfile $TMP/$tfile.log
10199         [ -z "$result" ] ||
10200                 error "consecutive find's under interactive lfs failed"
10201 }
10202 run_test 128 "interactive lfs for 2 consecutive find's"
10203
10204 set_dir_limits () {
10205         local mntdev
10206         local canondev
10207         local node
10208
10209         local ldproc=/proc/fs/ldiskfs
10210         local facets=$(get_facets MDS)
10211
10212         for facet in ${facets//,/ }; do
10213                 canondev=$(ldiskfs_canon \
10214                            *.$(convert_facet2label $facet).mntdev $facet)
10215                 do_facet $facet "test -e $ldproc/$canondev/max_dir_size" ||
10216                         ldproc=/sys/fs/ldiskfs
10217                 do_facet $facet "echo $1 >$ldproc/$canondev/max_dir_size"
10218                 do_facet $facet "echo $2 >$ldproc/$canondev/warning_dir_size"
10219         done
10220 }
10221
10222 check_mds_dmesg() {
10223         local facets=$(get_facets MDS)
10224         for facet in ${facets//,/ }; do
10225                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
10226         done
10227         return 1
10228 }
10229
10230 test_129() {
10231         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10232         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.56) ]] ||
10233                 skip "Need MDS version with at least 2.5.56"
10234         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
10235                 skip_env "ldiskfs only test"
10236         fi
10237         remote_mds_nodsh && skip "remote MDS with nodsh"
10238
10239         local ENOSPC=28
10240         local EFBIG=27
10241         local has_warning=false
10242
10243         rm -rf $DIR/$tdir
10244         mkdir -p $DIR/$tdir
10245
10246         # block size of mds1
10247         local maxsize=$(($($LCTL get_param -n mdc.*MDT0000*.blocksize) * 5))
10248         set_dir_limits $maxsize $maxsize
10249         local dirsize=$(stat -c%s "$DIR/$tdir")
10250         local nfiles=0
10251         while [[ $dirsize -le $maxsize ]]; do
10252                 $MULTIOP $DIR/$tdir/file_base_$nfiles Oc
10253                 rc=$?
10254                 if ! $has_warning; then
10255                         check_mds_dmesg '"is approaching"' && has_warning=true
10256                 fi
10257                 # check two errors:
10258                 # ENOSPC for new ext4 max_dir_size (kernel commit df981d03ee)
10259                 # EFBIG for previous versions included in ldiskfs series
10260                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
10261                         set_dir_limits 0 0
10262                         echo "return code $rc received as expected"
10263
10264                         createmany -o $DIR/$tdir/file_extra_$nfiles. 5 ||
10265                                 error_exit "create failed w/o dir size limit"
10266
10267                         check_mds_dmesg '"has reached"' ||
10268                                 error_exit "reached message should be output"
10269
10270                         [ $has_warning = "false" ] &&
10271                                 error_exit "warning message should be output"
10272
10273                         dirsize=$(stat -c%s "$DIR/$tdir")
10274
10275                         [[ $dirsize -ge $maxsize ]] && return 0
10276                         error_exit "current dir size $dirsize, " \
10277                                    "previous limit $maxsize"
10278                 elif [ $rc -ne 0 ]; then
10279                         set_dir_limits 0 0
10280                         error_exit "return $rc received instead of expected " \
10281                                    "$EFBIG or $ENOSPC, files in dir $dirsize"
10282                 fi
10283                 nfiles=$((nfiles + 1))
10284                 dirsize=$(stat -c%s "$DIR/$tdir")
10285         done
10286
10287         set_dir_limits 0 0
10288         error "exceeded dir size limit $maxsize($MDSCOUNT) : $dirsize bytes"
10289 }
10290 run_test 129 "test directory size limit ========================"
10291
10292 OLDIFS="$IFS"
10293 cleanup_130() {
10294         trap 0
10295         IFS="$OLDIFS"
10296 }
10297
10298 test_130a() {
10299         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10300         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10301
10302         trap cleanup_130 EXIT RETURN
10303
10304         local fm_file=$DIR/$tfile
10305         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
10306         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
10307                 error "dd failed for $fm_file"
10308
10309         # LU-1795: test filefrag/FIEMAP once, even if unsupported
10310         filefrag -ves $fm_file
10311         RC=$?
10312         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10313                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10314         [ $RC != 0 ] && error "filefrag $fm_file failed"
10315
10316         filefrag_op=$(filefrag -ve -k $fm_file |
10317                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10318         lun=$($GETSTRIPE -i $fm_file)
10319
10320         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
10321         IFS=$'\n'
10322         tot_len=0
10323         for line in $filefrag_op
10324         do
10325                 frag_lun=`echo $line | cut -d: -f5`
10326                 ext_len=`echo $line | cut -d: -f4`
10327                 if (( $frag_lun != $lun )); then
10328                         cleanup_130
10329                         error "FIEMAP on 1-stripe file($fm_file) failed"
10330                         return
10331                 fi
10332                 (( tot_len += ext_len ))
10333         done
10334
10335         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
10336                 cleanup_130
10337                 error "FIEMAP on 1-stripe file($fm_file) failed;"
10338                 return
10339         fi
10340
10341         cleanup_130
10342
10343         echo "FIEMAP on single striped file succeeded"
10344 }
10345 run_test 130a "FIEMAP (1-stripe file)"
10346
10347 test_130b() {
10348         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >= 2 OSTs"
10349
10350         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10351         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10352
10353         trap cleanup_130 EXIT RETURN
10354
10355         local fm_file=$DIR/$tfile
10356         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
10357                         error "setstripe on $fm_file"
10358         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10359                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10360
10361         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
10362                 error "dd failed on $fm_file"
10363
10364         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10365         filefrag_op=$(filefrag -ve -k $fm_file |
10366                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10367
10368         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10369                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10370
10371         IFS=$'\n'
10372         tot_len=0
10373         num_luns=1
10374         for line in $filefrag_op
10375         do
10376                 frag_lun=$(echo $line | cut -d: -f5 |
10377                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10378                 ext_len=$(echo $line | cut -d: -f4)
10379                 if (( $frag_lun != $last_lun )); then
10380                         if (( tot_len != 1024 )); then
10381                                 cleanup_130
10382                                 error "FIEMAP on $fm_file failed; returned " \
10383                                 "len $tot_len for OST $last_lun instead of 1024"
10384                                 return
10385                         else
10386                                 (( num_luns += 1 ))
10387                                 tot_len=0
10388                         fi
10389                 fi
10390                 (( tot_len += ext_len ))
10391                 last_lun=$frag_lun
10392         done
10393         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
10394                 cleanup_130
10395                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10396                         "luns or wrong len for OST $last_lun"
10397                 return
10398         fi
10399
10400         cleanup_130
10401
10402         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
10403 }
10404 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
10405
10406 test_130c() {
10407         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
10408
10409         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10410         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10411
10412         trap cleanup_130 EXIT RETURN
10413
10414         local fm_file=$DIR/$tfile
10415         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
10416         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10417                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10418
10419         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
10420                         error "dd failed on $fm_file"
10421
10422         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10423         filefrag_op=$(filefrag -ve -k $fm_file |
10424                 sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10425
10426         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10427                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10428
10429         IFS=$'\n'
10430         tot_len=0
10431         num_luns=1
10432         for line in $filefrag_op
10433         do
10434                 frag_lun=$(echo $line | cut -d: -f5 |
10435                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10436                 ext_len=$(echo $line | cut -d: -f4)
10437                 if (( $frag_lun != $last_lun )); then
10438                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
10439                         if (( logical != 512 )); then
10440                                 cleanup_130
10441                                 error "FIEMAP on $fm_file failed; returned " \
10442                                 "logical start for lun $logical instead of 512"
10443                                 return
10444                         fi
10445                         if (( tot_len != 512 )); then
10446                                 cleanup_130
10447                                 error "FIEMAP on $fm_file failed; returned " \
10448                                 "len $tot_len for OST $last_lun instead of 1024"
10449                                 return
10450                         else
10451                                 (( num_luns += 1 ))
10452                                 tot_len=0
10453                         fi
10454                 fi
10455                 (( tot_len += ext_len ))
10456                 last_lun=$frag_lun
10457         done
10458         if (( num_luns != 2 || tot_len != 512 )); then
10459                 cleanup_130
10460                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10461                         "luns or wrong len for OST $last_lun"
10462                 return
10463         fi
10464
10465         cleanup_130
10466
10467         echo "FIEMAP on 2-stripe file with hole succeeded"
10468 }
10469 run_test 130c "FIEMAP (2-stripe file with hole)"
10470
10471 test_130d() {
10472         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
10473
10474         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10475         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10476
10477         trap cleanup_130 EXIT RETURN
10478
10479         local fm_file=$DIR/$tfile
10480         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
10481                         error "setstripe on $fm_file"
10482         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10483                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10484
10485         local actual_stripe_count=$($GETSTRIPE -c $fm_file)
10486         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripe_count ||
10487                 error "dd failed on $fm_file"
10488
10489         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10490         filefrag_op=$(filefrag -ve -k $fm_file |
10491                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10492
10493         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10494                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10495
10496         IFS=$'\n'
10497         tot_len=0
10498         num_luns=1
10499         for line in $filefrag_op
10500         do
10501                 frag_lun=$(echo $line | cut -d: -f5 |
10502                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10503                 ext_len=$(echo $line | cut -d: -f4)
10504                 if (( $frag_lun != $last_lun )); then
10505                         if (( tot_len != 1024 )); then
10506                                 cleanup_130
10507                                 error "FIEMAP on $fm_file failed; returned " \
10508                                 "len $tot_len for OST $last_lun instead of 1024"
10509                                 return
10510                         else
10511                                 (( num_luns += 1 ))
10512                                 tot_len=0
10513                         fi
10514                 fi
10515                 (( tot_len += ext_len ))
10516                 last_lun=$frag_lun
10517         done
10518         if (( num_luns != actual_stripe_count || tot_len != 1024 )); then
10519                 cleanup_130
10520                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10521                         "luns or wrong len for OST $last_lun"
10522                 return
10523         fi
10524
10525         cleanup_130
10526
10527         echo "FIEMAP on N-stripe file succeeded"
10528 }
10529 run_test 130d "FIEMAP (N-stripe file)"
10530
10531 test_130e() {
10532         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
10533
10534         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10535         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10536
10537         trap cleanup_130 EXIT RETURN
10538
10539         local fm_file=$DIR/$tfile
10540         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
10541         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10542                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10543
10544         NUM_BLKS=512
10545         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
10546         for ((i = 0; i < $NUM_BLKS; i++))
10547         do
10548                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
10549         done
10550
10551         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10552         filefrag_op=$(filefrag -ve -k $fm_file |
10553                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10554
10555         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10556                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10557
10558         IFS=$'\n'
10559         tot_len=0
10560         num_luns=1
10561         for line in $filefrag_op
10562         do
10563                 frag_lun=$(echo $line | cut -d: -f5 |
10564                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10565                 ext_len=$(echo $line | cut -d: -f4)
10566                 if (( $frag_lun != $last_lun )); then
10567                         if (( tot_len != $EXPECTED_LEN )); then
10568                                 cleanup_130
10569                                 error "FIEMAP on $fm_file failed; returned " \
10570                                 "len $tot_len for OST $last_lun instead " \
10571                                 "of $EXPECTED_LEN"
10572                                 return
10573                         else
10574                                 (( num_luns += 1 ))
10575                                 tot_len=0
10576                         fi
10577                 fi
10578                 (( tot_len += ext_len ))
10579                 last_lun=$frag_lun
10580         done
10581         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
10582                 cleanup_130
10583                 error "FIEMAP on $fm_file failed; returned wrong number " \
10584                         "of luns or wrong len for OST $last_lun"
10585                 return
10586         fi
10587
10588         cleanup_130
10589
10590         echo "FIEMAP with continuation calls succeeded"
10591 }
10592 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
10593
10594 test_130f() {
10595         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10596         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10597
10598         local fm_file=$DIR/$tfile
10599         $MULTIOP $fm_file oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T33554432c ||
10600                 error "multiop create with lov_delay_create on $fm_file"
10601
10602         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10603         filefrag_extents=$(filefrag -vek $fm_file |
10604                            awk '/extents? found/ { print $2 }')
10605         if [[ "$filefrag_extents" != "0" ]]; then
10606                 error "FIEMAP on $fm_file failed; " \
10607                       "returned $filefrag_extents expected 0"
10608         fi
10609
10610         rm -f $fm_file
10611 }
10612 run_test 130f "FIEMAP (unstriped file)"
10613
10614 # Test for writev/readv
10615 test_131a() {
10616         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 ||
10617                 error "writev test failed"
10618         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 ||
10619                 error "readv failed"
10620         rm -f $DIR/$tfile
10621 }
10622 run_test 131a "test iov's crossing stripe boundary for writev/readv"
10623
10624 test_131b() {
10625         local fsize=$((524288 + 1048576 + 1572864))
10626         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 &&
10627                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
10628                         error "append writev test failed"
10629
10630         ((fsize += 1572864 + 1048576))
10631         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 &&
10632                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
10633                         error "append writev test failed"
10634         rm -f $DIR/$tfile
10635 }
10636 run_test 131b "test append writev"
10637
10638 test_131c() {
10639         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
10640         error "NOT PASS"
10641 }
10642 run_test 131c "test read/write on file w/o objects"
10643
10644 test_131d() {
10645         rwv -f $DIR/$tfile -w -n 1 1572864
10646         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
10647         if [ "$NOB" != 1572864 ]; then
10648                 error "Short read filed: read $NOB bytes instead of 1572864"
10649         fi
10650         rm -f $DIR/$tfile
10651 }
10652 run_test 131d "test short read"
10653
10654 test_131e() {
10655         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
10656         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
10657         error "read hitting hole failed"
10658         rm -f $DIR/$tfile
10659 }
10660 run_test 131e "test read hitting hole"
10661
10662 check_stats() {
10663         local facet=$1
10664         local op=$2
10665         local want=${3:-0}
10666         local res
10667
10668         case $facet in
10669         mds*) res=$(do_facet $facet \
10670                    $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$op")
10671                  ;;
10672         ost*) res=$(do_facet $facet \
10673                    $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$op")
10674                  ;;
10675         *) error "Wrong facet '$facet'" ;;
10676         esac
10677         echo $res
10678         [ "$res" ] || error "The counter for $op on $facet was not incremented"
10679         # if the argument $3 is zero, it means any stat increment is ok.
10680         if [[ $want -gt 0 ]]; then
10681                 local count=$(echo $res | awk '{ print $2 }')
10682                 [[ $count -ne $want ]] &&
10683                         error "The $op counter on $facet is $count, not $want"
10684         fi
10685 }
10686
10687 test_133a() {
10688         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10689         remote_ost_nodsh && skip "remote OST with nodsh"
10690         remote_mds_nodsh && skip "remote MDS with nodsh"
10691         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
10692                 skip_env "MDS doesn't support rename stats"
10693
10694         local testdir=$DIR/${tdir}/stats_testdir
10695
10696         mkdir -p $DIR/${tdir}
10697
10698         # clear stats.
10699         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10700         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10701
10702         # verify mdt stats first.
10703         mkdir ${testdir} || error "mkdir failed"
10704         check_stats $SINGLEMDS "mkdir" 1
10705         touch ${testdir}/${tfile} || error "touch failed"
10706         check_stats $SINGLEMDS "open" 1
10707         check_stats $SINGLEMDS "close" 1
10708         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.8.54) ] && {
10709                 mknod ${testdir}/${tfile}-pipe p || error "mknod failed"
10710                 check_stats $SINGLEMDS "mknod" 2
10711         }
10712         rm -f ${testdir}/${tfile}-pipe || error "pipe remove failed"
10713         check_stats $SINGLEMDS "unlink" 1
10714         rm -f ${testdir}/${tfile} || error "file remove failed"
10715         check_stats $SINGLEMDS "unlink" 2
10716
10717         # remove working dir and check mdt stats again.
10718         rmdir ${testdir} || error "rmdir failed"
10719         check_stats $SINGLEMDS "rmdir" 1
10720
10721         local testdir1=$DIR/${tdir}/stats_testdir1
10722         mkdir -p ${testdir}
10723         mkdir -p ${testdir1}
10724         touch ${testdir1}/test1
10725         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
10726         check_stats $SINGLEMDS "crossdir_rename" 1
10727
10728         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
10729         check_stats $SINGLEMDS "samedir_rename" 1
10730
10731         rm -rf $DIR/${tdir}
10732 }
10733 run_test 133a "Verifying MDT stats ========================================"
10734
10735 test_133b() {
10736         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10737         remote_ost_nodsh && skip "remote OST with nodsh"
10738         remote_mds_nodsh && skip "remote MDS with nodsh"
10739
10740         local testdir=$DIR/${tdir}/stats_testdir
10741
10742         mkdir -p ${testdir} || error "mkdir failed"
10743         touch ${testdir}/${tfile} || error "touch failed"
10744         cancel_lru_locks mdc
10745
10746         # clear stats.
10747         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10748         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10749
10750         # extra mdt stats verification.
10751         chmod 444 ${testdir}/${tfile} || error "chmod failed"
10752         check_stats $SINGLEMDS "setattr" 1
10753         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10754         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
10755         then            # LU-1740
10756                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
10757                 check_stats $SINGLEMDS "getattr" 1
10758         fi
10759         rm -rf $DIR/${tdir}
10760
10761         # when DNE is enabled, MDT uses STATFS RPC to ping other targets
10762         # so the check below is not reliable
10763         [ $MDSCOUNT -eq 1 ] || return 0
10764
10765         # Sleep to avoid a cached response.
10766         #define OBD_STATFS_CACHE_SECONDS 1
10767         sleep 2
10768         $LFS df || error "lfs failed"
10769         check_stats $SINGLEMDS "statfs" 1
10770
10771         return 0
10772 }
10773 run_test 133b "Verifying extra MDT stats =================================="
10774
10775 test_133c() {
10776         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10777         remote_ost_nodsh && skip "remote OST with nodsh"
10778         remote_mds_nodsh && skip "remote MDS with nodsh"
10779
10780         local testdir=$DIR/$tdir/stats_testdir
10781
10782         test_mkdir -p $testdir
10783
10784         # verify obdfilter stats.
10785         $SETSTRIPE -c 1 -i 0 $testdir/$tfile
10786         sync
10787         cancel_lru_locks osc
10788         wait_delete_completed
10789
10790         # clear stats.
10791         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10792         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10793
10794         dd if=/dev/zero of=$testdir/$tfile conv=notrunc bs=512k count=1 ||
10795                 error "dd failed"
10796         sync
10797         cancel_lru_locks osc
10798         check_stats ost1 "write" 1
10799
10800         dd if=$testdir/$tfile of=/dev/null bs=1k count=1 || error "dd failed"
10801         check_stats ost1 "read" 1
10802
10803         > $testdir/$tfile || error "truncate failed"
10804         check_stats ost1 "punch" 1
10805
10806         rm -f $testdir/$tfile || error "file remove failed"
10807         wait_delete_completed
10808         check_stats ost1 "destroy" 1
10809
10810         rm -rf $DIR/$tdir
10811 }
10812 run_test 133c "Verifying OST stats ========================================"
10813
10814 order_2() {
10815         local value=$1
10816         local orig=$value
10817         local order=1
10818
10819         while [ $value -ge 2 ]; do
10820                 order=$((order*2))
10821                 value=$((value/2))
10822         done
10823
10824         if [ $orig -gt $order ]; then
10825                 order=$((order*2))
10826         fi
10827         echo $order
10828 }
10829
10830 size_in_KMGT() {
10831     local value=$1
10832     local size=('K' 'M' 'G' 'T');
10833     local i=0
10834     local size_string=$value
10835
10836     while [ $value -ge 1024 ]; do
10837         if [ $i -gt 3 ]; then
10838             #T is the biggest unit we get here, if that is bigger,
10839             #just return XXXT
10840             size_string=${value}T
10841             break
10842         fi
10843         value=$((value >> 10))
10844         if [ $value -lt 1024 ]; then
10845             size_string=${value}${size[$i]}
10846             break
10847         fi
10848         i=$((i + 1))
10849     done
10850
10851     echo $size_string
10852 }
10853
10854 get_rename_size() {
10855         local size=$1
10856         local context=${2:-.}
10857         local sample=$(do_facet $SINGLEMDS $LCTL \
10858                 get_param mdt.$FSNAME-MDT0000.rename_stats |
10859                 grep -A1 $context |
10860                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
10861         echo $sample
10862 }
10863
10864 test_133d() {
10865         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10866         remote_ost_nodsh && skip "remote OST with nodsh"
10867         remote_mds_nodsh && skip "remote MDS with nodsh"
10868         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
10869                 skip_env "MDS doesn't support rename stats"
10870
10871         local testdir1=$DIR/${tdir}/stats_testdir1
10872         local testdir2=$DIR/${tdir}/stats_testdir2
10873         mkdir -p $DIR/${tdir}
10874
10875         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
10876
10877         lfs mkdir -i 0 -c 1 ${testdir1} || error "mkdir failed"
10878         lfs mkdir -i 0 -c 1 ${testdir2} || error "mkdir failed"
10879
10880         createmany -o $testdir1/test 512 || error "createmany failed"
10881
10882         # check samedir rename size
10883         mv ${testdir1}/test0 ${testdir1}/test_0
10884
10885         local testdir1_size=$(ls -l $DIR/${tdir} |
10886                 awk '/stats_testdir1/ {print $5}')
10887         local testdir2_size=$(ls -l $DIR/${tdir} |
10888                 awk '/stats_testdir2/ {print $5}')
10889
10890         testdir1_size=$(order_2 $testdir1_size)
10891         testdir2_size=$(order_2 $testdir2_size)
10892
10893         testdir1_size=$(size_in_KMGT $testdir1_size)
10894         testdir2_size=$(size_in_KMGT $testdir2_size)
10895
10896         echo "source rename dir size: ${testdir1_size}"
10897         echo "target rename dir size: ${testdir2_size}"
10898
10899         local cmd="do_facet $SINGLEMDS $LCTL "
10900         cmd+="get_param mdt.$FSNAME-MDT0000.rename_stats"
10901
10902         eval $cmd || error "$cmd failed"
10903         local samedir=$($cmd | grep 'same_dir')
10904         local same_sample=$(get_rename_size $testdir1_size)
10905         [ -z "$samedir" ] && error "samedir_rename_size count error"
10906         [[ $same_sample -eq 1 ]] ||
10907                 error "samedir_rename_size error $same_sample"
10908         echo "Check same dir rename stats success"
10909
10910         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
10911
10912         # check crossdir rename size
10913         mv ${testdir1}/test_0 ${testdir2}/test_0
10914
10915         testdir1_size=$(ls -l $DIR/${tdir} |
10916                 awk '/stats_testdir1/ {print $5}')
10917         testdir2_size=$(ls -l $DIR/${tdir} |
10918                 awk '/stats_testdir2/ {print $5}')
10919
10920         testdir1_size=$(order_2 $testdir1_size)
10921         testdir2_size=$(order_2 $testdir2_size)
10922
10923         testdir1_size=$(size_in_KMGT $testdir1_size)
10924         testdir2_size=$(size_in_KMGT $testdir2_size)
10925
10926         echo "source rename dir size: ${testdir1_size}"
10927         echo "target rename dir size: ${testdir2_size}"
10928
10929         eval $cmd || error "$cmd failed"
10930         local crossdir=$($cmd | grep 'crossdir')
10931         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
10932         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
10933         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
10934         [[ $src_sample -eq 1 ]] ||
10935                 error "crossdir_rename_size error $src_sample"
10936         [[ $tgt_sample -eq 1 ]] ||
10937                 error "crossdir_rename_size error $tgt_sample"
10938         echo "Check cross dir rename stats success"
10939         rm -rf $DIR/${tdir}
10940 }
10941 run_test 133d "Verifying rename_stats ========================================"
10942
10943 test_133e() {
10944         remote_mds_nodsh && skip "remote MDS with nodsh"
10945         remote_ost_nodsh && skip "remote OST with nodsh"
10946         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10947
10948         local testdir=$DIR/${tdir}/stats_testdir
10949         local ctr f0 f1 bs=32768 count=42 sum
10950
10951         mkdir -p ${testdir} || error "mkdir failed"
10952
10953         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
10954
10955         for ctr in {write,read}_bytes; do
10956                 sync
10957                 cancel_lru_locks osc
10958
10959                 do_facet ost1 $LCTL set_param -n \
10960                         "obdfilter.*.exports.clear=clear"
10961
10962                 if [ $ctr = write_bytes ]; then
10963                         f0=/dev/zero
10964                         f1=${testdir}/${tfile}
10965                 else
10966                         f0=${testdir}/${tfile}
10967                         f1=/dev/null
10968                 fi
10969
10970                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
10971                         error "dd failed"
10972                 sync
10973                 cancel_lru_locks osc
10974
10975                 sum=$(do_facet ost1 $LCTL get_param \
10976                         "obdfilter.*.exports.*.stats" |
10977                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
10978                                 $1 == ctr { sum += $7 }
10979                                 END { printf("%0.0f", sum) }')
10980
10981                 if ((sum != bs * count)); then
10982                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
10983                 fi
10984         done
10985
10986         rm -rf $DIR/${tdir}
10987 }
10988 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
10989
10990 proc_regexp="/{proc,sys}/{fs,sys,kernel/debug}/{lustre,lnet}/"
10991
10992 # Some versions of find (4.5.11, 4.5.14) included in CentOS 7.3-7.5 do
10993 # not honor the -ignore_readdir_race option correctly. So we call
10994 # error_ignore() rather than error() in these cases. See LU-11152.
10995 error_133() {
10996         if (find --version; do_facet mds1 find --version) |
10997                 grep -q '\b4\.5\.1[1-4]\b'; then
10998                 error_ignore LU-11152 "$@"
10999         else
11000                 error "$@"
11001         fi
11002 }
11003
11004 test_133f() {
11005         # First without trusting modes.
11006         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
11007         echo "proc_dirs='$proc_dirs'"
11008         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
11009         find $proc_dirs -exec cat '{}' \; &> /dev/null
11010
11011         # Second verifying readability.
11012         $LCTL get_param -R '*' &> /dev/null || error "proc file read failed"
11013
11014         # Verifing writability with badarea_io.
11015         find $proc_dirs \
11016                 -ignore_readdir_race \
11017                 -type f \
11018                 -not -name force_lbug \
11019                 -not -name changelog_mask \
11020                 -exec badarea_io '{}' \; ||
11021                         error_133 "find $proc_dirs failed"
11022 }
11023 run_test 133f "Check reads/writes of client lustre proc files with bad area io"
11024
11025 test_133g() {
11026         remote_mds_nodsh && skip "remote MDS with nodsh"
11027         remote_ost_nodsh && skip "remote OST with nodsh"
11028
11029         # eventually, this can also be replaced with "lctl get_param -R",
11030         # but not until that option is always available on the server
11031         local facet
11032         for facet in mds1 ost1; do
11033                 [ $(lustre_version_code $facet) -le $(version_code 2.5.54) ] &&
11034                         skip_noexit "Too old lustre on $facet"
11035                 local facet_proc_dirs=$(do_facet $facet \
11036                                         \\\ls -d $proc_regexp 2>/dev/null)
11037                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
11038                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
11039                 do_facet $facet find $facet_proc_dirs \
11040                         ! -name req_history \
11041                         -exec cat '{}' \\\; &> /dev/null
11042
11043                 do_facet $facet find $facet_proc_dirs \
11044                         ! -name req_history \
11045                         -type f \
11046                         -exec cat '{}' \\\; &> /dev/null ||
11047                                 error "proc file read failed"
11048
11049                 do_facet $facet find $facet_proc_dirs \
11050                         -ignore_readdir_race \
11051                         -type f \
11052                         -not -name force_lbug \
11053                         -not -name changelog_mask \
11054                         -exec badarea_io '{}' \\\; ||
11055                                 error_133 "$facet find $facet_proc_dirs failed"
11056         done
11057
11058         # remount the FS in case writes/reads /proc break the FS
11059         cleanup || error "failed to unmount"
11060         setup || error "failed to setup"
11061         true
11062 }
11063 run_test 133g "Check reads/writes of server lustre proc files with bad area io"
11064
11065 test_133h() {
11066         remote_mds_nodsh && skip "remote MDS with nodsh"
11067         remote_ost_nodsh && skip "remote OST with nodsh"
11068         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.54) ]] &&
11069                 skip "Need MDS version at least 2.9.54"
11070
11071         local facet
11072
11073         for facet in client mds1 ost1; do
11074                 local facet_proc_dirs=$(do_facet $facet \
11075                                         \\\ls -d $proc_regexp 2> /dev/null)
11076                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
11077                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
11078                 # Get the list of files that are missing the terminating newline
11079                 local missing=($(do_facet $facet \
11080                         find ${facet_proc_dirs} -type f \|              \
11081                                 while read F\; do                       \
11082                                         awk -v FS='\v' -v RS='\v\v'     \
11083                                         "'END { if(NR>0 &&              \
11084                                         \\\$NF !~ /.*\\\n\$/)           \
11085                                                 print FILENAME}'"       \
11086                                         '\$F'\;                         \
11087                                 done 2>/dev/null))
11088                 [ ${#missing[*]} -eq 0 ] ||
11089                         error "files do not end with newline: ${missing[*]}"
11090         done
11091 }
11092 run_test 133h "Proc files should end with newlines"
11093
11094 test_134a() {
11095         remote_mds_nodsh && skip "remote MDS with nodsh"
11096         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
11097                 skip "Need MDS version at least 2.7.54"
11098
11099         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
11100         cancel_lru_locks mdc
11101
11102         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
11103         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
11104         [ $unused -eq 0 ] || error "$unused locks are not cleared"
11105
11106         local nr=1000
11107         createmany -o $DIR/$tdir/f $nr ||
11108                 error "failed to create $nr files in $DIR/$tdir"
11109         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
11110
11111         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
11112         do_facet mds1 $LCTL set_param fail_loc=0x327
11113         do_facet mds1 $LCTL set_param fail_val=500
11114         touch $DIR/$tdir/m
11115
11116         echo "sleep 10 seconds ..."
11117         sleep 10
11118         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
11119
11120         do_facet mds1 $LCTL set_param fail_loc=0
11121         do_facet mds1 $LCTL set_param fail_val=0
11122         [ $lck_cnt -lt $unused ] ||
11123                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
11124
11125         rm $DIR/$tdir/m
11126         unlinkmany $DIR/$tdir/f $nr
11127 }
11128 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
11129
11130 test_134b() {
11131         remote_mds_nodsh && skip "remote MDS with nodsh"
11132         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
11133                 skip "Need MDS version at least 2.7.54"
11134
11135         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
11136         cancel_lru_locks mdc
11137
11138         local low_wm=$(do_facet mds1 $LCTL get_param -n \
11139                         ldlm.lock_reclaim_threshold_mb)
11140         # disable reclaim temporarily
11141         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
11142
11143         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
11144         do_facet mds1 $LCTL set_param fail_loc=0x328
11145         do_facet mds1 $LCTL set_param fail_val=500
11146
11147         $LCTL set_param debug=+trace
11148
11149         local nr=600
11150         createmany -o $DIR/$tdir/f $nr &
11151         local create_pid=$!
11152
11153         echo "Sleep $TIMEOUT seconds ..."
11154         sleep $TIMEOUT
11155         if ! ps -p $create_pid  > /dev/null 2>&1; then
11156                 do_facet mds1 $LCTL set_param fail_loc=0
11157                 do_facet mds1 $LCTL set_param fail_val=0
11158                 do_facet mds1 $LCTL set_param \
11159                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
11160                 error "createmany finished incorrectly!"
11161         fi
11162         do_facet mds1 $LCTL set_param fail_loc=0
11163         do_facet mds1 $LCTL set_param fail_val=0
11164         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
11165         wait $create_pid || return 1
11166
11167         unlinkmany $DIR/$tdir/f $nr
11168 }
11169 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
11170
11171 test_140() { #bug-17379
11172         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11173
11174         test_mkdir $DIR/$tdir
11175         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
11176         cp $(which stat) . || error "Copying stat to $DIR/$tdir"
11177
11178         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
11179         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
11180         local i=0
11181         while i=$((i + 1)); do
11182                 test_mkdir $i
11183                 cd $i || error "Changing to $i"
11184                 ln -s ../stat stat || error "Creating stat symlink"
11185                 # Read the symlink until ELOOP present,
11186                 # not LBUGing the system is considered success,
11187                 # we didn't overrun the stack.
11188                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
11189                 if [ $ret -ne 0 ]; then
11190                         if [ $ret -eq 40 ]; then
11191                                 break  # -ELOOP
11192                         else
11193                                 error "Open stat symlink"
11194                                         return
11195                         fi
11196                 fi
11197         done
11198         i=$((i - 1))
11199         echo "The symlink depth = $i"
11200         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
11201                                         error "Invalid symlink depth"
11202
11203         # Test recursive symlink
11204         ln -s symlink_self symlink_self
11205         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
11206         echo "open symlink_self returns $ret"
11207         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
11208 }
11209 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
11210
11211 test_150() {
11212         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11213
11214         local TF="$TMP/$tfile"
11215
11216         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
11217         cp $TF $DIR/$tfile
11218         cancel_lru_locks $OSC
11219         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
11220         remount_client $MOUNT
11221         df -P $MOUNT
11222         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
11223
11224         $TRUNCATE $TF 6000
11225         $TRUNCATE $DIR/$tfile 6000
11226         cancel_lru_locks $OSC
11227         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
11228
11229         echo "12345" >>$TF
11230         echo "12345" >>$DIR/$tfile
11231         cancel_lru_locks $OSC
11232         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
11233
11234         echo "12345" >>$TF
11235         echo "12345" >>$DIR/$tfile
11236         cancel_lru_locks $OSC
11237         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
11238
11239         rm -f $TF
11240         true
11241 }
11242 run_test 150 "truncate/append tests"
11243
11244 #LU-2902 roc_hit was not able to read all values from lproc
11245 function roc_hit_init() {
11246         local list=$(comma_list $(osts_nodes))
11247         local dir=$DIR/$tdir-check
11248         local file=$dir/$tfile
11249         local BEFORE
11250         local AFTER
11251         local idx
11252
11253         test_mkdir $dir
11254         #use setstripe to do a write to every ost
11255         for i in $(seq 0 $((OSTCOUNT-1))); do
11256                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
11257                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
11258                 idx=$(printf %04x $i)
11259                 BEFORE=$(get_osd_param $list *OST*$idx stats |
11260                         awk '$1 == "cache_access" {sum += $7}
11261                                 END { printf("%0.0f", sum) }')
11262
11263                 cancel_lru_locks osc
11264                 cat $file >/dev/null
11265
11266                 AFTER=$(get_osd_param $list *OST*$idx stats |
11267                         awk '$1 == "cache_access" {sum += $7}
11268                                 END { printf("%0.0f", sum) }')
11269
11270                 echo BEFORE:$BEFORE AFTER:$AFTER
11271                 if ! let "AFTER - BEFORE == 4"; then
11272                         rm -rf $dir
11273                         error "roc_hit is not safe to use"
11274                 fi
11275                 rm $file
11276         done
11277
11278         rm -rf $dir
11279 }
11280
11281 function roc_hit() {
11282         local list=$(comma_list $(osts_nodes))
11283         echo $(get_osd_param $list '' stats |
11284                 awk '$1 == "cache_hit" {sum += $7}
11285                         END { printf("%0.0f", sum) }')
11286 }
11287
11288 function set_cache() {
11289         local on=1
11290
11291         if [ "$2" == "off" ]; then
11292                 on=0;
11293         fi
11294         local list=$(comma_list $(osts_nodes))
11295         set_osd_param $list '' $1_cache_enable $on
11296
11297         cancel_lru_locks osc
11298 }
11299
11300 test_151() {
11301         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11302         remote_ost_nodsh && skip "remote OST with nodsh"
11303
11304         local CPAGES=3
11305         local list=$(comma_list $(osts_nodes))
11306
11307         # check whether obdfilter is cache capable at all
11308         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
11309                 skip "not cache-capable obdfilter"
11310         fi
11311
11312         # check cache is enabled on all obdfilters
11313         if get_osd_param $list '' read_cache_enable | grep 0; then
11314                 skip "oss cache is disabled"
11315         fi
11316
11317         set_osd_param $list '' writethrough_cache_enable 1
11318
11319         # check write cache is enabled on all obdfilters
11320         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
11321                 skip "oss write cache is NOT enabled"
11322         fi
11323
11324         roc_hit_init
11325
11326         #define OBD_FAIL_OBD_NO_LRU  0x609
11327         do_nodes $list $LCTL set_param fail_loc=0x609
11328
11329         # pages should be in the case right after write
11330         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
11331                 error "dd failed"
11332
11333         local BEFORE=$(roc_hit)
11334         cancel_lru_locks osc
11335         cat $DIR/$tfile >/dev/null
11336         local AFTER=$(roc_hit)
11337
11338         do_nodes $list $LCTL set_param fail_loc=0
11339
11340         if ! let "AFTER - BEFORE == CPAGES"; then
11341                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11342         fi
11343
11344         # the following read invalidates the cache
11345         cancel_lru_locks osc
11346         set_osd_param $list '' read_cache_enable 0
11347         cat $DIR/$tfile >/dev/null
11348
11349         # now data shouldn't be found in the cache
11350         BEFORE=$(roc_hit)
11351         cancel_lru_locks osc
11352         cat $DIR/$tfile >/dev/null
11353         AFTER=$(roc_hit)
11354         if let "AFTER - BEFORE != 0"; then
11355                 error "IN CACHE: before: $BEFORE, after: $AFTER"
11356         fi
11357
11358         set_osd_param $list '' read_cache_enable 1
11359         rm -f $DIR/$tfile
11360 }
11361 run_test 151 "test cache on oss and controls ==============================="
11362
11363 test_152() {
11364         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11365
11366         local TF="$TMP/$tfile"
11367
11368         # simulate ENOMEM during write
11369 #define OBD_FAIL_OST_NOMEM      0x226
11370         lctl set_param fail_loc=0x80000226
11371         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
11372         cp $TF $DIR/$tfile
11373         sync || error "sync failed"
11374         lctl set_param fail_loc=0
11375
11376         # discard client's cache
11377         cancel_lru_locks osc
11378
11379         # simulate ENOMEM during read
11380         lctl set_param fail_loc=0x80000226
11381         cmp $TF $DIR/$tfile || error "cmp failed"
11382         lctl set_param fail_loc=0
11383
11384         rm -f $TF
11385 }
11386 run_test 152 "test read/write with enomem ============================"
11387
11388 test_153() {
11389         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
11390 }
11391 run_test 153 "test if fdatasync does not crash ======================="
11392
11393 dot_lustre_fid_permission_check() {
11394         local fid=$1
11395         local ffid=$MOUNT/.lustre/fid/$fid
11396         local test_dir=$2
11397
11398         echo "stat fid $fid"
11399         stat $ffid > /dev/null || error "stat $ffid failed."
11400         echo "touch fid $fid"
11401         touch $ffid || error "touch $ffid failed."
11402         echo "write to fid $fid"
11403         cat /etc/hosts > $ffid || error "write $ffid failed."
11404         echo "read fid $fid"
11405         diff /etc/hosts $ffid || error "read $ffid failed."
11406         echo "append write to fid $fid"
11407         cat /etc/hosts >> $ffid || error "append write $ffid failed."
11408         echo "rename fid $fid"
11409         mv $ffid $test_dir/$tfile.1 &&
11410                 error "rename $ffid to $tfile.1 should fail."
11411         touch $test_dir/$tfile.1
11412         mv $test_dir/$tfile.1 $ffid &&
11413                 error "rename $tfile.1 to $ffid should fail."
11414         rm -f $test_dir/$tfile.1
11415         echo "truncate fid $fid"
11416         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
11417         echo "link fid $fid"
11418         ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
11419         if [[ $($LCTL get_param -n mdc.*-mdc-*.connect_flags) =~ acl ]]; then
11420                 echo "setfacl fid $fid"
11421                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
11422                 echo "getfacl fid $fid"
11423                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
11424         fi
11425         echo "unlink fid $fid"
11426         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
11427         echo "mknod fid $fid"
11428         mknod $ffid c 1 3 && error "mknod $ffid should fail."
11429
11430         fid=[0xf00000400:0x1:0x0]
11431         ffid=$MOUNT/.lustre/fid/$fid
11432
11433         echo "stat non-exist fid $fid"
11434         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
11435         echo "write to non-exist fid $fid"
11436         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
11437         echo "link new fid $fid"
11438         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
11439
11440         mkdir -p $test_dir/$tdir
11441         touch $test_dir/$tdir/$tfile
11442         fid=$($LFS path2fid $test_dir/$tdir)
11443         rc=$?
11444         [ $rc -ne 0 ] &&
11445                 error "error: could not get fid for $test_dir/$dir/$tfile."
11446
11447         ffid=$MOUNT/.lustre/fid/$fid
11448
11449         echo "ls $fid"
11450         ls $ffid > /dev/null || error "ls $ffid failed."
11451         echo "touch $fid/$tfile.1"
11452         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
11453
11454         echo "touch $MOUNT/.lustre/fid/$tfile"
11455         touch $MOUNT/.lustre/fid/$tfile && \
11456                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
11457
11458         echo "setxattr to $MOUNT/.lustre/fid"
11459         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
11460
11461         echo "listxattr for $MOUNT/.lustre/fid"
11462         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
11463
11464         echo "delxattr from $MOUNT/.lustre/fid"
11465         setfattr -x trusted.name1 $MOUNT/.lustre/fid
11466
11467         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
11468         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
11469                 error "touch invalid fid should fail."
11470
11471         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
11472         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
11473                 error "touch non-normal fid should fail."
11474
11475         echo "rename $tdir to $MOUNT/.lustre/fid"
11476         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
11477                 error "rename to $MOUNT/.lustre/fid should fail."
11478
11479         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
11480         then            # LU-3547
11481                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
11482                 local new_obf_mode=777
11483
11484                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
11485                 chmod $new_obf_mode $DIR/.lustre/fid ||
11486                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
11487
11488                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
11489                 [ $obf_mode -eq $new_obf_mode ] ||
11490                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
11491
11492                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
11493                 chmod $old_obf_mode $DIR/.lustre/fid ||
11494                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
11495         fi
11496
11497         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
11498         fid=$($LFS path2fid $test_dir/$tfile-2)
11499
11500         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.50) ]
11501         then # LU-5424
11502                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
11503                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
11504                         error "create lov data thru .lustre failed"
11505         fi
11506         echo "cp /etc/passwd $test_dir/$tfile-2"
11507         cp /etc/passwd $test_dir/$tfile-2 ||
11508                 error "copy to $test_dir/$tfile-2 failed."
11509         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
11510         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
11511                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
11512
11513         rm -rf $test_dir/tfile.lnk
11514         rm -rf $test_dir/$tfile-2
11515 }
11516
11517 test_154A() {
11518         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
11519                 skip "Need MDS version at least 2.4.1"
11520
11521         local tf=$DIR/$tfile
11522         touch $tf
11523
11524         local fid=$($LFS path2fid $tf)
11525         [ -z "$fid" ] && error "path2fid unable to get $tf FID"
11526
11527         # check that we get the same pathname back
11528         local found=$($LFS fid2path $MOUNT "$fid")
11529         [ -z "$found" ] && error "fid2path unable to get '$fid' path"
11530         [ "$found" == "$tf" ] ||
11531                 error "fid2path($fid=path2fid($tf)) = $found != $tf"
11532 }
11533 run_test 154A "lfs path2fid and fid2path basic checks"
11534
11535 test_154B() {
11536         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
11537                 skip "Need MDS version at least 2.4.1"
11538
11539         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
11540         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
11541         local linkea=$($LL_DECODE_LINKEA $DIR/$tdir/$tfile | grep 'pfid')
11542         [ -z "$linkea" ] && error "decode linkea $DIR/$tdir/$tfile failed"
11543
11544         local name=$(echo $linkea | awk '/pfid/ {print $5}' | sed -e "s/'//g")
11545         local PFID=$(echo $linkea | awk '/pfid/ {print $3}' | sed -e "s/,//g")
11546
11547         # check that we get the same pathname
11548         echo "PFID: $PFID, name: $name"
11549         local FOUND=$($LFS fid2path $MOUNT "$PFID")
11550         [ -z "$FOUND" ] && error "fid2path unable to get $PFID path"
11551         [ "$FOUND/$name" != "$DIR/$tdir/$tfile" ] &&
11552                 error "ll_decode_linkea has $FOUND/$name != $DIR/$tdir/$tfile"
11553
11554         rm -rf $DIR/$tdir || error "Can not delete directory $DIR/$tdir"
11555 }
11556 run_test 154B "verify the ll_decode_linkea tool"
11557
11558 test_154a() {
11559         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11560         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11561         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
11562                 skip "Need MDS version at least 2.2.51"
11563         [ -z "$(which setfacl)" ] && skip_env "must have setfacl tool"
11564
11565         cp /etc/hosts $DIR/$tfile
11566
11567         fid=$($LFS path2fid $DIR/$tfile)
11568         rc=$?
11569         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
11570
11571         dot_lustre_fid_permission_check "$fid" $DIR ||
11572                 error "dot lustre permission check $fid failed"
11573
11574         ls -a $MOUNT | grep "\.lustre" && error ".lustre should not be listed"
11575
11576         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
11577
11578         touch $MOUNT/.lustre/file &&
11579                 error "creation is not allowed under .lustre"
11580
11581         mkdir $MOUNT/.lustre/dir &&
11582                 error "mkdir is not allowed under .lustre"
11583
11584         rm -rf $DIR/$tfile
11585 }
11586 run_test 154a "Open-by-FID"
11587
11588 test_154b() {
11589         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11590         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11591         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
11592         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
11593                 skip "Need MDS version at least 2.2.51"
11594
11595         local remote_dir=$DIR/$tdir/remote_dir
11596         local MDTIDX=1
11597         local rc=0
11598
11599         mkdir -p $DIR/$tdir
11600         $LFS mkdir -i $MDTIDX $remote_dir ||
11601                 error "create remote directory failed"
11602
11603         cp /etc/hosts $remote_dir/$tfile
11604
11605         fid=$($LFS path2fid $remote_dir/$tfile)
11606         rc=$?
11607         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
11608
11609         dot_lustre_fid_permission_check "$fid" $remote_dir ||
11610                 error "dot lustre permission check $fid failed"
11611         rm -rf $DIR/$tdir
11612 }
11613 run_test 154b "Open-by-FID for remote directory"
11614
11615 test_154c() {
11616         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
11617                 skip "Need MDS version at least 2.4.1"
11618
11619         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
11620         local FID1=$($LFS path2fid $DIR/$tfile.1)
11621         local FID2=$($LFS path2fid $DIR/$tfile.2)
11622         local FID3=$($LFS path2fid $DIR/$tfile.3)
11623
11624         local N=1
11625         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
11626                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
11627                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
11628                 local want=FID$N
11629                 [ "$FID" = "${!want}" ] ||
11630                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
11631                 N=$((N + 1))
11632         done
11633
11634         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
11635         do
11636                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
11637                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
11638                 N=$((N + 1))
11639         done
11640 }
11641 run_test 154c "lfs path2fid and fid2path multiple arguments"
11642
11643 test_154d() {
11644         remote_mds_nodsh && skip "remote MDS with nodsh"
11645         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.53) ]] &&
11646                 skip "Need MDS version at least 2.5.53"
11647
11648         if remote_mds; then
11649                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
11650         else
11651                 nid="0@lo"
11652         fi
11653         local proc_ofile="mdt.*.exports.'$nid'.open_files"
11654         local fd
11655         local cmd
11656
11657         rm -f $DIR/$tfile
11658         touch $DIR/$tfile
11659
11660         local fid=$($LFS path2fid $DIR/$tfile)
11661         # Open the file
11662         fd=$(free_fd)
11663         cmd="exec $fd<$DIR/$tfile"
11664         eval $cmd
11665         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
11666         echo "$fid_list" | grep "$fid"
11667         rc=$?
11668
11669         cmd="exec $fd>/dev/null"
11670         eval $cmd
11671         if [ $rc -ne 0 ]; then
11672                 error "FID $fid not found in open files list $fid_list"
11673         fi
11674 }
11675 run_test 154d "Verify open file fid"
11676
11677 test_154e()
11678 {
11679         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.50) ]] &&
11680                 skip "Need MDS version at least 2.6.50"
11681
11682         if ls -a $MOUNT | grep -q '^\.lustre$'; then
11683                 error ".lustre returned by readdir"
11684         fi
11685 }
11686 run_test 154e ".lustre is not returned by readdir"
11687
11688 test_154f() {
11689         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11690
11691         # create parent directory on a single MDT to avoid cross-MDT hardlinks
11692         test_mkdir -p -c1 $DIR/$tdir/d
11693         # test dirs inherit from its stripe
11694         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
11695         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
11696         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
11697         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
11698         touch $DIR/f
11699
11700         # get fid of parents
11701         local FID0=$($LFS path2fid $DIR/$tdir/d)
11702         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
11703         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
11704         local FID3=$($LFS path2fid $DIR)
11705
11706         # check that path2fid --parents returns expected <parent_fid>/name
11707         # 1) test for a directory (single parent)
11708         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
11709         [ "$parent" == "$FID0/foo1" ] ||
11710                 error "expected parent: $FID0/foo1, got: $parent"
11711
11712         # 2) test for a file with nlink > 1 (multiple parents)
11713         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
11714         echo "$parent" | grep -F "$FID1/$tfile" ||
11715                 error "$FID1/$tfile not returned in parent list"
11716         echo "$parent" | grep -F "$FID2/link" ||
11717                 error "$FID2/link not returned in parent list"
11718
11719         # 3) get parent by fid
11720         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
11721         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11722         echo "$parent" | grep -F "$FID1/$tfile" ||
11723                 error "$FID1/$tfile not returned in parent list (by fid)"
11724         echo "$parent" | grep -F "$FID2/link" ||
11725                 error "$FID2/link not returned in parent list (by fid)"
11726
11727         # 4) test for entry in root directory
11728         parent=$($LFS path2fid --parents $DIR/f)
11729         echo "$parent" | grep -F "$FID3/f" ||
11730                 error "$FID3/f not returned in parent list"
11731
11732         # 5) test it on root directory
11733         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
11734                 error "$MOUNT should not have parents"
11735
11736         # enable xattr caching and check that linkea is correctly updated
11737         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
11738         save_lustre_params client "llite.*.xattr_cache" > $save
11739         lctl set_param llite.*.xattr_cache 1
11740
11741         # 6.1) linkea update on rename
11742         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
11743
11744         # get parents by fid
11745         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11746         # foo1 should no longer be returned in parent list
11747         echo "$parent" | grep -F "$FID1" &&
11748                 error "$FID1 should no longer be in parent list"
11749         # the new path should appear
11750         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
11751                 error "$FID2/$tfile.moved is not in parent list"
11752
11753         # 6.2) linkea update on unlink
11754         rm -f $DIR/$tdir/d/foo2/link
11755         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11756         # foo2/link should no longer be returned in parent list
11757         echo "$parent" | grep -F "$FID2/link" &&
11758                 error "$FID2/link should no longer be in parent list"
11759         true
11760
11761         rm -f $DIR/f
11762         restore_lustre_params < $save
11763         rm -f $save
11764 }
11765 run_test 154f "get parent fids by reading link ea"
11766
11767 test_154g()
11768 {
11769         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11770         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.92) && \
11771            $(lustre_version_code client) -gt $(version_code 2.6.99) ]] ||
11772                 skip "Need MDS version at least 2.6.92"
11773
11774         mkdir -p $DIR/$tdir
11775         llapi_fid_test -d $DIR/$tdir
11776 }
11777 run_test 154g "various llapi FID tests"
11778
11779 test_155_small_load() {
11780     local temp=$TMP/$tfile
11781     local file=$DIR/$tfile
11782
11783     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
11784         error "dd of=$temp bs=6096 count=1 failed"
11785     cp $temp $file
11786     cancel_lru_locks $OSC
11787     cmp $temp $file || error "$temp $file differ"
11788
11789     $TRUNCATE $temp 6000
11790     $TRUNCATE $file 6000
11791     cmp $temp $file || error "$temp $file differ (truncate1)"
11792
11793     echo "12345" >>$temp
11794     echo "12345" >>$file
11795     cmp $temp $file || error "$temp $file differ (append1)"
11796
11797     echo "12345" >>$temp
11798     echo "12345" >>$file
11799     cmp $temp $file || error "$temp $file differ (append2)"
11800
11801     rm -f $temp $file
11802     true
11803 }
11804
11805 test_155_big_load() {
11806         remote_ost_nodsh && skip "remote OST with nodsh"
11807
11808         local temp=$TMP/$tfile
11809         local file=$DIR/$tfile
11810
11811         free_min_max
11812         local cache_size=$(do_facet ost$((MAXI+1)) \
11813                 "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
11814         local large_file_size=$((cache_size * 2))
11815
11816         echo "OSS cache size: $cache_size KB"
11817         echo "Large file size: $large_file_size KB"
11818
11819         [ $MAXV -le $large_file_size ] &&
11820                 skip_env "max available OST size needs > $large_file_size KB"
11821
11822         $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
11823
11824         dd if=/dev/urandom of=$temp bs=$large_file_size count=1k ||
11825                 error "dd of=$temp bs=$large_file_size count=1k failed"
11826         cp $temp $file
11827         ls -lh $temp $file
11828         cancel_lru_locks osc
11829         cmp $temp $file || error "$temp $file differ"
11830
11831         rm -f $temp $file
11832         true
11833 }
11834
11835 save_writethrough() {
11836         local facets=$(get_facets OST)
11837
11838         save_lustre_params $facets "obdfilter.*.writethrough_cache_enable" > $1
11839         save_lustre_params $facets "osd-*.*.writethrough_cache_enable" >> $1
11840 }
11841
11842 test_155a() {
11843         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11844
11845         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11846
11847         save_writethrough $p
11848
11849         set_cache read on
11850         set_cache writethrough on
11851         test_155_small_load
11852         restore_lustre_params < $p
11853         rm -f $p
11854 }
11855 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
11856
11857 test_155b() {
11858         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11859
11860         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11861
11862         save_writethrough $p
11863
11864         set_cache read on
11865         set_cache writethrough off
11866         test_155_small_load
11867         restore_lustre_params < $p
11868         rm -f $p
11869 }
11870 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
11871
11872 test_155c() {
11873         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11874
11875         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11876
11877         save_writethrough $p
11878
11879         set_cache read off
11880         set_cache writethrough on
11881         test_155_small_load
11882         restore_lustre_params < $p
11883         rm -f $p
11884 }
11885 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
11886
11887 test_155d() {
11888         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11889
11890         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11891
11892         save_writethrough $p
11893
11894         set_cache read off
11895         set_cache writethrough off
11896         test_155_small_load
11897         restore_lustre_params < $p
11898         rm -f $p
11899 }
11900 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
11901
11902 test_155e() {
11903         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11904
11905         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11906
11907         save_writethrough $p
11908
11909         set_cache read on
11910         set_cache writethrough on
11911         test_155_big_load
11912         restore_lustre_params < $p
11913         rm -f $p
11914 }
11915 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
11916
11917 test_155f() {
11918         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11919
11920         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11921
11922         save_writethrough $p
11923
11924         set_cache read on
11925         set_cache writethrough off
11926         test_155_big_load
11927         restore_lustre_params < $p
11928         rm -f $p
11929 }
11930 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
11931
11932 test_155g() {
11933         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11934
11935         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11936
11937         save_writethrough $p
11938
11939         set_cache read off
11940         set_cache writethrough on
11941         test_155_big_load
11942         restore_lustre_params < $p
11943         rm -f $p
11944 }
11945 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
11946
11947 test_155h() {
11948         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11949
11950         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11951
11952         save_writethrough $p
11953
11954         set_cache read off
11955         set_cache writethrough off
11956         test_155_big_load
11957         restore_lustre_params < $p
11958         rm -f $p
11959 }
11960 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
11961
11962 test_156() {
11963         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11964         remote_ost_nodsh && skip "remote OST with nodsh"
11965         [ "$(facet_fstype ost1)" = "zfs" -a \
11966            $(lustre_version_code ost1 -lt $(version_code 2.6.93)) ] &&
11967                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS"
11968
11969         local CPAGES=3
11970         local BEFORE
11971         local AFTER
11972         local file="$DIR/$tfile"
11973         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11974
11975         save_writethrough $p
11976         roc_hit_init
11977
11978         log "Turn on read and write cache"
11979         set_cache read on
11980         set_cache writethrough on
11981
11982         log "Write data and read it back."
11983         log "Read should be satisfied from the cache."
11984         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
11985         BEFORE=$(roc_hit)
11986         cancel_lru_locks osc
11987         cat $file >/dev/null
11988         AFTER=$(roc_hit)
11989         if ! let "AFTER - BEFORE == CPAGES"; then
11990                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11991         else
11992                 log "cache hits:: before: $BEFORE, after: $AFTER"
11993         fi
11994
11995         log "Read again; it should be satisfied from the cache."
11996         BEFORE=$AFTER
11997         cancel_lru_locks osc
11998         cat $file >/dev/null
11999         AFTER=$(roc_hit)
12000         if ! let "AFTER - BEFORE == CPAGES"; then
12001                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12002         else
12003                 log "cache hits:: before: $BEFORE, after: $AFTER"
12004         fi
12005
12006         log "Turn off the read cache and turn on the write cache"
12007         set_cache read off
12008         set_cache writethrough on
12009
12010         log "Read again; it should be satisfied from the cache."
12011         BEFORE=$(roc_hit)
12012         cancel_lru_locks osc
12013         cat $file >/dev/null
12014         AFTER=$(roc_hit)
12015         if ! let "AFTER - BEFORE == CPAGES"; then
12016                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12017         else
12018                 log "cache hits:: before: $BEFORE, after: $AFTER"
12019         fi
12020
12021         log "Read again; it should not be satisfied from the cache."
12022         BEFORE=$AFTER
12023         cancel_lru_locks osc
12024         cat $file >/dev/null
12025         AFTER=$(roc_hit)
12026         if ! let "AFTER - BEFORE == 0"; then
12027                 error "IN CACHE: before: $BEFORE, after: $AFTER"
12028         else
12029                 log "cache hits:: before: $BEFORE, after: $AFTER"
12030         fi
12031
12032         log "Write data and read it back."
12033         log "Read should be satisfied from the cache."
12034         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12035         BEFORE=$(roc_hit)
12036         cancel_lru_locks osc
12037         cat $file >/dev/null
12038         AFTER=$(roc_hit)
12039         if ! let "AFTER - BEFORE == CPAGES"; then
12040                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12041         else
12042                 log "cache hits:: before: $BEFORE, after: $AFTER"
12043         fi
12044
12045         log "Read again; it should not be satisfied from the cache."
12046         BEFORE=$AFTER
12047         cancel_lru_locks osc
12048         cat $file >/dev/null
12049         AFTER=$(roc_hit)
12050         if ! let "AFTER - BEFORE == 0"; then
12051                 error "IN CACHE: before: $BEFORE, after: $AFTER"
12052         else
12053                 log "cache hits:: before: $BEFORE, after: $AFTER"
12054         fi
12055
12056         log "Turn off read and write cache"
12057         set_cache read off
12058         set_cache writethrough off
12059
12060         log "Write data and read it back"
12061         log "It should not be satisfied from the cache."
12062         rm -f $file
12063         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12064         cancel_lru_locks osc
12065         BEFORE=$(roc_hit)
12066         cat $file >/dev/null
12067         AFTER=$(roc_hit)
12068         if ! let "AFTER - BEFORE == 0"; then
12069                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
12070         else
12071                 log "cache hits:: before: $BEFORE, after: $AFTER"
12072         fi
12073
12074         log "Turn on the read cache and turn off the write cache"
12075         set_cache read on
12076         set_cache writethrough off
12077
12078         log "Write data and read it back"
12079         log "It should not be satisfied from the cache."
12080         rm -f $file
12081         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12082         BEFORE=$(roc_hit)
12083         cancel_lru_locks osc
12084         cat $file >/dev/null
12085         AFTER=$(roc_hit)
12086         if ! let "AFTER - BEFORE == 0"; then
12087                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
12088         else
12089                 log "cache hits:: before: $BEFORE, after: $AFTER"
12090         fi
12091
12092         log "Read again; it should be satisfied from the cache."
12093         BEFORE=$(roc_hit)
12094         cancel_lru_locks osc
12095         cat $file >/dev/null
12096         AFTER=$(roc_hit)
12097         if ! let "AFTER - BEFORE == CPAGES"; then
12098                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12099         else
12100                 log "cache hits:: before: $BEFORE, after: $AFTER"
12101         fi
12102
12103         restore_lustre_params < $p
12104         rm -f $p $file
12105 }
12106 run_test 156 "Verification of tunables"
12107
12108 test_160a() {
12109         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12110         remote_mds_nodsh && skip "remote MDS with nodsh"
12111         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
12112                 skip "Need MDS version at least 2.2.0"
12113
12114         changelog_register || error "changelog_register failed"
12115         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
12116         changelog_users $SINGLEMDS | grep -q $cl_user ||
12117                 error "User $cl_user not found in changelog_users"
12118
12119         # change something
12120         test_mkdir -p $DIR/$tdir/pics/2008/zachy
12121         changelog_clear 0 || error "changelog_clear failed"
12122         touch $DIR/$tdir/pics/2008/zachy/$tfile                 # open 1
12123         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg       # open 2
12124         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
12125         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
12126         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
12127         rm $DIR/$tdir/pics/desktop.jpg
12128
12129         changelog_dump | tail -10
12130
12131         echo "verifying changelog mask"
12132         changelog_chmask "-MKDIR"
12133         changelog_chmask "-CLOSE"
12134
12135         test_mkdir -p $DIR/$tdir/pics/zach/sofia                # not logged
12136         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # not logged
12137
12138         changelog_chmask "+MKDIR"
12139         changelog_chmask "+CLOSE"
12140
12141         test_mkdir -p $DIR/$tdir/pics/2008/sofia                # mkdir 1
12142         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # open 3
12143
12144         changelog_dump | tail -10
12145         MKDIRS=$(changelog_dump | grep -c "MKDIR")
12146         CLOSES=$(changelog_dump | grep -c "CLOSE")
12147         [ $MKDIRS -eq 1 ] || error "MKDIR changelog mask count $MKDIRS != 1"
12148         [ $CLOSES -eq 3 ] || error "CLOSE changelog mask count $CLOSES != 3"
12149
12150         # verify contents
12151         echo "verifying target fid"
12152         local fidc=$(changelog_extract_field "CREAT" "$tfile" "t=")
12153         local fidf=$($LFS path2fid $DIR/$tdir/pics/zach/$tfile)
12154         [ "$fidc" == "$fidf" ] ||
12155                 error "changelog '$tfile' fid $fidc != file fid $fidf"
12156         echo "verifying parent fid"
12157         # The FID returned from the Changelog may be the directory shard on
12158         # a different MDT, and not the FID returned by path2fid on the parent.
12159         # Instead of comparing FIDs, verify that fid2path(fidp) is correct,
12160         # since this is what will matter when recreating this file in the tree.
12161         local fidp=$(changelog_extract_field "CREAT" "$tfile" "p=")
12162         local pathp=$($LFS fid2path $MOUNT "$fidp")
12163         [ "${pathp%/}" == "$DIR/$tdir/pics/zach" ] ||
12164                 error "changelog fid2path($fidc) $pathp != $DIR/$tdir/pics/zach"
12165
12166         echo "getting records for $cl_user"
12167         changelog_users $SINGLEMDS
12168         local user_rec1=$(changelog_user_rec $SINGLEMDS $cl_user)
12169         local nclr=3
12170         __changelog_clear $SINGLEMDS $cl_user +$nclr ||
12171                 error "changelog_clear failed"
12172         local user_rec2=$(changelog_user_rec $SINGLEMDS $cl_user)
12173         echo "verifying user clear: $user_rec1 + $nclr == $user_rec2"
12174         [ $user_rec2 == $((user_rec1 + nclr)) ] ||
12175                 error "user index expect $user_rec1 + $nclr != $user_rec2"
12176
12177         local min0_rec=$(changelog_users $SINGLEMDS |
12178                 awk 'min == "" || $2 < min { min = $2 }; END { print min }')
12179         local first_rec=$($LFS changelog $(facet_svc $SINGLEMDS) |
12180                           awk '{ print $1; exit; }')
12181
12182         changelog_dump | tail -n 5
12183         echo "verifying user min purge: $min0_rec + 1 == $first_rec"
12184         [ $first_rec == $((min0_rec + 1)) ] ||
12185                 error "first index should be $min0_rec + 1 not $first_rec"
12186
12187         # LU-3446 changelog index reset on MDT restart
12188         local cur_rec1=$(changelog_users $SINGLEMDS |
12189                          awk '/^current.index:/ { print $NF }')
12190         changelog_clear 0 ||
12191                 error "clear all changelog records for $cl_user failed"
12192         stop $SINGLEMDS || error "Fail to stop $SINGLEMDS"
12193         start $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) $MDS_MOUNT_OPTS ||
12194                 error "Fail to start $SINGLEMDS"
12195         local cur_rec2=$(changelog_users $SINGLEMDS |
12196                          awk '/^current.index:/ { print $NF }')
12197         echo "verifying index survives MDT restart: $cur_rec1 == $cur_rec2"
12198         [ $cur_rec1 == $cur_rec2 ] ||
12199                 error "current index should be $cur_rec1 not $cur_rec2"
12200
12201         echo "verifying users from this test are deregistered"
12202         changelog_deregister || error "changelog_deregister failed"
12203         changelog_users $SINGLEMDS | grep -q $cl_user &&
12204                 error "User '$cl_user' still in changelog_users"
12205
12206         # lctl get_param -n mdd.*.changelog_users
12207         # current index: 144
12208         # ID    index (idle seconds)
12209         # cl3   144 (2)
12210         if ! changelog_users $SINGLEMDS | grep "^cl"; then
12211                 # this is the normal case where all users were deregistered
12212                 # make sure no new records are added when no users are present
12213                 local last_rec1=$(changelog_users $SINGLEMDS |
12214                                   awk '/^current.index:/ { print $NF }')
12215                 touch $DIR/$tdir/chloe
12216                 local last_rec2=$(changelog_users $SINGLEMDS |
12217                                   awk '/^current.index:/ { print $NF }')
12218                 echo "verify changelogs are off: $last_rec1 == $last_rec2"
12219                 [ $last_rec1 == $last_rec2 ] || error "changelogs not off"
12220         else
12221                 # any changelog users must be leftovers from a previous test
12222                 changelog_users $SINGLEMDS
12223                 echo "other changelog users; can't verify off"
12224         fi
12225 }
12226 run_test 160a "changelog sanity"
12227
12228 test_160b() { # LU-3587
12229         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12230         remote_mds_nodsh && skip "remote MDS with nodsh"
12231         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
12232                 skip "Need MDS version at least 2.2.0"
12233
12234         changelog_register || error "changelog_register failed"
12235         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
12236         changelog_users $SINGLEMDS | grep -q $cl_user ||
12237                 error "User '$cl_user' not found in changelog_users"
12238
12239         local longname1=$(str_repeat a 255)
12240         local longname2=$(str_repeat b 255)
12241
12242         cd $DIR
12243         echo "creating very long named file"
12244         touch $longname1 || error "create of '$longname1' failed"
12245         echo "renaming very long named file"
12246         mv $longname1 $longname2
12247
12248         changelog_dump | grep RENME | tail -n 5
12249         rm -f $longname2
12250 }
12251 run_test 160b "Verify that very long rename doesn't crash in changelog"
12252
12253 test_160c() {
12254         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12255         remote_mds_nodsh && skip "remote MDS with nodsh"
12256
12257         local rc=0
12258         local server_version=$(lustre_version_code $SINGLEMDS)
12259
12260         [[ $server_version -gt $(version_code 2.5.57) ]] ||
12261                 [[ $server_version -gt $(version_code 2.5.1) &&
12262                    $server_version -lt $(version_code 2.5.50) ]] ||
12263                 skip "Need MDS version at least 2.5.58 or 2.5.2+"
12264
12265         # Registration step
12266         changelog_register || error "changelog_register failed"
12267
12268         rm -rf $DIR/$tdir
12269         mkdir -p $DIR/$tdir
12270         $MCREATE $DIR/$tdir/foo_160c
12271         changelog_chmask "-TRUNC"
12272         $TRUNCATE $DIR/$tdir/foo_160c 200
12273         changelog_chmask "+TRUNC"
12274         $TRUNCATE $DIR/$tdir/foo_160c 199
12275         changelog_dump | tail -n 5
12276         local truncs=$(changelog_dump | tail -n 5 | grep -c TRUNC)
12277         [ $truncs -eq 1 ] || error "TRUNC changelog mask count $truncs != 1"
12278 }
12279 run_test 160c "verify that changelog log catch the truncate event"
12280
12281 test_160d() {
12282         remote_mds_nodsh && skip "remote MDS with nodsh"
12283         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
12284         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12285         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.60) ]] ||
12286                 skip "Need MDS version at least 2.7.60"
12287
12288         # Registration step
12289         changelog_register || error "changelog_register failed"
12290
12291         mkdir -p $DIR/$tdir/migrate_dir
12292         changelog_clear 0 || error "changelog_clear failed"
12293
12294         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
12295         changelog_dump | tail -n 5
12296         local migrates=$(changelog_dump | grep -c "MIGRT")
12297         [ $migrates -eq 1 ] || error "MIGRATE changelog count $migrates != 1"
12298 }
12299 run_test 160d "verify that changelog log catch the migrate event"
12300
12301 test_160e() {
12302         remote_mds_nodsh && skip "remote MDS with nodsh"
12303
12304         # Create a user
12305         changelog_register || error "changelog_register failed"
12306
12307         # Delete a future user (expect fail)
12308         local MDT0=$(facet_svc $SINGLEMDS)
12309         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister "cl77"
12310         local rc=$?
12311
12312         if [ $rc -eq 0 ]; then
12313                 error "Deleted non-existant user cl77"
12314         elif [ $rc -ne 2 ]; then
12315                 error "changelog_deregister failed with $rc, expect 2 (ENOENT)"
12316         fi
12317
12318         # Clear to a bad index (1 billion should be safe)
12319         $LFS changelog_clear $MDT0 "${CL_USERS[$SINGLEMDS]%% *}" 1000000000
12320         rc=$?
12321
12322         if [ $rc -eq 0 ]; then
12323                 error "Successfully cleared to invalid CL index"
12324         elif [ $rc -ne 22 ]; then
12325                 error "changelog_clear failed with $rc, expected 22 (EINVAL)"
12326         fi
12327 }
12328 run_test 160e "changelog negative testing (should return errors)"
12329
12330 test_160f() {
12331         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12332         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.56) ]] ||
12333                 { skip "Need MDS version at least 2.10.56"; return 0; }
12334
12335         local mdts=$(comma_list $(mdts_nodes))
12336
12337         # Create a user
12338         changelog_register || error "first changelog_register failed"
12339         changelog_register || error "second changelog_register failed"
12340         local cl_users
12341         declare -A cl_user1
12342         declare -A cl_user2
12343         local user_rec1
12344         local user_rec2
12345         local i
12346
12347         # generate some changelog records to accumulate on each MDT
12348         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "test_mkdir $tdir failed"
12349         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12350                 error "create $DIR/$tdir/$tfile failed"
12351
12352         # check changelogs have been generated
12353         local nbcl=$(changelog_dump | wc -l)
12354         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12355
12356         for param in "changelog_max_idle_time=10" \
12357                      "changelog_gc=1" \
12358                      "changelog_min_gc_interval=2" \
12359                      "changelog_min_free_cat_entries=3"; do
12360                 local MDT0=$(facet_svc $SINGLEMDS)
12361                 local var="${param%=*}"
12362                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12363
12364                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12365                 do_nodes $mdts $LCTL set_param mdd.*.$param
12366         done
12367
12368         # force cl_user2 to be idle (1st part)
12369         sleep 9
12370
12371         # simulate changelog catalog almost full
12372         #define OBD_FAIL_CAT_FREE_RECORDS       0x1313
12373         do_nodes $mdts $LCTL set_param fail_loc=0x1313 fail_val=3
12374
12375         for i in $(seq $MDSCOUNT); do
12376                 cl_users=(${CL_USERS[mds$i]})
12377                 cl_user1[mds$i]="${cl_users[0]}"
12378                 cl_user2[mds$i]="${cl_users[1]}"
12379
12380                 [ -n "${cl_user1[mds$i]}" ] ||
12381                         error "mds$i: no user registered"
12382                 [ -n "${cl_user2[mds$i]}" ] ||
12383                         error "mds$i: only ${cl_user2[mds$i]} is registered"
12384
12385                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12386                 [ -n "$user_rec1" ] ||
12387                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12388                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12389                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12390                 [ -n "$user_rec2" ] ||
12391                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12392                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12393                      "$user_rec1 + 2 == $user_rec2"
12394                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12395                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12396                               "$user_rec1 + 2, but is $user_rec2"
12397                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12398                 [ -n "$user_rec2" ] ||
12399                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12400                 [ $user_rec1 == $user_rec2 ] ||
12401                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12402                               "$user_rec1, but is $user_rec2"
12403         done
12404
12405         # force cl_user2 to be idle (2nd part) and to reach
12406         # changelog_max_idle_time
12407         sleep 2
12408
12409         # generate one more changelog to trigger fail_loc
12410         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12411                 error "create $DIR/$tdir/${tfile}bis failed"
12412
12413         # ensure gc thread is done
12414         for i in $(mdts_nodes); do
12415                 wait_update $i \
12416                         "ps -e -o comm= | grep chlg_gc_thread" "" 20 ||
12417                         error "$i: GC-thread not done"
12418         done
12419
12420         local first_rec
12421         for i in $(seq $MDSCOUNT); do
12422                 # check cl_user1 still registered
12423                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12424                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12425                 # check cl_user2 unregistered
12426                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12427                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12428
12429                 # check changelogs are present and starting at $user_rec1 + 1
12430                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12431                 [ -n "$user_rec1" ] ||
12432                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12433                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12434                             awk '{ print $1; exit; }')
12435
12436                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12437                 [ $((user_rec1 + 1)) == $first_rec ] ||
12438                         error "mds$i: first index should be $user_rec1 + 1, " \
12439                               "but is $first_rec"
12440         done
12441 }
12442 run_test 160f "changelog garbage collect (timestamped users)"
12443
12444 test_160g() {
12445         remote_mds_nodsh && skip "remote MDS with nodsh"
12446         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.56) ]] ||
12447                 skip "Need MDS version at least 2.10.56"
12448
12449         local mdts=$(comma_list $(mdts_nodes))
12450
12451         #define OBD_FAIL_TIME_IN_CHLOG_USER     0x1314
12452         do_nodes $mdts $LCTL set_param fail_loc=0x1314
12453
12454         # Create a user
12455         changelog_register || error "first changelog_register failed"
12456         changelog_register || error "second changelog_register failed"
12457         local cl_users
12458         declare -A cl_user1
12459         declare -A cl_user2
12460         local user_rec1
12461         local user_rec2
12462         local i
12463
12464         # generate some changelog records to accumulate on each MDT
12465         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
12466         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12467                 error "create $DIR/$tdir/$tfile failed"
12468
12469         # check changelogs have been generated
12470         local nbcl=$(changelog_dump | wc -l)
12471         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12472
12473         for param in "changelog_max_idle_indexes=$((nbcl / 2))" \
12474                      "changelog_gc=1" \
12475                      "changelog_min_gc_interval=2" \
12476                      "changelog_min_free_cat_entries=3"; do
12477                 local MDT0=$(facet_svc $SINGLEMDS)
12478                 local var="${param%=*}"
12479                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12480
12481                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12482                 do_nodes $mdts $LCTL set_param mdd.*.$param ||
12483                         error "unable to set mdd.*.$param"
12484         done
12485
12486         # simulate changelog catalog almost full
12487         #define OBD_FAIL_CAT_FREE_RECORDS       0x1313
12488         do_nodes $mdts $LCTL set_param fail_loc=0x1313 fail_val=3
12489
12490         for i in $(seq $MDSCOUNT); do
12491                 cl_users=(${CL_USERS[mds$i]})
12492                 cl_user1[mds$i]="${cl_users[0]}"
12493                 cl_user2[mds$i]="${cl_users[1]}"
12494
12495                 [ -n "${cl_user1[mds$i]}" ] ||
12496                         error "mds$i: no user registered"
12497                 [ -n "${cl_user2[mds$i]}" ] ||
12498                         error "mds$i: only ${cl_user1[mds$i]} is registered"
12499
12500                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12501                 [ -n "$user_rec1" ] ||
12502                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12503                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12504                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12505                 [ -n "$user_rec2" ] ||
12506                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12507                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12508                      "$user_rec1 + 2 == $user_rec2"
12509                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12510                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12511                               "$user_rec1 + 2, but is $user_rec2"
12512                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12513                 [ -n "$user_rec2" ] ||
12514                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12515                 [ $user_rec1 == $user_rec2 ] ||
12516                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12517                               "$user_rec1, but is $user_rec2"
12518         done
12519
12520         # ensure we are past the previous changelog_min_gc_interval set above
12521         sleep 2
12522
12523         # generate one more changelog to trigger fail_loc
12524         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12525                 error "create $DIR/$tdir/${tfile}bis failed"
12526
12527         # ensure gc thread is done
12528         for i in $(mdts_nodes); do
12529                 wait_update $i \
12530                         "ps -e -o comm= | grep chlg_gc_thread" "" 20 ||
12531                         error "$i: GC-thread not done"
12532         done
12533
12534         local first_rec
12535         for i in $(seq $MDSCOUNT); do
12536                 # check cl_user1 still registered
12537                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12538                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12539                 # check cl_user2 unregistered
12540                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12541                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12542
12543                 # check changelogs are present and starting at $user_rec1 + 1
12544                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12545                 [ -n "$user_rec1" ] ||
12546                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12547                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12548                             awk '{ print $1; exit; }')
12549
12550                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12551                 [ $((user_rec1 + 1)) == $first_rec ] ||
12552                         error "mds$i: first index should be $user_rec1 + 1, " \
12553                               "but is $first_rec"
12554         done
12555 }
12556 run_test 160g "changelog garbage collect (old users)"
12557
12558 test_160h() {
12559         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12560         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.56) ]] ||
12561                 { skip "Need MDS version at least 2.10.56"; return 0; }
12562
12563         local mdts=$(comma_list $(mdts_nodes))
12564
12565         # Create a user
12566         changelog_register || error "first changelog_register failed"
12567         changelog_register || error "second changelog_register failed"
12568         local cl_users
12569         declare -A cl_user1
12570         declare -A cl_user2
12571         local user_rec1
12572         local user_rec2
12573         local i
12574
12575         # generate some changelog records to accumulate on each MDT
12576         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "test_mkdir $tdir failed"
12577         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12578                 error "create $DIR/$tdir/$tfile failed"
12579
12580         # check changelogs have been generated
12581         local nbcl=$(changelog_dump | wc -l)
12582         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12583
12584         for param in "changelog_max_idle_time=10" \
12585                      "changelog_gc=1" \
12586                      "changelog_min_gc_interval=2"; do
12587                 local MDT0=$(facet_svc $SINGLEMDS)
12588                 local var="${param%=*}"
12589                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12590
12591                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12592                 do_nodes $mdts $LCTL set_param mdd.*.$param
12593         done
12594
12595         # force cl_user2 to be idle (1st part)
12596         sleep 9
12597
12598         for i in $(seq $MDSCOUNT); do
12599                 cl_users=(${CL_USERS[mds$i]})
12600                 cl_user1[mds$i]="${cl_users[0]}"
12601                 cl_user2[mds$i]="${cl_users[1]}"
12602
12603                 [ -n "${cl_user1[mds$i]}" ] ||
12604                         error "mds$i: no user registered"
12605                 [ -n "${cl_user2[mds$i]}" ] ||
12606                         error "mds$i: only ${cl_user2[mds$i]} is registered"
12607
12608                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12609                 [ -n "$user_rec1" ] ||
12610                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12611                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12612                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12613                 [ -n "$user_rec2" ] ||
12614                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12615                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12616                      "$user_rec1 + 2 == $user_rec2"
12617                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12618                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12619                               "$user_rec1 + 2, but is $user_rec2"
12620                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12621                 [ -n "$user_rec2" ] ||
12622                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12623                 [ $user_rec1 == $user_rec2 ] ||
12624                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12625                               "$user_rec1, but is $user_rec2"
12626         done
12627
12628         # force cl_user2 to be idle (2nd part) and to reach
12629         # changelog_max_idle_time
12630         sleep 2
12631
12632         # force each GC-thread start and block then
12633         # one per MDT/MDD, set fail_val accordingly
12634         #define OBD_FAIL_FORCE_GC_THREAD 0x1316
12635         do_nodes $mdts $LCTL set_param fail_loc=0x1316
12636
12637         # generate more changelogs to trigger fail_loc
12638         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12639                 error "create $DIR/$tdir/${tfile}bis failed"
12640
12641         # stop MDT to stop GC-thread, should be done in back-ground as it will
12642         # block waiting for the thread to be released and exit
12643         declare -A stop_pids
12644         for i in $(seq $MDSCOUNT); do
12645                 stop mds$i &
12646                 stop_pids[mds$i]=$!
12647         done
12648
12649         for i in $(mdts_nodes); do
12650                 local facet
12651                 local nb=0
12652                 local facets=$(facets_up_on_host $i)
12653
12654                 for facet in ${facets//,/ }; do
12655                         if [[ $facet == mds* ]]; then
12656                                 nb=$((nb + 1))
12657                         fi
12658                 done
12659                 # ensure each MDS's gc threads are still present and all in "R"
12660                 # state (OBD_FAIL_FORCE_GC_THREAD effect!)
12661                 [[ $(do_node $i pgrep chlg_gc_thread | wc -l) -eq $nb ]] ||
12662                         error "$i: expected $nb GC-thread"
12663                 wait_update $i \
12664                         "ps -C chlg_gc_thread -o state --no-headers | uniq" \
12665                         "R" 20 ||
12666                         error "$i: GC-thread not found in R-state"
12667                 # check umounts of each MDT on MDS have reached kthread_stop()
12668                 [[ $(do_node $i pgrep umount | wc -l) -eq $nb ]] ||
12669                         error "$i: expected $nb umount"
12670                 wait_update $i \
12671                         "ps -C umount -o state --no-headers | uniq" "D" 20 ||
12672                         error "$i: umount not found in D-state"
12673         done
12674
12675         # release all GC-threads
12676         do_nodes $mdts $LCTL set_param fail_loc=0
12677
12678         # wait for MDT stop to complete
12679         for i in $(seq $MDSCOUNT); do
12680                 wait ${stop_pids[mds$i]} || error "mds$i: stop failed"
12681         done
12682
12683         # XXX
12684         # may try to check if any orphan changelog records are present
12685         # via ldiskfs/zfs and llog_reader...
12686
12687         # re-start/mount MDTs
12688         for i in $(seq $MDSCOUNT); do
12689                 start mds$i $(mdsdevname $i) $MDS_MOUNT_OPTS ||
12690                         error "Fail to start mds$i"
12691         done
12692
12693         local first_rec
12694         for i in $(seq $MDSCOUNT); do
12695                 # check cl_user1 still registered
12696                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12697                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12698                 # check cl_user2 unregistered
12699                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12700                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12701
12702                 # check changelogs are present and starting at $user_rec1 + 1
12703                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12704                 [ -n "$user_rec1" ] ||
12705                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12706                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12707                             awk '{ print $1; exit; }')
12708
12709                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12710                 [ $((user_rec1 + 1)) == $first_rec ] ||
12711                         error "mds$i: first index should be $user_rec1 + 1, " \
12712                               "but is $first_rec"
12713         done
12714 }
12715 run_test 160h "changelog gc thread stop upon umount, orphan records delete " \
12716               "during mount"
12717
12718 test_160i() {
12719
12720         local mdts=$(comma_list $(mdts_nodes))
12721
12722         changelog_register || error "first changelog_register failed"
12723
12724         # generate some changelog records to accumulate on each MDT
12725         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
12726         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12727                 error "create $DIR/$tdir/$tfile failed"
12728
12729         # check changelogs have been generated
12730         local nbcl=$(changelog_dump | wc -l)
12731         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12732
12733         # simulate race between register and unregister
12734         # XXX as fail_loc is set per-MDS, with DNE configs the race
12735         # simulation will only occur for one MDT per MDS and for the
12736         # others the normal race scenario will take place
12737         #define CFS_FAIL_CHLOG_USER_REG_UNREG_RACE          0x1315
12738         do_nodes $mdts $LCTL set_param fail_loc=0x10001315
12739         do_nodes $mdts $LCTL set_param fail_val=1
12740
12741         # unregister 1st user
12742         changelog_deregister &
12743         local pid1=$!
12744         # wait some time for deregister work to reach race rdv
12745         sleep 2
12746         # register 2nd user
12747         changelog_register || error "2nd user register failed"
12748
12749         wait $pid1 || error "1st user deregister failed"
12750
12751         local i
12752         local last_rec
12753         declare -A LAST_REC
12754         for i in $(seq $MDSCOUNT); do
12755                 if changelog_users mds$i | grep "^cl"; then
12756                         # make sure new records are added with one user present
12757                         LAST_REC[mds$i]=$(changelog_users $SINGLEMDS |
12758                                           awk '/^current.index:/ { print $NF }')
12759                 else
12760                         error "mds$i has no user registered"
12761                 fi
12762         done
12763
12764         # generate more changelog records to accumulate on each MDT
12765         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12766                 error "create $DIR/$tdir/${tfile}bis failed"
12767
12768         for i in $(seq $MDSCOUNT); do
12769                 last_rec=$(changelog_users $SINGLEMDS |
12770                            awk '/^current.index:/ { print $NF }')
12771                 echo "verify changelogs are on: $last_rec != ${LAST_REC[mds$i]}"
12772                 [ $last_rec != ${LAST_REC[mds$i]} ] ||
12773                         error "changelogs are off on mds$i"
12774         done
12775 }
12776 run_test 160i "changelog user register/unregister race"
12777
12778 test_161a() {
12779         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12780
12781         test_mkdir -c1 $DIR/$tdir
12782         cp /etc/hosts $DIR/$tdir/$tfile
12783         test_mkdir -c1 $DIR/$tdir/foo1
12784         test_mkdir -c1 $DIR/$tdir/foo2
12785         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
12786         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
12787         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
12788         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
12789         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
12790         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
12791                 $LFS fid2path $DIR $FID
12792                 error "bad link ea"
12793         fi
12794         # middle
12795         rm $DIR/$tdir/foo2/zachary
12796         # last
12797         rm $DIR/$tdir/foo2/thor
12798         # first
12799         rm $DIR/$tdir/$tfile
12800         # rename
12801         mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
12802         [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ] &&
12803                 { $LFS fid2path $DIR $FID; error "bad link rename"; }
12804         rm $DIR/$tdir/foo2/maggie
12805
12806         # overflow the EA
12807         local longname=$tfile.avg_len_is_thirty_two_
12808         stack_trap "unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
12809                 error_noexit 'failed to unlink many hardlinks'" EXIT
12810         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
12811                 error "failed to hardlink many files"
12812         links=$($LFS fid2path $DIR $FID | wc -l)
12813         echo -n "${links}/1000 links in link EA"
12814         [[ $links -gt 60 ]] || error "expected at least 60 links in link EA"
12815 }
12816 run_test 161a "link ea sanity"
12817
12818 test_161b() {
12819         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12820         [ $MDSCOUNT -lt 2 ] && skip_env "skipping remote directory test"
12821
12822         local MDTIDX=1
12823         local remote_dir=$DIR/$tdir/remote_dir
12824
12825         mkdir -p $DIR/$tdir
12826         $LFS mkdir -i $MDTIDX $remote_dir ||
12827                 error "create remote directory failed"
12828
12829         cp /etc/hosts $remote_dir/$tfile
12830         mkdir -p $remote_dir/foo1
12831         mkdir -p $remote_dir/foo2
12832         ln $remote_dir/$tfile $remote_dir/foo1/sofia
12833         ln $remote_dir/$tfile $remote_dir/foo2/zachary
12834         ln $remote_dir/$tfile $remote_dir/foo1/luna
12835         ln $remote_dir/$tfile $remote_dir/foo2/thor
12836
12837         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
12838                      tr -d ']')
12839         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
12840                 $LFS fid2path $DIR $FID
12841                 error "bad link ea"
12842         fi
12843         # middle
12844         rm $remote_dir/foo2/zachary
12845         # last
12846         rm $remote_dir/foo2/thor
12847         # first
12848         rm $remote_dir/$tfile
12849         # rename
12850         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
12851         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
12852         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
12853                 $LFS fid2path $DIR $FID
12854                 error "bad link rename"
12855         fi
12856         rm $remote_dir/foo2/maggie
12857
12858         # overflow the EA
12859         local longname=filename_avg_len_is_thirty_two_
12860         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
12861                 error "failed to hardlink many files"
12862         links=$($LFS fid2path $DIR $FID | wc -l)
12863         echo -n "${links}/1000 links in link EA"
12864         [[ ${links} -gt 60 ]] ||
12865                 error "expected at least 60 links in link EA"
12866         unlinkmany $remote_dir/foo2/$longname 1000 ||
12867         error "failed to unlink many hardlinks"
12868 }
12869 run_test 161b "link ea sanity under remote directory"
12870
12871 test_161c() {
12872         remote_mds_nodsh && skip "remote MDS with nodsh"
12873         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12874         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
12875                 skip "Need MDS version at least 2.1.5"
12876
12877         # define CLF_RENAME_LAST 0x0001
12878         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
12879         changelog_register || error "changelog_register failed"
12880
12881         rm -rf $DIR/$tdir
12882         test_mkdir -i $((MDSCOUNT - 1)) $DIR/$tdir
12883         touch $DIR/$tdir/foo_161c
12884         touch $DIR/$tdir/bar_161c
12885         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
12886         changelog_dump | grep RENME | tail -n 5
12887         local flags=$(changelog_dump | grep "RENME.*bar_161c" | 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
12893         echo "rename overwrite target with nlink = 1, changelog flags=$flags"
12894         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
12895         touch $DIR/$tdir/foo_161c
12896         touch $DIR/$tdir/bar_161c
12897         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
12898         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
12899         changelog_dump | grep RENME | tail -n 5
12900         flags=$(changelog_dump | grep "RENME.*bar_161c" | cut -f5 -d' ')
12901         changelog_clear 0 || error "changelog_clear failed"
12902         if [ x$flags != "x0x0" ]; then
12903                 error "flag $flags is not 0x0"
12904         fi
12905         echo "rename overwrite a target having nlink > 1," \
12906                 "changelog record has flags of $flags"
12907
12908         # rename doesn't overwrite a target (changelog flag 0x0)
12909         touch $DIR/$tdir/foo_161c
12910         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
12911         changelog_dump | grep RENME | tail -n 5
12912         flags=$(changelog_dump | grep RENME | tail -1 | cut -f5 -d' ')
12913         changelog_clear 0 || error "changelog_clear failed"
12914         if [ x$flags != "x0x0" ]; then
12915                 error "flag $flags is not 0x0"
12916         fi
12917         echo "rename doesn't overwrite a target," \
12918                 "changelog record has flags of $flags"
12919
12920         # define CLF_UNLINK_LAST 0x0001
12921         # unlink a file having nlink = 1 (changelog flag 0x1)
12922         rm -f $DIR/$tdir/foo2_161c
12923         changelog_dump | grep UNLNK | tail -n 5
12924         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
12925         changelog_clear 0 || error "changelog_clear failed"
12926         if [ x$flags != "x0x1" ]; then
12927                 error "flag $flags is not 0x1"
12928         fi
12929         echo "unlink a file having nlink = 1," \
12930                 "changelog record has flags of $flags"
12931
12932         # unlink a file having nlink > 1 (changelog flag 0x0)
12933         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
12934         rm -f $DIR/$tdir/foobar_161c
12935         changelog_dump | grep UNLNK | tail -n 5
12936         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
12937         changelog_clear 0 || error "changelog_clear failed"
12938         if [ x$flags != "x0x0" ]; then
12939                 error "flag $flags is not 0x0"
12940         fi
12941         echo "unlink a file having nlink > 1, changelog record flags '$flags'"
12942 }
12943 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
12944
12945 test_161d() {
12946         remote_mds_nodsh && skip "remote MDS with nodsh"
12947
12948         local pid
12949         local fid
12950
12951         changelog_register || error "changelog_register failed"
12952
12953         # work in a standalone dir to avoid locking on $DIR/$MOUNT to
12954         # interfer with $MOUNT/.lustre/fid/ access
12955         mkdir $DIR/$tdir
12956         [[ $? -eq 0 ]] || error "mkdir failed"
12957
12958         #define OBD_FAIL_LLITE_CREATE_NODE_PAUSE 0x140c | OBD_FAIL_ONCE
12959         $LCTL set_param fail_loc=0x8000140c
12960         # 5s pause
12961         $LCTL set_param fail_val=5
12962
12963         # create file
12964         echo foofoo > $DIR/$tdir/$tfile &
12965         pid=$!
12966
12967         # wait for create to be delayed
12968         sleep 2
12969
12970         ps -p $pid
12971         [[ $? -eq 0 ]] || error "create should be blocked"
12972
12973         local tempfile=$(mktemp)
12974         fid=$(changelog_extract_field "CREAT" "$tfile" "t=")
12975         cat $MOUNT/.lustre/fid/$fid 2>/dev/null >$tempfile || error "cat failed"
12976         # some delay may occur during ChangeLog publishing and file read just
12977         # above, that could allow file write to happen finally
12978         [[ -s $tempfile ]] && echo "file should be empty"
12979
12980         $LCTL set_param fail_loc=0
12981
12982         wait $pid
12983         [[ $? -eq 0 ]] || error "create failed"
12984 }
12985 run_test 161d "create with concurrent .lustre/fid access"
12986
12987 check_path() {
12988         local expected="$1"
12989         shift
12990         local fid="$2"
12991
12992         local path
12993         path=$($LFS fid2path "$@")
12994         local rc=$?
12995
12996         if [ $rc -ne 0 ]; then
12997                 error "path looked up of '$expected' failed: rc=$rc"
12998         elif [ "$path" != "$expected" ]; then
12999                 error "path looked up '$path' instead of '$expected'"
13000         else
13001                 echo "FID '$fid' resolves to path '$path' as expected"
13002         fi
13003 }
13004
13005 test_162a() { # was test_162
13006         test_mkdir -p -c1 $DIR/$tdir/d2
13007         touch $DIR/$tdir/d2/$tfile
13008         touch $DIR/$tdir/d2/x1
13009         touch $DIR/$tdir/d2/x2
13010         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
13011         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
13012         # regular file
13013         local fid=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
13014         check_path "$tdir/d2/$tfile" $FSNAME "$fid" --link 0
13015
13016         # softlink
13017         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
13018         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
13019         check_path "$tdir/d2/p/q/r/slink" $FSNAME "$fid" --link 0
13020
13021         # softlink to wrong file
13022         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
13023         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
13024         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME "$fid" --link 0
13025
13026         # hardlink
13027         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
13028         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
13029         fid=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
13030         # fid2path dir/fsname should both work
13031         check_path "$tdir/d2/a/b/c/new_file" $FSNAME "$fid" --link 1
13032         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR "$fid" --link 0
13033
13034         # hardlink count: check that there are 2 links
13035         local nlinks=$($LFS fid2path $DIR "$fid" | wc -l)
13036         [ $nlinks -eq 2 ] || error "expect 2 links, found $nlinks"
13037
13038         # hardlink indexing: remove the first link
13039         rm $DIR/$tdir/d2/p/q/r/hlink
13040         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $fid --link 0
13041 }
13042 run_test 162a "path lookup sanity"
13043
13044 test_162b() {
13045         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13046         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
13047
13048         mkdir $DIR/$tdir
13049         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
13050                                 error "create striped dir failed"
13051
13052         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
13053                                         tail -n 1 | awk '{print $2}')
13054         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
13055
13056         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
13057         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
13058
13059         # regular file
13060         for ((i=0;i<5;i++)); do
13061                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
13062                         error "get fid for f$i failed"
13063                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0
13064
13065                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
13066                         error "get fid for d$i failed"
13067                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0
13068         done
13069
13070         return 0
13071 }
13072 run_test 162b "striped directory path lookup sanity"
13073
13074 # LU-4239: Verify fid2path works with paths 100 or more directories deep
13075 test_162c() {
13076         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.51) ]] &&
13077                 skip "Need MDS version at least 2.7.51"
13078
13079         local lpath=$tdir.local
13080         local rpath=$tdir.remote
13081
13082         test_mkdir $DIR/$lpath
13083         test_mkdir $DIR/$rpath
13084
13085         for ((i = 0; i <= 101; i++)); do
13086                 lpath="$lpath/$i"
13087                 mkdir $DIR/$lpath
13088                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
13089                         error "get fid for local directory $DIR/$lpath failed"
13090                 check_path "$DIR/$lpath" $MOUNT $FID --link 0
13091
13092                 rpath="$rpath/$i"
13093                 test_mkdir $DIR/$rpath
13094                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
13095                         error "get fid for remote directory $DIR/$rpath failed"
13096                 check_path "$DIR/$rpath" $MOUNT $FID --link 0
13097         done
13098
13099         return 0
13100 }
13101 run_test 162c "fid2path works with paths 100 or more directories deep"
13102
13103 test_169() {
13104         # do directio so as not to populate the page cache
13105         log "creating a 10 Mb file"
13106         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
13107         log "starting reads"
13108         dd if=$DIR/$tfile of=/dev/null bs=4096 &
13109         log "truncating the file"
13110         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
13111         log "killing dd"
13112         kill %+ || true # reads might have finished
13113         echo "wait until dd is finished"
13114         wait
13115         log "removing the temporary file"
13116         rm -rf $DIR/$tfile || error "tmp file removal failed"
13117 }
13118 run_test 169 "parallel read and truncate should not deadlock"
13119
13120 test_170() {
13121         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13122
13123         $LCTL clear     # bug 18514
13124         $LCTL debug_daemon start $TMP/${tfile}_log_good
13125         touch $DIR/$tfile
13126         $LCTL debug_daemon stop
13127         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
13128                 error "sed failed to read log_good"
13129
13130         $LCTL debug_daemon start $TMP/${tfile}_log_good
13131         rm -rf $DIR/$tfile
13132         $LCTL debug_daemon stop
13133
13134         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
13135                error "lctl df log_bad failed"
13136
13137         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
13138         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
13139
13140         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
13141         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
13142
13143         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
13144                 error "bad_line good_line1 good_line2 are empty"
13145
13146         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
13147         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
13148         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
13149
13150         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
13151         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
13152         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
13153
13154         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
13155                 error "bad_line_new good_line_new are empty"
13156
13157         local expected_good=$((good_line1 + good_line2*2))
13158
13159         rm -f $TMP/${tfile}*
13160         # LU-231, short malformed line may not be counted into bad lines
13161         if [ $bad_line -ne $bad_line_new ] &&
13162                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
13163                 error "expected $bad_line bad lines, but got $bad_line_new"
13164                 return 1
13165         fi
13166
13167         if [ $expected_good -ne $good_line_new ]; then
13168                 error "expected $expected_good good lines, but got $good_line_new"
13169                 return 2
13170         fi
13171         true
13172 }
13173 run_test 170 "test lctl df to handle corrupted log ====================="
13174
13175 test_171() { # bug20592
13176         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13177
13178         #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
13179         $LCTL set_param fail_loc=0x50e
13180         $LCTL set_param fail_val=3000
13181         multiop_bg_pause $DIR/$tfile O_s || true
13182         local MULTIPID=$!
13183         kill -USR1 $MULTIPID
13184         # cause log dump
13185         sleep 3
13186         wait $MULTIPID
13187         if dmesg | grep "recursive fault"; then
13188                 error "caught a recursive fault"
13189         fi
13190         $LCTL set_param fail_loc=0
13191         true
13192 }
13193 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
13194
13195 # it would be good to share it with obdfilter-survey/iokit-libecho code
13196 setup_obdecho_osc () {
13197         local rc=0
13198         local ost_nid=$1
13199         local obdfilter_name=$2
13200         echo "Creating new osc for $obdfilter_name on $ost_nid"
13201         # make sure we can find loopback nid
13202         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
13203
13204         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
13205                            ${obdfilter_name}_osc_UUID || rc=2; }
13206         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
13207                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
13208         return $rc
13209 }
13210
13211 cleanup_obdecho_osc () {
13212         local obdfilter_name=$1
13213         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
13214         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
13215         return 0
13216 }
13217
13218 obdecho_test() {
13219         local OBD=$1
13220         local node=$2
13221         local pages=${3:-64}
13222         local rc=0
13223         local id
13224
13225         local count=10
13226         local obd_size=$(get_obd_size $node $OBD)
13227         local page_size=$(get_page_size $node)
13228         if [[ -n "$obd_size" ]]; then
13229                 local new_count=$((obd_size / (pages * page_size / 1024)))
13230                 [[ $new_count -ge $count ]] || count=$new_count
13231         fi
13232
13233         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
13234         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
13235                            rc=2; }
13236         if [ $rc -eq 0 ]; then
13237             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
13238             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
13239         fi
13240         echo "New object id is $id"
13241         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
13242                            rc=4; }
13243         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
13244                            "test_brw $count w v $pages $id" || rc=4; }
13245         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
13246                            rc=4; }
13247         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
13248                                         "cleanup" || rc=5; }
13249         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
13250                                         "detach" || rc=6; }
13251         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
13252         return $rc
13253 }
13254
13255 test_180a() {
13256         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13257
13258         if ! module_loaded obdecho; then
13259                 load_module obdecho/obdecho &&
13260                         stack_trap "rmmod obdecho" EXIT ||
13261                         error "unable to load obdecho on client"
13262         fi
13263
13264         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
13265         local host=$($LCTL get_param -n osc.$osc.import |
13266                      awk '/current_connection:/ { print $2 }' )
13267         local target=$($LCTL get_param -n osc.$osc.import |
13268                        awk '/target:/ { print $2 }' )
13269         target=${target%_UUID}
13270
13271         if [ -n "$target" ]; then
13272                 setup_obdecho_osc $host $target &&
13273                         stack_trap "cleanup_obdecho_osc $target" EXIT ||
13274                         { error "obdecho setup failed with $?"; return; }
13275
13276                 obdecho_test ${target}_osc client ||
13277                         error "obdecho_test failed on ${target}_osc"
13278         else
13279                 $LCTL get_param osc.$osc.import
13280                 error "there is no osc.$osc.import target"
13281         fi
13282 }
13283 run_test 180a "test obdecho on osc"
13284
13285 test_180b() {
13286         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13287         remote_ost_nodsh && skip "remote OST with nodsh"
13288
13289         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
13290                 stack_trap "do_facet ost1 rmmod obdecho" EXIT ||
13291                 error "failed to load module obdecho"
13292
13293         local target=$(do_facet ost1 $LCTL dl |
13294                        awk '/obdfilter/ { print $4; exit; }')
13295
13296         if [ -n "$target" ]; then
13297                 obdecho_test $target ost1 || error "obdecho_test failed with $?"
13298         else
13299                 do_facet ost1 $LCTL dl
13300                 error "there is no obdfilter target on ost1"
13301         fi
13302 }
13303 run_test 180b "test obdecho directly on obdfilter"
13304
13305 test_180c() { # LU-2598
13306         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13307         remote_ost_nodsh && skip "remote OST with nodsh"
13308         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
13309                 skip "Need MDS version at least 2.4.0"
13310
13311         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
13312                 stack_trap "do_facet ost1 rmmod obdecho" EXIT ||
13313                 error "failed to load module obdecho"
13314
13315         local target=$(do_facet ost1 $LCTL dl |
13316                        awk '/obdfilter/ { print $4; exit; }')
13317
13318         if [ -n "$target" ]; then
13319                 local pages=16384 # 64MB bulk I/O RPC size
13320
13321                 obdecho_test "$target" ost1 "$pages" ||
13322                         error "obdecho_test with pages=$pages failed with $?"
13323         else
13324                 do_facet ost1 $LCTL dl
13325                 error "there is no obdfilter target on ost1"
13326         fi
13327 }
13328 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
13329
13330 test_181() { # bug 22177
13331         test_mkdir $DIR/$tdir
13332         # create enough files to index the directory
13333         createmany -o $DIR/$tdir/foobar 4000
13334         # print attributes for debug purpose
13335         lsattr -d .
13336         # open dir
13337         multiop_bg_pause $DIR/$tdir D_Sc || return 1
13338         MULTIPID=$!
13339         # remove the files & current working dir
13340         unlinkmany $DIR/$tdir/foobar 4000
13341         rmdir $DIR/$tdir
13342         kill -USR1 $MULTIPID
13343         wait $MULTIPID
13344         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
13345         return 0
13346 }
13347 run_test 181 "Test open-unlinked dir ========================"
13348
13349 test_182() {
13350         local fcount=1000
13351         local tcount=10
13352
13353         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13354
13355         $LCTL set_param mdc.*.rpc_stats=clear
13356
13357         for (( i = 0; i < $tcount; i++ )) ; do
13358                 mkdir $DIR/$tdir/$i
13359         done
13360
13361         for (( i = 0; i < $tcount; i++ )) ; do
13362                 createmany -o $DIR/$tdir/$i/f- $fcount &
13363         done
13364         wait
13365
13366         for (( i = 0; i < $tcount; i++ )) ; do
13367                 unlinkmany $DIR/$tdir/$i/f- $fcount &
13368         done
13369         wait
13370
13371         $LCTL get_param mdc.*.rpc_stats
13372
13373         rm -rf $DIR/$tdir
13374 }
13375 run_test 182 "Test parallel modify metadata operations ================"
13376
13377 test_183() { # LU-2275
13378         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13379         remote_mds_nodsh && skip "remote MDS with nodsh"
13380         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
13381                 skip "Need MDS version at least 2.3.56"
13382
13383         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13384         echo aaa > $DIR/$tdir/$tfile
13385
13386 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
13387         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
13388
13389         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
13390         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
13391
13392         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
13393
13394         # Flush negative dentry cache
13395         touch $DIR/$tdir/$tfile
13396
13397         # We are not checking for any leaked references here, they'll
13398         # become evident next time we do cleanup with module unload.
13399         rm -rf $DIR/$tdir
13400 }
13401 run_test 183 "No crash or request leak in case of strange dispositions ========"
13402
13403 # test suite 184 is for LU-2016, LU-2017
13404 test_184a() {
13405         check_swap_layouts_support
13406
13407         dir0=$DIR/$tdir/$testnum
13408         test_mkdir -p -c1 $dir0
13409         ref1=/etc/passwd
13410         ref2=/etc/group
13411         file1=$dir0/f1
13412         file2=$dir0/f2
13413         $SETSTRIPE -c1 $file1
13414         cp $ref1 $file1
13415         $SETSTRIPE -c2 $file2
13416         cp $ref2 $file2
13417         gen1=$($GETSTRIPE -g $file1)
13418         gen2=$($GETSTRIPE -g $file2)
13419
13420         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
13421         gen=$($GETSTRIPE -g $file1)
13422         [[ $gen1 != $gen ]] ||
13423                 "Layout generation on $file1 does not change"
13424         gen=$($GETSTRIPE -g $file2)
13425         [[ $gen2 != $gen ]] ||
13426                 "Layout generation on $file2 does not change"
13427
13428         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
13429         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
13430
13431         lfsck_verify_pfid $file1 $file2 || error "PFID are not transferred"
13432 }
13433 run_test 184a "Basic layout swap"
13434
13435 test_184b() {
13436         check_swap_layouts_support
13437
13438         dir0=$DIR/$tdir/$testnum
13439         mkdir -p $dir0 || error "creating dir $dir0"
13440         file1=$dir0/f1
13441         file2=$dir0/f2
13442         file3=$dir0/f3
13443         dir1=$dir0/d1
13444         dir2=$dir0/d2
13445         mkdir $dir1 $dir2
13446         $SETSTRIPE -c1 $file1
13447         $SETSTRIPE -c2 $file2
13448         $SETSTRIPE -c1 $file3
13449         chown $RUNAS_ID $file3
13450         gen1=$($GETSTRIPE -g $file1)
13451         gen2=$($GETSTRIPE -g $file2)
13452
13453         $LFS swap_layouts $dir1 $dir2 &&
13454                 error "swap of directories layouts should fail"
13455         $LFS swap_layouts $dir1 $file1 &&
13456                 error "swap of directory and file layouts should fail"
13457         $RUNAS $LFS swap_layouts $file1 $file2 &&
13458                 error "swap of file we cannot write should fail"
13459         $LFS swap_layouts $file1 $file3 &&
13460                 error "swap of file with different owner should fail"
13461         /bin/true # to clear error code
13462 }
13463 run_test 184b "Forbidden layout swap (will generate errors)"
13464
13465 test_184c() {
13466         local cmpn_arg=$(cmp -n 2>&1 | grep "invalid option")
13467         [ -n "$cmpn_arg" ] && skip_env "cmp does not support -n"
13468         check_swap_layouts_support
13469
13470         local dir0=$DIR/$tdir/$testnum
13471         mkdir -p $dir0 || error "creating dir $dir0"
13472
13473         local ref1=$dir0/ref1
13474         local ref2=$dir0/ref2
13475         local file1=$dir0/file1
13476         local file2=$dir0/file2
13477         # create a file large enough for the concurrent test
13478         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
13479         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
13480         echo "ref file size: ref1($(stat -c %s $ref1))," \
13481              "ref2($(stat -c %s $ref2))"
13482
13483         cp $ref2 $file2
13484         dd if=$ref1 of=$file1 bs=16k &
13485         local DD_PID=$!
13486
13487         # Make sure dd starts to copy file
13488         while [ ! -f $file1 ]; do sleep 0.1; done
13489
13490         $LFS swap_layouts $file1 $file2
13491         local rc=$?
13492         wait $DD_PID
13493         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
13494         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
13495
13496         # how many bytes copied before swapping layout
13497         local copied=$(stat -c %s $file2)
13498         local remaining=$(stat -c %s $ref1)
13499         remaining=$((remaining - copied))
13500         echo "Copied $copied bytes before swapping layout..."
13501
13502         cmp -n $copied $file1 $ref2 | grep differ &&
13503                 error "Content mismatch [0, $copied) of ref2 and file1"
13504         cmp -n $copied $file2 $ref1 ||
13505                 error "Content mismatch [0, $copied) of ref1 and file2"
13506         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
13507                 error "Content mismatch [$copied, EOF) of ref1 and file1"
13508
13509         # clean up
13510         rm -f $ref1 $ref2 $file1 $file2
13511 }
13512 run_test 184c "Concurrent write and layout swap"
13513
13514 test_184d() {
13515         check_swap_layouts_support
13516         [ -z "$(which getfattr 2>/dev/null)" ] &&
13517                 skip_env "no getfattr command"
13518
13519         local file1=$DIR/$tdir/$tfile-1
13520         local file2=$DIR/$tdir/$tfile-2
13521         local file3=$DIR/$tdir/$tfile-3
13522         local lovea1
13523         local lovea2
13524
13525         mkdir -p $DIR/$tdir
13526         touch $file1 || error "create $file1 failed"
13527         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
13528                 error "create $file2 failed"
13529         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
13530                 error "create $file3 failed"
13531         lovea1=$(get_layout_param $file1)
13532
13533         $LFS swap_layouts $file2 $file3 ||
13534                 error "swap $file2 $file3 layouts failed"
13535         $LFS swap_layouts $file1 $file2 ||
13536                 error "swap $file1 $file2 layouts failed"
13537
13538         lovea2=$(get_layout_param $file2)
13539         echo "$lovea1"
13540         echo "$lovea2"
13541         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
13542
13543         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
13544         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
13545 }
13546 run_test 184d "allow stripeless layouts swap"
13547
13548 test_184e() {
13549         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.94) ]] ||
13550                 skip "Need MDS version at least 2.6.94"
13551         check_swap_layouts_support
13552         [ -z "$(which getfattr 2>/dev/null)" ] &&
13553                 skip_env "no getfattr command"
13554
13555         local file1=$DIR/$tdir/$tfile-1
13556         local file2=$DIR/$tdir/$tfile-2
13557         local file3=$DIR/$tdir/$tfile-3
13558         local lovea
13559
13560         mkdir -p $DIR/$tdir
13561         touch $file1 || error "create $file1 failed"
13562         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
13563                 error "create $file2 failed"
13564         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
13565                 error "create $file3 failed"
13566
13567         $LFS swap_layouts $file1 $file2 ||
13568                 error "swap $file1 $file2 layouts failed"
13569
13570         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
13571         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
13572
13573         echo 123 > $file1 || error "Should be able to write into $file1"
13574
13575         $LFS swap_layouts $file1 $file3 ||
13576                 error "swap $file1 $file3 layouts failed"
13577
13578         echo 123 > $file1 || error "Should be able to write into $file1"
13579
13580         rm -rf $file1 $file2 $file3
13581 }
13582 run_test 184e "Recreate layout after stripeless layout swaps"
13583
13584 test_185() { # LU-2441
13585         # LU-3553 - no volatile file support in old servers
13586         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
13587                 skip "Need MDS version at least 2.3.60"
13588
13589         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13590         touch $DIR/$tdir/spoo
13591         local mtime1=$(stat -c "%Y" $DIR/$tdir)
13592         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
13593                 error "cannot create/write a volatile file"
13594         [ "$FILESET" == "" ] &&
13595         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
13596                 error "FID is still valid after close"
13597
13598         multiop_bg_pause $DIR/$tdir vVw4096_c
13599         local multi_pid=$!
13600
13601         local OLD_IFS=$IFS
13602         IFS=":"
13603         local fidv=($fid)
13604         IFS=$OLD_IFS
13605         # assume that the next FID for this client is sequential, since stdout
13606         # is unfortunately eaten by multiop_bg_pause
13607         local n=$((${fidv[1]} + 1))
13608         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
13609         if [ "$FILESET" == "" ]; then
13610                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
13611                         error "FID is missing before close"
13612         fi
13613         kill -USR1 $multi_pid
13614         # 1 second delay, so if mtime change we will see it
13615         sleep 1
13616         local mtime2=$(stat -c "%Y" $DIR/$tdir)
13617         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
13618 }
13619 run_test 185 "Volatile file support"
13620
13621 test_187a() {
13622         remote_mds_nodsh && skip "remote MDS with nodsh"
13623         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
13624                 skip "Need MDS version at least 2.3.0"
13625
13626         local dir0=$DIR/$tdir/$testnum
13627         mkdir -p $dir0 || error "creating dir $dir0"
13628
13629         local file=$dir0/file1
13630         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
13631         local dv1=$($LFS data_version $file)
13632         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
13633         local dv2=$($LFS data_version $file)
13634         [[ $dv1 != $dv2 ]] ||
13635                 error "data version did not change on write $dv1 == $dv2"
13636
13637         # clean up
13638         rm -f $file1
13639 }
13640 run_test 187a "Test data version change"
13641
13642 test_187b() {
13643         remote_mds_nodsh && skip "remote MDS with nodsh"
13644         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
13645                 skip "Need MDS version at least 2.3.0"
13646
13647         local dir0=$DIR/$tdir/$testnum
13648         mkdir -p $dir0 || error "creating dir $dir0"
13649
13650         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
13651         [[ ${DV[0]} != ${DV[1]} ]] ||
13652                 error "data version did not change on write"\
13653                       " ${DV[0]} == ${DV[1]}"
13654
13655         # clean up
13656         rm -f $file1
13657 }
13658 run_test 187b "Test data version change on volatile file"
13659
13660 test_200() {
13661         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13662         remote_mgs_nodsh && skip "remote MGS with nodsh"
13663         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
13664
13665         local POOL=${POOL:-cea1}
13666         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
13667         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
13668         # Pool OST targets
13669         local first_ost=0
13670         local last_ost=$(($OSTCOUNT - 1))
13671         local ost_step=2
13672         local ost_list=$(seq $first_ost $ost_step $last_ost)
13673         local ost_range="$first_ost $last_ost $ost_step"
13674         local test_path=$POOL_ROOT/$POOL_DIR_NAME
13675         local file_dir=$POOL_ROOT/file_tst
13676         local subdir=$test_path/subdir
13677         local rc=0
13678
13679         if ! combined_mgs_mds ; then
13680                 mount_mgs_client
13681         fi
13682
13683         while : ; do
13684                 # former test_200a test_200b
13685                 pool_add $POOL                          || { rc=$? ; break; }
13686                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
13687                 # former test_200c test_200d
13688                 mkdir -p $test_path
13689                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
13690                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
13691                 mkdir -p $subdir
13692                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
13693                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
13694                                                         || { rc=$? ; break; }
13695                 # former test_200e test_200f
13696                 local files=$((OSTCOUNT*3))
13697                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
13698                                                         || { rc=$? ; break; }
13699                 pool_create_files $POOL $file_dir $files "$ost_list" \
13700                                                         || { rc=$? ; break; }
13701                 # former test_200g test_200h
13702                 pool_lfs_df $POOL                       || { rc=$? ; break; }
13703                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
13704
13705                 # former test_201a test_201b test_201c
13706                 pool_remove_first_target $POOL          || { rc=$? ; break; }
13707
13708                 local f=$test_path/$tfile
13709                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
13710                 pool_remove $POOL $f                    || { rc=$? ; break; }
13711                 break
13712         done
13713
13714         destroy_test_pools
13715
13716         if ! combined_mgs_mds ; then
13717                 umount_mgs_client
13718         fi
13719         return $rc
13720 }
13721 run_test 200 "OST pools"
13722
13723 # usage: default_attr <count | size | offset>
13724 default_attr() {
13725         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
13726 }
13727
13728 # usage: check_default_stripe_attr
13729 check_default_stripe_attr() {
13730         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
13731         case $1 in
13732         --stripe-count|-c)
13733                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
13734         --stripe-size|-S)
13735                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
13736         --stripe-index|-i)
13737                 EXPECTED=-1;;
13738         *)
13739                 error "unknown getstripe attr '$1'"
13740         esac
13741
13742         [ $ACTUAL == $EXPECTED ] ||
13743                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
13744 }
13745
13746 test_204a() {
13747         test_mkdir $DIR/$tdir
13748         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
13749
13750         check_default_stripe_attr --stripe-count
13751         check_default_stripe_attr --stripe-size
13752         check_default_stripe_attr --stripe-index
13753 }
13754 run_test 204a "Print default stripe attributes"
13755
13756 test_204b() {
13757         test_mkdir $DIR/$tdir
13758         $SETSTRIPE --stripe-count 1 $DIR/$tdir
13759
13760         check_default_stripe_attr --stripe-size
13761         check_default_stripe_attr --stripe-index
13762 }
13763 run_test 204b "Print default stripe size and offset"
13764
13765 test_204c() {
13766         test_mkdir $DIR/$tdir
13767         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
13768
13769         check_default_stripe_attr --stripe-count
13770         check_default_stripe_attr --stripe-index
13771 }
13772 run_test 204c "Print default stripe count and offset"
13773
13774 test_204d() {
13775         test_mkdir $DIR/$tdir
13776         $SETSTRIPE --stripe-index 0 $DIR/$tdir
13777
13778         check_default_stripe_attr --stripe-count
13779         check_default_stripe_attr --stripe-size
13780 }
13781 run_test 204d "Print default stripe count and size"
13782
13783 test_204e() {
13784         test_mkdir $DIR/$tdir
13785         $SETSTRIPE -d $DIR/$tdir
13786
13787         check_default_stripe_attr --stripe-count --raw
13788         check_default_stripe_attr --stripe-size --raw
13789         check_default_stripe_attr --stripe-index --raw
13790 }
13791 run_test 204e "Print raw stripe attributes"
13792
13793 test_204f() {
13794         test_mkdir $DIR/$tdir
13795         $SETSTRIPE --stripe-count 1 $DIR/$tdir
13796
13797         check_default_stripe_attr --stripe-size --raw
13798         check_default_stripe_attr --stripe-index --raw
13799 }
13800 run_test 204f "Print raw stripe size and offset"
13801
13802 test_204g() {
13803         test_mkdir $DIR/$tdir
13804         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
13805
13806         check_default_stripe_attr --stripe-count --raw
13807         check_default_stripe_attr --stripe-index --raw
13808 }
13809 run_test 204g "Print raw stripe count and offset"
13810
13811 test_204h() {
13812         test_mkdir $DIR/$tdir
13813         $SETSTRIPE --stripe-index 0 $DIR/$tdir
13814
13815         check_default_stripe_attr --stripe-count --raw
13816         check_default_stripe_attr --stripe-size --raw
13817 }
13818 run_test 204h "Print raw stripe count and size"
13819
13820 # Figure out which job scheduler is being used, if any,
13821 # or use a fake one
13822 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
13823         JOBENV=SLURM_JOB_ID
13824 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
13825         JOBENV=LSB_JOBID
13826 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
13827         JOBENV=PBS_JOBID
13828 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
13829         JOBENV=LOADL_STEP_ID
13830 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
13831         JOBENV=JOB_ID
13832 else
13833         $LCTL list_param jobid_name > /dev/null 2>&1
13834         if [ $? -eq 0 ]; then
13835                 JOBENV=nodelocal
13836         else
13837                 JOBENV=FAKE_JOBID
13838         fi
13839 fi
13840 LUSTRE_JOBID_SIZE=31 # plus NUL terminator
13841
13842 verify_jobstats() {
13843         local cmd=($1)
13844         shift
13845         local facets="$@"
13846
13847 # we don't really need to clear the stats for this test to work, since each
13848 # command has a unique jobid, but it makes debugging easier if needed.
13849 #       for facet in $facets; do
13850 #               local dev=$(convert_facet2label $facet)
13851 #               # clear old jobstats
13852 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
13853 #       done
13854
13855         # use a new JobID for each test, or we might see an old one
13856         [ "$JOBENV" = "FAKE_JOBID" ] &&
13857                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
13858
13859         JOBVAL=${!JOBENV:0:$LUSTRE_JOBID_SIZE}
13860
13861         [ "$JOBENV" = "nodelocal" ] && {
13862                 FAKE_JOBID=id.$testnum.%e.$RANDOM
13863                 $LCTL set_param jobid_name=$FAKE_JOBID
13864                 JOBVAL=${FAKE_JOBID/\%e/$(basename ${cmd[0]})}
13865         }
13866
13867         log "Test: ${cmd[*]}"
13868         log "Using JobID environment $($LCTL get_param -n jobid_var)=$JOBVAL"
13869
13870         if [ $JOBENV = "FAKE_JOBID" ]; then
13871                 FAKE_JOBID=$JOBVAL ${cmd[*]}
13872         else
13873                 ${cmd[*]}
13874         fi
13875
13876         # all files are created on OST0000
13877         for facet in $facets; do
13878                 local stats="*.$(convert_facet2label $facet).job_stats"
13879
13880                 # strip out libtool wrappers for in-tree executables
13881                 if [ $(do_facet $facet lctl get_param $stats |
13882                        sed -e 's/\.lt-/./' | grep -c $JOBVAL) -ne 1 ]; then
13883                         do_facet $facet lctl get_param $stats
13884                         error "No jobstats for $JOBVAL found on $facet::$stats"
13885                 fi
13886         done
13887 }
13888
13889 jobstats_set() {
13890         local new_jobenv=$1
13891
13892         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$new_jobenv
13893         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $new_jobenv
13894 }
13895
13896 test_205() { # Job stats
13897         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13898         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.1) ]] ||
13899                 skip "Need MDS version with at least 2.7.1"
13900         remote_mgs_nodsh && skip "remote MGS with nodsh"
13901         remote_mds_nodsh && skip "remote MDS with nodsh"
13902         remote_ost_nodsh && skip "remote OST with nodsh"
13903         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
13904                 skip "Server doesn't support jobstats"
13905         [[ $JOBID_VAR = disable ]] && skip_env "jobstats is disabled"
13906
13907         local old_jobenv=$($LCTL get_param -n jobid_var)
13908         [ $old_jobenv != $JOBENV ] && jobstats_set $JOBENV
13909         stack_trap "do_facet mgs \
13910                 $LCTL conf_param $FSNAME.sys.jobid_var=$old_jobenv" EXIT
13911
13912         changelog_register
13913
13914         local old_interval=$(do_facet $SINGLEMDS lctl get_param -n \
13915                                 mdt.*.job_cleanup_interval | head -n 1)
13916         local new_interval=5
13917         do_facet $SINGLEMDS \
13918                 $LCTL set_param mdt.*.job_cleanup_interval=$new_interval
13919         stack_trap "do_facet $SINGLEMDS \
13920                 $LCTL set_param mdt.*.job_cleanup_interval=$old_interval" EXIT
13921         local start=$SECONDS
13922
13923         local cmd
13924         # mkdir
13925         cmd="mkdir $DIR/$tdir"
13926         verify_jobstats "$cmd" "$SINGLEMDS"
13927         # rmdir
13928         cmd="rmdir $DIR/$tdir"
13929         verify_jobstats "$cmd" "$SINGLEMDS"
13930         # mkdir on secondary MDT
13931         if [ $MDSCOUNT -gt 1 ]; then
13932                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
13933                 verify_jobstats "$cmd" "mds2"
13934         fi
13935         # mknod
13936         cmd="mknod $DIR/$tfile c 1 3"
13937         verify_jobstats "$cmd" "$SINGLEMDS"
13938         # unlink
13939         cmd="rm -f $DIR/$tfile"
13940         verify_jobstats "$cmd" "$SINGLEMDS"
13941         # create all files on OST0000 so verify_jobstats can find OST stats
13942         # open & close
13943         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
13944         verify_jobstats "$cmd" "$SINGLEMDS"
13945         # setattr
13946         cmd="touch $DIR/$tfile"
13947         verify_jobstats "$cmd" "$SINGLEMDS ost1"
13948         # write
13949         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
13950         verify_jobstats "$cmd" "ost1"
13951         # read
13952         cancel_lru_locks osc
13953         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
13954         verify_jobstats "$cmd" "ost1"
13955         # truncate
13956         cmd="$TRUNCATE $DIR/$tfile 0"
13957         verify_jobstats "$cmd" "$SINGLEMDS ost1"
13958         # rename
13959         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
13960         verify_jobstats "$cmd" "$SINGLEMDS"
13961         # jobstats expiry - sleep until old stats should be expired
13962         local left=$((new_interval + 5 - (SECONDS - start)))
13963         [ $left -ge 0 ] && wait_update_facet $SINGLEMDS \
13964                 "lctl get_param *.*.job_stats | grep -c 'job_id.*mkdir'" \
13965                         "0" $left
13966         cmd="mkdir $DIR/$tdir.expire"
13967         verify_jobstats "$cmd" "$SINGLEMDS"
13968         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
13969             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
13970
13971         # Ensure that jobid are present in changelog (if supported by MDS)
13972         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.52) ];then
13973                 changelog_dump | tail -10
13974                 jobids=$(changelog_dump | tail -9 | grep -c "j=")
13975                 [ $jobids -eq 9 ] ||
13976                         error "Wrong changelog jobid count $jobids != 9"
13977
13978                 # LU-5862
13979                 JOBENV="disable"
13980                 jobstats_set $JOBENV
13981                 touch $DIR/$tfile
13982                 changelog_dump | grep $tfile
13983                 jobids=$(changelog_dump | grep $tfile | tail -1 | grep -c "j=")
13984                 [ $jobids -eq 0 ] ||
13985                         error "Unexpected jobids when jobid_var=$JOBENV"
13986         fi
13987
13988         lctl set_param jobid_var=USER jobid_name="S.%j.%e.%u.%h.E"
13989         JOBENV="JOBCOMPLEX"
13990         JOBCOMPLEX="S.$USER.touch.$(id -u).$(hostname).E"
13991
13992         verify_jobstats "touch $DIR/$tfile" $SINGLEMDS
13993 }
13994 run_test 205 "Verify job stats"
13995
13996 # LU-1480, LU-1773 and LU-1657
13997 test_206() {
13998         mkdir -p $DIR/$tdir
13999         $SETSTRIPE -c -1 $DIR/$tdir
14000 #define OBD_FAIL_LOV_INIT 0x1403
14001         $LCTL set_param fail_loc=0xa0001403
14002         $LCTL set_param fail_val=1
14003         touch $DIR/$tdir/$tfile || true
14004 }
14005 run_test 206 "fail lov_init_raid0() doesn't lbug"
14006
14007 test_207a() {
14008         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
14009         local fsz=`stat -c %s $DIR/$tfile`
14010         cancel_lru_locks mdc
14011
14012         # do not return layout in getattr intent
14013 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
14014         $LCTL set_param fail_loc=0x170
14015         local sz=`stat -c %s $DIR/$tfile`
14016
14017         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
14018
14019         rm -rf $DIR/$tfile
14020 }
14021 run_test 207a "can refresh layout at glimpse"
14022
14023 test_207b() {
14024         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
14025         local cksum=`md5sum $DIR/$tfile`
14026         local fsz=`stat -c %s $DIR/$tfile`
14027         cancel_lru_locks mdc
14028         cancel_lru_locks osc
14029
14030         # do not return layout in getattr intent
14031 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
14032         $LCTL set_param fail_loc=0x171
14033
14034         # it will refresh layout after the file is opened but before read issues
14035         echo checksum is "$cksum"
14036         echo "$cksum" |md5sum -c --quiet || error "file differs"
14037
14038         rm -rf $DIR/$tfile
14039 }
14040 run_test 207b "can refresh layout at open"
14041
14042 test_208() {
14043         # FIXME: in this test suite, only RD lease is used. This is okay
14044         # for now as only exclusive open is supported. After generic lease
14045         # is done, this test suite should be revised. - Jinshan
14046
14047         remote_mds_nodsh && skip "remote MDS with nodsh"
14048         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
14049                 skip "Need MDS version at least 2.4.52"
14050
14051         echo "==== test 1: verify get lease work"
14052         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
14053
14054         echo "==== test 2: verify lease can be broken by upcoming open"
14055         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
14056         local PID=$!
14057         sleep 1
14058
14059         $MULTIOP $DIR/$tfile oO_RDONLY:c
14060         kill -USR1 $PID && wait $PID || error "break lease error"
14061
14062         echo "==== test 3: verify lease can't be granted if an open already exists"
14063         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
14064         local PID=$!
14065         sleep 1
14066
14067         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
14068         kill -USR1 $PID && wait $PID || error "open file error"
14069
14070         echo "==== test 4: lease can sustain over recovery"
14071         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
14072         PID=$!
14073         sleep 1
14074
14075         fail mds1
14076
14077         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
14078
14079         echo "==== test 5: lease broken can't be regained by replay"
14080         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
14081         PID=$!
14082         sleep 1
14083
14084         # open file to break lease and then recovery
14085         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
14086         fail mds1
14087
14088         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
14089
14090         rm -f $DIR/$tfile
14091 }
14092 run_test 208 "Exclusive open"
14093
14094 test_209() {
14095         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
14096                 skip_env "must have disp_stripe"
14097
14098         touch $DIR/$tfile
14099         sync; sleep 5; sync;
14100
14101         echo 3 > /proc/sys/vm/drop_caches
14102         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
14103
14104         # open/close 500 times
14105         for i in $(seq 500); do
14106                 cat $DIR/$tfile
14107         done
14108
14109         echo 3 > /proc/sys/vm/drop_caches
14110         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
14111
14112         echo "before: $req_before, after: $req_after"
14113         [ $((req_after - req_before)) -ge 300 ] &&
14114                 error "open/close requests are not freed"
14115         return 0
14116 }
14117 run_test 209 "read-only open/close requests should be freed promptly"
14118
14119 test_212() {
14120         size=`date +%s`
14121         size=$((size % 8192 + 1))
14122         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
14123         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
14124         rm -f $DIR/f212 $DIR/f212.xyz
14125 }
14126 run_test 212 "Sendfile test ============================================"
14127
14128 test_213() {
14129         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
14130         cancel_lru_locks osc
14131         lctl set_param fail_loc=0x8000040f
14132         # generate a read lock
14133         cat $DIR/$tfile > /dev/null
14134         # write to the file, it will try to cancel the above read lock.
14135         cat /etc/hosts >> $DIR/$tfile
14136 }
14137 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
14138
14139 test_214() { # for bug 20133
14140         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
14141         for (( i=0; i < 340; i++ )) ; do
14142                 touch $DIR/$tdir/d214c/a$i
14143         done
14144
14145         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
14146         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
14147         ls $DIR/d214c || error "ls $DIR/d214c failed"
14148         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
14149         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
14150 }
14151 run_test 214 "hash-indexed directory test - bug 20133"
14152
14153 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
14154 create_lnet_proc_files() {
14155         lctl get_param -n $1 >$TMP/lnet_$1.sys || error "cannot read lnet.$1"
14156 }
14157
14158 # counterpart of create_lnet_proc_files
14159 remove_lnet_proc_files() {
14160         rm -f $TMP/lnet_$1.sys
14161 }
14162
14163 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
14164 # 3rd arg as regexp for body
14165 check_lnet_proc_stats() {
14166         local l=$(cat "$TMP/lnet_$1" |wc -l)
14167         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
14168
14169         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
14170 }
14171
14172 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
14173 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
14174 # optional and can be regexp for 2nd line (lnet.routes case)
14175 check_lnet_proc_entry() {
14176         local blp=2          # blp stands for 'position of 1st line of body'
14177         [ -z "$5" ] || blp=3 # lnet.routes case
14178
14179         local l=$(cat "$TMP/lnet_$1" |wc -l)
14180         # subtracting one from $blp because the body can be empty
14181         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
14182
14183         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
14184                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
14185
14186         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
14187                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
14188
14189         # bail out if any unexpected line happened
14190         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
14191         [ "$?" != 0 ] || error "$2 misformatted"
14192 }
14193
14194 test_215() { # for bugs 18102, 21079, 21517
14195         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14196
14197         local N='(0|[1-9][0-9]*)'       # non-negative numeric
14198         local P='[1-9][0-9]*'           # positive numeric
14199         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
14200         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
14201         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
14202         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
14203
14204         local L1 # regexp for 1st line
14205         local L2 # regexp for 2nd line (optional)
14206         local BR # regexp for the rest (body)
14207
14208         # lnet.stats should look as 11 space-separated non-negative numerics
14209         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
14210         create_lnet_proc_files "stats"
14211         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
14212         remove_lnet_proc_files "stats"
14213
14214         # lnet.routes should look like this:
14215         # Routing disabled/enabled
14216         # net hops priority state router
14217         # where net is a string like tcp0, hops > 0, priority >= 0,
14218         # state is up/down,
14219         # router is a string like 192.168.1.1@tcp2
14220         L1="^Routing (disabled|enabled)$"
14221         L2="^net +hops +priority +state +router$"
14222         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
14223         create_lnet_proc_files "routes"
14224         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
14225         remove_lnet_proc_files "routes"
14226
14227         # lnet.routers should look like this:
14228         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
14229         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
14230         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
14231         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
14232         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
14233         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
14234         create_lnet_proc_files "routers"
14235         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
14236         remove_lnet_proc_files "routers"
14237
14238         # lnet.peers should look like this:
14239         # nid refs state last max rtr min tx min queue
14240         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
14241         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
14242         # numeric (0 or >0 or <0), queue >= 0.
14243         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
14244         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
14245         create_lnet_proc_files "peers"
14246         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
14247         remove_lnet_proc_files "peers"
14248
14249         # lnet.buffers  should look like this:
14250         # pages count credits min
14251         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
14252         L1="^pages +count +credits +min$"
14253         BR="^ +$N +$N +$I +$I$"
14254         create_lnet_proc_files "buffers"
14255         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
14256         remove_lnet_proc_files "buffers"
14257
14258         # lnet.nis should look like this:
14259         # nid status alive refs peer rtr max tx min
14260         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
14261         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
14262         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
14263         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
14264         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
14265         create_lnet_proc_files "nis"
14266         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
14267         remove_lnet_proc_files "nis"
14268
14269         # can we successfully write to lnet.stats?
14270         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
14271 }
14272 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
14273
14274 test_216() { # bug 20317
14275         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14276         remote_ost_nodsh && skip "remote OST with nodsh"
14277
14278         local node
14279         local facets=$(get_facets OST)
14280         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
14281
14282         save_lustre_params client "osc.*.contention_seconds" > $p
14283         save_lustre_params $facets \
14284                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
14285         save_lustre_params $facets \
14286                 "ldlm.namespaces.filter-*.contended_locks" >> $p
14287         save_lustre_params $facets \
14288                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
14289         clear_stats osc.*.osc_stats
14290
14291         # agressive lockless i/o settings
14292         do_nodes $(comma_list $(osts_nodes)) \
14293                 "lctl set_param -n ldlm.namespaces.*.max_nolock_bytes=2000000 \
14294                         ldlm.namespaces.filter-*.contended_locks=0 \
14295                         ldlm.namespaces.filter-*.contention_seconds=60"
14296         lctl set_param -n osc.*.contention_seconds=60
14297
14298         $DIRECTIO write $DIR/$tfile 0 10 4096
14299         $CHECKSTAT -s 40960 $DIR/$tfile
14300
14301         # disable lockless i/o
14302         do_nodes $(comma_list $(osts_nodes)) \
14303                 "lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes=0 \
14304                         ldlm.namespaces.filter-*.contended_locks=32 \
14305                         ldlm.namespaces.filter-*.contention_seconds=0"
14306         lctl set_param -n osc.*.contention_seconds=0
14307         clear_stats osc.*.osc_stats
14308
14309         dd if=/dev/zero of=$DIR/$tfile count=0
14310         $CHECKSTAT -s 0 $DIR/$tfile
14311
14312         restore_lustre_params <$p
14313         rm -f $p
14314         rm $DIR/$tfile
14315 }
14316 run_test 216 "check lockless direct write updates file size and kms correctly"
14317
14318 test_217() { # bug 22430
14319         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14320
14321         local node
14322         local nid
14323
14324         for node in $(nodes_list); do
14325                 nid=$(host_nids_address $node $NETTYPE)
14326                 if [[ $nid = *-* ]] ; then
14327                         echo "lctl ping $(h2nettype $nid)"
14328                         lctl ping $(h2nettype $nid)
14329                 else
14330                         echo "skipping $node (no hyphen detected)"
14331                 fi
14332         done
14333 }
14334 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
14335
14336 test_218() {
14337        # do directio so as not to populate the page cache
14338        log "creating a 10 Mb file"
14339        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
14340        log "starting reads"
14341        dd if=$DIR/$tfile of=/dev/null bs=4096 &
14342        log "truncating the file"
14343        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
14344        log "killing dd"
14345        kill %+ || true # reads might have finished
14346        echo "wait until dd is finished"
14347        wait
14348        log "removing the temporary file"
14349        rm -rf $DIR/$tfile || error "tmp file removal failed"
14350 }
14351 run_test 218 "parallel read and truncate should not deadlock"
14352
14353 test_219() {
14354         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14355
14356         # write one partial page
14357         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
14358         # set no grant so vvp_io_commit_write will do sync write
14359         $LCTL set_param fail_loc=0x411
14360         # write a full page at the end of file
14361         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
14362
14363         $LCTL set_param fail_loc=0
14364         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
14365         $LCTL set_param fail_loc=0x411
14366         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
14367
14368         # LU-4201
14369         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
14370         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
14371 }
14372 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
14373
14374 test_220() { #LU-325
14375         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14376         remote_ost_nodsh && skip "remote OST with nodsh"
14377         remote_mds_nodsh && skip "remote MDS with nodsh"
14378         remote_mgs_nodsh && skip "remote MGS with nodsh"
14379
14380         local OSTIDX=0
14381
14382         # create on MDT0000 so the last_id and next_id are correct
14383         mkdir $DIR/$tdir
14384         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
14385         OST=${OST%_UUID}
14386
14387         # on the mdt's osc
14388         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
14389         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
14390                         osc.$mdtosc_proc1.prealloc_last_id)
14391         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
14392                         osc.$mdtosc_proc1.prealloc_next_id)
14393
14394         $LFS df -i
14395
14396         if ! combined_mgs_mds ; then
14397                 mount_mgs_client
14398         fi
14399
14400         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
14401         #define OBD_FAIL_OST_ENOINO              0x229
14402         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
14403         create_pool $FSNAME.$TESTNAME || return 1
14404         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
14405
14406         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
14407
14408         MDSOBJS=$((last_id - next_id))
14409         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
14410
14411         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
14412         echo "OST still has $count kbytes free"
14413
14414         echo "create $MDSOBJS files @next_id..."
14415         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
14416
14417         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
14418                         osc.$mdtosc_proc1.prealloc_last_id)
14419         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
14420                         osc.$mdtosc_proc1.prealloc_next_id)
14421
14422         echo "after creation, last_id=$last_id2, next_id=$next_id2"
14423         $LFS df -i
14424
14425         echo "cleanup..."
14426
14427         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
14428         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
14429
14430         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST ||
14431                 error "$LCTL pool_remove $FSNAME.$TESTNAME $OST failed"
14432         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
14433                 error "$LCTL pool_destroy $FSNAME.$TESTNAME failed"
14434         echo "unlink $MDSOBJS files @$next_id..."
14435         unlinkmany $DIR/$tdir/f $MDSOBJS || error "unlinkmany failed"
14436
14437         if ! combined_mgs_mds ; then
14438                 umount_mgs_client
14439         fi
14440 }
14441 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
14442
14443 test_221() {
14444         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14445
14446         dd if=`which date` of=$MOUNT/date oflag=sync
14447         chmod +x $MOUNT/date
14448
14449         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
14450         $LCTL set_param fail_loc=0x80001401
14451
14452         $MOUNT/date > /dev/null
14453         rm -f $MOUNT/date
14454 }
14455 run_test 221 "make sure fault and truncate race to not cause OOM"
14456
14457 test_222a () {
14458         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14459
14460         rm -rf $DIR/$tdir
14461         test_mkdir $DIR/$tdir
14462         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14463         createmany -o $DIR/$tdir/$tfile 10
14464         cancel_lru_locks mdc
14465         cancel_lru_locks osc
14466         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
14467         $LCTL set_param fail_loc=0x31a
14468         ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
14469         $LCTL set_param fail_loc=0
14470         rm -r $DIR/$tdir
14471 }
14472 run_test 222a "AGL for ls should not trigger CLIO lock failure"
14473
14474 test_222b () {
14475         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14476
14477         rm -rf $DIR/$tdir
14478         test_mkdir $DIR/$tdir
14479         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14480         createmany -o $DIR/$tdir/$tfile 10
14481         cancel_lru_locks mdc
14482         cancel_lru_locks osc
14483         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
14484         $LCTL set_param fail_loc=0x31a
14485         rm -r $DIR/$tdir || error "AGL for rmdir failed"
14486         $LCTL set_param fail_loc=0
14487 }
14488 run_test 222b "AGL for rmdir should not trigger CLIO lock failure"
14489
14490 test_223 () {
14491         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14492
14493         rm -rf $DIR/$tdir
14494         test_mkdir $DIR/$tdir
14495         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14496         createmany -o $DIR/$tdir/$tfile 10
14497         cancel_lru_locks mdc
14498         cancel_lru_locks osc
14499         #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
14500         $LCTL set_param fail_loc=0x31b
14501         ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
14502         $LCTL set_param fail_loc=0
14503         rm -r $DIR/$tdir
14504 }
14505 run_test 223 "osc reenqueue if without AGL lock granted ======================="
14506
14507 test_224a() { # LU-1039, MRP-303
14508         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14509
14510         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
14511         $LCTL set_param fail_loc=0x508
14512         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
14513         $LCTL set_param fail_loc=0
14514         df $DIR
14515 }
14516 run_test 224a "Don't panic on bulk IO failure"
14517
14518 test_224b() { # LU-1039, MRP-303
14519         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14520
14521         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
14522         cancel_lru_locks osc
14523         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
14524         $LCTL set_param fail_loc=0x515
14525         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
14526         $LCTL set_param fail_loc=0
14527         df $DIR
14528 }
14529 run_test 224b "Don't panic on bulk IO failure"
14530
14531 test_224c() { # LU-6441
14532         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14533         remote_mds_nodsh && skip "remote MDS with nodsh"
14534
14535         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
14536         save_writethrough $p
14537         set_cache writethrough on
14538
14539         local pages_per_rpc=$($LCTL get_param \
14540                                 osc.*.max_pages_per_rpc)
14541         local at_max=$($LCTL get_param -n at_max)
14542         local timeout=$($LCTL get_param -n timeout)
14543         local test_at="$LCTL get_param -n at_max"
14544         local param_at="$FSNAME.sys.at_max"
14545         local test_timeout="$LCTL get_param -n timeout"
14546         local param_timeout="$FSNAME.sys.timeout"
14547
14548         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
14549
14550         set_conf_param_and_check client "$test_at" "$param_at" 0 ||
14551                 error "conf_param at_max=0 failed"
14552         set_conf_param_and_check client "$test_timeout" "$param_timeout" 5 ||
14553                 error "conf_param timeout=5 failed"
14554
14555         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3   0x520
14556         do_facet ost1 $LCTL set_param fail_loc=0x520
14557         $LFS setstripe -c 1 -i 0 $DIR/$tfile
14558         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
14559         sync
14560         do_facet ost1 $LCTL set_param fail_loc=0
14561
14562         set_conf_param_and_check client "$test_at" "$param_at" $at_max ||
14563                 error "conf_param at_max=$at_max failed"
14564         set_conf_param_and_check client "$test_timeout" "$param_timeout" \
14565                 $timeout || error "conf_param timeout=$timeout failed"
14566
14567         $LCTL set_param -n $pages_per_rpc
14568         restore_lustre_params < $p
14569         rm -f $p
14570 }
14571 run_test 224c "Don't hang if one of md lost during large bulk RPC"
14572
14573 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
14574 test_225a () {
14575         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14576         if [ -z ${MDSSURVEY} ]; then
14577                 skip_env "mds-survey not found"
14578         fi
14579         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
14580                 skip "Need MDS version at least 2.2.51"
14581
14582         local mds=$(facet_host $SINGLEMDS)
14583         local target=$(do_nodes $mds 'lctl dl' |
14584                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
14585
14586         local cmd1="file_count=1000 thrhi=4"
14587         local cmd2="dir_count=2 layer=mdd stripe_count=0"
14588         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
14589         local cmd="$cmd1 $cmd2 $cmd3"
14590
14591         rm -f ${TMP}/mds_survey*
14592         echo + $cmd
14593         eval $cmd || error "mds-survey with zero-stripe failed"
14594         cat ${TMP}/mds_survey*
14595         rm -f ${TMP}/mds_survey*
14596 }
14597 run_test 225a "Metadata survey sanity with zero-stripe"
14598
14599 test_225b () {
14600         if [ -z ${MDSSURVEY} ]; then
14601                 skip_env "mds-survey not found"
14602         fi
14603         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
14604                 skip "Need MDS version at least 2.2.51"
14605         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14606         remote_mds_nodsh && skip "remote MDS with nodsh"
14607         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
14608                 skip_env "Need to mount OST to test"
14609         fi
14610
14611         local mds=$(facet_host $SINGLEMDS)
14612         local target=$(do_nodes $mds 'lctl dl' |
14613                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
14614
14615         local cmd1="file_count=1000 thrhi=4"
14616         local cmd2="dir_count=2 layer=mdd stripe_count=1"
14617         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
14618         local cmd="$cmd1 $cmd2 $cmd3"
14619
14620         rm -f ${TMP}/mds_survey*
14621         echo + $cmd
14622         eval $cmd || error "mds-survey with stripe_count failed"
14623         cat ${TMP}/mds_survey*
14624         rm -f ${TMP}/mds_survey*
14625 }
14626 run_test 225b "Metadata survey sanity with stripe_count = 1"
14627
14628 mcreate_path2fid () {
14629         local mode=$1
14630         local major=$2
14631         local minor=$3
14632         local name=$4
14633         local desc=$5
14634         local path=$DIR/$tdir/$name
14635         local fid
14636         local rc
14637         local fid_path
14638
14639         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
14640                 error "cannot create $desc"
14641
14642         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
14643         rc=$?
14644         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
14645
14646         fid_path=$($LFS fid2path $MOUNT $fid)
14647         rc=$?
14648         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
14649
14650         [ "$path" == "$fid_path" ] ||
14651                 error "fid2path returned $fid_path, expected $path"
14652
14653         echo "pass with $path and $fid"
14654 }
14655
14656 test_226a () {
14657         rm -rf $DIR/$tdir
14658         mkdir -p $DIR/$tdir
14659
14660         mcreate_path2fid 0010666 0 0 fifo "FIFO"
14661         mcreate_path2fid 0020666 1 3 null "character special file (null)"
14662         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
14663         mcreate_path2fid 0040666 0 0 dir "directory"
14664         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
14665         mcreate_path2fid 0100666 0 0 file "regular file"
14666         mcreate_path2fid 0120666 0 0 link "symbolic link"
14667         mcreate_path2fid 0140666 0 0 sock "socket"
14668 }
14669 run_test 226a "call path2fid and fid2path on files of all type"
14670
14671 test_226b () {
14672         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14673
14674         local MDTIDX=1
14675
14676         rm -rf $DIR/$tdir
14677         mkdir -p $DIR/$tdir
14678         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
14679                 error "create remote directory failed"
14680         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
14681         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
14682                                 "character special file (null)"
14683         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
14684                                 "character special file (no device)"
14685         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
14686         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
14687                                 "block special file (loop)"
14688         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
14689         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
14690         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
14691 }
14692 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
14693
14694 # LU-1299 Executing or running ldd on a truncated executable does not
14695 # cause an out-of-memory condition.
14696 test_227() {
14697         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14698         [ -z "$(which ldd)" ] && skip_env "should have ldd tool"
14699
14700         dd if=$(which date) of=$MOUNT/date bs=1k count=1
14701         chmod +x $MOUNT/date
14702
14703         $MOUNT/date > /dev/null
14704         ldd $MOUNT/date > /dev/null
14705         rm -f $MOUNT/date
14706 }
14707 run_test 227 "running truncated executable does not cause OOM"
14708
14709 # LU-1512 try to reuse idle OI blocks
14710 test_228a() {
14711         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14712         remote_mds_nodsh && skip "remote MDS with nodsh"
14713         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
14714                 skip_env "ldiskfs only test"
14715
14716         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14717         local myDIR=$DIR/$tdir
14718
14719         mkdir -p $myDIR
14720         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14721         $LCTL set_param fail_loc=0x80001002
14722         createmany -o $myDIR/t- 10000
14723         $LCTL set_param fail_loc=0
14724         # The guard is current the largest FID holder
14725         touch $myDIR/guard
14726         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14727                     tr -d '[')
14728         local IDX=$(($SEQ % 64))
14729
14730         do_facet $SINGLEMDS sync
14731         # Make sure journal flushed.
14732         sleep 6
14733         local blk1=$(do_facet $SINGLEMDS \
14734                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14735                      grep Blockcount | awk '{print $4}')
14736
14737         # Remove old files, some OI blocks will become idle.
14738         unlinkmany $myDIR/t- 10000
14739         # Create new files, idle OI blocks should be reused.
14740         createmany -o $myDIR/t- 2000
14741         do_facet $SINGLEMDS sync
14742         # Make sure journal flushed.
14743         sleep 6
14744         local blk2=$(do_facet $SINGLEMDS \
14745                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14746                      grep Blockcount | awk '{print $4}')
14747
14748         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14749 }
14750 run_test 228a "try to reuse idle OI blocks"
14751
14752 test_228b() {
14753         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14754         remote_mds_nodsh && skip "remote MDS with nodsh"
14755         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
14756                 skip_env "ldiskfs only test"
14757
14758         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14759         local myDIR=$DIR/$tdir
14760
14761         mkdir -p $myDIR
14762         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14763         $LCTL set_param fail_loc=0x80001002
14764         createmany -o $myDIR/t- 10000
14765         $LCTL set_param fail_loc=0
14766         # The guard is current the largest FID holder
14767         touch $myDIR/guard
14768         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14769                     tr -d '[')
14770         local IDX=$(($SEQ % 64))
14771
14772         do_facet $SINGLEMDS sync
14773         # Make sure journal flushed.
14774         sleep 6
14775         local blk1=$(do_facet $SINGLEMDS \
14776                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14777                      grep Blockcount | awk '{print $4}')
14778
14779         # Remove old files, some OI blocks will become idle.
14780         unlinkmany $myDIR/t- 10000
14781
14782         # stop the MDT
14783         stop $SINGLEMDS || error "Fail to stop MDT."
14784         # remount the MDT
14785         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
14786
14787         df $MOUNT || error "Fail to df."
14788         # Create new files, idle OI blocks should be reused.
14789         createmany -o $myDIR/t- 2000
14790         do_facet $SINGLEMDS sync
14791         # Make sure journal flushed.
14792         sleep 6
14793         local blk2=$(do_facet $SINGLEMDS \
14794                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14795                      grep Blockcount | awk '{print $4}')
14796
14797         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14798 }
14799 run_test 228b "idle OI blocks can be reused after MDT restart"
14800
14801 #LU-1881
14802 test_228c() {
14803         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14804         remote_mds_nodsh && skip "remote MDS with nodsh"
14805         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
14806                 skip_env "ldiskfs only test"
14807
14808         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14809         local myDIR=$DIR/$tdir
14810
14811         mkdir -p $myDIR
14812         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14813         $LCTL set_param fail_loc=0x80001002
14814         # 20000 files can guarantee there are index nodes in the OI file
14815         createmany -o $myDIR/t- 20000
14816         $LCTL set_param fail_loc=0
14817         # The guard is current the largest FID holder
14818         touch $myDIR/guard
14819         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14820                     tr -d '[')
14821         local IDX=$(($SEQ % 64))
14822
14823         do_facet $SINGLEMDS sync
14824         # Make sure journal flushed.
14825         sleep 6
14826         local blk1=$(do_facet $SINGLEMDS \
14827                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14828                      grep Blockcount | awk '{print $4}')
14829
14830         # Remove old files, some OI blocks will become idle.
14831         unlinkmany $myDIR/t- 20000
14832         rm -f $myDIR/guard
14833         # The OI file should become empty now
14834
14835         # Create new files, idle OI blocks should be reused.
14836         createmany -o $myDIR/t- 2000
14837         do_facet $SINGLEMDS sync
14838         # Make sure journal flushed.
14839         sleep 6
14840         local blk2=$(do_facet $SINGLEMDS \
14841                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14842                      grep Blockcount | awk '{print $4}')
14843
14844         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14845 }
14846 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
14847
14848 test_229() { # LU-2482, LU-3448
14849         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14850         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
14851         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
14852                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53"
14853
14854         rm -f $DIR/$tfile
14855
14856         # Create a file with a released layout and stripe count 2.
14857         $MULTIOP $DIR/$tfile H2c ||
14858                 error "failed to create file with released layout"
14859
14860         $GETSTRIPE -v $DIR/$tfile
14861
14862         local pattern=$($GETSTRIPE -L $DIR/$tfile)
14863         [ X"$pattern" = X"released" ] || error "pattern error ($pattern)"
14864
14865         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
14866         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
14867         stat $DIR/$tfile || error "failed to stat released file"
14868
14869         chown $RUNAS_ID $DIR/$tfile ||
14870                 error "chown $RUNAS_ID $DIR/$tfile failed"
14871
14872         chgrp $RUNAS_ID $DIR/$tfile ||
14873                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
14874
14875         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
14876         rm $DIR/$tfile || error "failed to remove released file"
14877 }
14878 run_test 229 "getstripe/stat/rm/attr changes work on released files"
14879
14880 test_230a() {
14881         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14882         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14883
14884         local MDTIDX=1
14885
14886         test_mkdir $DIR/$tdir
14887         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
14888         local mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230_local)
14889         [ $mdt_idx -ne 0 ] &&
14890                 error "create local directory on wrong MDT $mdt_idx"
14891
14892         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
14893                         error "create remote directory failed"
14894         local mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230)
14895         [ $mdt_idx -ne $MDTIDX ] &&
14896                 error "create remote directory on wrong MDT $mdt_idx"
14897
14898         createmany -o $DIR/$tdir/test_230/t- 10 ||
14899                 error "create files on remote directory failed"
14900         mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230/t-0)
14901         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
14902         rm -r $DIR/$tdir || error "unlink remote directory failed"
14903 }
14904 run_test 230a "Create remote directory and files under the remote directory"
14905
14906 test_230b() {
14907         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14908         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14909
14910         local MDTIDX=1
14911         local mdt_index
14912         local i
14913         local file
14914         local pid
14915         local stripe_count
14916         local migrate_dir=$DIR/$tdir/migrate_dir
14917         local other_dir=$DIR/$tdir/other_dir
14918
14919         test_mkdir $DIR/$tdir
14920         test_mkdir -i0 -c1 $migrate_dir
14921         test_mkdir -i0 -c1 $other_dir
14922         for ((i=0; i<10; i++)); do
14923                 mkdir -p $migrate_dir/dir_${i}
14924                 createmany -o $migrate_dir/dir_${i}/f 10 ||
14925                         error "create files under remote dir failed $i"
14926         done
14927
14928         cp /etc/passwd $migrate_dir/$tfile
14929         cp /etc/passwd $other_dir/$tfile
14930         chattr +SAD $migrate_dir
14931         chattr +SAD $migrate_dir/$tfile
14932
14933         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
14934         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
14935         local old_dir_mode=$(stat -c%f $migrate_dir)
14936         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
14937
14938         mkdir -p $migrate_dir/dir_default_stripe2
14939         $SETSTRIPE -c 2 $migrate_dir/dir_default_stripe2
14940         $SETSTRIPE -c 2 $migrate_dir/${tfile}_stripe2
14941
14942         mkdir -p $other_dir
14943         ln $migrate_dir/$tfile $other_dir/luna
14944         ln $migrate_dir/$tfile $migrate_dir/sofia
14945         ln $other_dir/$tfile $migrate_dir/david
14946         ln -s $migrate_dir/$tfile $other_dir/zachary
14947         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
14948         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
14949
14950         $LFS migrate -m $MDTIDX $migrate_dir ||
14951                 error "fails on migrating remote dir to MDT1"
14952
14953         echo "migratate to MDT1, then checking.."
14954         for ((i = 0; i < 10; i++)); do
14955                 for file in $(find $migrate_dir/dir_${i}); do
14956                         mdt_index=$($LFS getstripe -m $file)
14957                         [ $mdt_index == $MDTIDX ] ||
14958                                 error "$file is not on MDT${MDTIDX}"
14959                 done
14960         done
14961
14962         # the multiple link file should still in MDT0
14963         mdt_index=$($LFS getstripe -m $migrate_dir/$tfile)
14964         [ $mdt_index == 0 ] ||
14965                 error "$file is not on MDT${MDTIDX}"
14966
14967         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
14968         [ "$old_dir_flag" = "$new_dir_flag" ] ||
14969                 error " expect $old_dir_flag get $new_dir_flag"
14970
14971         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
14972         [ "$old_file_flag" = "$new_file_flag" ] ||
14973                 error " expect $old_file_flag get $new_file_flag"
14974
14975         local new_dir_mode=$(stat -c%f $migrate_dir)
14976         [ "$old_dir_mode" = "$new_dir_mode" ] ||
14977                 error "expect mode $old_dir_mode get $new_dir_mode"
14978
14979         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
14980         [ "$old_file_mode" = "$new_file_mode" ] ||
14981                 error "expect mode $old_file_mode get $new_file_mode"
14982
14983         diff /etc/passwd $migrate_dir/$tfile ||
14984                 error "$tfile different after migration"
14985
14986         diff /etc/passwd $other_dir/luna ||
14987                 error "luna different after migration"
14988
14989         diff /etc/passwd $migrate_dir/sofia ||
14990                 error "sofia different after migration"
14991
14992         diff /etc/passwd $migrate_dir/david ||
14993                 error "david different after migration"
14994
14995         diff /etc/passwd $other_dir/zachary ||
14996                 error "zachary different after migration"
14997
14998         diff /etc/passwd $migrate_dir/${tfile}_ln ||
14999                 error "${tfile}_ln different after migration"
15000
15001         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
15002                 error "${tfile}_ln_other different after migration"
15003
15004         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
15005         [ $stripe_count = 2 ] ||
15006                 error "dir strpe_count $d != 2 after migration."
15007
15008         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
15009         [ $stripe_count = 2 ] ||
15010                 error "file strpe_count $d != 2 after migration."
15011
15012         #migrate back to MDT0
15013         MDTIDX=0
15014
15015         $LFS migrate -m $MDTIDX $migrate_dir ||
15016                 error "fails on migrating remote dir to MDT0"
15017
15018         echo "migrate back to MDT0, checking.."
15019         for file in $(find $migrate_dir); do
15020                 mdt_index=$($LFS getstripe -m $file)
15021                 [ $mdt_index == $MDTIDX ] ||
15022                         error "$file is not on MDT${MDTIDX}"
15023         done
15024
15025         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
15026         [ "$old_dir_flag" = "$new_dir_flag" ] ||
15027                 error " expect $old_dir_flag get $new_dir_flag"
15028
15029         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
15030         [ "$old_file_flag" = "$new_file_flag" ] ||
15031                 error " expect $old_file_flag get $new_file_flag"
15032
15033         local new_dir_mode=$(stat -c%f $migrate_dir)
15034         [ "$old_dir_mode" = "$new_dir_mode" ] ||
15035                 error "expect mode $old_dir_mode get $new_dir_mode"
15036
15037         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
15038         [ "$old_file_mode" = "$new_file_mode" ] ||
15039                 error "expect mode $old_file_mode get $new_file_mode"
15040
15041         diff /etc/passwd ${migrate_dir}/$tfile ||
15042                 error "$tfile different after migration"
15043
15044         diff /etc/passwd ${other_dir}/luna ||
15045                 error "luna different after migration"
15046
15047         diff /etc/passwd ${migrate_dir}/sofia ||
15048                 error "sofia different after migration"
15049
15050         diff /etc/passwd ${other_dir}/zachary ||
15051                 error "zachary different after migration"
15052
15053         diff /etc/passwd $migrate_dir/${tfile}_ln ||
15054                 error "${tfile}_ln different after migration"
15055
15056         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
15057                 error "${tfile}_ln_other different after migration"
15058
15059         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
15060         [ $stripe_count = 2 ] ||
15061                 error "dir strpe_count $d != 2 after migration."
15062
15063         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
15064         [ $stripe_count = 2 ] ||
15065                 error "file strpe_count $d != 2 after migration."
15066
15067         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15068 }
15069 run_test 230b "migrate directory"
15070
15071 test_230c() {
15072         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15073         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15074         remote_mds_nodsh && skip "remote MDS with nodsh"
15075
15076         local MDTIDX=1
15077         local mdt_index
15078         local file
15079         local migrate_dir=$DIR/$tdir/migrate_dir
15080
15081         #If migrating directory fails in the middle, all entries of
15082         #the directory is still accessiable.
15083         test_mkdir $DIR/$tdir
15084         test_mkdir -i0 -c1 $migrate_dir
15085         stat $migrate_dir
15086         createmany -o $migrate_dir/f 10 ||
15087                 error "create files under ${migrate_dir} failed"
15088
15089         #failed after migrating 5 entries
15090         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
15091         do_facet mds1 lctl set_param fail_loc=0x20001801
15092         do_facet mds1 lctl  set_param fail_val=5
15093         local t=$(ls $migrate_dir | wc -l)
15094         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
15095                 error "migrate should fail after 5 entries"
15096
15097         mkdir $migrate_dir/dir &&
15098                 error "mkdir succeeds under migrating directory"
15099         touch $migrate_dir/file &&
15100                 error "touch file succeeds under migrating directory"
15101
15102         local u=$(ls $migrate_dir | wc -l)
15103         [ "$u" == "$t" ] || error "$u != $t during migration"
15104
15105         for file in $(find $migrate_dir); do
15106                 stat $file || error "stat $file failed"
15107         done
15108
15109         do_facet mds1 lctl set_param fail_loc=0
15110         do_facet mds1 lctl set_param fail_val=0
15111
15112         $LFS migrate -m $MDTIDX $migrate_dir ||
15113                 error "migrate open files should failed with open files"
15114
15115         echo "Finish migration, then checking.."
15116         for file in $(find $migrate_dir); do
15117                 mdt_index=$($LFS getstripe -m $file)
15118                 [ $mdt_index == $MDTIDX ] ||
15119                         error "$file is not on MDT${MDTIDX}"
15120         done
15121
15122         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15123 }
15124 run_test 230c "check directory accessiblity if migration is failed"
15125
15126 test_230d() {
15127         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15128         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15129
15130         local MDTIDX=1
15131         local mdt_index
15132         local migrate_dir=$DIR/$tdir/migrate_dir
15133         local i
15134         local j
15135
15136         test_mkdir $DIR/$tdir
15137         test_mkdir -i0 -c1 $migrate_dir
15138
15139         for ((i=0; i<100; i++)); do
15140                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
15141                 createmany -o $migrate_dir/dir_${i}/f 100 ||
15142                         error "create files under remote dir failed $i"
15143         done
15144
15145         $LFS migrate -m $MDTIDX $migrate_dir ||
15146                 error "migrate remote dir error"
15147
15148         echo "Finish migration, then checking.."
15149         for file in $(find $migrate_dir); do
15150                 mdt_index=$($LFS getstripe -m $file)
15151                 [ $mdt_index == $MDTIDX ] ||
15152                         error "$file is not on MDT${MDTIDX}"
15153         done
15154
15155         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15156 }
15157 run_test 230d "check migrate big directory"
15158
15159 test_230e() {
15160         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15161         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15162
15163         local i
15164         local j
15165         local a_fid
15166         local b_fid
15167
15168         mkdir -p $DIR/$tdir
15169         mkdir $DIR/$tdir/migrate_dir
15170         mkdir $DIR/$tdir/other_dir
15171         touch $DIR/$tdir/migrate_dir/a
15172         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
15173         ls $DIR/$tdir/other_dir
15174
15175         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15176                 error "migrate dir fails"
15177
15178         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
15179         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
15180
15181         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15182         [ $mdt_index == 0 ] || error "a is not on MDT0"
15183
15184         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
15185                 error "migrate dir fails"
15186
15187         mdt_index=$($LFS getstripe -m $DIR/$tdir/other_dir)
15188         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
15189
15190         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15191         [ $mdt_index == 1 ] || error "a is not on MDT1"
15192
15193         mdt_index=$($LFS getstripe -m $DIR/$tdir/other_dir/b)
15194         [ $mdt_index == 1 ] || error "b is not on MDT1"
15195
15196         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
15197         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
15198
15199         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
15200
15201         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15202 }
15203 run_test 230e "migrate mulitple local link files"
15204
15205 test_230f() {
15206         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15207         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15208
15209         local a_fid
15210         local ln_fid
15211
15212         mkdir -p $DIR/$tdir
15213         mkdir $DIR/$tdir/migrate_dir
15214         $LFS mkdir -i1 $DIR/$tdir/other_dir
15215         touch $DIR/$tdir/migrate_dir/a
15216         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
15217         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
15218         ls $DIR/$tdir/other_dir
15219
15220         # a should be migrated to MDT1, since no other links on MDT0
15221         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15222                 error "#1 migrate dir fails"
15223         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
15224         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
15225         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15226         [ $mdt_index == 1 ] || error "a is not on MDT1"
15227
15228         # a should stay on MDT1, because it is a mulitple link file
15229         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
15230                 error "#2 migrate dir fails"
15231         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15232         [ $mdt_index == 1 ] || error "a is not on MDT1"
15233
15234         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15235                 error "#3 migrate dir fails"
15236
15237         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
15238         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
15239         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
15240
15241         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
15242         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
15243
15244         # a should be migrated to MDT0, since no other links on MDT1
15245         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
15246                 error "#4 migrate dir fails"
15247         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15248         [ $mdt_index == 0 ] || error "a is not on MDT0"
15249
15250         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15251 }
15252 run_test 230f "migrate mulitple remote link files"
15253
15254 test_230g() {
15255         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15256         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15257
15258         mkdir -p $DIR/$tdir/migrate_dir
15259
15260         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
15261                 error "migrating dir to non-exist MDT succeeds"
15262         true
15263 }
15264 run_test 230g "migrate dir to non-exist MDT"
15265
15266 test_230h() {
15267         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15268         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15269         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
15270                 skip "Need MDS version at least 2.7.64"
15271
15272         local mdt_index
15273
15274         mkdir -p $DIR/$tdir/migrate_dir
15275
15276         $LFS migrate -m1 $DIR &&
15277                 error "migrating mountpoint1 should fail"
15278
15279         $LFS migrate -m1 $DIR/$tdir/.. &&
15280                 error "migrating mountpoint2 should fail"
15281
15282         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. ||
15283                 error "migrating $tdir fail"
15284
15285         mdt_index=$($LFS getstripe -m $DIR/$tdir)
15286         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
15287
15288         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
15289         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
15290
15291 }
15292 run_test 230h "migrate .. and root"
15293
15294 test_230i() {
15295         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15296         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15297
15298         mkdir -p $DIR/$tdir/migrate_dir
15299
15300         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
15301                 error "migration fails with a tailing slash"
15302
15303         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
15304                 error "migration fails with two tailing slashes"
15305 }
15306 run_test 230i "lfs migrate -m tolerates trailing slashes"
15307
15308 test_231a()
15309 {
15310         # For simplicity this test assumes that max_pages_per_rpc
15311         # is the same across all OSCs
15312         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
15313         local bulk_size=$((max_pages * 4096))
15314         local brw_size=$(do_facet ost1 $LCTL get_param -n obdfilter.*.brw_size |
15315                                        head -n 1)
15316
15317         mkdir -p $DIR/$tdir
15318         $LFS setstripe -S ${brw_size}M $DIR/$tdir ||
15319                 error "failed to set stripe with -S ${brw_size}M option"
15320
15321         # clear the OSC stats
15322         $LCTL set_param osc.*.stats=0 &>/dev/null
15323         stop_writeback
15324
15325         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
15326         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
15327                 oflag=direct &>/dev/null || error "dd failed"
15328
15329         sync; sleep 1; sync # just to be safe
15330         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
15331         if [ x$nrpcs != "x1" ]; then
15332                 $LCTL get_param osc.*.stats
15333                 error "found $nrpcs ost_write RPCs, not 1 as expected"
15334         fi
15335
15336         start_writeback
15337         # Drop the OSC cache, otherwise we will read from it
15338         cancel_lru_locks osc
15339
15340         # clear the OSC stats
15341         $LCTL set_param osc.*.stats=0 &>/dev/null
15342
15343         # Client reads $bulk_size.
15344         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
15345                 iflag=direct &>/dev/null || error "dd failed"
15346
15347         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
15348         if [ x$nrpcs != "x1" ]; then
15349                 $LCTL get_param osc.*.stats
15350                 error "found $nrpcs ost_read RPCs, not 1 as expected"
15351         fi
15352 }
15353 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
15354
15355 test_231b() {
15356         mkdir -p $DIR/$tdir
15357         local i
15358         for i in {0..1023}; do
15359                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
15360                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
15361                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
15362         done
15363         sync
15364 }
15365 run_test 231b "must not assert on fully utilized OST request buffer"
15366
15367 test_232a() {
15368         mkdir -p $DIR/$tdir
15369         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
15370
15371         #define OBD_FAIL_LDLM_OST_LVB            0x31c
15372         do_facet ost1 $LCTL set_param fail_loc=0x31c
15373
15374         # ignore dd failure
15375         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
15376
15377         do_facet ost1 $LCTL set_param fail_loc=0
15378         umount_client $MOUNT || error "umount failed"
15379         mount_client $MOUNT || error "mount failed"
15380         stop ost1 || error "cannot stop ost1"
15381         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
15382 }
15383 run_test 232a "failed lock should not block umount"
15384
15385 test_232b() {
15386         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.58) ] ||
15387                 skip "Need MDS version at least 2.10.58"
15388
15389         mkdir -p $DIR/$tdir
15390         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
15391         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1
15392         sync
15393         cancel_lru_locks osc
15394
15395         #define OBD_FAIL_LDLM_OST_LVB            0x31c
15396         do_facet ost1 $LCTL set_param fail_loc=0x31c
15397
15398         # ignore failure
15399         $LFS data_version $DIR/$tdir/$tfile || true
15400
15401         do_facet ost1 $LCTL set_param fail_loc=0
15402         umount_client $MOUNT || error "umount failed"
15403         mount_client $MOUNT || error "mount failed"
15404         stop ost1 || error "cannot stop ost1"
15405         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
15406 }
15407 run_test 232b "failed data version lock should not block umount"
15408
15409 test_233a() {
15410         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
15411                 skip "Need MDS version at least 2.3.64"
15412         [ -n "$FILESET" ] && skip_env "SKIP due to FILESET set"
15413
15414         local fid=$($LFS path2fid $MOUNT)
15415
15416         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15417                 error "cannot access $MOUNT using its FID '$fid'"
15418 }
15419 run_test 233a "checking that OBF of the FS root succeeds"
15420
15421 test_233b() {
15422         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
15423                 skip "Need MDS version at least 2.5.90"
15424         [ -n "$FILESET" ] && skip_env "SKIP due to FILESET set"
15425
15426         local fid=$($LFS path2fid $MOUNT/.lustre)
15427
15428         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15429                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
15430
15431         fid=$($LFS path2fid $MOUNT/.lustre/fid)
15432         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15433                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
15434 }
15435 run_test 233b "checking that OBF of the FS .lustre succeeds"
15436
15437 test_234() {
15438         local p="$TMP/sanityN-$TESTNAME.parameters"
15439         save_lustre_params client "llite.*.xattr_cache" > $p
15440         lctl set_param llite.*.xattr_cache 1 ||
15441                 skip_env "xattr cache is not supported"
15442
15443         mkdir -p $DIR/$tdir || error "mkdir failed"
15444         touch $DIR/$tdir/$tfile || error "touch failed"
15445         # OBD_FAIL_LLITE_XATTR_ENOMEM
15446         $LCTL set_param fail_loc=0x1405
15447         getfattr -n user.attr $DIR/$tdir/$tfile &&
15448                 error "getfattr should have failed with ENOMEM"
15449         $LCTL set_param fail_loc=0x0
15450         rm -rf $DIR/$tdir
15451
15452         restore_lustre_params < $p
15453         rm -f $p
15454 }
15455 run_test 234 "xattr cache should not crash on ENOMEM"
15456
15457 test_235() {
15458         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
15459                 skip "Need MDS version at least 2.4.52"
15460
15461         flock_deadlock $DIR/$tfile
15462         local RC=$?
15463         case $RC in
15464                 0)
15465                 ;;
15466                 124) error "process hangs on a deadlock"
15467                 ;;
15468                 *) error "error executing flock_deadlock $DIR/$tfile"
15469                 ;;
15470         esac
15471 }
15472 run_test 235 "LU-1715: flock deadlock detection does not work properly"
15473
15474 #LU-2935
15475 test_236() {
15476         check_swap_layouts_support
15477
15478         local ref1=/etc/passwd
15479         local ref2=/etc/group
15480         local file1=$DIR/$tdir/f1
15481         local file2=$DIR/$tdir/f2
15482
15483         test_mkdir -c1 $DIR/$tdir
15484         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
15485         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
15486         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
15487         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
15488         local fd=$(free_fd)
15489         local cmd="exec $fd<>$file2"
15490         eval $cmd
15491         rm $file2
15492         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
15493                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
15494         cmd="exec $fd>&-"
15495         eval $cmd
15496         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
15497
15498         #cleanup
15499         rm -rf $DIR/$tdir
15500 }
15501 run_test 236 "Layout swap on open unlinked file"
15502
15503 # test to verify file handle related system calls
15504 # (name_to_handle_at/open_by_handle_at)
15505 # The new system calls are supported in glibc >= 2.14.
15506
15507 test_237() {
15508         echo "Test file_handle syscalls" > $DIR/$tfile ||
15509                 error "write failed"
15510         check_fhandle_syscalls $DIR/$tfile ||
15511                 error "check_fhandle_syscalls failed"
15512 }
15513 run_test 237 "Verify name_to_handle_at/open_by_handle_at syscalls"
15514
15515 # LU-4659 linkea consistency
15516 test_238() {
15517         local server_version=$(lustre_version_code $SINGLEMDS)
15518
15519         [[ $server_version -gt $(version_code 2.5.57) ]] ||
15520                 [[ $server_version -gt $(version_code 2.5.1) &&
15521                    $server_version -lt $(version_code 2.5.50) ]] ||
15522                 skip "Need MDS version at least 2.5.58 or 2.5.2+"
15523
15524         touch $DIR/$tfile
15525         ln $DIR/$tfile $DIR/$tfile.lnk
15526         touch $DIR/$tfile.new
15527         mv $DIR/$tfile.new $DIR/$tfile
15528         local fid1=$($LFS path2fid $DIR/$tfile)
15529         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
15530         local path1=$($LFS fid2path $FSNAME "$fid1")
15531         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
15532         local path2=$($LFS fid2path $FSNAME "$fid2")
15533         [ $tfile.lnk == $path2 ] ||
15534                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
15535         rm -f $DIR/$tfile*
15536 }
15537 run_test 238 "Verify linkea consistency"
15538
15539 test_239A() { # was test_239
15540         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.60) ] &&
15541                 skip "Need MDS version at least 2.5.60"
15542
15543         local list=$(comma_list $(mdts_nodes))
15544
15545         mkdir -p $DIR/$tdir
15546         createmany -o $DIR/$tdir/f- 5000
15547         unlinkmany $DIR/$tdir/f- 5000
15548         [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.10.53) ] &&
15549                 do_nodes $list "lctl set_param -n osp.*.force_sync=1"
15550         changes=$(do_nodes $list "lctl get_param -n osp.*MDT*.sync_changes \
15551                         osp.*MDT*.sync_in_flight" | calc_sum)
15552         [ "$changes" -eq 0 ] || error "$changes not synced"
15553 }
15554 run_test 239A "osp_sync test"
15555
15556 test_239a() { #LU-5297
15557         remote_mds_nodsh && skip "remote MDS with nodsh"
15558
15559         touch $DIR/$tfile
15560         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
15561         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
15562         chgrp $RUNAS_GID $DIR/$tfile
15563         wait_delete_completed
15564 }
15565 run_test 239a "process invalid osp sync record correctly"
15566
15567 test_239b() { #LU-5297
15568         remote_mds_nodsh && skip "remote MDS with nodsh"
15569
15570         touch $DIR/$tfile1
15571         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
15572         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
15573         chgrp $RUNAS_GID $DIR/$tfile1
15574         wait_delete_completed
15575         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
15576         touch $DIR/$tfile2
15577         chgrp $RUNAS_GID $DIR/$tfile2
15578         wait_delete_completed
15579 }
15580 run_test 239b "process osp sync record with ENOMEM error correctly"
15581
15582 test_240() {
15583         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15584         remote_mds_nodsh && skip "remote MDS with nodsh"
15585
15586         mkdir -p $DIR/$tdir
15587
15588         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
15589                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
15590         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
15591                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
15592
15593         umount_client $MOUNT || error "umount failed"
15594         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
15595         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
15596         mount_client $MOUNT || error "failed to mount client"
15597
15598         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
15599         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
15600 }
15601 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
15602
15603 test_241_bio() {
15604         for LOOP in $(seq $1); do
15605                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 2>/dev/null
15606                 cancel_lru_locks $OSC || true
15607         done
15608 }
15609
15610 test_241_dio() {
15611         for LOOP in $(seq $1); do
15612                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 \
15613                                                 iflag=direct 2>/dev/null
15614         done
15615 }
15616
15617 test_241a() { # was test_241
15618         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
15619         ls -la $DIR/$tfile
15620         cancel_lru_locks $OSC
15621         test_241_bio 1000 &
15622         PID=$!
15623         test_241_dio 1000
15624         wait $PID
15625 }
15626 run_test 241a "bio vs dio"
15627
15628 test_241b() {
15629         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
15630         ls -la $DIR/$tfile
15631         test_241_dio 1000 &
15632         PID=$!
15633         test_241_dio 1000
15634         wait $PID
15635 }
15636 run_test 241b "dio vs dio"
15637
15638 test_242() {
15639         remote_mds_nodsh && skip "remote MDS with nodsh"
15640
15641         mkdir -p $DIR/$tdir
15642         touch $DIR/$tdir/$tfile
15643
15644         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
15645         do_facet mds1 lctl set_param fail_loc=0x105
15646         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
15647
15648         do_facet mds1 lctl set_param fail_loc=0
15649         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
15650 }
15651 run_test 242 "mdt_readpage failure should not cause directory unreadable"
15652
15653 test_243()
15654 {
15655         test_mkdir $DIR/$tdir
15656         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
15657 }
15658 run_test 243 "various group lock tests"
15659
15660 test_244()
15661 {
15662         test_mkdir $DIR/$tdir
15663         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
15664         sendfile_grouplock $DIR/$tdir/$tfile || \
15665                 error "sendfile+grouplock failed"
15666         rm -rf $DIR/$tdir
15667 }
15668 run_test 244 "sendfile with group lock tests"
15669
15670 test_245() {
15671         local flagname="multi_mod_rpcs"
15672         local connect_data_name="max_mod_rpcs"
15673         local out
15674
15675         # check if multiple modify RPCs flag is set
15676         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
15677                 grep "connect_flags:")
15678         echo "$out"
15679
15680         echo "$out" | grep -qw $flagname
15681         if [ $? -ne 0 ]; then
15682                 echo "connect flag $flagname is not set"
15683                 return
15684         fi
15685
15686         # check if multiple modify RPCs data is set
15687         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
15688         echo "$out"
15689
15690         echo "$out" | grep -qw $connect_data_name ||
15691                 error "import should have connect data $connect_data_name"
15692 }
15693 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
15694
15695 test_246() { # LU-7371
15696         remote_ost_nodsh && skip "remote OST with nodsh"
15697         [ $(lustre_version_code ost1) -lt $(version_code 2.7.62) ] &&
15698                 skip "Need OST version >= 2.7.62"
15699
15700         do_facet ost1 $LCTL set_param fail_val=4095
15701 #define OBD_FAIL_OST_READ_SIZE          0x234
15702         do_facet ost1 $LCTL set_param fail_loc=0x234
15703         $LFS setstripe $DIR/$tfile -i 0 -c 1
15704         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
15705         cancel_lru_locks $FSNAME-OST0000
15706         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
15707 }
15708 run_test 246 "Read file of size 4095 should return right length"
15709
15710 cleanup_247() {
15711         local submount=$1
15712
15713         trap 0
15714         umount_client $submount
15715         rmdir $submount
15716 }
15717
15718 test_247a() {
15719         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
15720                 grep -q subtree ||
15721                 skip_env "Fileset feature is not supported"
15722
15723         local submount=${MOUNT}_$tdir
15724
15725         mkdir $MOUNT/$tdir
15726         mkdir -p $submount || error "mkdir $submount failed"
15727         FILESET="$FILESET/$tdir" mount_client $submount ||
15728                 error "mount $submount failed"
15729         trap "cleanup_247 $submount" EXIT
15730         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
15731         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
15732                 error "read $MOUNT/$tdir/$tfile failed"
15733         cleanup_247 $submount
15734 }
15735 run_test 247a "mount subdir as fileset"
15736
15737 test_247b() {
15738         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
15739                 skip_env "Fileset feature is not supported"
15740
15741         local submount=${MOUNT}_$tdir
15742
15743         rm -rf $MOUNT/$tdir
15744         mkdir -p $submount || error "mkdir $submount failed"
15745         SKIP_FILESET=1
15746         FILESET="$FILESET/$tdir" mount_client $submount &&
15747                 error "mount $submount should fail"
15748         rmdir $submount
15749 }
15750 run_test 247b "mount subdir that dose not exist"
15751
15752 test_247c() {
15753         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
15754                 skip_env "Fileset feature is not supported"
15755
15756         local submount=${MOUNT}_$tdir
15757
15758         mkdir -p $MOUNT/$tdir/dir1
15759         mkdir -p $submount || error "mkdir $submount failed"
15760         trap "cleanup_247 $submount" EXIT
15761         FILESET="$FILESET/$tdir" mount_client $submount ||
15762                 error "mount $submount failed"
15763         local fid=$($LFS path2fid $MOUNT/)
15764         $LFS fid2path $submount $fid && error "fid2path should fail"
15765         cleanup_247 $submount
15766 }
15767 run_test 247c "running fid2path outside root"
15768
15769 test_247d() {
15770         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
15771                 skip "Fileset feature is not supported"
15772
15773         local submount=${MOUNT}_$tdir
15774
15775         mkdir -p $MOUNT/$tdir/dir1
15776         mkdir -p $submount || error "mkdir $submount failed"
15777         FILESET="$FILESET/$tdir" mount_client $submount ||
15778                 error "mount $submount failed"
15779         trap "cleanup_247 $submount" EXIT
15780         local fid=$($LFS path2fid $submount/dir1)
15781         $LFS fid2path $submount $fid || error "fid2path should succeed"
15782         cleanup_247 $submount
15783 }
15784 run_test 247d "running fid2path inside root"
15785
15786 # LU-8037
15787 test_247e() {
15788         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
15789                 grep -q subtree ||
15790                 skip "Fileset feature is not supported"
15791
15792         local submount=${MOUNT}_$tdir
15793
15794         mkdir $MOUNT/$tdir
15795         mkdir -p $submount || error "mkdir $submount failed"
15796         FILESET="$FILESET/.." mount_client $submount &&
15797                 error "mount $submount should fail"
15798         rmdir $submount
15799 }
15800 run_test 247e "mount .. as fileset"
15801
15802 test_248() {
15803         local fast_read_sav=$($LCTL get_param -n llite.*.fast_read 2>/dev/null)
15804         [ -z "$fast_read_sav" ] && skip "no fast read support"
15805
15806         # create a large file for fast read verification
15807         dd if=/dev/zero of=$DIR/$tfile bs=1M count=128 > /dev/null 2>&1
15808
15809         # make sure the file is created correctly
15810         $CHECKSTAT -s $((128*1024*1024)) $DIR/$tfile ||
15811                 { rm -f $DIR/$tfile; skip "file creation error"; }
15812
15813         echo "Test 1: verify that fast read is 4 times faster on cache read"
15814
15815         # small read with fast read enabled
15816         $LCTL set_param -n llite.*.fast_read=1
15817         local t_fast=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
15818                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15819                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15820         # small read with fast read disabled
15821         $LCTL set_param -n llite.*.fast_read=0
15822         local t_slow=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
15823                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15824                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15825
15826         # verify that fast read is 4 times faster for cache read
15827         [ $(bc <<< "4 * $t_fast < $t_slow") -eq 1 ] ||
15828                 error_not_in_vm "fast read was not 4 times faster: " \
15829                            "$t_fast vs $t_slow"
15830
15831         echo "Test 2: verify the performance between big and small read"
15832         $LCTL set_param -n llite.*.fast_read=1
15833
15834         # 1k non-cache read
15835         cancel_lru_locks osc
15836         local t_1k=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
15837                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15838                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15839
15840         # 1M non-cache read
15841         cancel_lru_locks osc
15842         local t_1m=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
15843                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15844                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15845
15846         # verify that big IO is not 4 times faster than small IO
15847         [ $(bc <<< "4 * $t_1k >= $t_1m") -eq 1 ] ||
15848                 error_not_in_vm "bigger IO is way too fast: $t_1k vs $t_1m"
15849
15850         $LCTL set_param -n llite.*.fast_read=$fast_read_sav
15851         rm -f $DIR/$tfile
15852 }
15853 run_test 248 "fast read verification"
15854
15855 test_249() { # LU-7890
15856         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
15857                 skip "Need at least version 2.8.54"
15858
15859         rm -f $DIR/$tfile
15860         $SETSTRIPE -c 1 $DIR/$tfile
15861         # Offset 2T == 4k * 512M
15862         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 seek=512M ||
15863                 error "dd to 2T offset failed"
15864 }
15865 run_test 249 "Write above 2T file size"
15866
15867 test_250() {
15868         [ "$(facet_fstype ost$(($($GETSTRIPE -i $DIR/$tfile) + 1)))" = "zfs" ] \
15869          && skip "no 16TB file size limit on ZFS"
15870
15871         $SETSTRIPE -c 1 $DIR/$tfile
15872         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
15873         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
15874         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
15875         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
15876                 conv=notrunc,fsync && error "append succeeded"
15877         return 0
15878 }
15879 run_test 250 "Write above 16T limit"
15880
15881 test_251() {
15882         $SETSTRIPE -c -1 -S 1048576 $DIR/$tfile
15883
15884         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
15885         #Skip once - writing the first stripe will succeed
15886         $LCTL set_param fail_loc=0xa0001407 fail_val=1
15887         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
15888                 error "short write happened"
15889
15890         $LCTL set_param fail_loc=0xa0001407 fail_val=1
15891         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
15892                 error "short read happened"
15893
15894         rm -f $DIR/$tfile
15895 }
15896 run_test 251 "Handling short read and write correctly"
15897
15898 test_252() {
15899         remote_mds_nodsh && skip "remote MDS with nodsh"
15900         remote_ost_nodsh && skip "remote OST with nodsh"
15901         if [ "$(facet_fstype ost1)" != "ldiskfs" -o \
15902              "$(facet_fstype mds1)" != "ldiskfs" ]; then
15903                 skip_env "ldiskfs only test"
15904         fi
15905
15906         local tgt
15907         local dev
15908         local out
15909         local uuid
15910         local num
15911         local gen
15912
15913         # check lr_reader on OST0000
15914         tgt=ost1
15915         dev=$(facet_device $tgt)
15916         out=$(do_facet $tgt $LR_READER $dev)
15917         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
15918         echo "$out"
15919         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
15920         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
15921                 error "Invalid uuid returned by $LR_READER on target $tgt"
15922         echo -e "uuid returned by $LR_READER is '$uuid'\n"
15923
15924         # check lr_reader -c on MDT0000
15925         tgt=mds1
15926         dev=$(facet_device $tgt)
15927         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
15928                 skip "$LR_READER does not support additional options"
15929         fi
15930         out=$(do_facet $tgt $LR_READER -c $dev)
15931         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
15932         echo "$out"
15933         num=$(echo "$out" | grep -c "mdtlov")
15934         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
15935                 error "Invalid number of mdtlov clients returned by $LR_READER"
15936         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
15937
15938         # check lr_reader -cr on MDT0000
15939         out=$(do_facet $tgt $LR_READER -cr $dev)
15940         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
15941         echo "$out"
15942         echo "$out" | grep -q "^reply_data:$" ||
15943                 error "$LR_READER should have returned 'reply_data' section"
15944         num=$(echo "$out" | grep -c "client_generation")
15945         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
15946 }
15947 run_test 252 "check lr_reader tool"
15948
15949 test_253_fill_ost() {
15950         local size_mb #how many MB should we write to pass watermark
15951         local lwm=$3  #low watermark
15952         local free_10mb #10% of free space
15953
15954         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
15955         size_mb=$((free_kb / 1024 - lwm))
15956         free_10mb=$((free_kb / 10240))
15957         #If 10% of free space cross low watermark use it
15958         if (( free_10mb > size_mb )); then
15959                 size_mb=$free_10mb
15960         else
15961                 #At least we need to store 1.1 of difference between
15962                 #free space and low watermark
15963                 size_mb=$((size_mb + size_mb / 10))
15964         fi
15965         if (( lwm <= $((free_kb / 1024)) )) || [ ! -f $DIR/$tdir/1 ]; then
15966                 dd if=/dev/zero of=$DIR/$tdir/1 bs=1M count=$size_mb \
15967                          oflag=append conv=notrunc
15968         fi
15969
15970         sleep_maxage
15971
15972         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
15973         echo "OST still has $((free_kb / 1024)) mbytes free"
15974 }
15975
15976 test_253() {
15977         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15978         remote_mds_nodsh && skip "remote MDS with nodsh"
15979         remote_mgs_nodsh && skip "remote MGS with nodsh"
15980
15981         local ostidx=0
15982         local rc=0
15983
15984         local ost_name=$($LFS osts |
15985                 sed -n 's/^'$ostidx': \(.*\)_UUID .*/\1/p')
15986         # on the mdt's osc
15987         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $ost_name)
15988         do_facet $SINGLEMDS $LCTL get_param -n \
15989                 osp.$mdtosc_proc1.reserved_mb_high ||
15990                 skip  "remote MDS does not support reserved_mb_high"
15991
15992         rm -rf $DIR/$tdir
15993         wait_mds_ost_sync
15994         wait_delete_completed
15995         mkdir $DIR/$tdir
15996
15997         local last_wm_h=$(do_facet $SINGLEMDS $LCTL get_param -n \
15998                         osp.$mdtosc_proc1.reserved_mb_high)
15999         local last_wm_l=$(do_facet $SINGLEMDS $LCTL get_param -n \
16000                         osp.$mdtosc_proc1.reserved_mb_low)
16001         echo "prev high watermark $last_wm_h, prev low watermark $last_wm_l"
16002
16003         if ! combined_mgs_mds ; then
16004                 mount_mgs_client
16005         fi
16006         create_pool $FSNAME.$TESTNAME || error "Pool creation failed"
16007         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $ost_name ||
16008                 error "Adding $ost_name to pool failed"
16009
16010         # Wait for client to see a OST at pool
16011         wait_update $HOSTNAME "$LCTL get_param -n
16012                 lov.$FSNAME-*.pools.$TESTNAME | sort -u |
16013                 grep $ost_name" "$ost_name""_UUID" $((TIMEOUT/2)) ||
16014                 error "Client can not see the pool"
16015         $SETSTRIPE $DIR/$tdir -i $ostidx -c 1 -p $FSNAME.$TESTNAME ||
16016                 error "Setstripe failed"
16017
16018         dd if=/dev/zero of=$DIR/$tdir/0 bs=1M count=10
16019         local blocks=$($LFS df $MOUNT | grep $ost_name | awk '{ print $4 }')
16020         echo "OST still has $((blocks/1024)) mbytes free"
16021
16022         local new_lwm=$((blocks/1024-10))
16023         do_facet $SINGLEMDS $LCTL set_param \
16024                         osp.$mdtosc_proc1.reserved_mb_high=$((new_lwm+5))
16025         do_facet $SINGLEMDS $LCTL set_param \
16026                         osp.$mdtosc_proc1.reserved_mb_low=$new_lwm
16027
16028         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
16029
16030         #First enospc could execute orphan deletion so repeat.
16031         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
16032
16033         local oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
16034                         osp.$mdtosc_proc1.prealloc_status)
16035         echo "prealloc_status $oa_status"
16036
16037         dd if=/dev/zero of=$DIR/$tdir/2 bs=1M count=1 &&
16038                 error "File creation should fail"
16039         #object allocation was stopped, but we still able to append files
16040         dd if=/dev/zero of=$DIR/$tdir/1 bs=1M seek=6 count=5 oflag=append ||
16041                 error "Append failed"
16042         rm -f $DIR/$tdir/1 $DIR/$tdir/0 $DIR/$tdir/r*
16043
16044         wait_delete_completed
16045
16046         sleep_maxage
16047
16048         for i in $(seq 10 12); do
16049                 dd if=/dev/zero of=$DIR/$tdir/$i bs=1M count=1 2>/dev/null ||
16050                         error "File creation failed after rm";
16051         done
16052
16053         oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
16054                         osp.$mdtosc_proc1.prealloc_status)
16055         echo "prealloc_status $oa_status"
16056
16057         if (( oa_status != 0 )); then
16058                 error "Object allocation still disable after rm"
16059         fi
16060         do_facet $SINGLEMDS $LCTL set_param \
16061                         osp.$mdtosc_proc1.reserved_mb_high=$last_wm_h
16062         do_facet $SINGLEMDS $LCTL set_param \
16063                         osp.$mdtosc_proc1.reserved_mb_low=$last_wm_l
16064
16065
16066         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $ost_name ||
16067                 error "Remove $ost_name from pool failed"
16068         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
16069                 error "Pool destroy fialed"
16070
16071         if ! combined_mgs_mds ; then
16072                 umount_mgs_client
16073         fi
16074 }
16075 run_test 253 "Check object allocation limit"
16076
16077 test_254() {
16078         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16079         remote_mds_nodsh && skip "remote MDS with nodsh"
16080         do_facet $SINGLEMDS $LCTL get_param -n mdd.$MDT0.changelog_size ||
16081                 skip "MDS does not support changelog_size"
16082
16083         local cl_user
16084         local MDT0=$(facet_svc $SINGLEMDS)
16085
16086         changelog_register || error "changelog_register failed"
16087
16088         changelog_clear 0 || error "changelog_clear failed"
16089
16090         local size1=$(do_facet $SINGLEMDS \
16091                       $LCTL get_param -n mdd.$MDT0.changelog_size)
16092         echo "Changelog size $size1"
16093
16094         rm -rf $DIR/$tdir
16095         $LFS mkdir -i 0 $DIR/$tdir
16096         # change something
16097         mkdir -p $DIR/$tdir/pics/2008/zachy
16098         touch $DIR/$tdir/pics/2008/zachy/timestamp
16099         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
16100         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
16101         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
16102         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
16103         rm $DIR/$tdir/pics/desktop.jpg
16104
16105         local size2=$(do_facet $SINGLEMDS \
16106                       $LCTL get_param -n mdd.$MDT0.changelog_size)
16107         echo "Changelog size after work $size2"
16108
16109         (( $size2 > $size1 )) ||
16110                 error "new Changelog size=$size2 less than old size=$size1"
16111 }
16112 run_test 254 "Check changelog size"
16113
16114 ladvise_no_type()
16115 {
16116         local type=$1
16117         local file=$2
16118
16119         lfs ladvise -a invalid $file 2>&1 | grep "Valid types" |
16120                 awk -F: '{print $2}' | grep $type > /dev/null
16121         if [ $? -ne 0 ]; then
16122                 return 0
16123         fi
16124         return 1
16125 }
16126
16127 ladvise_no_ioctl()
16128 {
16129         local file=$1
16130
16131         lfs ladvise -a willread $file > /dev/null 2>&1
16132         if [ $? -eq 0 ]; then
16133                 return 1
16134         fi
16135
16136         lfs ladvise -a willread $file 2>&1 |
16137                 grep "Inappropriate ioctl for device" > /dev/null
16138         if [ $? -eq 0 ]; then
16139                 return 0
16140         fi
16141         return 1
16142 }
16143
16144 percent() {
16145         bc <<<"scale=2; ($1 - $2) * 100 / $2"
16146 }
16147
16148 # run a random read IO workload
16149 # usage: random_read_iops <filename> <filesize> <iosize>
16150 random_read_iops() {
16151         local file=$1
16152         local fsize=$2
16153         local iosize=${3:-4096}
16154
16155         $READS -f $file -s $fsize -b $iosize -n $((fsize / iosize)) -t 60 |
16156                 sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##'
16157 }
16158
16159 drop_file_oss_cache() {
16160         local file="$1"
16161         local nodes="$2"
16162
16163         $LFS ladvise -a dontneed $file 2>/dev/null ||
16164                 do_nodes $nodes "echo 3 > /proc/sys/vm/drop_caches"
16165 }
16166
16167 ladvise_willread_performance()
16168 {
16169         local repeat=10
16170         local average_origin=0
16171         local average_cache=0
16172         local average_ladvise=0
16173
16174         for ((i = 1; i <= $repeat; i++)); do
16175                 echo "Iter $i/$repeat: reading without willread hint"
16176                 cancel_lru_locks osc
16177                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
16178                 local speed_origin=$(random_read_iops $DIR/$tfile $size)
16179                 echo "Iter $i/$repeat: uncached speed: $speed_origin"
16180                 average_origin=$(bc <<<"$average_origin + $speed_origin")
16181
16182                 cancel_lru_locks osc
16183                 local speed_cache=$(random_read_iops $DIR/$tfile $size)
16184                 echo "Iter $i/$repeat: OSS cache speed: $speed_cache"
16185                 average_cache=$(bc <<<"$average_cache + $speed_cache")
16186
16187                 cancel_lru_locks osc
16188                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
16189                 $LFS ladvise -a willread $DIR/$tfile || error "ladvise failed"
16190                 local speed_ladvise=$(random_read_iops $DIR/$tfile $size)
16191                 echo "Iter $i/$repeat: ladvise speed: $speed_ladvise"
16192                 average_ladvise=$(bc <<<"$average_ladvise + $speed_ladvise")
16193         done
16194         average_origin=$(bc <<<"scale=2; $average_origin / $repeat")
16195         average_cache=$(bc <<<"scale=2; $average_cache / $repeat")
16196         average_ladvise=$(bc <<<"scale=2; $average_ladvise / $repeat")
16197
16198         speedup_cache=$(percent $average_cache $average_origin)
16199         speedup_ladvise=$(percent $average_ladvise $average_origin)
16200
16201         echo "Average uncached read: $average_origin"
16202         echo "Average speedup with OSS cached read: " \
16203                 "$average_cache = +$speedup_cache%"
16204         echo "Average speedup with ladvise willread: " \
16205                 "$average_ladvise = +$speedup_ladvise%"
16206
16207         local lowest_speedup=20
16208         if [ ${average_cache%.*} -lt $lowest_speedup ]; then
16209                 echo "Speedup with OSS cached read less than $lowest_speedup%," \
16210                         "got $average_cache%. Skipping ladvise willread check."
16211                 return 0
16212         fi
16213
16214         # the test won't work on ZFS until it supports 'ladvise dontneed', but
16215         # it is still good to run until then to exercise 'ladvise willread'
16216         ! $LFS ladvise -a dontneed $DIR/$tfile &&
16217                 [ "$(facet_fstype ost1)" = "zfs" ] &&
16218                 echo "osd-zfs does not support dontneed or drop_caches" &&
16219                 return 0
16220
16221         lowest_speedup=$(bc <<<"scale=2; $average_cache / 2")
16222         [ ${average_ladvise%.*} -gt $lowest_speedup ] ||
16223                 error_not_in_vm "Speedup with willread is less than " \
16224                         "$lowest_speedup%, got $average_ladvise%"
16225 }
16226
16227 test_255a() {
16228         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
16229                 skip "lustre < 2.8.54 does not support ladvise "
16230         remote_ost_nodsh && skip "remote OST with nodsh"
16231
16232         lfs setstripe -c -1 -i 0 $DIR/$tfile || error "$tfile failed"
16233
16234         ladvise_no_type willread $DIR/$tfile &&
16235                 skip "willread ladvise is not supported"
16236
16237         ladvise_no_ioctl $DIR/$tfile &&
16238                 skip "ladvise ioctl is not supported"
16239
16240         local size_mb=100
16241         local size=$((size_mb * 1048576))
16242         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
16243                 error "dd to $DIR/$tfile failed"
16244
16245         lfs ladvise -a willread $DIR/$tfile ||
16246                 error "Ladvise failed with no range argument"
16247
16248         lfs ladvise -a willread -s 0 $DIR/$tfile ||
16249                 error "Ladvise failed with no -l or -e argument"
16250
16251         lfs ladvise -a willread -e 1 $DIR/$tfile ||
16252                 error "Ladvise failed with only -e argument"
16253
16254         lfs ladvise -a willread -l 1 $DIR/$tfile ||
16255                 error "Ladvise failed with only -l argument"
16256
16257         lfs ladvise -a willread -s 2 -e 1 $DIR/$tfile &&
16258                 error "End offset should not be smaller than start offset"
16259
16260         lfs ladvise -a willread -s 2 -e 2 $DIR/$tfile &&
16261                 error "End offset should not be equal to start offset"
16262
16263         lfs ladvise -a willread -s $size -l 1 $DIR/$tfile ||
16264                 error "Ladvise failed with overflowing -s argument"
16265
16266         lfs ladvise -a willread -s 1 -e $((size + 1)) $DIR/$tfile ||
16267                 error "Ladvise failed with overflowing -e argument"
16268
16269         lfs ladvise -a willread -s 1 -l $size $DIR/$tfile ||
16270                 error "Ladvise failed with overflowing -l argument"
16271
16272         lfs ladvise -a willread -l 1 -e 2 $DIR/$tfile &&
16273                 error "Ladvise succeeded with conflicting -l and -e arguments"
16274
16275         echo "Synchronous ladvise should wait"
16276         local delay=4
16277 #define OBD_FAIL_OST_LADVISE_PAUSE       0x237
16278         do_nodes $(comma_list $(osts_nodes)) \
16279                 $LCTL set_param fail_val=$delay fail_loc=0x237
16280
16281         local start_ts=$SECONDS
16282         lfs ladvise -a willread $DIR/$tfile ||
16283                 error "Ladvise failed with no range argument"
16284         local end_ts=$SECONDS
16285         local inteval_ts=$((end_ts - start_ts))
16286
16287         if [ $inteval_ts -lt $(($delay - 1)) ]; then
16288                 error "Synchronous advice didn't wait reply"
16289         fi
16290
16291         echo "Asynchronous ladvise shouldn't wait"
16292         local start_ts=$SECONDS
16293         lfs ladvise -a willread -b $DIR/$tfile ||
16294                 error "Ladvise failed with no range argument"
16295         local end_ts=$SECONDS
16296         local inteval_ts=$((end_ts - start_ts))
16297
16298         if [ $inteval_ts -gt $(($delay / 2)) ]; then
16299                 error "Asynchronous advice blocked"
16300         fi
16301
16302         do_nodes $(comma_list $(osts_nodes)) $LCTL set_param fail_loc=0
16303         ladvise_willread_performance
16304 }
16305 run_test 255a "check 'lfs ladvise -a willread'"
16306
16307 facet_meminfo() {
16308         local facet=$1
16309         local info=$2
16310
16311         do_facet $facet "cat /proc/meminfo | grep ^${info}:" | awk '{print $2}'
16312 }
16313
16314 test_255b() {
16315         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
16316                 skip "lustre < 2.8.54 does not support ladvise "
16317         remote_ost_nodsh && skip "remote OST with nodsh"
16318
16319         lfs setstripe -c 1 -i 0 $DIR/$tfile
16320
16321         ladvise_no_type dontneed $DIR/$tfile &&
16322                 skip "dontneed ladvise is not supported"
16323
16324         ladvise_no_ioctl $DIR/$tfile &&
16325                 skip "ladvise ioctl is not supported"
16326
16327         ! $LFS ladvise -a dontneed $DIR/$tfile &&
16328                 [ "$(facet_fstype ost1)" = "zfs" ] &&
16329                 skip "zfs-osd does not support 'ladvise dontneed'"
16330
16331         local size_mb=100
16332         local size=$((size_mb * 1048576))
16333         # In order to prevent disturbance of other processes, only check 3/4
16334         # of the memory usage
16335         local kibibytes=$((size_mb * 1024 * 3 / 4))
16336
16337         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
16338                 error "dd to $DIR/$tfile failed"
16339
16340         #force write to complete before dropping OST cache & checking memory
16341         sync
16342
16343         local total=$(facet_meminfo ost1 MemTotal)
16344         echo "Total memory: $total KiB"
16345
16346         do_facet ost1 "sync && echo 3 > /proc/sys/vm/drop_caches"
16347         local before_read=$(facet_meminfo ost1 Cached)
16348         echo "Cache used before read: $before_read KiB"
16349
16350         lfs ladvise -a willread $DIR/$tfile ||
16351                 error "Ladvise willread failed"
16352         local after_read=$(facet_meminfo ost1 Cached)
16353         echo "Cache used after read: $after_read KiB"
16354
16355         lfs ladvise -a dontneed $DIR/$tfile ||
16356                 error "Ladvise dontneed again failed"
16357         local no_read=$(facet_meminfo ost1 Cached)
16358         echo "Cache used after dontneed ladvise: $no_read KiB"
16359
16360         if [ $total -lt $((before_read + kibibytes)) ]; then
16361                 echo "Memory is too small, abort checking"
16362                 return 0
16363         fi
16364
16365         if [ $((before_read + kibibytes)) -gt $after_read ]; then
16366                 error "Ladvise willread should use more memory" \
16367                         "than $kibibytes KiB"
16368         fi
16369
16370         if [ $((no_read + kibibytes)) -gt $after_read ]; then
16371                 error "Ladvise dontneed should release more memory" \
16372                         "than $kibibytes KiB"
16373         fi
16374 }
16375 run_test 255b "check 'lfs ladvise -a dontneed'"
16376
16377 test_255c() {
16378         [ $(lustre_version_code ost1) -lt $(version_code 2.10.50) ] &&
16379                 skip "lustre < 2.10.53 does not support lockahead"
16380
16381         local count
16382         local new_count
16383         local difference
16384         local i
16385         local rc
16386
16387         test_mkdir -p $DIR/$tdir
16388         $SETSTRIPE -i 0 $DIR/$tdir
16389
16390         #test 10 returns only success/failure
16391         i=10
16392         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16393         rc=$?
16394         if [ $rc -eq 255 ]; then
16395                 error "Ladvise test${i} failed, ${rc}"
16396         fi
16397
16398         #test 11 counts lock enqueue requests, all others count new locks
16399         i=11
16400         count=$(do_facet ost1 \
16401                 $LCTL get_param -n ost.OSS.ost.stats)
16402         count=$(echo "$count" | grep ldlm_extent_enqueue | awk '{ print $2 }')
16403
16404         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16405         rc=$?
16406         if [ $rc -eq 255 ]; then
16407                 error "Ladvise test${i} failed, ${rc}"
16408         fi
16409
16410         new_count=$(do_facet ost1 \
16411                 $LCTL get_param -n ost.OSS.ost.stats)
16412         new_count=$(echo "$new_count" | grep ldlm_extent_enqueue | \
16413                    awk '{ print $2 }')
16414
16415         difference="$((new_count - count))"
16416         if [ $difference -ne $rc ]; then
16417                 error "Ladvise test${i}, bad enqueue count, returned " \
16418                       "${rc}, actual ${difference}"
16419         fi
16420
16421         for i in $(seq 12 21); do
16422                 # If we do not do this, we run the risk of having too many
16423                 # locks and starting lock cancellation while we are checking
16424                 # lock counts.
16425                 cancel_lru_locks osc
16426
16427                 count=$($LCTL get_param -n \
16428                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
16429
16430                 lockahead_test -d $DIR/$tdir -t $i -f $tfile
16431                 rc=$?
16432                 if [ $rc -eq 255 ]; then
16433                         error "Ladvise test ${i} failed, ${rc}"
16434                 fi
16435
16436                 new_count=$($LCTL get_param -n \
16437                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
16438                 difference="$((new_count - count))"
16439
16440                 # Test 15 output is divided by 100 to map down to valid return
16441                 if [ $i -eq 15 ]; then
16442                         rc="$((rc * 100))"
16443                 fi
16444
16445                 if [ $difference -ne $rc ]; then
16446                         error "Ladvise test ${i}, bad lock count, returned " \
16447                               "${rc}, actual ${difference}"
16448                 fi
16449         done
16450
16451         #test 22 returns only success/failure
16452         i=22
16453         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16454         rc=$?
16455         if [ $rc -eq 255 ]; then
16456                 error "Ladvise test${i} failed, ${rc}"
16457         fi
16458 }
16459 run_test 255c "suite of ladvise lockahead tests"
16460
16461 test_256() {
16462         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16463         remote_mds_nodsh && skip "remote MDS with nodsh"
16464         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
16465                 skip "ldiskfs only test"
16466         changelog_users $SINGLEMDS | grep "^cl" &&
16467                 skip "active changelog user"
16468
16469         local cl_user
16470         local cat_sl
16471         local mdt_dev
16472
16473         mdt_dev=$(mdsdevname 1)
16474         echo $mdt_dev
16475
16476         changelog_register || error "changelog_register failed"
16477
16478         rm -rf $DIR/$tdir
16479         mkdir -p $DIR/$tdir
16480
16481         changelog_clear 0 || error "changelog_clear failed"
16482
16483         # change something
16484         touch $DIR/$tdir/{1..10}
16485
16486         # stop the MDT
16487         stop $SINGLEMDS || error "Fail to stop MDT"
16488
16489         # remount the MDT
16490
16491         start $SINGLEMDS $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT"
16492
16493         #after mount new plainllog is used
16494         touch $DIR/$tdir/{11..19}
16495         local tmpfile=$(mktemp -u $tfile.XXXXXX)
16496         cat_sl=$(do_facet $SINGLEMDS "sync; \
16497                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
16498                  llog_reader $tmpfile | grep -c type=1064553b")
16499         do_facet $SINGLEMDS llog_reader $tmpfile
16500
16501         [ $cat_sl != 2 ] && error "Changelog catalog has $cat_sl != 2 slots"
16502
16503         changelog_clear 0 || error "changelog_clear failed"
16504
16505         cat_sl=$(do_facet $SINGLEMDS "sync; \
16506                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
16507                  llog_reader $tmpfile | grep -c type=1064553b; rm -f $tmpfile")
16508
16509         if (( cat_sl == 2 )); then
16510                 error "Empty plain llog was not deleted from changelog catalog"
16511         elif (( cat_sl != 1 )); then
16512                 error "Active plain llog shouldn't be deleted from catalog"
16513         fi
16514 }
16515 run_test 256 "Check llog delete for empty and not full state"
16516
16517 test_257() {
16518         remote_mds_nodsh && skip "remote MDS with nodsh"
16519         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
16520                 skip "Need MDS version at least 2.8.55"
16521
16522         test_mkdir $DIR/$tdir
16523
16524         setfattr -n trusted.name1 -v value1 $DIR/$tdir ||
16525                 error "setfattr -n trusted.name1=value1 $DIR/$tdir failed"
16526         stat $DIR/$tdir
16527
16528 #define OBD_FAIL_MDS_XATTR_REP                  0x161
16529         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
16530         local facet=mds$((mdtidx + 1))
16531         set_nodes_failloc $(facet_active_host $facet) 0x80000161
16532         getfattr -n trusted.name1 $DIR/$tdir 2> /dev/null
16533
16534         stop $facet || error "stop MDS failed"
16535         start $facet $(mdsdevname $((mdtidx + 1))) $MDS_MOUNT_OPTS ||
16536                 error "start MDS fail"
16537 }
16538 run_test 257 "xattr locks are not lost"
16539
16540 # Verify we take the i_mutex when security requires it
16541 test_258a() {
16542 #define OBD_FAIL_IMUTEX_SEC 0x141c
16543         $LCTL set_param fail_loc=0x141c
16544         touch $DIR/$tfile
16545         chmod u+s $DIR/$tfile
16546         chmod a+rwx $DIR/$tfile
16547         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
16548         RC=$?
16549         if [ $RC -ne 0 ]; then
16550                 error "error, failed to take i_mutex, rc=$?"
16551         fi
16552         rm -f $DIR/$tfile
16553 }
16554 run_test 258a
16555
16556 # Verify we do NOT take the i_mutex in the normal case
16557 test_258b() {
16558 #define OBD_FAIL_IMUTEX_NOSEC 0x141d
16559         $LCTL set_param fail_loc=0x141d
16560         touch $DIR/$tfile
16561         chmod a+rwx $DIR
16562         chmod a+rw $DIR/$tfile
16563         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
16564         RC=$?
16565         if [ $RC -ne 0 ]; then
16566                 error "error, took i_mutex unnecessarily, rc=$?"
16567         fi
16568         rm -f $DIR/$tfile
16569
16570 }
16571 run_test 258b "verify i_mutex security behavior"
16572
16573 test_259() {
16574         local file=$DIR/$tfile
16575         local before
16576         local after
16577
16578         [ "$(facet_fstype mds1)" != "ldiskfs" ] &&
16579                 skip "ldiskfs only test" && return
16580
16581         stack_trap "rm -f $file" EXIT
16582
16583         wait_delete_completed
16584         before=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16585         echo "before: $before"
16586
16587         $LFS setstripe -i 0 -c 1 $file
16588         dd if=/dev/zero of=$file bs=1M count=10 || error "couldn't write"
16589         sync_all_data
16590         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16591         echo "after write: $after"
16592
16593 #define OBD_FAIL_OSD_FAIL_AT_TRUNCATE          0x2301
16594         do_facet ost1 $LCTL set_param fail_loc=0x2301
16595         $TRUNCATE $file 0
16596         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16597         echo "after truncate: $after"
16598
16599         stop ost1
16600         do_facet ost1 $LCTL set_param fail_loc=0
16601         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
16602         sleep 2
16603         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16604         echo "after restart: $after"
16605         [ $((after - before)) -ge $(fs_log_size ost1) ] &&
16606                 error "missing truncate?"
16607
16608         return 0
16609 }
16610 run_test 259 "crash at delayed truncate"
16611
16612 test_260() {
16613 #define OBD_FAIL_MDC_CLOSE               0x806
16614         $LCTL set_param fail_loc=0x80000806
16615         touch $DIR/$tfile
16616
16617 }
16618 run_test 260 "Check mdc_close fail"
16619
16620 ### Data-on-MDT sanity tests ###
16621 test_270a() {
16622         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16623                 skip "Need MDS version at least 2.10.55"
16624
16625         # create DoM file
16626         local dom=$DIR/$tdir/dom_file
16627         local tmp=$DIR/$tdir/tmp_file
16628
16629         mkdir -p $DIR/$tdir
16630
16631         # basic checks for DoM component creation
16632         $LFS setstripe -E 1024K -E 1024K -L mdt $dom 2>/dev/null &&
16633                 error "Can set MDT layout to non-first entry"
16634
16635         $LFS setstripe -E 1024K -L mdt -E 1024K -L mdt $dom 2>/dev/null &&
16636                 error "Can define multiple entries as MDT layout"
16637
16638         $LFS setstripe -E 1M -L mdt $dom ||
16639                 error "Can't create DoM layout"
16640
16641         [ $($LFS getstripe -L $dom) == "mdt" ] || error "bad pattern"
16642         [ $($LFS getstripe -c $dom) == 0 ] || error "bad stripe count"
16643         [ $($LFS getstripe -S $dom) == 1048576 ] || error "bad stripe size"
16644
16645         local mdtidx=$($LFS getstripe -m $dom)
16646         local mdtname=MDT$(printf %04x $mdtidx)
16647         local facet=mds$((mdtidx + 1))
16648         local space_check=1
16649
16650         # Skip free space checks with ZFS
16651         if [ "$(facet_fstype $facet)" == "zfs" ]; then
16652                 space_check=0
16653         fi
16654
16655         # write
16656         sync
16657         local mdtfree1=$(do_facet $facet \
16658                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16659         dd if=/dev/urandom of=$tmp bs=1024 count=100
16660         # check also direct IO along write
16661         dd if=$tmp of=$dom bs=102400 count=1 oflag=direct
16662         sync
16663         cmp $tmp $dom || error "file data is different"
16664         [ $(stat -c%s $dom) == 102400 ] || error "bad size after write"
16665         if [ $space_check == 1 ]; then
16666                 local mdtfree2=$(do_facet $facet \
16667                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16668                 [ $(($mdtfree1 - $mdtfree2)) -ge 102 ] ||
16669                         error "MDT free space is wrong after write"
16670         fi
16671
16672         # truncate
16673         $TRUNCATE $dom 10000
16674         [ $(stat -c%s $dom) == 10000 ] || error "bad size after truncate"
16675         if [ $space_check == 1 ]; then
16676                 mdtfree1=$(do_facet $facet \
16677                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16678                 [ $(($mdtfree1 - $mdtfree2)) -ge 92 ] ||
16679                         error "MDT free space is wrong after truncate"
16680         fi
16681
16682         # append
16683         cat $tmp >> $dom
16684         sync
16685         [ $(stat -c%s $dom) == 112400 ] || error "bad size after append"
16686         if [ $space_check == 1 ]; then
16687                 mdtfree2=$(do_facet $facet \
16688                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16689                 [ $(($mdtfree1 - $mdtfree2)) -ge 102 ] ||
16690                         error "MDT free space is wrong after append"
16691         fi
16692
16693         # delete
16694         rm $dom
16695         if [ $space_check == 1 ]; then
16696                 mdtfree1=$(do_facet $facet \
16697                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16698                 [ $(($mdtfree1 - $mdtfree2)) -ge 112 ] ||
16699                         error "MDT free space is wrong after removal"
16700         fi
16701
16702         # combined striping
16703         $LFS setstripe -E 1024K -L mdt -E EOF $dom ||
16704                 error "Can't create DoM + OST striping"
16705
16706         dd if=/dev/urandom of=$tmp bs=1024 count=2000
16707         # check also direct IO along write
16708         dd if=$tmp of=$dom bs=102400 count=20 oflag=direct
16709         sync
16710         cmp $tmp $dom || error "file data is different"
16711         [ $(stat -c%s $dom) == 2048000 ] || error "bad size after write"
16712         rm $dom
16713         rm $tmp
16714
16715         return 0
16716 }
16717 run_test 270a "DoM: basic functionality tests"
16718
16719 test_270b() {
16720         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16721                 skip "Need MDS version at least 2.10.55"
16722
16723         local dom=$DIR/$tdir/dom_file
16724         local max_size=1048576
16725
16726         mkdir -p $DIR/$tdir
16727         $LFS setstripe -E $max_size -L mdt $dom
16728
16729         # truncate over the limit
16730         $TRUNCATE $dom $(($max_size + 1)) &&
16731                 error "successful truncate over the maximum size"
16732         # write over the limit
16733         dd if=/dev/zero of=$dom bs=$max_size seek=1 count=1 &&
16734                 error "successful write over the maximum size"
16735         # append over the limit
16736         dd if=/dev/zero of=$dom bs=$(($max_size - 3)) count=1
16737         echo "12345" >> $dom && error "successful append over the maximum size"
16738         rm $dom
16739
16740         return 0
16741 }
16742 run_test 270b "DoM: maximum size overflow checks for DoM-only file"
16743
16744 test_270c() {
16745         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16746                 skip "Need MDS version at least 2.10.55"
16747
16748         mkdir -p $DIR/$tdir
16749         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
16750
16751         # check files inherit DoM EA
16752         touch $DIR/$tdir/first
16753         [ $($GETSTRIPE -L $DIR/$tdir/first) == "mdt" ] ||
16754                 error "bad pattern"
16755         [ $($LFS getstripe -c $DIR/$tdir/first) == 0 ] ||
16756                 error "bad stripe count"
16757         [ $($LFS getstripe -S $DIR/$tdir/first) == 1048576 ] ||
16758                 error "bad stripe size"
16759
16760         # check directory inherits DoM EA and uses it as default
16761         mkdir $DIR/$tdir/subdir
16762         touch $DIR/$tdir/subdir/second
16763         [ $($LFS getstripe -L $DIR/$tdir/subdir/second) == "mdt" ] ||
16764                 error "bad pattern in sub-directory"
16765         [ $($LFS getstripe -c $DIR/$tdir/subdir/second) == 0 ] ||
16766                 error "bad stripe count in sub-directory"
16767         [ $($LFS getstripe -S $DIR/$tdir/subdir/second) == 1048576 ] ||
16768                 error "bad stripe size in sub-directory"
16769         return 0
16770 }
16771 run_test 270c "DoM: DoM EA inheritance tests"
16772
16773 test_270d() {
16774         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16775                 skip "Need MDS version at least 2.10.55"
16776
16777         mkdir -p $DIR/$tdir
16778         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
16779
16780         # inherit default DoM striping
16781         mkdir $DIR/$tdir/subdir
16782         touch $DIR/$tdir/subdir/f1
16783
16784         # change default directory striping
16785         $LFS setstripe -c 1 $DIR/$tdir/subdir
16786         touch $DIR/$tdir/subdir/f2
16787         [ $($LFS getstripe -c $DIR/$tdir/subdir/f2) == 1 ] ||
16788                 error "wrong default striping in file 2"
16789         [ $($LFS getstripe -L $DIR/$tdir/subdir/f2) == "raid0" ] ||
16790                 error "bad pattern in file 2"
16791         return 0
16792 }
16793 run_test 270d "DoM: change striping from DoM to RAID0"
16794
16795 test_270e() {
16796         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16797                 skip "Need MDS version at least 2.10.55"
16798
16799         mkdir -p $DIR/$tdir/dom
16800         mkdir -p $DIR/$tdir/norm
16801         DOMFILES=20
16802         NORMFILES=10
16803         $LFS setstripe -E 1M -L mdt $DIR/$tdir/dom
16804         $LFS setstripe -i 0 -S 2M $DIR/$tdir/norm
16805
16806         createmany -o $DIR/$tdir/dom/dom- $DOMFILES
16807         createmany -o $DIR/$tdir/norm/norm- $NORMFILES
16808
16809         # find DoM files by layout
16810         NUM=$($LFS find -L mdt -type f $DIR/$tdir 2>/dev/null | wc -l)
16811         [ $NUM -eq  $DOMFILES ] ||
16812                 error "lfs find -L: found $NUM, expected $DOMFILES"
16813         echo "Test 1: lfs find 20 DOM files by layout: OK"
16814
16815         # there should be 1 dir with default DOM striping
16816         NUM=$($LFS find -L mdt -type d $DIR/$tdir 2>/dev/null | wc -l)
16817         [ $NUM -eq  1 ] ||
16818                 error "lfs find -L: found $NUM, expected 1 dir"
16819         echo "Test 2: lfs find 1 DOM dir by layout: OK"
16820
16821         # find DoM files by stripe size
16822         NUM=$($LFS find -S -1200K -type f $DIR/$tdir 2>/dev/null | wc -l)
16823         [ $NUM -eq  $DOMFILES ] ||
16824                 error "lfs find -S: found $NUM, expected $DOMFILES"
16825         echo "Test 4: lfs find 20 DOM files by stripe size: OK"
16826
16827         # find files by stripe offset except DoM files
16828         NUM=$($LFS find -i 0 -type f $DIR/$tdir 2>/dev/null | wc -l)
16829         [ $NUM -eq  $NORMFILES ] ||
16830                 error "lfs find -i: found $NUM, expected $NORMFILES"
16831         echo "Test 5: lfs find no DOM files by stripe index: OK"
16832         return 0
16833 }
16834 run_test 270e "DoM: lfs find with DoM files test"
16835
16836 test_270f() {
16837         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16838                 skip "Need MDS version at least 2.10.55"
16839
16840         local mdtname=${FSNAME}-MDT0000-mdtlov
16841         local dom=$DIR/$tdir/dom_file
16842         local dom_limit_saved=$(do_facet mds1 $LCTL get_param -n \
16843                                                 lod.$mdtname.dom_stripesize)
16844         local dom_limit=131072
16845
16846         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=$dom_limit
16847         local dom_current=$(do_facet mds1 $LCTL get_param -n \
16848                                                 lod.$mdtname.dom_stripesize)
16849         [ ${dom_limit} -eq ${dom_current} ] ||
16850                 error "Cannot change per-MDT DoM stripe limit to $dom_limit"
16851
16852         $LFS mkdir -i 0 -c 1 $DIR/$tdir
16853         $LFS setstripe -d $DIR/$tdir
16854         $LFS setstripe -E $dom_limit -L mdt $DIR/$tdir ||
16855                 error "Can't set directory default striping"
16856
16857         # exceed maximum stripe size
16858         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
16859                 error "Can't create file with $((dom_limit * 2)) DoM stripe"
16860         [ $($LFS getstripe -S $dom) -eq $((dom_limit * 2)) ] &&
16861                 error "Able to create DoM component size more than LOD limit"
16862
16863         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=0
16864         dom_current=$(do_facet mds1 $LCTL get_param -n \
16865                                                 lod.$mdtname.dom_stripesize)
16866         [ 0 -eq ${dom_current} ] ||
16867                 error "Can't set zero DoM stripe limit"
16868         rm $dom
16869
16870         # attempt to create DoM file on server with disabled DoM should
16871         # remove DoM entry from layout and be succeed
16872         $LFS setstripe -E $dom_limit -L mdt -E -1 $dom ||
16873                 error "Can't create DoM file (DoM is disabled)"
16874         [ $($LFS getstripe -L $dom) == "mdt" ] &&
16875                 error "File has DoM component while DoM is disabled"
16876         rm $dom
16877
16878         # attempt to create DoM file with only DoM stripe should return error
16879         $LFS setstripe -E $dom_limit -L mdt $dom &&
16880                 error "Able to create DoM-only file while DoM is disabled"
16881
16882         # too low values to be aligned with smallest stripe size 64K
16883         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=30000
16884         dom_current=$(do_facet mds1 $LCTL get_param -n \
16885                                                 lod.$mdtname.dom_stripesize)
16886         [ 30000 -eq ${dom_current} ] &&
16887                 error "Can set too small DoM stripe limit"
16888
16889         # 64K is a minimal stripe size in Lustre, expect limit of that size
16890         [ 65536 -eq ${dom_current} ] ||
16891                 error "Limit is not set to 64K but ${dom_current}"
16892
16893         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=2147483648
16894         dom_current=$(do_facet mds1 $LCTL get_param -n \
16895                                                 lod.$mdtname.dom_stripesize)
16896         echo $dom_current
16897         [ 2147483648 -eq ${dom_current} ] &&
16898                 error "Can set too large DoM stripe limit"
16899
16900         do_facet mds1 $LCTL set_param -n \
16901                                 lod.$mdtname.dom_stripesize=$((dom_limit * 2))
16902         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
16903                 error "Can't create DoM component size after limit change"
16904         do_facet mds1 $LCTL set_param -n \
16905                                 lod.$mdtname.dom_stripesize=$((dom_limit / 2))
16906         $LFS setstripe -E $dom_limit -L mdt ${dom}_big ||
16907                 error "Can't create DoM file after limit decrease"
16908         [ $($LFS getstripe -S ${dom}_big) -eq $((dom_limit / 2)) ] ||
16909                 error "Can create big DoM component after limit decrease"
16910         touch ${dom}_def ||
16911                 error "Can't create file with old default layout"
16912
16913         do_facet mds1 $LCTL set_param -n lod.*.dom_stripesize=$dom_limit_saved
16914         return 0
16915 }
16916 run_test 270f "DoM: maximum DoM stripe size checks"
16917
16918 test_271a() {
16919         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16920                 skip "Need MDS version at least 2.10.55"
16921
16922         local dom=$DIR/$tdir/dom
16923
16924         mkdir -p $DIR/$tdir
16925
16926         $LFS setstripe -E 1024K -L mdt $dom
16927
16928         lctl set_param -n mdc.*.stats=clear
16929         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
16930         cat $dom > /dev/null
16931         local reads=$(lctl get_param -n mdc.*.stats |
16932                         awk '/ost_read/ {print $2}')
16933         [ -z $reads ] || error "Unexpected $reads READ RPCs"
16934         ls $dom
16935         rm -f $dom
16936 }
16937 run_test 271a "DoM: data is cached for read after write"
16938
16939 test_271b() {
16940         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16941                 skip "Need MDS version at least 2.10.55"
16942
16943         local dom=$DIR/$tdir/dom
16944
16945         mkdir -p $DIR/$tdir
16946
16947         $LFS setstripe -E 1024K -L mdt -E EOF $dom
16948
16949         lctl set_param -n mdc.*.stats=clear
16950         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
16951         cancel_lru_locks mdc
16952         $CHECKSTAT -t file -s 4096 $dom || error "stat #1 fails"
16953         # second stat to check size is cached on client
16954         $CHECKSTAT -t file -s 4096 $dom || error "stat #2 fails"
16955         local gls=$(lctl get_param -n mdc.*.stats |
16956                         awk '/ldlm_glimpse/ {print $2}')
16957         [ -z $gls ] || error "Unexpected $gls glimpse RPCs"
16958         rm -f $dom
16959 }
16960 run_test 271b "DoM: no glimpse RPC for stat (DoM only file)"
16961
16962 test_271ba() {
16963         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16964                 skip "Need MDS version at least 2.10.55"
16965
16966         local dom=$DIR/$tdir/dom
16967
16968         mkdir -p $DIR/$tdir
16969
16970         $LFS setstripe -E 1024K -L mdt -E EOF $dom
16971
16972         lctl set_param -n mdc.*.stats=clear
16973         lctl set_param -n osc.*.stats=clear
16974         dd if=/dev/zero of=$dom bs=2048K count=1 || return 1
16975         cancel_lru_locks mdc
16976         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
16977         # second stat to check size is cached on client
16978         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
16979         local gls=$(lctl get_param -n mdc.*.stats |
16980                         awk '/ldlm_glimpse/ {print $2}')
16981         [ -z $gls ] || error "Unexpected $gls glimpse RPCs"
16982         local gls=$(lctl get_param -n osc.*.stats |
16983                         awk '/ldlm_glimpse/ {print $2}')
16984         [ -z $gls ] || error "Unexpected $gls OSC glimpse RPCs"
16985         rm -f $dom
16986 }
16987 run_test 271ba "DoM: no glimpse RPC for stat (combined file)"
16988
16989 test_271c() {
16990         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16991                 skip "Need MDS version at least 2.10.55"
16992
16993         local dom=$DIR/$tdir/dom
16994
16995         mkdir -p $DIR/$tdir
16996
16997         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
16998
16999         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
17000         local facet=mds$((mdtidx + 1))
17001
17002         cancel_lru_locks mdc
17003         do_facet $facet lctl set_param -n mdt.*.dom_lock=0
17004         createmany -o $dom 1000
17005         lctl set_param -n mdc.*.stats=clear
17006         smalliomany -w $dom 1000 200
17007         lctl get_param -n mdc.*.stats
17008         local enq=$(lctl get_param -n mdc.*.stats |
17009                         awk '/ldlm_ibits_enqueue/ {print $2}')
17010         # Each file has 1 open, 1 IO enqueues, total 2000
17011         # but now we have also +1 getxattr for security.capability, total 3000
17012         [ $enq -ge 2000 ] || error "Too few enqueues $enq, expected > 2000"
17013         unlinkmany $dom 1000
17014
17015         cancel_lru_locks mdc
17016         do_facet $facet lctl set_param -n mdt.*.dom_lock=1
17017         createmany -o $dom 1000
17018         lctl set_param -n mdc.*.stats=clear
17019         smalliomany -w $dom 1000 200
17020         lctl get_param -n mdc.*.stats
17021         local enq_2=$(lctl get_param -n mdc.*.stats |
17022                         awk '/ldlm_ibits_enqueue/ {print $2}')
17023         # Expect to see reduced amount of RPCs by 1000 due to single enqueue
17024         # for OPEN and IO lock.
17025         [ $((enq - enq_2)) -ge 1000 ] ||
17026                 error "Too many enqueues $enq_2, expected about $((enq - 1000))"
17027         unlinkmany $dom 1000
17028         return 0
17029 }
17030 run_test 271c "DoM: IO lock at open saves enqueue RPCs"
17031
17032 cleanup_271def_tests() {
17033         trap 0
17034         rm -f $1
17035 }
17036
17037 test_271d() {
17038         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.57) ] &&
17039                 skip "Need MDS version at least 2.10.57" && return
17040
17041         local dom=$DIR/$tdir/dom
17042         local tmp=$TMP/$tfile
17043         trap "cleanup_271def_tests $tmp" EXIT
17044
17045         mkdir -p $DIR/$tdir
17046
17047         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17048
17049         local mdtidx=$($GETSTRIPE -M $DIR/$tdir)
17050         local facet=mds$((mdtidx + 1))
17051
17052         cancel_lru_locks mdc
17053         dd if=/dev/urandom of=$tmp bs=1000 count=1
17054         dd if=$tmp of=$dom bs=1000 count=1
17055         cancel_lru_locks mdc
17056
17057         cat /etc/hosts >> $tmp
17058         lctl set_param -n mdc.*.stats=clear
17059
17060         # append data to the same file it should update local page
17061         echo "Append to the same page"
17062         cat /etc/hosts >> $dom
17063         local num=$(lctl get_param -n mdc.*.stats |
17064                 awk '/ost_read/ {print $2}')
17065         local ra=$(lctl get_param -n mdc.*.stats |
17066                 awk '/req_active/ {print $2}')
17067         local rw=$(lctl get_param -n mdc.*.stats |
17068                 awk '/req_waittime/ {print $2}')
17069
17070         [ -z $num ] || error "$num READ RPC occured"
17071         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17072         echo "... DONE"
17073
17074         # compare content
17075         cmp $tmp $dom || error "file miscompare"
17076
17077         cancel_lru_locks mdc
17078         lctl set_param -n mdc.*.stats=clear
17079
17080         echo "Open and read file"
17081         cat $dom > /dev/null
17082         local num=$(lctl get_param -n mdc.*.stats |
17083                 awk '/ost_read/ {print $2}')
17084         local ra=$(lctl get_param -n mdc.*.stats |
17085                 awk '/req_active/ {print $2}')
17086         local rw=$(lctl get_param -n mdc.*.stats |
17087                 awk '/req_waittime/ {print $2}')
17088
17089         [ -z $num ] || error "$num READ RPC occured"
17090         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17091         echo "... DONE"
17092
17093         # compare content
17094         cmp $tmp $dom || error "file miscompare"
17095
17096         return 0
17097 }
17098 run_test 271d "DoM: read on open (1K file in reply buffer)"
17099
17100 test_271e() {
17101         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.57) ] &&
17102                 skip "Need MDS version at least 2.10.57" && return
17103
17104         local dom=$DIR/$tdir/dom
17105         local tmp=$TMP/${tfile}.data
17106         trap "cleanup_271def_tests $tmp" EXIT
17107
17108         mkdir -p $DIR/$tdir
17109
17110         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17111
17112         local mdtidx=$($GETSTRIPE -M $DIR/$tdir)
17113         local facet=mds$((mdtidx + 1))
17114
17115         cancel_lru_locks mdc
17116         dd if=/dev/urandom of=$tmp bs=30K count=1
17117         dd if=$tmp of=$dom bs=30K count=1
17118         cancel_lru_locks mdc
17119         cat /etc/hosts >> $tmp
17120         lctl set_param -n mdc.*.stats=clear
17121
17122         echo "Append to the same page"
17123         cat /etc/hosts >> $dom
17124
17125         local num=$(lctl get_param -n mdc.*.stats | \
17126                 awk '/ost_read/ {print $2}')
17127         local ra=$(lctl get_param -n mdc.*.stats | \
17128                 awk '/req_active/ {print $2}')
17129         local rw=$(lctl get_param -n mdc.*.stats | \
17130                 awk '/req_waittime/ {print $2}')
17131
17132         [ -z $num ] || error "$num READ RPC occured"
17133         # Reply buffer can be adjusted for larger buffer by resend
17134         echo "... DONE with $((ra - rw)) resends"
17135
17136         # compare content
17137         cmp $tmp $dom || error "file miscompare"
17138
17139         cancel_lru_locks mdc
17140         lctl set_param -n mdc.*.stats=clear
17141
17142         echo "Open and read file"
17143         cat $dom > /dev/null
17144         local num=$(lctl get_param -n mdc.*.stats | \
17145                 awk '/ost_read/ {print $2}')
17146         local ra=$(lctl get_param -n mdc.*.stats | \
17147                 awk '/req_active/ {print $2}')
17148         local rw=$(lctl get_param -n mdc.*.stats | \
17149                 awk '/req_waittime/ {print $2}')
17150
17151         [ -z $num ] || error "$num READ RPC occured"
17152         # Reply buffer can be adjusted for larger buffer by resend
17153         echo "... DONE with $((ra - rw)) resends"
17154
17155         # compare content
17156         cmp $tmp $dom || error "file miscompare"
17157
17158         return 0
17159 }
17160 run_test 271e "DoM: read on open (30K file with reply buffer adjusting)"
17161
17162 test_271f() {
17163         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.57) ] &&
17164                 skip "Need MDS version at least 2.10.57" && return
17165
17166         local dom=$DIR/$tdir/dom
17167         local tmp=$TMP/$tfile
17168         trap "cleanup_271def_tests $tmp" EXIT
17169
17170         mkdir -p $DIR/$tdir
17171
17172         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17173
17174         local mdtidx=$($GETSTRIPE -M $DIR/$tdir)
17175         local facet=mds$((mdtidx + 1))
17176
17177         cancel_lru_locks mdc
17178         dd if=/dev/urandom of=$tmp bs=200000 count=1
17179         dd if=$tmp of=$dom bs=200000 count=1
17180         cancel_lru_locks mdc
17181         cat /etc/hosts >> $tmp
17182         lctl set_param -n mdc.*.stats=clear
17183
17184         echo "Append to the same page"
17185         cat /etc/hosts >> $dom
17186         local num=$(lctl get_param -n mdc.*.stats | \
17187                 awk '/ost_read/ {print $2}')
17188         local ra=$(lctl get_param -n mdc.*.stats | \
17189                 awk '/req_active/ {print $2}')
17190         local rw=$(lctl get_param -n mdc.*.stats | \
17191                 awk '/req_waittime/ {print $2}')
17192
17193         [ -z $num ] || error "$num READ RPC occured"
17194         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17195         echo "... DONE"
17196
17197         # compare content
17198         cmp $tmp $dom || error "file miscompare"
17199
17200         cancel_lru_locks mdc
17201         lctl set_param -n mdc.*.stats=clear
17202
17203         echo "Open and read file"
17204         cat $dom > /dev/null
17205         local num=$(lctl get_param -n mdc.*.stats | \
17206                 awk '/ost_read/ {print $2}')
17207         local ra=$(lctl get_param -n mdc.*.stats | \
17208                 awk '/req_active/ {print $2}')
17209         local rw=$(lctl get_param -n mdc.*.stats | \
17210                 awk '/req_waittime/ {print $2}')
17211
17212         [ $num -eq 1 ] || error "expect 1 READ RPC, $num occured"
17213         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17214         echo "... DONE"
17215
17216         # compare content
17217         cmp $tmp $dom || error "file miscompare"
17218
17219         return 0
17220 }
17221 run_test 271f "DoM: read on open (200K file and read tail)"
17222
17223 test_275() {
17224         remote_ost_nodsh && skip "remote OST with nodsh"
17225         [ $(lustre_version_code ost1) -lt $(version_code 2.10.57) ] &&
17226                 skip "Need OST version >= 2.10.57"
17227
17228         local file=$DIR/$tfile
17229         local oss
17230
17231         oss=$(comma_list $(osts_nodes))
17232
17233         dd if=/dev/urandom of=$file bs=1M count=2 ||
17234                 error "failed to create a file"
17235         cancel_lru_locks osc
17236
17237         #lock 1
17238         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
17239                 error "failed to read a file"
17240
17241 #define OBD_FAIL_LDLM_PAUSE_CANCEL2      0x31f
17242         $LCTL set_param fail_loc=0x8000031f
17243
17244         cancel_lru_locks osc &
17245         sleep 1
17246
17247 #define OBD_FAIL_LDLM_PROLONG_PAUSE      0x32b
17248         do_nodes $oss $LCTL set_param fail_loc=0x8000032b
17249         #IO takes another lock, but matches the PENDING one
17250         #and places it to the IO RPC
17251         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
17252                 error "failed to read a file with PENDING lock"
17253 }
17254 run_test 275 "Read on a canceled duplicate lock"
17255
17256 test_276() {
17257         remote_ost_nodsh && skip "remote OST with nodsh"
17258         local pid
17259
17260         do_facet ost1 "(while true; do \
17261                 $LCTL get_param obdfilter.*.filesfree > /dev/null 2>&1; \
17262                 done) & pid=\\\$!; echo \\\$pid > $TMP/sanity_276_pid" &
17263         pid=$!
17264
17265         for LOOP in $(seq 20); do
17266                 stop ost1
17267                 start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
17268         done
17269         kill -9 $pid
17270         do_facet ost1 "pid=\\\$(cat $TMP/sanity_276_pid); kill -9 \\\$pid; \
17271                 rm $TMP/sanity_276_pid"
17272 }
17273 run_test 276 "Race between mount and obd_statfs"
17274
17275 cleanup_test_300() {
17276         trap 0
17277         umask $SAVE_UMASK
17278 }
17279 test_striped_dir() {
17280         local mdt_index=$1
17281         local stripe_count
17282         local stripe_index
17283
17284         mkdir -p $DIR/$tdir
17285
17286         SAVE_UMASK=$(umask)
17287         trap cleanup_test_300 RETURN EXIT
17288
17289         $LFS setdirstripe -i $mdt_index -c 2 -H all_char -o 755 \
17290                                                 $DIR/$tdir/striped_dir ||
17291                 error "set striped dir error"
17292
17293         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
17294         [ "$mode" = "755" ] || error "expect 755 got $mode"
17295
17296         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
17297                 error "getdirstripe failed"
17298         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
17299         if [ "$stripe_count" != "2" ]; then
17300                 error "1:stripe_count is $stripe_count, expect 2"
17301         fi
17302         stripe_count=$($LFS getdirstripe -T $DIR/$tdir/striped_dir)
17303         if [ "$stripe_count" != "2" ]; then
17304                 error "2:stripe_count is $stripe_count, expect 2"
17305         fi
17306
17307         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
17308         if [ "$stripe_index" != "$mdt_index" ]; then
17309                 error "stripe_index is $stripe_index, expect $mdt_index"
17310         fi
17311
17312         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
17313                 error "nlink error after create striped dir"
17314
17315         mkdir $DIR/$tdir/striped_dir/a
17316         mkdir $DIR/$tdir/striped_dir/b
17317
17318         stat $DIR/$tdir/striped_dir/a ||
17319                 error "create dir under striped dir failed"
17320         stat $DIR/$tdir/striped_dir/b ||
17321                 error "create dir under striped dir failed"
17322
17323         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
17324                 error "nlink error after mkdir"
17325
17326         rmdir $DIR/$tdir/striped_dir/a
17327         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
17328                 error "nlink error after rmdir"
17329
17330         rmdir $DIR/$tdir/striped_dir/b
17331         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
17332                 error "nlink error after rmdir"
17333
17334         chattr +i $DIR/$tdir/striped_dir
17335         createmany -o $DIR/$tdir/striped_dir/f 10 &&
17336                 error "immutable flags not working under striped dir!"
17337         chattr -i $DIR/$tdir/striped_dir
17338
17339         rmdir $DIR/$tdir/striped_dir ||
17340                 error "rmdir striped dir error"
17341
17342         cleanup_test_300
17343
17344         true
17345 }
17346
17347 test_300a() {
17348         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
17349                 skip "skipped for lustre < 2.7.0"
17350         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17351         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17352
17353         test_striped_dir 0 || error "failed on striped dir on MDT0"
17354         test_striped_dir 1 || error "failed on striped dir on MDT0"
17355 }
17356 run_test 300a "basic striped dir sanity test"
17357
17358 test_300b() {
17359         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
17360                 skip "skipped for lustre < 2.7.0"
17361         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17362         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17363
17364         local i
17365         local mtime1
17366         local mtime2
17367         local mtime3
17368
17369         test_mkdir $DIR/$tdir || error "mkdir fail"
17370         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17371                 error "set striped dir error"
17372         for i in {0..9}; do
17373                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
17374                 sleep 1
17375                 touch $DIR/$tdir/striped_dir/file_$i || error "touch error $i"
17376                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
17377                 [ $mtime1 -eq $mtime2 ] && error "mtime unchanged after create"
17378                 sleep 1
17379                 rm -f $DIR/$tdir/striped_dir/file_$i || error "unlink error $i"
17380                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
17381                 [ $mtime2 -eq $mtime3 ] && error "mtime unchanged after unlink"
17382         done
17383         true
17384 }
17385 run_test 300b "check ctime/mtime for striped dir"
17386
17387 test_300c() {
17388         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
17389                 skip "skipped for lustre < 2.7.0"
17390         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17391         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17392
17393         local file_count
17394
17395         mkdir -p $DIR/$tdir
17396         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
17397                 error "set striped dir error"
17398
17399         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
17400                 error "chown striped dir failed"
17401
17402         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
17403                 error "create 5k files failed"
17404
17405         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
17406
17407         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
17408
17409         rm -rf $DIR/$tdir
17410 }
17411 run_test 300c "chown && check ls under striped directory"
17412
17413 test_300d() {
17414         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
17415                 skip "skipped for lustre < 2.7.0"
17416         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17417         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17418
17419         local stripe_count
17420         local file
17421
17422         mkdir -p $DIR/$tdir
17423         $SETSTRIPE -c 2 $DIR/$tdir
17424
17425         #local striped directory
17426         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17427                 error "set striped dir error"
17428         createmany -o $DIR/$tdir/striped_dir/f 10 ||
17429                 error "create 10 files failed"
17430
17431         #remote striped directory
17432         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
17433                 error "set striped dir error"
17434         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
17435                 error "create 10 files failed"
17436
17437         for file in $(find $DIR/$tdir); do
17438                 stripe_count=$($LFS getstripe -c $file)
17439                 [ $stripe_count -eq 2 ] ||
17440                         error "wrong stripe $stripe_count for $file"
17441         done
17442
17443         rm -rf $DIR/$tdir
17444 }
17445 run_test 300d "check default stripe under striped directory"
17446
17447 test_300e() {
17448         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17449                 skip "Need MDS version at least 2.7.55"
17450         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17451         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17452
17453         local stripe_count
17454         local file
17455
17456         mkdir -p $DIR/$tdir
17457
17458         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17459                 error "set striped dir error"
17460
17461         touch $DIR/$tdir/striped_dir/a
17462         touch $DIR/$tdir/striped_dir/b
17463         touch $DIR/$tdir/striped_dir/c
17464
17465         mkdir $DIR/$tdir/striped_dir/dir_a
17466         mkdir $DIR/$tdir/striped_dir/dir_b
17467         mkdir $DIR/$tdir/striped_dir/dir_c
17468
17469         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_a ||
17470                 error "set striped adir under striped dir error"
17471
17472         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_b ||
17473                 error "set striped bdir under striped dir error"
17474
17475         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_c ||
17476                 error "set striped cdir under striped dir error"
17477
17478         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
17479                 error "rename dir under striped dir fails"
17480
17481         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
17482                 error "rename dir under different stripes fails"
17483
17484         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
17485                 error "rename file under striped dir should succeed"
17486
17487         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
17488                 error "rename dir under striped dir should succeed"
17489
17490         rm -rf $DIR/$tdir
17491 }
17492 run_test 300e "check rename under striped directory"
17493
17494 test_300f() {
17495         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17496         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17497         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17498                 skip "Need MDS version at least 2.7.55"
17499
17500         local stripe_count
17501         local file
17502
17503         rm -rf $DIR/$tdir
17504         mkdir -p $DIR/$tdir
17505
17506         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17507                 error "set striped dir error"
17508
17509         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir1 ||
17510                 error "set striped dir error"
17511
17512         touch $DIR/$tdir/striped_dir/a
17513         mkdir $DIR/$tdir/striped_dir/dir_a
17514         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
17515                 error "create striped dir under striped dir fails"
17516
17517         touch $DIR/$tdir/striped_dir1/b
17518         mkdir $DIR/$tdir/striped_dir1/dir_b
17519         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
17520                 error "create striped dir under striped dir fails"
17521
17522         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
17523                 error "rename dir under different striped dir should fail"
17524
17525         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
17526                 error "rename striped dir under diff striped dir should fail"
17527
17528         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
17529                 error "rename file under diff striped dirs fails"
17530
17531         rm -rf $DIR/$tdir
17532 }
17533 run_test 300f "check rename cross striped directory"
17534
17535 test_300_check_default_striped_dir()
17536 {
17537         local dirname=$1
17538         local default_count=$2
17539         local default_index=$3
17540         local stripe_count
17541         local stripe_index
17542         local dir_stripe_index
17543         local dir
17544
17545         echo "checking $dirname $default_count $default_index"
17546         $LFS setdirstripe -D -c $default_count -i $default_index \
17547                                 -t all_char $DIR/$tdir/$dirname ||
17548                 error "set default stripe on striped dir error"
17549         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
17550         [ $stripe_count -eq $default_count ] ||
17551                 error "expect $default_count get $stripe_count for $dirname"
17552
17553         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
17554         [ $stripe_index -eq $default_index ] ||
17555                 error "expect $default_index get $stripe_index for $dirname"
17556
17557         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
17558                                                 error "create dirs failed"
17559
17560         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
17561         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
17562         for dir in $(find $DIR/$tdir/$dirname/*); do
17563                 stripe_count=$($LFS getdirstripe -c $dir)
17564                 [ $stripe_count -eq $default_count ] ||
17565                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
17566                 error "stripe count $default_count != $stripe_count for $dir"
17567
17568                 stripe_index=$($LFS getdirstripe -i $dir)
17569                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
17570                         error "$stripe_index != $default_index for $dir"
17571
17572                 #check default stripe
17573                 stripe_count=$($LFS getdirstripe -D -c $dir)
17574                 [ $stripe_count -eq $default_count ] ||
17575                 error "default count $default_count != $stripe_count for $dir"
17576
17577                 stripe_index=$($LFS getdirstripe -D -i $dir)
17578                 [ $stripe_index -eq $default_index ] ||
17579                 error "default index $default_index != $stripe_index for $dir"
17580         done
17581         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
17582 }
17583
17584 test_300g() {
17585         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17586         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17587                 skip "Need MDS version at least 2.7.55"
17588
17589         local dir
17590         local stripe_count
17591         local stripe_index
17592
17593         mkdir $DIR/$tdir
17594         mkdir $DIR/$tdir/normal_dir
17595
17596         #Checking when client cache stripe index
17597         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
17598         $LFS setdirstripe -D -i1 $DIR/$tdir/striped_dir ||
17599                 error "create striped_dir failed"
17600
17601         $LFS setdirstripe -i0 $DIR/$tdir/striped_dir/dir0 ||
17602                 error "create dir0 fails"
17603         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir0)
17604         [ $stripe_index -eq 0 ] ||
17605                 error "dir0 expect index 0 got $stripe_index"
17606
17607         mkdir $DIR/$tdir/striped_dir/dir1 ||
17608                 error "create dir1 fails"
17609         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir1)
17610         [ $stripe_index -eq 1 ] ||
17611                 error "dir1 expect index 1 got $stripe_index"
17612
17613         #check default stripe count/stripe index
17614         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
17615         test_300_check_default_striped_dir normal_dir 1 0
17616         test_300_check_default_striped_dir normal_dir 2 1
17617         test_300_check_default_striped_dir normal_dir 2 -1
17618
17619         #delete default stripe information
17620         echo "delete default stripeEA"
17621         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
17622                 error "set default stripe on striped dir error"
17623
17624         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
17625         for dir in $(find $DIR/$tdir/normal_dir/*); do
17626                 stripe_count=$($LFS getdirstripe -c $dir)
17627                 [ $stripe_count -eq 0 ] ||
17628                         error "expect 1 get $stripe_count for $dir"
17629                 stripe_index=$($LFS getdirstripe -i $dir)
17630                 [ $stripe_index -eq 0 ] ||
17631                         error "expect 0 get $stripe_index for $dir"
17632         done
17633 }
17634 run_test 300g "check default striped directory for normal directory"
17635
17636 test_300h() {
17637         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17638         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17639                 skip "Need MDS version at least 2.7.55"
17640
17641         local dir
17642         local stripe_count
17643
17644         mkdir $DIR/$tdir
17645         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
17646                 error "set striped dir error"
17647
17648         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
17649         test_300_check_default_striped_dir striped_dir 1 0
17650         test_300_check_default_striped_dir striped_dir 2 1
17651         test_300_check_default_striped_dir striped_dir 2 -1
17652
17653         #delete default stripe information
17654         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
17655                 error "set default stripe on striped dir error"
17656
17657         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
17658         for dir in $(find $DIR/$tdir/striped_dir/*); do
17659                 stripe_count=$($LFS getdirstripe -c $dir)
17660                 [ $stripe_count -eq 0 ] ||
17661                         error "expect 1 get $stripe_count for $dir"
17662         done
17663 }
17664 run_test 300h "check default striped directory for striped directory"
17665
17666 test_300i() {
17667         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17668         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17669         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17670                 skip "Need MDS version at least 2.7.55"
17671
17672         local stripe_count
17673         local file
17674
17675         mkdir $DIR/$tdir
17676
17677         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
17678                 error "set striped dir error"
17679
17680         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
17681                 error "create files under striped dir failed"
17682
17683         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir ||
17684                 error "set striped hashdir error"
17685
17686         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir/d0 ||
17687                 error "create dir0 under hash dir failed"
17688         $LFS setdirstripe -i0 -c$MDSCOUNT -H fnv_1a_64 $DIR/$tdir/hashdir/d1 ||
17689                 error "create dir1 under hash dir failed"
17690
17691         # unfortunately, we need to umount to clear dir layout cache for now
17692         # once we fully implement dir layout, we can drop this
17693         umount_client $MOUNT || error "umount failed"
17694         mount_client $MOUNT || error "mount failed"
17695
17696         $LFS find -H fnv_1a_64 $DIR/$tdir/hashdir
17697         local dircnt=$($LFS find -H fnv_1a_64 $DIR/$tdir/hashdir | wc -l)
17698         [ $dircnt -eq 1 ] || error "lfs find striped dir got:$dircnt,except:1"
17699
17700         #set the stripe to be unknown hash type
17701         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
17702         $LCTL set_param fail_loc=0x1901
17703         for ((i = 0; i < 10; i++)); do
17704                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
17705                         error "stat f-$i failed"
17706                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
17707         done
17708
17709         touch $DIR/$tdir/striped_dir/f0 &&
17710                 error "create under striped dir with unknown hash should fail"
17711
17712         $LCTL set_param fail_loc=0
17713
17714         umount_client $MOUNT || error "umount failed"
17715         mount_client $MOUNT || error "mount failed"
17716
17717         return 0
17718 }
17719 run_test 300i "client handle unknown hash type striped directory"
17720
17721 test_300j() {
17722         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17723         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17724         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17725                 skip "Need MDS version at least 2.7.55"
17726
17727         local stripe_count
17728         local file
17729
17730         mkdir $DIR/$tdir
17731
17732         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
17733         $LCTL set_param fail_loc=0x1702
17734         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
17735                 error "set striped dir error"
17736
17737         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
17738                 error "create files under striped dir failed"
17739
17740         $LCTL set_param fail_loc=0
17741
17742         rm -rf $DIR/$tdir || error "unlink striped dir fails"
17743
17744         return 0
17745 }
17746 run_test 300j "test large update record"
17747
17748 test_300k() {
17749         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17750         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17751         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17752                 skip "Need MDS version at least 2.7.55"
17753
17754         local stripe_count
17755         local file
17756
17757         mkdir $DIR/$tdir
17758
17759         #define OBD_FAIL_LARGE_STRIPE   0x1703
17760         $LCTL set_param fail_loc=0x1703
17761         $LFS setdirstripe -i 0 -c512 $DIR/$tdir/striped_dir ||
17762                 error "set striped dir error"
17763         $LCTL set_param fail_loc=0
17764
17765         $LFS getdirstripe $DIR/$tdir/striped_dir ||
17766                 error "getstripeddir fails"
17767         rm -rf $DIR/$tdir/striped_dir ||
17768                 error "unlink striped dir fails"
17769
17770         return 0
17771 }
17772 run_test 300k "test large striped directory"
17773
17774 test_300l() {
17775         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17776         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17777         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17778                 skip "Need MDS version at least 2.7.55"
17779
17780         local stripe_index
17781
17782         test_mkdir -p $DIR/$tdir/striped_dir
17783         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
17784                         error "chown $RUNAS_ID failed"
17785         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
17786                 error "set default striped dir failed"
17787
17788         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
17789         $LCTL set_param fail_loc=0x80000158
17790         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
17791
17792         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
17793         [ $stripe_index -eq 1 ] ||
17794                 error "expect 1 get $stripe_index for $dir"
17795 }
17796 run_test 300l "non-root user to create dir under striped dir with stale layout"
17797
17798 test_300m() {
17799         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17800         [ $MDSCOUNT -ge 2 ] && skip_env "Only for single MDT"
17801         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17802                 skip "Need MDS version at least 2.7.55"
17803
17804         mkdir -p $DIR/$tdir/striped_dir
17805         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
17806                 error "set default stripes dir error"
17807
17808         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
17809
17810         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
17811         [ $stripe_count -eq 0 ] ||
17812                         error "expect 0 get $stripe_count for a"
17813
17814         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
17815                 error "set default stripes dir error"
17816
17817         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
17818
17819         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
17820         [ $stripe_count -eq 0 ] ||
17821                         error "expect 0 get $stripe_count for b"
17822
17823         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
17824                 error "set default stripes dir error"
17825
17826         mkdir $DIR/$tdir/striped_dir/c &&
17827                 error "default stripe_index is invalid, mkdir c should fails"
17828
17829         rm -rf $DIR/$tdir || error "rmdir fails"
17830 }
17831 run_test 300m "setstriped directory on single MDT FS"
17832
17833 cleanup_300n() {
17834         local list=$(comma_list $(mdts_nodes))
17835
17836         trap 0
17837         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
17838 }
17839
17840 test_300n() {
17841         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17842         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17843         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17844                 skip "Need MDS version at least 2.7.55"
17845         remote_mds_nodsh && skip "remote MDS with nodsh"
17846
17847         local stripe_index
17848         local list=$(comma_list $(mdts_nodes))
17849
17850         trap cleanup_300n RETURN EXIT
17851         mkdir -p $DIR/$tdir
17852         chmod 777 $DIR/$tdir
17853         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
17854                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
17855                 error "create striped dir succeeds with gid=0"
17856
17857         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
17858         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
17859                 error "create striped dir fails with gid=-1"
17860
17861         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
17862         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
17863                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
17864                 error "set default striped dir succeeds with gid=0"
17865
17866
17867         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
17868         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
17869                 error "set default striped dir fails with gid=-1"
17870
17871
17872         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
17873         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
17874                                         error "create test_dir fails"
17875         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
17876                                         error "create test_dir1 fails"
17877         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
17878                                         error "create test_dir2 fails"
17879         cleanup_300n
17880 }
17881 run_test 300n "non-root user to create dir under striped dir with default EA"
17882
17883 test_300o() {
17884         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17885         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17886         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17887                 skip "Need MDS version at least 2.7.55"
17888
17889         local numfree1
17890         local numfree2
17891
17892         mkdir -p $DIR/$tdir
17893
17894         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
17895         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
17896         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
17897                 skip "not enough free inodes $numfree1 $numfree2"
17898         fi
17899
17900         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
17901         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
17902         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
17903                 skip "not enough free space $numfree1 $numfree2"
17904         fi
17905
17906         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
17907                 error "setdirstripe fails"
17908
17909         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
17910                 error "create dirs fails"
17911
17912         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
17913         ls $DIR/$tdir/striped_dir > /dev/null ||
17914                 error "ls striped dir fails"
17915         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
17916                 error "unlink big striped dir fails"
17917 }
17918 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
17919
17920 test_300p() {
17921         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17922         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17923         remote_mds_nodsh && skip "remote MDS with nodsh"
17924
17925         mkdir -p $DIR/$tdir
17926
17927         #define OBD_FAIL_OUT_ENOSPC     0x1704
17928         do_facet mds2 lctl set_param fail_loc=0x80001704
17929         $LFS setdirstripe -i 0 -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 \
17930                  && error "create striped directory should fail"
17931
17932         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
17933
17934         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
17935         true
17936 }
17937 run_test 300p "create striped directory without space"
17938
17939 test_300q() {
17940         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17941         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17942
17943         local fd=$(free_fd)
17944         local cmd="exec $fd<$tdir"
17945         cd $DIR
17946         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
17947         eval $cmd
17948         cmd="exec $fd<&-"
17949         trap "eval $cmd" EXIT
17950         cd $tdir || error "cd $tdir fails"
17951         rmdir  ../$tdir || error "rmdir $tdir fails"
17952         mkdir local_dir && error "create dir succeeds"
17953         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
17954         eval $cmd
17955         return 0
17956 }
17957 run_test 300q "create remote directory under orphan directory"
17958
17959 prepare_remote_file() {
17960         mkdir $DIR/$tdir/src_dir ||
17961                 error "create remote source failed"
17962
17963         cp /etc/hosts $DIR/$tdir/src_dir/a ||
17964                  error "cp to remote source failed"
17965         touch $DIR/$tdir/src_dir/a
17966
17967         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
17968                 error "create remote target dir failed"
17969
17970         touch $DIR/$tdir/tgt_dir/b
17971
17972         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
17973                 error "rename dir cross MDT failed!"
17974
17975         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
17976                 error "src_child still exists after rename"
17977
17978         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
17979                 error "missing file(a) after rename"
17980
17981         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
17982                 error "diff after rename"
17983 }
17984
17985 test_310a() {
17986         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 4 MDTs"
17987         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17988
17989         local remote_file=$DIR/$tdir/tgt_dir/b
17990
17991         mkdir -p $DIR/$tdir
17992
17993         prepare_remote_file || error "prepare remote file failed"
17994
17995         #open-unlink file
17996         $OPENUNLINK $remote_file $remote_file ||
17997                 error "openunlink $remote_file failed"
17998         $CHECKSTAT -a $remote_file || error "$remote_file exists"
17999 }
18000 run_test 310a "open unlink remote file"
18001
18002 test_310b() {
18003         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 4 MDTs"
18004         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18005
18006         local remote_file=$DIR/$tdir/tgt_dir/b
18007
18008         mkdir -p $DIR/$tdir
18009
18010         prepare_remote_file || error "prepare remote file failed"
18011
18012         ln $remote_file $DIR/$tfile || error "link failed for remote file"
18013         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
18014         $CHECKSTAT -t file $remote_file || error "check file failed"
18015 }
18016 run_test 310b "unlink remote file with multiple links while open"
18017
18018 test_310c() {
18019         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18020         [[ $MDSCOUNT -lt 4 ]] && skip_env "needs >= 4 MDTs"
18021
18022         local remote_file=$DIR/$tdir/tgt_dir/b
18023
18024         mkdir -p $DIR/$tdir
18025
18026         prepare_remote_file || error "prepare remote file failed"
18027
18028         ln $remote_file $DIR/$tfile || error "link failed for remote file"
18029         multiop_bg_pause $remote_file O_uc ||
18030                         error "mulitop failed for remote file"
18031         MULTIPID=$!
18032         $MULTIOP $DIR/$tfile Ouc
18033         kill -USR1 $MULTIPID
18034         wait $MULTIPID
18035 }
18036 run_test 310c "open-unlink remote file with multiple links"
18037
18038 #LU-4825
18039 test_311() {
18040         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18041         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
18042         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.54) ] &&
18043                 skip "lustre < 2.8.54 does not contain LU-4825 fix"
18044         remote_mds_nodsh && skip "remote MDS with nodsh"
18045
18046         local old_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
18047
18048         mkdir -p $DIR/$tdir
18049         $SETSTRIPE -i 0 -c 1 $DIR/$tdir
18050         createmany -o $DIR/$tdir/$tfile. 1000
18051
18052         # statfs data is not real time, let's just calculate it
18053         old_iused=$((old_iused + 1000))
18054
18055         local count=$(do_facet $SINGLEMDS "lctl get_param -n \
18056                         osp.*OST0000*MDT0000.create_count")
18057         local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
18058                                 osp.*OST0000*MDT0000.max_create_count")
18059         for idx in $(seq $MDSCOUNT); do
18060                 do_facet mds$idx "lctl set_param -n \
18061                         osp.*OST0000*MDT000?.max_create_count=0"
18062         done
18063
18064         $SETSTRIPE -i 0 $DIR/$tdir/$tfile || error "setstripe failed"
18065         local index=$($GETSTRIPE -i $DIR/$tdir/$tfile)
18066         [ $index -ne 0 ] || error "$tfile stripe index is 0"
18067
18068         unlinkmany $DIR/$tdir/$tfile. 1000
18069
18070         for idx in $(seq $MDSCOUNT); do
18071                 do_facet mds$idx "lctl set_param -n \
18072                         osp.*OST0000*MDT000?.max_create_count=$max_count"
18073                 do_facet mds$idx "lctl set_param -n \
18074                         osp.*OST0000*MDT000?.create_count=$count"
18075         done
18076
18077         local new_iused
18078         for i in $(seq 120); do
18079                 new_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
18080                 # system may be too busy to destroy all objs in time, use
18081                 # a somewhat small value to not fail autotest
18082                 [ $((old_iused - new_iused)) -gt 400 ] && break
18083                 sleep 1
18084         done
18085
18086         echo "waited $i sec, old Iused $old_iused, new Iused $new_iused"
18087         [ $((old_iused - new_iused)) -gt 400 ] ||
18088                 error "objs not destroyed after unlink"
18089 }
18090 run_test 311 "disable OSP precreate, and unlink should destroy objs"
18091
18092 zfs_oid_to_objid()
18093 {
18094         local ost=$1
18095         local objid=$2
18096
18097         local vdevdir=$(dirname $(facet_vdevice $ost))
18098         local cmd="$ZDB -e -p $vdevdir -ddddd $(facet_device $ost)"
18099         local zfs_zapid=$(do_facet $ost $cmd |
18100                           grep -w "/O/0/d$((objid%32))" -C 5 |
18101                           awk '/Object/{getline; print $1}')
18102         local zfs_objid=$(do_facet $ost $cmd $zfs_zapid |
18103                           awk "/$objid = /"'{printf $3}')
18104
18105         echo $zfs_objid
18106 }
18107
18108 zfs_object_blksz() {
18109         local ost=$1
18110         local objid=$2
18111
18112         local vdevdir=$(dirname $(facet_vdevice $ost))
18113         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
18114         local blksz=$(do_facet $ost $cmd $objid |
18115                       awk '/dblk/{getline; printf $4}')
18116
18117         case "${blksz: -1}" in
18118                 k|K) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024)) ;;
18119                 m|M) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024*1024)) ;;
18120                 *) ;;
18121         esac
18122
18123         echo $blksz
18124 }
18125
18126 test_312() { # LU-4856
18127         remote_ost_nodsh && skip "remote OST with nodsh"
18128         [ $(facet_fstype ost1) = "zfs" ] ||
18129                 skip_env "the test only applies to zfs"
18130
18131         local max_blksz=$(do_facet ost1 \
18132                           $ZFS get -p recordsize $(facet_device ost1) |
18133                           awk '!/VALUE/{print $3}')
18134         local min_blksz=$(getconf PAGE_SIZE)
18135
18136         # to make life a little bit easier
18137         $LFS mkdir -c 1 -i 0 $DIR/$tdir
18138         $LFS setstripe -c 1 -i 0 $DIR/$tdir
18139
18140         local tf=$DIR/$tdir/$tfile
18141         touch $tf
18142         local oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18143
18144         # Get ZFS object id
18145         local zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18146
18147         # block size change by sequential over write
18148         local blksz
18149         for ((bs=$min_blksz; bs <= max_blksz; bs <<= 2)); do
18150                 dd if=/dev/zero of=$tf bs=$bs count=1 oflag=sync conv=notrunc
18151
18152                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
18153                 [ $blksz -eq $bs ] || error "blksz error: $blksz, expected: $bs"
18154         done
18155         rm -f $tf
18156
18157         # block size change by sequential append write
18158         dd if=/dev/zero of=$tf bs=$min_blksz count=1 oflag=sync conv=notrunc
18159         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18160         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18161
18162         for ((count = 1; count < $((max_blksz / min_blksz)); count *= 2)); do
18163                 dd if=/dev/zero of=$tf bs=$min_blksz count=$count seek=$count \
18164                         oflag=sync conv=notrunc
18165
18166                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
18167                 [ $blksz -eq $((2 * count * min_blksz)) ] ||
18168                         error "blksz error, actual $blksz, "    \
18169                                 "expected: 2 * $count * $min_blksz"
18170         done
18171         rm -f $tf
18172
18173         # random write
18174         touch $tf
18175         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18176         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18177
18178         dd if=/dev/zero of=$tf bs=1K count=1 oflag=sync conv=notrunc
18179         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18180         [ $blksz -eq $min_blksz ] ||
18181                 error "blksz error: $blksz, expected: $min_blksz"
18182
18183         dd if=/dev/zero of=$tf bs=64K count=1 oflag=sync conv=notrunc seek=128
18184         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18185         [ $blksz -eq 65536 ] || error "blksz error: $blksz, expected: 64k"
18186
18187         dd if=/dev/zero of=$tf bs=1M count=1 oflag=sync conv=notrunc
18188         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18189         [ $blksz -eq 65536 ] || error "rewrite error: $blksz, expected: 64k"
18190 }
18191 run_test 312 "make sure ZFS adjusts its block size by write pattern"
18192
18193 test_313() {
18194         remote_ost_nodsh && skip "remote OST with nodsh"
18195
18196         local file=$DIR/$tfile
18197         rm -f $file
18198         $SETSTRIPE -c 1 -i 0 $file || error "setstripe failed"
18199
18200         # define OBD_FAIL_TGT_RCVD_EIO           0x720
18201         do_facet ost1 "$LCTL set_param fail_loc=0x720"
18202         dd if=/dev/zero of=$file bs=4096 oflag=direct count=1 &&
18203                 error "write should failed"
18204         do_facet ost1 "$LCTL set_param fail_loc=0"
18205         rm -f $file
18206 }
18207 run_test 313 "io should fail after last_rcvd update fail"
18208
18209 test_314() {
18210         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
18211
18212         $SETSTRIPE -c 2 -i 0 $DIR/$tfile || error "setstripe failed"
18213         do_facet ost1 "$LCTL set_param fail_loc=0x720"
18214         rm -f $DIR/$tfile
18215         wait_delete_completed
18216         do_facet ost1 "$LCTL set_param fail_loc=0"
18217 }
18218 run_test 314 "OSP shouldn't fail after last_rcvd update failure"
18219
18220 test_315() { # LU-618
18221         local file=$DIR/$tfile
18222         rm -f $file
18223
18224         $MULTIOP $file oO_CREAT:O_DIRECT:O_RDWR:w4096000c
18225         $MULTIOP $file oO_RDONLY:r4096000_c &
18226         PID=$!
18227
18228         sleep 2
18229
18230         local rbytes=$(awk '/read_bytes/ { print $2 }' /proc/$PID/io)
18231         kill -USR1 $PID
18232
18233         [ $rbytes -gt 4000000 ] || error "read is not accounted ($rbytes)"
18234         rm -f $file
18235 }
18236 run_test 315 "read should be accounted"
18237
18238 test_316() {
18239         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
18240         large_xattr_enabled || skip_env "ea_inode feature disabled"
18241
18242         rm -rf $DIR/$tdir/d
18243         mkdir -p $DIR/$tdir/d
18244         chown nobody $DIR/$tdir/d
18245         touch $DIR/$tdir/d/file
18246
18247         $LFS mv -M1 $DIR/$tdir/d || error "lfs mv failed"
18248 }
18249 run_test 316 "lfs mv"
18250
18251 test_317() {
18252         local trunc_sz
18253         local grant_blk_size
18254
18255         if [ "$(facet_fstype $facet)" == "zfs" ]; then
18256                 skip "LU-10370: no implementation for ZFS" && return
18257         fi
18258
18259         stack_trap "rm -f $DIR/$tfile" EXIT
18260         grant_blk_size=$($LCTL get_param osc.$FSNAME*.import |
18261                         awk '/grant_block_size:/ { print $2; exit; }')
18262         #
18263         # Create File of size 5M. Truncate it to below size's and verify
18264         # blocks count.
18265         #
18266         dd if=/dev/zero of=$DIR/$tfile bs=5M count=1 conv=fsync ||
18267                 error "Create file : $DIR/$tfile"
18268
18269         for trunc_sz in 2097152 4097 4000 509 0; do
18270                 $TRUNCATE $DIR/$tfile $trunc_sz ||
18271                         error "truncate $tfile to $trunc_sz failed"
18272                 local sz=$(stat --format=%s $DIR/$tfile)
18273                 local blk=$(stat --format=%b $DIR/$tfile)
18274                 local trunc_blk=$((((trunc_sz + (grant_blk_size - 1) ) /
18275                                      grant_blk_size) * 8))
18276
18277                 if [[ $blk -ne $trunc_blk ]]; then
18278                         $(which stat) $DIR/$tfile
18279                         error "Expected Block $trunc_blk got $blk for $tfile"
18280                 fi
18281
18282                 $CHECKSTAT -s $trunc_sz $DIR/$tfile ||
18283                         error "Expected Size $trunc_sz got $sz for $tfile"
18284         done
18285
18286         #
18287         # sparse file test
18288         # Create file with a hole and write actual two blocks. Block count
18289         # must be 16.
18290         #
18291         dd if=/dev/zero of=$DIR/$tfile bs=$grant_blk_size count=2 seek=5 \
18292                 conv=fsync || error "Create file : $DIR/$tfile"
18293
18294         # Calculate the final truncate size.
18295         trunc_sz=$(($(stat --format=%s $DIR/$tfile) - (grant_blk_size + 1)))
18296
18297         #
18298         # truncate to size $trunc_sz bytes. Strip the last block
18299         # The block count must drop to 8
18300         #
18301         $TRUNCATE $DIR/$tfile $trunc_sz ||
18302                 error "truncate $tfile to $trunc_sz failed"
18303
18304         local trunc_bsz=$((grant_blk_size / $(stat --format=%B $DIR/$tfile)))
18305         sz=$(stat --format=%s $DIR/$tfile)
18306         blk=$(stat --format=%b $DIR/$tfile)
18307
18308         if [[ $blk -ne $trunc_bsz ]]; then
18309                 $(which stat) $DIR/$tfile
18310                 error "Expected Block $trunc_bsz got $blk for $tfile"
18311         fi
18312
18313         $CHECKSTAT -s $trunc_sz $DIR/$tfile ||
18314                 error "Expected Size $trunc_sz got $sz for $tfile"
18315 }
18316 run_test 317 "Verify blocks get correctly update after truncate"
18317
18318 test_fake_rw() {
18319         local read_write=$1
18320         if [ "$read_write" = "write" ]; then
18321                 local dd_cmd="dd if=/dev/zero of=$DIR/$tfile"
18322         elif [ "$read_write" = "read" ]; then
18323                 local dd_cmd="dd of=/dev/null if=$DIR/$tfile"
18324         else
18325                 error "argument error"
18326         fi
18327
18328         # turn off debug for performance testing
18329         local saved_debug=$($LCTL get_param -n debug)
18330         $LCTL set_param debug=0
18331
18332         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
18333
18334         # get ost1 size - lustre-OST0000
18335         local ost1_avail_size=$($LFS df | awk /${ost1_svc}/'{ print $4 }')
18336         local blocks=$((ost1_avail_size/2/1024)) # half avail space by megabytes
18337         [ $blocks -gt 1000 ] && blocks=1000 # 1G in maximum
18338
18339         if [ "$read_write" = "read" ]; then
18340                 truncate -s $(expr 1048576 \* $blocks) $DIR/$tfile
18341         fi
18342
18343         local start_time=$(date +%s.%N)
18344         $dd_cmd bs=1M count=$blocks oflag=sync ||
18345                 error "real dd $read_write error"
18346         local duration=$(bc <<< "$(date +%s.%N) - $start_time")
18347
18348         if [ "$read_write" = "write" ]; then
18349                 rm -f $DIR/$tfile
18350         fi
18351
18352         # define OBD_FAIL_OST_FAKE_RW           0x238
18353         do_facet ost1 $LCTL set_param fail_loc=0x238
18354
18355         local start_time=$(date +%s.%N)
18356         $dd_cmd bs=1M count=$blocks oflag=sync ||
18357                 error "fake dd $read_write error"
18358         local duration_fake=$(bc <<< "$(date +%s.%N) - $start_time")
18359
18360         if [ "$read_write" = "write" ]; then
18361                 # verify file size
18362                 cancel_lru_locks osc
18363                 $CHECKSTAT -t file -s $((blocks * 1024 * 1024)) $DIR/$tfile ||
18364                         error "$tfile size not $blocks MB"
18365         fi
18366         do_facet ost1 $LCTL set_param fail_loc=0
18367
18368         echo "fake $read_write $duration_fake vs. normal $read_write" \
18369                 "$duration in seconds"
18370         [ $(bc <<< "$duration_fake < $duration") -eq 1 ] ||
18371                 error_not_in_vm "fake write is slower"
18372
18373         $LCTL set_param -n debug="$saved_debug"
18374         rm -f $DIR/$tfile
18375 }
18376 test_399a() { # LU-7655 for OST fake write
18377         remote_ost_nodsh && skip "remote OST with nodsh"
18378
18379         test_fake_rw write
18380 }
18381 run_test 399a "fake write should not be slower than normal write"
18382
18383 test_399b() { # LU-8726 for OST fake read
18384         remote_ost_nodsh && skip "remote OST with nodsh"
18385         if [ "$(facet_fstype ost1)" != "ldiskfs" ]; then
18386                 skip_env "ldiskfs only test"
18387         fi
18388
18389         test_fake_rw read
18390 }
18391 run_test 399b "fake read should not be slower than normal read"
18392
18393 test_400a() { # LU-1606, was conf-sanity test_74
18394         if ! which $CC > /dev/null 2>&1; then
18395                 skip_env "$CC is not installed"
18396         fi
18397
18398         local extra_flags=''
18399         local out=$TMP/$tfile
18400         local prefix=/usr/include/lustre
18401         local prog
18402
18403         if ! [[ -d $prefix ]]; then
18404                 # Assume we're running in tree and fixup the include path.
18405                 extra_flags+=" -I$LUSTRE/include"
18406                 extra_flags+=" -L$LUSTRE/utils"
18407         fi
18408
18409         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
18410                 $CC -Wall -Werror $extra_flags -llustreapi -o $out $prog ||
18411                         error "client api broken"
18412         done
18413         rm -f $out
18414 }
18415 run_test 400a "Lustre client api program can compile and link"
18416
18417 test_400b() { # LU-1606, LU-5011
18418         local header
18419         local out=$TMP/$tfile
18420         local prefix=/usr/include/linux/lustre
18421
18422         # We use a hard coded prefix so that this test will not fail
18423         # when run in tree. There are headers in lustre/include/lustre/
18424         # that are not packaged (like lustre_idl.h) and have more
18425         # complicated include dependencies (like config.h and lnet/types.h).
18426         # Since this test about correct packaging we just skip them when
18427         # they don't exist (see below) rather than try to fixup cppflags.
18428
18429         if ! which $CC > /dev/null 2>&1; then
18430                 skip_env "$CC is not installed"
18431         fi
18432
18433         for header in $prefix/*.h; do
18434                 if ! [[ -f "$header" ]]; then
18435                         continue
18436                 fi
18437
18438                 if [[ "$(basename $header)" == lustre_ioctl.h ]]; then
18439                         continue # lustre_ioctl.h is internal header
18440                 fi
18441
18442                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
18443                         error "cannot compile '$header'"
18444         done
18445         rm -f $out
18446 }
18447 run_test 400b "packaged headers can be compiled"
18448
18449 test_401a() { #LU-7437
18450         local printf_arg=$(find -printf 2>&1 | grep "unrecognized:")
18451         [ -n "$printf_arg" ] && skip_env "find does not support -printf"
18452
18453         #count the number of parameters by "list_param -R"
18454         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
18455         #count the number of parameters by listing proc files
18456         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
18457         echo "proc_dirs='$proc_dirs'"
18458         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
18459         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
18460                       sort -u | wc -l)
18461
18462         [ $params -eq $procs ] ||
18463                 error "found $params parameters vs. $procs proc files"
18464
18465         # test the list_param -D option only returns directories
18466         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
18467         #count the number of parameters by listing proc directories
18468         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
18469                 sort -u | wc -l)
18470
18471         [ $params -eq $procs ] ||
18472                 error "found $params parameters vs. $procs proc files"
18473 }
18474 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
18475
18476 test_401b() {
18477         local save=$($LCTL get_param -n jobid_var)
18478         local tmp=testing
18479
18480         $LCTL set_param foo=bar jobid_var=$tmp bar=baz &&
18481                 error "no error returned when setting bad parameters"
18482
18483         local jobid_new=$($LCTL get_param -n foe jobid_var baz)
18484         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
18485
18486         $LCTL set_param -n fog=bam jobid_var=$save bat=fog
18487         local jobid_old=$($LCTL get_param -n foe jobid_var bag)
18488         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
18489 }
18490 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
18491
18492 test_401c() {
18493         local jobid_var_old=$($LCTL get_param -n jobid_var)
18494         local jobid_var_new
18495
18496         $LCTL set_param jobid_var= &&
18497                 error "no error returned for 'set_param a='"
18498
18499         jobid_var_new=$($LCTL get_param -n jobid_var)
18500         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
18501                 error "jobid_var was changed by setting without value"
18502
18503         $LCTL set_param jobid_var &&
18504                 error "no error returned for 'set_param a'"
18505
18506         jobid_var_new=$($LCTL get_param -n jobid_var)
18507         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
18508                 error "jobid_var was changed by setting without value"
18509 }
18510 run_test 401c "Verify 'lctl set_param' without value fails in either format."
18511
18512 test_401d() {
18513         local jobid_var_old=$($LCTL get_param -n jobid_var)
18514         local jobid_var_new
18515         local new_value="foo=bar"
18516
18517         $LCTL set_param jobid_var=$new_value ||
18518                 error "'set_param a=b' did not accept a value containing '='"
18519
18520         jobid_var_new=$($LCTL get_param -n jobid_var)
18521         [[ "$jobid_var_new" == "$new_value" ]] ||
18522                 error "'set_param a=b' failed on a value containing '='"
18523
18524         # Reset the jobid_var to test the other format
18525         $LCTL set_param jobid_var=$jobid_var_old
18526         jobid_var_new=$($LCTL get_param -n jobid_var)
18527         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
18528                 error "failed to reset jobid_var"
18529
18530         $LCTL set_param jobid_var $new_value ||
18531                 error "'set_param a b' did not accept a value containing '='"
18532
18533         jobid_var_new=$($LCTL get_param -n jobid_var)
18534         [[ "$jobid_var_new" == "$new_value" ]] ||
18535                 error "'set_param a b' failed on a value containing '='"
18536
18537         $LCTL set_param jobid_var $jobid_var_old
18538         jobid_var_new=$($LCTL get_param -n jobid_var)
18539         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
18540                 error "failed to reset jobid_var"
18541 }
18542 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
18543
18544 test_402() {
18545         local server_version=$(lustre_version_code $SINGLEMDS)
18546         [[ $server_version -ge $(version_code 2.7.66) ]] ||
18547         [[ $server_version -ge $(version_code 2.7.18.4) &&
18548                 $server_version -lt $(version_code 2.7.50) ]] ||
18549         [[ $server_version -ge $(version_code 2.7.2) &&
18550                 $server_version -lt $(version_code 2.7.11) ]] ||
18551                 skip "Need MDS version 2.7.2+ or 2.7.18.4+ or 2.7.66+"
18552         remote_mds_nodsh && skip "remote MDS with nodsh"
18553
18554         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
18555 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
18556         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
18557         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
18558                 echo "Touch failed - OK"
18559 }
18560 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
18561
18562 test_403() {
18563         local file1=$DIR/$tfile.1
18564         local file2=$DIR/$tfile.2
18565         local tfile=$TMP/$tfile
18566
18567         rm -f $file1 $file2 $tfile
18568
18569         touch $file1
18570         ln $file1 $file2
18571
18572         # 30 sec OBD_TIMEOUT in ll_getattr()
18573         # right before populating st_nlink
18574         $LCTL set_param fail_loc=0x80001409
18575         stat -c %h $file1 > $tfile &
18576
18577         # create an alias, drop all locks and reclaim the dentry
18578         < $file2
18579         cancel_lru_locks mdc
18580         cancel_lru_locks osc
18581         sysctl -w vm.drop_caches=2
18582
18583         wait
18584
18585         [ $(cat $tfile) -gt 0 ] || error "wrong nlink count: $(cat $tfile)"
18586
18587         rm -f $tfile $file1 $file2
18588 }
18589 run_test 403 "i_nlink should not drop to zero due to aliasing"
18590
18591 test_404() { # LU-6601
18592         local server_version=$(lustre_version_code $SINGLEMDS)
18593         [[ $server_version -ge $(version_code 2.8.53) ]] ||
18594                 skip "Need server version newer than 2.8.52"
18595         remote_mds_nodsh && skip "remote MDS with nodsh"
18596
18597         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
18598                 awk '/osp .*-osc-MDT/ { print $4}')
18599
18600         local osp
18601         for osp in $mosps; do
18602                 echo "Deactivate: " $osp
18603                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
18604                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
18605                         awk -vp=$osp '$4 == p { print $2 }')
18606                 [ $stat = IN ] || {
18607                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
18608                         error "deactivate error"
18609                 }
18610                 echo "Activate: " $osp
18611                 do_facet $SINGLEMDS $LCTL --device %$osp activate
18612                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
18613                         awk -vp=$osp '$4 == p { print $2 }')
18614                 [ $stat = UP ] || {
18615                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
18616                         error "activate error"
18617                 }
18618         done
18619 }
18620 run_test 404 "validate manual {de}activated works properly for OSPs"
18621
18622 test_405() {
18623         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) -o \
18624         [ $(lustre_version_code client) -lt $(version_code 2.6.99) ] &&
18625                 skip "Layout swap lock is not supported"
18626         check_swap_layouts_support
18627
18628         test_mkdir $DIR/$tdir
18629         swap_lock_test -d $DIR/$tdir ||
18630                 error "One layout swap locked test failed"
18631 }
18632 run_test 405 "Various layout swap lock tests"
18633
18634 test_406() {
18635         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18636         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
18637         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
18638         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18639         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.50) ] &&
18640                 skip "Need MDS version at least 2.8.50"
18641
18642         local def_stripe_size=$($LFS getstripe -S $MOUNT)
18643         local test_pool=$TESTNAME
18644
18645         if ! combined_mgs_mds ; then
18646                 mount_mgs_client
18647         fi
18648         pool_add $test_pool || error "pool_add failed"
18649         pool_add_targets $test_pool 0 $(($OSTCOUNT - 1)) 1 ||
18650                 error "pool_add_targets failed"
18651
18652         save_layout_restore_at_exit $MOUNT
18653
18654         # parent set default stripe count only, child will stripe from both
18655         # parent and fs default
18656         $LFS setstripe -c 1 -i 1 -S $((def_stripe_size * 2)) -p $test_pool $MOUNT ||
18657                 error "setstripe $MOUNT failed"
18658         $LFS mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
18659         $LFS setstripe -c $OSTCOUNT $DIR/$tdir || error "setstripe $tdir failed"
18660         for i in $(seq 10); do
18661                 local f=$DIR/$tdir/$tfile.$i
18662                 touch $f || error "touch failed"
18663                 local count=$($LFS getstripe -c $f)
18664                 [ $count -eq $OSTCOUNT ] ||
18665                         error "$f stripe count $count != $OSTCOUNT"
18666                 local offset=$($LFS getstripe -i $f)
18667                 [ $offset -eq 1 ] || error "$f stripe offset $offset != 1"
18668                 local size=$($LFS getstripe -S $f)
18669                 [ $size -eq $((def_stripe_size * 2)) ] ||
18670                         error "$f stripe size $size != $((def_stripe_size * 2))"
18671                 local pool=$($LFS getstripe -p $f)
18672                 [ $pool == $test_pool ] || error "$f pool $pool != $test_pool"
18673         done
18674
18675         # change fs default striping, delete parent default striping, now child
18676         # will stripe from new fs default striping only
18677         $LFS setstripe -c 1 -S $def_stripe_size -i 0 $MOUNT ||
18678                 error "change $MOUNT default stripe failed"
18679         $LFS setstripe -c 0 $DIR/$tdir ||
18680                 error "delete $tdir default stripe failed"
18681         for i in $(seq 11 20); do
18682                 local f=$DIR/$tdir/$tfile.$i
18683                 touch $f || error "touch $f failed"
18684                 local count=$($LFS getstripe -c $f)
18685                 [ $count -eq 1 ] || error "$f stripe count $count != 1"
18686                 local offset=$($LFS getstripe -i $f)
18687                 [ $offset -eq 0 ] || error "$f stripe offset $offset != 0"
18688                 local size=$($LFS getstripe -S $f)
18689                 [ $size -eq $def_stripe_size ] ||
18690                         error "$f stripe size $size != $def_stripe_size"
18691                 local pool=$($LFS getstripe -p $f)
18692                 [ $pool == $test_pool ] || error "$f pool $pool isn't set"
18693         done
18694
18695         unlinkmany $DIR/$tdir/$tfile. 1 20
18696
18697         local f=$DIR/$tdir/$tfile
18698         pool_remove_all_targets $test_pool $f
18699         pool_remove $test_pool $f
18700
18701         if ! combined_mgs_mds ; then
18702                 umount_mgs_client
18703         fi
18704 }
18705 run_test 406 "DNE support fs default striping"
18706
18707 test_407() {
18708         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18709         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
18710                 skip "Need MDS version at least 2.8.55"
18711         remote_mds_nodsh && skip "remote MDS with nodsh"
18712
18713         $LFS mkdir -i 0 -c 1 $DIR/$tdir.0 ||
18714                 error "$LFS mkdir -i 0 -c 1 $tdir.0 failed"
18715         $LFS mkdir -i 1 -c 1 $DIR/$tdir.1 ||
18716                 error "$LFS mkdir -i 1 -c 1 $tdir.1 failed"
18717         touch $DIR/$tdir.0/$tfile.0 || error "touch $tdir.0/$tfile.0 failed"
18718
18719         #define OBD_FAIL_DT_TXN_STOP    0x2019
18720         for idx in $(seq $MDSCOUNT); do
18721                 do_facet mds$idx "lctl set_param fail_loc=0x2019"
18722         done
18723         $LFS mkdir -c 2 $DIR/$tdir && error "$LFS mkdir -c 2 $tdir should fail"
18724         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1/$tfile.1 &&
18725                 error "mv $tdir.0/$tfile.0 $tdir.1/$tfile.1 should fail"
18726         true
18727 }
18728 run_test 407 "transaction fail should cause operation fail"
18729
18730 test_408() {
18731         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 oflag=direct
18732
18733         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
18734         lctl set_param fail_loc=0x8000040a
18735         # let ll_prepare_partial_page() fail
18736         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 conv=notrunc || true
18737
18738         rm -f $DIR/$tfile
18739
18740         # create at least 100 unused inodes so that
18741         # shrink_icache_memory(0) should not return 0
18742         touch $DIR/$tfile-{0..100}
18743         rm -f $DIR/$tfile-{0..100}
18744         sync
18745
18746         echo 2 > /proc/sys/vm/drop_caches
18747 }
18748 run_test 408 "drop_caches should not hang due to page leaks"
18749
18750 test_409()
18751 {
18752         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18753         check_mount_and_prep
18754
18755         mkdir -p $DIR/$tdir || error "(0) Fail to mkdir"
18756         $LFS mkdir -i 1 -c 2 $DIR/$tdir/foo || error "(1) Fail to mkdir"
18757         touch $DIR/$tdir/guard || error "(2) Fail to create"
18758
18759         local PREFIX=$(str_repeat 'A' 128)
18760         echo "Create 1K hard links start at $(date)"
18761         createmany -l $DIR/$tdir/guard $DIR/$tdir/foo/${PREFIX}_ 1000 ||
18762                 error "(3) Fail to hard link"
18763
18764         echo "Links count should be right although linkEA overflow"
18765         stat $DIR/$tdir/guard || error "(4) Fail to stat"
18766         local linkcount=$(stat --format=%h $DIR/$tdir/guard)
18767         [ $linkcount -eq 1001 ] ||
18768                 error "(5) Unexpected hard links count: $linkcount"
18769
18770         echo "List all links start at $(date)"
18771         ls -l $DIR/$tdir/foo > /dev/null ||
18772                 error "(6) Fail to list $DIR/$tdir/foo"
18773
18774         echo "Unlink hard links start at $(date)"
18775         unlinkmany $DIR/$tdir/foo/${PREFIX}_ 1000 ||
18776                 error "(7) Fail to unlink"
18777 }
18778 run_test 409 "Large amount of cross-MDTs hard links on the same file"
18779
18780 test_410()
18781 {
18782         [[ $(lustre_version_code client) -lt $(version_code 2.9.59) ]] &&
18783                 skip "Need client version at least 2.9.59"
18784
18785         # Create a file, and stat it from the kernel
18786         local testfile=$DIR/$tfile
18787         touch $testfile
18788
18789         local run_id=$RANDOM
18790         local my_ino=$(stat --format "%i" $testfile)
18791
18792         # Try to insert the module. This will always fail as the
18793         # module is designed to not be inserted.
18794         insmod $LUSTRE/tests/kernel/kinode.ko run_id=$run_id fname=$testfile \
18795             &> /dev/null
18796
18797         # Anything but success is a test failure
18798         dmesg | grep -q \
18799             "lustre_kinode_$run_id: inode numbers are identical: $my_ino" ||
18800             error "no inode match"
18801 }
18802 run_test 410 "Test inode number returned from kernel thread"
18803
18804 cleanup_test411_cgroup() {
18805         trap 0
18806         rmdir "$1"
18807 }
18808
18809 test_411() {
18810         local cg_basedir=/sys/fs/cgroup/memory
18811         # LU-9966
18812         test -f "$cg_basedir/memory.kmem.limit_in_bytes" ||
18813                 skip "no setup for cgroup"
18814
18815         dd if=/dev/zero of=$DIR/$tfile bs=1M count=100 conv=fsync ||
18816                 error "test file creation failed"
18817         cancel_lru_locks osc
18818
18819         # Create a very small memory cgroup to force a slab allocation error
18820         local cgdir=$cg_basedir/osc_slab_alloc
18821         mkdir $cgdir || error "cgroup mkdir '$cgdir' failed"
18822         trap "cleanup_test411_cgroup $cgdir" EXIT
18823         echo 2M > $cgdir/memory.kmem.limit_in_bytes
18824         echo 1M > $cgdir/memory.limit_in_bytes
18825
18826         # Should not LBUG, just be killed by oom-killer
18827         sh -c "echo \$$ > $cgdir/tasks && dd if=$DIR/$tfile of=/dev/null" &&
18828                 error "fail to trigger a memory allocation error"
18829
18830         cleanup_test411_cgroup $cgdir
18831
18832         return 0
18833 }
18834 run_test 411 "Slab allocation error with cgroup does not LBUG"
18835
18836 test_412() {
18837         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18838         if [ $(lustre_version_code mds1) -lt $(version_code 2.10.55) ]; then
18839                 skip "Need server version at least 2.10.55"
18840         fi
18841
18842         $LFS mkdir -i $((MDSCOUNT - 1)),$((MDSCOUNT - 2)) $DIR/$tdir ||
18843                 error "mkdir failed"
18844         $LFS getdirstripe $DIR/$tdir
18845         local stripe_index=$($LFS getdirstripe -i $DIR/$tdir)
18846         [ $stripe_index -eq $((MDSCOUNT - 1)) ] ||
18847                 error "expect $((MDSCOUT - 1)) get $stripe_index"
18848         local stripe_count=$($LFS getdirstripe -T $DIR/$tdir)
18849         [ $stripe_count -eq 2 ] ||
18850                 error "expect 2 get $stripe_count"
18851 }
18852 run_test 412 "mkdir on specific MDTs"
18853
18854 test_413() {
18855         [ $MDSCOUNT -lt 2 ] &&
18856                 skip "We need at least 2 MDTs for this test"
18857
18858         if [ $(lustre_version_code mds1) -lt $(version_code 2.10.55) ]; then
18859                 skip "Need server version at least 2.10.55"
18860         fi
18861
18862         mkdir $DIR/$tdir || error "mkdir failed"
18863
18864         # find MDT that is the most full
18865         local max=$($LFS df | grep MDT |
18866                 awk 'BEGIN { a=0 }
18867                         { sub("%", "", $5)
18868                           if (0+$5 >= a)
18869                           {
18870                                 a = $5
18871                                 b = $6
18872                           }
18873                         }
18874                      END { split(b, c, ":")
18875                            sub("]", "", c[2])
18876                            print c[2]
18877                          }')
18878
18879         for i in $(seq $((MDSCOUNT - 1))); do
18880                 $LFS mkdir -c $i $DIR/$tdir/d$i ||
18881                         error "mkdir d$i failed"
18882                 $LFS getdirstripe $DIR/$tdir/d$i
18883                 local stripe_index=$($LFS getdirstripe -i $DIR/$tdir/d$i)
18884                 [ $stripe_index -ne $max ] ||
18885                         error "don't expect $max"
18886         done
18887 }
18888 run_test 413 "mkdir on less full MDTs"
18889
18890 test_414() {
18891 #define OBD_FAIL_PTLRPC_BULK_ATTACH      0x521
18892         $LCTL set_param fail_loc=0x80000521
18893         dd if=/dev/zero of=$DIR/$tfile bs=2M count=1 oflag=sync
18894         rm -f $DIR/$tfile
18895 }
18896 run_test 414 "simulate ENOMEM in ptlrpc_register_bulk()"
18897
18898 test_415() {
18899         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18900         [ $(lustre_version_code mds1) -lt $(version_code 2.11.52) ] &&
18901                 skip "Need server version at least 2.11.52"
18902
18903         # LU-11102
18904         local total
18905         local setattr_pid
18906         local start_time
18907         local end_time
18908         local duration
18909
18910         total=500
18911         # this test may be slow on ZFS
18912         [ "$(facet_fstype mds1)" == "zfs" ] && total=100
18913
18914         # though this test is designed for striped directory, let's test normal
18915         # directory too since lock is always saved as CoS lock.
18916         test_mkdir $DIR/$tdir || error "mkdir $tdir"
18917         createmany -o $DIR/$tdir/$tfile. $total || error "createmany"
18918
18919         (
18920                 while true; do
18921                         touch $DIR/$tdir
18922                 done
18923         ) &
18924         setattr_pid=$!
18925
18926         start_time=$(date +%s)
18927         for i in $(seq $total); do
18928                 mrename $DIR/$tdir/$tfile.$i $DIR/$tdir/$tfile-new.$i \
18929                         > /dev/null
18930         done
18931         end_time=$(date +%s)
18932         duration=$((end_time - start_time))
18933
18934         kill -9 $setattr_pid
18935
18936         echo "rename $total files took $duration sec"
18937         [ $duration -lt 100 ] || error "rename took $duration sec"
18938 }
18939 run_test 415 "lock revoke is not missing"
18940
18941 prep_801() {
18942         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
18943         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
18944                 skip "Need server version at least 2.9.55"
18945
18946         start_full_debug_logging
18947 }
18948
18949 post_801() {
18950         stop_full_debug_logging
18951 }
18952
18953 barrier_stat() {
18954         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
18955                 local st=$(do_facet mgs $LCTL barrier_stat $FSNAME |
18956                            awk '/The barrier for/ { print $7 }')
18957                 echo $st
18958         else
18959                 local st=$(do_facet mgs $LCTL barrier_stat -s $FSNAME)
18960                 echo \'$st\'
18961         fi
18962 }
18963
18964 barrier_expired() {
18965         local expired
18966
18967         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
18968                 expired=$(do_facet mgs $LCTL barrier_stat $FSNAME |
18969                           awk '/will be expired/ { print $7 }')
18970         else
18971                 expired=$(do_facet mgs $LCTL barrier_stat -t $FSNAME)
18972         fi
18973
18974         echo $expired
18975 }
18976
18977 test_801a() {
18978         prep_801
18979
18980         echo "Start barrier_freeze at: $(date)"
18981         #define OBD_FAIL_BARRIER_DELAY          0x2202
18982         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
18983         do_facet mgs $LCTL barrier_freeze $FSNAME 10 &
18984
18985         sleep 2
18986         local b_status=$(barrier_stat)
18987         echo "Got barrier status at: $(date)"
18988         [ "$b_status" = "'freezing_p1'" ] ||
18989                 error "(1) unexpected barrier status $b_status"
18990
18991         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
18992         wait
18993         b_status=$(barrier_stat)
18994         [ "$b_status" = "'frozen'" ] ||
18995                 error "(2) unexpected barrier status $b_status"
18996
18997         local expired=$(barrier_expired)
18998         echo "sleep $((expired + 3)) seconds, then the barrier will be expired"
18999         sleep $((expired + 3))
19000
19001         b_status=$(barrier_stat)
19002         [ "$b_status" = "'expired'" ] ||
19003                 error "(3) unexpected barrier status $b_status"
19004
19005         do_facet mgs $LCTL barrier_freeze $FSNAME 10 ||
19006                 error "(4) fail to freeze barrier"
19007
19008         b_status=$(barrier_stat)
19009         [ "$b_status" = "'frozen'" ] ||
19010                 error "(5) unexpected barrier status $b_status"
19011
19012         echo "Start barrier_thaw at: $(date)"
19013         #define OBD_FAIL_BARRIER_DELAY          0x2202
19014         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
19015         do_facet mgs $LCTL barrier_thaw $FSNAME &
19016
19017         sleep 2
19018         b_status=$(barrier_stat)
19019         echo "Got barrier status at: $(date)"
19020         [ "$b_status" = "'thawing'" ] ||
19021                 error "(6) unexpected barrier status $b_status"
19022
19023         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
19024         wait
19025         b_status=$(barrier_stat)
19026         [ "$b_status" = "'thawed'" ] ||
19027                 error "(7) unexpected barrier status $b_status"
19028
19029         #define OBD_FAIL_BARRIER_FAILURE        0x2203
19030         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2203
19031         do_facet mgs $LCTL barrier_freeze $FSNAME
19032
19033         b_status=$(barrier_stat)
19034         [ "$b_status" = "'failed'" ] ||
19035                 error "(8) unexpected barrier status $b_status"
19036
19037         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
19038         do_facet mgs $LCTL barrier_thaw $FSNAME
19039
19040         post_801
19041 }
19042 run_test 801a "write barrier user interfaces and stat machine"
19043
19044 test_801b() {
19045         prep_801
19046
19047         mkdir $DIR/$tdir || error "(1) fail to mkdir"
19048         createmany -d $DIR/$tdir/d 6 || "(2) fail to mkdir"
19049         touch $DIR/$tdir/d2/f10 || error "(3) fail to touch"
19050         touch $DIR/$tdir/d3/f11 || error "(4) fail to touch"
19051         touch $DIR/$tdir/d4/f12 || error "(5) fail to touch"
19052
19053         cancel_lru_locks mdc
19054
19055         # 180 seconds should be long enough
19056         do_facet mgs $LCTL barrier_freeze $FSNAME 180
19057
19058         local b_status=$(barrier_stat)
19059         [ "$b_status" = "'frozen'" ] ||
19060                 error "(6) unexpected barrier status $b_status"
19061
19062         mkdir $DIR/$tdir/d0/d10 &
19063         mkdir_pid=$!
19064
19065         touch $DIR/$tdir/d1/f13 &
19066         touch_pid=$!
19067
19068         ln $DIR/$tdir/d2/f10 $DIR/$tdir/d2/f14 &
19069         ln_pid=$!
19070
19071         mv $DIR/$tdir/d3/f11 $DIR/$tdir/d3/f15 &
19072         mv_pid=$!
19073
19074         rm -f $DIR/$tdir/d4/f12 &
19075         rm_pid=$!
19076
19077         stat $DIR/$tdir/d5 || error "(7) stat should succeed"
19078
19079         # To guarantee taht the 'stat' is not blocked
19080         b_status=$(barrier_stat)
19081         [ "$b_status" = "'frozen'" ] ||
19082                 error "(8) unexpected barrier status $b_status"
19083
19084         # let above commands to run at background
19085         sleep 5
19086
19087         ps -p $mkdir_pid || error "(9) mkdir should be blocked"
19088         ps -p $touch_pid || error "(10) touch should be blocked"
19089         ps -p $ln_pid || error "(11) link should be blocked"
19090         ps -p $mv_pid || error "(12) rename should be blocked"
19091         ps -p $rm_pid || error "(13) unlink should be blocked"
19092
19093         b_status=$(barrier_stat)
19094         [ "$b_status" = "'frozen'" ] ||
19095                 error "(14) unexpected barrier status $b_status"
19096
19097         do_facet mgs $LCTL barrier_thaw $FSNAME
19098         b_status=$(barrier_stat)
19099         [ "$b_status" = "'thawed'" ] ||
19100                 error "(15) unexpected barrier status $b_status"
19101
19102         wait $mkdir_pid || error "(16) mkdir should succeed"
19103         wait $touch_pid || error "(17) touch should succeed"
19104         wait $ln_pid || error "(18) link should succeed"
19105         wait $mv_pid || error "(19) rename should succeed"
19106         wait $rm_pid || error "(20) unlink should succeed"
19107
19108         post_801
19109 }
19110 run_test 801b "modification will be blocked by write barrier"
19111
19112 test_801c() {
19113         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19114
19115         prep_801
19116
19117         stop mds2 || error "(1) Fail to stop mds2"
19118
19119         do_facet mgs $LCTL barrier_freeze $FSNAME 30
19120
19121         local b_status=$(barrier_stat)
19122         [ "$b_status" = "'expired'" -o "$b_status" = "'failed'" ] || {
19123                 do_facet mgs $LCTL barrier_thaw $FSNAME
19124                 error "(2) unexpected barrier status $b_status"
19125         }
19126
19127         do_facet mgs $LCTL barrier_rescan $FSNAME ||
19128                 error "(3) Fail to rescan barrier bitmap"
19129
19130         do_facet mgs $LCTL barrier_freeze $FSNAME 10
19131
19132         b_status=$(barrier_stat)
19133         [ "$b_status" = "'frozen'" ] ||
19134                 error "(4) unexpected barrier status $b_status"
19135
19136         do_facet mgs $LCTL barrier_thaw $FSNAME
19137         b_status=$(barrier_stat)
19138         [ "$b_status" = "'thawed'" ] ||
19139                 error "(5) unexpected barrier status $b_status"
19140
19141         local devname=$(mdsdevname 2)
19142
19143         start mds2 $devname $MDS_MOUNT_OPTS || error "(6) Fail to start mds2"
19144
19145         do_facet mgs $LCTL barrier_rescan $FSNAME ||
19146                 error "(7) Fail to rescan barrier bitmap"
19147
19148         post_801
19149 }
19150 run_test 801c "rescan barrier bitmap"
19151
19152 saved_MGS_MOUNT_OPTS=$MGS_MOUNT_OPTS
19153 saved_MDS_MOUNT_OPTS=$MDS_MOUNT_OPTS
19154 saved_OST_MOUNT_OPTS=$OST_MOUNT_OPTS
19155
19156 cleanup_802() {
19157         trap 0
19158
19159         stopall
19160         MGS_MOUNT_OPTS=$saved_MGS_MOUNT_OPTS
19161         MDS_MOUNT_OPTS=$saved_MDS_MOUNT_OPTS
19162         OST_MOUNT_OPTS=$saved_OST_MOUNT_OPTS
19163         setupall
19164 }
19165
19166 test_802() {
19167
19168         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
19169         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
19170                 skip "Need server version at least 2.9.55"
19171
19172         [[ $ENABLE_QUOTA ]] && skip "Quota enabled for read-only test"
19173
19174         mkdir $DIR/$tdir || error "(1) fail to mkdir"
19175
19176         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
19177                 error "(2) Fail to copy"
19178
19179         trap cleanup_802 EXIT
19180
19181         # sync by force before remount as readonly
19182         sync; sync_all_data; sleep 3; sync_all_data
19183
19184         stopall
19185
19186         MGS_MOUNT_OPTS=$(csa_add "$MGS_MOUNT_OPTS" -o rdonly_dev)
19187         MDS_MOUNT_OPTS=$(csa_add "$MDS_MOUNT_OPTS" -o rdonly_dev)
19188         OST_MOUNT_OPTS=$(csa_add "$OST_MOUNT_OPTS" -o rdonly_dev)
19189
19190         echo "Mount the server as read only"
19191         setupall server_only || error "(3) Fail to start servers"
19192
19193         echo "Mount client without ro should fail"
19194         mount_client $MOUNT &&
19195                 error "(4) Mount client without 'ro' should fail"
19196
19197         echo "Mount client with ro should succeed"
19198         mount_client $MOUNT ro ||
19199                 error "(5) Mount client with 'ro' should succeed"
19200
19201         echo "Modify should be refused"
19202         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
19203
19204         echo "Read should be allowed"
19205         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
19206                 error "(7) Read should succeed under ro mode"
19207
19208         cleanup_802
19209 }
19210 run_test 802 "simulate readonly device"
19211
19212 test_803() {
19213         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19214         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.54) ] &&
19215                 skip "MDS needs to be newer than 2.10.54"
19216
19217         mkdir -p $DIR/$tdir
19218         # Create some objects on all MDTs to trigger related logs objects
19219         for idx in $(seq $MDSCOUNT); do
19220                 $LFS mkdir -c $MDSCOUNT -i $((idx % $MDSCOUNT)) \
19221                         $DIR/$tdir/dir${idx} ||
19222                         error "Fail to create $DIR/$tdir/dir${idx}"
19223         done
19224
19225         sync; sleep 3
19226         echo "before create:"
19227         $LFS df -i $MOUNT
19228         local before_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19229
19230         for ((i=0; i<10; i++)); do
19231                 $LFS mkdir -c 1 -i 1 $DIR/$tdir/foo$i ||
19232                         error "Fail to create $DIR/$tdir/foo$i"
19233         done
19234
19235         sync; sleep 3
19236         echo "after create:"
19237         $LFS df -i $MOUNT
19238         local after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19239
19240         [ $after_used -ge $((before_used + 10)) ] ||
19241                 error "before ($before_used) + 10 > after ($after_used)"
19242
19243         for ((i=0; i<10; i++)); do
19244                 rm -rf $DIR/$tdir/foo$i ||
19245                         error "Fail to remove $DIR/$tdir/foo$i"
19246         done
19247
19248         sleep 3 # avoid MDT return cached statfs
19249         wait_delete_completed
19250         echo "after unlink:"
19251         $LFS df -i $MOUNT
19252         before_used=$after_used
19253         after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19254
19255         [ $after_used -le $((before_used - 8)) ] ||
19256                 error "before ($before_used) - 8 < after ($after_used)"
19257 }
19258 run_test 803 "verify agent object for remote object"
19259
19260 test_804() {
19261         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19262         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.54) ] &&
19263                 skip "MDS needs to be newer than 2.10.54"
19264         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
19265                 skip_env "ldiskfs only test"
19266
19267         mkdir -p $DIR/$tdir
19268         $LFS mkdir -c 1 -i 1 $DIR/$tdir/dir0 ||
19269                 error "Fail to create $DIR/$tdir/dir0"
19270
19271         local fid=$($LFS path2fid $DIR/$tdir/dir0)
19272         local dev=$(mdsdevname 2)
19273
19274         do_facet mds2 "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19275                 grep ${fid} || error "NOT found agent entry for dir0"
19276
19277         $LFS mkdir -c $MDSCOUNT -i 0 $DIR/$tdir/dir1 ||
19278                 error "Fail to create $DIR/$tdir/dir1"
19279
19280         touch $DIR/$tdir/dir1/foo0 ||
19281                 error "Fail to create $DIR/$tdir/dir1/foo0"
19282         fid=$($LFS path2fid $DIR/$tdir/dir1/foo0)
19283         local rc=0
19284
19285         for idx in $(seq $MDSCOUNT); do
19286                 dev=$(mdsdevname $idx)
19287                 do_facet mds${idx} \
19288                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19289                         grep ${fid} && rc=$idx
19290         done
19291
19292         mv $DIR/$tdir/dir1/foo0 $DIR/$tdir/dir1/foo1 ||
19293                 error "Fail to rename foo0 to foo1"
19294         if [ $rc -eq 0 ]; then
19295                 for idx in $(seq $MDSCOUNT); do
19296                         dev=$(mdsdevname $idx)
19297                         do_facet mds${idx} \
19298                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19299                         grep ${fid} && rc=$idx
19300                 done
19301         fi
19302
19303         mv $DIR/$tdir/dir1/foo1 $DIR/$tdir/dir1/foo2 ||
19304                 error "Fail to rename foo1 to foo2"
19305         if [ $rc -eq 0 ]; then
19306                 for idx in $(seq $MDSCOUNT); do
19307                         dev=$(mdsdevname $idx)
19308                         do_facet mds${idx} \
19309                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19310                         grep ${fid} && rc=$idx
19311                 done
19312         fi
19313
19314         [ $rc -ne 0 ] || error "NOT found agent entry for foo"
19315
19316         ln $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir0/guard ||
19317                 error "Fail to link to $DIR/$tdir/dir1/foo2"
19318         mv $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir1/foo0 ||
19319                 error "Fail to rename foo2 to foo0"
19320         unlink $DIR/$tdir/dir1/foo0 ||
19321                 error "Fail to unlink $DIR/$tdir/dir1/foo0"
19322         rm -rf $DIR/$tdir/dir0 ||
19323                 error "Fail to rm $DIR/$tdir/dir0"
19324
19325         for idx in $(seq $MDSCOUNT); do
19326                 dev=$(mdsdevname $idx)
19327                 rc=0
19328
19329                 stop mds${idx}
19330                 run_e2fsck $(facet_active_host mds$idx) $dev -n ||
19331                         rc=$?
19332                 start mds${idx} $dev $MDS_MOUNT_OPTS ||
19333                         error "mount mds$idx failed"
19334                 df $MOUNT > /dev/null 2>&1
19335
19336                 # e2fsck should not return error
19337                 [ $rc -eq 0 ] ||
19338                         error "e2fsck detected error on MDT${idx}: rc=$rc"
19339         done
19340 }
19341 run_test 804 "verify agent entry for remote entry"
19342
19343 cleanup_805() {
19344         do_facet $SINGLEMDS zfs set quota=$old $fsset
19345         unlinkmany $DIR/$tdir/f- 1000000
19346         trap 0
19347 }
19348
19349 test_805() {
19350         local zfs_version=$(do_node $SINGLEMDS cat /sys/module/zfs/version)
19351         [ "$(facet_fstype mds1)" != "zfs" ] &&
19352                 skip "ZFS specific test"
19353         [ $(version_code $zfs_version) -lt $(version_code 0.7.2) ] &&
19354                 skip "netfree not implemented before 0.7"
19355         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.57) ]] ||
19356                 skip "Need MDS version at least 2.10.57"
19357
19358         local fsset
19359         local freekb
19360         local usedkb
19361         local old
19362         local quota
19363         local pref="osd-zfs.lustre-MDT0000."
19364
19365         # limit available space on MDS dataset to meet nospace issue
19366         # quickly. then ZFS 0.7.2 can use reserved space if asked
19367         # properly (using netfree flag in osd_declare_destroy()
19368         fsset=$(do_facet $SINGLEMDS lctl get_param -n $pref.mntdev)
19369         old=$(do_facet $SINGLEMDS zfs get -H quota $fsset | \
19370                 gawk '{print $3}')
19371         freekb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytesfree)
19372         usedkb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytestotal)
19373         let "usedkb=usedkb-freekb"
19374         let "freekb=freekb/2"
19375         if let "freekb > 5000"; then
19376                 let "freekb=5000"
19377         fi
19378         do_facet $SINGLEMDS zfs set quota=$(((usedkb+freekb)*1024)) $fsset
19379         trap cleanup_805 EXIT
19380         mkdir $DIR/$tdir
19381         $LFS setstripe -E 1M -L mdt $DIR/$tdir || error "DoM not working"
19382         createmany -m $DIR/$tdir/f- 1000000 && error "ENOSPC wasn't met"
19383         rm -rf $DIR/$tdir || error "not able to remove"
19384         do_facet $SINGLEMDS zfs set quota=$old $fsset
19385         trap 0
19386 }
19387 run_test 805 "ZFS can remove from full fs"
19388
19389 # Size-on-MDS test
19390 check_lsom_data()
19391 {
19392         local file=$1
19393         local size=$($LFS getsom -s $file)
19394         local expect=$(stat -c %s $file)
19395
19396         [[ $size == $expect ]] ||
19397                 error "$file expected size: $expect, got: $size"
19398
19399         local blocks=$($LFS getsom -b $file)
19400         expect=$(stat -c %b $file)
19401         [[ $blocks == $expect ]] ||
19402                 error "$file expected blocks: $expect, got: $blocks"
19403 }
19404
19405 check_lsom_size()
19406 {
19407         local size=$($LFS getsom -s $1)
19408         local expect=$2
19409
19410         [[ $size == $expect ]] ||
19411                 error "$file expected size: $expect, got: $size"
19412 }
19413
19414 test_806() {
19415         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
19416                 skip "Need MDS version at least 2.11.52" && return
19417
19418         local bs=1048576
19419
19420         touch $DIR/$tfile || error "touch $tfile failed"
19421
19422         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
19423         save_lustre_params client "llite.*.xattr_cache" > $save
19424         lctl set_param llite.*.xattr_cache=0
19425         stack_trap "restore_lustre_params < $save" EXIT
19426
19427         # single-threaded write
19428         echo "Test SOM for single-threaded write"
19429         dd if=/dev/zero of=$DIR/$tfile bs=$bs count=1 ||
19430                 error "write $tfile failed"
19431         check_lsom_size $DIR/$tfile $bs
19432
19433         local num=32
19434         local size=$(($num * $bs))
19435         local offset=0
19436         local i
19437
19438         echo "Test SOM for single client muti-threaded($num) write"
19439         $TRUNCATE $DIR/$tfile 0
19440         for ((i = 0; i < $num; i++)); do
19441                 $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
19442                 local pids[$i]=$!
19443                 offset=$((offset + $bs))
19444         done
19445         for (( i=0; i < $num; i++ )); do
19446                 wait ${pids[$i]}
19447         done
19448         check_lsom_size $DIR/$tfile $size
19449
19450         $TRUNCATE $DIR/$tfile 0
19451         for ((i = 0; i < $num; i++)); do
19452                 offset=$((offset - $bs))
19453                 $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
19454                 local pids[$i]=$!
19455         done
19456         for (( i=0; i < $num; i++ )); do
19457                 wait ${pids[$i]}
19458         done
19459         check_lsom_size $DIR/$tfile $size
19460
19461         # multi-client wirtes
19462         num=$(get_node_count ${CLIENTS//,/ })
19463         size=$(($num * $bs))
19464         offset=0
19465         i=0
19466
19467         echo "Test SOM for muti-client ($num) writes"
19468         $TRUNCATE $DIR/$tfile 0
19469         for client in ${CLIENTS//,/ }; do
19470                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
19471                 local pids[$i]=$!
19472                 i=$((i + 1))
19473                 offset=$((offset + $bs))
19474         done
19475         for (( i=0; i < $num; i++ )); do
19476                 wait ${pids[$i]}
19477         done
19478         check_lsom_size $DIR/$tfile $offset
19479
19480         i=0
19481         $TRUNCATE $DIR/$tfile 0
19482         for client in ${CLIENTS//,/ }; do
19483                 offset=$((offset - $bs))
19484                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
19485                 local pids[$i]=$!
19486                 i=$((i + 1))
19487         done
19488         for (( i=0; i < $num; i++ )); do
19489                 wait ${pids[$i]}
19490         done
19491         check_lsom_size $DIR/$tfile $size
19492
19493         # verify truncate
19494         echo "Test SOM for truncate"
19495         $TRUNCATE $DIR/$tfile 1048576
19496         check_lsom_size $DIR/$tfile 1048576
19497         $TRUNCATE $DIR/$tfile 1234
19498         check_lsom_size $DIR/$tfile 1234
19499
19500         # verify SOM blocks count
19501         echo "Verify SOM block count"
19502         $TRUNCATE $DIR/$tfile 0
19503         $MULTIOP $DIR/$tfile oO_TRUNC:O_RDWR:w1048576YSc ||
19504                 error "failed to write file $tfile"
19505         check_lsom_data $DIR/$tfile
19506 }
19507 run_test 806 "Verify Lazy Size on MDS"
19508
19509 test_807() {
19510         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
19511                 skip "Need MDS version at least 2.11.52" && return
19512
19513         # Registration step
19514         changelog_register || error "changelog_register failed"
19515         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
19516         changelog_users $SINGLEMDS | grep -q $cl_user ||
19517                 error "User $cl_user not found in changelog_users"
19518
19519         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
19520         save_lustre_params client "llite.*.xattr_cache" > $save
19521         lctl set_param llite.*.xattr_cache=0
19522         stack_trap "restore_lustre_params < $save" EXIT
19523
19524         rm -rf $DIR/$tdir || error "rm $tdir failed"
19525         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
19526         touch $DIR/$tdir/trunc || error "touch $tdir/trunc failed"
19527         $TRUNCATE $DIR/$tdir/trunc 1024 || error "truncate $tdir/trunc failed"
19528         $TRUNCATE $DIR/$tdir/trunc 1048576 ||
19529                 error "truncate $tdir/trunc failed"
19530
19531         local bs=1048576
19532         dd if=/dev/zero of=$DIR/$tdir/single_dd bs=$bs count=1 ||
19533                 error "write $tfile failed"
19534
19535         # multi-client wirtes
19536         local num=$(get_node_count ${CLIENTS//,/ })
19537         local offset=0
19538         local i=0
19539
19540         echo "Test SOM for muti-client ($num) writes"
19541         touch $DIR/$tfile || error "touch $tfile failed"
19542         $TRUNCATE $DIR/$tfile 0
19543         for client in ${CLIENTS//,/ }; do
19544                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
19545                 local pids[$i]=$!
19546                 i=$((i + 1))
19547                 offset=$((offset + $bs))
19548         done
19549         for (( i=0; i < $num; i++ )); do
19550                 wait ${pids[$i]}
19551         done
19552
19553         sleep 5
19554         $LSOM_SYNC -u $cl_user -m $FSNAME-MDT0000 $MOUNT
19555         check_lsom_data $DIR/$tdir/trunc
19556         check_lsom_data $DIR/$tdir/single_dd
19557         check_lsom_data $DIR/$tfile
19558
19559         rm -rf $DIR/$tdir
19560         # Deregistration step
19561         changelog_deregister || error "changelog_deregister failed"
19562 }
19563 run_test 807 "verify LSOM syncing tool"
19564
19565 #
19566 # tests that do cleanup/setup should be run at the end
19567 #
19568
19569 test_900() {
19570         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19571         local ls
19572
19573         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
19574         $LCTL set_param fail_loc=0x903
19575
19576         cancel_lru_locks MGC
19577
19578         FAIL_ON_ERROR=true cleanup
19579         FAIL_ON_ERROR=true setup
19580 }
19581 run_test 900 "umount should not race with any mgc requeue thread"
19582
19583 complete $SECONDS
19584 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
19585 check_and_cleanup_lustre
19586 if [ "$I_MOUNTED" != "yes" ]; then
19587         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
19588 fi
19589 exit_status