Whamcloud - gitweb
LU-10600 tests: clean up sanity tests 64d and 65k
[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
12 ALWAYS_EXCEPT="$SANITY_EXCEPT  42a     42b     42c"
13 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
14
15 # skipped tests: LU-8411 LU-9096 LU-9054
16 ALWAYS_EXCEPT="  407     253     312     $ALWAYS_EXCEPT"
17
18 # Check Grants after these tests
19 GRANT_CHECK_LIST="$GRANT_CHECK_LIST 42a 42b 42c 42d 42e 63a 63b 64a 64b 64c"
20
21 SRCDIR=$(cd $(dirname $0); echo $PWD)
22 export PATH=$PATH:/sbin
23
24 TMP=${TMP:-/tmp}
25 OSC=${OSC:-"osc"}
26
27 CC=${CC:-cc}
28 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
29 CREATETEST=${CREATETEST:-createtest}
30 LFS=${LFS:-lfs}
31 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
32 LCTL=${LCTL:-lctl}
33 OPENFILE=${OPENFILE:-openfile}
34 OPENUNLINK=${OPENUNLINK:-openunlink}
35 export MULTIOP=${MULTIOP:-multiop}
36 READS=${READS:-"reads"}
37 MUNLINK=${MUNLINK:-munlink}
38 SOCKETSERVER=${SOCKETSERVER:-socketserver}
39 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
40 MEMHOG=${MEMHOG:-memhog}
41 DIRECTIO=${DIRECTIO:-directio}
42 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
43 STRIPES_PER_OBJ=-1
44 CHECK_GRANT=${CHECK_GRANT:-"yes"}
45 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
46 export PARALLEL=${PARALLEL:-"no"}
47
48 export NAME=${NAME:-local}
49
50 SAVE_PWD=$PWD
51
52 CLEANUP=${CLEANUP:-:}
53 SETUP=${SETUP:-:}
54 TRACE=${TRACE:-""}
55 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
56 LUSTRE_TESTS_API_DIR=${LUSTRE_TESTS_API_DIR:-${LUSTRE}/tests/clientapi}
57 . $LUSTRE/tests/test-framework.sh
58 init_test_env $@
59 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
60 init_logging
61
62 #                                  5          12          (min)"
63 [ "$SLOW" = "no" ] && EXCEPT_SLOW="27m 64b 68 71 115 300o"
64
65 if [ $(facet_fstype $SINGLEMDS) = "zfs" ]; then
66         # bug number for skipped test: LU-1957
67         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  180"
68         #                                               13    (min)"
69         [ "$SLOW" = "no" ] && EXCEPT_SLOW="$EXCEPT_SLOW 51b"
70 fi
71
72 # Get the SLES version so we can make decisions on if a test should be run
73 #
74 # Returns a version string that should only be used in comparing
75 # strings returned by version_code()
76
77 sles_version_code()
78 {
79         local version=$(grep VERSION_ID /etc/os-release | cut -d'"' -f2)
80
81         # All SuSE Linux versions have one decimal. version_code expects two
82         local sles_version=$version.0
83         version_code $sles_version
84 }
85
86 if [ -r /etc/SuSE-release ]; then
87         sles_version=$(sles_version_code)
88         [ $sles_version -lt $(version_code 11.4.0) ] &&
89                 # bug number for skipped test: LU-4341
90                 ALWAYS_EXCEPT="$ALWAYS_EXCEPT  170"
91         [ $sles_version -lt $(version_code 12.0.0) ] &&
92                 # bug number for skipped test: LU-3703
93                 ALWAYS_EXCEPT="$ALWAYS_EXCEPT  234"
94 fi
95
96 FAIL_ON_ERROR=false
97
98 cleanup() {
99         echo -n "cln.."
100         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
101         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
102 }
103 setup() {
104         echo -n "mnt.."
105         load_modules
106         setupall || exit 10
107         echo "done"
108 }
109
110 check_swap_layouts_support()
111 {
112         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
113                 { skip "Does not support layout lock."; return 0; }
114         return 1
115 }
116
117 check_and_setup_lustre
118 DIR=${DIR:-$MOUNT}
119 assert_DIR
120
121 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid |
122         awk '{ gsub(/_UUID/,""); print $1 }' | head -n1)
123 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
124
125 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
126 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
127 rm -rf $DIR/[Rdfs][0-9]*
128
129 # $RUNAS_ID may get set incorrectly somewhere else
130 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
131
132 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
133
134 build_test_filter
135
136 if [ "${ONLY}" = "MOUNT" ] ; then
137         echo "Lustre is up, please go on"
138         exit
139 fi
140
141 echo "preparing for tests involving mounts"
142 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
143 touch $EXT2_DEV
144 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
145 echo # add a newline after mke2fs.
146
147 umask 077
148
149 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
150 lctl set_param debug=-1 2> /dev/null || true
151 test_0a() {
152         touch $DIR/$tfile
153         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
154         rm $DIR/$tfile
155         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
156 }
157 run_test 0a "touch; rm ====================="
158
159 test_0b() {
160         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
161         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
162 }
163 run_test 0b "chmod 0755 $DIR ============================="
164
165 test_0c() {
166         $LCTL get_param mdc.*.import | grep "state: FULL" ||
167                 error "import not FULL"
168         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
169                 error "bad target"
170 }
171 run_test 0c "check import proc"
172
173 test_0d() { # LU-3397
174         [ $(lustre_version_code mgs) -lt $(version_code 2.10.57) ] &&
175                 skip "proc exports not supported before 2.10.57" && return
176
177         local mgs_exp="mgs.MGS.exports"
178         local client_uuid=$($LCTL get_param -n mgc.*.uuid)
179         local exp_client_nid
180         local exp_client_version
181         local exp_val
182         local imp_val
183         local temp_imp=$DIR/$tfile.import
184         local temp_exp=$DIR/$tfile.export
185
186         # save mgc import file to $temp_imp
187         $LCTL get_param mgc.*.import | tee $temp_imp
188         # Check if client uuid is found in MGS export
189         for exp_client_nid in $(do_facet mgs $LCTL get_param -N $mgs_exp.*); do
190                 [ $(do_facet mgs $LCTL get_param $exp_client_nid.uuid) == \
191                         $client_uuid ] &&
192                         break;
193         done
194         # save mgs export file to $temp_exp
195         do_facet mgs $LCTL get_param $exp_client_nid.export | tee $temp_exp
196
197         # Compare the value of field "connect_flags"
198         imp_val=$(grep "connect_flags" $temp_imp)
199         exp_val=$(grep "connect_flags" $temp_exp)
200         [ "$exp_val" == "$imp_val" ] ||
201                 error "export flags '$exp_val' != import flags '$imp_val'"
202
203         # Compare the value of client version
204         exp_client_version=$(awk '/target_version:/ { print $2 }' $temp_exp)
205         exp_val=$(version_code $exp_client_version)
206         imp_val=$(lustre_version_code client)
207         [ "$exp_val" == "$imp_val" ] ||
208                 error "export client version '$exp_val' != '$imp_val'"
209 }
210 run_test 0d "check export proc ============================="
211
212 test_1() {
213         test_mkdir $DIR/$tdir
214         test_mkdir $DIR/$tdir/d2
215         mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
216         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
217         rmdir $DIR/$tdir/d2
218         rmdir $DIR/$tdir
219         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
220 }
221 run_test 1 "mkdir; remkdir; rmdir"
222
223 test_2() {
224         test_mkdir $DIR/$tdir
225         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
226         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
227         rm -r $DIR/$tdir
228         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
229 }
230 run_test 2 "mkdir; touch; rmdir; check file"
231
232 test_3() {
233         test_mkdir $DIR/$tdir
234         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
235         touch $DIR/$tdir/$tfile
236         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
237         rm -r $DIR/$tdir
238         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
239 }
240 run_test 3 "mkdir; touch; rmdir; check dir"
241
242 # LU-4471 - failed rmdir on remote directories still removes directory on MDT0
243 test_4() {
244         test_mkdir -i 1 $DIR/$tdir
245
246         touch $DIR/$tdir/$tfile ||
247                 error "Create file under remote directory failed"
248
249         rmdir $DIR/$tdir &&
250                 error "Expect error removing in-use dir $DIR/$tdir"
251
252         test -d $DIR/$tdir || error "Remote directory disappeared"
253
254         rm -rf $DIR/$tdir || error "remove remote dir error"
255 }
256 run_test 4 "mkdir; touch dir/file; rmdir; checkdir (expect error)"
257
258 test_5() {
259         test_mkdir $DIR/$tdir
260         test_mkdir $DIR/$tdir/d2
261         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
262         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
263         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
264 }
265 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2"
266
267 test_6a() {
268         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
269         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
270         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
271                 error "$tfile does not have perm 0666 or UID $UID"
272         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
273         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
274                 error "$tfile should be 0666 and owned by UID $UID"
275 }
276 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
277
278 test_6c() {
279         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
280         touch $DIR/$tfile
281         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
282         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
283                 error "$tfile should be owned by UID $RUNAS_ID"
284         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
285         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
286                 error "$tfile should be owned by UID $RUNAS_ID"
287 }
288 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
289
290 test_6e() {
291         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
292         touch $DIR/$tfile
293         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
294         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
295                 error "$tfile should be owned by GID $UID"
296         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
297         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
298                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
299 }
300 run_test 6e "touch+chgrp $tfile; $RUNAS chgrp $tfile (should return error)"
301
302 test_6g() {
303         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
304         test_mkdir $DIR/$tdir
305         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
306         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
307         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
308         test_mkdir $DIR/$tdir/d/subdir
309         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
310                 error "$tdir/d/subdir should be GID $RUNAS_GID"
311         if [[ $MDSCOUNT -gt 1 ]]; then
312                 # check remote dir sgid inherite
313                 $LFS mkdir -i 0 $DIR/$tdir.local ||
314                         error "mkdir $tdir.local failed"
315                 chmod g+s $DIR/$tdir.local ||
316                         error "chmod $tdir.local failed"
317                 chgrp $RUNAS_GID $DIR/$tdir.local ||
318                         error "chgrp $tdir.local failed"
319                 $LFS mkdir -i 1 $DIR/$tdir.local/$tdir.remote ||
320                         error "mkdir $tdir.remote failed"
321                 $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir.local/$tdir.remote ||
322                         error "$tdir.remote should be owned by $UID.$RUNAS_ID"
323                 $CHECKSTAT -p 02755 $DIR/$tdir.local/$tdir.remote ||
324                         error "$tdir.remote should be mode 02755"
325         fi
326 }
327 run_test 6g "verify new dir in sgid dir inherits group"
328
329 test_6h() { # bug 7331
330         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
331         touch $DIR/$tfile || error "touch failed"
332         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
333         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
334                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
335         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
336                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
337 }
338 run_test 6h "$RUNAS chown RUNAS_ID.0 .../$tfile (should return error)"
339
340 test_7a() {
341         test_mkdir $DIR/$tdir
342         $MCREATE $DIR/$tdir/$tfile
343         chmod 0666 $DIR/$tdir/$tfile
344         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
345                 error "$tdir/$tfile should be mode 0666"
346 }
347 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
348
349 test_7b() {
350         if [ ! -d $DIR/$tdir ]; then
351                 test_mkdir $DIR/$tdir
352         fi
353         $MCREATE $DIR/$tdir/$tfile
354         echo -n foo > $DIR/$tdir/$tfile
355         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
356         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
357 }
358 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
359
360 test_8() {
361         test_mkdir $DIR/$tdir
362         touch $DIR/$tdir/$tfile
363         chmod 0666 $DIR/$tdir/$tfile
364         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
365                 error "$tfile mode not 0666"
366 }
367 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
368
369 test_9() {
370         test_mkdir $DIR/$tdir
371         test_mkdir $DIR/$tdir/d2
372         test_mkdir $DIR/$tdir/d2/d3
373         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
374 }
375 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
376
377 test_10() {
378         test_mkdir $DIR/$tdir
379         test_mkdir $DIR/$tdir/d2
380         touch $DIR/$tdir/d2/$tfile
381         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
382                 error "$tdir/d2/$tfile not a file"
383 }
384 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
385
386 test_11() {
387         test_mkdir $DIR/$tdir
388         test_mkdir $DIR/$tdir/d2
389         chmod 0666 $DIR/$tdir/d2
390         chmod 0705 $DIR/$tdir/d2
391         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
392                 error "$tdir/d2 mode not 0705"
393 }
394 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
395
396 test_12() {
397         test_mkdir $DIR/$tdir
398         touch $DIR/$tdir/$tfile
399         chmod 0666 $DIR/$tdir/$tfile
400         chmod 0654 $DIR/$tdir/$tfile
401         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
402                 error "$tdir/d2 mode not 0654"
403 }
404 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
405
406 test_13() {
407         test_mkdir $DIR/$tdir
408         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
409         >  $DIR/$tdir/$tfile
410         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
411                 error "$tdir/$tfile size not 0 after truncate"
412 }
413 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
414
415 test_14() {
416         test_mkdir $DIR/$tdir
417         touch $DIR/$tdir/$tfile
418         rm $DIR/$tdir/$tfile
419         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
420 }
421 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
422
423 test_15() {
424         test_mkdir $DIR/$tdir
425         touch $DIR/$tdir/$tfile
426         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
427         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
428                 error "$tdir/${tfile_2} not a file after rename"
429         rm $DIR/$tdir/${tfile}_2 || error "unlink failed after rename"
430 }
431 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
432
433 test_16() {
434         test_mkdir $DIR/$tdir
435         touch $DIR/$tdir/$tfile
436         rm -rf $DIR/$tdir/$tfile
437         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
438 }
439 run_test 16 "touch .../d16/f; rm -rf .../d16/f"
440
441 test_17a() {
442         test_mkdir $DIR/$tdir
443         touch $DIR/$tdir/$tfile
444         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
445         ls -l $DIR/$tdir
446         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
447                 error "$tdir/l-exist not a symlink"
448         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
449                 error "$tdir/l-exist not referencing a file"
450         rm -f $DIR/$tdir/l-exist
451         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
452 }
453 run_test 17a "symlinks: create, remove (real)"
454
455 test_17b() {
456         test_mkdir $DIR/$tdir
457         ln -s no-such-file $DIR/$tdir/l-dangle
458         ls -l $DIR/$tdir
459         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
460                 error "$tdir/l-dangle not referencing no-such-file"
461         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
462                 error "$tdir/l-dangle not referencing non-existent file"
463         rm -f $DIR/$tdir/l-dangle
464         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
465 }
466 run_test 17b "symlinks: create, remove (dangling)"
467
468 test_17c() { # bug 3440 - don't save failed open RPC for replay
469         test_mkdir $DIR/$tdir
470         ln -s foo $DIR/$tdir/$tfile
471         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
472 }
473 run_test 17c "symlinks: open dangling (should return error)"
474
475 test_17d() {
476         test_mkdir $DIR/$tdir
477         ln -s foo $DIR/$tdir/$tfile
478         touch $DIR/$tdir/$tfile || error "creating to new symlink"
479 }
480 run_test 17d "symlinks: create dangling"
481
482 test_17e() {
483         test_mkdir $DIR/$tdir
484         local foo=$DIR/$tdir/$tfile
485         ln -s $foo $foo || error "create symlink failed"
486         ls -l $foo || error "ls -l failed"
487         ls $foo && error "ls not failed" || true
488 }
489 run_test 17e "symlinks: create recursive symlink (should return error)"
490
491 test_17f() {
492         test_mkdir $DIR/$tdir
493         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/$tdir/111
494         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/$tdir/222
495         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/$tdir/333
496         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/$tdir/444
497         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/$tdir/555
498         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
499         ls -l  $DIR/$tdir
500 }
501 run_test 17f "symlinks: long and very long symlink name"
502
503 # str_repeat(S, N) generate a string that is string S repeated N times
504 str_repeat() {
505         local s=$1
506         local n=$2
507         local ret=''
508         while [ $((n -= 1)) -ge 0 ]; do
509                 ret=$ret$s
510         done
511         echo $ret
512 }
513
514 # Long symlinks and LU-2241
515 test_17g() {
516         test_mkdir $DIR/$tdir
517         local TESTS="59 60 61 4094 4095"
518
519         # Fix for inode size boundary in 2.1.4
520         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
521                 TESTS="4094 4095"
522
523         # Patch not applied to 2.2 or 2.3 branches
524         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
525         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
526                 TESTS="4094 4095"
527
528         # skip long symlink name for rhel6.5.
529         # rhel6.5 has a limit (PATH_MAX - sizeof(struct filename))
530         grep -q '6.5' /etc/redhat-release &>/dev/null &&
531                 TESTS="59 60 61 4062 4063"
532
533         for i in $TESTS; do
534                 local SYMNAME=$(str_repeat 'x' $i)
535                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
536                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
537         done
538 }
539 run_test 17g "symlinks: really long symlink name and inode boundaries"
540
541 test_17h() { #bug 17378
542         remote_mds_nodsh && skip "remote MDS with nodsh" && return
543         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
544         local mdt_idx
545         test_mkdir $DIR/$tdir
546         if [[ $MDSCOUNT -gt 1 ]]; then
547                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
548         else
549                 mdt_idx=0
550         fi
551         $LFS setstripe -c -1 $DIR/$tdir
552         #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
553         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
554         touch $DIR/$tdir/$tfile || true
555 }
556 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
557
558 test_17i() { #bug 20018
559         remote_mds_nodsh && skip "remote MDS with nodsh" && return
560         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
561         test_mkdir -c1 $DIR/$tdir
562         local foo=$DIR/$tdir/$tfile
563         local mdt_idx
564         if [[ $MDSCOUNT -gt 1 ]]; then
565                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
566         else
567                 mdt_idx=0
568         fi
569         ln -s $foo $foo || error "create symlink failed"
570 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
571         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
572         ls -l $foo && error "error not detected"
573         return 0
574 }
575 run_test 17i "don't panic on short symlink"
576
577 test_17k() { #bug 22301
578         [[ -z "$(which rsync 2>/dev/null)" ]] &&
579                 skip "no rsync command" && return 0
580         rsync --help | grep -q xattr ||
581                 skip_env "$(rsync --version | head -n1) does not support xattrs"
582         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
583         test_mkdir $DIR/$tdir
584         test_mkdir $DIR/$tdir.new
585         touch $DIR/$tdir/$tfile
586         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
587         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
588                 error "rsync failed with xattrs enabled"
589 }
590 run_test 17k "symlinks: rsync with xattrs enabled"
591
592 test_17l() { # LU-279
593         [[ -z "$(which getfattr 2>/dev/null)" ]] &&
594                 skip "no getfattr command" && return 0
595         test_mkdir $DIR/$tdir
596         touch $DIR/$tdir/$tfile
597         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
598         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
599                 # -h to not follow symlinks. -m '' to list all the xattrs.
600                 # grep to remove first line: '# file: $path'.
601                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
602                 do
603                         lgetxattr_size_check $path $xattr ||
604                                 error "lgetxattr_size_check $path $xattr failed"
605                 done
606         done
607 }
608 run_test 17l "Ensure lgetxattr's returned xattr size is consistent"
609
610 # LU-1540
611 test_17m() {
612         local short_sym="0123456789"
613         local wdir=$DIR/$tdir
614         local i
615
616         remote_mds_nodsh && skip "remote MDS with nodsh" && return
617         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
618         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
619                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
620
621         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
622                 skip "ldiskfs only test" && return 0
623
624         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
625
626         test_mkdir $wdir
627         long_sym=$short_sym
628         # create a long symlink file
629         for ((i = 0; i < 4; ++i)); do
630                 long_sym=${long_sym}${long_sym}
631         done
632
633         echo "create 512 short and long symlink files under $wdir"
634         for ((i = 0; i < 256; ++i)); do
635                 ln -sf ${long_sym}"a5a5" $wdir/long-$i
636                 ln -sf ${short_sym}"a5a5" $wdir/short-$i
637         done
638
639         echo "erase them"
640         rm -f $wdir/*
641         sync
642         wait_delete_completed
643
644         echo "recreate the 512 symlink files with a shorter string"
645         for ((i = 0; i < 512; ++i)); do
646                 # rewrite the symlink file with a shorter string
647                 ln -sf ${long_sym} $wdir/long-$i || error "long_sym failed"
648                 ln -sf ${short_sym} $wdir/short-$i || error "short_sym failed"
649         done
650
651         local mds_index=$(($($LFS getstripe -M $wdir) + 1))
652         local devname=$(mdsdevname $mds_index)
653
654         echo "stop and checking mds${mds_index}:"
655         # e2fsck should not return error
656         stop mds${mds_index}
657         run_e2fsck $(facet_active_host mds${mds_index}) $devname -n
658         rc=$?
659
660         start mds${mds_index} $devname $MDS_MOUNT_OPTS ||
661                 error "start mds${mds_index} failed"
662         df $MOUNT > /dev/null 2>&1
663         [ $rc -eq 0 ] ||
664                 error "e2fsck detected error for short/long symlink: rc=$rc"
665 }
666 run_test 17m "run e2fsck against MDT which contains short/long symlink"
667
668 check_fs_consistency_17n() {
669         local mdt_index
670         local rc=0
671
672         # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
673         # so it only check MDT1/MDT2 instead of all of MDTs.
674         for mdt_index in 1 2; do
675                 local devname=$(mdsdevname $mdt_index)
676                 # e2fsck should not return error
677                 stop mds${mdt_index}
678                 run_e2fsck $(facet_active_host mds$mdt_index) $devname -n ||
679                         rc=$((rc + $?))
680
681                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS ||
682                         error "mount mds$mdt_index failed"
683                 df $MOUNT > /dev/null 2>&1
684         done
685         return $rc
686 }
687
688 test_17n() {
689         local i
690
691         remote_mds_nodsh && skip "remote MDS with nodsh" && return
692         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
693         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
694                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
695
696         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
697                 skip "ldiskfs only test" && return 0
698
699         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
700
701         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
702
703         test_mkdir $DIR/$tdir
704         for ((i=0; i<10; i++)); do
705                 $LFS mkdir -i1 -c2 $DIR/$tdir/remote_dir_${i} ||
706                         error "create remote dir error $i"
707                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
708                         error "create files under remote dir failed $i"
709         done
710
711         check_fs_consistency_17n ||
712                 error "e2fsck report error after create files under remote dir"
713
714         for ((i = 0; i < 10; i++)); do
715                 rm -rf $DIR/$tdir/remote_dir_${i} ||
716                         error "destroy remote dir error $i"
717         done
718
719         check_fs_consistency_17n ||
720                 error "e2fsck report error after unlink files under remote dir"
721
722         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.50) ] &&
723                 skip "lustre < 2.4.50 does not support migrate mv " && return
724
725         for ((i = 0; i < 10; i++)); do
726                 mkdir -p $DIR/$tdir/remote_dir_${i}
727                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
728                         error "create files under remote dir failed $i"
729                 $LFS migrate --mdt-index 1 $DIR/$tdir/remote_dir_${i} ||
730                         error "migrate remote dir error $i"
731         done
732         check_fs_consistency_17n || error "e2fsck report error after migration"
733
734         for ((i = 0; i < 10; i++)); do
735                 rm -rf $DIR/$tdir/remote_dir_${i} ||
736                         error "destroy remote dir error $i"
737         done
738
739         check_fs_consistency_17n || error "e2fsck report error after unlink"
740 }
741 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
742
743 test_17o() {
744         remote_mds_nodsh && skip "remote MDS with nodsh" && return
745         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.64) ] &&
746                 skip "Need MDS version at least 2.3.64" && return
747
748         local wdir=$DIR/${tdir}o
749         local mdt_index
750         local rc=0
751
752         test_mkdir $wdir
753         touch $wdir/$tfile
754         mdt_index=$($LFS getstripe -M $wdir/$tfile)
755         mdt_index=$((mdt_index + 1))
756
757         cancel_lru_locks mdc
758         #fail mds will wait the failover finish then set
759         #following fail_loc to avoid interfer the recovery process.
760         fail mds${mdt_index}
761
762         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
763         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
764         ls -l $wdir/$tfile && rc=1
765         do_facet mds${mdt_index} lctl set_param fail_loc=0
766         [[ $rc -eq 0 ]] || error "stat file should fail"
767 }
768 run_test 17o "stat file with incompat LMA feature"
769
770 test_18() {
771         touch $DIR/$tfile || error "Failed to touch $DIR/$tfile: $?"
772         ls $DIR || error "Failed to ls $DIR: $?"
773 }
774 run_test 18 "touch .../f ; ls ... =============================="
775
776 test_19a() {
777         touch $DIR/$tfile
778         ls -l $DIR
779         rm $DIR/$tfile
780         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
781 }
782 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
783
784 test_19b() {
785         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
786 }
787 run_test 19b "ls -l .../f19 (should return error) =============="
788
789 test_19c() {
790         [ $RUNAS_ID -eq $UID ] &&
791                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
792         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
793 }
794 run_test 19c "$RUNAS touch .../f19 (should return error) =="
795
796 test_19d() {
797         cat $DIR/f19 && error || true
798 }
799 run_test 19d "cat .../f19 (should return error) =============="
800
801 test_20() {
802         touch $DIR/$tfile
803         rm $DIR/$tfile
804         touch $DIR/$tfile
805         rm $DIR/$tfile
806         touch $DIR/$tfile
807         rm $DIR/$tfile
808         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
809 }
810 run_test 20 "touch .../f ; ls -l ..."
811
812 test_21() {
813         test_mkdir $DIR/$tdir
814         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
815         ln -s dangle $DIR/$tdir/link
816         echo foo >> $DIR/$tdir/link
817         cat $DIR/$tdir/dangle
818         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
819         $CHECKSTAT -f -t file $DIR/$tdir/link ||
820                 error "$tdir/link not linked to a file"
821 }
822 run_test 21 "write to dangling link"
823
824 test_22() {
825         local wdir=$DIR/$tdir
826         test_mkdir $wdir
827         chown $RUNAS_ID:$RUNAS_GID $wdir
828         (cd $wdir || error "cd $wdir failed";
829                 $RUNAS tar cf - /etc/hosts /etc/sysconfig/network |
830                 $RUNAS tar xf -)
831         ls -lR $wdir/etc || error "ls -lR $wdir/etc failed"
832         $CHECKSTAT -t dir $wdir/etc || error "checkstat -t dir failed"
833         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $wdir/etc ||
834                 error "checkstat -u failed"
835 }
836 run_test 22 "unpack tar archive as non-root user"
837
838 # was test_23
839 test_23a() {
840         test_mkdir $DIR/$tdir
841         local file=$DIR/$tdir/$tfile
842
843         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
844         openfile -f O_CREAT:O_EXCL $file &&
845                 error "$file recreate succeeded" || true
846 }
847 run_test 23a "O_CREAT|O_EXCL in subdir"
848
849 test_23b() { # bug 18988
850         test_mkdir $DIR/$tdir
851         local file=$DIR/$tdir/$tfile
852
853         rm -f $file
854         echo foo > $file || error "write filed"
855         echo bar >> $file || error "append filed"
856         $CHECKSTAT -s 8 $file || error "wrong size"
857         rm $file
858 }
859 run_test 23b "O_APPEND check"
860
861 # LU-9409, size with O_APPEND and tiny writes
862 test_23c() {
863         local file=$DIR/$tfile
864
865         # single dd
866         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800
867         $CHECKSTAT -s 6400 $file || error "wrong size, expected 6400"
868         rm -f $file
869
870         # racing tiny writes
871         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800 &
872         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800 &
873         wait
874         $CHECKSTAT -s 12800 $file || error "wrong size, expected 12800"
875         rm -f $file
876
877         #racing tiny & normal writes
878         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=4096 count=4 &
879         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=100 &
880         wait
881         $CHECKSTAT -s 17184 $file || error "wrong size, expected 17184"
882         rm -f $file
883
884         #racing tiny & normal writes 2, ugly numbers
885         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=4099 count=11 &
886         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=17 count=173 &
887         wait
888         $CHECKSTAT -s 48030 $file || error "wrong size, expected 48030"
889         rm -f $file
890 }
891 run_test 23c "O_APPEND size checks for tiny writes"
892
893 # rename sanity
894 test_24a() {
895         echo '-- same directory rename'
896         test_mkdir $DIR/$tdir
897         touch $DIR/$tdir/$tfile.1
898         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
899         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
900 }
901 run_test 24a "rename file to non-existent target"
902
903 test_24b() {
904         test_mkdir $DIR/$tdir
905         touch $DIR/$tdir/$tfile.{1,2}
906         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
907         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
908         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
909 }
910 run_test 24b "rename file to existing target"
911
912 test_24c() {
913         test_mkdir $DIR/$tdir
914         test_mkdir $DIR/$tdir/d$testnum.1
915         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
916         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
917         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
918 }
919 run_test 24c "rename directory to non-existent target"
920
921 test_24d() {
922         test_mkdir -c1 $DIR/$tdir
923         test_mkdir -c1 $DIR/$tdir/d$testnum.1
924         test_mkdir -c1 $DIR/$tdir/d$testnum.2
925         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
926         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
927         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
928 }
929 run_test 24d "rename directory to existing target"
930
931 test_24e() {
932         echo '-- cross directory renames --'
933         test_mkdir $DIR/R5a
934         test_mkdir $DIR/R5b
935         touch $DIR/R5a/f
936         mv $DIR/R5a/f $DIR/R5b/g
937         $CHECKSTAT -a $DIR/R5a/f || error "$DIR/R5a/f exists"
938         $CHECKSTAT -t file $DIR/R5b/g || error "$DIR/R5b/g not file type"
939 }
940 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
941
942 test_24f() {
943         test_mkdir $DIR/R6a
944         test_mkdir $DIR/R6b
945         touch $DIR/R6a/f $DIR/R6b/g
946         mv $DIR/R6a/f $DIR/R6b/g
947         $CHECKSTAT -a $DIR/R6a/f || error "$DIR/R6a/f exists"
948         $CHECKSTAT -t file $DIR/R6b/g || error "$DIR/R6b/g not file type"
949 }
950 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
951
952 test_24g() {
953         test_mkdir $DIR/R7a
954         test_mkdir $DIR/R7b
955         test_mkdir $DIR/R7a/d
956         mv $DIR/R7a/d $DIR/R7b/e
957         $CHECKSTAT -a $DIR/R7a/d || error "$DIR/R7a/d exists"
958         $CHECKSTAT -t dir $DIR/R7b/e || error "$DIR/R7b/e not dir type"
959 }
960 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
961
962 test_24h() {
963         test_mkdir -c1 $DIR/R8a
964         test_mkdir -c1 $DIR/R8b
965         test_mkdir -c1 $DIR/R8a/d
966         test_mkdir -c1 $DIR/R8b/e
967         mrename $DIR/R8a/d $DIR/R8b/e
968         $CHECKSTAT -a $DIR/R8a/d || error "$DIR/R8a/d exists"
969         $CHECKSTAT -t dir $DIR/R8b/e || error "$DIR/R8b/e not dir type"
970 }
971 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
972
973 test_24i() {
974         echo "-- rename error cases"
975         test_mkdir $DIR/R9
976         test_mkdir $DIR/R9/a
977         touch $DIR/R9/f
978         mrename $DIR/R9/f $DIR/R9/a
979         $CHECKSTAT -t file $DIR/R9/f || error "$DIR/R9/f not file type"
980         $CHECKSTAT -t dir  $DIR/R9/a || error "$DIR/R9/a not dir type"
981         $CHECKSTAT -a $DIR/R9/a/f || error "$DIR/R9/a/f exists"
982 }
983 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
984
985 test_24j() {
986         test_mkdir $DIR/R10
987         mrename $DIR/R10/f $DIR/R10/g
988         $CHECKSTAT -t dir $DIR/R10 || error "$DIR/R10 not dir type"
989         $CHECKSTAT -a $DIR/R10/f || error "$DIR/R10/f exists"
990         $CHECKSTAT -a $DIR/R10/g || error "$DIR/R10/g exists"
991 }
992 run_test 24j "source does not exist ============================"
993
994 test_24k() {
995         test_mkdir $DIR/R11a
996         test_mkdir $DIR/R11a/d
997         touch $DIR/R11a/f
998         mv $DIR/R11a/f $DIR/R11a/d
999         $CHECKSTAT -a $DIR/R11a/f || error "$DIR/R11a/f exists"
1000         $CHECKSTAT -t file $DIR/R11a/d/f || error "$DIR/R11a/d/f not file type"
1001 }
1002 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
1003
1004 # bug 2429 - rename foo foo foo creates invalid file
1005 test_24l() {
1006         f="$DIR/f24l"
1007         $MULTIOP $f OcNs || error "rename of ${f} to itself failed"
1008 }
1009 run_test 24l "Renaming a file to itself ========================"
1010
1011 test_24m() {
1012         f="$DIR/f24m"
1013         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
1014         # on ext3 this does not remove either the source or target files
1015         # though the "expected" operation would be to remove the source
1016         $CHECKSTAT -t file ${f} || error "${f} missing"
1017         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
1018 }
1019 run_test 24m "Renaming a file to a hard link to itself ========="
1020
1021 test_24n() {
1022     f="$DIR/f24n"
1023     # this stats the old file after it was renamed, so it should fail
1024     touch ${f}
1025     $CHECKSTAT ${f} || error "${f} missing"
1026     mv ${f} ${f}.rename
1027     $CHECKSTAT ${f}.rename || error "${f}.rename missing"
1028     $CHECKSTAT -a ${f} || error "${f} exists"
1029 }
1030 run_test 24n "Statting the old file after renaming (Posix rename 2)"
1031
1032 test_24o() {
1033         test_mkdir $DIR/$tdir
1034         rename_many -s random -v -n 10 $DIR/$tdir
1035 }
1036 run_test 24o "rename of files during htree split"
1037
1038 test_24p() {
1039         test_mkdir $DIR/R12a
1040         test_mkdir $DIR/R12b
1041         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
1042         mrename $DIR/R12a $DIR/R12b
1043         $CHECKSTAT -a $DIR/R12a || error "$DIR/R12a exists"
1044         $CHECKSTAT -t dir $DIR/R12b || error "$DIR/R12b not dir type"
1045         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
1046         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
1047 }
1048 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
1049
1050 cleanup_multiop_pause() {
1051         trap 0
1052         kill -USR1 $MULTIPID
1053 }
1054
1055 test_24q() {
1056         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1057         test_mkdir $DIR/R13a
1058         test_mkdir $DIR/R13b
1059         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
1060         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
1061         MULTIPID=$!
1062
1063         trap cleanup_multiop_pause EXIT
1064         mrename $DIR/R13a $DIR/R13b
1065         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
1066         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
1067         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
1068         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
1069         cleanup_multiop_pause
1070         wait $MULTIPID || error "multiop close failed"
1071 }
1072 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
1073
1074 test_24r() { #bug 3789
1075         test_mkdir $DIR/R14a
1076         test_mkdir $DIR/R14a/b
1077         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
1078         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
1079         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
1080 }
1081 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
1082
1083 test_24s() {
1084         test_mkdir $DIR/R15a
1085         test_mkdir $DIR/R15a/b
1086         test_mkdir $DIR/R15a/b/c
1087         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
1088         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
1089         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
1090 }
1091 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
1092 test_24t() {
1093         test_mkdir $DIR/R16a
1094         test_mkdir $DIR/R16a/b
1095         test_mkdir $DIR/R16a/b/c
1096         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1097         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1098         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1099 }
1100 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1101
1102 test_24u() { # bug12192
1103         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error "multiop failed"
1104         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1105 }
1106 run_test 24u "create stripe file"
1107
1108 page_size() {
1109         local size
1110         size=$(getconf PAGE_SIZE 2>/dev/null)
1111         echo -n ${size:-4096}
1112 }
1113
1114 simple_cleanup_common() {
1115         local rc=0
1116         trap 0
1117         [ -z "$DIR" -o -z "$tdir" ] && return 0
1118
1119         local start=$SECONDS
1120         rm -rf $DIR/$tdir
1121         rc=$?
1122         wait_delete_completed
1123         echo "cleanup time $((SECONDS - start))"
1124         return $rc
1125 }
1126
1127 max_pages_per_rpc() {
1128         local mdtname="$(printf "MDT%04x" ${1:-0})"
1129         $LCTL get_param -n mdc.*$mdtname*.max_pages_per_rpc
1130 }
1131
1132 test_24v() {
1133         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1134         local nrfiles=${COUNT:-100000}
1135         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1136         [ $(facet_fstype $SINGLEMDS) = "zfs" ] && nrfiles=${COUNT:-10000}
1137
1138         local fname="$DIR/$tdir/$tfile"
1139         test_mkdir "$(dirname $fname)"
1140         # assume MDT0000 has the fewest inodes
1141         local stripes=$($LFS getdirstripe -c $(dirname $fname))
1142         local free_inodes=$(($(mdt_free_inodes 0) * stripes))
1143         [[ $free_inodes -lt $nrfiles ]] && nrfiles=$free_inodes
1144
1145         trap simple_cleanup_common EXIT
1146
1147         createmany -m "$fname" $nrfiles
1148
1149         cancel_lru_locks mdc
1150         lctl set_param mdc.*.stats clear
1151
1152         # was previously test_24D: LU-6101
1153         # readdir() returns correct number of entries after cursor reload
1154         local num_ls=$(ls $DIR/$tdir | wc -l)
1155         local num_uniq=$(ls $DIR/$tdir | sort -u | wc -l)
1156         local num_all=$(ls -a $DIR/$tdir | wc -l)
1157         if [ $num_ls -ne $nrfiles -o $num_uniq -ne $nrfiles -o \
1158              $num_all -ne $((nrfiles + 2)) ]; then
1159                 error "Expected $nrfiles files, got $num_ls " \
1160                         "($num_uniq unique $num_all .&..)"
1161         fi
1162         # LU-5 large readdir
1163         # dirent_size = 32 bytes for sizeof(struct lu_dirent) +
1164         #               N bytes for name (len($nrfiles) rounded to 8 bytes) +
1165         #               8 bytes for luda_type (4 bytes rounded to 8 bytes)
1166         # take into account of overhead in lu_dirpage header and end mark in
1167         # each page, plus one in rpc_num calculation.
1168         local dirent_size=$((32 + (${#tfile} | 7) + 1 + 8))
1169         local page_entries=$((($(page_size) - 24) / dirent_size))
1170         local mdt_idx=$($LFS getdirstripe -i $(dirname $fname))
1171         local rpc_pages=$(max_pages_per_rpc $mdt_idx)
1172         local rpc_max=$((nrfiles / (page_entries * rpc_pages) + stripes))
1173         local mds_readpage=$(calc_stats mdc.*.stats mds_readpage)
1174         echo "readpages: $mds_readpage rpc_max: $rpc_max"
1175         (( $mds_readpage < $rpc_max - 2 || $mds_readpage > $rpc_max + 1)) &&
1176                 error "large readdir doesn't take effect: " \
1177                       "$mds_readpage should be about $rpc_max"
1178
1179         simple_cleanup_common
1180 }
1181 run_test 24v "list large directory (test hash collision, b=17560)"
1182
1183 test_24w() { # bug21506
1184         SZ1=234852
1185         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1186         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1187         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1188         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1189         [[ "$SZ1" -eq "$SZ2" ]] ||
1190                 error "Error reading at the end of the file $tfile"
1191 }
1192 run_test 24w "Reading a file larger than 4Gb"
1193
1194 test_24x() {
1195         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1196
1197         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1198                 skip "Need MDS version at least 2.7.56" && return
1199
1200         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1201         local MDTIDX=1
1202         local remote_dir=$DIR/$tdir/remote_dir
1203
1204         test_mkdir $DIR/$tdir
1205         $LFS mkdir -i $MDTIDX $remote_dir ||
1206                 error "create remote directory failed"
1207
1208         test_mkdir $DIR/$tdir/src_dir
1209         touch $DIR/$tdir/src_file
1210         test_mkdir $remote_dir/tgt_dir
1211         touch $remote_dir/tgt_file
1212
1213         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir ||
1214                 error "rename dir cross MDT failed!"
1215
1216         mrename $DIR/$tdir/src_file $remote_dir/tgt_file ||
1217                 error "rename file cross MDT failed!"
1218
1219         touch $DIR/$tdir/ln_file
1220         ln $DIR/$tdir/ln_file $remote_dir/ln_name ||
1221                 error "ln file cross MDT failed"
1222
1223         rm -rf $DIR/$tdir || error "Can not delete directories"
1224 }
1225 run_test 24x "cross MDT rename/link"
1226
1227 test_24y() {
1228         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1229         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1230         local remote_dir=$DIR/$tdir/remote_dir
1231         local mdtidx=1
1232
1233         test_mkdir $DIR/$tdir
1234         $LFS mkdir -i $mdtidx $remote_dir ||
1235                    error "create remote directory failed"
1236
1237         test_mkdir $remote_dir/src_dir
1238         touch $remote_dir/src_file
1239         test_mkdir $remote_dir/tgt_dir
1240         touch $remote_dir/tgt_file
1241
1242         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1243                 error "rename subdir in the same remote dir failed!"
1244
1245         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1246                 error "rename files in the same remote dir failed!"
1247
1248         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1249                 error "link files in the same remote dir failed!"
1250
1251         rm -rf $DIR/$tdir || error "Can not delete directories"
1252 }
1253 run_test 24y "rename/link on the same dir should succeed"
1254
1255 test_24A() { # LU-3182
1256         local NFILES=5000
1257
1258         rm -rf $DIR/$tdir
1259         test_mkdir $DIR/$tdir
1260         trap simple_cleanup_common EXIT
1261         createmany -m $DIR/$tdir/$tfile $NFILES
1262         local t=$(ls $DIR/$tdir | wc -l)
1263         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1264         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1265         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1266                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1267         fi
1268
1269         simple_cleanup_common || error "Can not delete directories"
1270 }
1271 run_test 24A "readdir() returns correct number of entries."
1272
1273 test_24B() { # LU-4805
1274         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1275         local count
1276
1277         test_mkdir $DIR/$tdir
1278         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1279                 error "create striped dir failed"
1280
1281         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1282         [ $count -eq 2 ] || error "Expected 2, got $count"
1283
1284         touch $DIR/$tdir/striped_dir/a
1285
1286         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1287         [ $count -eq 3 ] || error "Expected 3, got $count"
1288
1289         touch $DIR/$tdir/striped_dir/.f
1290
1291         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1292         [ $count -eq 4 ] || error "Expected 4, got $count"
1293
1294         rm -rf $DIR/$tdir || error "Can not delete directories"
1295 }
1296 run_test 24B "readdir for striped dir return correct number of entries"
1297
1298 test_24C() {
1299         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1300
1301         mkdir $DIR/$tdir
1302         mkdir $DIR/$tdir/d0
1303         mkdir $DIR/$tdir/d1
1304
1305         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1306                 error "create striped dir failed"
1307
1308         cd $DIR/$tdir/d0/striped_dir
1309
1310         local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1311         local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1312         local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1313
1314         [ "$d0_ino" = "$parent_ino" ] ||
1315                 error ".. wrong, expect $d0_ino, get $parent_ino"
1316
1317         mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1318                 error "mv striped dir failed"
1319
1320         parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1321
1322         [ "$d1_ino" = "$parent_ino" ] ||
1323                 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1324 }
1325 run_test 24C "check .. in striped dir"
1326
1327 test_24E() {
1328         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
1329         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1330
1331         mkdir -p $DIR/$tdir
1332         mkdir $DIR/$tdir/src_dir
1333         $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
1334                 error "create remote source failed"
1335
1336         touch $DIR/$tdir/src_dir/src_child/a
1337
1338         $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
1339                 error "create remote target dir failed"
1340
1341         $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
1342                 error "create remote target child failed"
1343
1344         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
1345                 error "rename dir cross MDT failed!"
1346
1347         find $DIR/$tdir
1348
1349         $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
1350                 error "src_child still exists after rename"
1351
1352         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
1353                 error "missing file(a) after rename"
1354
1355         rm -rf $DIR/$tdir || error "Can not delete directories"
1356 }
1357 run_test 24E "cross MDT rename/link"
1358
1359 test_25a() {
1360         echo '== symlink sanity ============================================='
1361
1362         test_mkdir $DIR/d25
1363         ln -s d25 $DIR/s25
1364         touch $DIR/s25/foo ||
1365                 error "File creation in symlinked directory failed"
1366 }
1367 run_test 25a "create file in symlinked directory ==============="
1368
1369 test_25b() {
1370         [ ! -d $DIR/d25 ] && test_25a
1371         $CHECKSTAT -t file $DIR/s25/foo || error "$DIR/s25/foo not file type"
1372 }
1373 run_test 25b "lookup file in symlinked directory ==============="
1374
1375 test_26a() {
1376         test_mkdir $DIR/d26
1377         test_mkdir $DIR/d26/d26-2
1378         ln -s d26/d26-2 $DIR/s26
1379         touch $DIR/s26/foo || error "File creation failed"
1380 }
1381 run_test 26a "multiple component symlink ======================="
1382
1383 test_26b() {
1384         test_mkdir -p $DIR/$tdir/d26-2
1385         ln -s $tdir/d26-2/foo $DIR/s26-2
1386         touch $DIR/s26-2 || error "File creation failed"
1387 }
1388 run_test 26b "multiple component symlink at end of lookup ======"
1389
1390 test_26c() {
1391         test_mkdir $DIR/d26.2
1392         touch $DIR/d26.2/foo
1393         ln -s d26.2 $DIR/s26.2-1
1394         ln -s s26.2-1 $DIR/s26.2-2
1395         ln -s s26.2-2 $DIR/s26.2-3
1396         chmod 0666 $DIR/s26.2-3/foo
1397 }
1398 run_test 26c "chain of symlinks"
1399
1400 # recursive symlinks (bug 439)
1401 test_26d() {
1402         ln -s d26-3/foo $DIR/d26-3
1403 }
1404 run_test 26d "create multiple component recursive symlink"
1405
1406 test_26e() {
1407         [ ! -h $DIR/d26-3 ] && test_26d
1408         rm $DIR/d26-3
1409 }
1410 run_test 26e "unlink multiple component recursive symlink"
1411
1412 # recursive symlinks (bug 7022)
1413 test_26f() {
1414         test_mkdir $DIR/$tdir
1415         test_mkdir $DIR/$tdir/$tfile
1416         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1417         test_mkdir -p lndir/bar1
1418         test_mkdir $DIR/$tdir/$tfile/$tfile
1419         cd $tfile                || error "cd $tfile failed"
1420         ln -s .. dotdot          || error "ln dotdot failed"
1421         ln -s dotdot/lndir lndir || error "ln lndir failed"
1422         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1423         output=`ls $tfile/$tfile/lndir/bar1`
1424         [ "$output" = bar1 ] && error "unexpected output"
1425         rm -r $tfile             || error "rm $tfile failed"
1426         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1427 }
1428 run_test 26f "rm -r of a directory which has recursive symlink"
1429
1430 test_27a() {
1431         test_mkdir $DIR/$tdir
1432         $LFS getstripe $DIR/$tdir
1433         $LFS setstripe -c 1 $DIR/$tdir/$tfile || error "setstripe failed"
1434         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1435         cp /etc/hosts $DIR/$tdir/$tfile || error "Can't copy to one stripe file"
1436 }
1437 run_test 27a "one stripe file"
1438
1439 test_27b() {
1440         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1441         test_mkdir $DIR/$tdir
1442         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1443         $LFS getstripe -c $DIR/$tdir/$tfile
1444         [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
1445                 error "two-stripe file doesn't have two stripes"
1446
1447         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1448 }
1449 run_test 27b "create and write to two stripe file"
1450
1451 test_27d() {
1452         test_mkdir $DIR/$tdir
1453         $LFS setstripe -c 0 -i -1 -S 0 $DIR/$tdir/$tfile ||
1454                 error "setstripe failed"
1455         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1456         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1457 }
1458 run_test 27d "create file with default settings"
1459
1460 test_27e() {
1461         # LU-5839 adds check for existed layout before setting it
1462         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1463                 skip "Need MDS version at least 2.7.56" && return
1464         test_mkdir $DIR/$tdir
1465         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1466         $LFS setstripe -c 2 $DIR/$tdir/$tfile && error "setstripe worked twice"
1467         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1468 }
1469 run_test 27e "setstripe existing file (should return error)"
1470
1471 test_27f() {
1472         test_mkdir $DIR/$tdir
1473         $LFS setstripe -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1474                 error "$SETSTRIPE $DIR/$tdir/$tfile failed"
1475         $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1476                 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1477         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1478         $LFS getstripe $DIR/$tdir/$tfile || error "$LFS getstripe failed"
1479 }
1480 run_test 27f "setstripe with bad stripe size (should return error)"
1481
1482 test_27g() {
1483         test_mkdir $DIR/$tdir
1484         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1485         $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "no stripe info" ||
1486                 error "$DIR/$tdir/$tfile has object"
1487 }
1488 run_test 27g "$LFS getstripe with no objects"
1489
1490 test_27i() {
1491         test_mkdir $DIR/$tdir
1492         touch $DIR/$tdir/$tfile || error "touch failed"
1493         [[ $($LFS getstripe -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1494                 error "missing objects"
1495 }
1496 run_test 27i "$LFS getstripe with some objects"
1497
1498 test_27j() {
1499         test_mkdir $DIR/$tdir
1500         $LFS setstripe -i $OSTCOUNT $DIR/$tdir/$tfile &&
1501                 error "setstripe failed" || true
1502 }
1503 run_test 27j "setstripe with bad stripe offset (should return error)"
1504
1505 test_27k() { # bug 2844
1506         test_mkdir $DIR/$tdir
1507         local file=$DIR/$tdir/$tfile
1508         local ll_max_blksize=$((4 * 1024 * 1024))
1509         $LFS setstripe -S 67108864 $file || error "setstripe failed"
1510         local blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1511         [ $blksize -le $ll_max_blksize ] || error "1:$blksize > $ll_max_blksize"
1512         dd if=/dev/zero of=$file bs=4k count=1
1513         blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1514         [ $blksize -le $ll_max_blksize ] || error "2:$blksize > $ll_max_blksize"
1515 }
1516 run_test 27k "limit i_blksize for broken user apps"
1517
1518 test_27l() {
1519         mcreate $DIR/$tfile || error "creating file"
1520         $RUNAS $LFS setstripe -c 1 $DIR/$tfile &&
1521                 error "setstripe should have failed" || true
1522 }
1523 run_test 27l "check setstripe permissions (should return error)"
1524
1525 test_27m() {
1526         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1527
1528         ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1529                    head -n1)
1530         if [[ $ORIGFREE -gt $MAXFREE ]]; then
1531                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1532                 return
1533         fi
1534         trap simple_cleanup_common EXIT
1535         test_mkdir $DIR/$tdir
1536         $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.1
1537         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=1024 count=$MAXFREE &&
1538                 error "dd should fill OST0"
1539         i=2
1540         while $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.$i; do
1541                 i=$((i + 1))
1542                 [ $i -gt 256 ] && break
1543         done
1544         i=$((i + 1))
1545         touch $DIR/$tdir/$tfile.$i
1546         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1547             awk '{print $1}'| grep -w "0") ] &&
1548                 error "OST0 was full but new created file still use it"
1549         i=$((i + 1))
1550         touch $DIR/$tdir/$tfile.$i
1551         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1552             awk '{print $1}'| grep -w "0") ] &&
1553                 error "OST0 was full but new created file still use it"
1554         simple_cleanup_common
1555 }
1556 run_test 27m "create file while OST0 was full"
1557
1558 sleep_maxage() {
1559         local delay=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage |
1560                       head -n 1 | awk '{ print $1 * 2 }')
1561         sleep $delay
1562 }
1563
1564 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1565 # if the OST isn't full anymore.
1566 reset_enospc() {
1567         local OSTIDX=${1:-""}
1568
1569         local list=$(comma_list $(osts_nodes))
1570         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1571
1572         do_nodes $list lctl set_param fail_loc=0
1573         sync    # initiate all OST_DESTROYs from MDS to OST
1574         sleep_maxage
1575 }
1576
1577 exhaust_precreations() {
1578         local OSTIDX=$1
1579         local FAILLOC=$2
1580         local FAILIDX=${3:-$OSTIDX}
1581         local ofacet=ost$((OSTIDX + 1))
1582
1583         test_mkdir -p -c1 $DIR/$tdir
1584         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
1585         local mfacet=mds$((mdtidx + 1))
1586         echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1587
1588         local OST=$(ostname_from_index $OSTIDX)
1589
1590         # on the mdt's osc
1591         local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1592         local last_id=$(do_facet $mfacet lctl get_param -n \
1593                         osc.$mdtosc_proc1.prealloc_last_id)
1594         local next_id=$(do_facet $mfacet lctl get_param -n \
1595                         osc.$mdtosc_proc1.prealloc_next_id)
1596
1597         local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1598         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1599
1600         test_mkdir -p $DIR/$tdir/${OST}
1601         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1602 #define OBD_FAIL_OST_ENOSPC              0x215
1603         do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1604         echo "Creating to objid $last_id on ost $OST..."
1605         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1606         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1607         do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1608         sleep_maxage
1609 }
1610
1611 exhaust_all_precreations() {
1612         local i
1613         for (( i=0; i < OSTCOUNT; i++ )) ; do
1614                 exhaust_precreations $i $1 -1
1615         done
1616 }
1617
1618 test_27n() {
1619         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1620         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1621         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1622         remote_ost_nodsh && skip "remote OST with nodsh" && return
1623
1624         reset_enospc
1625         rm -f $DIR/$tdir/$tfile
1626         exhaust_precreations 0 0x80000215
1627         $LFS setstripe -c -1 $DIR/$tdir || error "setstripe failed"
1628         touch $DIR/$tdir/$tfile || error "touch failed"
1629         $LFS getstripe $DIR/$tdir/$tfile
1630         reset_enospc
1631 }
1632 run_test 27n "create file with some full OSTs"
1633
1634 test_27o() {
1635         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1636         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1637         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1638         remote_ost_nodsh && skip "remote OST with nodsh" && return
1639
1640         reset_enospc
1641         rm -f $DIR/$tdir/$tfile
1642         exhaust_all_precreations 0x215
1643
1644         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1645
1646         reset_enospc
1647         rm -rf $DIR/$tdir/*
1648 }
1649 run_test 27o "create file with all full OSTs (should error)"
1650
1651 test_27p() {
1652         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1653         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1654         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1655         remote_ost_nodsh && skip "remote OST with nodsh" && return
1656
1657         reset_enospc
1658         rm -f $DIR/$tdir/$tfile
1659         test_mkdir $DIR/$tdir
1660
1661         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1662         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1663         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1664
1665         exhaust_precreations 0 0x80000215
1666         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1667         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1668         $LFS getstripe $DIR/$tdir/$tfile
1669
1670         reset_enospc
1671 }
1672 run_test 27p "append to a truncated file with some full OSTs"
1673
1674 test_27q() {
1675         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1676         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1677         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1678         remote_ost_nodsh && skip "remote OST with nodsh" && return
1679
1680         reset_enospc
1681         rm -f $DIR/$tdir/$tfile
1682
1683         test_mkdir $DIR/$tdir
1684         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1685         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||
1686                 error "truncate $DIR/$tdir/$tfile failed"
1687         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1688
1689         exhaust_all_precreations 0x215
1690
1691         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1692         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1693
1694         reset_enospc
1695 }
1696 run_test 27q "append to truncated file with all OSTs full (should error)"
1697
1698 test_27r() {
1699         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1700         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1701         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1702         remote_ost_nodsh && skip "remote OST with nodsh" && return
1703
1704         reset_enospc
1705         rm -f $DIR/$tdir/$tfile
1706         exhaust_precreations 0 0x80000215
1707
1708         $LFS setstripe -i 0 -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1709
1710         reset_enospc
1711 }
1712 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1713
1714 test_27s() { # bug 10725
1715         test_mkdir $DIR/$tdir
1716         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1717         local stripe_count=0
1718         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1719         $LFS setstripe -S $stripe_size -c $stripe_count $DIR/$tdir &&
1720                 error "stripe width >= 2^32 succeeded" || true
1721
1722 }
1723 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1724
1725 test_27t() { # bug 10864
1726         WDIR=$(pwd)
1727         WLFS=$(which lfs)
1728         cd $DIR
1729         touch $tfile
1730         $WLFS getstripe $tfile
1731         cd $WDIR
1732 }
1733 run_test 27t "check that utils parse path correctly"
1734
1735 test_27u() { # bug 4900
1736         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1737         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1738         local index
1739         local list=$(comma_list $(mdts_nodes))
1740
1741 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1742         do_nodes $list $LCTL set_param fail_loc=0x139
1743         test_mkdir -p $DIR/$tdir
1744         trap simple_cleanup_common EXIT
1745         createmany -o $DIR/$tdir/t- 1000
1746         do_nodes $list $LCTL set_param fail_loc=0
1747
1748         TLOG=$TMP/$tfile.getstripe
1749         $LFS getstripe $DIR/$tdir > $TLOG
1750         OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
1751         unlinkmany $DIR/$tdir/t- 1000
1752         trap 0
1753         [[ $OBJS -gt 0 ]] &&
1754                 error "$OBJS objects created on OST-0. See $TLOG" ||
1755                 rm -f $TLOG
1756 }
1757 run_test 27u "skip object creation on OSC w/o objects"
1758
1759 test_27v() { # bug 4900
1760         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1761         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1762         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1763         remote_ost_nodsh && skip "remote OST with nodsh" && return
1764
1765         exhaust_all_precreations 0x215
1766         reset_enospc
1767
1768         $LFS setstripe -c 1 $DIR/$tdir         # 1 stripe / file
1769
1770         touch $DIR/$tdir/$tfile
1771         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1772         # all except ost1
1773         for (( i=1; i < OSTCOUNT; i++ )); do
1774                 do_facet ost$i lctl set_param fail_loc=0x705
1775         done
1776         local START=`date +%s`
1777         createmany -o $DIR/$tdir/$tfile 32
1778
1779         local FINISH=`date +%s`
1780         local TIMEOUT=`lctl get_param -n timeout`
1781         local PROCESS=$((FINISH - START))
1782         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1783                error "$FINISH - $START >= $TIMEOUT / 2"
1784         sleep $((TIMEOUT / 2 - PROCESS))
1785         reset_enospc
1786 }
1787 run_test 27v "skip object creation on slow OST"
1788
1789 test_27w() { # bug 10997
1790         test_mkdir $DIR/$tdir
1791         $LFS setstripe -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1792         [ $($LFS getstripe -S $DIR/$tdir/f0) -ne 65536 ] &&
1793                 error "stripe size $size != 65536" || true
1794         [ $($LFS getstripe -d $DIR/$tdir | grep -c "stripe_count") -eq 0 ] &&
1795                 error "$LFS getstripe -d $DIR/$tdir no 'stripe_count'" || true
1796 }
1797 run_test 27w "check $LFS setstripe -S and getstrip -d options"
1798
1799 test_27wa() {
1800         [[ $OSTCOUNT -lt 2 ]] &&
1801                 skip_env "skipping multiple stripe count/offset test" && return
1802
1803         test_mkdir $DIR/$tdir
1804         for i in $(seq 1 $OSTCOUNT); do
1805                 offset=$((i - 1))
1806                 $LFS setstripe -c $i -i $offset $DIR/$tdir/f$i ||
1807                         error "setstripe -c $i -i $offset failed"
1808                 count=$($LFS getstripe -c $DIR/$tdir/f$i)
1809                 index=$($LFS getstripe -i $DIR/$tdir/f$i)
1810                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1811                 [ $index -ne $offset ] &&
1812                         error "stripe offset $index != $offset" || true
1813         done
1814 }
1815 run_test 27wa "check $LFS setstripe -c -i options"
1816
1817 test_27x() {
1818         remote_ost_nodsh && skip "remote OST with nodsh" && return
1819         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1820         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1821         OFFSET=$(($OSTCOUNT - 1))
1822         OSTIDX=0
1823         local OST=$(ostname_from_index $OSTIDX)
1824
1825         test_mkdir $DIR/$tdir
1826         $LFS setstripe -c 1 $DIR/$tdir  # 1 stripe per file
1827         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1828         sleep_maxage
1829         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1830         for i in $(seq 0 $OFFSET); do
1831                 [ $($LFS getstripe $DIR/$tdir/$tfile$i | grep -A 10 obdidx |
1832                         awk '{print $1}' | grep -w "$OSTIDX") ] &&
1833                 error "OST0 was degraded but new created file still use it"
1834         done
1835         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1836 }
1837 run_test 27x "create files while OST0 is degraded"
1838
1839 test_27y() {
1840         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1841         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1842         remote_ost_nodsh && skip "remote OST with nodsh" && return
1843         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1844
1845         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1846         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1847                 osc.$mdtosc.prealloc_last_id)
1848         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1849                 osc.$mdtosc.prealloc_next_id)
1850         local fcount=$((last_id - next_id))
1851         [[ $fcount -eq 0 ]] && skip "not enough space on OST0" && return
1852         [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
1853
1854         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1855                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1856         local OST_DEACTIVE_IDX=-1
1857         local OSC
1858         local OSTIDX
1859         local OST
1860
1861         for OSC in $MDS_OSCS; do
1862                 OST=$(osc_to_ost $OSC)
1863                 OSTIDX=$(index_from_ostuuid $OST)
1864                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1865                         OST_DEACTIVE_IDX=$OSTIDX
1866                 fi
1867                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1868                         echo $OSC "is Deactivated:"
1869                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1870                 fi
1871         done
1872
1873         OSTIDX=$(index_from_ostuuid $OST)
1874         test_mkdir $DIR/$tdir
1875         $LFS setstripe -c 1 $DIR/$tdir      # 1 stripe / file
1876
1877         for OSC in $MDS_OSCS; do
1878                 OST=$(osc_to_ost $OSC)
1879                 OSTIDX=$(index_from_ostuuid $OST)
1880                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1881                         echo $OST "is degraded:"
1882                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1883                                                 obdfilter.$OST.degraded=1
1884                 fi
1885         done
1886
1887         sleep_maxage
1888         createmany -o $DIR/$tdir/$tfile $fcount
1889
1890         for OSC in $MDS_OSCS; do
1891                 OST=$(osc_to_ost $OSC)
1892                 OSTIDX=$(index_from_ostuuid $OST)
1893                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1894                         echo $OST "is recovered from degraded:"
1895                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1896                                                 obdfilter.$OST.degraded=0
1897                 else
1898                         do_facet $SINGLEMDS lctl --device %$OSC activate
1899                 fi
1900         done
1901
1902         # all osp devices get activated, hence -1 stripe count restored
1903         local stripe_count=0
1904
1905         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1906         # devices get activated.
1907         sleep_maxage
1908         $LFS setstripe -c -1 $DIR/$tfile
1909         stripe_count=$($LFS getstripe -c $DIR/$tfile)
1910         rm -f $DIR/$tfile
1911         [ $stripe_count -ne $OSTCOUNT ] &&
1912                 error "Of $OSTCOUNT OSTs, only $stripe_count is available"
1913         return 0
1914 }
1915 run_test 27y "create files while OST0 is degraded and the rest inactive"
1916
1917 check_seq_oid()
1918 {
1919         log "check file $1"
1920
1921         lmm_count=$($GETSTRIPE -c $1)
1922         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1923         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1924
1925         local old_ifs="$IFS"
1926         IFS=$'[:]'
1927         fid=($($LFS path2fid $1))
1928         IFS="$old_ifs"
1929
1930         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1931         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1932
1933         # compare lmm_seq and lu_fid->f_seq
1934         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1935         # compare lmm_object_id and lu_fid->oid
1936         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1937
1938         # check the trusted.fid attribute of the OST objects of the file
1939         local have_obdidx=false
1940         local stripe_nr=0
1941         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1942                 # skip lines up to and including "obdidx"
1943                 [ -z "$obdidx" ] && break
1944                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1945                 $have_obdidx || continue
1946
1947                 local ost=$((obdidx + 1))
1948                 local dev=$(ostdevname $ost)
1949                 local oid_hex
1950
1951                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1952
1953                 seq=$(echo $seq | sed -e "s/^0x//g")
1954                 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
1955                         oid_hex=$(echo $oid)
1956                 else
1957                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1958                 fi
1959                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1960
1961                 local ff=""
1962                 #
1963                 # Don't unmount/remount the OSTs if we don't need to do that.
1964                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1965                 # update too, until that use mount/ll_decode_filter_fid/mount.
1966                 # Re-enable when debugfs will understand new filter_fid.
1967                 #
1968                 if [ $(facet_fstype ost$ost) == ldiskfs ]; then
1969                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1970                                 $dev 2>/dev/null" | grep "parent=")
1971                 fi
1972                 if [ -z "$ff" ]; then
1973                         stop ost$ost
1974                         mount_fstype ost$ost
1975                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
1976                                 $(facet_mntpt ost$ost)/$obj_file)
1977                         unmount_fstype ost$ost
1978                         start ost$ost $dev $OST_MOUNT_OPTS
1979                         clients_up
1980                 fi
1981
1982                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1983
1984                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1985
1986                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1987                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1988                 #
1989                 # fid: parent=[0x200000400:0x1e:0x0] stripe=1 stripe_count=2 \
1990                 #       stripe_size=1048576 component_id=1 component_start=0 \
1991                 #       component_end=33554432
1992                 local ff_parent=$(sed -e 's/.*parent=.//' <<<$ff)
1993                 local ff_pseq=$(cut -d: -f1 <<<$ff_parent)
1994                 local ff_poid=$(cut -d: -f2 <<<$ff_parent)
1995                 local ff_pstripe
1996                 if grep -q 'stripe=' <<<$ff; then
1997                         ff_pstripe=$(sed -e 's/.*stripe=//' -e 's/ .*//' <<<$ff)
1998                 else
1999                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
2000                         # into f_ver in this case.  See comment on ff_parent.
2001                         ff_pstripe=$(cut -d: -f3 <<<$ff_parent | sed -e 's/]//')
2002                 fi
2003
2004                 # compare lmm_seq and filter_fid->ff_parent.f_seq
2005                 [ $ff_pseq = $lmm_seq ] ||
2006                         error "FF parent SEQ $ff_pseq != $lmm_seq"
2007                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
2008                 [ $ff_poid = $lmm_oid ] ||
2009                         error "FF parent OID $ff_poid != $lmm_oid"
2010                 (($ff_pstripe == $stripe_nr)) ||
2011                         error "FF stripe $ff_pstripe != $stripe_nr"
2012
2013                 stripe_nr=$((stripe_nr + 1))
2014                 [ $(lustre_version_code client) -lt $(version_code 2.9.55) ] &&
2015                         continue
2016                 if grep -q 'stripe_count=' <<<$ff; then
2017                         local ff_scnt=$(sed -e 's/.*stripe_count=//' \
2018                                             -e 's/ .*//' <<<$ff)
2019                         [ $lmm_count = $ff_scnt ] ||
2020                                 error "FF stripe count $lmm_count != $ff_scnt"
2021                 fi
2022         done
2023 }
2024
2025 test_27z() {
2026         remote_ost_nodsh && skip "remote OST with nodsh" && return
2027         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2028         test_mkdir $DIR/$tdir
2029
2030         $LFS setstripe -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
2031                 { error "setstripe -c -1 failed"; return 1; }
2032         # We need to send a write to every object to get parent FID info set.
2033         # This _should_ also work for setattr, but does not currently.
2034         # touch $DIR/$tdir/$tfile-1 ||
2035         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
2036                 { error "dd $tfile-1 failed"; return 2; }
2037         $LFS setstripe -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
2038                 { error "setstripe -c -1 failed"; return 3; }
2039         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
2040                 { error "dd $tfile-2 failed"; return 4; }
2041
2042         # make sure write RPCs have been sent to OSTs
2043         sync; sleep 5; sync
2044
2045         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
2046         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
2047 }
2048 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
2049
2050 test_27A() { # b=19102
2051         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2052
2053         save_layout_restore_at_exit $MOUNT
2054
2055         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
2056         wait_update $HOSTNAME "$GETSTRIPE -c $MOUNT | sed 's/  *//g'" "1" 20 ||
2057                 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
2058         local default_size=$($GETSTRIPE -S $MOUNT)
2059         local default_offset=$($GETSTRIPE -i $MOUNT)
2060         local dsize=$((1024 * 1024))
2061         [ $default_size -eq $dsize ] ||
2062                 error "stripe size $default_size != $dsize"
2063         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
2064 }
2065 run_test 27A "check filesystem-wide default LOV EA values"
2066
2067 test_27B() { # LU-2523
2068         test_mkdir $DIR/$tdir
2069         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
2070         touch $DIR/$tdir/f0
2071         # open f1 with O_LOV_DELAY_CREATE
2072         # rename f0 onto f1
2073         # call setstripe ioctl on open file descriptor for f1
2074         # close
2075         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
2076                 $DIR/$tdir/f0
2077
2078         rm -f $DIR/$tdir/f1
2079         # open f1 with O_LOV_DELAY_CREATE
2080         # unlink f1
2081         # call setstripe ioctl on open file descriptor for f1
2082         # close
2083         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
2084
2085         # Allow multiop to fail in imitation of NFS's busted semantics.
2086         true
2087 }
2088 run_test 27B "call setstripe on open unlinked file/rename victim"
2089
2090 test_27C() { #LU-2871
2091         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs" && return
2092
2093         declare -a ost_idx
2094         local index
2095         local found
2096         local i
2097         local j
2098
2099         test_mkdir $DIR/$tdir
2100         cd $DIR/$tdir
2101         for i in $(seq 0 $((OSTCOUNT - 1))); do
2102                 # set stripe across all OSTs starting from OST$i
2103                 $SETSTRIPE -i $i -c -1 $tfile$i
2104                 # get striping information
2105                 ost_idx=($($GETSTRIPE $tfile$i |
2106                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2107                 echo ${ost_idx[@]}
2108
2109                 # check the layout
2110                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2111                         error "${#ost_idx[@]} != $OSTCOUNT"
2112
2113                 for index in $(seq 0 $((OSTCOUNT - 1))); do
2114                         found=0
2115                         for j in $(echo ${ost_idx[@]}); do
2116                                 if [ $index -eq $j ]; then
2117                                         found=1
2118                                         break
2119                                 fi
2120                         done
2121                         [ $found = 1 ] ||
2122                                 error "Can not find $index in ${ost_idx[@]}"
2123                 done
2124         done
2125 }
2126 run_test 27C "check full striping across all OSTs"
2127
2128 test_27D() {
2129         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2130         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
2131         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2132         local POOL=${POOL:-testpool}
2133         local first_ost=0
2134         local last_ost=$(($OSTCOUNT - 1))
2135         local ost_step=1
2136         local ost_list=$(seq $first_ost $ost_step $last_ost)
2137         local ost_range="$first_ost $last_ost $ost_step"
2138
2139         if ! combined_mgs_mds ; then
2140                 mount_mgs_client
2141         fi
2142
2143         test_mkdir $DIR/$tdir
2144         pool_add $POOL || error "pool_add failed"
2145         pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2146
2147         local skip27D
2148         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ] &&
2149                 skip27D+="-s 29"
2150         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.55) -o \
2151           $(lustre_version_code client) -lt $(version_code 2.9.55) ] &&
2152                 skip27D+=" -s 30,31"
2153         llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT $skip27D ||
2154                 error "llapi_layout_test failed"
2155
2156         destroy_test_pools || error "destroy test pools failed"
2157
2158         if ! combined_mgs_mds ; then
2159                 umount_mgs_client
2160         fi
2161 }
2162 run_test 27D "validate llapi_layout API"
2163
2164 # Verify that default_easize is increased from its initial value after
2165 # accessing a widely striped file.
2166 test_27E() {
2167         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2168         [ $(lustre_version_code client) -lt $(version_code 2.5.57) ] &&
2169                 skip "client does not have LU-3338 fix" && return
2170
2171         # 72 bytes is the minimum space required to store striping
2172         # information for a file striped across one OST:
2173         # (sizeof(struct lov_user_md_v3) +
2174         #  sizeof(struct lov_user_ost_data_v1))
2175         local min_easize=72
2176         $LCTL set_param -n llite.*.default_easize $min_easize ||
2177                 error "lctl set_param failed"
2178         local easize=$($LCTL get_param -n llite.*.default_easize)
2179
2180         [ $easize -eq $min_easize ] ||
2181                 error "failed to set default_easize"
2182
2183         $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2184                 error "setstripe failed"
2185         cat $DIR/$tfile
2186         rm $DIR/$tfile
2187
2188         easize=$($LCTL get_param -n llite.*.default_easize)
2189
2190         [ $easize -gt $min_easize ] ||
2191                 error "default_easize not updated"
2192 }
2193 run_test 27E "check that default extended attribute size properly increases"
2194
2195 test_27F() { # LU-5346/LU-7975
2196         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2197         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.51) ]] &&
2198                 skip "Need MDS version at least 2.8.51" && return
2199         remote_ost_nodsh && skip "remote OST with nodsh" && return
2200
2201         test_mkdir $DIR/$tdir
2202         rm -f $DIR/$tdir/f0
2203         $SETSTRIPE -c 2 $DIR/$tdir
2204
2205         # stop all OSTs to reproduce situation for LU-7975 ticket
2206         for num in $(seq $OSTCOUNT); do
2207                 stop ost$num
2208         done
2209
2210         # open/create f0 with O_LOV_DELAY_CREATE
2211         # truncate f0 to a non-0 size
2212         # close
2213         multiop $DIR/$tdir/f0 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T1050000c
2214
2215         $CHECKSTAT -s 1050000 $DIR/$tdir/f0 || error "checkstat failed"
2216         # open/write it again to force delayed layout creation
2217         cat /etc/hosts > $DIR/$tdir/f0 &
2218         catpid=$!
2219
2220         # restart OSTs
2221         for num in $(seq $OSTCOUNT); do
2222                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
2223                         error "ost$num failed to start"
2224         done
2225
2226         wait $catpid || error "cat failed"
2227
2228         cmp /etc/hosts $DIR/$tdir/f0 || error "cmp failed"
2229         [[ $($GETSTRIPE -c $DIR/$tdir/f0) == 2 ]] || error "wrong stripecount"
2230
2231 }
2232 run_test 27F "Client resend delayed layout creation with non-zero size"
2233
2234 # createtest also checks that device nodes are created and
2235 # then visible correctly (#2091)
2236 test_28() { # bug 2091
2237         test_mkdir $DIR/d28
2238         $CREATETEST $DIR/d28/ct || error "createtest failed"
2239 }
2240 run_test 28 "create/mknod/mkdir with bad file types ============"
2241
2242 test_29() {
2243         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
2244         sync; sleep 1; sync # flush out any dirty pages from previous tests
2245         cancel_lru_locks
2246         test_mkdir $DIR/d29
2247         touch $DIR/d29/foo
2248         log 'first d29'
2249         ls -l $DIR/d29
2250
2251         declare -i LOCKCOUNTORIG=0
2252         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2253                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2254         done
2255         [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
2256
2257         declare -i LOCKUNUSEDCOUNTORIG=0
2258         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2259                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2260         done
2261
2262         log 'second d29'
2263         ls -l $DIR/d29
2264         log 'done'
2265
2266         declare -i LOCKCOUNTCURRENT=0
2267         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2268                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2269         done
2270
2271         declare -i LOCKUNUSEDCOUNTCURRENT=0
2272         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2273                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2274         done
2275
2276         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2277                 $LCTL set_param -n ldlm.dump_namespaces ""
2278                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2279                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2280                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2281                 return 2
2282         fi
2283         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2284                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2285                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2286                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2287                 return 3
2288         fi
2289 }
2290 run_test 29 "IT_GETATTR regression  ============================"
2291
2292 test_30a() { # was test_30
2293         cp $(which ls) $DIR || cp /bin/ls $DIR
2294         $DIR/ls / || error "Can't execute binary from lustre"
2295         rm $DIR/ls
2296 }
2297 run_test 30a "execute binary from Lustre (execve) =============="
2298
2299 test_30b() {
2300         cp `which ls` $DIR || cp /bin/ls $DIR
2301         chmod go+rx $DIR/ls
2302         $RUNAS $DIR/ls / || error "Can't execute binary from lustre as non-root"
2303         rm $DIR/ls
2304 }
2305 run_test 30b "execute binary from Lustre as non-root ==========="
2306
2307 test_30c() { # b=22376
2308         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2309         cp `which ls` $DIR || cp /bin/ls $DIR
2310         chmod a-rw $DIR/ls
2311         cancel_lru_locks mdc
2312         cancel_lru_locks osc
2313         $RUNAS $DIR/ls / || error "Can't execute binary from lustre"
2314         rm -f $DIR/ls
2315 }
2316 run_test 30c "execute binary from Lustre without read perms ===="
2317
2318 test_31a() {
2319         $OPENUNLINK $DIR/f31 $DIR/f31 || error "openunlink failed"
2320         $CHECKSTAT -a $DIR/f31 || error "$DIR/f31 exists"
2321 }
2322 run_test 31a "open-unlink file =================================="
2323
2324 test_31b() {
2325         touch $DIR/f31 || error "touch $DIR/f31 failed"
2326         ln $DIR/f31 $DIR/f31b || error "ln failed"
2327         $MULTIOP $DIR/f31b Ouc || error "multiop failed"
2328         $CHECKSTAT -t file $DIR/f31 || error "$DIR/f31 not file type"
2329 }
2330 run_test 31b "unlink file with multiple links while open ======="
2331
2332 test_31c() {
2333         touch $DIR/f31 || error "touch $DIR/f31 failed"
2334         ln $DIR/f31 $DIR/f31c || error "ln failed"
2335         multiop_bg_pause $DIR/f31 O_uc ||
2336                 error "multiop_bg_pause for $DIR/f31 failed"
2337         MULTIPID=$!
2338         $MULTIOP $DIR/f31c Ouc
2339         kill -USR1 $MULTIPID
2340         wait $MULTIPID
2341 }
2342 run_test 31c "open-unlink file with multiple links ============="
2343
2344 test_31d() {
2345         opendirunlink $DIR/d31d $DIR/d31d || error "opendirunlink failed"
2346         $CHECKSTAT -a $DIR/d31d || error "$DIR/d31d exists"
2347 }
2348 run_test 31d "remove of open directory ========================="
2349
2350 test_31e() { # bug 2904
2351         openfilleddirunlink $DIR/d31e || error "openfilleddirunlink failed"
2352 }
2353 run_test 31e "remove of open non-empty directory ==============="
2354
2355 test_31f() { # bug 4554
2356         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2357         set -vx
2358         test_mkdir $DIR/d31f
2359         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2360         cp /etc/hosts $DIR/d31f
2361         ls -l $DIR/d31f
2362         $GETSTRIPE $DIR/d31f/hosts
2363         multiop_bg_pause $DIR/d31f D_c || return 1
2364         MULTIPID=$!
2365
2366         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2367         test_mkdir $DIR/d31f
2368         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2369         cp /etc/hosts $DIR/d31f
2370         ls -l $DIR/d31f
2371         $GETSTRIPE $DIR/d31f/hosts
2372         multiop_bg_pause $DIR/d31f D_c || return 1
2373         MULTIPID2=$!
2374
2375         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2376         wait $MULTIPID || error "first opendir $MULTIPID failed"
2377
2378         sleep 6
2379
2380         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2381         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2382         set +vx
2383 }
2384 run_test 31f "remove of open directory with open-unlink file ==="
2385
2386 test_31g() {
2387         echo "-- cross directory link --"
2388         test_mkdir -c1 $DIR/${tdir}ga
2389         test_mkdir -c1 $DIR/${tdir}gb
2390         touch $DIR/${tdir}ga/f
2391         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2392         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2393         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2394         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2395         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2396 }
2397 run_test 31g "cross directory link==============="
2398
2399 test_31h() {
2400         echo "-- cross directory link --"
2401         test_mkdir -c1 $DIR/${tdir}
2402         test_mkdir -c1 $DIR/${tdir}/dir
2403         touch $DIR/${tdir}/f
2404         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2405         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2406         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2407         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2408         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2409 }
2410 run_test 31h "cross directory link under child==============="
2411
2412 test_31i() {
2413         echo "-- cross directory link --"
2414         test_mkdir -c1 $DIR/$tdir
2415         test_mkdir -c1 $DIR/$tdir/dir
2416         touch $DIR/$tdir/dir/f
2417         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2418         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2419         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2420         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2421         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2422 }
2423 run_test 31i "cross directory link under parent==============="
2424
2425 test_31j() {
2426         test_mkdir -c1 -p $DIR/$tdir
2427         test_mkdir -c1 -p $DIR/$tdir/dir1
2428         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2429         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2430         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2431         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2432         return 0
2433 }
2434 run_test 31j "link for directory==============="
2435
2436 test_31k() {
2437         test_mkdir -c1 -p $DIR/$tdir
2438         touch $DIR/$tdir/s
2439         touch $DIR/$tdir/exist
2440         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2441         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2442         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2443         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2444         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2445         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2446         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2447         return 0
2448 }
2449 run_test 31k "link to file: the same, non-existing, dir==============="
2450
2451 test_31m() {
2452         mkdir $DIR/d31m
2453         touch $DIR/d31m/s
2454         mkdir $DIR/d31m2
2455         touch $DIR/d31m2/exist
2456         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2457         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2458         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2459         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2460         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2461         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2462         return 0
2463 }
2464 run_test 31m "link to file: the same, non-existing, dir==============="
2465
2466 test_31n() {
2467         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2468         nlink=$(stat --format=%h $DIR/$tfile)
2469         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2470         local fd=$(free_fd)
2471         local cmd="exec $fd<$DIR/$tfile"
2472         eval $cmd
2473         cmd="exec $fd<&-"
2474         trap "eval $cmd" EXIT
2475         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2476         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2477         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2478         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2479         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2480         eval $cmd
2481 }
2482 run_test 31n "check link count of unlinked file"
2483
2484 link_one() {
2485         local TEMPNAME=$(mktemp $1_XXXXXX)
2486         mlink $TEMPNAME $1 2> /dev/null &&
2487                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2488         munlink $TEMPNAME
2489 }
2490
2491 test_31o() { # LU-2901
2492         test_mkdir $DIR/$tdir
2493         for LOOP in $(seq 100); do
2494                 rm -f $DIR/$tdir/$tfile*
2495                 for THREAD in $(seq 8); do
2496                         link_one $DIR/$tdir/$tfile.$LOOP &
2497                 done
2498                 wait
2499                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2500                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2501                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2502                         break || true
2503         done
2504 }
2505 run_test 31o "duplicate hard links with same filename"
2506
2507 test_31p() {
2508         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2509
2510         test_mkdir $DIR/$tdir
2511         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2512         $LFS setdirstripe -D -c2 -H all_char $DIR/$tdir/striped_dir
2513
2514         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2515                 error "open unlink test1 failed"
2516         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2517                 error "open unlink test2 failed"
2518
2519         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2520                 error "test1 still exists"
2521         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2522                 error "test2 still exists"
2523 }
2524 run_test 31p "remove of open striped directory"
2525
2526 cleanup_test32_mount() {
2527         local rc=0
2528         trap 0
2529         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$//p')
2530         $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
2531         losetup -d $loopdev || true
2532         rm -rf $DIR/$tdir
2533         return $rc
2534 }
2535
2536 test_32a() {
2537         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2538         echo "== more mountpoints and symlinks ================="
2539         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2540         trap cleanup_test32_mount EXIT
2541         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2542         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2543                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2544         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. ||
2545                 error "$DIR/$tdir/ext2-mountpoint/.. not dir type"
2546         cleanup_test32_mount
2547 }
2548 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2549
2550 test_32b() {
2551         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2552         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2553         trap cleanup_test32_mount EXIT
2554         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2555         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2556                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2557         ls -al $DIR/$tdir/ext2-mountpoint/.. ||
2558                 error "Can't list $DIR/$tdir/ext2-mountpoint/.."
2559         cleanup_test32_mount
2560 }
2561 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2562
2563 test_32c() {
2564         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2565         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2566         trap cleanup_test32_mount EXIT
2567         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2568         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2569                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2570         test_mkdir -p $DIR/$tdir/d2/test_dir
2571         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
2572                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_dir not dir type"
2573         cleanup_test32_mount
2574 }
2575 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2576
2577 test_32d() {
2578         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2579         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2580         trap cleanup_test32_mount EXIT
2581         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2582         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2583                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2584         test_mkdir -p $DIR/$tdir/d2/test_dir
2585         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
2586                 error "Can't list $DIR/$tdir/ext2-mountpoint/../d2/test_dir"
2587         cleanup_test32_mount
2588 }
2589 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir"
2590
2591 test_32e() {
2592         rm -fr $DIR/$tdir
2593         test_mkdir -p $DIR/$tdir/tmp
2594         local tmp_dir=$DIR/$tdir/tmp
2595         ln -s $DIR/$tdir $tmp_dir/symlink11
2596         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2597         $CHECKSTAT -t link $DIR/$tdir/tmp/symlink11 || error "symlink11 bad"
2598         $CHECKSTAT -t link $DIR/$tdir/symlink01 || error "symlink01 bad"
2599 }
2600 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir"
2601
2602 test_32f() {
2603         rm -fr $DIR/$tdir
2604         test_mkdir -p $DIR/$tdir/tmp
2605         local tmp_dir=$DIR/$tdir/tmp
2606         ln -s $DIR/$tdir $tmp_dir/symlink11
2607         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2608         ls $DIR/$tdir/tmp/symlink11  || error "symlink11 bad"
2609         ls $DIR/$tdir/symlink01 || error "symlink01 bad"
2610 }
2611 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir"
2612
2613 test_32g() {
2614         local tmp_dir=$DIR/$tdir/tmp
2615         test_mkdir -p $tmp_dir
2616         test_mkdir $DIR/${tdir}2
2617         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2618         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2619         $CHECKSTAT -t link $tmp_dir/symlink12 || error "symlink12 not a link"
2620         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error "symlink02 not a link"
2621         $CHECKSTAT -t dir -f $tmp_dir/symlink12 || error "symlink12 not a dir"
2622         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error "symlink12 not a dir"
2623 }
2624 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2625
2626 test_32h() {
2627         rm -fr $DIR/$tdir $DIR/${tdir}2
2628         tmp_dir=$DIR/$tdir/tmp
2629         test_mkdir -p $tmp_dir
2630         test_mkdir $DIR/${tdir}2
2631         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2632         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2633         ls $tmp_dir/symlink12 || error "listing symlink12"
2634         ls $DIR/$tdir/symlink02  || error "listing symlink02"
2635 }
2636 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2637
2638 test_32i() {
2639         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2640         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2641         trap cleanup_test32_mount EXIT
2642         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2643         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2644                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2645         touch $DIR/$tdir/test_file
2646         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file ||
2647                 error "$DIR/$tdir/ext2-mountpoint/../test_file not file type"
2648         cleanup_test32_mount
2649 }
2650 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2651
2652 test_32j() {
2653         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2654         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2655         trap cleanup_test32_mount EXIT
2656         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2657         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2658                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2659         touch $DIR/$tdir/test_file
2660         cat $DIR/$tdir/ext2-mountpoint/../test_file ||
2661                 error "Can't open $DIR/$tdir/ext2-mountpoint/../test_file"
2662         cleanup_test32_mount
2663 }
2664 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2665
2666 test_32k() {
2667         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2668         rm -fr $DIR/$tdir
2669         trap cleanup_test32_mount EXIT
2670         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2671         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2672                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2673         test_mkdir -p $DIR/$tdir/d2
2674         touch $DIR/$tdir/d2/test_file || error "touch failed"
2675         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
2676                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_file not file type"
2677         cleanup_test32_mount
2678 }
2679 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2680
2681 test_32l() {
2682         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2683         rm -fr $DIR/$tdir
2684         trap cleanup_test32_mount EXIT
2685         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2686         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2687                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2688         test_mkdir -p $DIR/$tdir/d2
2689         touch $DIR/$tdir/d2/test_file || error "touch failed"
2690         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
2691                 error "Can't open $DIR/$tdir/ext2-mountpoint/../d2/test_file"
2692         cleanup_test32_mount
2693 }
2694 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2695
2696 test_32m() {
2697         rm -fr $DIR/d32m
2698         test_mkdir -p $DIR/d32m/tmp
2699         TMP_DIR=$DIR/d32m/tmp
2700         ln -s $DIR $TMP_DIR/symlink11
2701         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2702         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 ||
2703                 error "symlink11 not a link"
2704         $CHECKSTAT -t link $DIR/d32m/symlink01 ||
2705                 error "symlink01 not a link"
2706 }
2707 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2708
2709 test_32n() {
2710         rm -fr $DIR/d32n
2711         test_mkdir -p $DIR/d32n/tmp
2712         TMP_DIR=$DIR/d32n/tmp
2713         ln -s $DIR $TMP_DIR/symlink11
2714         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2715         ls -l $DIR/d32n/tmp/symlink11  || error "listing symlink11"
2716         ls -l $DIR/d32n/symlink01 || error "listing symlink01"
2717 }
2718 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2719
2720 test_32o() {
2721         touch $DIR/$tfile
2722         test_mkdir -p $DIR/d32o/tmp
2723         TMP_DIR=$DIR/d32o/tmp
2724         ln -s $DIR/$tfile $TMP_DIR/symlink12
2725         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2726         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 ||
2727                 error "symlink12 not a link"
2728         $CHECKSTAT -t link $DIR/d32o/symlink02 || error "symlink02 not a link"
2729         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 ||
2730                 error "$DIR/d32o/tmp/symlink12 not file type"
2731         $CHECKSTAT -t file -f $DIR/d32o/symlink02 ||
2732                 error "$DIR/d32o/symlink02 not file type"
2733 }
2734 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2735
2736 test_32p() {
2737         log 32p_1
2738         rm -fr $DIR/d32p
2739         log 32p_2
2740         rm -f $DIR/$tfile
2741         log 32p_3
2742         touch $DIR/$tfile
2743         log 32p_4
2744         test_mkdir -p $DIR/d32p/tmp
2745         log 32p_5
2746         TMP_DIR=$DIR/d32p/tmp
2747         log 32p_6
2748         ln -s $DIR/$tfile $TMP_DIR/symlink12
2749         log 32p_7
2750         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2751         log 32p_8
2752         cat $DIR/d32p/tmp/symlink12 ||
2753                 error "Can't open $DIR/d32p/tmp/symlink12"
2754         log 32p_9
2755         cat $DIR/d32p/symlink02 || error "Can't open $DIR/d32p/symlink02"
2756         log 32p_10
2757 }
2758 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2759
2760 test_32q() {
2761         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2762         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2763         trap cleanup_test32_mount EXIT
2764         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2765         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
2766         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2767                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2768         ls $DIR/$tdir/ext2-mountpoint | grep "\<under_the_mount\>" && error
2769         cleanup_test32_mount
2770 }
2771 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2772
2773 test_32r() {
2774         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2775         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2776         trap cleanup_test32_mount EXIT
2777         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2778         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
2779         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2780                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2781         ls $DIR/$tdir/ext2-mountpoint | grep -q under_the_mount && error || true
2782         cleanup_test32_mount
2783 }
2784 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2785
2786 test_33aa() {
2787         rm -f $DIR/$tfile
2788         touch $DIR/$tfile
2789         chmod 444 $DIR/$tfile
2790         chown $RUNAS_ID $DIR/$tfile
2791         log 33_1
2792         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2793         log 33_2
2794 }
2795 run_test 33aa "write file with mode 444 (should return error)"
2796
2797 test_33a() {
2798         rm -fr $DIR/$tdir
2799         test_mkdir $DIR/$tdir
2800         chown $RUNAS_ID $DIR/$tdir
2801         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile ||
2802                 error "$RUNAS create $tdir/$tfile failed"
2803         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile &&
2804                 error "open RDWR" || true
2805 }
2806 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2807
2808 test_33b() {
2809         rm -fr $DIR/$tdir
2810         test_mkdir $DIR/$tdir
2811         chown $RUNAS_ID $DIR/$tdir
2812         $RUNAS $OPENFILE -f 1286739555 $DIR/$tdir/$tfile || true
2813 }
2814 run_test 33b "test open file with malformed flags (No panic)"
2815
2816 test_33c() {
2817         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2818         local ostnum
2819         local ostname
2820         local write_bytes
2821         local all_zeros
2822
2823         remote_ost_nodsh && skip "remote OST with nodsh" && return
2824         all_zeros=:
2825         rm -fr $DIR/$tdir
2826         test_mkdir $DIR/$tdir
2827         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2828
2829         sync
2830         for ostnum in $(seq $OSTCOUNT); do
2831                 # test-framework's OST numbering is one-based, while Lustre's
2832                 # is zero-based
2833                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2834                 # Parsing llobdstat's output sucks; we could grep the /proc
2835                 # path, but that's likely to not be as portable as using the
2836                 # llobdstat utility.  So we parse lctl output instead.
2837                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2838                         obdfilter/$ostname/stats |
2839                         awk '/^write_bytes/ {print $7}' )
2840                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2841                 if (( ${write_bytes:-0} > 0 ))
2842                 then
2843                         all_zeros=false
2844                         break;
2845                 fi
2846         done
2847
2848         $all_zeros || return 0
2849
2850         # Write four bytes
2851         echo foo > $DIR/$tdir/bar
2852         # Really write them
2853         sync
2854
2855         # Total up write_bytes after writing.  We'd better find non-zeros.
2856         for ostnum in $(seq $OSTCOUNT); do
2857                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2858                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2859                         obdfilter/$ostname/stats |
2860                         awk '/^write_bytes/ {print $7}' )
2861                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2862                 if (( ${write_bytes:-0} > 0 ))
2863                 then
2864                         all_zeros=false
2865                         break;
2866                 fi
2867         done
2868
2869         if $all_zeros
2870         then
2871                 for ostnum in $(seq $OSTCOUNT); do
2872                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2873                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2874                         do_facet ost$ostnum lctl get_param -n \
2875                                 obdfilter/$ostname/stats
2876                 done
2877                 error "OST not keeping write_bytes stats (b22312)"
2878         fi
2879 }
2880 run_test 33c "test llobdstat and write_bytes"
2881
2882 test_33d() {
2883         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
2884         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2885         local MDTIDX=1
2886         local remote_dir=$DIR/$tdir/remote_dir
2887
2888         test_mkdir $DIR/$tdir
2889         $LFS mkdir -i $MDTIDX $remote_dir ||
2890                 error "create remote directory failed"
2891
2892         touch $remote_dir/$tfile
2893         chmod 444 $remote_dir/$tfile
2894         chown $RUNAS_ID $remote_dir/$tfile
2895
2896         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2897
2898         chown $RUNAS_ID $remote_dir
2899         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2900                                         error "create" || true
2901         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2902                                     error "open RDWR" || true
2903         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
2904 }
2905 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2906
2907 test_33e() {
2908         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2909
2910         mkdir $DIR/$tdir
2911
2912         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2913         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2914         mkdir $DIR/$tdir/local_dir
2915
2916         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2917         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2918         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2919
2920         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2921                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
2922
2923         rmdir $DIR/$tdir/* || error "rmdir failed"
2924
2925         umask 777
2926         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2927         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2928         mkdir $DIR/$tdir/local_dir
2929
2930         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2931         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2932         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2933
2934         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2935                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
2936
2937         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
2938
2939         umask 000
2940         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2941         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2942         mkdir $DIR/$tdir/local_dir
2943
2944         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2945         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2946         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2947
2948         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2949                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
2950 }
2951 run_test 33e "mkdir and striped directory should have same mode"
2952
2953 cleanup_33f() {
2954         trap 0
2955         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
2956 }
2957
2958 test_33f() {
2959         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2960         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2961
2962         mkdir $DIR/$tdir
2963         chmod go+rwx $DIR/$tdir
2964         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
2965         trap cleanup_33f EXIT
2966
2967         $RUNAS lfs mkdir -i 0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
2968                 error "cannot create striped directory"
2969
2970         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
2971                 error "cannot create files in striped directory"
2972
2973         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
2974                 error "cannot remove files in striped directory"
2975
2976         $RUNAS rmdir $DIR/$tdir/striped_dir ||
2977                 error "cannot remove striped directory"
2978
2979         cleanup_33f
2980 }
2981 run_test 33f "nonroot user can create, access, and remove a striped directory"
2982
2983 test_33g() {
2984         mkdir -p $DIR/$tdir/dir2
2985
2986         local err=$($RUNAS mkdir $DIR/$tdir/dir2 2>&1)
2987         echo $err
2988         [[ $err =~ "exists" ]] || error "Not exists error"
2989 }
2990 run_test 33g "nonroot user create already existing root created file"
2991
2992 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2993 test_34a() {
2994         rm -f $DIR/f34
2995         $MCREATE $DIR/f34 || error "mcreate failed"
2996         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" ||
2997                 error "getstripe failed"
2998         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error "truncate failed"
2999         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" ||
3000                 error "getstripe failed"
3001         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3002                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3003 }
3004 run_test 34a "truncate file that has not been opened ==========="
3005
3006 test_34b() {
3007         [ ! -f $DIR/f34 ] && test_34a
3008         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3009                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3010         $OPENFILE -f O_RDONLY $DIR/f34
3011         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" ||
3012                 error "getstripe failed"
3013         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3014                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3015 }
3016 run_test 34b "O_RDONLY opening file doesn't create objects ====="
3017
3018 test_34c() {
3019         [ ! -f $DIR/f34 ] && test_34a
3020         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3021                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3022         $OPENFILE -f O_RDWR $DIR/f34
3023         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
3024         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3025                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3026 }
3027 run_test 34c "O_RDWR opening file-with-size works =============="
3028
3029 test_34d() {
3030         [ ! -f $DIR/f34 ] && test_34a
3031         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 ||
3032                 error "dd failed"
3033         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3034                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3035         rm $DIR/f34
3036 }
3037 run_test 34d "write to sparse file ============================="
3038
3039 test_34e() {
3040         rm -f $DIR/f34e
3041         $MCREATE $DIR/f34e || error "mcreate failed"
3042         $TRUNCATE $DIR/f34e 1000 || error "truncate failed"
3043         $CHECKSTAT -s 1000 $DIR/f34e ||
3044                 error "Size of $DIR/f34e not equal to 1000 bytes"
3045         $OPENFILE -f O_RDWR $DIR/f34e
3046         $CHECKSTAT -s 1000 $DIR/f34e ||
3047                 error "Size of $DIR/f34e not equal to 1000 bytes"
3048 }
3049 run_test 34e "create objects, some with size and some without =="
3050
3051 test_34f() { # bug 6242, 6243
3052         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3053         SIZE34F=48000
3054         rm -f $DIR/f34f
3055         $MCREATE $DIR/f34f || error "mcreate failed"
3056         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
3057         dd if=$DIR/f34f of=$TMP/f34f
3058         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
3059         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
3060         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
3061         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
3062         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
3063 }
3064 run_test 34f "read from a file with no objects until EOF ======="
3065
3066 test_34g() {
3067         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3068         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE ||
3069                 error "dd failed"
3070         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error "truncate failed"
3071         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
3072                 error "Size of $DIR/$tfile not equal to $((TEST_34_SIZE / 2))"
3073         cancel_lru_locks osc
3074         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
3075                 error "wrong size after lock cancel"
3076
3077         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error "truncate failed"
3078         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
3079                 error "expanding truncate failed"
3080         cancel_lru_locks osc
3081         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
3082                 error "wrong expanded size after lock cancel"
3083 }
3084 run_test 34g "truncate long file ==============================="
3085
3086 test_34h() {
3087         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3088         local gid=10
3089         local sz=1000
3090
3091         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error "dd failed"
3092         sync # Flush the cache so that multiop below does not block on cache
3093              # flush when getting the group lock
3094         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
3095         MULTIPID=$!
3096
3097         # Since just timed wait is not good enough, let's do a sync write
3098         # that way we are sure enough time for a roundtrip + processing
3099         # passed + 2 seconds of extra margin.
3100         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
3101         rm $DIR/${tfile}-1
3102         sleep 2
3103
3104         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
3105                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
3106                 kill -9 $MULTIPID
3107         fi
3108         wait $MULTIPID
3109         local nsz=`stat -c %s $DIR/$tfile`
3110         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
3111 }
3112 run_test 34h "ftruncate file under grouplock should not block"
3113
3114 test_35a() {
3115         cp /bin/sh $DIR/f35a
3116         chmod 444 $DIR/f35a
3117         chown $RUNAS_ID $DIR/f35a
3118         $RUNAS $DIR/f35a && error || true
3119         rm $DIR/f35a
3120 }
3121 run_test 35a "exec file with mode 444 (should return and not leak)"
3122
3123 test_36a() {
3124         rm -f $DIR/f36
3125         utime $DIR/f36 || error "utime failed for MDS"
3126 }
3127 run_test 36a "MDS utime check (mknod, utime)"
3128
3129 test_36b() {
3130         echo "" > $DIR/f36
3131         utime $DIR/f36 || error "utime failed for OST"
3132 }
3133 run_test 36b "OST utime check (open, utime)"
3134
3135 test_36c() {
3136         rm -f $DIR/d36/f36
3137         test_mkdir $DIR/d36
3138         chown $RUNAS_ID $DIR/d36
3139         $RUNAS utime $DIR/d36/f36 || error "utime failed for MDS as non-root"
3140 }
3141 run_test 36c "non-root MDS utime check (mknod, utime)"
3142
3143 test_36d() {
3144         [ ! -d $DIR/d36 ] && test_36c
3145         echo "" > $DIR/d36/f36
3146         $RUNAS utime $DIR/d36/f36 || error "utime failed for OST as non-root"
3147 }
3148 run_test 36d "non-root OST utime check (open, utime)"
3149
3150 test_36e() {
3151         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3152         test_mkdir $DIR/$tdir
3153         touch $DIR/$tdir/$tfile
3154         $RUNAS utime $DIR/$tdir/$tfile &&
3155                 error "utime worked, expected failure" || true
3156 }
3157 run_test 36e "utime on non-owned file (should return error)"
3158
3159 subr_36fh() {
3160         local fl="$1"
3161         local LANG_SAVE=$LANG
3162         local LC_LANG_SAVE=$LC_LANG
3163         export LANG=C LC_LANG=C # for date language
3164
3165         DATESTR="Dec 20  2000"
3166         test_mkdir $DIR/$tdir
3167         lctl set_param fail_loc=$fl
3168         date; date +%s
3169         cp /etc/hosts $DIR/$tdir/$tfile
3170         sync & # write RPC generated with "current" inode timestamp, but delayed
3171         sleep 1
3172         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
3173         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
3174         cancel_lru_locks osc
3175         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
3176         date; date +%s
3177         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
3178                 echo "BEFORE: $LS_BEFORE" && \
3179                 echo "AFTER : $LS_AFTER" && \
3180                 echo "WANT  : $DATESTR" && \
3181                 error "$DIR/$tdir/$tfile timestamps changed" || true
3182
3183         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
3184 }
3185
3186 test_36f() {
3187         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3188         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
3189         subr_36fh "0x80000214"
3190 }
3191 run_test 36f "utime on file racing with OST BRW write =========="
3192
3193 test_36g() {
3194         remote_ost_nodsh && skip "remote OST with nodsh" && return
3195         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3196         local fmd_max_age
3197         local fmd_before
3198         local fmd_after
3199
3200         test_mkdir $DIR/$tdir
3201         fmd_max_age=$(do_facet ost1 \
3202                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
3203                 head -n 1")
3204
3205         fmd_before=$(do_facet ost1 \
3206                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3207         touch $DIR/$tdir/$tfile
3208         sleep $((fmd_max_age + 12))
3209         fmd_after=$(do_facet ost1 \
3210                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3211
3212         echo "fmd_before: $fmd_before"
3213         echo "fmd_after: $fmd_after"
3214         [[ $fmd_after -gt $fmd_before ]] &&
3215                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" &&
3216                 error "fmd didn't expire after ping" || true
3217 }
3218 run_test 36g "filter mod data cache expiry ====================="
3219
3220 test_36h() {
3221         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3222         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
3223         subr_36fh "0x80000227"
3224 }
3225 run_test 36h "utime on file racing with OST BRW write =========="
3226
3227 test_36i() {
3228         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3229
3230         test_mkdir $DIR/$tdir
3231         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3232
3233         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3234         local new_mtime=$((mtime + 200))
3235
3236         #change Modify time of striped dir
3237         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3238                         error "change mtime failed"
3239
3240         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3241
3242         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3243 }
3244 run_test 36i "change mtime on striped directory"
3245
3246 # test_37 - duplicate with tests 32q 32r
3247
3248 test_38() {
3249         local file=$DIR/$tfile
3250         touch $file
3251         openfile -f O_DIRECTORY $file
3252         local RC=$?
3253         local ENOTDIR=20
3254         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3255         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3256 }
3257 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3258
3259 test_39a() { # was test_39
3260         touch $DIR/$tfile
3261         touch $DIR/${tfile}2
3262 #       ls -l  $DIR/$tfile $DIR/${tfile}2
3263 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
3264 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
3265         sleep 2
3266         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3267         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3268                 echo "mtime"
3269                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3270                 echo "atime"
3271                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3272                 echo "ctime"
3273                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3274                 error "O_TRUNC didn't change timestamps"
3275         fi
3276 }
3277 run_test 39a "mtime changed on create"
3278
3279 test_39b() {
3280         test_mkdir -c1 $DIR/$tdir
3281         cp -p /etc/passwd $DIR/$tdir/fopen
3282         cp -p /etc/passwd $DIR/$tdir/flink
3283         cp -p /etc/passwd $DIR/$tdir/funlink
3284         cp -p /etc/passwd $DIR/$tdir/frename
3285         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3286
3287         sleep 1
3288         echo "aaaaaa" >> $DIR/$tdir/fopen
3289         echo "aaaaaa" >> $DIR/$tdir/flink
3290         echo "aaaaaa" >> $DIR/$tdir/funlink
3291         echo "aaaaaa" >> $DIR/$tdir/frename
3292
3293         local open_new=`stat -c %Y $DIR/$tdir/fopen`
3294         local link_new=`stat -c %Y $DIR/$tdir/flink`
3295         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3296         local rename_new=`stat -c %Y $DIR/$tdir/frename`
3297
3298         cat $DIR/$tdir/fopen > /dev/null
3299         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3300         rm -f $DIR/$tdir/funlink2
3301         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3302
3303         for (( i=0; i < 2; i++ )) ; do
3304                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3305                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3306                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3307                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3308
3309                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3310                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3311                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3312                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3313
3314                 cancel_lru_locks osc
3315                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3316         done
3317 }
3318 run_test 39b "mtime change on open, link, unlink, rename  ======"
3319
3320 # this should be set to past
3321 TEST_39_MTIME=`date -d "1 year ago" +%s`
3322
3323 # bug 11063
3324 test_39c() {
3325         touch $DIR1/$tfile
3326         sleep 2
3327         local mtime0=`stat -c %Y $DIR1/$tfile`
3328
3329         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3330         local mtime1=`stat -c %Y $DIR1/$tfile`
3331         [ "$mtime1" = $TEST_39_MTIME ] || \
3332                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3333
3334         local d1=`date +%s`
3335         echo hello >> $DIR1/$tfile
3336         local d2=`date +%s`
3337         local mtime2=`stat -c %Y $DIR1/$tfile`
3338         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3339                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3340
3341         mv $DIR1/$tfile $DIR1/$tfile-1
3342
3343         for (( i=0; i < 2; i++ )) ; do
3344                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3345                 [ "$mtime2" = "$mtime3" ] || \
3346                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3347
3348                 cancel_lru_locks osc
3349                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3350         done
3351 }
3352 run_test 39c "mtime change on rename ==========================="
3353
3354 # bug 21114
3355 test_39d() {
3356         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3357         touch $DIR1/$tfile
3358
3359         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3360
3361         for (( i=0; i < 2; i++ )) ; do
3362                 local mtime=`stat -c %Y $DIR1/$tfile`
3363                 [ $mtime = $TEST_39_MTIME ] || \
3364                         error "mtime($mtime) is not set to $TEST_39_MTIME"
3365
3366                 cancel_lru_locks osc
3367                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3368         done
3369 }
3370 run_test 39d "create, utime, stat =============================="
3371
3372 # bug 21114
3373 test_39e() {
3374         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3375         touch $DIR1/$tfile
3376         local mtime1=`stat -c %Y $DIR1/$tfile`
3377
3378         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3379
3380         for (( i=0; i < 2; i++ )) ; do
3381                 local mtime2=`stat -c %Y $DIR1/$tfile`
3382                 [ $mtime2 = $TEST_39_MTIME ] || \
3383                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3384
3385                 cancel_lru_locks osc
3386                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3387         done
3388 }
3389 run_test 39e "create, stat, utime, stat ========================"
3390
3391 # bug 21114
3392 test_39f() {
3393         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3394         touch $DIR1/$tfile
3395         mtime1=`stat -c %Y $DIR1/$tfile`
3396
3397         sleep 2
3398         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3399
3400         for (( i=0; i < 2; i++ )) ; do
3401                 local mtime2=`stat -c %Y $DIR1/$tfile`
3402                 [ $mtime2 = $TEST_39_MTIME ] || \
3403                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3404
3405                 cancel_lru_locks osc
3406                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3407         done
3408 }
3409 run_test 39f "create, stat, sleep, utime, stat ================="
3410
3411 # bug 11063
3412 test_39g() {
3413         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3414         echo hello >> $DIR1/$tfile
3415         local mtime1=`stat -c %Y $DIR1/$tfile`
3416
3417         sleep 2
3418         chmod o+r $DIR1/$tfile
3419
3420         for (( i=0; i < 2; i++ )) ; do
3421                 local mtime2=`stat -c %Y $DIR1/$tfile`
3422                 [ "$mtime1" = "$mtime2" ] || \
3423                         error "lost mtime: $mtime2, should be $mtime1"
3424
3425                 cancel_lru_locks osc
3426                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3427         done
3428 }
3429 run_test 39g "write, chmod, stat ==============================="
3430
3431 # bug 11063
3432 test_39h() {
3433         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3434         touch $DIR1/$tfile
3435         sleep 1
3436
3437         local d1=`date`
3438         echo hello >> $DIR1/$tfile
3439         local mtime1=`stat -c %Y $DIR1/$tfile`
3440
3441         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3442         local d2=`date`
3443         if [ "$d1" != "$d2" ]; then
3444                 echo "write and touch not within one second"
3445         else
3446                 for (( i=0; i < 2; i++ )) ; do
3447                         local mtime2=`stat -c %Y $DIR1/$tfile`
3448                         [ "$mtime2" = $TEST_39_MTIME ] || \
3449                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3450
3451                         cancel_lru_locks osc
3452                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3453                 done
3454         fi
3455 }
3456 run_test 39h "write, utime within one second, stat ============="
3457
3458 test_39i() {
3459         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3460         touch $DIR1/$tfile
3461         sleep 1
3462
3463         echo hello >> $DIR1/$tfile
3464         local mtime1=`stat -c %Y $DIR1/$tfile`
3465
3466         mv $DIR1/$tfile $DIR1/$tfile-1
3467
3468         for (( i=0; i < 2; i++ )) ; do
3469                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3470
3471                 [ "$mtime1" = "$mtime2" ] || \
3472                         error "lost mtime: $mtime2, should be $mtime1"
3473
3474                 cancel_lru_locks osc
3475                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3476         done
3477 }
3478 run_test 39i "write, rename, stat =============================="
3479
3480 test_39j() {
3481         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3482         start_full_debug_logging
3483         touch $DIR1/$tfile
3484         sleep 1
3485
3486         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3487         lctl set_param fail_loc=0x80000412
3488         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3489                 error "multiop failed"
3490         local multipid=$!
3491         local mtime1=`stat -c %Y $DIR1/$tfile`
3492
3493         mv $DIR1/$tfile $DIR1/$tfile-1
3494
3495         kill -USR1 $multipid
3496         wait $multipid || error "multiop close failed"
3497
3498         for (( i=0; i < 2; i++ )) ; do
3499                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3500                 [ "$mtime1" = "$mtime2" ] ||
3501                         error "mtime is lost on close: $mtime2, " \
3502                               "should be $mtime1"
3503
3504                 cancel_lru_locks osc
3505                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3506         done
3507         lctl set_param fail_loc=0
3508         stop_full_debug_logging
3509 }
3510 run_test 39j "write, rename, close, stat ======================="
3511
3512 test_39k() {
3513         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3514         touch $DIR1/$tfile
3515         sleep 1
3516
3517         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3518         local multipid=$!
3519         local mtime1=`stat -c %Y $DIR1/$tfile`
3520
3521         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3522
3523         kill -USR1 $multipid
3524         wait $multipid || error "multiop close failed"
3525
3526         for (( i=0; i < 2; i++ )) ; do
3527                 local mtime2=`stat -c %Y $DIR1/$tfile`
3528
3529                 [ "$mtime2" = $TEST_39_MTIME ] || \
3530                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3531
3532                 cancel_lru_locks osc
3533                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3534         done
3535 }
3536 run_test 39k "write, utime, close, stat ========================"
3537
3538 # this should be set to future
3539 TEST_39_ATIME=`date -d "1 year" +%s`
3540
3541 test_39l() {
3542         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3543         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3544         local atime_diff=$(do_facet $SINGLEMDS \
3545                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3546         rm -rf $DIR/$tdir
3547         mkdir -p $DIR/$tdir
3548
3549         # test setting directory atime to future
3550         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3551         local atime=$(stat -c %X $DIR/$tdir)
3552         [ "$atime" = $TEST_39_ATIME ] ||
3553                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3554
3555         # test setting directory atime from future to now
3556         local now=$(date +%s)
3557         touch -a -d @$now $DIR/$tdir
3558
3559         atime=$(stat -c %X $DIR/$tdir)
3560         [ "$atime" -eq "$now"  ] ||
3561                 error "atime is not updated from future: $atime, $now"
3562
3563         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3564         sleep 3
3565
3566         # test setting directory atime when now > dir atime + atime_diff
3567         local d1=$(date +%s)
3568         ls $DIR/$tdir
3569         local d2=$(date +%s)
3570         cancel_lru_locks mdc
3571         atime=$(stat -c %X $DIR/$tdir)
3572         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3573                 error "atime is not updated  : $atime, should be $d2"
3574
3575         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3576         sleep 3
3577
3578         # test not setting directory atime when now < dir atime + atime_diff
3579         ls $DIR/$tdir
3580         cancel_lru_locks mdc
3581         atime=$(stat -c %X $DIR/$tdir)
3582         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3583                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3584
3585         do_facet $SINGLEMDS \
3586                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3587 }
3588 run_test 39l "directory atime update ==========================="
3589
3590 test_39m() {
3591         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3592         touch $DIR1/$tfile
3593         sleep 2
3594         local far_past_mtime=$(date -d "May 29 1953" +%s)
3595         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3596
3597         touch -m -d @$far_past_mtime $DIR1/$tfile
3598         touch -a -d @$far_past_atime $DIR1/$tfile
3599
3600         for (( i=0; i < 2; i++ )) ; do
3601                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3602                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3603                         error "atime or mtime set incorrectly"
3604
3605                 cancel_lru_locks osc
3606                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3607         done
3608 }
3609 run_test 39m "test atime and mtime before 1970"
3610
3611 test_39n() { # LU-3832
3612         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3613         local atime_diff=$(do_facet $SINGLEMDS \
3614                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3615         local atime0
3616         local atime1
3617         local atime2
3618
3619         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3620
3621         rm -rf $DIR/$tfile
3622         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3623         atime0=$(stat -c %X $DIR/$tfile)
3624
3625         sleep 5
3626         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3627         atime1=$(stat -c %X $DIR/$tfile)
3628
3629         sleep 5
3630         cancel_lru_locks mdc
3631         cancel_lru_locks osc
3632         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3633         atime2=$(stat -c %X $DIR/$tfile)
3634
3635         do_facet $SINGLEMDS \
3636                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3637
3638         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3639         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3640 }
3641 run_test 39n "check that O_NOATIME is honored"
3642
3643 test_39o() {
3644         TESTDIR=$DIR/$tdir/$tfile
3645         [ -e $TESTDIR ] && rm -rf $TESTDIR
3646         mkdir -p $TESTDIR
3647         cd $TESTDIR
3648         links1=2
3649         ls
3650         mkdir a b
3651         ls
3652         links2=$(stat -c %h .)
3653         [ $(($links1 + 2)) != $links2 ] &&
3654                 error "wrong links count $(($links1 + 2)) != $links2"
3655         rmdir b
3656         links3=$(stat -c %h .)
3657         [ $(($links1 + 1)) != $links3 ] &&
3658                 error "wrong links count $links1 != $links3"
3659         return 0
3660 }
3661 run_test 39o "directory cached attributes updated after create"
3662
3663 test_39p() {
3664         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
3665         local MDTIDX=1
3666         TESTDIR=$DIR/$tdir/$tdir
3667         [ -e $TESTDIR ] && rm -rf $TESTDIR
3668         test_mkdir -p $TESTDIR
3669         cd $TESTDIR
3670         links1=2
3671         ls
3672         test_mkdir -i $MDTIDX $TESTDIR/remote_dir1
3673         test_mkdir -i $MDTIDX $TESTDIR/remote_dir2
3674         ls
3675         links2=$(stat -c %h .)
3676         [ $(($links1 + 2)) != $links2 ] &&
3677                 error "wrong links count $(($links1 + 2)) != $links2"
3678         rmdir remote_dir2
3679         links3=$(stat -c %h .)
3680         [ $(($links1 + 1)) != $links3 ] &&
3681                 error "wrong links count $links1 != $links3"
3682         return 0
3683 }
3684 run_test 39p "remote directory cached attributes updated after create ========"
3685
3686
3687 test_39q() { # LU-8041
3688         local testdir=$DIR/$tdir
3689         mkdir -p $testdir
3690         multiop_bg_pause $testdir D_c || error "multiop failed"
3691         local multipid=$!
3692         cancel_lru_locks mdc
3693         kill -USR1 $multipid
3694         local atime=$(stat -c %X $testdir)
3695         [ "$atime" -ne 0 ] || error "atime is zero"
3696 }
3697 run_test 39q "close won't zero out atime"
3698
3699 test_40() {
3700         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3701         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3702                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3703         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3704                 error "$tfile is not 4096 bytes in size"
3705 }
3706 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3707
3708 test_41() {
3709         # bug 1553
3710         small_write $DIR/f41 18
3711 }
3712 run_test 41 "test small file write + fstat ====================="
3713
3714 count_ost_writes() {
3715         lctl get_param -n ${OSC}.*.stats |
3716                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
3717                         END { printf("%0.0f", writes) }'
3718 }
3719
3720 # decent default
3721 WRITEBACK_SAVE=500
3722 DIRTY_RATIO_SAVE=40
3723 MAX_DIRTY_RATIO=50
3724 BG_DIRTY_RATIO_SAVE=10
3725 MAX_BG_DIRTY_RATIO=25
3726
3727 start_writeback() {
3728         trap 0
3729         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3730         # dirty_ratio, dirty_background_ratio
3731         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3732                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3733                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3734                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3735         else
3736                 # if file not here, we are a 2.4 kernel
3737                 kill -CONT `pidof kupdated`
3738         fi
3739 }
3740
3741 stop_writeback() {
3742         # setup the trap first, so someone cannot exit the test at the
3743         # exact wrong time and mess up a machine
3744         trap start_writeback EXIT
3745         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3746         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3747                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3748                 sysctl -w vm.dirty_writeback_centisecs=0
3749                 sysctl -w vm.dirty_writeback_centisecs=0
3750                 # save and increase /proc/sys/vm/dirty_ratio
3751                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3752                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3753                 # save and increase /proc/sys/vm/dirty_background_ratio
3754                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3755                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3756         else
3757                 # if file not here, we are a 2.4 kernel
3758                 kill -STOP `pidof kupdated`
3759         fi
3760 }
3761
3762 # ensure that all stripes have some grant before we test client-side cache
3763 setup_test42() {
3764         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3765                 dd if=/dev/zero of=$i bs=4k count=1
3766                 rm $i
3767         done
3768 }
3769
3770 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3771 # file truncation, and file removal.
3772 test_42a() {
3773         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3774         setup_test42
3775         cancel_lru_locks $OSC
3776         stop_writeback
3777         sync; sleep 1; sync # just to be safe
3778         BEFOREWRITES=`count_ost_writes`
3779         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3780         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3781         AFTERWRITES=`count_ost_writes`
3782         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3783                 error "$BEFOREWRITES < $AFTERWRITES"
3784         start_writeback
3785 }
3786 run_test 42a "ensure that we don't flush on close"
3787
3788 test_42b() {
3789         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3790         setup_test42
3791         cancel_lru_locks $OSC
3792         stop_writeback
3793         sync
3794         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3795         BEFOREWRITES=$(count_ost_writes)
3796         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3797         AFTERWRITES=$(count_ost_writes)
3798         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3799                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3800         fi
3801         BEFOREWRITES=$(count_ost_writes)
3802         sync || error "sync: $?"
3803         AFTERWRITES=$(count_ost_writes)
3804         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3805                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3806         fi
3807         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3808         start_writeback
3809         return 0
3810 }
3811 run_test 42b "test destroy of file with cached dirty data ======"
3812
3813 # if these tests just want to test the effect of truncation,
3814 # they have to be very careful.  consider:
3815 # - the first open gets a {0,EOF}PR lock
3816 # - the first write conflicts and gets a {0, count-1}PW
3817 # - the rest of the writes are under {count,EOF}PW
3818 # - the open for truncate tries to match a {0,EOF}PR
3819 #   for the filesize and cancels the PWs.
3820 # any number of fixes (don't get {0,EOF} on open, match
3821 # composite locks, do smarter file size management) fix
3822 # this, but for now we want these tests to verify that
3823 # the cancellation with truncate intent works, so we
3824 # start the file with a full-file pw lock to match against
3825 # until the truncate.
3826 trunc_test() {
3827         test=$1
3828         file=$DIR/$test
3829         offset=$2
3830         cancel_lru_locks $OSC
3831         stop_writeback
3832         # prime the file with 0,EOF PW to match
3833         touch $file
3834         $TRUNCATE $file 0
3835         sync; sync
3836         # now the real test..
3837         dd if=/dev/zero of=$file bs=1024 count=100
3838         BEFOREWRITES=`count_ost_writes`
3839         $TRUNCATE $file $offset
3840         cancel_lru_locks $OSC
3841         AFTERWRITES=`count_ost_writes`
3842         start_writeback
3843 }
3844
3845 test_42c() {
3846         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3847         trunc_test 42c 1024
3848         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3849             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3850         rm $file
3851 }
3852 run_test 42c "test partial truncate of file with cached dirty data"
3853
3854 test_42d() {
3855         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3856         trunc_test 42d 0
3857         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3858             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3859         rm $file
3860 }
3861 run_test 42d "test complete truncate of file with cached dirty data"
3862
3863 test_42e() { # bug22074
3864         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3865         local TDIR=$DIR/${tdir}e
3866         local pagesz=$(page_size)
3867         local pages=16 # hardcoded 16 pages, don't change it.
3868         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3869         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3870         local max_dirty_mb
3871         local warmup_files
3872
3873         test_mkdir $DIR/${tdir}e
3874         $SETSTRIPE -c 1 $TDIR
3875         createmany -o $TDIR/f $files
3876
3877         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3878
3879         # we assume that with $OSTCOUNT files, at least one of them will
3880         # be allocated on OST0.
3881         warmup_files=$((OSTCOUNT * max_dirty_mb))
3882         createmany -o $TDIR/w $warmup_files
3883
3884         # write a large amount of data into one file and sync, to get good
3885         # avail_grant number from OST.
3886         for ((i=0; i<$warmup_files; i++)); do
3887                 idx=$($GETSTRIPE -i $TDIR/w$i)
3888                 [ $idx -ne 0 ] && continue
3889                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3890                 break
3891         done
3892         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
3893         sync
3894         $LCTL get_param $proc_osc0/cur_dirty_bytes
3895         $LCTL get_param $proc_osc0/cur_grant_bytes
3896
3897         # create as much dirty pages as we can while not to trigger the actual
3898         # RPCs directly. but depends on the env, VFS may trigger flush during this
3899         # period, hopefully we are good.
3900         for ((i=0; i<$warmup_files; i++)); do
3901                 idx=$($GETSTRIPE -i $TDIR/w$i)
3902                 [ $idx -ne 0 ] && continue
3903                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3904         done
3905         $LCTL get_param $proc_osc0/cur_dirty_bytes
3906         $LCTL get_param $proc_osc0/cur_grant_bytes
3907
3908         # perform the real test
3909         $LCTL set_param $proc_osc0/rpc_stats 0
3910         for ((;i<$files; i++)); do
3911                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3912                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3913         done
3914         sync
3915         $LCTL get_param $proc_osc0/rpc_stats
3916
3917         local percent=0
3918         local have_ppr=false
3919         $LCTL get_param $proc_osc0/rpc_stats |
3920                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3921                         # skip lines until we are at the RPC histogram data
3922                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3923                         $have_ppr || continue
3924
3925                         # we only want the percent stat for < 16 pages
3926                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
3927
3928                         percent=$((percent + WPCT))
3929                         if [[ $percent -gt 15 ]]; then
3930                                 error "less than 16-pages write RPCs" \
3931                                       "$percent% > 15%"
3932                                 break
3933                         fi
3934                 done
3935         rm -rf $TDIR
3936 }
3937 run_test 42e "verify sub-RPC writes are not done synchronously"
3938
3939 test_43A() { # was test_43
3940         test_mkdir $DIR/$tdir
3941         cp -p /bin/ls $DIR/$tdir/$tfile
3942         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3943         pid=$!
3944         # give multiop a chance to open
3945         sleep 1
3946
3947         $DIR/$tdir/$tfile && error "execute $DIR/$tdir/$tfile succeeded" || true
3948         kill -USR1 $pid
3949 }
3950 run_test 43A "execution of file opened for write should return -ETXTBSY"
3951
3952 test_43a() {
3953         test_mkdir $DIR/$tdir
3954         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
3955                 cp -p multiop $DIR/$tdir/multiop
3956         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3957                 error "multiop open $TMP/$tfile.junk failed"
3958         rm $TMP/$tfile.junk     # delete junk file on close (not part of test)
3959         MULTIOP_PID=$!
3960         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3961         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
3962         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
3963 }
3964 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3965
3966 test_43b() {
3967         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3968         test_mkdir $DIR/$tdir
3969         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
3970                 cp -p multiop $DIR/$tdir/multiop
3971         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3972                 error "multiop open $TMP/$tfile.junk failed"
3973         rm $TMP/$tfile.junk     # delete junk file on close (not part of test)
3974         MULTIOP_PID=$!
3975         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3976         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
3977         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
3978 }
3979 run_test 43b "truncate of file being executed should return -ETXTBSY"
3980
3981 test_43c() {
3982         local testdir="$DIR/$tdir"
3983         test_mkdir $testdir
3984         cp $SHELL $testdir/
3985         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) |
3986                 ( cd $testdir && md5sum -c )
3987 }
3988 run_test 43c "md5sum of copy into lustre"
3989
3990 test_44A() { # was test_44
3991         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
3992         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3993         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3994 }
3995 run_test 44A "zero length read from a sparse stripe"
3996
3997 test_44a() {
3998         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
3999                 awk '{ print $2 }')
4000         [ -z "$nstripe" ] && skip "can't get stripe info" && return
4001         [[ $nstripe -gt $OSTCOUNT ]] &&
4002             skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" &&
4003             return
4004         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
4005                 awk '{ print $2 }')
4006         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
4007                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
4008                         awk '{ print $2 }')
4009         fi
4010
4011         OFFSETS="0 $((stride/2)) $((stride-1))"
4012         for offset in $OFFSETS; do
4013                 for i in $(seq 0 $((nstripe-1))); do
4014                         local GLOBALOFFSETS=""
4015                         # size in Bytes
4016                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
4017                         local myfn=$DIR/d44a-$size
4018                         echo "--------writing $myfn at $size"
4019                         ll_sparseness_write $myfn $size ||
4020                                 error "ll_sparseness_write"
4021                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
4022                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
4023                                 error "ll_sparseness_verify $GLOBALOFFSETS"
4024
4025                         for j in $(seq 0 $((nstripe-1))); do
4026                                 # size in Bytes
4027                                 size=$((((j + $nstripe )*$stride + $offset)))
4028                                 ll_sparseness_write $myfn $size ||
4029                                         error "ll_sparseness_write"
4030                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
4031                         done
4032                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
4033                                 error "ll_sparseness_verify $GLOBALOFFSETS"
4034                         rm -f $myfn
4035                 done
4036         done
4037 }
4038 run_test 44a "test sparse pwrite ==============================="
4039
4040 dirty_osc_total() {
4041         tot=0
4042         for d in `lctl get_param -n ${OSC}.*.cur_dirty_bytes`; do
4043                 tot=$(($tot + $d))
4044         done
4045         echo $tot
4046 }
4047 do_dirty_record() {
4048         before=`dirty_osc_total`
4049         echo executing "\"$*\""
4050         eval $*
4051         after=`dirty_osc_total`
4052         echo before $before, after $after
4053 }
4054 test_45() {
4055         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4056         f="$DIR/f45"
4057         # Obtain grants from OST if it supports it
4058         echo blah > ${f}_grant
4059         stop_writeback
4060         sync
4061         do_dirty_record "echo blah > $f"
4062         [[ $before -eq $after ]] && error "write wasn't cached"
4063         do_dirty_record "> $f"
4064         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
4065         do_dirty_record "echo blah > $f"
4066         [[ $before -eq $after ]] && error "write wasn't cached"
4067         do_dirty_record "sync"
4068         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
4069         do_dirty_record "echo blah > $f"
4070         [[ $before -eq $after ]] && error "write wasn't cached"
4071         do_dirty_record "cancel_lru_locks osc"
4072         [[ $before -gt $after ]] ||
4073                 error "lock cancellation didn't lower dirty count"
4074         start_writeback
4075 }
4076 run_test 45 "osc io page accounting ============================"
4077
4078 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
4079 # test tickles a bug where re-dirtying a page was failing to be mapped to the
4080 # objects offset and an assert hit when an rpc was built with 1023's mapped
4081 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
4082 test_46() {
4083         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4084         f="$DIR/f46"
4085         stop_writeback
4086         sync
4087         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
4088         sync
4089         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
4090         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
4091         sync
4092         start_writeback
4093 }
4094 run_test 46 "dirtying a previously written page ================"
4095
4096 # test_47 is removed "Device nodes check" is moved to test_28
4097
4098 test_48a() { # bug 2399
4099         [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
4100         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.63) ] &&
4101                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly" &&
4102                 return
4103         test_mkdir $DIR/$tdir
4104         cd $DIR/$tdir
4105         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
4106         test_mkdir $DIR/$tdir
4107         touch foo || error "'touch foo' failed after recreating cwd"
4108         test_mkdir bar
4109         touch .foo || error "'touch .foo' failed after recreating cwd"
4110         test_mkdir .bar
4111         ls . > /dev/null || error "'ls .' failed after recreating cwd"
4112         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4113         cd . || error "'cd .' failed after recreating cwd"
4114         mkdir . && error "'mkdir .' worked after recreating cwd"
4115         rmdir . && error "'rmdir .' worked after recreating cwd"
4116         ln -s . baz || error "'ln -s .' failed after recreating cwd"
4117         cd .. || error "'cd ..' failed after recreating cwd"
4118 }
4119 run_test 48a "Access renamed working dir (should return errors)="
4120
4121 test_48b() { # bug 2399
4122         rm -rf $DIR/$tdir
4123         test_mkdir $DIR/$tdir
4124         cd $DIR/$tdir
4125         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
4126         touch foo && error "'touch foo' worked after removing cwd"
4127         mkdir foo && error "'mkdir foo' worked after removing cwd"
4128         touch .foo && error "'touch .foo' worked after removing cwd"
4129         mkdir .foo && error "'mkdir .foo' worked after removing cwd"
4130         ls . > /dev/null && error "'ls .' worked after removing cwd"
4131         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4132         mkdir . && error "'mkdir .' worked after removing cwd"
4133         rmdir . && error "'rmdir .' worked after removing cwd"
4134         ln -s . foo && error "'ln -s .' worked after removing cwd"
4135         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
4136 }
4137 run_test 48b "Access removed working dir (should return errors)="
4138
4139 test_48c() { # bug 2350
4140         #lctl set_param debug=-1
4141         #set -vx
4142         rm -rf $DIR/$tdir
4143         test_mkdir -p $DIR/$tdir/dir
4144         cd $DIR/$tdir/dir
4145         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4146         $TRACE touch foo && error "touch foo worked after removing cwd"
4147         $TRACE mkdir foo && error "'mkdir foo' worked after removing cwd"
4148         touch .foo && error "touch .foo worked after removing cwd"
4149         mkdir .foo && error "mkdir .foo worked after removing cwd"
4150         $TRACE ls . && error "'ls .' worked after removing cwd"
4151         $TRACE ls .. || error "'ls ..' failed after removing cwd"
4152         $TRACE mkdir . && error "'mkdir .' worked after removing cwd"
4153         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
4154         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
4155         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
4156 }
4157 run_test 48c "Access removed working subdir (should return errors)"
4158
4159 test_48d() { # bug 2350
4160         #lctl set_param debug=-1
4161         #set -vx
4162         rm -rf $DIR/$tdir
4163         test_mkdir -p $DIR/$tdir/dir
4164         cd $DIR/$tdir/dir
4165         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4166         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4167         $TRACE touch foo && error "'touch foo' worked after removing parent"
4168         $TRACE mkdir foo && error "mkdir foo worked after removing parent"
4169         touch .foo && error "'touch .foo' worked after removing parent"
4170         mkdir .foo && error "mkdir .foo worked after removing parent"
4171         $TRACE ls . && error "'ls .' worked after removing parent"
4172         $TRACE ls .. && error "'ls ..' worked after removing parent"
4173         $TRACE mkdir . && error "'mkdir .' worked after removing parent"
4174         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
4175         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
4176         true
4177 }
4178 run_test 48d "Access removed parent subdir (should return errors)"
4179
4180 test_48e() { # bug 4134
4181         #lctl set_param debug=-1
4182         #set -vx
4183         rm -rf $DIR/$tdir
4184         test_mkdir -p $DIR/$tdir/dir
4185         cd $DIR/$tdir/dir
4186         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4187         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4188         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
4189         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
4190         # On a buggy kernel addition of "touch foo" after cd .. will
4191         # produce kernel oops in lookup_hash_it
4192         touch ../foo && error "'cd ..' worked after recreate parent"
4193         cd $DIR
4194         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
4195 }
4196 run_test 48e "Access to recreated parent subdir (should return errors)"
4197
4198 test_49() { # LU-1030
4199         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4200         remote_ost_nodsh && skip "remote OST with nodsh" && return
4201         # get ost1 size - lustre-OST0000
4202         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
4203                 awk '{ print $4 }')
4204         # write 800M at maximum
4205         [[ $ost1_size -lt 2 ]] && ost1_size=2
4206         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
4207
4208         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
4209         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
4210         local dd_pid=$!
4211
4212         # change max_pages_per_rpc while writing the file
4213         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
4214         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
4215         # loop until dd process exits
4216         while ps ax -opid | grep -wq $dd_pid; do
4217                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
4218                 sleep $((RANDOM % 5 + 1))
4219         done
4220         # restore original max_pages_per_rpc
4221         $LCTL set_param $osc1_mppc=$orig_mppc
4222         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
4223 }
4224 run_test 49 "Change max_pages_per_rpc won't break osc extent"
4225
4226 test_50() {
4227         # bug 1485
4228         test_mkdir $DIR/$tdir
4229         cd $DIR/$tdir
4230         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
4231 }
4232 run_test 50 "special situations: /proc symlinks  ==============="
4233
4234 test_51a() {    # was test_51
4235         # bug 1516 - create an empty entry right after ".." then split dir
4236         test_mkdir -c1 $DIR/$tdir
4237         touch $DIR/$tdir/foo
4238         $MCREATE $DIR/$tdir/bar
4239         rm $DIR/$tdir/foo
4240         createmany -m $DIR/$tdir/longfile 201
4241         FNUM=202
4242         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
4243                 $MCREATE $DIR/$tdir/longfile$FNUM
4244                 FNUM=$(($FNUM + 1))
4245                 echo -n "+"
4246         done
4247         echo
4248         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
4249 }
4250 run_test 51a "special situations: split htree with empty entry =="
4251
4252 cleanup_print_lfs_df () {
4253         trap 0
4254         $LFS df
4255         $LFS df -i
4256 }
4257
4258 test_51b() {
4259         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4260         local dir=$DIR/$tdir
4261
4262         local nrdirs=$((65536 + 100))
4263
4264         # cleanup the directory
4265         rm -fr $dir
4266
4267         test_mkdir -c1 $dir
4268
4269         $LFS df
4270         $LFS df -i
4271         local mdtidx=$(printf "%04x" $($LFS getstripe -M $dir))
4272         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
4273         [[ $numfree -lt $nrdirs ]] &&
4274                 skip "not enough free inodes ($numfree) on MDT$mdtidx" &&
4275                 return
4276
4277         # need to check free space for the directories as well
4278         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
4279         numfree=$(( blkfree / $(fs_inode_ksize) ))
4280         [[ $numfree -lt $nrdirs ]] && skip "not enough blocks ($numfree)" &&
4281                 return
4282
4283         trap cleanup_print_lfs_df EXIT
4284
4285         # create files
4286         createmany -d $dir/d $nrdirs || {
4287                 unlinkmany $dir/d $nrdirs
4288                 error "failed to create $nrdirs subdirs in MDT$mdtidx:$dir"
4289         }
4290
4291         # really created :
4292         nrdirs=$(ls -U $dir | wc -l)
4293
4294         # unlink all but 100 subdirectories, then check it still works
4295         local left=100
4296         local delete=$((nrdirs - left))
4297
4298         $LFS df
4299         $LFS df -i
4300
4301         # for ldiskfs the nlink count should be 1, but this is OSD specific
4302         # and so this is listed for informational purposes only
4303         echo "nlink before: $(stat -c %h $dir), created before: $nrdirs"
4304         unlinkmany -d $dir/d $delete ||
4305                 error "unlink of first $delete subdirs failed"
4306
4307         echo "nlink between: $(stat -c %h $dir)"
4308         local found=$(ls -U $dir | wc -l)
4309         [ $found -ne $left ] &&
4310                 error "can't find subdirs: found only $found, expected $left"
4311
4312         unlinkmany -d $dir/d $delete $left ||
4313                 error "unlink of second $left subdirs failed"
4314         # regardless of whether the backing filesystem tracks nlink accurately
4315         # or not, the nlink count shouldn't be more than "." and ".." here
4316         local after=$(stat -c %h $dir)
4317         [[ $after -gt 2 ]] && error "nlink after: $after > 2" ||
4318                 echo "nlink after: $after"
4319
4320         cleanup_print_lfs_df
4321 }
4322 run_test 51b "exceed 64k subdirectory nlink limit on create, verify unlink"
4323
4324 test_51d() {
4325         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4326         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs" && return
4327         test_mkdir $DIR/$tdir
4328         createmany -o $DIR/$tdir/t- 1000
4329         $LFS getstripe $DIR/$tdir > $TMP/$tfile
4330         for N in $(seq 0 $((OSTCOUNT - 1))); do
4331                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4332                         END { printf("%0.0f", objs) }' $TMP/$tfile)
4333                 OBJS0[$N]=$(grep -A 1 idx $TMP/$tfile | awk -vobjs=0 \
4334                         '($1 == '$N') { objs += 1 } \
4335                         END { printf("%0.0f", objs) }')
4336                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4337         done
4338         unlinkmany $DIR/$tdir/t- 1000
4339
4340         NLAST=0
4341         for N in $(seq 1 $((OSTCOUNT - 1))); do
4342                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4343                         error "OST $N has less objects vs OST $NLAST" \
4344                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4345                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4346                         error "OST $N has less objects vs OST $NLAST" \
4347                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4348
4349                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4350                         error "OST $N has less #0 objects vs OST $NLAST" \
4351                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4352                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4353                         error "OST $N has less #0 objects vs OST $NLAST" \
4354                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4355                 NLAST=$N
4356         done
4357         rm -f $TMP/$tfile
4358 }
4359 run_test 51d "check object distribution"
4360
4361 test_51e() {
4362         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4363                 skip "ldiskfs only test"
4364                 return
4365         fi
4366
4367         test_mkdir -c1 $DIR/$tdir
4368         test_mkdir -c1 $DIR/$tdir/d0
4369
4370         touch $DIR/$tdir/d0/foo
4371         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4372                 error "file exceed 65000 nlink limit!"
4373         unlinkmany $DIR/$tdir/d0/f- 65001
4374         return 0
4375 }
4376 run_test 51e "check file nlink limit"
4377
4378 test_51f() {
4379         test_mkdir $DIR/$tdir
4380
4381         local max=100000
4382         local ulimit_old=$(ulimit -n)
4383         local spare=20 # number of spare fd's for scripts/libraries, etc.
4384         local mdt=$(lfs getstripe -M $DIR/$tdir)
4385         local numfree=$(lfs df -i $DIR/$tdir | awk '/MDT:'$mdt'/ { print $4 }')
4386
4387         echo "MDT$mdt numfree=$numfree, max=$max"
4388         [[ $numfree -gt $max ]] && numfree=$max || numfree=$((numfree * 7 / 8))
4389         if [ $((numfree + spare)) -gt $ulimit_old ]; then
4390                 while ! ulimit -n $((numfree + spare)); do
4391                         numfree=$((numfree * 3 / 4))
4392                 done
4393                 echo "changed ulimit from $ulimit_old to $((numfree + spare))"
4394         else
4395                 echo "left ulimit at $ulimit_old"
4396         fi
4397
4398         createmany -o -k -t 120 $DIR/$tdir/f $numfree || {
4399                 unlinkmany $DIR/$tdir/f $numfree
4400                 error "create+open $numfree files in $DIR/$tdir failed"
4401         }
4402         ulimit -n $ulimit_old
4403
4404         # if createmany exits at 120s there will be fewer than $numfree files
4405         unlinkmany $DIR/$tdir/f $numfree || true
4406 }
4407 run_test 51f "check many open files limit"
4408
4409 test_52a() {
4410         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4411         test_mkdir $DIR/$tdir
4412         touch $DIR/$tdir/foo
4413         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4414         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4415         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4416         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4417         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4418                                         error "link worked"
4419         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4420         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4421         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4422                                                      error "lsattr"
4423         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4424         cp -r $DIR/$tdir $TMP/
4425         rm -fr $DIR/$tdir $TMP/$tdir || error "cleanup rm failed"
4426 }
4427 run_test 52a "append-only flag test (should return errors)"
4428
4429 test_52b() {
4430         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4431         test_mkdir $DIR/$tdir
4432         touch $DIR/$tdir/foo
4433         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4434         cat test > $DIR/$tdir/foo && error "cat test worked"
4435         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4436         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4437         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4438                                         error "link worked"
4439         echo foo >> $DIR/$tdir/foo && error "echo worked"
4440         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4441         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4442         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4443         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4444                                                         error "lsattr"
4445         chattr -i $DIR/$tdir/foo || error "chattr failed"
4446
4447         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4448 }
4449 run_test 52b "immutable flag test (should return errors) ======="
4450
4451 test_53() {
4452         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4453         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4454         remote_ost_nodsh && skip "remote OST with nodsh" && return
4455
4456         local param
4457         local param_seq
4458         local ostname
4459         local mds_last
4460         local mds_last_seq
4461         local ost_last
4462         local ost_last_seq
4463         local ost_last_id
4464         local ostnum
4465         local node
4466         local found=false
4467         local support_last_seq=true
4468
4469         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
4470                 support_last_seq=false
4471
4472         # only test MDT0000
4473         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4474         local value
4475         for value in $(do_facet $SINGLEMDS \
4476                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4477                 param=$(echo ${value[0]} | cut -d "=" -f1)
4478                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4479
4480                 if $support_last_seq; then
4481                         param_seq=$(echo $param |
4482                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4483                         mds_last_seq=$(do_facet $SINGLEMDS \
4484                                        $LCTL get_param -n $param_seq)
4485                 fi
4486                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4487
4488                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4489                 node=$(facet_active_host ost$((ostnum+1)))
4490                 param="obdfilter.$ostname.last_id"
4491                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4492                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4493                         ost_last_id=$ost_last
4494
4495                         if $support_last_seq; then
4496                                 ost_last_id=$(echo $ost_last |
4497                                               awk -F':' '{print $2}' |
4498                                               sed -e "s/^0x//g")
4499                                 ost_last_seq=$(echo $ost_last |
4500                                                awk -F':' '{print $1}')
4501                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4502                         fi
4503
4504                         if [[ $ost_last_id != $mds_last ]]; then
4505                                 error "$ost_last_id != $mds_last"
4506                         else
4507                                 found=true
4508                                 break
4509                         fi
4510                 done
4511         done
4512         $found || error "can not match last_seq/last_id for $mdtosc"
4513         return 0
4514 }
4515 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4516
4517 test_54a() {
4518         perl -MSocket -e ';' || { skip "no Socket perl module installed" && return; }
4519
4520         $SOCKETSERVER $DIR/socket ||
4521                 error "$SOCKETSERVER $DIR/socket failed: $?"
4522         $SOCKETCLIENT $DIR/socket ||
4523                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4524         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4525 }
4526 run_test 54a "unix domain socket test =========================="
4527
4528 test_54b() {
4529         f="$DIR/f54b"
4530         mknod $f c 1 3
4531         chmod 0666 $f
4532         dd if=/dev/zero of=$f bs=$(page_size) count=1
4533 }
4534 run_test 54b "char device works in lustre ======================"
4535
4536 find_loop_dev() {
4537         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4538         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4539         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4540
4541         for i in $(seq 3 7); do
4542                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4543                 LOOPDEV=$LOOPBASE$i
4544                 LOOPNUM=$i
4545                 break
4546         done
4547 }
4548
4549 cleanup_54c() {
4550         local rc=0
4551         loopdev="$DIR/loop54c"
4552
4553         trap 0
4554         $UMOUNT $DIR/$tdir || rc=$?
4555         losetup -d $loopdev || true
4556         losetup -d $LOOPDEV || true
4557         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4558         return $rc
4559 }
4560
4561 test_54c() {
4562         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4563         loopdev="$DIR/loop54c"
4564
4565         find_loop_dev
4566         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
4567         trap cleanup_54c EXIT
4568         mknod $loopdev b 7 $LOOPNUM
4569         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4570         dd if=/dev/zero of=$DIR/$tfile bs=$(get_page_size client) seek=1024 count=1 > /dev/null
4571         losetup $loopdev $DIR/$tfile ||
4572                 error "can't set up $loopdev for $DIR/$tfile"
4573         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4574         test_mkdir $DIR/$tdir
4575         mount -t ext2 $loopdev $DIR/$tdir ||
4576                 error "error mounting $loopdev on $DIR/$tdir"
4577         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$(get_page_size client) count=30 ||
4578                 error "dd write"
4579         df $DIR/$tdir
4580         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$(get_page_size client) count=30 ||
4581                 error "dd read"
4582         cleanup_54c
4583 }
4584 run_test 54c "block device works in lustre ====================="
4585
4586 test_54d() {
4587         f="$DIR/f54d"
4588         string="aaaaaa"
4589         mknod $f p
4590         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4591 }
4592 run_test 54d "fifo device works in lustre ======================"
4593
4594 test_54e() {
4595         f="$DIR/f54e"
4596         string="aaaaaa"
4597         cp -aL /dev/console $f
4598         echo $string > $f || error "echo $string to $f failed"
4599 }
4600 run_test 54e "console/tty device works in lustre ======================"
4601
4602 test_56a() {
4603         local numfiles=3
4604         local dir=$DIR/$tdir
4605
4606         rm -rf $dir
4607         test_mkdir -p $dir/dir
4608         for i in $(seq $numfiles); do
4609                 touch $dir/file$i
4610                 touch $dir/dir/file$i
4611         done
4612
4613         local numcomp=$($LFS getstripe --component-count $dir)
4614
4615         [[ $numcomp == 0 ]] && numcomp=1
4616
4617         # test lfs getstripe with --recursive
4618         local filenum=$($LFS getstripe -r $dir | egrep -c "obdidx|l_ost_idx")
4619
4620         [[ $filenum -eq $((numfiles * 2)) ]] ||
4621                 error "$LFS getstripe -r: found $filenum != $((numfiles * 2))"
4622         filenum=$($LFS getstripe $dir | egrep -c "obdidx|l_ost_idx")
4623         [[ $filenum -eq $numfiles ]] ||
4624                 error "$LFS getstripe $dir: found $filenum, not $numfiles"
4625         echo "$LFS getstripe showed obdidx or l_ost_idx"
4626
4627         # test lfs getstripe with file instead of dir
4628         filenum=$($LFS getstripe $dir/file1 | egrep -c "obdidx|l_ost_idx")
4629         [[ $filenum -eq 1 ]] ||
4630                 error "$LFS getstripe $dir/file1: found $filenum, not 1"
4631         echo "$LFS getstripe file1 passed"
4632
4633         #test lfs getstripe with --verbose
4634         filenum=$($LFS getstripe --verbose $dir | grep -c lmm_magic)
4635         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
4636                 error "$LFS getstripe --verbose $dir: "\
4637                       "got $filenum want $((numfiles * numcomp)) lmm_magic"
4638         [[ $($LFS getstripe $dir | grep -c lmm_magic) -eq 0 ]] ||
4639                 error "$LFS getstripe $dir: showed lmm_magic"
4640
4641         #test lfs getstripe with -v prints lmm_fid
4642         filenum=$($LFS getstripe -v $dir | grep -c lmm_fid)
4643         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
4644                 error "$LFS getstripe -v $dir: "\
4645                       "got $filenum want $((numfiles * numcomp)) lmm_fid"
4646         [[ $($LFS getstripe $dir | grep -c lmm_fid) -eq 0 ]] ||
4647                 error "$LFS getstripe $dir: showed lmm_fid by default"
4648         echo "$LFS getstripe --verbose passed"
4649
4650         #check for FID information
4651         local fid1=$($LFS getstripe --fid $dir/file1)
4652         local fid2=$($LFS getstripe --verbose $dir/file1 |
4653                      awk '/lmm_fid: / { print $2; exit; }')
4654         local fid3=$($LFS path2fid $dir/file1)
4655
4656         [ "$fid1" != "$fid2" ] &&
4657                 error "getstripe --fid '$fid1' != getstripe --verbose '$fid2'"
4658         [ "$fid1" != "$fid3" ] &&
4659                 error "getstripe --fid '$fid1' != lfs path2fid '$fid3'"
4660         echo "$LFS getstripe --fid passed"
4661
4662         #test lfs getstripe with --obd
4663         $LFS getstripe --obd wrong_uuid $dir 2>&1 | grep -q "unknown obduuid" ||
4664                 error "$LFS getstripe --obd wrong_uuid: should return error"
4665
4666         [[ $OSTCOUNT -lt 2 ]] &&
4667                 skip_env "skip '$LFS getstripe --obd' tests: $OSTCOUNT < 2" &&
4668                 return
4669
4670         local ostidx=1
4671         local obduuid=$(ostuuid_from_index $ostidx)
4672         local found=$($LFS getstripe -r --obd $obduuid $dir |
4673                       egrep -c "obdidx|l_ost_idx")
4674
4675         filenum=$($LFS getstripe -ir $dir | grep "^$ostidx\$" | wc -l)
4676         [[ $found -eq $filenum ]] ||
4677                 error "$LFS getstripe --obd: found $found expect $filenum"
4678         [[ $($LFS getstripe -r -v --obd $obduuid $dir |
4679                 sed '/^[         ]*'${ostidx}'[  ]/d' |
4680                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4681                 error "$LFS getstripe --obd: should not show file on other obd"
4682         echo "$LFS getstripe --obd passed"
4683 }
4684 run_test 56a "check $LFS getstripe"
4685
4686 test_56b() {
4687         local dir=$DIR/$tdir
4688         local numdirs=3
4689
4690         test_mkdir $dir
4691         for i in $(seq $numdirs); do
4692                 test_mkdir $dir/dir$i
4693         done
4694
4695         # test lfs getdirstripe default mode is non-recursion, which is
4696         # different from lfs getstripe
4697         local dircnt=$($LFS getdirstripe $dir | grep -c lmv_stripe_count)
4698
4699         [[ $dircnt -eq 1 ]] ||
4700                 error "$LFS getdirstripe: found $dircnt, not 1"
4701         dircnt=$($LFS getdirstripe --recursive $dir |
4702                 grep -c lmv_stripe_count)
4703         [[ $dircnt -eq $((numdirs + 1)) ]] ||
4704                 error "$LFS getdirstripe -r: $dircnt, != $((numdirs + 1))"
4705 }
4706 run_test 56b "check $LFS getdirstripe"
4707
4708 test_56c() {
4709         local ost_idx=0
4710         local ost_name=$(ostname_from_index $ost_idx)
4711         local old_status=$(ost_dev_status $ost_idx)
4712
4713         [[ -z "$old_status" ]] ||
4714                 { skip_env "OST $ost_name is in $old_status status"; return 0; }
4715
4716         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=1
4717         sleep_maxage
4718
4719         local new_status=$(ost_dev_status $ost_idx)
4720
4721         [[ "$new_status" = "D" ]] ||
4722                 error "OST $ost_name is in status of '$new_status', not 'D'"
4723
4724         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=0
4725         sleep_maxage
4726
4727         new_status=$(ost_dev_status $ost_idx)
4728         [[ -z "$new_status" ]] ||
4729                 error "OST $ost_name is in status of '$new_status', not ''"
4730 }
4731 run_test 56c "check 'lfs df' showing device status"
4732
4733 NUMFILES=3
4734 NUMDIRS=3
4735 setup_56() {
4736         local local_tdir="$1"
4737         local local_numfiles="$2"
4738         local local_numdirs="$3"
4739         local dir_params="$4"
4740         local dir_stripe_params="$5"
4741
4742         if [ ! -d "$local_tdir" ] ; then
4743                 test_mkdir -p $dir_stripe_params $local_tdir
4744                 [ "$dir_params" ] && $LFS setstripe $dir_params $local_tdir
4745                 for i in $(seq $local_numfiles) ; do
4746                         touch $local_tdir/file$i
4747                 done
4748                 for i in $(seq $local_numdirs) ; do
4749                         test_mkdir $dir_stripe_params $local_tdir/dir$i
4750                         for j in $(seq $local_numfiles) ; do
4751                                 touch $local_tdir/dir$i/file$j
4752                         done
4753                 done
4754         fi
4755 }
4756
4757 setup_56_special() {
4758         local local_tdir=$1
4759         local local_numfiles=$2
4760         local local_numdirs=$3
4761
4762         setup_56 $local_tdir $local_numfiles $local_numdirs
4763
4764         if [ ! -e "$local_tdir/loop${local_numfiles}b" ] ; then
4765                 for i in $(seq $local_numfiles) ; do
4766                         mknod $local_tdir/loop${i}b b 7 $i
4767                         mknod $local_tdir/null${i}c c 1 3
4768                         ln -s $local_tdir/file1 $local_tdir/link${i}
4769                 done
4770                 for i in $(seq $local_numdirs) ; do
4771                         mknod $local_tdir/dir$i/loop${i}b b 7 $i
4772                         mknod $local_tdir/dir$i/null${i}c c 1 3
4773                         ln -s $local_tdir/dir$i/file1 $local_tdir/dir$i/link${i}
4774                 done
4775         fi
4776 }
4777
4778 test_56g() {
4779         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4780         local expected=$(($NUMDIRS + 2))
4781
4782         setup_56 $dir $NUMFILES $NUMDIRS
4783
4784         # test lfs find with -name
4785         for i in $(seq $NUMFILES) ; do
4786                 local nums=$($LFS find -name "*$i" $dir | wc -l)
4787
4788                 [ $nums -eq $expected ] ||
4789                         error "lfs find -name '*$i' $dir wrong: "\
4790                               "found $nums, expected $expected"
4791         done
4792 }
4793 run_test 56g "check lfs find -name"
4794
4795 test_56h() {
4796         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4797         local expected=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4798
4799         setup_56 $dir $NUMFILES $NUMDIRS
4800
4801         # test lfs find with ! -name
4802         for i in $(seq $NUMFILES) ; do
4803                 local nums=$($LFS find ! -name "*$i" $dir | wc -l)
4804
4805                 [ $nums -eq $expected ] ||
4806                         error "lfs find ! -name '*$i' $dir wrong: "\
4807                               "found $nums, expected $expected"
4808         done
4809 }
4810 run_test 56h "check lfs find ! -name"
4811
4812 test_56i() {
4813         local dir=$DIR/$tdir
4814
4815         test_mkdir $dir
4816
4817         local cmd="$LFS find -ost $(ostuuid_from_index 0 $dir) $dir"
4818         local out=$($cmd)
4819
4820         [ -z "$out" ] || error "'$cmd' returned directory '$out'"
4821 }
4822 run_test 56i "check 'lfs find -ost UUID' skips directories"
4823
4824 test_56j() {
4825         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4826
4827         setup_56_special $dir $NUMFILES $NUMDIRS
4828
4829         local expected=$((NUMDIRS + 1))
4830         local cmd="$LFS find -type d $dir"
4831         local nums=$($cmd | wc -l)
4832
4833         [ $nums -eq $expected ] ||
4834                 error "'$cmd' wrong: found $nums, expected $expected"
4835 }
4836 run_test 56j "check lfs find -type d"
4837
4838 test_56k() {
4839         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4840
4841         setup_56_special $dir $NUMFILES $NUMDIRS
4842
4843         local expected=$(((NUMDIRS + 1) * NUMFILES))
4844         local cmd="$LFS find -type f $dir"
4845         local nums=$($cmd | wc -l)
4846
4847         [ $nums -eq $expected ] ||
4848                 error "'$cmd' wrong: found $nums, expected $expected"
4849 }
4850 run_test 56k "check lfs find -type f"
4851
4852 test_56l() {
4853         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4854
4855         setup_56_special $dir $NUMFILES $NUMDIRS
4856
4857         local expected=$((NUMDIRS + NUMFILES))
4858         local cmd="$LFS find -type b $dir"
4859         local nums=$($cmd | wc -l)
4860
4861         [ $nums -eq $expected ] ||
4862                 error "'$cmd' wrong: found $nums, expected $expected"
4863 }
4864 run_test 56l "check lfs find -type b"
4865
4866 test_56m() {
4867         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4868
4869         setup_56_special $dir $NUMFILES $NUMDIRS
4870
4871         local expected=$((NUMDIRS + NUMFILES))
4872         local cmd="$LFS find -type c $dir"
4873         local nums=$($cmd | wc -l)
4874         [ $nums -eq $expected ] ||
4875                 error "'$cmd' wrong: found $nums, expected $expected"
4876 }
4877 run_test 56m "check lfs find -type c"
4878
4879 test_56n() {
4880         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4881         setup_56_special $dir $NUMFILES $NUMDIRS
4882
4883         local expected=$((NUMDIRS + NUMFILES))
4884         local cmd="$LFS find -type l $dir"
4885         local nums=$($cmd | wc -l)
4886
4887         [ $nums -eq $expected ] ||
4888                 error "'$cmd' wrong: found $nums, expected $expected"
4889 }
4890 run_test 56n "check lfs find -type l"
4891
4892 test_56o() {
4893         local dir=$DIR/$tdir
4894
4895         setup_56 $dir $NUMFILES $NUMDIRS
4896         utime $dir/file1 > /dev/null || error "utime (1)"
4897         utime $dir/file2 > /dev/null || error "utime (2)"
4898         utime $dir/dir1 > /dev/null || error "utime (3)"
4899         utime $dir/dir2 > /dev/null || error "utime (4)"
4900         utime $dir/dir1/file1 > /dev/null || error "utime (5)"
4901         dd if=/dev/zero count=1 >> $dir/dir1/file1 && sync
4902
4903         local expected=4
4904         local nums=$($LFS find -mtime +0 $dir | wc -l)
4905
4906         [ $nums -eq $expected ] ||
4907                 error "lfs find -mtime +0 $dir: found $nums expect $expected"
4908
4909         expected=12
4910         cmd="$LFS find -mtime 0 $dir"
4911         nums=$($cmd | wc -l)
4912         [ $nums -eq $expected ] ||
4913                 error "'$cmd' wrong: found $nums, expected $expected"
4914 }
4915 run_test 56o "check lfs find -mtime for old files"
4916
4917 test_56p() {
4918         [ $RUNAS_ID -eq $UID ] &&
4919                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4920
4921         local dir=$DIR/$tdir
4922
4923         setup_56 $dir $NUMFILES $NUMDIRS
4924         chown $RUNAS_ID $dir/file* || error "chown $DIR/${tdir}g/file$i failed"
4925
4926         local expected=$NUMFILES
4927         local cmd="$LFS find -uid $RUNAS_ID $dir"
4928         local nums=$($cmd | wc -l)
4929
4930         [ $nums -eq $expected ] ||
4931                 error "'$cmd' wrong: found $nums, expected $expected"
4932
4933         expected=$(((NUMFILES + 1) * NUMDIRS + 1))
4934         cmd="$LFS find ! -uid $RUNAS_ID $dir"
4935         nums=$($cmd | wc -l)
4936         [ $nums -eq $expected ] ||
4937                 error "'$cmd' wrong: found $nums, expected $expected"
4938 }
4939 run_test 56p "check lfs find -uid and ! -uid"
4940
4941 test_56q() {
4942         [ $RUNAS_ID -eq $UID ] &&
4943                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4944
4945         local dir=$DIR/$tdir
4946
4947         setup_56 $dir $NUMFILES $NUMDIRS
4948         chgrp $RUNAS_GID $dir/file* || error "chown $dir/file$i failed"
4949
4950         local expected=$NUMFILES
4951         local cmd="$LFS find -gid $RUNAS_GID $dir"
4952         local nums=$($cmd | wc -l)
4953
4954         [ $nums -eq $expected ] ||
4955                 error "'$cmd' wrong: found $nums, expected $expected"
4956
4957         expected=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4958         cmd="$LFS find ! -gid $RUNAS_GID $dir"
4959         nums=$($cmd | wc -l)
4960         [ $nums -eq $expected ] ||
4961                 error "'$cmd' wrong: found $nums, expected $expected"
4962 }
4963 run_test 56q "check lfs find -gid and ! -gid"
4964
4965 test_56r() {
4966         local dir=$DIR/$tdir
4967
4968         setup_56 $dir $NUMFILES $NUMDIRS
4969
4970         local expected=12
4971         local cmd="$LFS find -size 0 -type f $dir"
4972         local nums=$($cmd | wc -l)
4973
4974         [ $nums -eq $expected ] ||
4975                 error "'$cmd' wrong: found $nums, expected $expected"
4976         expected=0
4977         cmd="$LFS find ! -size 0 -type f $dir"
4978         nums=$($cmd | wc -l)
4979         [ $nums -eq $expected ] ||
4980                 error "'$cmd' wrong: found $nums, expected $expected"
4981         echo "test" > $dir/$tfile
4982         echo "test2" > $dir/$tfile.2 && sync
4983         expected=1
4984         cmd="$LFS find -size 5 -type f $dir"
4985         nums=$($cmd | wc -l)
4986         [ $nums -eq $expected ] ||
4987                 error "'$cmd' wrong: found $nums, expected $expected"
4988         expected=1
4989         cmd="$LFS find -size +5 -type f $dir"
4990         nums=$($cmd | wc -l)
4991         [ $nums -eq $expected ] ||
4992                 error "'$cmd' wrong: found $nums, expected $expected"
4993         expected=2
4994         cmd="$LFS find -size +0 -type f $dir"
4995         nums=$($cmd | wc -l)
4996         [ $nums -eq $expected ] ||
4997                 error "'$cmd' wrong: found $nums, expected $expected"
4998         expected=2
4999         cmd="$LFS find ! -size -5 -type f $dir"
5000         nums=$($cmd | wc -l)
5001         [ $nums -eq $expected ] ||
5002                 error "'$cmd' wrong: found $nums, expected $expected"
5003         expected=12
5004         cmd="$LFS find -size -5 -type f $dir"
5005         nums=$($cmd | wc -l)
5006         [ $nums -eq $expected ] ||
5007                 error "'$cmd' wrong: found $nums, expected $expected"
5008 }
5009 run_test 56r "check lfs find -size works"
5010
5011 test_56s() { # LU-611 #LU-9369
5012         [[ $OSTCOUNT -lt 2 ]] && skip "need at least 2 OSTs" && return 0
5013
5014         local dir=$DIR/$tdir
5015         local onestripe=$(((NUMDIRS + 1) * NUMFILES))
5016
5017         setup_56 $dir $NUMFILES $NUMDIRS "-c 1"
5018         for i in $(seq $NUMDIRS); do
5019                 $LFS setstripe -c $((OSTCOUNT + 1)) $dir/dir$i/$tfile
5020         done
5021
5022         local expected=$NUMDIRS
5023         local cmd="$LFS find -c $OSTCOUNT $dir"
5024         local nums=$($cmd | wc -l)
5025
5026         [ $nums -eq $expected ] || {
5027                 $LFS getstripe -R $dir
5028                 error "'$cmd' wrong: found $nums, expected $expected"
5029         }
5030
5031         expected=$((NUMDIRS + onestripe))
5032         cmd="$LFS find -stripe-count +0 -type f $dir"
5033         nums=$($cmd | wc -l)
5034         [ $nums -eq $expected ] || {
5035                 $LFS getstripe -R $dir
5036                 error "'$cmd' wrong: found $nums, expected $expected"
5037         }
5038
5039         expected=$onestripe
5040         cmd="$LFS find -stripe-count 1 -type f $dir"
5041         nums=$($cmd | wc -l)
5042         [ $nums -eq $expected ] || {
5043                 $LFS getstripe -R $dir
5044                 error "'$cmd' wrong: found $nums, expected $expected"
5045         }
5046
5047         cmd="$LFS find -stripe-count -2 -type f $dir"
5048         nums=$($cmd | wc -l)
5049         [ $nums -eq $expected ] || {
5050                 $LFS getstripe -R $dir
5051                 error "'$cmd' wrong: found $nums, expected $expected"
5052         }
5053
5054         expected=0
5055         cmd="$LFS find -stripe-count $((OSTCOUNT + 1)) -type f $dir"
5056         nums=$($cmd | wc -l)
5057         [ $nums -eq $expected ] || {
5058                 $LFS getstripe -R $dir
5059                 error "'$cmd' wrong: found $nums, expected $expected"
5060         }
5061 }
5062 run_test 56s "check lfs find -stripe-count works"
5063
5064 test_56t() { # LU-611 #LU-9369
5065         local dir=$DIR/$tdir
5066
5067         setup_56 $dir 0 $NUMDIRS
5068         for i in $(seq $NUMDIRS); do
5069                 $LFS setstripe -S 4M $dir/dir$i/$tfile
5070         done
5071
5072         local expected=$NUMDIRS
5073         local cmd="$LFS find -S 4M $dir"
5074         local nums=$($cmd | wc -l)
5075
5076         [ $nums -eq $expected ] || {
5077                 $LFS getstripe -R $dir
5078                 error "'$cmd' wrong: found $nums, expected $expected"
5079         }
5080         rm -rf $dir
5081
5082         setup_56 $dir $NUMFILES $NUMDIRS "--stripe-size 512k"
5083
5084         $LFS setstripe -S 256k $dir/$tfile.{0,1,2,3}
5085
5086         expected=$(((NUMDIRS + 1) * NUMFILES))
5087         cmd="$LFS find -stripe-size 512k -type f $dir"
5088         nums=$($cmd | wc -l)
5089         [ $nums -eq $expected ] ||
5090                 error "'$cmd' wrong: found $nums, expected $expected"
5091
5092         cmd="$LFS find -stripe-size +320k -type f $dir"
5093         nums=$($cmd | wc -l)
5094         [ $nums -eq $expected ] ||
5095                 error "'$cmd' wrong: found $nums, expected $expected"
5096
5097         expected=$(((NUMDIRS + 1) * NUMFILES + 4))
5098         cmd="$LFS find -stripe-size +200k -type f $dir"
5099         nums=$($cmd | wc -l)
5100         [ $nums -eq $expected ] ||
5101                 error "'$cmd' wrong: found $nums, expected $expected"
5102
5103         cmd="$LFS find -stripe-size -640k -type f $dir"
5104         nums=$($cmd | wc -l)
5105         [ $nums -eq $expected ] ||
5106                 error "'$cmd' wrong: found $nums, expected $expected"
5107
5108         expected=4
5109         cmd="$LFS find -stripe-size 256k -type f $dir"
5110         nums=$($cmd | wc -l)
5111         [ $nums -eq $expected ] ||
5112                 error "'$cmd' wrong: found $nums, expected $expected"
5113
5114         cmd="$LFS find -stripe-size -320k -type f $dir"
5115         nums=$($cmd | wc -l)
5116         [ $nums -eq $expected ] ||
5117                 error "'$cmd' wrong: found $nums, expected $expected"
5118
5119         expected=0
5120         cmd="$LFS find -stripe-size 1024k -type f $dir"
5121         nums=$($cmd | wc -l)
5122         [ $nums -eq $expected ] ||
5123                 error "'$cmd' wrong: found $nums, expected $expected"
5124 }
5125 run_test 56t "check lfs find -stripe-size works"
5126
5127 test_56u() { # LU-611
5128         local dir=$DIR/$tdir
5129
5130         setup_56 $dir $NUMFILES $NUMDIRS "-i 0 -c 1"
5131
5132         if [[ $OSTCOUNT -gt 1 ]]; then
5133                 $LFS setstripe -i 1 -c 1 $dir/$tfile.{0,1,2,3}
5134                 onestripe=4
5135         else
5136                 onestripe=0
5137         fi
5138
5139         local expected=$(((NUMDIRS + 1) * NUMFILES))
5140         local cmd="$LFS find -stripe-index 0 -type f $dir"
5141         local nums=$($cmd | wc -l)
5142
5143         [ $nums -eq $expected ] ||
5144                 error "'$cmd' wrong: found $nums, expected $expected"
5145
5146         expected=$onestripe
5147         cmd="$LFS find -stripe-index 1 -type f $dir"
5148         nums=$($cmd | wc -l)
5149         [ $nums -eq $expected ] ||
5150                 error "'$cmd' wrong: found $nums, expected $expected"
5151
5152         cmd="$LFS find ! -stripe-index 0 -type f $dir"
5153         nums=$($cmd | wc -l)
5154         [ $nums -eq $expected ] ||
5155                 error "'$cmd' wrong: found $nums, expected $expected"
5156
5157         expected=0
5158         # This should produce an error and not return any files
5159         cmd="$LFS find -stripe-index $OSTCOUNT -type f $dir"
5160         nums=$($cmd 2>/dev/null | wc -l)
5161         [ $nums -eq $expected ] ||
5162                 error "'$cmd' wrong: found $nums, expected $expected"
5163
5164         if [[ $OSTCOUNT -gt 1 ]]; then
5165                 expected=$(((NUMDIRS + 1) * NUMFILES + onestripe))
5166                 cmd="$LFS find -stripe-index 0,1 -type f $dir"
5167                 nums=$($cmd | wc -l)
5168                 [ $nums -eq $expected ] ||
5169                         error "'$cmd' wrong: found $nums, expected $expected"
5170         fi
5171 }
5172 run_test 56u "check lfs find -stripe-index works"
5173
5174 test_56v() {
5175         local MDT_IDX=0
5176         local dir=$DIR/$tdir
5177
5178         setup_56 $dir $NUMFILES $NUMDIRS
5179
5180         UUID=$(mdtuuid_from_index $MDT_IDX $dir)
5181         [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT $MDT_IDX"
5182
5183         for file in $($LFS find -mdt $UUID $dir); do
5184                 file_mdt_idx=$($LFS getstripe -M $file)
5185                 [ $file_mdt_idx -eq $MDT_IDX ] ||
5186                         error "lfind -mdt $UUID != getstripe -M $file_mdt_idx"
5187         done
5188 }
5189 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
5190
5191 test_56w() {
5192         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
5193         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5194         local dir=$DIR/$tdir
5195
5196         setup_56 $dir $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
5197
5198         local stripe_size=$($LFS getstripe -S -d $dir) ||
5199                 error "$LFS getstripe -S -d $dir failed"
5200         stripe_size=${stripe_size%% *}
5201
5202         local file_size=$((stripe_size * OSTCOUNT))
5203         local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
5204         local required_space=$((file_num * file_size))
5205         local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
5206                            head -n1)
5207         [[ $free_space -le $((required_space / 1024)) ]] &&
5208                 skip_env "need $required_space, have $free_space kbytes" &&
5209                 return
5210
5211         local dd_bs=65536
5212         local dd_count=$((file_size / dd_bs))
5213
5214         # write data into the files
5215         local i
5216         local j
5217         local file
5218
5219         for i in $(seq $NUMFILES); do
5220                 file=$dir/file$i
5221                 yes | dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5222                         error "write data into $file failed"
5223         done
5224         for i in $(seq $NUMDIRS); do
5225                 for j in $(seq $NUMFILES); do
5226                         file=$dir/dir$i/file$j
5227                         yes|dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5228                                 error "write data into $file failed"
5229                 done
5230         done
5231
5232         # $LFS_MIGRATE will fail if hard link migration is unsupported
5233         if [[ $(lustre_version_code mds1) -gt $(version_code 2.5.55) ]]; then
5234                 createmany -l$dir/dir1/file1 $dir/dir1/link 200 ||
5235                         error "creating links to $dir/dir1/file1 failed"
5236         fi
5237
5238         local expected=-1
5239
5240         [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
5241
5242         # lfs_migrate file
5243         local cmd="$LFS_MIGRATE -y -c $expected $dir/file1"
5244
5245         echo "$cmd"
5246         eval $cmd || error "$cmd failed"
5247
5248         check_stripe_count $dir/file1 $expected
5249
5250         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.90) ];
5251         then
5252                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
5253                 # OST 1 if it is on OST 0. This file is small enough to
5254                 # be on only one stripe.
5255                 file=$dir/migr_1_ost
5256                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
5257                         error "write data into $file failed"
5258                 local obdidx=$($LFS getstripe -i $file)
5259                 local oldmd5=$(md5sum $file)
5260                 local newobdidx=0
5261
5262                 [[ $obdidx -eq 0 ]] && newobdidx=1
5263                 cmd="$LFS migrate -i $newobdidx $file"
5264                 echo $cmd
5265                 eval $cmd || error "$cmd failed"
5266
5267                 local realobdix=$($LFS getstripe -i $file)
5268                 local newmd5=$(md5sum $file)
5269
5270                 [[ $newobdidx -ne $realobdix ]] &&
5271                         error "new OST is different (was=$obdidx, "\
5272                               "wanted=$newobdidx, got=$realobdix)"
5273                 [[ "$oldmd5" != "$newmd5" ]] &&
5274                         error "md5sum differ: $oldmd5, $newmd5"
5275         fi
5276
5277         # lfs_migrate dir
5278         cmd="$LFS_MIGRATE -y -c $expected $dir/dir1"
5279         echo "$cmd"
5280         eval $cmd || error "$cmd failed"
5281
5282         for j in $(seq $NUMFILES); do
5283                 check_stripe_count $dir/dir1/file$j $expected
5284         done
5285
5286         # lfs_migrate works with lfs find
5287         cmd="$LFS find -stripe_count $OSTCOUNT -type f $dir |
5288              $LFS_MIGRATE -y -c $expected"
5289         echo "$cmd"
5290         eval $cmd || error "$cmd failed"
5291
5292         for i in $(seq 2 $NUMFILES); do
5293                 check_stripe_count $dir/file$i $expected
5294         done
5295         for i in $(seq 2 $NUMDIRS); do
5296                 for j in $(seq $NUMFILES); do
5297                 check_stripe_count $dir/dir$i/file$j $expected
5298                 done
5299         done
5300 }
5301 run_test 56w "check lfs_migrate -c stripe_count works"
5302
5303 test_56wb() {
5304         local file1=$DIR/$tdir/file1
5305         local create_pool=false
5306         local initial_pool=$($LFS getstripe -p $DIR)
5307         local pool_list=()
5308         local pool=""
5309
5310         echo -n "Creating test dir..."
5311         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
5312         echo "done."
5313
5314         echo -n "Creating test file..."
5315         touch $file1 || error "cannot create file"
5316         echo "done."
5317
5318         echo -n "Detecting existing pools..."
5319         pool_list=($($LFS pool_list $FSNAME | grep "$FSNAME\." | cut -d. -f2))
5320
5321         if [ ${#pool_list[@]} -gt 0 ]; then
5322                 echo "${pool_list[@]}"
5323                 for thispool in "${pool_list[@]}"; do
5324                         if [[ -z "$initial_pool" ||
5325                               "$initial_pool" != "$thispool" ]]; then
5326                                 pool="$thispool"
5327                                 echo "Using existing pool '$pool'"
5328                                 break
5329                         fi
5330                 done
5331         else
5332                 echo "none detected."
5333         fi
5334         if [ -z "$pool" ]; then
5335                 pool=${POOL:-testpool}
5336                 [ "$initial_pool" = "$pool" ] && pool="testpool2"
5337                 echo -n "Creating pool '$pool'..."
5338                 create_pool=true
5339                 pool_add $pool &> /dev/null ||
5340                         error "pool_add failed"
5341                 echo "done."
5342
5343                 echo -n "Adding target to pool..."
5344                 pool_add_targets $pool 0 0 1 &> /dev/null ||
5345                         error "pool_add_targets failed"
5346                 echo "done."
5347         fi
5348
5349         echo -n "Setting pool using -p option..."
5350         $LFS_MIGRATE -y -q --no-rsync -p $pool $file1 &> /dev/null ||
5351                 error "migrate failed rc = $?"
5352         echo "done."
5353
5354         echo -n "Verifying test file is in pool after migrating..."
5355         [ "$($LFS getstripe -p $file1)" = $pool ] ||
5356                 error "file was not migrated to pool $pool"
5357         echo "done."
5358
5359         echo -n "Removing test file from pool '$pool'..."
5360         $LFS migrate $file1 &> /dev/null ||
5361                 error "cannot remove from pool"
5362         [ "$($LFS getstripe -p $file1)" ] &&
5363                 error "pool still set"
5364         echo "done."
5365
5366         echo -n "Setting pool using --pool option..."
5367         $LFS_MIGRATE -y -q --no-rsync --pool $pool $file1 &> /dev/null ||
5368                 error "migrate failed rc = $?"
5369         echo "done."
5370
5371         # Clean up
5372         rm -f $file1
5373         if $create_pool; then
5374                 destroy_test_pools 2> /dev/null ||
5375                         error "destroy test pools failed"
5376         fi
5377 }
5378 run_test 56wb "check lfs_migrate pool support"
5379
5380 test_56wc() {
5381         local file1="$DIR/$tdir/file 1"
5382
5383         echo -n "Creating test dir..."
5384         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
5385         $LFS setstripe -S 1M -c 1 "$DIR/$tdir" &> /dev/null ||
5386                 error "cannot set stripe"
5387         echo "done"
5388
5389         echo -n "Setting initial stripe for test file..."
5390         $LFS setstripe -S 512K -c 1 "$file1" &> /dev/null ||
5391                 error "cannot set stripe"
5392         [ $($LFS getstripe -S "$file1") -eq 524288 ] ||
5393                 error "stripe size not set"
5394         echo "done."
5395
5396         # File currently set to -S 512K -c 1
5397
5398         # Ensure -c and -S options are rejected when -R is set
5399         echo -n "Verifying incompatible options are detected..."
5400         $LFS_MIGRATE -y -R -c 1 "$file1" &> /dev/null &&
5401                 error "incompatible -c and -R options not detected"
5402         $LFS_MIGRATE -y -R -S 1M "$file1" &> /dev/null &&
5403                 error "incompatible -S and -R options not detected"
5404         echo "done."
5405
5406         # Ensure unrecognized options are passed through to 'lfs migrate'
5407         echo -n "Verifying -S option is passed through to lfs migrate..."
5408         $LFS_MIGRATE -y -S 1M "$file1" &> /dev/null ||
5409                 error "migration failed"
5410         [ $($LFS getstripe -S "$file1") -eq 1048576 ] ||
5411                 error "file was not restriped"
5412         echo "done."
5413
5414         # File currently set to -S 1M -c 1
5415
5416         # Ensure long options are supported
5417         echo -n "Verifying long options supported..."
5418         $LFS_MIGRATE -y --non-block "$file1" &> /dev/null ||
5419                 error "long option without argument not supported"
5420         $LFS_MIGRATE -y --stripe-size 512K "$file1" &> /dev/null ||
5421                 error "long option with argument not supported"
5422         [ $($LFS getstripe -S "$file1") -eq 524288 ] ||
5423                 error "file not restriped with --stripe-size option"
5424         echo "done."
5425
5426         # File currently set to -S 512K -c 1
5427
5428         if [ "$OSTCOUNT" -gt 1 ]; then
5429                 echo -n "Verifying explicit stripe count can be set..."
5430                 $LFS_MIGRATE -y -c 2 "$file1" &> /dev/null ||
5431                         error "migrate failed"
5432                 [ $($LFS getstripe -c "$file1") -eq 2 ] ||
5433                         error "file not restriped to explicit count"
5434                 echo "done."
5435         fi
5436
5437         # File currently set to -S 512K -c 1 or -S 512K -c 2
5438
5439         # Ensure parent striping is used if -R is set, and no stripe
5440         # count or size is specified
5441         echo -n "Setting stripe for parent directory..."
5442         $LFS setstripe -S 1M -c 1 "$DIR/$tdir" &> /dev/null ||
5443                 error "cannot set stripe"
5444         echo "done."
5445
5446         echo -n "Verifying restripe option uses parent stripe settings..."
5447         $LFS_MIGRATE -y -R "$file1" &> /dev/null ||
5448                 error "migrate failed"
5449         [ $($LFS getstripe -S "$file1") -eq 1048576 ] ||
5450                 error "file not restriped to parent settings"
5451         [ $($LFS getstripe -c "$file1") -eq 1 ] ||
5452                 error "file not restriped to parent settings"
5453         echo "done."
5454
5455         # File currently set to -S 1M -c 1
5456
5457         # Ensure striping is preserved if -R is not set, and no stripe
5458         # count or size is specified
5459         echo -n "Verifying striping size preserved when not specified..."
5460         $LFS setstripe -S 2M -c 1 "$DIR/$tdir" &> /dev/null ||
5461                 error "cannot set stripe on parent directory"
5462         $LFS_MIGRATE -y "$file1" &> /dev/null ||
5463                 error "migrate failed"
5464         [ $($LFS getstripe -S "$file1") -eq 1048576 ] ||
5465                 error "file was restriped"
5466         echo "done."
5467
5468         # Ensure file name properly detected when final option has no argument
5469         echo -n "Verifying file name properly detected..."
5470         $LFS_MIGRATE -y "$file1" &> /dev/null ||
5471                 error "file name interpreted as option argument"
5472         echo "done."
5473
5474         # Clean up
5475         rm -f "$file1"
5476 }
5477 run_test 56wc "check unrecognized options for lfs_migrate are passed through"
5478
5479 test_56wd() {
5480         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
5481         local file1=$DIR/$tdir/file1
5482
5483         echo -n "Creating test dir..."
5484         test_mkdir $DIR/$tdir || error "cannot create dir"
5485         echo "done."
5486
5487         echo -n "Creating test file..."
5488         touch $file1
5489         echo "done."
5490
5491         # Ensure 'lfs migrate' will fail by using a non-existent option,
5492         # and make sure rsync is not called to recover
5493         echo -n "Make sure --no-rsync option works..."
5494         $LFS_MIGRATE -y --no-rsync --invalid-opt $file1 2>&1 |
5495                 grep -q 'refusing to fall back to rsync' ||
5496                 error "rsync was called with --no-rsync set"
5497         echo "done."
5498
5499         # Ensure rsync is called without trying 'lfs migrate' first
5500         echo -n "Make sure --rsync option works..."
5501         $LFS_MIGRATE -y --rsync --invalid-opt $file1 2>&1 |
5502                 grep -q 'falling back to rsync' &&
5503                 error "lfs migrate was called with --rsync set"
5504         echo "done."
5505
5506         echo -n "Make sure --rsync and --no-rsync options are exclusive..."
5507         $LFS_MIGRATE -y --rsync --no-rsync $file1 2>&1 |
5508                 grep -q 'at the same time' ||
5509                 error "--rsync and --no-rsync accepted concurrently"
5510         echo "done."
5511
5512         # Clean up
5513         rm -f $file1
5514 }
5515 run_test 56wd "check lfs_migrate --rsync and --no-rsync work"
5516
5517 test_56x() {
5518         check_swap_layouts_support && return 0
5519         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
5520
5521         local dir=$DIR/$tdir
5522         local ref1=/etc/passwd
5523         local file1=$dir/file1
5524
5525         test_mkdir $dir || error "creating dir $dir"
5526         $LFS setstripe -c 2 $file1
5527         cp $ref1 $file1
5528         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
5529         stripe=$($LFS getstripe -c $file1)
5530         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5531         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5532
5533         # clean up
5534         rm -f $file1
5535 }
5536 run_test 56x "lfs migration support"
5537
5538 test_56xa() {
5539         check_swap_layouts_support && return 0
5540         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
5541
5542         local dir=$DIR/$tdir/$testnum
5543
5544         test_mkdir -p $dir
5545
5546         local ref1=/etc/passwd
5547         local file1=$dir/file1
5548
5549         $LFS setstripe -c 2 $file1
5550         cp $ref1 $file1
5551         $LFS migrate --block -c 1 $file1 || error "migrate failed rc = $?"
5552
5553         local stripe=$($LFS getstripe -c $file1)
5554
5555         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5556         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5557
5558         # clean up
5559         rm -f $file1
5560 }
5561 run_test 56xa "lfs migration --block support"
5562
5563 check_migrate_links() {
5564         local dir="$1"
5565         local file1="$dir/file1"
5566         local begin="$2"
5567         local count="$3"
5568         local total_count=$(($begin + $count - 1))
5569         local symlink_count=10
5570         local uniq_count=10
5571
5572         if [ ! -f "$file1" ]; then
5573                 echo -n "creating initial file..."
5574                 $LFS setstripe -c 1 -S "512k" "$file1" ||
5575                         error "cannot setstripe initial file"
5576                 echo "done"
5577
5578                 echo -n "creating symlinks..."
5579                 for s in $(seq 1 $symlink_count); do
5580                         ln -s "$file1" "$dir/slink$s" ||
5581                                 error "cannot create symlinks"
5582                 done
5583                 echo "done"
5584
5585                 echo -n "creating nonlinked files..."
5586                 createmany -o "$dir/uniq" 1 10 &> /dev/null ||
5587                         error "cannot create nonlinked files"
5588                 echo "done"
5589         fi
5590
5591         # create hard links
5592         if [ ! -f "$dir/file$total_count" ]; then
5593                 echo -n "creating hard links $begin:$total_count..."
5594                 createmany -l"$file1" "$dir/file" "$begin" "$count" &>  \
5595                         /dev/null || error "cannot create hard links"
5596                 echo "done"
5597         fi
5598
5599         echo -n "checking number of hard links listed in xattrs..."
5600         local fid=$($LFS getstripe -F "$file1")
5601         local paths=($($LFS fid2path "$MOUNT" "$fid" 2> /dev/null))
5602
5603         echo "${#paths[*]}"
5604         if [ ${#paths[*]} -lt $total_count -a "$begin" -eq 2  ]; then
5605                         echo "hard link list has unexpected size, skipping test"
5606                         return 0
5607         fi
5608         if [ ${#paths[*]} -ge $total_count -a "$begin" -ne 2  ]; then
5609                         error "link names should exceed xattrs size"
5610         fi
5611
5612         echo -n "migrating files..."
5613         local migrate_out=$($LFS_MIGRATE -y -S '1m' $dir)
5614         local rc=$?
5615         [ $rc -eq 0 ] || error "migrate failed rc = $rc"
5616         echo "done"
5617
5618         # make sure all links have been properly migrated
5619         echo -n "verifying files..."
5620         fid=$($LFS getstripe -F "$file1") ||
5621                 error "cannot get fid for file $file1"
5622         for i in $(seq 2 $total_count); do
5623                 local fid2=$($LFS getstripe -F $dir/file$i)
5624
5625                 [ "$fid2" == "$fid" ] ||
5626                         error "migrated hard link has mismatched FID"
5627         done
5628
5629         # make sure hard links were properly detected, and migration was
5630         # performed only once for the entire link set; nonlinked files should
5631         # also be migrated
5632         local actual=$(grep -c 'done migrate' <<< "$migrate_out")
5633         local expected=$(($uniq_count + 1))
5634
5635         [ "$actual" -eq  "$expected" ] ||
5636                 error "hard links individually migrated ($actual != $expected)"
5637
5638         # make sure the correct number of hard links are present
5639         local hardlinks=$(stat -c '%h' "$file1")
5640
5641         [ $hardlinks -eq $total_count ] ||
5642                 error "num hard links $hardlinks != $total_count"
5643         echo "done"
5644
5645         return 0
5646 }
5647
5648 test_56xb() {
5649         local dir="$DIR/$tdir"
5650
5651         test_mkdir "$dir" || error "cannot create dir $dir"
5652
5653         echo "testing lfs migrate mode when all links fit within xattrs"
5654         LFS_MIGRATE_RSYNC=false check_migrate_links "$dir" 2 99
5655
5656         echo "testing rsync mode when all links fit within xattrs"
5657         LFS_MIGRATE_RSYNC=true check_migrate_links "$dir" 2 99
5658
5659         echo "testing lfs migrate mode when all links do not fit within xattrs"
5660         LFS_MIGRATE_RSYNC=false check_migrate_links "$dir" 101 100
5661
5662         echo "testing rsync mode when all links do not fit within xattrs"
5663         LFS_MIGRATE_RSYNC=true check_migrate_links "$dir" 101 100
5664
5665         # clean up
5666         rm -rf $dir
5667 }
5668 run_test 56xb "lfs migration hard link support"
5669
5670 test_56y() {
5671         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
5672                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
5673                 return
5674
5675         local res=""
5676         local dir=$DIR/$tdir
5677         local f1=$dir/file1
5678         local f2=$dir/file2
5679
5680         test_mkdir -p $dir || error "creating dir $dir"
5681         touch $f1 || error "creating std file $f1"
5682         $MULTIOP $f2 H2c || error "creating released file $f2"
5683
5684         # a directory can be raid0, so ask only for files
5685         res=$($LFS find $dir -L raid0 -type f | wc -l)
5686         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
5687
5688         res=$($LFS find $dir \! -L raid0 -type f | wc -l)
5689         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
5690
5691         # only files can be released, so no need to force file search
5692         res=$($LFS find $dir -L released)
5693         [[ $res == $f2 ]] || error "search released: found $res != $f2"
5694
5695         res=$($LFS find $dir -type f \! -L released)
5696         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
5697 }
5698 run_test 56y "lfs find -L raid0|released"
5699
5700 test_56z() { # LU-4824
5701         # This checks to make sure 'lfs find' continues after errors
5702         # There are two classes of errors that should be caught:
5703         # - If multiple paths are provided, all should be searched even if one
5704         #   errors out
5705         # - If errors are encountered during the search, it should not terminate
5706         #   early
5707         local dir=$DIR/$tdir
5708         local i
5709
5710         test_mkdir $dir
5711         for i in d{0..9}; do
5712                 test_mkdir $dir/$i
5713         done
5714         touch $dir/d{0..9}/$tfile
5715         $LFS find $DIR/non_existent_dir $dir &&
5716                 error "$LFS find did not return an error"
5717         # Make a directory unsearchable. This should NOT be the last entry in
5718         # directory order.  Arbitrarily pick the 6th entry
5719         chmod 700 $($LFS find $dir -type d | sed '6!d')
5720
5721         local count=$($RUNAS $LFS find $DIR/non_existent $dir | wc -l)
5722
5723         # The user should be able to see 10 directories and 9 files
5724         [ $count == 19 ] || error "$LFS find did not continue after error"
5725 }
5726 run_test 56z "lfs find should continue after an error"
5727
5728 test_56aa() { # LU-5937
5729         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5730
5731         local dir=$DIR/$tdir
5732
5733         mkdir $dir
5734         $LFS setdirstripe -c$MDSCOUNT $dir/striped_dir
5735
5736         createmany -o $dir/striped_dir/${tfile}- 1024
5737         local dirs=$(lfs find --size +8k $dir/)
5738
5739         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
5740 }
5741 run_test 56aa "lfs find --size under striped dir"
5742
5743 test_56ba() {
5744         # Create composite files with one component
5745         local dir=$DIR/$tdir
5746
5747         setup_56 $dir/1Mfiles 5 1 "--component-end 1M"
5748         # Create composite files with three components
5749         setup_56 $dir/2Mfiles 5 2 "-E 2M -E 4M -E 6M"
5750         # Create non-composite files
5751         createmany -o $dir/${tfile}- 10
5752
5753         local nfiles=$($LFS find --component-end 1M --type f $dir | wc -l)
5754
5755         [[ $nfiles == 10 ]] ||
5756                 error "lfs find -E 1M found $nfiles != 10 files"
5757
5758         nfiles=$($LFS find ! -E 1M --type f $dir | wc -l)
5759         [[ $nfiles == 25 ]] ||
5760                 error "lfs find ! -E 1M found $nfiles != 25 files"
5761
5762         # All files have a component that starts at 0
5763         nfiles=$($LFS find --component-start 0 --type f $dir | wc -l)
5764         [[ $nfiles == 35 ]] ||
5765                 error "lfs find --component-start 0 - $nfiles != 35 files"
5766
5767         nfiles=$($LFS find --component-start 2M --type f $dir | wc -l)
5768         [[ $nfiles == 15 ]] ||
5769                 error "lfs find --component-start 2M - $nfiles != 15 files"
5770
5771         # All files created here have a componenet that does not starts at 2M
5772         nfiles=$($LFS find ! --component-start 2M --type f $dir | wc -l)
5773         [[ $nfiles == 35 ]] ||
5774                 error "lfs find ! --component-start 2M - $nfiles != 35 files"
5775
5776         # Find files with a specified number of components
5777         local nfiles=$($LFS find --component-count 3 --type f $dir | wc -l)
5778         [[ $nfiles == 15 ]] ||
5779                 error "lfs find --component-count 3 - $nfiles != 15 files"
5780
5781         # Remember non-composite files have a component count of zero
5782         local nfiles=$($LFS find --component-count 0 --type f $dir | wc -l)
5783         [[ $nfiles == 10 ]] ||
5784                 error "lfs find --component-count 0 - $nfiles != 10 files"
5785
5786         nfiles=$($LFS find ! --component-count 3 --type f $dir | wc -l)
5787         [[ $nfiles == 20 ]] ||
5788                 error "lfs find ! --component-count 3 - $nfiles != 20 files"
5789
5790         # All files have a flag called "init"
5791         local nfiles=$($LFS find --component-flags init --type f $dir | wc -l)
5792         [[ $nfiles == 35 ]] ||
5793                 error "lfs find --component-flags init - $nfiles != 35 files"
5794
5795         # Multi-component files will have a component not initialized
5796         local nfiles=$($LFS find ! --component-flags init --type f $dir | wc -l)
5797         [[ $nfiles == 15 ]] ||
5798                 error "lfs find !--component-flags init - $nfiles != 15 files"
5799
5800         rm -rf $dir
5801
5802 }
5803 run_test 56ba "test lfs find --component-end, -start, -count, and -flags"
5804
5805 test_56ca() {
5806         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.57) ]] ||
5807                 { skip "Need MDS version at least 2.10.57"; return 0; }
5808
5809         local td=$DIR/$tdir
5810         local tf=$td/$tfile
5811         local dir
5812         local nfiles
5813         local cmd
5814         local i
5815         local j
5816
5817         # create mirrored directories and mirrored files
5818         mkdir $td || error "mkdir $td failed"
5819         $LFS mirror create -N3 $td || error "create mirrored dir $td failed"
5820         createmany -o $tf- 10 || error "create $tf- failed"
5821
5822         for i in $(seq 2); do
5823                 dir=$td/dir$i
5824                 mkdir $dir || error "mkdir $dir failed"
5825                 $LFS mirror create -N$((3 + i)) $dir ||
5826                         error "create mirrored dir $dir failed"
5827                 createmany -o $dir/$tfile- 10 ||
5828                         error "create $dir/$tfile- failed"
5829         done
5830
5831         # change the states of some mirrored files
5832         echo foo > $tf-6
5833         for i in $(seq 2); do
5834                 dir=$td/dir$i
5835                 for j in $(seq 4 9); do
5836                         echo foo > $dir/$tfile-$j
5837                 done
5838         done
5839
5840         # find mirrored files with specific mirror count
5841         cmd="$LFS find --mirror-count 3 --type f $td"
5842         nfiles=$($cmd | wc -l)
5843         [[ $nfiles = 10 ]] || error "$cmd: $nfiles != 10 files"
5844
5845         cmd="$LFS find ! --mirror-count 3 --type f $td"
5846         nfiles=$($cmd | wc -l)
5847         [[ $nfiles = 20 ]] || error "$cmd: $nfiles != 20 files"
5848
5849         cmd="$LFS find --mirror-count +2 --type f $td"
5850         nfiles=$($cmd | wc -l)
5851         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
5852
5853         cmd="$LFS find --mirror-count -6 --type f $td"
5854         nfiles=$($cmd | wc -l)
5855         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
5856
5857         # find mirrored files with specific file state
5858         cmd="$LFS find --maxdepth 1 --mirror-state=^ro --type f $td"
5859         [[ $($cmd) = $tf-6 ]] || error "$cmd: didn't return $tf-6"
5860
5861         cmd="$LFS find --mirror-state=ro --type f $td"
5862         nfiles=$($cmd | wc -l)
5863         [[ $nfiles = 17 ]] || error "$cmd: $nfiles != 17 files"
5864
5865         cmd="$LFS find ! --mirror-state=ro --type f $td"
5866         nfiles=$($cmd | wc -l)
5867         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
5868
5869         cmd="$LFS find --mirror-state=wp --type f $td"
5870         nfiles=$($cmd | wc -l)
5871         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
5872
5873         cmd="$LFS find ! --mirror-state=sp --type f $td"
5874         nfiles=$($cmd | wc -l)
5875         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
5876 }
5877 run_test 56ca "check lfs find --mirror-count|-N and --mirror-state"
5878
5879 test_57a() {
5880         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5881         # note test will not do anything if MDS is not local
5882         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5883                 skip "ldiskfs only test"
5884                 return
5885         fi
5886
5887         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5888         local MNTDEV="osd*.*MDT*.mntdev"
5889         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
5890         [ -z "$DEV" ] && error "can't access $MNTDEV"
5891         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
5892                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
5893                         error "can't access $DEV"
5894                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
5895                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
5896                 rm $TMP/t57a.dump
5897         done
5898 }
5899 run_test 57a "verify MDS filesystem created with large inodes =="
5900
5901 test_57b() {
5902         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5903         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5904                 skip "ldiskfs only test"
5905                 return
5906         fi
5907
5908         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5909         local dir=$DIR/$tdir
5910
5911         local FILECOUNT=100
5912         local FILE1=$dir/f1
5913         local FILEN=$dir/f$FILECOUNT
5914
5915         rm -rf $dir || error "removing $dir"
5916         test_mkdir -c1 $dir
5917         local mdtidx=$($LFS getstripe -M $dir)
5918         local mdtname=MDT$(printf %04x $mdtidx)
5919         local facet=mds$((mdtidx + 1))
5920
5921         echo "mcreating $FILECOUNT files"
5922         createmany -m $dir/f 1 $FILECOUNT || \
5923                 error "creating files in $dir"
5924
5925         # verify that files do not have EAs yet
5926         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
5927         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
5928
5929         sync
5930         sleep 1
5931         df $dir  #make sure we get new statfs data
5932         local MDSFREE=$(do_facet $facet \
5933                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5934         local MDCFREE=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5935         echo "opening files to create objects/EAs"
5936         local FILE
5937         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
5938                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
5939         done
5940
5941         # verify that files have EAs now
5942         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
5943         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
5944
5945         sleep 1  #make sure we get new statfs data
5946         df $dir
5947         local MDSFREE2=$(do_facet $facet \
5948                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5949         local MDCFREE2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5950         if [[ $MDCFREE2 -lt $((MDCFREE - 16)) ]]; then
5951                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
5952                         error "MDC before $MDCFREE != after $MDCFREE2"
5953                 else
5954                         echo "MDC before $MDCFREE != after $MDCFREE2"
5955                         echo "unable to confirm if MDS has large inodes"
5956                 fi
5957         fi
5958         rm -rf $dir
5959 }
5960 run_test 57b "default LOV EAs are stored inside large inodes ==="
5961
5962 test_58() {
5963         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5964         [ -z "$(which wiretest 2>/dev/null)" ] &&
5965                         skip_env "could not find wiretest" && return
5966         wiretest
5967 }
5968 run_test 58 "verify cross-platform wire constants =============="
5969
5970 test_59() {
5971         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5972         echo "touch 130 files"
5973         createmany -o $DIR/f59- 130
5974         echo "rm 130 files"
5975         unlinkmany $DIR/f59- 130
5976         sync
5977         # wait for commitment of removal
5978         wait_delete_completed
5979 }
5980 run_test 59 "verify cancellation of llog records async ========="
5981
5982 TEST60_HEAD="test_60 run $RANDOM"
5983 test_60a() {
5984         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5985         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
5986         do_facet mgs "! which run-llog.sh &> /dev/null" &&
5987                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
5988                         skip_env "missing subtest run-llog.sh" && return
5989
5990         log "$TEST60_HEAD - from kernel mode"
5991         do_facet mgs "$LCTL set_param debug=warning; $LCTL dk > /dev/null"
5992         do_facet mgs "sh run-llog.sh" || error "run-llog.sh failed"
5993         do_facet mgs $LCTL dk > $TMP/$tfile
5994
5995         # LU-6388: test llog_reader
5996         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
5997         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
5998         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
5999                         skip_env "missing llog_reader" && return
6000         local fstype=$(facet_fstype mgs)
6001         [ $fstype != ldiskfs -a $fstype != zfs ] &&
6002                 skip_env "Only for ldiskfs or zfs type mgs" && return
6003
6004         local mntpt=$(facet_mntpt mgs)
6005         local mgsdev=$(mgsdevname 1)
6006         local fid_list
6007         local fid
6008         local rec_list
6009         local rec
6010         local rec_type
6011         local obj_file
6012         local path
6013         local seq
6014         local oid
6015         local pass=true
6016
6017         #get fid and record list
6018         fid_list=($(awk '/9_sub.*record/ { print $NF }' /$TMP/$tfile |
6019                 tail -n 4))
6020         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' /$TMP/$tfile |
6021                 tail -n 4))
6022         #remount mgs as ldiskfs or zfs type
6023         stop mgs || error "stop mgs failed"
6024         mount_fstype mgs || error "remount mgs failed"
6025         for ((i = 0; i < ${#fid_list[@]}; i++)); do
6026                 fid=${fid_list[i]}
6027                 rec=${rec_list[i]}
6028                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
6029                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
6030                 oid=$((16#$oid))
6031
6032                 case $fstype in
6033                         ldiskfs )
6034                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
6035                         zfs )
6036                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
6037                 esac
6038                 echo "obj_file is $obj_file"
6039                 do_facet mgs $llog_reader $obj_file
6040
6041                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
6042                         awk '{ print $3 }' | sed -e "s/^type=//g")
6043                 if [ $rec_type != $rec ]; then
6044                         echo "FAILED test_60a wrong record type $rec_type," \
6045                               "should be $rec"
6046                         pass=false
6047                         break
6048                 fi
6049
6050                 #check obj path if record type is LLOG_LOGID_MAGIC
6051                 if [ "$rec" == "1064553b" ]; then
6052                         path=$(do_facet mgs $llog_reader $obj_file |
6053                                 grep "path=" | awk '{ print $NF }' |
6054                                 sed -e "s/^path=//g")
6055                         if [ $obj_file != $mntpt/$path ]; then
6056                                 echo "FAILED test_60a wrong obj path" \
6057                                       "$montpt/$path, should be $obj_file"
6058                                 pass=false
6059                                 break
6060                         fi
6061                 fi
6062         done
6063         rm -f $TMP/$tfile
6064         #restart mgs before "error", otherwise it will block the next test
6065         stop mgs || error "stop mgs failed"
6066         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
6067         $pass || error "test failed, see FAILED test_60a messages for specifics"
6068 }
6069 run_test 60a "llog_test run from kernel module and test llog_reader"
6070
6071 test_60aa() {
6072         # test old logid format
6073         if [ $(lustre_version_code mgs) -le $(version_code 3.1.53) ]; then
6074                 do_facet mgs $LCTL dl | grep MGS
6075                 do_facet mgs "$LCTL --device %MGS llog_print \\\\\\\$$FSNAME-client" ||
6076                         error "old llog_print failed"
6077         fi
6078
6079         # test new logid format
6080         if [ $(lustre_version_code mgs) -ge $(version_code 2.9.53) ]; then
6081                 do_facet mgs "$LCTL --device MGS llog_print $FSNAME-client" ||
6082                         error "new llog_print failed"
6083         fi
6084 }
6085 run_test 60aa "llog_print works with FIDs and simple names"
6086
6087 test_60b() { # bug 6411
6088         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6089         dmesg > $DIR/$tfile
6090         LLOG_COUNT=$(dmesg | awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
6091                                 /llog.test/ {
6092                                         if (marker)
6093                                                 from_marker++
6094                                         from_begin++
6095                                 }
6096                                 END {
6097                                         if (marker)
6098                                                 print from_marker
6099                                         else
6100                                                 print from_begin
6101                                 }")
6102         [[ $LLOG_COUNT -gt 100 ]] &&
6103                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
6104 }
6105 run_test 60b "limit repeated messages from CERROR/CWARN ========"
6106
6107 test_60c() {
6108         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6109         echo "create 5000 files"
6110         createmany -o $DIR/f60c- 5000
6111 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
6112         lctl set_param fail_loc=0x80000137
6113         unlinkmany $DIR/f60c- 5000
6114         lctl set_param fail_loc=0
6115 }
6116 run_test 60c "unlink file when mds full"
6117
6118 test_60d() {
6119         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6120         SAVEPRINTK=$(lctl get_param -n printk)
6121
6122         # verify "lctl mark" is even working"
6123         MESSAGE="test message ID $RANDOM $$"
6124         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
6125         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
6126
6127         lctl set_param printk=0 || error "set lnet.printk failed"
6128         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
6129         MESSAGE="new test message ID $RANDOM $$"
6130         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
6131         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
6132         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
6133
6134         lctl set_param -n printk="$SAVEPRINTK"
6135 }
6136 run_test 60d "test printk console message masking"
6137
6138 test_60e() {
6139         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6140         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6141         touch $DIR/$tfile
6142 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
6143         do_facet mds1 lctl set_param fail_loc=0x15b
6144         rm $DIR/$tfile
6145 }
6146 run_test 60e "no space while new llog is being created"
6147
6148 test_61() {
6149         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6150         f="$DIR/f61"
6151         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
6152         cancel_lru_locks osc
6153         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
6154         sync
6155 }
6156 run_test 61 "mmap() writes don't make sync hang ================"
6157
6158 # bug 2330 - insufficient obd_match error checking causes LBUG
6159 test_62() {
6160         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6161         f="$DIR/f62"
6162         echo foo > $f
6163         cancel_lru_locks osc
6164         lctl set_param fail_loc=0x405
6165         cat $f && error "cat succeeded, expect -EIO"
6166         lctl set_param fail_loc=0
6167 }
6168 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
6169 # match every page all of the time.
6170 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
6171
6172 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
6173 # Though this test is irrelevant anymore, it helped to reveal some
6174 # other grant bugs (LU-4482), let's keep it.
6175 test_63a() {   # was test_63
6176         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6177         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
6178         for i in `seq 10` ; do
6179                 dd if=/dev/zero of=$DIR/f63 bs=8k &
6180                 sleep 5
6181                 kill $!
6182                 sleep 1
6183         done
6184
6185         rm -f $DIR/f63 || true
6186 }
6187 run_test 63a "Verify oig_wait interruption does not crash ======="
6188
6189 # bug 2248 - async write errors didn't return to application on sync
6190 # bug 3677 - async write errors left page locked
6191 test_63b() {
6192         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6193         debugsave
6194         lctl set_param debug=-1
6195
6196         # ensure we have a grant to do async writes
6197         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
6198         rm $DIR/$tfile
6199
6200         sync    # sync lest earlier test intercept the fail_loc
6201
6202         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
6203         lctl set_param fail_loc=0x80000406
6204         $MULTIOP $DIR/$tfile Owy && \
6205                 error "sync didn't return ENOMEM"
6206         sync; sleep 2; sync     # do a real sync this time to flush page
6207         lctl get_param -n llite.*.dump_page_cache | grep locked && \
6208                 error "locked page left in cache after async error" || true
6209         debugrestore
6210 }
6211 run_test 63b "async write errors should be returned to fsync ==="
6212
6213 test_64a () {
6214         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6215         df $DIR
6216         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
6217 }
6218 run_test 64a "verify filter grant calculations (in kernel) ====="
6219
6220 test_64b () {
6221         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6222         sh oos.sh $MOUNT || error "oos.sh failed: $?"
6223 }
6224 run_test 64b "check out-of-space detection on client"
6225
6226 test_64c() {
6227         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
6228 }
6229 run_test 64c "verify grant shrink"
6230
6231 # this does exactly what osc_request.c:osc_announce_cached() does in
6232 # order to calculate max amount of grants to ask from server
6233 want_grant() {
6234         local tgt=$1
6235
6236         local page_size=$(get_page_size client)
6237
6238         local nrpages=$($LCTL get_param -n osc.${tgt}.max_pages_per_rpc)
6239         local rpc_in_flight=$($LCTL get_param -n osc.${tgt}.max_rpcs_in_flight)
6240
6241         ((rpc_in_flight ++));
6242         nrpages=$((nrpages * rpc_in_flight))
6243
6244         local dirty_max_pages=$($LCTL get_param -n osc.${tgt}.max_dirty_mb)
6245
6246         dirty_max_pages=$((dirty_max_pages * 1024 * 1024 / page_size))
6247
6248         [[ $dirty_max_pages -gt $nrpages ]] && nrpages=$dirty_max_pages
6249         local undirty=$((nrpages * page_size))
6250
6251         local max_extent_pages
6252         max_extent_pages=$($LCTL get_param osc.${tgt}.import |
6253             grep grant_max_extent_size | awk '{print $2}')
6254         max_extent_pages=$((max_extent_pages / page_size))
6255         local nrextents=$(((nrpages + max_extent_pages - 1) / max_extent_pages))
6256         local grant_extent_tax
6257         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6258             grep grant_extent_tax | awk '{print $2}')
6259
6260         undirty=$((undirty + nrextents * grant_extent_tax))
6261
6262         echo $undirty
6263 }
6264
6265 # this is size of unit for grant allocation. It should be equal to
6266 # what tgt_grant.c:tgt_grant_chunk() calculates
6267 grant_chunk() {
6268         local tgt=$1
6269         local max_brw_size
6270         local grant_extent_tax
6271
6272         max_brw_size=$($LCTL get_param osc.${tgt}.import |
6273             grep max_brw_size | awk '{print $2}')
6274
6275         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6276             grep grant_extent_tax | awk '{print $2}')
6277
6278         echo $(((max_brw_size + grant_extent_tax) * 2))
6279 }
6280
6281 test_64d() {
6282         [ $(lustre_version_code ost1) -lt $(version_code 2.10.56) ] &&
6283                 skip "OST < 2.10.55 doesn't limit grants enough" && return 0
6284
6285         local tgt=$($LCTL dl | grep "0000-osc-[^mM]" | awk '{print $4}')
6286
6287         [[ $($LCTL get_param osc.${tgt}.import |
6288                     grep "connect_flags:.*grant_param") ]] || \
6289                         { skip "no grant_param connect flag"; return; }
6290
6291         local olddebug=$($LCTL get_param -n debug 2> /dev/null)
6292
6293         $LCTL set_param debug="$OLDDEBUG" 2> /dev/null || true
6294
6295         local max_cur_granted=$(($(want_grant $tgt) + $(grant_chunk $tgt)))
6296
6297         $SETSTRIPE $DIR/$tfile -i 0 -c 1
6298         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1000 &
6299         ddpid=$!
6300
6301         while true
6302         do
6303                 local cur_grant=$($LCTL get_param -n osc.${tgt}.cur_grant_bytes)
6304                 if [[ $cur_grant -gt $max_cur_granted ]]
6305                 then
6306                         kill $ddpid
6307                         error "cur_grant $cur_grant > $max_cur_granted"
6308                 fi
6309                 kill -0 $ddpid
6310                 [[ $? -ne 0 ]] && break;
6311                 sleep 2
6312         done
6313
6314         rm -f $DIR/$tfile
6315         wait_delete_completed
6316         $LCTL set_param debug="$olddebug" 2> /dev/null || true
6317 }
6318 run_test 64d "check grant limit exceed"
6319
6320 # bug 1414 - set/get directories' stripe info
6321 test_65a() {
6322         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6323         test_mkdir $DIR/$tdir
6324         touch $DIR/$tdir/f1
6325         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
6326 }
6327 run_test 65a "directory with no stripe info"
6328
6329 test_65b() {
6330         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6331         test_mkdir $DIR/$tdir
6332         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6333
6334         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6335                                                 error "setstripe"
6336         touch $DIR/$tdir/f2
6337         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
6338 }
6339 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
6340
6341 test_65c() {
6342         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6343         [ $OSTCOUNT -lt 2 ] && skip "need at least 2 OSTs" && return
6344         test_mkdir $DIR/$tdir
6345         local stripesize=$($GETSTRIPE -S $DIR/$tdir)
6346
6347         $LFS setstripe -S $((stripesize * 4)) -i 1 \
6348                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
6349         touch $DIR/$tdir/f3
6350         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
6351 }
6352 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
6353
6354 test_65d() {
6355         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6356         test_mkdir $DIR/$tdir
6357         local STRIPECOUNT=$($GETSTRIPE -c $DIR/$tdir)
6358         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6359
6360         if [[ $STRIPECOUNT -le 0 ]]; then
6361                 sc=1
6362         elif [[ $STRIPECOUNT -gt 2000 ]]; then
6363 #LOV_MAX_STRIPE_COUNT is 2000
6364                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
6365         else
6366                 sc=$(($STRIPECOUNT - 1))
6367         fi
6368         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
6369         touch $DIR/$tdir/f4 $DIR/$tdir/f5
6370         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
6371                 error "lverify failed"
6372 }
6373 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
6374
6375 test_65e() {
6376         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6377         test_mkdir $DIR/$tdir
6378
6379         $SETSTRIPE $DIR/$tdir || error "setstripe"
6380         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
6381                                         error "no stripe info failed"
6382         touch $DIR/$tdir/f6
6383         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
6384 }
6385 run_test 65e "directory setstripe defaults"
6386
6387 test_65f() {
6388         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6389         test_mkdir $DIR/${tdir}f
6390         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
6391 }
6392 run_test 65f "dir setstripe permission (should return error) ==="
6393
6394 test_65g() {
6395         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6396         test_mkdir $DIR/$tdir
6397         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6398
6399         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6400                 error "setstripe -S failed"
6401         $LFS setstripe -d $DIR/$tdir || error "setstripe -d failed"
6402         $LFS getstripe -v $DIR/$tdir | grep "Default" ||
6403                 error "delete default stripe failed"
6404 }
6405 run_test 65g "directory setstripe -d"
6406
6407 test_65h() {
6408         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6409         test_mkdir $DIR/$tdir
6410         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6411
6412         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6413                 error "setstripe -S failed"
6414         test_mkdir $DIR/$tdir/dd1
6415         [ $($LFS getstripe -c $DIR/$tdir) = $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
6416                 error "stripe info inherit failed"
6417 }
6418 run_test 65h "directory stripe info inherit ===================="
6419
6420 test_65i() {
6421         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6422
6423         save_layout_restore_at_exit $MOUNT
6424
6425         # bug6367: set non-default striping on root directory
6426         $LFS setstripe -S 65536 -c -1 $MOUNT || error "error setting stripe"
6427
6428         # bug12836: getstripe on -1 default directory striping
6429         $LFS getstripe $MOUNT || error "getstripe $MOUNT failed"
6430
6431         # bug12836: getstripe -v on -1 default directory striping
6432         $LFS getstripe -v $MOUNT || error "getstripe -v $MOUNT failed"
6433
6434         # bug12836: new find on -1 default directory striping
6435         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
6436 }
6437 run_test 65i "various tests to set root directory striping"
6438
6439 test_65j() { # bug6367
6440         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6441
6442         sync; sleep 1
6443
6444         # if we aren't already remounting for each test, do so for this test
6445         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
6446                 cleanup || error "failed to unmount"
6447                 setup
6448         fi
6449
6450         save_layout_restore_at_exit $MOUNT
6451
6452         $SETSTRIPE -d $MOUNT || error "setstripe failed"
6453 }
6454 run_test 65j "set default striping on root directory (bug 6367)="
6455
6456 cleaup_65k() {
6457         rm -rf $DIR/$tdir
6458         wait_delete_completed
6459         do_facet $SINGLEMDS "lctl set_param -n \
6460                 osp.$ost*MDT0000.max_create_count=$max_count"
6461         do_facet $SINGLEMDS "lctl set_param -n \
6462                 osp.$ost*MDT0000.create_count=$count"
6463         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
6464         echo $INACTIVE_OSC "is Activate"
6465
6466         wait_osc_import_state mds ost$ostnum FULL
6467 }
6468
6469 test_65k() { # bug11679
6470         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6471         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
6472         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6473
6474         local disable_precreate=true
6475         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.8.54) ] &&
6476                 disable_precreate=false
6477
6478         echo "Check OST status: "
6479         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
6480                 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
6481
6482         for OSC in $MDS_OSCS; do
6483                 echo $OSC "is active"
6484                 do_facet $SINGLEMDS lctl --device %$OSC activate
6485         done
6486
6487         for INACTIVE_OSC in $MDS_OSCS; do
6488                 local ost=$(osc_to_ost $INACTIVE_OSC)
6489                 local ostnum=$(do_facet $SINGLEMDS lctl get_param -n \
6490                                lov.*md*.target_obd |
6491                                awk -F: /$ost/'{ print $1 }' | head -n 1)
6492
6493                 mkdir -p $DIR/$tdir
6494                 $SETSTRIPE -i $ostnum -c 1 $DIR/$tdir
6495                 createmany -o $DIR/$tdir/$tfile.$ostnum. 1000
6496
6497                 echo "Deactivate: " $INACTIVE_OSC
6498                 do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
6499
6500                 local count=$(do_facet $SINGLEMDS "lctl get_param -n \
6501                               osp.$ost*MDT0000.create_count")
6502                 local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
6503                                   osp.$ost*MDT0000.max_create_count")
6504                 $disable_precreate &&
6505                         do_facet $SINGLEMDS "lctl set_param -n \
6506                                 osp.$ost*MDT0000.max_create_count=0"
6507
6508                 for idx in $(seq 0 $((OSTCOUNT - 1))); do
6509                         [ -f $DIR/$tdir/$idx ] && continue
6510                         echo "$SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx"
6511                         $SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx ||
6512                                 { cleanup_65k;
6513                                   error "setstripe $idx should succeed"; }
6514                         rm -f $DIR/$tdir/$idx || error "rm $idx failed"
6515                 done
6516                 unlinkmany $DIR/$tdir/$tfile.$ostnum. 1000
6517                 rmdir $DIR/$tdir
6518
6519                 do_facet $SINGLEMDS "lctl set_param -n \
6520                         osp.$ost*MDT0000.max_create_count=$max_count"
6521                 do_facet $SINGLEMDS "lctl set_param -n \
6522                         osp.$ost*MDT0000.create_count=$count"
6523                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
6524                 echo $INACTIVE_OSC "is Activate"
6525
6526                 wait_osc_import_state mds ost$ostnum FULL
6527         done
6528 }
6529 run_test 65k "validate manual striping works properly with deactivated OSCs"
6530
6531 test_65l() { # bug 12836
6532         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6533         test_mkdir -p $DIR/$tdir/test_dir
6534         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
6535         $LFS find -mtime -1 $DIR/$tdir >/dev/null
6536 }
6537 run_test 65l "lfs find on -1 stripe dir ========================"
6538
6539 test_65m() {
6540         local layout=$(save_layout $MOUNT)
6541         $RUNAS $SETSTRIPE -c 2 $MOUNT && {
6542                 restore_layout $MOUNT $layout
6543                 error "setstripe should fail by non-root users"
6544         }
6545         true
6546 }
6547 run_test 65m "normal user can't set filesystem default stripe"
6548
6549 # bug 2543 - update blocks count on client
6550 test_66() {
6551         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6552         COUNT=${COUNT:-8}
6553         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
6554         sync; sync_all_data; sync; sync_all_data
6555         cancel_lru_locks osc
6556         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
6557         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
6558 }
6559 run_test 66 "update inode blocks count on client ==============="
6560
6561 meminfo() {
6562         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
6563 }
6564
6565 swap_used() {
6566         swapon -s | awk '($1 == "'$1'") { print $4 }'
6567 }
6568
6569 # bug5265, obdfilter oa2dentry return -ENOENT
6570 # #define OBD_FAIL_SRV_ENOENT 0x217
6571 test_69() {
6572         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6573         remote_ost_nodsh && skip "remote OST with nodsh" && return
6574
6575         f="$DIR/$tfile"
6576         $SETSTRIPE -c 1 -i 0 $f
6577
6578         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
6579
6580         do_facet ost1 lctl set_param fail_loc=0x217
6581         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
6582         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
6583
6584         do_facet ost1 lctl set_param fail_loc=0
6585         $DIRECTIO write $f 0 2 || error "write error"
6586
6587         cancel_lru_locks osc
6588         $DIRECTIO read $f 0 1 || error "read error"
6589
6590         do_facet ost1 lctl set_param fail_loc=0x217
6591         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
6592
6593         do_facet ost1 lctl set_param fail_loc=0
6594         rm -f $f
6595 }
6596 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
6597
6598 test_71() {
6599         test_mkdir $DIR/$tdir
6600         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
6601         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
6602 }
6603 run_test 71 "Running dbench on lustre (don't segment fault) ===="
6604
6605 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
6606         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6607         [ "$RUNAS_ID" = "$UID" ] &&
6608                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
6609
6610         # Check that testing environment is properly set up. Skip if not
6611         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
6612                 skip_env "User $RUNAS_ID does not exist - skipping"
6613                 return 0
6614         }
6615         touch $DIR/$tfile
6616         chmod 777 $DIR/$tfile
6617         chmod ug+s $DIR/$tfile
6618         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
6619                 error "$RUNAS dd $DIR/$tfile failed"
6620         # See if we are still setuid/sgid
6621         test -u $DIR/$tfile -o -g $DIR/$tfile &&
6622                 error "S/gid is not dropped on write"
6623         # Now test that MDS is updated too
6624         cancel_lru_locks mdc
6625         test -u $DIR/$tfile -o -g $DIR/$tfile &&
6626                 error "S/gid is not dropped on MDS"
6627         rm -f $DIR/$tfile
6628 }
6629 run_test 72a "Test that remove suid works properly (bug5695) ===="
6630
6631 test_72b() { # bug 24226 -- keep mode setting when size is not changing
6632         local perm
6633
6634         [ "$RUNAS_ID" = "$UID" ] && \
6635                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
6636         [ "$RUNAS_ID" -eq 0 ] && \
6637                 skip_env "RUNAS_ID = 0 -- skipping" && return
6638
6639         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6640         # Check that testing environment is properly set up. Skip if not
6641         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
6642                 skip_env "User $RUNAS_ID does not exist - skipping"
6643                 return 0
6644         }
6645         touch $DIR/${tfile}-f{g,u}
6646         test_mkdir $DIR/${tfile}-dg
6647         test_mkdir $DIR/${tfile}-du
6648         chmod 770 $DIR/${tfile}-{f,d}{g,u}
6649         chmod g+s $DIR/${tfile}-{f,d}g
6650         chmod u+s $DIR/${tfile}-{f,d}u
6651         for perm in 777 2777 4777; do
6652                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
6653                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
6654                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
6655                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
6656         done
6657         true
6658 }
6659 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
6660
6661 # bug 3462 - multiple simultaneous MDC requests
6662 test_73() {
6663         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6664         test_mkdir $DIR/d73-1
6665         test_mkdir $DIR/d73-2
6666         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
6667         pid1=$!
6668
6669         lctl set_param fail_loc=0x80000129
6670         $MULTIOP $DIR/d73-1/f73-2 Oc &
6671         sleep 1
6672         lctl set_param fail_loc=0
6673
6674         $MULTIOP $DIR/d73-2/f73-3 Oc &
6675         pid3=$!
6676
6677         kill -USR1 $pid1
6678         wait $pid1 || return 1
6679
6680         sleep 25
6681
6682         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
6683         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
6684         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
6685
6686         rm -rf $DIR/d73-*
6687 }
6688 run_test 73 "multiple MDC requests (should not deadlock)"
6689
6690 test_74a() { # bug 6149, 6184
6691         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6692         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
6693         #
6694         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
6695         # will spin in a tight reconnection loop
6696         touch $DIR/f74a
6697         $LCTL set_param fail_loc=0x8000030e
6698         # get any lock that won't be difficult - lookup works.
6699         ls $DIR/f74a
6700         $LCTL set_param fail_loc=0
6701         rm -f $DIR/f74a
6702         true
6703 }
6704 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
6705
6706 test_74b() { # bug 13310
6707         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6708         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
6709         #
6710         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
6711         # will spin in a tight reconnection loop
6712         $LCTL set_param fail_loc=0x8000030e
6713         # get a "difficult" lock
6714         touch $DIR/f74b
6715         $LCTL set_param fail_loc=0
6716         rm -f $DIR/f74b
6717         true
6718 }
6719 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
6720
6721 test_74c() {
6722         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6723         #define OBD_FAIL_LDLM_NEW_LOCK
6724         $LCTL set_param fail_loc=0x319
6725         touch $DIR/$tfile && error "touch successful"
6726         $LCTL set_param fail_loc=0
6727         true
6728 }
6729 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
6730
6731 num_inodes() {
6732         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
6733 }
6734
6735 test_76() { # Now for bug 20433, added originally in bug 1443
6736         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6737         local CPUS=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
6738         cancel_lru_locks osc
6739         BEFORE_INODES=$(num_inodes)
6740         echo "before inodes: $BEFORE_INODES"
6741         local COUNT=1000
6742         [ "$SLOW" = "no" ] && COUNT=100
6743         for i in $(seq $COUNT); do
6744                 touch $DIR/$tfile
6745                 rm -f $DIR/$tfile
6746         done
6747         cancel_lru_locks osc
6748         AFTER_INODES=$(num_inodes)
6749         echo "after inodes: $AFTER_INODES"
6750         local wait=0
6751         while [[ $((AFTER_INODES-1*${CPUS:-1})) -gt $BEFORE_INODES ]]; do
6752                 sleep 2
6753                 AFTER_INODES=$(num_inodes)
6754                 wait=$((wait+2))
6755                 echo "wait $wait seconds inodes: $AFTER_INODES"
6756                 if [ $wait -gt 30 ]; then
6757                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
6758                 fi
6759         done
6760 }
6761 run_test 76 "confirm clients recycle inodes properly ===="
6762
6763
6764 export ORIG_CSUM=""
6765 set_checksums()
6766 {
6767         # Note: in sptlrpc modes which enable its own bulk checksum, the
6768         # original crc32_le bulk checksum will be automatically disabled,
6769         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
6770         # will be checked by sptlrpc code against sptlrpc bulk checksum.
6771         # In this case set_checksums() will not be no-op, because sptlrpc
6772         # bulk checksum will be enabled all through the test.
6773
6774         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
6775         lctl set_param -n osc.*.checksums $1
6776         return 0
6777 }
6778
6779 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
6780                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
6781 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
6782 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
6783 set_checksum_type()
6784 {
6785         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
6786         log "set checksum type to $1"
6787         return 0
6788 }
6789 F77_TMP=$TMP/f77-temp
6790 F77SZ=8
6791 setup_f77() {
6792         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
6793                 error "error writing to $F77_TMP"
6794 }
6795
6796 test_77a() { # bug 10889
6797         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6798         $GSS && skip "could not run with gss" && return
6799         [ ! -f $F77_TMP ] && setup_f77
6800         set_checksums 1
6801         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
6802         set_checksums 0
6803         rm -f $DIR/$tfile
6804 }
6805 run_test 77a "normal checksum read/write operation"
6806
6807 test_77b() { # bug 10889
6808         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6809         $GSS && skip "could not run with gss" && return
6810         [ ! -f $F77_TMP ] && setup_f77
6811         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6812         $LCTL set_param fail_loc=0x80000409
6813         set_checksums 1
6814
6815         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
6816                 error "dd error: $?"
6817         $LCTL set_param fail_loc=0
6818
6819         for algo in $CKSUM_TYPES; do
6820                 cancel_lru_locks osc
6821                 set_checksum_type $algo
6822                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
6823                 $LCTL set_param fail_loc=0x80000408
6824                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
6825                 $LCTL set_param fail_loc=0
6826         done
6827         set_checksums 0
6828         set_checksum_type $ORIG_CSUM_TYPE
6829         rm -f $DIR/$tfile
6830 }
6831 run_test 77b "checksum error on client write, read"
6832
6833 cleanup_77c() {
6834         trap 0
6835         set_checksums 0
6836         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=0
6837         $check_ost &&
6838                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=0
6839         [ -n $osc_file_prefix ] && rm -f ${osc_file_prefix}*
6840         $check_ost && [ -n $ost_file_prefix ] &&
6841                 do_facet ost1 rm -f ${ost_file_prefix}\*
6842 }
6843
6844 test_77c() {
6845         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6846         $GSS && skip "could not run with gss" && return
6847
6848         local bad1
6849         local osc_file_prefix
6850         local osc_file
6851         local check_ost=false
6852         local ost_file_prefix
6853         local ost_file
6854         local orig_cksum
6855         local dump_cksum
6856         local fid
6857
6858         # ensure corruption will occur on first OSS/OST
6859         $LFS setstripe -i 0 $DIR/$tfile
6860
6861         [ ! -f $F77_TMP ] && setup_f77
6862         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
6863                 error "dd write error: $?"
6864         fid=$($LFS path2fid $DIR/$tfile)
6865
6866         if [ $(lustre_version_code ost1) -ge $(version_code 2.9.57) ]
6867         then
6868                 check_ost=true
6869                 ost_file_prefix=$(do_facet ost1 $LCTL get_param -n debug_path)
6870                 ost_file_prefix=${ost_file_prefix}-checksum_dump-ost-\\${fid}
6871         else
6872                 echo "OSS do not support bulk pages dump upon error"
6873         fi
6874
6875         osc_file_prefix=$($LCTL get_param -n debug_path)
6876         osc_file_prefix=${osc_file_prefix}-checksum_dump-osc-\\${fid}
6877
6878         trap cleanup_77c EXIT
6879
6880         set_checksums 1
6881         # enable bulk pages dump upon error on Client
6882         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=1
6883         # enable bulk pages dump upon error on OSS
6884         $check_ost &&
6885                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=1
6886
6887         # flush Client cache to allow next read to reach OSS
6888         cancel_lru_locks osc
6889
6890         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE       0x408
6891         $LCTL set_param fail_loc=0x80000408
6892         dd if=$DIR/$tfile of=/dev/null bs=1M || error "dd read error: $?"
6893         $LCTL set_param fail_loc=0
6894
6895         rm -f $DIR/$tfile
6896
6897         # check cksum dump on Client
6898         osc_file=$(ls ${osc_file_prefix}*)
6899         [ -n "$osc_file" ] || error "no checksum dump file on Client"
6900         # OBD_FAIL_OSC_CHECKSUM_RECEIVE corrupts with "bad1" at start of file
6901         bad1=$(dd if=$osc_file bs=1 count=4 2>/dev/null) || error "dd error: $?"
6902         [ $bad1 == "bad1" ] || error "unexpected corrupt pattern"
6903         orig_cksum=$(dd if=$F77_TMP bs=1 skip=4 count=1048572 2>/dev/null |
6904                      cksum)
6905         dump_cksum=$(dd if=$osc_file bs=1 skip=4 2>/dev/null | cksum)
6906         [[ "$orig_cksum" == "$dump_cksum" ]] ||
6907                 error "dump content does not match on Client"
6908
6909         $check_ost || { skip "No need to check cksum dump on OSS"; return 0; }
6910
6911         # check cksum dump on OSS
6912         ost_file=$(do_facet ost1 ls ${ost_file_prefix}\*)
6913         [ -n "$ost_file" ] || error "no checksum dump file on OSS"
6914         orig_cksum=$(dd if=$F77_TMP bs=1048576 count=1 2>/dev/null | cksum)
6915         dump_cksum=$(do_facet ost1 dd if=$ost_file 2>/dev/null \| cksum)
6916         [[ "$orig_cksum" == "$dump_cksum" ]] ||
6917                 error "dump content does not match on OSS"
6918
6919         cleanup_77c
6920 }
6921 run_test 77c "checksum error on client read with debug"
6922
6923 test_77d() { # bug 10889
6924         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6925         $GSS && skip "could not run with gss" && return
6926         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6927         $LCTL set_param fail_loc=0x80000409
6928         set_checksums 1
6929         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
6930                 error "direct write: rc=$?"
6931         $LCTL set_param fail_loc=0
6932         set_checksums 0
6933
6934         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
6935         $LCTL set_param fail_loc=0x80000408
6936         set_checksums 1
6937         cancel_lru_locks osc
6938         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
6939                 error "direct read: rc=$?"
6940         $LCTL set_param fail_loc=0
6941         set_checksums 0
6942 }
6943 run_test 77d "checksum error on OST direct write, read"
6944
6945 test_77f() { # bug 10889
6946         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6947         $GSS && skip "could not run with gss" && return
6948         set_checksums 1
6949         for algo in $CKSUM_TYPES; do
6950                 cancel_lru_locks osc
6951                 set_checksum_type $algo
6952                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6953                 $LCTL set_param fail_loc=0x409
6954                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
6955                         error "direct write succeeded"
6956                 $LCTL set_param fail_loc=0
6957         done
6958         set_checksum_type $ORIG_CSUM_TYPE
6959         set_checksums 0
6960 }
6961 run_test 77f "repeat checksum error on write (expect error)"
6962
6963 test_77g() { # bug 10889
6964         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6965         $GSS && skip "could not run with gss" && return
6966         remote_ost_nodsh && skip "remote OST with nodsh" && return
6967
6968         [ ! -f $F77_TMP ] && setup_f77
6969
6970         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
6971         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
6972         do_facet ost1 lctl set_param fail_loc=0x8000021a
6973         set_checksums 1
6974         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ ||
6975                 error "write error: rc=$?"
6976         do_facet ost1 lctl set_param fail_loc=0
6977         set_checksums 0
6978
6979         cancel_lru_locks osc
6980         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
6981         do_facet ost1 lctl set_param fail_loc=0x8000021b
6982         set_checksums 1
6983         cmp $F77_TMP $DIR/$tfile || error "file compare failed"
6984         do_facet ost1 lctl set_param fail_loc=0
6985         set_checksums 0
6986 }
6987 run_test 77g "checksum error on OST write, read"
6988
6989 test_77j() { # bug 13805
6990         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6991         $GSS && skip "could not run with gss" && return
6992         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
6993         lctl set_param fail_loc=0x40c
6994         remount_client $MOUNT
6995         lctl set_param fail_loc=0
6996         # wait async osc connect to finish and reflect updated state value
6997         local i
6998         for (( i=0; i < OSTCOUNT; i++ )) ; do
6999                 wait_osc_import_state client ost$((i+1)) FULL
7000         done
7001
7002         for VALUE in $(lctl get_param osc.*osc-[^mM]*.checksum_type); do
7003                 PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
7004                 algo=$(lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g')
7005                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
7006         done
7007         remount_client $MOUNT
7008 }
7009 run_test 77j "client only supporting ADLER32"
7010
7011 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
7012 rm -f $F77_TMP
7013 unset F77_TMP
7014
7015 cleanup_test_78() {
7016         trap 0
7017         rm -f $DIR/$tfile
7018 }
7019
7020 test_78() { # bug 10901
7021         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7022         remote_ost || { skip_env "local OST" && return; }
7023
7024         NSEQ=5
7025         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
7026         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
7027         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
7028         echo "MemTotal: $MEMTOTAL"
7029
7030         # reserve 256MB of memory for the kernel and other running processes,
7031         # and then take 1/2 of the remaining memory for the read/write buffers.
7032         if [ $MEMTOTAL -gt 512 ] ;then
7033                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
7034         else
7035                 # for those poor memory-starved high-end clusters...
7036                 MEMTOTAL=$((MEMTOTAL / 2))
7037         fi
7038         echo "Mem to use for directio: $MEMTOTAL"
7039
7040         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
7041         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
7042         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
7043         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
7044                 head -n1)
7045         echo "Smallest OST: $SMALLESTOST"
7046         [[ $SMALLESTOST -lt 10240 ]] &&
7047                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
7048
7049         trap cleanup_test_78 EXIT
7050
7051         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
7052                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
7053
7054         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
7055         echo "File size: $F78SIZE"
7056         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
7057         for i in $(seq 1 $NSEQ); do
7058                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
7059                 echo directIO rdwr round $i of $NSEQ
7060                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
7061         done
7062
7063         cleanup_test_78
7064 }
7065 run_test 78 "handle large O_DIRECT writes correctly ============"
7066
7067 test_79() { # bug 12743
7068         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7069         wait_delete_completed
7070
7071         BKTOTAL=$(calc_osc_kbytes kbytestotal)
7072         BKFREE=$(calc_osc_kbytes kbytesfree)
7073         BKAVAIL=$(calc_osc_kbytes kbytesavail)
7074
7075         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
7076         DFTOTAL=`echo $STRING | cut -d, -f1`
7077         DFUSED=`echo $STRING  | cut -d, -f2`
7078         DFAVAIL=`echo $STRING | cut -d, -f3`
7079         DFFREE=$(($DFTOTAL - $DFUSED))
7080
7081         ALLOWANCE=$((64 * $OSTCOUNT))
7082
7083         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
7084            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
7085                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
7086         fi
7087         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
7088            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
7089                 error "df free($DFFREE) mismatch OST free($BKFREE)"
7090         fi
7091         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
7092            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
7093                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
7094         fi
7095 }
7096 run_test 79 "df report consistency check ======================="
7097
7098 test_80() { # bug 10718
7099         remote_ost_nodsh && skip "remote OST with nodsh" && return
7100         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7101         # relax strong synchronous semantics for slow backends like ZFS
7102         local soc="obdfilter.*.sync_on_lock_cancel"
7103         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
7104         local hosts=
7105         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
7106                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
7107                           facet_active_host $host; done | sort -u)
7108                 do_nodes $hosts lctl set_param $soc=never
7109         fi
7110
7111         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
7112         sync; sleep 1; sync
7113         local BEFORE=`date +%s`
7114         cancel_lru_locks osc
7115         local AFTER=`date +%s`
7116         local DIFF=$((AFTER-BEFORE))
7117         if [ $DIFF -gt 1 ] ; then
7118                 error "elapsed for 1M@1T = $DIFF"
7119         fi
7120
7121         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
7122
7123         rm -f $DIR/$tfile
7124 }
7125 run_test 80 "Page eviction is equally fast at high offsets too  ===="
7126
7127 test_81a() { # LU-456
7128         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7129         remote_ost_nodsh && skip "remote OST with nodsh" && return
7130         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
7131         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
7132         do_facet ost1 lctl set_param fail_loc=0x80000228
7133
7134         # write should trigger a retry and success
7135         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
7136         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7137         RC=$?
7138         if [ $RC -ne 0 ] ; then
7139                 error "write should success, but failed for $RC"
7140         fi
7141 }
7142 run_test 81a "OST should retry write when get -ENOSPC ==============="
7143
7144 test_81b() { # LU-456
7145         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7146         remote_ost_nodsh && skip "remote OST with nodsh" && return
7147         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
7148         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
7149         do_facet ost1 lctl set_param fail_loc=0x228
7150
7151         # write should retry several times and return -ENOSPC finally
7152         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
7153         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7154         RC=$?
7155         ENOSPC=28
7156         if [ $RC -ne $ENOSPC ] ; then
7157                 error "dd should fail for -ENOSPC, but succeed."
7158         fi
7159 }
7160 run_test 81b "OST should return -ENOSPC when retry still fails ======="
7161
7162 test_82() { # LU-1031
7163         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
7164         local gid1=14091995
7165         local gid2=16022000
7166
7167         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
7168         local MULTIPID1=$!
7169         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
7170         local MULTIPID2=$!
7171         kill -USR1 $MULTIPID2
7172         sleep 2
7173         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
7174                 error "First grouplock does not block second one"
7175         else
7176                 echo "Second grouplock blocks first one"
7177         fi
7178         kill -USR1 $MULTIPID1
7179         wait $MULTIPID1
7180         wait $MULTIPID2
7181 }
7182 run_test 82 "Basic grouplock test"
7183
7184 test_83() {
7185         local sfile="/boot/System.map-$(uname -r)"
7186         # define OBD_FAIL_LLITE_PTASK_IO_FAIL 0x140d
7187         $LCTL set_param fail_loc=0x140d
7188         cp $sfile $DIR/$tfile || error "write failed"
7189         diff -c $sfile $DIR/$tfile || error "files are different"
7190         $LCTL set_param fail_loc=0
7191         rm -f $DIR/$tfile
7192 }
7193 run_test 83 "Short write in ptask ==============================="
7194
7195 test_99() {
7196         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" &&
7197                 return
7198         test_mkdir $DIR/$tdir.cvsroot
7199         chown $RUNAS_ID $DIR/$tdir.cvsroot
7200
7201         cd $TMP
7202         $RUNAS cvs -d $DIR/$tdir.cvsroot init || error "cvs init failed"
7203
7204         cd /etc/init.d
7205         # some versions of cvs import exit(1) when asked to import links or
7206         # files they can't read.  ignore those files.
7207         local toignore=$(find . -type l -printf '-I %f\n' -o \
7208                          ! -perm /4 -printf '-I %f\n')
7209         $RUNAS cvs -d $DIR/$tdir.cvsroot import -m "nomesg" $toignore \
7210                 $tdir.reposname vtag rtag
7211
7212         cd $DIR
7213         test_mkdir $DIR/$tdir.reposname
7214         chown $RUNAS_ID $DIR/$tdir.reposname
7215         $RUNAS cvs -d $DIR/$tdir.cvsroot co $tdir.reposname
7216
7217         cd $DIR/$tdir.reposname
7218         $RUNAS touch foo99
7219         $RUNAS cvs add -m 'addmsg' foo99
7220         $RUNAS cvs update
7221         $RUNAS cvs commit -m 'nomsg' foo99
7222         rm -fr $DIR/$tdir.cvsroot
7223 }
7224 run_test 99 "cvs strange file/directory operations"
7225
7226 test_100() {
7227         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7228         [[ "$NETTYPE" =~ tcp ]] ||
7229                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" &&
7230                         return ; }
7231
7232         remote_ost_nodsh && skip "remote OST with nodsh" && return
7233         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7234         remote_servers ||
7235                 { skip "useless for local single node setup" && return; }
7236
7237         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
7238                 [ "$PROT" != "tcp" ] && continue
7239                 RPORT=$(echo $REMOTE | cut -d: -f2)
7240                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
7241
7242                 rc=0
7243                 LPORT=`echo $LOCAL | cut -d: -f2`
7244                 if [ $LPORT -ge 1024 ]; then
7245                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
7246                         netstat -tna
7247                         error_exit "local: $LPORT > 1024, remote: $RPORT"
7248                 fi
7249         done
7250         [ "$rc" = 0 ] || error_exit "privileged port not found" )
7251 }
7252 run_test 100 "check local port using privileged port ==========="
7253
7254 function get_named_value()
7255 {
7256     local tag
7257
7258     tag=$1
7259     while read ;do
7260         line=$REPLY
7261         case $line in
7262         $tag*)
7263             echo $line | sed "s/^$tag[ ]*//"
7264             break
7265             ;;
7266         esac
7267     done
7268 }
7269
7270 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
7271                    awk '/^max_cached_mb/ { print $2 }')
7272
7273 cleanup_101a() {
7274         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
7275         trap 0
7276 }
7277
7278 test_101a() {
7279         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7280         [ $MDSCOUNT -ge 2 ] && skip "needs < 2 MDTs" && return #LU-4322
7281         local s
7282         local discard
7283         local nreads=10000
7284         local cache_limit=32
7285
7286         $LCTL set_param -n osc.*-osc*.rpc_stats 0
7287         trap cleanup_101a EXIT
7288         $LCTL set_param -n llite.*.read_ahead_stats 0
7289         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
7290
7291         #
7292         # randomly read 10000 of 64K chunks from file 3x 32MB in size
7293         #
7294         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
7295         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
7296
7297         discard=0
7298         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
7299                 get_named_value 'read but discarded' | cut -d" " -f1); do
7300                         discard=$(($discard + $s))
7301         done
7302         cleanup_101a
7303
7304         if [[ $(($discard * 10)) -gt $nreads ]]; then
7305                 $LCTL get_param osc.*-osc*.rpc_stats
7306                 $LCTL get_param llite.*.read_ahead_stats
7307                 error "too many ($discard) discarded pages"
7308         fi
7309         rm -f $DIR/$tfile || true
7310 }
7311 run_test 101a "check read-ahead for random reads"
7312
7313 setup_test101bc() {
7314         test_mkdir $DIR/$tdir
7315         local STRIPE_SIZE=$1
7316         local FILE_LENGTH=$2
7317         STRIPE_OFFSET=0
7318
7319         local FILE_SIZE_MB=$((FILE_LENGTH / STRIPE_SIZE))
7320
7321         local list=$(comma_list $(osts_nodes))
7322         set_osd_param $list '' read_cache_enable 0
7323         set_osd_param $list '' writethrough_cache_enable 0
7324
7325         trap cleanup_test101bc EXIT
7326         # prepare the read-ahead file
7327         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
7328
7329         dd if=/dev/zero of=$DIR/$tfile bs=$STRIPE_SIZE \
7330                                 count=$FILE_SIZE_MB 2> /dev/null
7331
7332 }
7333
7334 cleanup_test101bc() {
7335         trap 0
7336         rm -rf $DIR/$tdir
7337         rm -f $DIR/$tfile
7338
7339         local list=$(comma_list $(osts_nodes))
7340         set_osd_param $list '' read_cache_enable 1
7341         set_osd_param $list '' writethrough_cache_enable 1
7342 }
7343
7344 calc_total() {
7345         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
7346 }
7347
7348 ra_check_101() {
7349         local READ_SIZE=$1
7350         local STRIPE_SIZE=$2
7351         local FILE_LENGTH=$3
7352         local RA_INC=1048576
7353         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
7354         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
7355                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
7356         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
7357                         get_named_value 'read but discarded' |
7358                         cut -d" " -f1 | calc_total)
7359         if [[ $DISCARD -gt $discard_limit ]]; then
7360                 $LCTL get_param llite.*.read_ahead_stats
7361                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
7362         else
7363                 echo "Read-ahead success for size ${READ_SIZE}"
7364         fi
7365 }
7366
7367 test_101b() {
7368         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7369         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7370         local STRIPE_SIZE=1048576
7371         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
7372         if [ $SLOW == "yes" ]; then
7373                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
7374         else
7375                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
7376         fi
7377
7378         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
7379
7380         # prepare the read-ahead file
7381         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
7382         cancel_lru_locks osc
7383         for BIDX in 2 4 8 16 32 64 128 256
7384         do
7385                 local BSIZE=$((BIDX*4096))
7386                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
7387                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
7388                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
7389                 $LCTL set_param -n llite.*.read_ahead_stats 0
7390                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
7391                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
7392                 cancel_lru_locks osc
7393                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
7394         done
7395         cleanup_test101bc
7396         true
7397 }
7398 run_test 101b "check stride-io mode read-ahead ================="
7399
7400 test_101c() {
7401         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7402         local STRIPE_SIZE=1048576
7403         local FILE_LENGTH=$((STRIPE_SIZE*100))
7404         local nreads=10000
7405         local osc_rpc_stats
7406
7407         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
7408
7409         cancel_lru_locks osc
7410         $LCTL set_param osc.*.rpc_stats 0
7411         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
7412         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
7413                 local stats=$($LCTL get_param -n $osc_rpc_stats)
7414                 local lines=$(echo "$stats" | awk 'END {print NR;}')
7415                 local size
7416
7417                 if [ $lines -le 20 ]; then
7418                         continue
7419                 fi
7420                 for size in 1 2 4 8; do
7421                         local rpc=$(echo "$stats" |
7422                                     awk '($1 == "'$size':") {print $2; exit; }')
7423                         [ $rpc != 0 ] &&
7424                                 error "Small $((size*4))k read IO $rpc !"
7425                 done
7426                 echo "$osc_rpc_stats check passed!"
7427         done
7428         cleanup_test101bc
7429         true
7430 }
7431 run_test 101c "check stripe_size aligned read-ahead ================="
7432
7433 set_read_ahead() {
7434         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
7435         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
7436 }
7437
7438 test_101d() {
7439         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7440         local file=$DIR/$tfile
7441         local sz_MB=${FILESIZE_101d:-500}
7442         local ra_MB=${READAHEAD_MB:-40}
7443
7444         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
7445         [ $free_MB -lt $sz_MB ] &&
7446                 skip "Need free space ${sz_MB}M, have ${free_MB}M" && return
7447
7448         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
7449         $SETSTRIPE -c -1 $file || error "setstripe failed"
7450
7451         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
7452         echo Cancel LRU locks on lustre client to flush the client cache
7453         cancel_lru_locks osc
7454
7455         echo Disable read-ahead
7456         local old_READAHEAD=$(set_read_ahead 0)
7457
7458         echo Reading the test file $file with read-ahead disabled
7459         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
7460
7461         echo Cancel LRU locks on lustre client to flush the client cache
7462         cancel_lru_locks osc
7463         echo Enable read-ahead with ${ra_MB}MB
7464         set_read_ahead $ra_MB
7465
7466         echo Reading the test file $file with read-ahead enabled
7467         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
7468
7469         echo "read-ahead disabled time read $raOFF"
7470         echo "read-ahead enabled  time read $raON"
7471
7472         set_read_ahead $old_READAHEAD
7473         rm -f $file
7474         wait_delete_completed
7475
7476         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
7477                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
7478 }
7479 run_test 101d "file read with and without read-ahead enabled"
7480
7481 test_101e() {
7482         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7483         local file=$DIR/$tfile
7484         local size_KB=500  #KB
7485         local count=100
7486         local bsize=1024
7487
7488         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
7489         local need_KB=$((count * size_KB))
7490         [[ $free_KB -le $need_KB ]] &&
7491                 skip_env "Need free space $need_KB, have $free_KB" && return
7492
7493         echo "Creating $count ${size_KB}K test files"
7494         for ((i = 0; i < $count; i++)); do
7495                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
7496         done
7497
7498         echo "Cancel LRU locks on lustre client to flush the client cache"
7499         cancel_lru_locks $OSC
7500
7501         echo "Reset readahead stats"
7502         $LCTL set_param -n llite.*.read_ahead_stats 0
7503
7504         for ((i = 0; i < $count; i++)); do
7505                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
7506         done
7507
7508         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
7509                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
7510
7511         for ((i = 0; i < $count; i++)); do
7512                 rm -rf $file.$i 2>/dev/null
7513         done
7514
7515         #10000 means 20% reads are missing in readahead
7516         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
7517 }
7518 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
7519
7520 test_101f() {
7521         which iozone || { skip "no iozone installed" && return; }
7522
7523         local old_debug=$($LCTL get_param debug)
7524         old_debug=${old_debug#*=}
7525         $LCTL set_param debug="reada mmap"
7526
7527         # create a test file
7528         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
7529
7530         echo Cancel LRU locks on lustre client to flush the client cache
7531         cancel_lru_locks osc
7532
7533         echo Reset readahead stats
7534         $LCTL set_param -n llite.*.read_ahead_stats 0
7535
7536         echo mmap read the file with small block size
7537         iozone -i 1 -u 1 -l 1 -+n -r 32k -s 128m -B -f $DIR/$tfile \
7538                 > /dev/null 2>&1
7539
7540         echo checking missing pages
7541         $LCTL get_param llite.*.read_ahead_stats
7542         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
7543                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
7544
7545         $LCTL set_param debug="$old_debug"
7546         [ $miss -lt 3 ] || error "misses too much pages ('$miss')!"
7547         rm -f $DIR/$tfile
7548 }
7549 run_test 101f "check mmap read performance"
7550
7551 test_101g_brw_size_test() {
7552         local mb=$1
7553         local pages=$((mb * 1048576 / $(page_size)))
7554
7555         $LCTL set_param osc.*.max_pages_per_rpc=${mb}M ||
7556                 { error "unable to set max_pages_per_rpc=${mb}M"; return 1; }
7557         for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
7558                 [ $mp -ne $pages ] && error "max_pages_per_rpc $mp != $pages" &&
7559                         return 2
7560         done
7561
7562         $LCTL set_param -n osc.*.rpc_stats=0
7563
7564         # 10 RPCs should be enough for the test
7565         local count=10
7566         dd if=/dev/zero of=$DIR/$tfile bs=${mb}M count=$count ||
7567                 { error "dd write ${mb} MB blocks failed"; return 3; }
7568         cancel_lru_locks osc
7569         dd of=/dev/null if=$DIR/$tfile bs=${mb}M count=$count ||
7570                 { error "dd write ${mb} MB blocks failed"; return 4; }
7571
7572         # calculate number of full-sized read and write RPCs
7573         rpcs=($($LCTL get_param -n 'osc.*.rpc_stats' |
7574                 sed -n '/pages per rpc/,/^$/p' |
7575                 awk '/'$pages':/ { reads += $2; writes += $6 }; \
7576                 END { print reads,writes }'))
7577         [ ${rpcs[0]} -ne $count ] && error "${rpcs[0]} != $count read RPCs" &&
7578                 return 5
7579         [ ${rpcs[1]} -ne $count ] && error "${rpcs[1]} != $count write RPCs" &&
7580                 return 6
7581
7582         return 0
7583 }
7584
7585 test_101g() {
7586         local rpcs
7587         local osts=$(get_facets OST)
7588         local list=$(comma_list $(osts_nodes))
7589         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
7590         local brw_size="obdfilter.*.brw_size"
7591         local ostver=$(lustre_version_code ost1)
7592         local cliver=$(lustre_version_code client)
7593
7594         $LFS setstripe -i 0 -c 1 $DIR/$tfile
7595
7596         local orig_mb=$(do_facet ost1 $LCTL get_param -n $brw_size | head -n 1)
7597         if [ $ostver -ge $(version_code 2.8.52) -o \
7598              \( $ostver -ge $(version_code 2.7.17) -a \
7599                 $ostver -lt $(version_code 2.7.50) \) ] &&
7600            [ $cliver -ge $(version_code 2.8.52) -o \
7601              \( $cliver -ge $(version_code 2.7.17) -a \
7602                 $cliver -lt $(version_code 2.7.50) \) ]; then
7603                 [ $ostver -ge $(version_code 2.9.52) ] && suffix="M"
7604                 if [[ $orig_mb -lt 16 ]]; then
7605                         save_lustre_params $osts "$brw_size" > $p
7606                         do_nodes $list $LCTL set_param -n $brw_size=16$suffix ||
7607                                 error "set 16MB RPC size failed"
7608
7609                         echo "remount client to enable new RPC size"
7610                         remount_client $MOUNT || error "remount_client failed"
7611                 fi
7612
7613                 test_101g_brw_size_test 16 || error "16MB RPC test failed"
7614                 # should be able to set brw_size=12, but no rpc_stats for that
7615                 test_101g_brw_size_test 8 || error "8MB RPC test failed"
7616         fi
7617
7618         test_101g_brw_size_test 4 || error "4MB RPC test failed"
7619
7620         if [[ $orig_mb -lt 16 ]]; then
7621                 restore_lustre_params < $p
7622                 remount_client $MOUNT || error "remount_client restore failed"
7623         fi
7624
7625         rm -f $p $DIR/$tfile
7626 }
7627 run_test 101g "Big bulk(4/16 MiB) readahead"
7628
7629 setup_test102() {
7630         test_mkdir $DIR/$tdir
7631         chown $RUNAS_ID $DIR/$tdir
7632         STRIPE_SIZE=65536
7633         STRIPE_OFFSET=1
7634         STRIPE_COUNT=$OSTCOUNT
7635         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
7636
7637         trap cleanup_test102 EXIT
7638         cd $DIR
7639         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
7640         cd $DIR/$tdir
7641         for num in 1 2 3 4; do
7642                 for count in $(seq 1 $STRIPE_COUNT); do
7643                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
7644                                 local size=`expr $STRIPE_SIZE \* $num`
7645                                 local file=file"$num-$idx-$count"
7646                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
7647                         done
7648                 done
7649         done
7650
7651         cd $DIR
7652         $1 tar cf $TMP/f102.tar $tdir --xattrs
7653 }
7654
7655 cleanup_test102() {
7656         trap 0
7657         rm -f $TMP/f102.tar
7658         rm -rf $DIR/d0.sanity/d102
7659 }
7660
7661 test_102a() {
7662         local testfile=$DIR/$tfile
7663
7664         touch $testfile
7665
7666         [ "$UID" != 0 ] && skip_env "must run as root" && return
7667         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
7668                 skip_env "must have user_xattr" && return
7669
7670         [ -z "$(which setfattr 2>/dev/null)" ] &&
7671                 skip_env "could not find setfattr" && return
7672
7673         echo "set/get xattr..."
7674         setfattr -n trusted.name1 -v value1 $testfile ||
7675                 error "setfattr -n trusted.name1=value1 $testfile failed"
7676         getfattr -n trusted.name1 $testfile 2> /dev/null |
7677           grep "trusted.name1=.value1" ||
7678                 error "$testfile missing trusted.name1=value1"
7679
7680         setfattr -n user.author1 -v author1 $testfile ||
7681                 error "setfattr -n user.author1=author1 $testfile failed"
7682         getfattr -n user.author1 $testfile 2> /dev/null |
7683           grep "user.author1=.author1" ||
7684                 error "$testfile missing trusted.author1=author1"
7685
7686         echo "listxattr..."
7687         setfattr -n trusted.name2 -v value2 $testfile ||
7688                 error "$testfile unable to set trusted.name2"
7689         setfattr -n trusted.name3 -v value3 $testfile ||
7690                 error "$testfile unable to set trusted.name3"
7691         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
7692             grep "trusted.name" | wc -l) -eq 3 ] ||
7693                 error "$testfile missing 3 trusted.name xattrs"
7694
7695         setfattr -n user.author2 -v author2 $testfile ||
7696                 error "$testfile unable to set user.author2"
7697         setfattr -n user.author3 -v author3 $testfile ||
7698                 error "$testfile unable to set user.author3"
7699         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
7700             grep "user.author" | wc -l) -eq 3 ] ||
7701                 error "$testfile missing 3 user.author xattrs"
7702
7703         echo "remove xattr..."
7704         setfattr -x trusted.name1 $testfile ||
7705                 error "$testfile error deleting trusted.name1"
7706         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
7707                 error "$testfile did not delete trusted.name1 xattr"
7708
7709         setfattr -x user.author1 $testfile ||
7710                 error "$testfile error deleting user.author1"
7711         echo "set lustre special xattr ..."
7712         $LFS setstripe -c1 $testfile
7713         local lovea=$(getfattr -n "trusted.lov" -e hex $testfile |
7714                 awk -F "=" '/trusted.lov/ { print $2 }' )
7715         setfattr -n "trusted.lov" -v $lovea $testfile ||
7716                 error "$testfile doesn't ignore setting trusted.lov again"
7717         setfattr -n "trusted.lov" -v "invalid_value" $testfile &&
7718                 error "$testfile allow setting invalid trusted.lov"
7719         rm -f $testfile
7720 }
7721 run_test 102a "user xattr test =================================="
7722
7723 test_102b() {
7724         [ -z "$(which setfattr 2>/dev/null)" ] &&
7725                 skip_env "could not find setfattr" && return
7726
7727         # b10930: get/set/list trusted.lov xattr
7728         echo "get/set/list trusted.lov xattr ..."
7729         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7730         local testfile=$DIR/$tfile
7731         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
7732                 error "setstripe failed"
7733         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
7734                 error "getstripe failed"
7735         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
7736                 error "can't get trusted.lov from $testfile"
7737
7738         local testfile2=${testfile}2
7739         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
7740                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
7741
7742         $MCREATE $testfile2
7743         setfattr -n trusted.lov -v $value $testfile2
7744         local stripe_size=$($GETSTRIPE -S $testfile2)
7745         local stripe_count=$($GETSTRIPE -c $testfile2)
7746         [[ $stripe_size -eq 65536 ]] ||
7747                 error "stripe size $stripe_size != 65536"
7748         [[ $stripe_count -eq $STRIPECOUNT ]] ||
7749                 error "stripe count $stripe_count != $STRIPECOUNT"
7750         rm -f $DIR/$tfile
7751 }
7752 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
7753
7754 test_102c() {
7755         [ -z "$(which setfattr 2>/dev/null)" ] &&
7756                 skip_env "could not find setfattr" && return
7757
7758         # b10930: get/set/list lustre.lov xattr
7759         echo "get/set/list lustre.lov xattr ..."
7760         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7761         test_mkdir $DIR/$tdir
7762         chown $RUNAS_ID $DIR/$tdir
7763         local testfile=$DIR/$tdir/$tfile
7764         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
7765                 error "setstripe failed"
7766         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
7767                 error "getstripe failed"
7768         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
7769         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
7770
7771         local testfile2=${testfile}2
7772         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
7773                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
7774
7775         $RUNAS $MCREATE $testfile2
7776         $RUNAS setfattr -n lustre.lov -v $value $testfile2
7777         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
7778         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
7779         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
7780         [ $stripe_count -eq $STRIPECOUNT ] ||
7781                 error "stripe count $stripe_count != $STRIPECOUNT"
7782 }
7783 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
7784
7785 compare_stripe_info1() {
7786         local stripe_index_all_zero=true
7787
7788         for num in 1 2 3 4; do
7789                 for count in $(seq 1 $STRIPE_COUNT); do
7790                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
7791                                 local size=$((STRIPE_SIZE * num))
7792                                 local file=file"$num-$offset-$count"
7793                                 stripe_size=$($LFS getstripe -S $PWD/$file)
7794                                 [[ $stripe_size -ne $size ]] &&
7795                                     error "$file: size $stripe_size != $size"
7796                                 stripe_count=$($LFS getstripe -c $PWD/$file)
7797                                 # allow fewer stripes to be created, ORI-601
7798                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
7799                                     error "$file: count $stripe_count != $count"
7800                                 stripe_index=$($LFS getstripe -i $PWD/$file)
7801                                 [[ $stripe_index -ne 0 ]] &&
7802                                         stripe_index_all_zero=false
7803                         done
7804                 done
7805         done
7806         $stripe_index_all_zero &&
7807                 error "all files are being extracted starting from OST index 0"
7808         return 0
7809 }
7810
7811 have_xattrs_include() {
7812         tar --help | grep -q xattrs-include &&
7813                 echo --xattrs-include="lustre.*"
7814 }
7815
7816 test_102d() {
7817         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7818         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7819         XINC=$(have_xattrs_include)
7820         setup_test102
7821         tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
7822         cd $DIR/$tdir/$tdir
7823         compare_stripe_info1
7824 }
7825 run_test 102d "tar restore stripe info from tarfile,not keep osts"
7826
7827 test_102f() {
7828         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7829         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7830         XINC=$(have_xattrs_include)
7831         setup_test102
7832         test_mkdir $DIR/$tdir.restore
7833         cd $DIR
7834         tar cf - --xattrs $tdir | tar xf - \
7835                 -C $DIR/$tdir.restore --xattrs $XINC
7836         cd $DIR/$tdir.restore/$tdir
7837         compare_stripe_info1
7838 }
7839 run_test 102f "tar copy files, not keep osts"
7840
7841 grow_xattr() {
7842         local xsize=${1:-1024}  # in bytes
7843         local file=$DIR/$tfile
7844
7845         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
7846                 skip "must have user_xattr" && return 0
7847         [ -z "$(which setfattr 2>/dev/null)" ] &&
7848                 skip_env "could not find setfattr" && return 0
7849         [ -z "$(which getfattr 2>/dev/null)" ] &&
7850                 skip_env "could not find getfattr" && return 0
7851
7852         touch $file
7853
7854         local value="$(generate_string $xsize)"
7855
7856         local xbig=trusted.big
7857         log "save $xbig on $file"
7858         setfattr -n $xbig -v $value $file ||
7859                 error "saving $xbig on $file failed"
7860
7861         local orig=$(get_xattr_value $xbig $file)
7862         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
7863
7864         local xsml=trusted.sml
7865         log "save $xsml on $file"
7866         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
7867
7868         local new=$(get_xattr_value $xbig $file)
7869         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
7870
7871         log "grow $xsml on $file"
7872         setfattr -n $xsml -v "$value" $file ||
7873                 error "growing $xsml on $file failed"
7874
7875         new=$(get_xattr_value $xbig $file)
7876         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
7877         log "$xbig still valid after growing $xsml"
7878
7879         rm -f $file
7880 }
7881
7882 test_102h() { # bug 15777
7883         grow_xattr 1024
7884 }
7885 run_test 102h "grow xattr from inside inode to external block"
7886
7887 test_102ha() {
7888         large_xattr_enabled || { skip "large_xattr disabled" && return; }
7889         grow_xattr $(max_xattr_size)
7890 }
7891 run_test 102ha "grow xattr from inside inode to external inode"
7892
7893 test_102i() { # bug 17038
7894         [ -z "$(which getfattr 2>/dev/null)" ] &&
7895                 skip "could not find getfattr" && return
7896         touch $DIR/$tfile
7897         ln -s $DIR/$tfile $DIR/${tfile}link
7898         getfattr -n trusted.lov $DIR/$tfile ||
7899                 error "lgetxattr on $DIR/$tfile failed"
7900         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
7901                 grep -i "no such attr" ||
7902                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
7903         rm -f $DIR/$tfile $DIR/${tfile}link
7904 }
7905 run_test 102i "lgetxattr test on symbolic link ============"
7906
7907 test_102j() {
7908         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7909         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7910         XINC=$(have_xattrs_include)
7911         setup_test102 "$RUNAS"
7912         chown $RUNAS_ID $DIR/$tdir
7913         $RUNAS tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
7914         cd $DIR/$tdir/$tdir
7915         compare_stripe_info1 "$RUNAS"
7916 }
7917 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
7918
7919 test_102k() {
7920         [ -z "$(which setfattr 2>/dev/null)" ] &&
7921                 skip "could not find setfattr" && return
7922         touch $DIR/$tfile
7923         # b22187 just check that does not crash for regular file.
7924         setfattr -n trusted.lov $DIR/$tfile
7925         # b22187 'setfattr -n trusted.lov' should remove LOV EA for directories
7926         local test_kdir=$DIR/$tdir
7927         test_mkdir $test_kdir
7928         local default_size=$($LFS getstripe -S $test_kdir)
7929         local default_count=$($LFS getstripe -c $test_kdir)
7930         local default_offset=$($LFS getstripe -i $test_kdir)
7931         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
7932                 error 'dir setstripe failed'
7933         setfattr -n trusted.lov $test_kdir
7934         local stripe_size=$($LFS getstripe -S $test_kdir)
7935         local stripe_count=$($LFS getstripe -c $test_kdir)
7936         local stripe_offset=$($LFS getstripe -i $test_kdir)
7937         [ $stripe_size -eq $default_size ] ||
7938                 error "stripe size $stripe_size != $default_size"
7939         [ $stripe_count -eq $default_count ] ||
7940                 error "stripe count $stripe_count != $default_count"
7941         [ $stripe_offset -eq $default_offset ] ||
7942                 error "stripe offset $stripe_offset != $default_offset"
7943         rm -rf $DIR/$tfile $test_kdir
7944 }
7945 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
7946
7947 test_102l() {
7948         [ -z "$(which getfattr 2>/dev/null)" ] &&
7949                 skip "could not find getfattr" && return
7950
7951         # LU-532 trusted. xattr is invisible to non-root
7952         local testfile=$DIR/$tfile
7953
7954         touch $testfile
7955
7956         echo "listxattr as user..."
7957         chown $RUNAS_ID $testfile
7958         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
7959             grep -q "trusted" &&
7960                 error "$testfile trusted xattrs are user visible"
7961
7962         return 0;
7963 }
7964 run_test 102l "listxattr size test =================================="
7965
7966 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
7967         local path=$DIR/$tfile
7968         touch $path
7969
7970         listxattr_size_check $path || error "listattr_size_check $path failed"
7971 }
7972 run_test 102m "Ensure listxattr fails on small bufffer ========"
7973
7974 cleanup_test102
7975
7976 getxattr() { # getxattr path name
7977         # Return the base64 encoding of the value of xattr name on path.
7978         local path=$1
7979         local name=$2
7980
7981         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
7982         # file: $path
7983         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7984         #
7985         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7986
7987         getfattr --absolute-names --encoding=base64 --name=$name $path |
7988                 awk -F= -v name=$name '$1 == name {
7989                         print substr($0, index($0, "=") + 1);
7990         }'
7991 }
7992
7993 test_102n() { # LU-4101 mdt: protect internal xattrs
7994         [ -z "$(which setfattr 2>/dev/null)" ] &&
7995                 skip "could not find setfattr" && return
7996         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.50) ]
7997         then
7998                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
7999                 return
8000         fi
8001
8002         local file0=$DIR/$tfile.0
8003         local file1=$DIR/$tfile.1
8004         local xattr0=$TMP/$tfile.0
8005         local xattr1=$TMP/$tfile.1
8006         local namelist="lov lma lmv link fid version som hsm"
8007         local name
8008         local value
8009
8010         rm -rf $file0 $file1 $xattr0 $xattr1
8011         touch $file0 $file1
8012
8013         # Get 'before' xattrs of $file1.
8014         getfattr --absolute-names --dump --match=- $file1 > $xattr0
8015
8016         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
8017                 namelist+=" lfsck_namespace"
8018         for name in $namelist; do
8019                 # Try to copy xattr from $file0 to $file1.
8020                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
8021
8022                 setfattr --name=trusted.$name --value="$value" $file1 ||
8023                         error "setxattr 'trusted.$name' failed"
8024
8025                 # Try to set a garbage xattr.
8026                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
8027
8028                 if [[ x$name == "xlov" ]]; then
8029                         setfattr --name=trusted.lov --value="$value" $file1 &&
8030                         error "setxattr invalid 'trusted.lov' success"
8031                 else
8032                         setfattr --name=trusted.$name --value="$value" $file1 ||
8033                                 error "setxattr invalid 'trusted.$name' failed"
8034                 fi
8035
8036                 # Try to remove the xattr from $file1. We don't care if this
8037                 # appears to succeed or fail, we just don't want there to be
8038                 # any changes or crashes.
8039                 setfattr --remove=$trusted.$name $file1 2> /dev/null
8040         done
8041
8042         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.6.50) ]
8043         then
8044                 name="lfsck_ns"
8045                 # Try to copy xattr from $file0 to $file1.
8046                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
8047
8048                 setfattr --name=trusted.$name --value="$value" $file1 ||
8049                         error "setxattr 'trusted.$name' failed"
8050
8051                 # Try to set a garbage xattr.
8052                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
8053
8054                 setfattr --name=trusted.$name --value="$value" $file1 ||
8055                         error "setxattr 'trusted.$name' failed"
8056
8057                 # Try to remove the xattr from $file1. We don't care if this
8058                 # appears to succeed or fail, we just don't want there to be
8059                 # any changes or crashes.
8060                 setfattr --remove=$trusted.$name $file1 2> /dev/null
8061         fi
8062
8063         # Get 'after' xattrs of file1.
8064         getfattr --absolute-names --dump --match=- $file1 > $xattr1
8065
8066         if ! diff $xattr0 $xattr1; then
8067                 error "before and after xattrs of '$file1' differ"
8068         fi
8069
8070         rm -rf $file0 $file1 $xattr0 $xattr1
8071
8072         return 0
8073 }
8074 run_test 102n "silently ignore setxattr on internal trusted xattrs"
8075
8076 test_102p() { # LU-4703 setxattr did not check ownership
8077         local testfile=$DIR/$tfile
8078
8079         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.56) ] &&
8080                 skip "MDS needs to be at least 2.5.56" && return
8081
8082         touch $testfile
8083
8084         echo "setfacl as user..."
8085         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
8086         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
8087
8088         echo "setfattr as user..."
8089         setfacl -m "u:$RUNAS_ID:---" $testfile
8090         $RUNAS setfattr -x system.posix_acl_access $testfile
8091         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
8092 }
8093 run_test 102p "check setxattr(2) correctly fails without permission"
8094
8095 test_102q() {
8096         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
8097                 skip "MDS needs to be at least 2.6.92" && return
8098         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
8099 }
8100 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
8101
8102 test_102r() {
8103         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.93) ] &&
8104                 skip "MDS needs to be at least 2.6.93" && return
8105         touch $DIR/$tfile || error "touch"
8106         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
8107         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
8108         rm $DIR/$tfile || error "rm"
8109
8110         #normal directory
8111         mkdir -p $DIR/$tdir || error "mkdir"
8112         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
8113         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
8114         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
8115                 error "$testfile error deleting user.author1"
8116         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
8117                 grep "user.$(basename $tdir)" &&
8118                 error "$tdir did not delete user.$(basename $tdir)"
8119         rmdir $DIR/$tdir || error "rmdir"
8120
8121         #striped directory
8122         test_mkdir $DIR/$tdir
8123         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
8124         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
8125         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
8126                 error "$testfile error deleting user.author1"
8127         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
8128                 grep "user.$(basename $tdir)" &&
8129                 error "$tdir did not delete user.$(basename $tdir)"
8130         rmdir $DIR/$tdir || error "rm striped dir"
8131 }
8132 run_test 102r "set EAs with empty values"
8133
8134 run_acl_subtest()
8135 {
8136     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
8137     return $?
8138 }
8139
8140 test_103a() {
8141         [ "$UID" != 0 ] && skip_env "must run as root" && return
8142         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
8143                 skip "must have acl enabled" && return
8144         [ -z "$(which setfacl 2>/dev/null)" ] &&
8145                 skip_env "could not find setfacl" && return
8146         $GSS && skip "could not run under gss" && return
8147         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8148
8149         gpasswd -a daemon bin                           # LU-5641
8150         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
8151
8152         declare -a identity_old
8153
8154         for num in $(seq $MDSCOUNT); do
8155                 switch_identity $num true || identity_old[$num]=$?
8156         done
8157
8158         SAVE_UMASK=$(umask)
8159         umask 0022
8160         mkdir -p $DIR/$tdir
8161         cd $DIR/$tdir
8162
8163         echo "performing cp ..."
8164         run_acl_subtest cp || error "run_acl_subtest cp failed"
8165         echo "performing getfacl-noacl..."
8166         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
8167         echo "performing misc..."
8168         run_acl_subtest misc || error  "misc test failed"
8169         echo "performing permissions..."
8170         run_acl_subtest permissions || error "permissions failed"
8171         # LU-1482 mdd: Setting xattr are properly checked with and without ACLs
8172         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.8.55) -o \
8173              \( $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6) -a \
8174              $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.29) \) ]
8175         then
8176                 echo "performing permissions xattr..."
8177                 run_acl_subtest permissions_xattr ||
8178                         error "permissions_xattr failed"
8179         fi
8180         echo "performing setfacl..."
8181         run_acl_subtest setfacl || error  "setfacl test failed"
8182
8183         # inheritance test got from HP
8184         echo "performing inheritance..."
8185         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
8186         chmod +x make-tree || error "chmod +x failed"
8187         run_acl_subtest inheritance || error "inheritance test failed"
8188         rm -f make-tree
8189
8190         echo "LU-974 ignore umask when acl is enabled..."
8191         run_acl_subtest 974 || error "LU-974 umask test failed"
8192         if [ $MDSCOUNT -ge 2 ]; then
8193                 run_acl_subtest 974_remote ||
8194                         error "LU-974 umask test failed under remote dir"
8195         fi
8196
8197         echo "LU-2561 newly created file is same size as directory..."
8198         if [ $(facet_fstype $SINGLEMDS) != "zfs" ]; then
8199                 run_acl_subtest 2561 || error "LU-2561 test failed"
8200         else
8201                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
8202         fi
8203
8204         run_acl_subtest 4924 || error "LU-4924 test failed"
8205
8206         cd $SAVE_PWD
8207         umask $SAVE_UMASK
8208
8209         for num in $(seq $MDSCOUNT); do
8210                 if [ "${identity_old[$num]}" = 1 ]; then
8211                         switch_identity $num false || identity_old[$num]=$?
8212                 fi
8213         done
8214 }
8215 run_test 103a "acl test ========================================="
8216
8217 test_103c() {
8218         mkdir -p $DIR/$tdir
8219         cp -rp $DIR/$tdir $DIR/$tdir.bak
8220
8221         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
8222                 error "$DIR/$tdir shouldn't contain default ACL"
8223         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
8224                 error "$DIR/$tdir.bak shouldn't contain default ACL"
8225         true
8226 }
8227 run_test 103c "'cp -rp' won't set empty acl"
8228
8229 test_104a() {
8230         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8231         touch $DIR/$tfile
8232         lfs df || error "lfs df failed"
8233         lfs df -ih || error "lfs df -ih failed"
8234         lfs df -h $DIR || error "lfs df -h $DIR failed"
8235         lfs df -i $DIR || error "lfs df -i $DIR failed"
8236         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
8237         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
8238
8239         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
8240         lctl --device %$OSC deactivate
8241         lfs df || error "lfs df with deactivated OSC failed"
8242         lctl --device %$OSC activate
8243         # wait the osc back to normal
8244         wait_osc_import_state client ost FULL
8245
8246         lfs df || error "lfs df with reactivated OSC failed"
8247         rm -f $DIR/$tfile
8248 }
8249 run_test 104a "lfs df [-ih] [path] test ========================="
8250
8251 test_104b() {
8252         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8253         [ $RUNAS_ID -eq $UID ] &&
8254                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
8255         chmod 666 /dev/obd
8256         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
8257                         grep "Permission denied" | wc -l)))
8258         if [ $denied_cnt -ne 0 ]; then
8259                 error "lfs check servers test failed"
8260         fi
8261 }
8262 run_test 104b "$RUNAS lfs check servers test ===================="
8263
8264 test_105a() {
8265         # doesn't work on 2.4 kernels
8266         touch $DIR/$tfile
8267         if $(flock_is_enabled); then
8268                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
8269         else
8270                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
8271         fi
8272         rm -f $DIR/$tfile
8273 }
8274 run_test 105a "flock when mounted without -o flock test ========"
8275
8276 test_105b() {
8277         touch $DIR/$tfile
8278         if $(flock_is_enabled); then
8279                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
8280         else
8281                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
8282         fi
8283         rm -f $DIR/$tfile
8284 }
8285 run_test 105b "fcntl when mounted without -o flock test ========"
8286
8287 test_105c() {
8288         touch $DIR/$tfile
8289         if $(flock_is_enabled); then
8290                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
8291         else
8292                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
8293         fi
8294         rm -f $DIR/$tfile
8295 }
8296 run_test 105c "lockf when mounted without -o flock test"
8297
8298 test_105d() { # bug 15924
8299         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8300         test_mkdir $DIR/$tdir
8301         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
8302         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
8303         $LCTL set_param fail_loc=0x80000315
8304         flocks_test 2 $DIR/$tdir
8305 }
8306 run_test 105d "flock race (should not freeze) ========"
8307
8308 test_105e() { # bug 22660 && 22040
8309         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
8310         touch $DIR/$tfile
8311         flocks_test 3 $DIR/$tfile
8312 }
8313 run_test 105e "Two conflicting flocks from same process"
8314
8315 test_106() { #bug 10921
8316         test_mkdir $DIR/$tdir
8317         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
8318         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
8319 }
8320 run_test 106 "attempt exec of dir followed by chown of that dir"
8321
8322 test_107() {
8323         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8324         CDIR=`pwd`
8325         cd $DIR
8326
8327         local file=core
8328         rm -f $file
8329
8330         local save_pattern=$(sysctl -n kernel.core_pattern)
8331         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
8332         sysctl -w kernel.core_pattern=$file
8333         sysctl -w kernel.core_uses_pid=0
8334
8335         ulimit -c unlimited
8336         sleep 60 &
8337         SLEEPPID=$!
8338
8339         sleep 1
8340
8341         kill -s 11 $SLEEPPID
8342         wait $SLEEPPID
8343         if [ -e $file ]; then
8344                 size=`stat -c%s $file`
8345                 [ $size -eq 0 ] && error "Fail to create core file $file"
8346         else
8347                 error "Fail to create core file $file"
8348         fi
8349         rm -f $file
8350         sysctl -w kernel.core_pattern=$save_pattern
8351         sysctl -w kernel.core_uses_pid=$save_uses_pid
8352         cd $CDIR
8353 }
8354 run_test 107 "Coredump on SIG"
8355
8356 test_110() {
8357         test_mkdir $DIR/$tdir
8358         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255)
8359         $LFS mkdir -c $MDSCOUNT $DIR/$tdir/$(str_repeat 'b' 256) &&
8360                 error "mkdir with 256 char should fail, but did not"
8361         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
8362                 error "create with 255 char failed"
8363         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
8364                 error "create with 256 char should fail, but did not"
8365
8366         ls -l $DIR/$tdir
8367         rm -rf $DIR/$tdir
8368 }
8369 run_test 110 "filename length checking"
8370
8371 #
8372 # Purpose: To verify dynamic thread (OSS) creation.
8373 #
8374 test_115() {
8375         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8376         remote_ost_nodsh && skip "remote OST with nodsh" && return
8377
8378         # Lustre does not stop service threads once they are started.
8379         # Reset number of running threads to default.
8380         stopall
8381         setupall
8382
8383         local OSTIO_pre
8384         local save_params="$TMP/sanity-$TESTNAME.parameters"
8385
8386         # Get ll_ost_io count before I/O
8387         OSTIO_pre=$(do_facet ost1 \
8388                 "$LCTL get_param ost.OSS.ost_io.threads_started | cut -d= -f2")
8389         # Exit if lustre is not running (ll_ost_io not running).
8390         [ -z "$OSTIO_pre" ] && error "no OSS threads"
8391
8392         echo "Starting with $OSTIO_pre threads"
8393         local thread_max=$((OSTIO_pre * 2))
8394         local rpc_in_flight=$((thread_max * 2))
8395         # Number of I/O Process proposed to be started.
8396         local nfiles
8397         local facets=$(get_facets OST)
8398
8399         save_lustre_params client "osc.*OST*.max_rpcs_in_flight" > $save_params
8400         save_lustre_params $facets "ost.OSS.ost_io.threads_max" >> $save_params
8401
8402         # Set in_flight to $rpc_in_flight
8403         $LCTL set_param osc.*OST*.max_rpcs_in_flight=$rpc_in_flight ||
8404                 error "Failed to set max_rpcs_in_flight to $rpc_in_flight"
8405         nfiles=${rpc_in_flight}
8406         # Set ost thread_max to $thread_max
8407         do_facet ost1 "$LCTL set_param ost.OSS.ost_io.threads_max=$thread_max"
8408
8409         # 5 Minutes should be sufficient for max number of OSS
8410         # threads(thread_max) to be created.
8411         local timeout=300
8412
8413         # Start I/O.
8414         local WTL=${WTL:-"$LUSTRE/tests/write_time_limit"}
8415         test_mkdir $DIR/$tdir
8416         for i in $(seq $nfiles); do
8417                 local file=$DIR/$tdir/${tfile}-$i
8418                 $LFS setstripe -c -1 -i 0 $file
8419                 ($WTL $file $timeout)&
8420         done
8421
8422         # I/O Started - Wait for thread_started to reach thread_max or report
8423         # error if thread_started is more than thread_max.
8424         echo "Waiting for thread_started to reach thread_max"
8425         local thread_started=0
8426         local end_time=$((SECONDS + timeout))
8427
8428         while [ $SECONDS -le $end_time ] ; do
8429                 echo -n "."
8430                 # Get ost i/o thread_started count.
8431                 thread_started=$(do_facet ost1 \
8432                         "$LCTL get_param \
8433                         ost.OSS.ost_io.threads_started | cut -d= -f2")
8434                 # Break out if thread_started is equal/greater than thread_max
8435                 if [[ $thread_started -ge $thread_max ]]; then
8436                         echo ll_ost_io thread_started $thread_started, \
8437                                 equal/greater than thread_max $thread_max
8438                         break
8439                 fi
8440                 sleep 1
8441         done
8442
8443         # Cleanup - We have the numbers, Kill i/o jobs if running.
8444         jobcount=($(jobs -p))
8445         for i in $(seq 0 $((${#jobcount[@]}-1)))
8446         do
8447                 kill -9 ${jobcount[$i]}
8448                 if [ $? -ne 0 ] ; then
8449                         echo Warning: \
8450                         Failed to Kill \'WTL\(I/O\)\' with pid ${jobcount[$i]}
8451                 fi
8452         done
8453
8454         # Cleanup files left by WTL binary.
8455         for i in $(seq $nfiles); do
8456                 local file=$DIR/$tdir/${tfile}-$i
8457                 rm -rf $file
8458                 if [ $? -ne 0 ] ; then
8459                         echo "Warning: Failed to delete file $file"
8460                 fi
8461         done
8462
8463         restore_lustre_params <$save_params
8464         rm -f $save_params || echo "Warning: delete file '$save_params' failed"
8465
8466         # Error out if no new thread has started or Thread started is greater
8467         # than thread max.
8468         if [[ $thread_started -le $OSTIO_pre ||
8469                         $thread_started -gt $thread_max ]]; then
8470                 error "ll_ost_io: thread_started $thread_started" \
8471                       "OSTIO_pre $OSTIO_pre, thread_max $thread_max." \
8472                       "No new thread started or thread started greater " \
8473                       "than thread_max."
8474         fi
8475 }
8476 run_test 115 "verify dynamic thread creation===================="
8477
8478 free_min_max () {
8479         wait_delete_completed
8480         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
8481         echo "OST kbytes available: ${AVAIL[@]}"
8482         MAXV=${AVAIL[0]}
8483         MAXI=0
8484         MINV=${AVAIL[0]}
8485         MINI=0
8486         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
8487                 #echo OST $i: ${AVAIL[i]}kb
8488                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
8489                         MAXV=${AVAIL[i]}
8490                         MAXI=$i
8491                 fi
8492                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
8493                         MINV=${AVAIL[i]}
8494                         MINI=$i
8495                 fi
8496         done
8497         echo "Min free space: OST $MINI: $MINV"
8498         echo "Max free space: OST $MAXI: $MAXV"
8499 }
8500
8501 test_116a() { # was previously test_116()
8502         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8503         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8504
8505         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
8506
8507         echo -n "Free space priority "
8508         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
8509                 head -n1
8510         declare -a AVAIL
8511         free_min_max
8512
8513         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip" && return
8514         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip" \
8515                 && return
8516         trap simple_cleanup_common EXIT
8517
8518
8519         # Check if we need to generate uneven OSTs
8520         test_mkdir -p $DIR/$tdir/OST${MINI}
8521         local FILL=$((MINV / 4))
8522         local DIFF=$((MAXV - MINV))
8523         local DIFF2=$((DIFF * 100 / MINV))
8524
8525         local threshold=$(do_facet $SINGLEMDS \
8526                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
8527         threshold=${threshold%%%}
8528         echo -n "Check for uneven OSTs: "
8529         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
8530
8531         if [[ $DIFF2 -gt $threshold ]]; then
8532                 echo "ok"
8533                 echo "Don't need to fill OST$MINI"
8534         else
8535                 # generate uneven OSTs. Write 2% over the QOS threshold value
8536                 echo "no"
8537                 DIFF=$((threshold - DIFF2 + 2))
8538                 DIFF2=$((MINV * DIFF / 100))
8539                 echo "Fill $DIFF% remaining space in OST$MINI with ${DIFF2}KB"
8540                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
8541                         error "setstripe failed"
8542                 DIFF=$((DIFF2 / 2048))
8543                 i=0
8544                 while [ $i -lt $DIFF ]; do
8545                         i=$((i + 1))
8546                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
8547                                 bs=2M count=1 2>/dev/null
8548                         echo -n .
8549                 done
8550                 echo .
8551                 sync
8552                 sleep_maxage
8553                 free_min_max
8554         fi
8555
8556         DIFF=$((MAXV - MINV))
8557         DIFF2=$((DIFF * 100 / MINV))
8558         echo -n "diff=$DIFF=$DIFF2% must be > $threshold% for QOS mode..."
8559         if [ $DIFF2 -gt $threshold ]; then
8560                 echo "ok"
8561         else
8562                 echo "failed - QOS mode won't be used"
8563                 skip "QOS imbalance criteria not met"
8564                 simple_cleanup_common
8565                 return
8566         fi
8567
8568         MINI1=$MINI
8569         MINV1=$MINV
8570         MAXI1=$MAXI
8571         MAXV1=$MAXV
8572
8573         # now fill using QOS
8574         $SETSTRIPE -c 1 $DIR/$tdir
8575         FILL=$((FILL / 200))
8576         if [ $FILL -gt 600 ]; then
8577                 FILL=600
8578         fi
8579         echo "writing $FILL files to QOS-assigned OSTs"
8580         i=0
8581         while [ $i -lt $FILL ]; do
8582                 i=$((i + 1))
8583                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
8584                         count=1 2>/dev/null
8585                 echo -n .
8586         done
8587         echo "wrote $i 200k files"
8588         sync
8589         sleep_maxage
8590
8591         echo "Note: free space may not be updated, so measurements might be off"
8592         free_min_max
8593         DIFF2=$((MAXV - MINV))
8594         echo "free space delta: orig $DIFF final $DIFF2"
8595         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
8596         DIFF=$((MINV1 - ${AVAIL[$MINI1]}))
8597         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
8598         DIFF2=$((MAXV1 - ${AVAIL[$MAXI1]}))
8599         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
8600         if [[ $DIFF -gt 0 ]]; then
8601                 FILL=$((DIFF2 * 100 / DIFF - 100))
8602                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
8603         fi
8604
8605         # Figure out which files were written where
8606         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
8607                awk '/'$MINI1': / {print $2; exit}')
8608         echo $UUID
8609         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
8610         echo "$MINC files created on smaller OST $MINI1"
8611         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
8612                awk '/'$MAXI1': / {print $2; exit}')
8613         echo $UUID
8614         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
8615         echo "$MAXC files created on larger OST $MAXI1"
8616         if [[ $MINC -gt 0 ]]; then
8617                 FILL=$((MAXC * 100 / MINC - 100))
8618                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
8619         fi
8620         [[ $MAXC -gt $MINC ]] ||
8621                 error_ignore LU-9 "stripe QOS didn't balance free space"
8622         simple_cleanup_common
8623 }
8624 run_test 116a "stripe QOS: free space balance ==================="
8625
8626 test_116b() { # LU-2093
8627         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8628         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8629
8630 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
8631         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
8632                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
8633         [ -z "$old_rr" ] && skip "no QOS" && return 0
8634         do_facet $SINGLEMDS lctl set_param \
8635                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
8636         mkdir -p $DIR/$tdir
8637         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
8638         createmany -o $DIR/$tdir/f- 20 || error "can't create"
8639         do_facet $SINGLEMDS lctl set_param fail_loc=0
8640         rm -rf $DIR/$tdir
8641         do_facet $SINGLEMDS lctl set_param \
8642                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
8643 }
8644 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
8645
8646 test_117() # bug 10891
8647 {
8648         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8649         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
8650         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
8651         lctl set_param fail_loc=0x21e
8652         > $DIR/$tfile || error "truncate failed"
8653         lctl set_param fail_loc=0
8654         echo "Truncate succeeded."
8655         rm -f $DIR/$tfile
8656 }
8657 run_test 117 "verify osd extend =========="
8658
8659 NO_SLOW_RESENDCOUNT=4
8660 export OLD_RESENDCOUNT=""
8661 set_resend_count () {
8662         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
8663         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
8664         lctl set_param -n $PROC_RESENDCOUNT $1
8665         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
8666 }
8667
8668 # for reduce test_118* time (b=14842)
8669 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
8670
8671 # Reset async IO behavior after error case
8672 reset_async() {
8673         FILE=$DIR/reset_async
8674
8675         # Ensure all OSCs are cleared
8676         $SETSTRIPE -c -1 $FILE
8677         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
8678         sync
8679         rm $FILE
8680 }
8681
8682 test_118a() #bug 11710
8683 {
8684         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8685         reset_async
8686
8687         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8688         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8689         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8690
8691         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8692                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8693                 return 1;
8694         fi
8695         rm -f $DIR/$tfile
8696 }
8697 run_test 118a "verify O_SYNC works =========="
8698
8699 test_118b()
8700 {
8701         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8702         remote_ost_nodsh && skip "remote OST with nodsh" && return
8703
8704         reset_async
8705
8706         #define OBD_FAIL_SRV_ENOENT 0x217
8707         set_nodes_failloc "$(osts_nodes)" 0x217
8708         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8709         RC=$?
8710         set_nodes_failloc "$(osts_nodes)" 0
8711         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8712         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8713                     grep -c writeback)
8714
8715         if [[ $RC -eq 0 ]]; then
8716                 error "Must return error due to dropped pages, rc=$RC"
8717                 return 1;
8718         fi
8719
8720         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8721                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8722                 return 1;
8723         fi
8724
8725         echo "Dirty pages not leaked on ENOENT"
8726
8727         # Due to the above error the OSC will issue all RPCs syncronously
8728         # until a subsequent RPC completes successfully without error.
8729         $MULTIOP $DIR/$tfile Ow4096yc
8730         rm -f $DIR/$tfile
8731
8732         return 0
8733 }
8734 run_test 118b "Reclaim dirty pages on fatal error =========="
8735
8736 test_118c()
8737 {
8738         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8739
8740         # for 118c, restore the original resend count, LU-1940
8741         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
8742                                 set_resend_count $OLD_RESENDCOUNT
8743         remote_ost_nodsh && skip "remote OST with nodsh" && return
8744
8745         reset_async
8746
8747         #define OBD_FAIL_OST_EROFS               0x216
8748         set_nodes_failloc "$(osts_nodes)" 0x216
8749
8750         # multiop should block due to fsync until pages are written
8751         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8752         MULTIPID=$!
8753         sleep 1
8754
8755         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
8756                 error "Multiop failed to block on fsync, pid=$MULTIPID"
8757         fi
8758
8759         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8760                     grep -c writeback)
8761         if [[ $WRITEBACK -eq 0 ]]; then
8762                 error "No page in writeback, writeback=$WRITEBACK"
8763         fi
8764
8765         set_nodes_failloc "$(osts_nodes)" 0
8766         wait $MULTIPID
8767         RC=$?
8768         if [[ $RC -ne 0 ]]; then
8769                 error "Multiop fsync failed, rc=$RC"
8770         fi
8771
8772         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8773         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8774                     grep -c writeback)
8775         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8776                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8777         fi
8778
8779         rm -f $DIR/$tfile
8780         echo "Dirty pages flushed via fsync on EROFS"
8781         return 0
8782 }
8783 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
8784
8785 # continue to use small resend count to reduce test_118* time (b=14842)
8786 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
8787
8788 test_118d()
8789 {
8790         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8791         remote_ost_nodsh && skip "remote OST with nodsh" && return
8792
8793         reset_async
8794
8795         #define OBD_FAIL_OST_BRW_PAUSE_BULK
8796         set_nodes_failloc "$(osts_nodes)" 0x214
8797         # multiop should block due to fsync until pages are written
8798         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8799         MULTIPID=$!
8800         sleep 1
8801
8802         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
8803                 error "Multiop failed to block on fsync, pid=$MULTIPID"
8804         fi
8805
8806         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8807                     grep -c writeback)
8808         if [[ $WRITEBACK -eq 0 ]]; then
8809                 error "No page in writeback, writeback=$WRITEBACK"
8810         fi
8811
8812         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
8813         set_nodes_failloc "$(osts_nodes)" 0
8814
8815         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8816         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8817                     grep -c writeback)
8818         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8819                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8820         fi
8821
8822         rm -f $DIR/$tfile
8823         echo "Dirty pages gaurenteed flushed via fsync"
8824         return 0
8825 }
8826 run_test 118d "Fsync validation inject a delay of the bulk =========="
8827
8828 test_118f() {
8829         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8830         reset_async
8831
8832         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
8833         lctl set_param fail_loc=0x8000040a
8834
8835         # Should simulate EINVAL error which is fatal
8836         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8837         RC=$?
8838         if [[ $RC -eq 0 ]]; then
8839                 error "Must return error due to dropped pages, rc=$RC"
8840         fi
8841
8842         lctl set_param fail_loc=0x0
8843
8844         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8845         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8846         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8847                     grep -c writeback)
8848         if [[ $LOCKED -ne 0 ]]; then
8849                 error "Locked pages remain in cache, locked=$LOCKED"
8850         fi
8851
8852         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8853                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8854         fi
8855
8856         rm -f $DIR/$tfile
8857         echo "No pages locked after fsync"
8858
8859         reset_async
8860         return 0
8861 }
8862 run_test 118f "Simulate unrecoverable OSC side error =========="
8863
8864 test_118g() {
8865         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8866         reset_async
8867
8868         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
8869         lctl set_param fail_loc=0x406
8870
8871         # simulate local -ENOMEM
8872         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8873         RC=$?
8874
8875         lctl set_param fail_loc=0
8876         if [[ $RC -eq 0 ]]; then
8877                 error "Must return error due to dropped pages, rc=$RC"
8878         fi
8879
8880         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8881         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8882         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8883                         grep -c writeback)
8884         if [[ $LOCKED -ne 0 ]]; then
8885                 error "Locked pages remain in cache, locked=$LOCKED"
8886         fi
8887
8888         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8889                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8890         fi
8891
8892         rm -f $DIR/$tfile
8893         echo "No pages locked after fsync"
8894
8895         reset_async
8896         return 0
8897 }
8898 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
8899
8900 test_118h() {
8901         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8902         remote_ost_nodsh && skip "remote OST with nodsh" && return
8903
8904         reset_async
8905
8906         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8907         set_nodes_failloc "$(osts_nodes)" 0x20e
8908         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
8909         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8910         RC=$?
8911
8912         set_nodes_failloc "$(osts_nodes)" 0
8913         if [[ $RC -eq 0 ]]; then
8914                 error "Must return error due to dropped pages, rc=$RC"
8915         fi
8916
8917         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8918         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8919         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8920                     grep -c writeback)
8921         if [[ $LOCKED -ne 0 ]]; then
8922                 error "Locked pages remain in cache, locked=$LOCKED"
8923         fi
8924
8925         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8926                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8927         fi
8928
8929         rm -f $DIR/$tfile
8930         echo "No pages locked after fsync"
8931
8932         return 0
8933 }
8934 run_test 118h "Verify timeout in handling recoverables errors  =========="
8935
8936 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
8937
8938 test_118i() {
8939         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8940         remote_ost_nodsh && skip "remote OST with nodsh" && return
8941
8942         reset_async
8943
8944         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8945         set_nodes_failloc "$(osts_nodes)" 0x20e
8946
8947         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
8948         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8949         PID=$!
8950         sleep 5
8951         set_nodes_failloc "$(osts_nodes)" 0
8952
8953         wait $PID
8954         RC=$?
8955         if [[ $RC -ne 0 ]]; then
8956                 error "got error, but should be not, rc=$RC"
8957         fi
8958
8959         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8960         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8961         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8962         if [[ $LOCKED -ne 0 ]]; then
8963                 error "Locked pages remain in cache, locked=$LOCKED"
8964         fi
8965
8966         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8967                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8968         fi
8969
8970         rm -f $DIR/$tfile
8971         echo "No pages locked after fsync"
8972
8973         return 0
8974 }
8975 run_test 118i "Fix error before timeout in recoverable error  =========="
8976
8977 [ "$SLOW" = "no" ] && set_resend_count 4
8978
8979 test_118j() {
8980         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8981         remote_ost_nodsh && skip "remote OST with nodsh" && return
8982
8983         reset_async
8984
8985         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
8986         set_nodes_failloc "$(osts_nodes)" 0x220
8987
8988         # return -EIO from OST
8989         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8990         RC=$?
8991         set_nodes_failloc "$(osts_nodes)" 0x0
8992         if [[ $RC -eq 0 ]]; then
8993                 error "Must return error due to dropped pages, rc=$RC"
8994         fi
8995
8996         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8997         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8998         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8999         if [[ $LOCKED -ne 0 ]]; then
9000                 error "Locked pages remain in cache, locked=$LOCKED"
9001         fi
9002
9003         # in recoverable error on OST we want resend and stay until it finished
9004         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9005                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9006         fi
9007
9008         rm -f $DIR/$tfile
9009         echo "No pages locked after fsync"
9010
9011         return 0
9012 }
9013 run_test 118j "Simulate unrecoverable OST side error =========="
9014
9015 test_118k()
9016 {
9017         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9018         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
9019
9020         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9021         set_nodes_failloc "$(osts_nodes)" 0x20e
9022         test_mkdir $DIR/$tdir
9023
9024         for ((i=0;i<10;i++)); do
9025                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
9026                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
9027                 SLEEPPID=$!
9028                 sleep 0.500s
9029                 kill $SLEEPPID
9030                 wait $SLEEPPID
9031         done
9032
9033         set_nodes_failloc "$(osts_nodes)" 0
9034         rm -rf $DIR/$tdir
9035 }
9036 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
9037
9038 test_118l()
9039 {
9040         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9041         # LU-646
9042         test_mkdir $DIR/$tdir
9043         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
9044         rm -rf $DIR/$tdir
9045 }
9046 run_test 118l "fsync dir"
9047
9048 test_118m() # LU-3066
9049 {
9050         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9051         test_mkdir $DIR/$tdir
9052         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
9053         rm -rf $DIR/$tdir
9054 }
9055 run_test 118m "fdatasync dir ========="
9056
9057 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
9058
9059 test_118n()
9060 {
9061         local begin
9062         local end
9063
9064         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9065         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
9066
9067         # Sleep to avoid a cached response.
9068         #define OBD_STATFS_CACHE_SECONDS 1
9069         sleep 2
9070
9071         # Inject a 10 second delay in the OST_STATFS handler.
9072         #define OBD_FAIL_OST_STATFS_DELAY 0x242
9073         set_nodes_failloc "$(osts_nodes)" 0x242
9074
9075         begin=$SECONDS
9076         stat --file-system $MOUNT > /dev/null
9077         end=$SECONDS
9078
9079         set_nodes_failloc "$(osts_nodes)" 0
9080
9081         if ((end - begin > 20)); then
9082             error "statfs took $((end - begin)) seconds, expected 10"
9083         fi
9084 }
9085 run_test 118n "statfs() sends OST_STATFS requests in parallel"
9086
9087 test_119a() # bug 11737
9088 {
9089         BSIZE=$((512 * 1024))
9090         directio write $DIR/$tfile 0 1 $BSIZE
9091         # We ask to read two blocks, which is more than a file size.
9092         # directio will indicate an error when requested and actual
9093         # sizes aren't equeal (a normal situation in this case) and
9094         # print actual read amount.
9095         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
9096         if [ "$NOB" != "$BSIZE" ]; then
9097                 error "read $NOB bytes instead of $BSIZE"
9098         fi
9099         rm -f $DIR/$tfile
9100 }
9101 run_test 119a "Short directIO read must return actual read amount"
9102
9103 test_119b() # bug 11737
9104 {
9105         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
9106
9107         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
9108         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
9109         sync
9110         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
9111                 error "direct read failed"
9112         rm -f $DIR/$tfile
9113 }
9114 run_test 119b "Sparse directIO read must return actual read amount"
9115
9116 test_119c() # bug 13099
9117 {
9118         BSIZE=1048576
9119         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
9120         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
9121         rm -f $DIR/$tfile
9122 }
9123 run_test 119c "Testing for direct read hitting hole"
9124
9125 test_119d() # bug 15950
9126 {
9127         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9128         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
9129         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
9130         BSIZE=1048576
9131         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
9132         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
9133         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
9134         lctl set_param fail_loc=0x40d
9135         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
9136         pid_dio=$!
9137         sleep 1
9138         cat $DIR/$tfile > /dev/null &
9139         lctl set_param fail_loc=0
9140         pid_reads=$!
9141         wait $pid_dio
9142         log "the DIO writes have completed, now wait for the reads (should not block very long)"
9143         sleep 2
9144         [ -n "`ps h -p $pid_reads -o comm`" ] && \
9145         error "the read rpcs have not completed in 2s"
9146         rm -f $DIR/$tfile
9147         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
9148 }
9149 run_test 119d "The DIO path should try to send a new rpc once one is completed"
9150
9151 test_120a() {
9152         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9153         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9154         test_mkdir $DIR/$tdir
9155         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9156                 { skip "no early lock cancel on server"; return 0; }
9157
9158         lru_resize_disable mdc
9159         lru_resize_disable osc
9160         cancel_lru_locks mdc
9161         # asynchronous object destroy at MDT could cause bl ast to client
9162         cancel_lru_locks osc
9163
9164         stat $DIR/$tdir > /dev/null
9165         can1=$(do_facet $SINGLEMDS \
9166                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9167                awk '/ldlm_cancel/ {print $2}')
9168         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9169                awk '/ldlm_bl_callback/ {print $2}')
9170         test_mkdir -c1 $DIR/$tdir/d1
9171         can2=$(do_facet $SINGLEMDS \
9172                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9173                awk '/ldlm_cancel/ {print $2}')
9174         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9175                awk '/ldlm_bl_callback/ {print $2}')
9176         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9177         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9178         lru_resize_enable mdc
9179         lru_resize_enable osc
9180 }
9181 run_test 120a "Early Lock Cancel: mkdir test"
9182
9183 test_120b() {
9184         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9185         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9186         test_mkdir $DIR/$tdir
9187         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9188                 { skip "no early lock cancel on server"; return 0; }
9189         lru_resize_disable mdc
9190         lru_resize_disable osc
9191         cancel_lru_locks mdc
9192         stat $DIR/$tdir > /dev/null
9193         can1=$(do_facet $SINGLEMDS \
9194                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9195                awk '/ldlm_cancel/ {print $2}')
9196         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9197                awk '/ldlm_bl_callback/ {print $2}')
9198         touch $DIR/$tdir/f1
9199         can2=$(do_facet $SINGLEMDS \
9200                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9201                awk '/ldlm_cancel/ {print $2}')
9202         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9203                awk '/ldlm_bl_callback/ {print $2}')
9204         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9205         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9206         lru_resize_enable mdc
9207         lru_resize_enable osc
9208 }
9209 run_test 120b "Early Lock Cancel: create test"
9210
9211 test_120c() {
9212         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9213         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9214         test_mkdir -c1 $DIR/$tdir
9215         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9216                 { skip "no early lock cancel on server"; return 0; }
9217         lru_resize_disable mdc
9218         lru_resize_disable osc
9219         test_mkdir -c1 $DIR/$tdir/d1
9220         test_mkdir -c1 $DIR/$tdir/d2
9221         touch $DIR/$tdir/d1/f1
9222         cancel_lru_locks mdc
9223         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
9224         can1=$(do_facet $SINGLEMDS \
9225                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9226                awk '/ldlm_cancel/ {print $2}')
9227         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9228                awk '/ldlm_bl_callback/ {print $2}')
9229         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
9230         can2=$(do_facet $SINGLEMDS \
9231                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9232                awk '/ldlm_cancel/ {print $2}')
9233         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9234                awk '/ldlm_bl_callback/ {print $2}')
9235         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9236         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9237         lru_resize_enable mdc
9238         lru_resize_enable osc
9239 }
9240 run_test 120c "Early Lock Cancel: link test"
9241
9242 test_120d() {
9243         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9244         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9245         test_mkdir -c1 $DIR/$tdir
9246         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9247                 { skip "no early lock cancel on server"; return 0; }
9248         lru_resize_disable mdc
9249         lru_resize_disable osc
9250         touch $DIR/$tdir
9251         cancel_lru_locks mdc
9252         stat $DIR/$tdir > /dev/null
9253         can1=$(do_facet $SINGLEMDS \
9254                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9255                awk '/ldlm_cancel/ {print $2}')
9256         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9257                awk '/ldlm_bl_callback/ {print $2}')
9258         chmod a+x $DIR/$tdir
9259         can2=$(do_facet $SINGLEMDS \
9260                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9261                awk '/ldlm_cancel/ {print $2}')
9262         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9263                awk '/ldlm_bl_callback/ {print $2}')
9264         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9265         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9266         lru_resize_enable mdc
9267         lru_resize_enable osc
9268 }
9269 run_test 120d "Early Lock Cancel: setattr test"
9270
9271 test_120e() {
9272         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9273         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9274                 { skip "no early lock cancel on server"; return 0; }
9275         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9276         local dlmtrace_set=false
9277
9278         test_mkdir -c1 $DIR/$tdir
9279         lru_resize_disable mdc
9280         lru_resize_disable osc
9281         ! $LCTL get_param debug | grep -q dlmtrace &&
9282                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
9283         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
9284         cancel_lru_locks mdc
9285         cancel_lru_locks osc
9286         dd if=$DIR/$tdir/f1 of=/dev/null
9287         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
9288         # XXX client can not do early lock cancel of OST lock
9289         # during unlink (LU-4206), so cancel osc lock now.
9290         sleep 2
9291         cancel_lru_locks osc
9292         can1=$(do_facet $SINGLEMDS \
9293                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9294                awk '/ldlm_cancel/ {print $2}')
9295         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9296                awk '/ldlm_bl_callback/ {print $2}')
9297         unlink $DIR/$tdir/f1
9298         sleep 5
9299         can2=$(do_facet $SINGLEMDS \
9300                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9301                awk '/ldlm_cancel/ {print $2}')
9302         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9303                awk '/ldlm_bl_callback/ {print $2}')
9304         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
9305                 $LCTL dk $TMP/cancel.debug.txt
9306         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
9307                 $LCTL dk $TMP/blocking.debug.txt
9308         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
9309         lru_resize_enable mdc
9310         lru_resize_enable osc
9311 }
9312 run_test 120e "Early Lock Cancel: unlink test"
9313
9314 test_120f() {
9315         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9316         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9317                 { skip "no early lock cancel on server"; return 0; }
9318         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9319         test_mkdir -c1 $DIR/$tdir
9320         lru_resize_disable mdc
9321         lru_resize_disable osc
9322         test_mkdir -c1 $DIR/$tdir/d1
9323         test_mkdir -c1 $DIR/$tdir/d2
9324         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
9325         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
9326         cancel_lru_locks mdc
9327         cancel_lru_locks osc
9328         dd if=$DIR/$tdir/d1/f1 of=/dev/null
9329         dd if=$DIR/$tdir/d2/f2 of=/dev/null
9330         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
9331         # XXX client can not do early lock cancel of OST lock
9332         # during rename (LU-4206), so cancel osc lock now.
9333         sleep 2
9334         cancel_lru_locks osc
9335         can1=$(do_facet $SINGLEMDS \
9336                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9337                awk '/ldlm_cancel/ {print $2}')
9338         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9339                awk '/ldlm_bl_callback/ {print $2}')
9340         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
9341         sleep 5
9342         can2=$(do_facet $SINGLEMDS \
9343                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9344                awk '/ldlm_cancel/ {print $2}')
9345         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9346                awk '/ldlm_bl_callback/ {print $2}')
9347         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9348         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9349         lru_resize_enable mdc
9350         lru_resize_enable osc
9351 }
9352 run_test 120f "Early Lock Cancel: rename test"
9353
9354 test_120g() {
9355         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9356         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9357                 { skip "no early lock cancel on server"; return 0; }
9358         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9359         lru_resize_disable mdc
9360         lru_resize_disable osc
9361         count=10000
9362         echo create $count files
9363         test_mkdir $DIR/$tdir
9364         cancel_lru_locks mdc
9365         cancel_lru_locks osc
9366         t0=$(date +%s)
9367
9368         can0=$(do_facet $SINGLEMDS \
9369                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9370                awk '/ldlm_cancel/ {print $2}')
9371         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9372                awk '/ldlm_bl_callback/ {print $2}')
9373         createmany -o $DIR/$tdir/f $count
9374         sync
9375         can1=$(do_facet $SINGLEMDS \
9376                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9377                awk '/ldlm_cancel/ {print $2}')
9378         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9379                awk '/ldlm_bl_callback/ {print $2}')
9380         t1=$(date +%s)
9381         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
9382         echo rm $count files
9383         rm -r $DIR/$tdir
9384         sync
9385         can2=$(do_facet $SINGLEMDS \
9386                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9387                awk '/ldlm_cancel/ {print $2}')
9388         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9389                awk '/ldlm_bl_callback/ {print $2}')
9390         t2=$(date +%s)
9391         echo total: $count removes in $((t2-t1))
9392         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
9393         sleep 2
9394         # wait for commitment of removal
9395         lru_resize_enable mdc
9396         lru_resize_enable osc
9397 }
9398 run_test 120g "Early Lock Cancel: performance test"
9399
9400 test_121() { #bug #10589
9401         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9402         rm -rf $DIR/$tfile
9403         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
9404 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
9405         lctl set_param fail_loc=0x310
9406         cancel_lru_locks osc > /dev/null
9407         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
9408         lctl set_param fail_loc=0
9409         [[ $reads -eq $writes ]] ||
9410                 error "read $reads blocks, must be $writes blocks"
9411 }
9412 run_test 121 "read cancel race ========="
9413
9414 test_123a() { # was test 123, statahead(bug 11401)
9415         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9416         SLOWOK=0
9417         if ! grep -q "processor.*: 1" /proc/cpuinfo; then
9418                 log "testing UP system. Performance may be lower than expected."
9419                 SLOWOK=1
9420         fi
9421
9422         rm -rf $DIR/$tdir
9423         test_mkdir $DIR/$tdir
9424         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
9425         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
9426         MULT=10
9427         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
9428                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
9429
9430                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
9431                 lctl set_param -n llite.*.statahead_max 0
9432                 lctl get_param llite.*.statahead_max
9433                 cancel_lru_locks mdc
9434                 cancel_lru_locks osc
9435                 stime=`date +%s`
9436                 time ls -l $DIR/$tdir | wc -l
9437                 etime=`date +%s`
9438                 delta=$((etime - stime))
9439                 log "ls $i files without statahead: $delta sec"
9440                 lctl set_param llite.*.statahead_max=$max
9441
9442                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
9443                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
9444                 cancel_lru_locks mdc
9445                 cancel_lru_locks osc
9446                 stime=`date +%s`
9447                 time ls -l $DIR/$tdir | wc -l
9448                 etime=`date +%s`
9449                 delta_sa=$((etime - stime))
9450                 log "ls $i files with statahead: $delta_sa sec"
9451                 lctl get_param -n llite.*.statahead_stats
9452                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
9453
9454                 [[ $swrong -lt $ewrong ]] &&
9455                         log "statahead was stopped, maybe too many locks held!"
9456                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
9457
9458                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
9459                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
9460                     lctl set_param -n llite.*.statahead_max 0
9461                     lctl get_param llite.*.statahead_max
9462                     cancel_lru_locks mdc
9463                     cancel_lru_locks osc
9464                     stime=`date +%s`
9465                     time ls -l $DIR/$tdir | wc -l
9466                     etime=`date +%s`
9467                     delta=$((etime - stime))
9468                     log "ls $i files again without statahead: $delta sec"
9469                     lctl set_param llite.*.statahead_max=$max
9470                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
9471                         if [  $SLOWOK -eq 0 ]; then
9472                                 error "ls $i files is slower with statahead!"
9473                         else
9474                                 log "ls $i files is slower with statahead!"
9475                         fi
9476                         break
9477                     fi
9478                 fi
9479
9480                 [ $delta -gt 20 ] && break
9481                 [ $delta -gt 8 ] && MULT=$((50 / delta))
9482                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
9483         done
9484         log "ls done"
9485
9486         stime=`date +%s`
9487         rm -r $DIR/$tdir
9488         sync
9489         etime=`date +%s`
9490         delta=$((etime - stime))
9491         log "rm -r $DIR/$tdir/: $delta seconds"
9492         log "rm done"
9493         lctl get_param -n llite.*.statahead_stats
9494 }
9495 run_test 123a "verify statahead work"
9496
9497 test_123b () { # statahead(bug 15027)
9498         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9499         test_mkdir $DIR/$tdir
9500         createmany -o $DIR/$tdir/$tfile-%d 1000
9501
9502         cancel_lru_locks mdc
9503         cancel_lru_locks osc
9504
9505 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
9506         lctl set_param fail_loc=0x80000803
9507         ls -lR $DIR/$tdir > /dev/null
9508         log "ls done"
9509         lctl set_param fail_loc=0x0
9510         lctl get_param -n llite.*.statahead_stats
9511         rm -r $DIR/$tdir
9512         sync
9513
9514 }
9515 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
9516
9517 test_124a() {
9518         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9519         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
9520                 { skip "no lru resize on server"; return 0; }
9521         local NR=2000
9522         test_mkdir $DIR/$tdir
9523
9524         log "create $NR files at $DIR/$tdir"
9525         createmany -o $DIR/$tdir/f $NR ||
9526                 error "failed to create $NR files in $DIR/$tdir"
9527
9528         cancel_lru_locks mdc
9529         ls -l $DIR/$tdir > /dev/null
9530
9531         local NSDIR=""
9532         local LRU_SIZE=0
9533         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
9534                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
9535                 LRU_SIZE=$($LCTL get_param -n $PARAM)
9536                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
9537                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
9538                         log "NSDIR=$NSDIR"
9539                         log "NS=$(basename $NSDIR)"
9540                         break
9541                 fi
9542         done
9543
9544         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
9545                 skip "Not enough cached locks created!"
9546                 return 0
9547         fi
9548         log "LRU=$LRU_SIZE"
9549
9550         local SLEEP=30
9551
9552         # We know that lru resize allows one client to hold $LIMIT locks
9553         # for 10h. After that locks begin to be killed by client.
9554         local MAX_HRS=10
9555         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
9556         log "LIMIT=$LIMIT"
9557         if [ $LIMIT -lt $LRU_SIZE ]; then
9558             skip "Limit is too small $LIMIT"
9559             return 0
9560         fi
9561
9562         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
9563         # killing locks. Some time was spent for creating locks. This means
9564         # that up to the moment of sleep finish we must have killed some of
9565         # them (10-100 locks). This depends on how fast ther were created.
9566         # Many of them were touched in almost the same moment and thus will
9567         # be killed in groups.
9568         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
9569
9570         # Use $LRU_SIZE_B here to take into account real number of locks
9571         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
9572         local LRU_SIZE_B=$LRU_SIZE
9573         log "LVF=$LVF"
9574         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
9575         log "OLD_LVF=$OLD_LVF"
9576         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
9577
9578         # Let's make sure that we really have some margin. Client checks
9579         # cached locks every 10 sec.
9580         SLEEP=$((SLEEP+20))
9581         log "Sleep ${SLEEP} sec"
9582         local SEC=0
9583         while ((SEC<$SLEEP)); do
9584                 echo -n "..."
9585                 sleep 5
9586                 SEC=$((SEC+5))
9587                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
9588                 echo -n "$LRU_SIZE"
9589         done
9590         echo ""
9591         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
9592         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
9593
9594         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
9595                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
9596                 unlinkmany $DIR/$tdir/f $NR
9597                 return
9598         }
9599
9600         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
9601         log "unlink $NR files at $DIR/$tdir"
9602         unlinkmany $DIR/$tdir/f $NR
9603 }
9604 run_test 124a "lru resize ======================================="
9605
9606 get_max_pool_limit()
9607 {
9608         local limit=$($LCTL get_param \
9609                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
9610         local max=0
9611         for l in $limit; do
9612                 if [[ $l -gt $max ]]; then
9613                         max=$l
9614                 fi
9615         done
9616         echo $max
9617 }
9618
9619 test_124b() {
9620         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9621         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
9622                 { skip "no lru resize on server"; return 0; }
9623
9624         LIMIT=$(get_max_pool_limit)
9625
9626         NR=$(($(default_lru_size)*20))
9627         if [[ $NR -gt $LIMIT ]]; then
9628                 log "Limit lock number by $LIMIT locks"
9629                 NR=$LIMIT
9630         fi
9631
9632         IFree=$(mdsrate_inodes_available)
9633         if [ $IFree -lt $NR ]; then
9634                 log "Limit lock number by $IFree inodes"
9635                 NR=$IFree
9636         fi
9637
9638         lru_resize_disable mdc
9639         test_mkdir -p $DIR/$tdir/disable_lru_resize
9640
9641         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
9642         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
9643         cancel_lru_locks mdc
9644         stime=`date +%s`
9645         PID=""
9646         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
9647         PID="$PID $!"
9648         sleep 2
9649         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
9650         PID="$PID $!"
9651         sleep 2
9652         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
9653         PID="$PID $!"
9654         wait $PID
9655         etime=`date +%s`
9656         nolruresize_delta=$((etime-stime))
9657         log "ls -la time: $nolruresize_delta seconds"
9658         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
9659         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
9660
9661         lru_resize_enable mdc
9662         test_mkdir -p $DIR/$tdir/enable_lru_resize
9663
9664         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
9665         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
9666         cancel_lru_locks mdc
9667         stime=`date +%s`
9668         PID=""
9669         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
9670         PID="$PID $!"
9671         sleep 2
9672         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
9673         PID="$PID $!"
9674         sleep 2
9675         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
9676         PID="$PID $!"
9677         wait $PID
9678         etime=`date +%s`
9679         lruresize_delta=$((etime-stime))
9680         log "ls -la time: $lruresize_delta seconds"
9681         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
9682
9683         if [ $lruresize_delta -gt $nolruresize_delta ]; then
9684                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
9685         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
9686                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
9687         else
9688                 log "lru resize performs the same with no lru resize"
9689         fi
9690         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
9691 }
9692 run_test 124b "lru resize (performance test) ======================="
9693
9694 test_124c() {
9695         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9696         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
9697                 { skip "no lru resize on server"; return 0; }
9698
9699         # cache ununsed locks on client
9700         local nr=100
9701         cancel_lru_locks mdc
9702         test_mkdir $DIR/$tdir
9703         createmany -o $DIR/$tdir/f $nr ||
9704                 error "failed to create $nr files in $DIR/$tdir"
9705         ls -l $DIR/$tdir > /dev/null
9706
9707         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
9708         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9709         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
9710         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
9711         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
9712
9713         # set lru_max_age to 1 sec
9714         $LCTL set_param $nsdir.lru_max_age=1000 # milliseconds
9715         echo "sleep $((recalc_p * 2)) seconds..."
9716         sleep $((recalc_p * 2))
9717
9718         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
9719         # restore lru_max_age
9720         $LCTL set_param -n $nsdir.lru_max_age $max_age
9721         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
9722         unlinkmany $DIR/$tdir/f $nr
9723 }
9724 run_test 124c "LRUR cancel very aged locks"
9725
9726 test_125() { # 13358
9727         $LCTL get_param -n llite.*.client_type | grep -q local ||
9728                 { skip "must run as local client"; return; }
9729         $LCTL get_param -n mdc.*-mdc-*.connect_flags | grep -q acl ||
9730                 { skip "must have acl enabled"; return; }
9731         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
9732         test_mkdir $DIR/$tdir
9733         $LFS setstripe -S 65536 -c -1 $DIR/$tdir || error "setstripe failed"
9734         setfacl -R -m u:bin:rwx $DIR/$tdir || error "setfacl $DIR/$tdir failed"
9735         ls -ld $DIR/$tdir || error "cannot access $DIR/$tdir"
9736 }
9737 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
9738
9739 test_126() { # bug 12829/13455
9740         $LCTL get_param -n llite.*.client_type | grep -q local ||
9741                 { skip "must run as local client"; return; }
9742         [ "$UID" != 0 ] && skip_env "$TESTNAME (must run as root)" && return
9743         $GSS && skip "must run as gss disabled" && return
9744
9745         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
9746         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
9747         rm -f $DIR/$tfile
9748         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
9749 }
9750 run_test 126 "check that the fsgid provided by the client is taken into account"
9751
9752 test_127a() { # bug 15521
9753         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9754         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
9755         $LCTL set_param osc.*.stats=0
9756         FSIZE=$((2048 * 1024))
9757         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9758         cancel_lru_locks osc
9759         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
9760
9761         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
9762         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
9763                 echo "got $COUNT $NAME"
9764                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
9765                 eval $NAME=$COUNT || error "Wrong proc format"
9766
9767                 case $NAME in
9768                         read_bytes|write_bytes)
9769                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
9770                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
9771                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
9772                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
9773                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
9774                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
9775                                 error "sumsquare is too small: $SUMSQ"
9776                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
9777                                 error "sumsquare is too big: $SUMSQ"
9778                         ;;
9779                         *) ;;
9780                 esac
9781         done < $DIR/${tfile}.tmp
9782
9783         #check that we actually got some stats
9784         [ "$read_bytes" ] || error "Missing read_bytes stats"
9785         [ "$write_bytes" ] || error "Missing write_bytes stats"
9786         [ "$read_bytes" != 0 ] || error "no read done"
9787         [ "$write_bytes" != 0 ] || error "no write done"
9788 }
9789 run_test 127a "verify the client stats are sane"
9790
9791 test_127b() { # bug LU-333
9792         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9793         $LCTL set_param llite.*.stats=0
9794         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
9795         # perform 2 reads and writes so MAX is different from SUM.
9796         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9797         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9798         cancel_lru_locks osc
9799         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
9800         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
9801
9802         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
9803         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
9804                 echo "got $COUNT $NAME"
9805                 eval $NAME=$COUNT || error "Wrong proc format"
9806
9807         case $NAME in
9808                 read_bytes)
9809                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
9810                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
9811                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
9812                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
9813                         ;;
9814                 write_bytes)
9815                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
9816                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
9817                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
9818                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
9819                         ;;
9820                         *) ;;
9821                 esac
9822         done < $TMP/${tfile}.tmp
9823
9824         #check that we actually got some stats
9825         [ "$read_bytes" ] || error "Missing read_bytes stats"
9826         [ "$write_bytes" ] || error "Missing write_bytes stats"
9827         [ "$read_bytes" != 0 ] || error "no read done"
9828         [ "$write_bytes" != 0 ] || error "no write done"
9829
9830         rm -f $TMP/${tfile}.tmp
9831 }
9832 run_test 127b "verify the llite client stats are sane"
9833
9834 test_128() { # bug 15212
9835         touch $DIR/$tfile
9836         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
9837                 find $DIR/$tfile
9838                 find $DIR/$tfile
9839         EOF
9840
9841         result=$(grep error $TMP/$tfile.log)
9842         rm -f $DIR/$tfile $TMP/$tfile.log
9843         [ -z "$result" ] ||
9844                 error "consecutive find's under interactive lfs failed"
9845 }
9846 run_test 128 "interactive lfs for 2 consecutive find's"
9847
9848 set_dir_limits () {
9849         local mntdev
9850         local canondev
9851         local node
9852
9853         local ldproc=/proc/fs/ldiskfs
9854         local facets=$(get_facets MDS)
9855
9856         for facet in ${facets//,/ }; do
9857                 canondev=$(ldiskfs_canon \
9858                            *.$(convert_facet2label $facet).mntdev $facet)
9859                 do_facet $facet "test -e $ldproc/$canondev/max_dir_size" ||
9860                         ldproc=/sys/fs/ldiskfs
9861                 do_facet $facet "echo $1 >$ldproc/$canondev/max_dir_size"
9862                 do_facet $facet "echo $2 >$ldproc/$canondev/warning_dir_size"
9863         done
9864 }
9865
9866 check_mds_dmesg() {
9867         local facets=$(get_facets MDS)
9868         for facet in ${facets//,/ }; do
9869                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
9870         done
9871         return 1
9872 }
9873
9874 test_129() {
9875         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.56) ]] ||
9876                 { skip "Need MDS version with at least 2.5.56"; return 0; }
9877
9878         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9879         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
9880                 skip "ldiskfs only test"
9881                 return
9882         fi
9883         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9884         local ENOSPC=28
9885         local EFBIG=27
9886         local has_warning=false
9887
9888         rm -rf $DIR/$tdir
9889         mkdir -p $DIR/$tdir
9890
9891         # block size of mds1
9892         local maxsize=$(($($LCTL get_param -n mdc.*MDT0000*.blocksize) * 5))
9893         set_dir_limits $maxsize $maxsize
9894         local dirsize=$(stat -c%s "$DIR/$tdir")
9895         local nfiles=0
9896         while [[ $dirsize -le $maxsize ]]; do
9897                 $MULTIOP $DIR/$tdir/file_base_$nfiles Oc
9898                 rc=$?
9899                 if ! $has_warning; then
9900                         check_mds_dmesg '"is approaching"' && has_warning=true
9901                 fi
9902                 # check two errors:
9903                 # ENOSPC for new ext4 max_dir_size (kernel commit df981d03ee)
9904                 # EFBIG for previous versions included in ldiskfs series
9905                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
9906                         set_dir_limits 0 0
9907                         echo "return code $rc received as expected"
9908
9909                         createmany -o $DIR/$tdir/file_extra_$nfiles. 5 ||
9910                                 error_exit "create failed w/o dir size limit"
9911
9912                         check_mds_dmesg '"has reached"' ||
9913                                 error_exit "reached message should be output"
9914
9915                         [ $has_warning = "false" ] &&
9916                                 error_exit "warning message should be output"
9917
9918                         dirsize=$(stat -c%s "$DIR/$tdir")
9919
9920                         [[ $dirsize -ge $maxsize ]] && return 0
9921                         error_exit "current dir size $dirsize, " \
9922                                    "previous limit $maxsize"
9923                 elif [ $rc -ne 0 ]; then
9924                         set_dir_limits 0 0
9925                         error_exit "return $rc received instead of expected " \
9926                                    "$EFBIG or $ENOSPC, files in dir $dirsize"
9927                 fi
9928                 nfiles=$((nfiles + 1))
9929                 dirsize=$(stat -c%s "$DIR/$tdir")
9930         done
9931
9932         set_dir_limits 0 0
9933         error "exceeded dir size limit $maxsize($MDSCOUNT) : $dirsize bytes"
9934 }
9935 run_test 129 "test directory size limit ========================"
9936
9937 OLDIFS="$IFS"
9938 cleanup_130() {
9939         trap 0
9940         IFS="$OLDIFS"
9941 }
9942
9943 test_130a() {
9944         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9945         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
9946                 return
9947
9948         trap cleanup_130 EXIT RETURN
9949
9950         local fm_file=$DIR/$tfile
9951         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
9952         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
9953                 error "dd failed for $fm_file"
9954
9955         # LU-1795: test filefrag/FIEMAP once, even if unsupported
9956         filefrag -ves $fm_file
9957         RC=$?
9958         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9959                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9960         [ $RC != 0 ] && error "filefrag $fm_file failed"
9961
9962         filefrag_op=$(filefrag -ve -k $fm_file |
9963                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9964         lun=$($GETSTRIPE -i $fm_file)
9965
9966         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
9967         IFS=$'\n'
9968         tot_len=0
9969         for line in $filefrag_op
9970         do
9971                 frag_lun=`echo $line | cut -d: -f5`
9972                 ext_len=`echo $line | cut -d: -f4`
9973                 if (( $frag_lun != $lun )); then
9974                         cleanup_130
9975                         error "FIEMAP on 1-stripe file($fm_file) failed"
9976                         return
9977                 fi
9978                 (( tot_len += ext_len ))
9979         done
9980
9981         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
9982                 cleanup_130
9983                 error "FIEMAP on 1-stripe file($fm_file) failed;"
9984                 return
9985         fi
9986
9987         cleanup_130
9988
9989         echo "FIEMAP on single striped file succeeded"
9990 }
9991 run_test 130a "FIEMAP (1-stripe file)"
9992
9993 test_130b() {
9994         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >= 2 OSTs" && return
9995
9996         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9997         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
9998                 return
9999
10000         trap cleanup_130 EXIT RETURN
10001
10002         local fm_file=$DIR/$tfile
10003         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
10004                         error "setstripe on $fm_file"
10005         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10006                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
10007
10008         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
10009                 error "dd failed on $fm_file"
10010
10011         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10012         filefrag_op=$(filefrag -ve -k $fm_file |
10013                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10014
10015         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10016                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10017
10018         IFS=$'\n'
10019         tot_len=0
10020         num_luns=1
10021         for line in $filefrag_op
10022         do
10023                 frag_lun=$(echo $line | cut -d: -f5 |
10024                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10025                 ext_len=$(echo $line | cut -d: -f4)
10026                 if (( $frag_lun != $last_lun )); then
10027                         if (( tot_len != 1024 )); then
10028                                 cleanup_130
10029                                 error "FIEMAP on $fm_file failed; returned " \
10030                                 "len $tot_len for OST $last_lun instead of 1024"
10031                                 return
10032                         else
10033                                 (( num_luns += 1 ))
10034                                 tot_len=0
10035                         fi
10036                 fi
10037                 (( tot_len += ext_len ))
10038                 last_lun=$frag_lun
10039         done
10040         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
10041                 cleanup_130
10042                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10043                         "luns or wrong len for OST $last_lun"
10044                 return
10045         fi
10046
10047         cleanup_130
10048
10049         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
10050 }
10051 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
10052
10053 test_130c() {
10054         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
10055
10056         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10057         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
10058                 return
10059
10060         trap cleanup_130 EXIT RETURN
10061
10062         local fm_file=$DIR/$tfile
10063         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
10064         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10065                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
10066
10067         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
10068                         error "dd failed on $fm_file"
10069
10070         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10071         filefrag_op=$(filefrag -ve -k $fm_file |
10072                 sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10073
10074         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10075                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10076
10077         IFS=$'\n'
10078         tot_len=0
10079         num_luns=1
10080         for line in $filefrag_op
10081         do
10082                 frag_lun=$(echo $line | cut -d: -f5 |
10083                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10084                 ext_len=$(echo $line | cut -d: -f4)
10085                 if (( $frag_lun != $last_lun )); then
10086                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
10087                         if (( logical != 512 )); then
10088                                 cleanup_130
10089                                 error "FIEMAP on $fm_file failed; returned " \
10090                                 "logical start for lun $logical instead of 512"
10091                                 return
10092                         fi
10093                         if (( tot_len != 512 )); then
10094                                 cleanup_130
10095                                 error "FIEMAP on $fm_file failed; returned " \
10096                                 "len $tot_len for OST $last_lun instead of 1024"
10097                                 return
10098                         else
10099                                 (( num_luns += 1 ))
10100                                 tot_len=0
10101                         fi
10102                 fi
10103                 (( tot_len += ext_len ))
10104                 last_lun=$frag_lun
10105         done
10106         if (( num_luns != 2 || tot_len != 512 )); then
10107                 cleanup_130
10108                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10109                         "luns or wrong len for OST $last_lun"
10110                 return
10111         fi
10112
10113         cleanup_130
10114
10115         echo "FIEMAP on 2-stripe file with hole succeeded"
10116 }
10117 run_test 130c "FIEMAP (2-stripe file with hole)"
10118
10119 test_130d() {
10120         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs" && return
10121
10122         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10123         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
10124                 return
10125
10126         trap cleanup_130 EXIT RETURN
10127
10128         local fm_file=$DIR/$tfile
10129         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
10130                         error "setstripe on $fm_file"
10131         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10132                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
10133
10134         local actual_stripe_count=$($GETSTRIPE -c $fm_file)
10135         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripe_count ||
10136                 error "dd failed on $fm_file"
10137
10138         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10139         filefrag_op=$(filefrag -ve -k $fm_file |
10140                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10141
10142         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10143                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10144
10145         IFS=$'\n'
10146         tot_len=0
10147         num_luns=1
10148         for line in $filefrag_op
10149         do
10150                 frag_lun=$(echo $line | cut -d: -f5 |
10151                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10152                 ext_len=$(echo $line | cut -d: -f4)
10153                 if (( $frag_lun != $last_lun )); then
10154                         if (( tot_len != 1024 )); then
10155                                 cleanup_130
10156                                 error "FIEMAP on $fm_file failed; returned " \
10157                                 "len $tot_len for OST $last_lun instead of 1024"
10158                                 return
10159                         else
10160                                 (( num_luns += 1 ))
10161                                 tot_len=0
10162                         fi
10163                 fi
10164                 (( tot_len += ext_len ))
10165                 last_lun=$frag_lun
10166         done
10167         if (( num_luns != actual_stripe_count || tot_len != 1024 )); then
10168                 cleanup_130
10169                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10170                         "luns or wrong len for OST $last_lun"
10171                 return
10172         fi
10173
10174         cleanup_130
10175
10176         echo "FIEMAP on N-stripe file succeeded"
10177 }
10178 run_test 130d "FIEMAP (N-stripe file)"
10179
10180 test_130e() {
10181         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
10182
10183         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10184         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
10185
10186         trap cleanup_130 EXIT RETURN
10187
10188         local fm_file=$DIR/$tfile
10189         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
10190         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10191                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
10192
10193         NUM_BLKS=512
10194         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
10195         for ((i = 0; i < $NUM_BLKS; i++))
10196         do
10197                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
10198         done
10199
10200         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10201         filefrag_op=$(filefrag -ve -k $fm_file |
10202                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10203
10204         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10205                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10206
10207         IFS=$'\n'
10208         tot_len=0
10209         num_luns=1
10210         for line in $filefrag_op
10211         do
10212                 frag_lun=$(echo $line | cut -d: -f5 |
10213                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10214                 ext_len=$(echo $line | cut -d: -f4)
10215                 if (( $frag_lun != $last_lun )); then
10216                         if (( tot_len != $EXPECTED_LEN )); then
10217                                 cleanup_130
10218                                 error "FIEMAP on $fm_file failed; returned " \
10219                                 "len $tot_len for OST $last_lun instead " \
10220                                 "of $EXPECTED_LEN"
10221                                 return
10222                         else
10223                                 (( num_luns += 1 ))
10224                                 tot_len=0
10225                         fi
10226                 fi
10227                 (( tot_len += ext_len ))
10228                 last_lun=$frag_lun
10229         done
10230         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
10231                 cleanup_130
10232                 error "FIEMAP on $fm_file failed; returned wrong number " \
10233                         "of luns or wrong len for OST $last_lun"
10234                 return
10235         fi
10236
10237         cleanup_130
10238
10239         echo "FIEMAP with continuation calls succeeded"
10240 }
10241 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
10242
10243 test_130f() {
10244         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10245         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
10246                 return
10247
10248         local fm_file=$DIR/$tfile
10249         $MULTIOP $fm_file oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T33554432c ||
10250                 error "multiop create with lov_delay_create on $fm_file"
10251
10252         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10253         filefrag_extents=$(filefrag -vek $fm_file |
10254                            awk '/extents? found/ { print $2 }')
10255         if [[ "$filefrag_extents" != "0" ]]; then
10256                 error "FIEMAP on $fm_file failed; " \
10257                       "returned $filefrag_extents expected 0"
10258         fi
10259
10260         rm -f $fm_file
10261 }
10262 run_test 130f "FIEMAP (unstriped file)"
10263
10264 # Test for writev/readv
10265 test_131a() {
10266         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 ||
10267                 error "writev test failed"
10268         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 ||
10269                 error "readv failed"
10270         rm -f $DIR/$tfile
10271 }
10272 run_test 131a "test iov's crossing stripe boundary for writev/readv"
10273
10274 test_131b() {
10275         local fsize=$((524288 + 1048576 + 1572864))
10276         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 &&
10277                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
10278                         error "append writev test failed"
10279
10280         ((fsize += 1572864 + 1048576))
10281         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 &&
10282                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
10283                         error "append writev test failed"
10284         rm -f $DIR/$tfile
10285 }
10286 run_test 131b "test append writev"
10287
10288 test_131c() {
10289         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
10290         error "NOT PASS"
10291 }
10292 run_test 131c "test read/write on file w/o objects"
10293
10294 test_131d() {
10295         rwv -f $DIR/$tfile -w -n 1 1572864
10296         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
10297         if [ "$NOB" != 1572864 ]; then
10298                 error "Short read filed: read $NOB bytes instead of 1572864"
10299         fi
10300         rm -f $DIR/$tfile
10301 }
10302 run_test 131d "test short read"
10303
10304 test_131e() {
10305         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
10306         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
10307         error "read hitting hole failed"
10308         rm -f $DIR/$tfile
10309 }
10310 run_test 131e "test read hitting hole"
10311
10312 check_stats() {
10313         local facet=$1
10314         local op=$2
10315         local want=${3:-0}
10316         local res
10317
10318         case $facet in
10319         mds*) res=$(do_facet $facet \
10320                    $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$op")
10321                  ;;
10322         ost*) res=$(do_facet $facet \
10323                    $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$op")
10324                  ;;
10325         *) error "Wrong facet '$facet'" ;;
10326         esac
10327         echo $res
10328         [ "$res" ] || error "The counter for $op on $facet was not incremented"
10329         # if the argument $3 is zero, it means any stat increment is ok.
10330         if [[ $want -gt 0 ]]; then
10331                 local count=$(echo $res | awk '{ print $2 }')
10332                 [[ $count -ne $want ]] &&
10333                         error "The $op counter on $facet is $count, not $want"
10334         fi
10335 }
10336
10337 test_133a() {
10338         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10339         remote_ost_nodsh && skip "remote OST with nodsh" && return
10340         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10341
10342         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
10343                 { skip "MDS doesn't support rename stats"; return; }
10344         local testdir=$DIR/${tdir}/stats_testdir
10345         mkdir -p $DIR/${tdir}
10346
10347         # clear stats.
10348         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10349         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10350
10351         # verify mdt stats first.
10352         mkdir ${testdir} || error "mkdir failed"
10353         check_stats $SINGLEMDS "mkdir" 1
10354         touch ${testdir}/${tfile} || error "touch failed"
10355         check_stats $SINGLEMDS "open" 1
10356         check_stats $SINGLEMDS "close" 1
10357         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.8.54) ] && {
10358                 mknod ${testdir}/${tfile}-pipe p || error "mknod failed"
10359                 check_stats $SINGLEMDS "mknod" 2
10360         }
10361         rm -f ${testdir}/${tfile}-pipe || error "pipe remove failed"
10362         check_stats $SINGLEMDS "unlink" 1
10363         rm -f ${testdir}/${tfile} || error "file remove failed"
10364         check_stats $SINGLEMDS "unlink" 2
10365
10366         # remove working dir and check mdt stats again.
10367         rmdir ${testdir} || error "rmdir failed"
10368         check_stats $SINGLEMDS "rmdir" 1
10369
10370         local testdir1=$DIR/${tdir}/stats_testdir1
10371         mkdir -p ${testdir}
10372         mkdir -p ${testdir1}
10373         touch ${testdir1}/test1
10374         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
10375         check_stats $SINGLEMDS "crossdir_rename" 1
10376
10377         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
10378         check_stats $SINGLEMDS "samedir_rename" 1
10379
10380         rm -rf $DIR/${tdir}
10381 }
10382 run_test 133a "Verifying MDT stats ========================================"
10383
10384 test_133b() {
10385         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10386         remote_ost_nodsh && skip "remote OST with nodsh" && return
10387         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10388         local testdir=$DIR/${tdir}/stats_testdir
10389         mkdir -p ${testdir} || error "mkdir failed"
10390         touch ${testdir}/${tfile} || error "touch failed"
10391         cancel_lru_locks mdc
10392
10393         # clear stats.
10394         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10395         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10396
10397         # extra mdt stats verification.
10398         chmod 444 ${testdir}/${tfile} || error "chmod failed"
10399         check_stats $SINGLEMDS "setattr" 1
10400         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10401         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
10402         then            # LU-1740
10403                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
10404                 check_stats $SINGLEMDS "getattr" 1
10405         fi
10406         $LFS df || error "lfs failed"
10407         check_stats $SINGLEMDS "statfs" 1
10408
10409         rm -rf $DIR/${tdir}
10410 }
10411 run_test 133b "Verifying extra MDT stats =================================="
10412
10413 test_133c() {
10414         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10415         remote_ost_nodsh && skip "remote OST with nodsh" && return
10416         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10417         local testdir=$DIR/$tdir/stats_testdir
10418         test_mkdir -p $testdir
10419
10420         # verify obdfilter stats.
10421         $SETSTRIPE -c 1 -i 0 $testdir/$tfile
10422         sync
10423         cancel_lru_locks osc
10424         wait_delete_completed
10425
10426         # clear stats.
10427         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10428         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10429
10430         dd if=/dev/zero of=$testdir/$tfile conv=notrunc bs=512k count=1 ||
10431                 error "dd failed"
10432         sync
10433         cancel_lru_locks osc
10434         check_stats ost1 "write" 1
10435
10436         dd if=$testdir/$tfile of=/dev/null bs=1k count=1 || error "dd failed"
10437         check_stats ost1 "read" 1
10438
10439         > $testdir/$tfile || error "truncate failed"
10440         check_stats ost1 "punch" 1
10441
10442         rm -f $testdir/$tfile || error "file remove failed"
10443         wait_delete_completed
10444         check_stats ost1 "destroy" 1
10445
10446         rm -rf $DIR/$tdir
10447 }
10448 run_test 133c "Verifying OST stats ========================================"
10449
10450 order_2() {
10451         local value=$1
10452         local orig=$value
10453         local order=1
10454
10455         while [ $value -ge 2 ]; do
10456                 order=$((order*2))
10457                 value=$((value/2))
10458         done
10459
10460         if [ $orig -gt $order ]; then
10461                 order=$((order*2))
10462         fi
10463         echo $order
10464 }
10465
10466 size_in_KMGT() {
10467     local value=$1
10468     local size=('K' 'M' 'G' 'T');
10469     local i=0
10470     local size_string=$value
10471
10472     while [ $value -ge 1024 ]; do
10473         if [ $i -gt 3 ]; then
10474             #T is the biggest unit we get here, if that is bigger,
10475             #just return XXXT
10476             size_string=${value}T
10477             break
10478         fi
10479         value=$((value >> 10))
10480         if [ $value -lt 1024 ]; then
10481             size_string=${value}${size[$i]}
10482             break
10483         fi
10484         i=$((i + 1))
10485     done
10486
10487     echo $size_string
10488 }
10489
10490 get_rename_size() {
10491     local size=$1
10492     local context=${2:-.}
10493     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
10494                 grep -A1 $context |
10495                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
10496     echo $sample
10497 }
10498
10499 test_133d() {
10500         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10501         remote_ost_nodsh && skip "remote OST with nodsh" && return
10502         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10503         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
10504         { skip "MDS doesn't support rename stats"; return; }
10505
10506         local testdir1=$DIR/${tdir}/stats_testdir1
10507         local testdir2=$DIR/${tdir}/stats_testdir2
10508
10509         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
10510
10511         mkdir -p ${testdir1} || error "mkdir failed"
10512         mkdir -p ${testdir2} || error "mkdir failed"
10513
10514         createmany -o $testdir1/test 512 || error "createmany failed"
10515
10516         # check samedir rename size
10517         mv ${testdir1}/test0 ${testdir1}/test_0
10518
10519         local testdir1_size=$(ls -l $DIR/${tdir} |
10520                 awk '/stats_testdir1/ {print $5}')
10521         local testdir2_size=$(ls -l $DIR/${tdir} |
10522                 awk '/stats_testdir2/ {print $5}')
10523
10524         testdir1_size=$(order_2 $testdir1_size)
10525         testdir2_size=$(order_2 $testdir2_size)
10526
10527         testdir1_size=$(size_in_KMGT $testdir1_size)
10528         testdir2_size=$(size_in_KMGT $testdir2_size)
10529
10530         echo "source rename dir size: ${testdir1_size}"
10531         echo "target rename dir size: ${testdir2_size}"
10532
10533         local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
10534         eval $cmd || error "$cmd failed"
10535         local samedir=$($cmd | grep 'same_dir')
10536         local same_sample=$(get_rename_size $testdir1_size)
10537         [ -z "$samedir" ] && error "samedir_rename_size count error"
10538         [[ $same_sample -eq 1 ]] ||
10539                 error "samedir_rename_size error $same_sample"
10540         echo "Check same dir rename stats success"
10541
10542         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
10543
10544         # check crossdir rename size
10545         mv ${testdir1}/test_0 ${testdir2}/test_0
10546
10547         testdir1_size=$(ls -l $DIR/${tdir} |
10548                 awk '/stats_testdir1/ {print $5}')
10549         testdir2_size=$(ls -l $DIR/${tdir} |
10550                 awk '/stats_testdir2/ {print $5}')
10551
10552         testdir1_size=$(order_2 $testdir1_size)
10553         testdir2_size=$(order_2 $testdir2_size)
10554
10555         testdir1_size=$(size_in_KMGT $testdir1_size)
10556         testdir2_size=$(size_in_KMGT $testdir2_size)
10557
10558         echo "source rename dir size: ${testdir1_size}"
10559         echo "target rename dir size: ${testdir2_size}"
10560
10561         eval $cmd || error "$cmd failed"
10562         local crossdir=$($cmd | grep 'crossdir')
10563         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
10564         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
10565         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
10566         [[ $src_sample -eq 1 ]] ||
10567                 error "crossdir_rename_size error $src_sample"
10568         [[ $tgt_sample -eq 1 ]] ||
10569                 error "crossdir_rename_size error $tgt_sample"
10570         echo "Check cross dir rename stats success"
10571         rm -rf $DIR/${tdir}
10572 }
10573 run_test 133d "Verifying rename_stats ========================================"
10574
10575 test_133e() {
10576         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10577         remote_ost_nodsh && skip "remote OST with nodsh" && return
10578         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10579         local testdir=$DIR/${tdir}/stats_testdir
10580         local ctr f0 f1 bs=32768 count=42 sum
10581
10582         mkdir -p ${testdir} || error "mkdir failed"
10583
10584         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
10585
10586         for ctr in {write,read}_bytes; do
10587                 sync
10588                 cancel_lru_locks osc
10589
10590                 do_facet ost1 $LCTL set_param -n \
10591                         "obdfilter.*.exports.clear=clear"
10592
10593                 if [ $ctr = write_bytes ]; then
10594                         f0=/dev/zero
10595                         f1=${testdir}/${tfile}
10596                 else
10597                         f0=${testdir}/${tfile}
10598                         f1=/dev/null
10599                 fi
10600
10601                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
10602                         error "dd failed"
10603                 sync
10604                 cancel_lru_locks osc
10605
10606                 sum=$(do_facet ost1 $LCTL get_param \
10607                         "obdfilter.*.exports.*.stats" |
10608                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
10609                                 $1 == ctr { sum += $7 }
10610                                 END { printf("%0.0f", sum) }')
10611
10612                 if ((sum != bs * count)); then
10613                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
10614                 fi
10615         done
10616
10617         rm -rf $DIR/${tdir}
10618 }
10619 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
10620
10621 proc_regexp="/{proc,sys}/{fs,sys,kernel/debug}/{lustre,lnet}/"
10622
10623 test_133f() {
10624         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10625         remote_ost_nodsh && skip "remote OST with nodsh" && return
10626         # First without trusting modes.
10627         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
10628         echo "proc_dirs='$proc_dirs'"
10629         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
10630         find $proc_dirs -exec cat '{}' \; &> /dev/null
10631
10632         # Second verifying readability.
10633         $LCTL get_param -R '*' &> /dev/null || error "proc file read failed"
10634
10635         # eventually, this can also be replaced with "lctl get_param -R",
10636         # but not until that option is always available on the server
10637         local facet
10638         for facet in mds1 ost1; do
10639                 local facet_proc_dirs=$(do_facet $facet \
10640                                         \\\ls -d $proc_regexp 2>/dev/null)
10641                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
10642                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
10643                 do_facet $facet find $facet_proc_dirs \
10644                         ! -name req_history \
10645                         -exec cat '{}' \\\; &> /dev/null
10646
10647                 do_facet $facet find $facet_proc_dirs \
10648                         ! -name req_history \
10649                         -type f \
10650                         -exec cat '{}' \\\; &> /dev/null ||
10651                                 error "proc file read failed"
10652         done
10653 }
10654 run_test 133f "Check for LBUGs/Oopses/unreadable files in /proc"
10655
10656 test_133g() {
10657         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10658         remote_ost_nodsh && skip "remote OST with nodsh" && return
10659         # Second verifying writability.
10660         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
10661         echo "proc_dirs='$proc_dirs'"
10662         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
10663         find $proc_dirs \
10664                 -ignore_readdir_race \
10665                 -type f \
10666                 -not -name force_lbug \
10667                 -not -name changelog_mask \
10668                 -exec badarea_io '{}' \; ||
10669                 error "find $proc_dirs failed"
10670
10671         local facet
10672         for facet in mds1 ost1; do
10673                 [ $(lustre_version_code $facet) -le $(version_code 2.5.54) ] &&
10674                         skip "Too old lustre on $facet" && continue
10675                 local facet_proc_dirs=$(do_facet $facet \
10676                                         \\\ls -d $proc_regexp 2> /dev/null)
10677                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
10678                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
10679                 do_facet $facet find $facet_proc_dirs \
10680                         -ignore_readdir_race \
10681                         -type f \
10682                         -not -name force_lbug \
10683                         -not -name changelog_mask \
10684                         -exec badarea_io '{}' \\\; ||
10685                                 error "$facet find $facet_proc_dirs failed"
10686         done
10687
10688         # remount the FS in case writes/reads /proc break the FS
10689         cleanup || error "failed to unmount"
10690         setup || error "failed to setup"
10691         true
10692 }
10693 run_test 133g "Check for Oopses on bad io area writes/reads in /proc"
10694
10695 test_133h() {
10696         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10697         remote_ost_nodsh && skip "remote OST with nodsh" && return
10698         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.54) ]] &&
10699                 skip "Need MDS version at least 2.9.54" && return
10700
10701         local facet
10702         for facet in client mds1 ost1; do
10703                 local facet_proc_dirs=$(do_facet $facet \
10704                                         \\\ls -d $proc_regexp 2> /dev/null)
10705                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
10706                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
10707                 # Get the list of files that are missing the terminating newline
10708                 local missing=($(do_facet $facet \
10709                         find ${facet_proc_dirs} -type f \|              \
10710                                 while read F\; do                       \
10711                                         awk -v FS='\v' -v RS='\v\v'     \
10712                                         "'END { if(NR>0 &&              \
10713                                         \\\$NF !~ /.*\\\n\$/)           \
10714                                                 print FILENAME}'"       \
10715                                         '\$F'\;                         \
10716                                 done 2>/dev/null))
10717                 [ ${#missing[*]} -eq 0 ] ||
10718                         error "files do not end with newline: ${missing[*]}"
10719         done
10720 }
10721 run_test 133h "Proc files should end with newlines"
10722
10723 test_134a() {
10724         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10725         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
10726                 skip "Need MDS version at least 2.7.54" && return
10727
10728         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
10729         cancel_lru_locks mdc
10730
10731         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
10732         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
10733         [ $unused -eq 0 ] || error "$unused locks are not cleared"
10734
10735         local nr=1000
10736         createmany -o $DIR/$tdir/f $nr ||
10737                 error "failed to create $nr files in $DIR/$tdir"
10738         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
10739
10740         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
10741         do_facet mds1 $LCTL set_param fail_loc=0x327
10742         do_facet mds1 $LCTL set_param fail_val=500
10743         touch $DIR/$tdir/m
10744
10745         echo "sleep 10 seconds ..."
10746         sleep 10
10747         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
10748
10749         do_facet mds1 $LCTL set_param fail_loc=0
10750         do_facet mds1 $LCTL set_param fail_val=0
10751         [ $lck_cnt -lt $unused ] ||
10752                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
10753
10754         rm $DIR/$tdir/m
10755         unlinkmany $DIR/$tdir/f $nr
10756 }
10757 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
10758
10759 test_134b() {
10760         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10761         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
10762                 skip "Need MDS version at least 2.7.54" && return
10763
10764         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
10765         cancel_lru_locks mdc
10766
10767         local low_wm=$(do_facet mds1 $LCTL get_param -n \
10768                         ldlm.lock_reclaim_threshold_mb)
10769         # disable reclaim temporarily
10770         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
10771
10772         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
10773         do_facet mds1 $LCTL set_param fail_loc=0x328
10774         do_facet mds1 $LCTL set_param fail_val=500
10775
10776         $LCTL set_param debug=+trace
10777
10778         local nr=600
10779         createmany -o $DIR/$tdir/f $nr &
10780         local create_pid=$!
10781
10782         echo "Sleep $TIMEOUT seconds ..."
10783         sleep $TIMEOUT
10784         if ! ps -p $create_pid  > /dev/null 2>&1; then
10785                 do_facet mds1 $LCTL set_param fail_loc=0
10786                 do_facet mds1 $LCTL set_param fail_val=0
10787                 do_facet mds1 $LCTL set_param \
10788                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
10789                 error "createmany finished incorrectly!"
10790         fi
10791         do_facet mds1 $LCTL set_param fail_loc=0
10792         do_facet mds1 $LCTL set_param fail_val=0
10793         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
10794         wait $create_pid || return 1
10795
10796         unlinkmany $DIR/$tdir/f $nr
10797 }
10798 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
10799
10800 test_140() { #bug-17379
10801         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10802         test_mkdir $DIR/$tdir
10803         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
10804         cp $(which stat) . || error "Copying stat to $DIR/$tdir"
10805
10806         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
10807         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
10808         local i=0
10809         while i=$((i + 1)); do
10810                 test_mkdir $i
10811                 cd $i || error "Changing to $i"
10812                 ln -s ../stat stat || error "Creating stat symlink"
10813                 # Read the symlink until ELOOP present,
10814                 # not LBUGing the system is considered success,
10815                 # we didn't overrun the stack.
10816                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
10817                 if [ $ret -ne 0 ]; then
10818                         if [ $ret -eq 40 ]; then
10819                                 break  # -ELOOP
10820                         else
10821                                 error "Open stat symlink"
10822                                         return
10823                         fi
10824                 fi
10825         done
10826         i=$((i - 1))
10827         echo "The symlink depth = $i"
10828         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
10829                                         error "Invalid symlink depth"
10830
10831         # Test recursive symlink
10832         ln -s symlink_self symlink_self
10833         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
10834         echo "open symlink_self returns $ret"
10835         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
10836 }
10837 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
10838
10839 test_150() {
10840         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10841         local TF="$TMP/$tfile"
10842
10843         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
10844         cp $TF $DIR/$tfile
10845         cancel_lru_locks $OSC
10846         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
10847         remount_client $MOUNT
10848         df -P $MOUNT
10849         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
10850
10851         $TRUNCATE $TF 6000
10852         $TRUNCATE $DIR/$tfile 6000
10853         cancel_lru_locks $OSC
10854         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
10855
10856         echo "12345" >>$TF
10857         echo "12345" >>$DIR/$tfile
10858         cancel_lru_locks $OSC
10859         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
10860
10861         echo "12345" >>$TF
10862         echo "12345" >>$DIR/$tfile
10863         cancel_lru_locks $OSC
10864         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
10865
10866         rm -f $TF
10867         true
10868 }
10869 run_test 150 "truncate/append tests"
10870
10871 #LU-2902 roc_hit was not able to read all values from lproc
10872 function roc_hit_init() {
10873         local list=$(comma_list $(osts_nodes))
10874         local dir=$DIR/$tdir-check
10875         local file=$dir/$tfile
10876         local BEFORE
10877         local AFTER
10878         local idx
10879
10880         test_mkdir $dir
10881         #use setstripe to do a write to every ost
10882         for i in $(seq 0 $((OSTCOUNT-1))); do
10883                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
10884                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
10885                 idx=$(printf %04x $i)
10886                 BEFORE=$(get_osd_param $list *OST*$idx stats |
10887                         awk '$1 == "cache_access" {sum += $7}
10888                                 END { printf("%0.0f", sum) }')
10889
10890                 cancel_lru_locks osc
10891                 cat $file >/dev/null
10892
10893                 AFTER=$(get_osd_param $list *OST*$idx stats |
10894                         awk '$1 == "cache_access" {sum += $7}
10895                                 END { printf("%0.0f", sum) }')
10896
10897                 echo BEFORE:$BEFORE AFTER:$AFTER
10898                 if ! let "AFTER - BEFORE == 4"; then
10899                         rm -rf $dir
10900                         error "roc_hit is not safe to use"
10901                 fi
10902                 rm $file
10903         done
10904
10905         rm -rf $dir
10906 }
10907
10908 function roc_hit() {
10909         local list=$(comma_list $(osts_nodes))
10910         echo $(get_osd_param $list '' stats |
10911                 awk '$1 == "cache_hit" {sum += $7}
10912                         END { printf("%0.0f", sum) }')
10913 }
10914
10915 function set_cache() {
10916         local on=1
10917
10918         if [ "$2" == "off" ]; then
10919                 on=0;
10920         fi
10921         local list=$(comma_list $(osts_nodes))
10922         set_osd_param $list '' $1_cache_enable $on
10923
10924         cancel_lru_locks osc
10925 }
10926
10927 test_151() {
10928         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10929         remote_ost_nodsh && skip "remote OST with nodsh" && return
10930
10931         local CPAGES=3
10932         local list=$(comma_list $(osts_nodes))
10933
10934         # check whether obdfilter is cache capable at all
10935         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
10936                 echo "not cache-capable obdfilter"
10937                 return 0
10938         fi
10939
10940         # check cache is enabled on all obdfilters
10941         if get_osd_param $list '' read_cache_enable | grep 0; then
10942                 echo "oss cache is disabled"
10943                 return 0
10944         fi
10945
10946         set_osd_param $list '' writethrough_cache_enable 1
10947
10948         # check write cache is enabled on all obdfilters
10949         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
10950                 echo "oss write cache is NOT enabled"
10951                 return 0
10952         fi
10953
10954         roc_hit_init
10955
10956         #define OBD_FAIL_OBD_NO_LRU  0x609
10957         do_nodes $list $LCTL set_param fail_loc=0x609
10958
10959         # pages should be in the case right after write
10960         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
10961                 error "dd failed"
10962
10963         local BEFORE=$(roc_hit)
10964         cancel_lru_locks osc
10965         cat $DIR/$tfile >/dev/null
10966         local AFTER=$(roc_hit)
10967
10968         do_nodes $list $LCTL set_param fail_loc=0
10969
10970         if ! let "AFTER - BEFORE == CPAGES"; then
10971                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10972         fi
10973
10974         # the following read invalidates the cache
10975         cancel_lru_locks osc
10976         set_osd_param $list '' read_cache_enable 0
10977         cat $DIR/$tfile >/dev/null
10978
10979         # now data shouldn't be found in the cache
10980         BEFORE=$(roc_hit)
10981         cancel_lru_locks osc
10982         cat $DIR/$tfile >/dev/null
10983         AFTER=$(roc_hit)
10984         if let "AFTER - BEFORE != 0"; then
10985                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10986         fi
10987
10988         set_osd_param $list '' read_cache_enable 1
10989         rm -f $DIR/$tfile
10990 }
10991 run_test 151 "test cache on oss and controls ==============================="
10992
10993 test_152() {
10994         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10995         local TF="$TMP/$tfile"
10996
10997         # simulate ENOMEM during write
10998 #define OBD_FAIL_OST_NOMEM      0x226
10999         lctl set_param fail_loc=0x80000226
11000         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
11001         cp $TF $DIR/$tfile
11002         sync || error "sync failed"
11003         lctl set_param fail_loc=0
11004
11005         # discard client's cache
11006         cancel_lru_locks osc
11007
11008         # simulate ENOMEM during read
11009         lctl set_param fail_loc=0x80000226
11010         cmp $TF $DIR/$tfile || error "cmp failed"
11011         lctl set_param fail_loc=0
11012
11013         rm -f $TF
11014 }
11015 run_test 152 "test read/write with enomem ============================"
11016
11017 test_153() {
11018         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
11019 }
11020 run_test 153 "test if fdatasync does not crash ======================="
11021
11022 dot_lustre_fid_permission_check() {
11023         local fid=$1
11024         local ffid=$MOUNT/.lustre/fid/$fid
11025         local test_dir=$2
11026
11027         echo "stat fid $fid"
11028         stat $ffid > /dev/null || error "stat $ffid failed."
11029         echo "touch fid $fid"
11030         touch $ffid || error "touch $ffid failed."
11031         echo "write to fid $fid"
11032         cat /etc/hosts > $ffid || error "write $ffid failed."
11033         echo "read fid $fid"
11034         diff /etc/hosts $ffid || error "read $ffid failed."
11035         echo "append write to fid $fid"
11036         cat /etc/hosts >> $ffid || error "append write $ffid failed."
11037         echo "rename fid $fid"
11038         mv $ffid $test_dir/$tfile.1 &&
11039                 error "rename $ffid to $tfile.1 should fail."
11040         touch $test_dir/$tfile.1
11041         mv $test_dir/$tfile.1 $ffid &&
11042                 error "rename $tfile.1 to $ffid should fail."
11043         rm -f $test_dir/$tfile.1
11044         echo "truncate fid $fid"
11045         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
11046         if [ $MDSCOUNT -lt 2 ]; then #FIXME when cross-MDT hard link is working
11047                 echo "link fid $fid"
11048                 ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
11049         fi
11050         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
11051                 echo "setfacl fid $fid"
11052                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
11053                 echo "getfacl fid $fid"
11054                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
11055         fi
11056         echo "unlink fid $fid"
11057         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
11058         echo "mknod fid $fid"
11059         mknod $ffid c 1 3 && error "mknod $ffid should fail."
11060
11061         fid=[0xf00000400:0x1:0x0]
11062         ffid=$MOUNT/.lustre/fid/$fid
11063
11064         echo "stat non-exist fid $fid"
11065         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
11066         echo "write to non-exist fid $fid"
11067         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
11068         echo "link new fid $fid"
11069         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
11070
11071         mkdir -p $test_dir/$tdir
11072         touch $test_dir/$tdir/$tfile
11073         fid=$($LFS path2fid $test_dir/$tdir)
11074         rc=$?
11075         [ $rc -ne 0 ] &&
11076                 error "error: could not get fid for $test_dir/$dir/$tfile."
11077
11078         ffid=$MOUNT/.lustre/fid/$fid
11079
11080         echo "ls $fid"
11081         ls $ffid > /dev/null || error "ls $ffid failed."
11082         echo "touch $fid/$tfile.1"
11083         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
11084
11085         echo "touch $MOUNT/.lustre/fid/$tfile"
11086         touch $MOUNT/.lustre/fid/$tfile && \
11087                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
11088
11089         echo "setxattr to $MOUNT/.lustre/fid"
11090         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
11091
11092         echo "listxattr for $MOUNT/.lustre/fid"
11093         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
11094
11095         echo "delxattr from $MOUNT/.lustre/fid"
11096         setfattr -x trusted.name1 $MOUNT/.lustre/fid
11097
11098         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
11099         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
11100                 error "touch invalid fid should fail."
11101
11102         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
11103         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
11104                 error "touch non-normal fid should fail."
11105
11106         echo "rename $tdir to $MOUNT/.lustre/fid"
11107         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
11108                 error "rename to $MOUNT/.lustre/fid should fail."
11109
11110         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
11111         then            # LU-3547
11112                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
11113                 local new_obf_mode=777
11114
11115                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
11116                 chmod $new_obf_mode $DIR/.lustre/fid ||
11117                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
11118
11119                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
11120                 [ $obf_mode -eq $new_obf_mode ] ||
11121                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
11122
11123                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
11124                 chmod $old_obf_mode $DIR/.lustre/fid ||
11125                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
11126         fi
11127
11128         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
11129         fid=$($LFS path2fid $test_dir/$tfile-2)
11130
11131         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.50) ]
11132         then # LU-5424
11133                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
11134                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
11135                         error "create lov data thru .lustre failed"
11136         fi
11137         echo "cp /etc/passwd $test_dir/$tfile-2"
11138         cp /etc/passwd $test_dir/$tfile-2 ||
11139                 error "copy to $test_dir/$tfile-2 failed."
11140         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
11141         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
11142                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
11143
11144         rm -rf $test_dir/tfile.lnk
11145         rm -rf $test_dir/$tfile-2
11146 }
11147
11148 test_154A() {
11149         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
11150                 skip "Need MDS version at least 2.4.1" && return
11151
11152         local tf=$DIR/$tfile
11153         touch $tf
11154
11155         local fid=$($LFS path2fid $tf)
11156         [ -z "$fid" ] && error "path2fid unable to get $tf FID"
11157
11158         # check that we get the same pathname back
11159         local found=$($LFS fid2path $MOUNT "$fid")
11160         [ -z "$found" ] && error "fid2path unable to get '$fid' path"
11161         [ "$found" == "$tf" ] ||
11162                 error "fid2path($fid=path2fid($tf)) = $found != $tf"
11163 }
11164 run_test 154A "lfs path2fid and fid2path basic checks"
11165
11166 test_154B() {
11167         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
11168                 skip "Need MDS version at least 2.4.1" && return
11169
11170         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
11171         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
11172         local linkea=$($LL_DECODE_LINKEA $DIR/$tdir/$tfile | grep 'pfid')
11173         [ -z "$linkea" ] && error "decode linkea $DIR/$tdir/$tfile failed"
11174
11175         local name=$(echo $linkea | awk '/pfid/ {print $5}' | sed -e "s/'//g")
11176         local PFID=$(echo $linkea | awk '/pfid/ {print $3}' | sed -e "s/,//g")
11177
11178         # check that we get the same pathname
11179         echo "PFID: $PFID, name: $name"
11180         local FOUND=$($LFS fid2path $MOUNT "$PFID")
11181         [ -z "$FOUND" ] && error "fid2path unable to get $PFID path"
11182         [ "$FOUND/$name" != "$DIR/$tdir/$tfile" ] &&
11183                 error "ll_decode_linkea has $FOUND/$name != $DIR/$tdir/$tfile"
11184
11185         rm -rf $DIR/$tdir || error "Can not delete directory $DIR/$tdir"
11186 }
11187 run_test 154B "verify the ll_decode_linkea tool"
11188
11189 test_154a() {
11190         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11191         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
11192                 { skip "Need MDS version at least 2.2.51"; return 0; }
11193         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
11194         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
11195
11196         cp /etc/hosts $DIR/$tfile
11197
11198         fid=$($LFS path2fid $DIR/$tfile)
11199         rc=$?
11200         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
11201
11202         dot_lustre_fid_permission_check "$fid" $DIR ||
11203                 error "dot lustre permission check $fid failed"
11204
11205         ls -a $MOUNT | grep "\.lustre" && error ".lustre should not be listed"
11206
11207         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
11208
11209         touch $MOUNT/.lustre/file &&
11210                 error "creation is not allowed under .lustre"
11211
11212         mkdir $MOUNT/.lustre/dir &&
11213                 error "mkdir is not allowed under .lustre"
11214
11215         rm -rf $DIR/$tfile
11216 }
11217 run_test 154a "Open-by-FID"
11218
11219 test_154b() {
11220         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11221         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
11222                 { skip "Need MDS version at least 2.2.51"; return 0; }
11223         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
11224
11225         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11226
11227         local remote_dir=$DIR/$tdir/remote_dir
11228         local MDTIDX=1
11229         local rc=0
11230
11231         mkdir -p $DIR/$tdir
11232         $LFS mkdir -i $MDTIDX $remote_dir ||
11233                 error "create remote directory failed"
11234
11235         cp /etc/hosts $remote_dir/$tfile
11236
11237         fid=$($LFS path2fid $remote_dir/$tfile)
11238         rc=$?
11239         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
11240
11241         dot_lustre_fid_permission_check "$fid" $remote_dir ||
11242                 error "dot lustre permission check $fid failed"
11243         rm -rf $DIR/$tdir
11244 }
11245 run_test 154b "Open-by-FID for remote directory"
11246
11247 test_154c() {
11248         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
11249                 skip "Need MDS version at least 2.4.1" && return
11250
11251         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
11252         local FID1=$($LFS path2fid $DIR/$tfile.1)
11253         local FID2=$($LFS path2fid $DIR/$tfile.2)
11254         local FID3=$($LFS path2fid $DIR/$tfile.3)
11255
11256         local N=1
11257         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
11258                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
11259                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
11260                 local want=FID$N
11261                 [ "$FID" = "${!want}" ] ||
11262                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
11263                 N=$((N + 1))
11264         done
11265
11266         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
11267         do
11268                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
11269                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
11270                 N=$((N + 1))
11271         done
11272 }
11273 run_test 154c "lfs path2fid and fid2path multiple arguments"
11274
11275 test_154d() {
11276         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11277         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.53) ]] &&
11278                 skip "Need MDS version at least 2.5.53" && return
11279
11280         if remote_mds; then
11281                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
11282         else
11283                 nid="0@lo"
11284         fi
11285         local proc_ofile="mdt.*.exports.'$nid'.open_files"
11286         local fd
11287         local cmd
11288
11289         rm -f $DIR/$tfile
11290         touch $DIR/$tfile
11291
11292         local fid=$($LFS path2fid $DIR/$tfile)
11293         # Open the file
11294         fd=$(free_fd)
11295         cmd="exec $fd<$DIR/$tfile"
11296         eval $cmd
11297         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
11298         echo "$fid_list" | grep "$fid"
11299         rc=$?
11300
11301         cmd="exec $fd>/dev/null"
11302         eval $cmd
11303         if [ $rc -ne 0 ]; then
11304                 error "FID $fid not found in open files list $fid_list"
11305         fi
11306 }
11307 run_test 154d "Verify open file fid"
11308
11309 test_154e()
11310 {
11311         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.50) ]] &&
11312                 skip "Need MDS version at least 2.6.50" && return
11313
11314         if ls -a $MOUNT | grep -q '^\.lustre$'; then
11315                 error ".lustre returned by readdir"
11316         fi
11317 }
11318 run_test 154e ".lustre is not returned by readdir"
11319
11320 test_154f() {
11321         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
11322         # create parent directory on a single MDT to avoid cross-MDT hardlinks
11323         test_mkdir -p -c1 $DIR/$tdir/d
11324         # test dirs inherit from its stripe
11325         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
11326         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
11327         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
11328         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
11329         touch $DIR/f
11330
11331         # get fid of parents
11332         local FID0=$($LFS path2fid $DIR/$tdir/d)
11333         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
11334         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
11335         local FID3=$($LFS path2fid $DIR)
11336
11337         # check that path2fid --parents returns expected <parent_fid>/name
11338         # 1) test for a directory (single parent)
11339         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
11340         [ "$parent" == "$FID0/foo1" ] ||
11341                 error "expected parent: $FID0/foo1, got: $parent"
11342
11343         # 2) test for a file with nlink > 1 (multiple parents)
11344         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
11345         echo "$parent" | grep -F "$FID1/$tfile" ||
11346                 error "$FID1/$tfile not returned in parent list"
11347         echo "$parent" | grep -F "$FID2/link" ||
11348                 error "$FID2/link not returned in parent list"
11349
11350         # 3) get parent by fid
11351         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
11352         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11353         echo "$parent" | grep -F "$FID1/$tfile" ||
11354                 error "$FID1/$tfile not returned in parent list (by fid)"
11355         echo "$parent" | grep -F "$FID2/link" ||
11356                 error "$FID2/link not returned in parent list (by fid)"
11357
11358         # 4) test for entry in root directory
11359         parent=$($LFS path2fid --parents $DIR/f)
11360         echo "$parent" | grep -F "$FID3/f" ||
11361                 error "$FID3/f not returned in parent list"
11362
11363         # 5) test it on root directory
11364         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
11365                 error "$MOUNT should not have parents"
11366
11367         # enable xattr caching and check that linkea is correctly updated
11368         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
11369         save_lustre_params client "llite.*.xattr_cache" > $save
11370         lctl set_param llite.*.xattr_cache 1
11371
11372         # 6.1) linkea update on rename
11373         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
11374
11375         # get parents by fid
11376         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11377         # foo1 should no longer be returned in parent list
11378         echo "$parent" | grep -F "$FID1" &&
11379                 error "$FID1 should no longer be in parent list"
11380         # the new path should appear
11381         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
11382                 error "$FID2/$tfile.moved is not in parent list"
11383
11384         # 6.2) linkea update on unlink
11385         rm -f $DIR/$tdir/d/foo2/link
11386         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11387         # foo2/link should no longer be returned in parent list
11388         echo "$parent" | grep -F "$FID2/link" &&
11389                 error "$FID2/link should no longer be in parent list"
11390         true
11391
11392         rm -f $DIR/f
11393         restore_lustre_params < $save
11394         rm -f $save
11395 }
11396 run_test 154f "get parent fids by reading link ea"
11397
11398 test_154g()
11399 {
11400         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.92) && \
11401            $(lustre_version_code client) -gt $(version_code 2.6.99) ]] ||
11402                 { skip "Need MDS version at least 2.6.92"; return 0; }
11403         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
11404
11405         mkdir -p $DIR/$tdir
11406         llapi_fid_test -d $DIR/$tdir
11407 }
11408 run_test 154g "various llapi FID tests"
11409
11410 test_155_small_load() {
11411     local temp=$TMP/$tfile
11412     local file=$DIR/$tfile
11413
11414     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
11415         error "dd of=$temp bs=6096 count=1 failed"
11416     cp $temp $file
11417     cancel_lru_locks $OSC
11418     cmp $temp $file || error "$temp $file differ"
11419
11420     $TRUNCATE $temp 6000
11421     $TRUNCATE $file 6000
11422     cmp $temp $file || error "$temp $file differ (truncate1)"
11423
11424     echo "12345" >>$temp
11425     echo "12345" >>$file
11426     cmp $temp $file || error "$temp $file differ (append1)"
11427
11428     echo "12345" >>$temp
11429     echo "12345" >>$file
11430     cmp $temp $file || error "$temp $file differ (append2)"
11431
11432     rm -f $temp $file
11433     true
11434 }
11435
11436 test_155_big_load() {
11437     remote_ost_nodsh && skip "remote OST with nodsh" && return
11438     local temp=$TMP/$tfile
11439     local file=$DIR/$tfile
11440
11441     free_min_max
11442     local cache_size=$(do_facet ost$((MAXI+1)) \
11443         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
11444     local large_file_size=$((cache_size * 2))
11445
11446     echo "OSS cache size: $cache_size KB"
11447     echo "Large file size: $large_file_size KB"
11448
11449     [ $MAXV -le $large_file_size ] && \
11450         skip_env "max available OST size needs > $large_file_size KB" && \
11451         return 0
11452
11453     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
11454
11455     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
11456         error "dd of=$temp bs=$large_file_size count=1k failed"
11457     cp $temp $file
11458     ls -lh $temp $file
11459     cancel_lru_locks osc
11460     cmp $temp $file || error "$temp $file differ"
11461
11462     rm -f $temp $file
11463     true
11464 }
11465
11466 save_writethrough() {
11467         local facets=$(get_facets OST)
11468
11469         save_lustre_params $facets "obdfilter.*.writethrough_cache_enable" > $1
11470         save_lustre_params $facets "osd-*.*.writethrough_cache_enable" >> $1
11471 }
11472
11473 test_155a() {
11474         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11475         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11476         save_writethrough $p
11477
11478         set_cache read on
11479         set_cache writethrough on
11480         test_155_small_load
11481         restore_lustre_params < $p
11482         rm -f $p
11483 }
11484 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
11485
11486 test_155b() {
11487         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11488         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11489         save_writethrough $p
11490
11491         set_cache read on
11492         set_cache writethrough off
11493         test_155_small_load
11494         restore_lustre_params < $p
11495         rm -f $p
11496 }
11497 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
11498
11499 test_155c() {
11500         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11501         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11502         save_writethrough $p
11503
11504         set_cache read off
11505         set_cache writethrough on
11506         test_155_small_load
11507         restore_lustre_params < $p
11508         rm -f $p
11509 }
11510 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
11511
11512 test_155d() {
11513         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11514         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11515         save_writethrough $p
11516
11517         set_cache read off
11518         set_cache writethrough off
11519         test_155_small_load
11520         restore_lustre_params < $p
11521         rm -f $p
11522 }
11523 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
11524
11525 test_155e() {
11526         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11527         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11528         save_writethrough $p
11529
11530         set_cache read on
11531         set_cache writethrough on
11532         test_155_big_load
11533         restore_lustre_params < $p
11534         rm -f $p
11535 }
11536 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
11537
11538 test_155f() {
11539         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11540         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11541         save_writethrough $p
11542
11543         set_cache read on
11544         set_cache writethrough off
11545         test_155_big_load
11546         restore_lustre_params < $p
11547         rm -f $p
11548 }
11549 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
11550
11551 test_155g() {
11552         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11553         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11554         save_writethrough $p
11555
11556         set_cache read off
11557         set_cache writethrough on
11558         test_155_big_load
11559         restore_lustre_params < $p
11560         rm -f $p
11561 }
11562 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
11563
11564 test_155h() {
11565         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11566         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11567         save_writethrough $p
11568
11569         set_cache read off
11570         set_cache writethrough off
11571         test_155_big_load
11572         restore_lustre_params < $p
11573         rm -f $p
11574 }
11575 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
11576
11577 test_156() {
11578         remote_ost_nodsh && skip "remote OST with nodsh" && return
11579         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11580         local CPAGES=3
11581         local BEFORE
11582         local AFTER
11583         local file="$DIR/$tfile"
11584         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11585
11586         [ "$(facet_fstype ost1)" = "zfs" -a \
11587            $(lustre_version_code ost1 -lt $(version_code 2.6.93)) ] &&
11588                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS" &&
11589                 return
11590
11591         save_writethrough $p
11592         roc_hit_init
11593
11594         log "Turn on read and write cache"
11595         set_cache read on
11596         set_cache writethrough on
11597
11598         log "Write data and read it back."
11599         log "Read should be satisfied from the cache."
11600         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
11601         BEFORE=$(roc_hit)
11602         cancel_lru_locks osc
11603         cat $file >/dev/null
11604         AFTER=$(roc_hit)
11605         if ! let "AFTER - BEFORE == CPAGES"; then
11606                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11607         else
11608                 log "cache hits:: before: $BEFORE, after: $AFTER"
11609         fi
11610
11611         log "Read again; it should be satisfied from the cache."
11612         BEFORE=$AFTER
11613         cancel_lru_locks osc
11614         cat $file >/dev/null
11615         AFTER=$(roc_hit)
11616         if ! let "AFTER - BEFORE == CPAGES"; then
11617                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11618         else
11619                 log "cache hits:: before: $BEFORE, after: $AFTER"
11620         fi
11621
11622         log "Turn off the read cache and turn on the write cache"
11623         set_cache read off
11624         set_cache writethrough on
11625
11626         log "Read again; it should be satisfied from the cache."
11627         BEFORE=$(roc_hit)
11628         cancel_lru_locks osc
11629         cat $file >/dev/null
11630         AFTER=$(roc_hit)
11631         if ! let "AFTER - BEFORE == CPAGES"; then
11632                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11633         else
11634                 log "cache hits:: before: $BEFORE, after: $AFTER"
11635         fi
11636
11637         log "Read again; it should not be satisfied from the cache."
11638         BEFORE=$AFTER
11639         cancel_lru_locks osc
11640         cat $file >/dev/null
11641         AFTER=$(roc_hit)
11642         if ! let "AFTER - BEFORE == 0"; then
11643                 error "IN CACHE: before: $BEFORE, after: $AFTER"
11644         else
11645                 log "cache hits:: before: $BEFORE, after: $AFTER"
11646         fi
11647
11648         log "Write data and read it back."
11649         log "Read should be satisfied from the cache."
11650         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
11651         BEFORE=$(roc_hit)
11652         cancel_lru_locks osc
11653         cat $file >/dev/null
11654         AFTER=$(roc_hit)
11655         if ! let "AFTER - BEFORE == CPAGES"; then
11656                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11657         else
11658                 log "cache hits:: before: $BEFORE, after: $AFTER"
11659         fi
11660
11661         log "Read again; it should not be satisfied from the cache."
11662         BEFORE=$AFTER
11663         cancel_lru_locks osc
11664         cat $file >/dev/null
11665         AFTER=$(roc_hit)
11666         if ! let "AFTER - BEFORE == 0"; then
11667                 error "IN CACHE: before: $BEFORE, after: $AFTER"
11668         else
11669                 log "cache hits:: before: $BEFORE, after: $AFTER"
11670         fi
11671
11672         log "Turn off read and write cache"
11673         set_cache read off
11674         set_cache writethrough off
11675
11676         log "Write data and read it back"
11677         log "It should not be satisfied from the cache."
11678         rm -f $file
11679         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
11680         cancel_lru_locks osc
11681         BEFORE=$(roc_hit)
11682         cat $file >/dev/null
11683         AFTER=$(roc_hit)
11684         if ! let "AFTER - BEFORE == 0"; then
11685                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
11686         else
11687                 log "cache hits:: before: $BEFORE, after: $AFTER"
11688         fi
11689
11690         log "Turn on the read cache and turn off the write cache"
11691         set_cache read on
11692         set_cache writethrough off
11693
11694         log "Write data and read it back"
11695         log "It should not be satisfied from the cache."
11696         rm -f $file
11697         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
11698         BEFORE=$(roc_hit)
11699         cancel_lru_locks osc
11700         cat $file >/dev/null
11701         AFTER=$(roc_hit)
11702         if ! let "AFTER - BEFORE == 0"; then
11703                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
11704         else
11705                 log "cache hits:: before: $BEFORE, after: $AFTER"
11706         fi
11707
11708         log "Read again; it should be satisfied from the cache."
11709         BEFORE=$(roc_hit)
11710         cancel_lru_locks osc
11711         cat $file >/dev/null
11712         AFTER=$(roc_hit)
11713         if ! let "AFTER - BEFORE == CPAGES"; then
11714                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11715         else
11716                 log "cache hits:: before: $BEFORE, after: $AFTER"
11717         fi
11718
11719         restore_lustre_params < $p
11720         rm -f $p $file
11721 }
11722 run_test 156 "Verification of tunables"
11723
11724 #Changelogs
11725 cleanup_changelog () {
11726         trap 0
11727         echo "Deregistering changelog client $CL_USER"
11728         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $CL_USER
11729 }
11730
11731 err17935 () {
11732         if [[ $MDSCOUNT -gt 1 ]]; then
11733                 error_ignore bz17935 $*
11734         else
11735                 error $*
11736         fi
11737 }
11738
11739 changelog_chmask()
11740 {
11741         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
11742
11743         MASK=$(do_facet $SINGLEMDS $LCTL get_param $CL_MASK_PARAM| grep -c "$1")
11744
11745         if [ $MASK -eq 1 ]; then
11746                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="-$1"
11747         else
11748                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="+$1"
11749         fi
11750 }
11751
11752 changelog_extract_field() {
11753         local mdt=$1
11754         local cltype=$2
11755         local file=$3
11756         local identifier=$4
11757
11758         $LFS changelog $mdt | gawk "/$cltype.*$file$/ {
11759                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
11760                 tail -1
11761 }
11762
11763 test_160a() {
11764         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11765         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11766         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
11767                 { skip "Need MDS version at least 2.2.0"; return; }
11768
11769         local CL_USERS="mdd.$MDT0.changelog_users"
11770         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
11771         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11772                 changelog_register -n)
11773         echo "Registered as changelog user $CL_USER"
11774         trap cleanup_changelog EXIT
11775         $GET_CL_USERS | grep -q $CL_USER ||
11776                 error "User $CL_USER not found in changelog_users"
11777
11778         # change something
11779         test_mkdir -p $DIR/$tdir/pics/2008/zachy
11780         touch $DIR/$tdir/pics/2008/zachy/timestamp
11781         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
11782         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
11783         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
11784         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
11785         rm $DIR/$tdir/pics/desktop.jpg
11786
11787         $LFS changelog $MDT0 | tail -5
11788
11789         echo "verifying changelog mask"
11790         changelog_chmask "MKDIR"
11791         changelog_chmask "CLOSE"
11792
11793         test_mkdir -p $DIR/$tdir/pics/zach/sofia
11794         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
11795
11796         changelog_chmask "MKDIR"
11797         changelog_chmask "CLOSE"
11798
11799         test_mkdir -p $DIR/$tdir/pics/2008/sofia
11800         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
11801
11802         $LFS changelog $MDT0
11803         MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
11804         CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
11805         [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
11806         [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
11807
11808         # verify contents
11809         echo "verifying target fid"
11810         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "t=")
11811         fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
11812         [ "$fidc" == "$fidf" ] ||
11813                 err17935 "fid in changelog $fidc != file fid $fidf"
11814         echo "verifying parent fid"
11815         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "p=")
11816         fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
11817         [ "$fidc" == "$fidf" ] ||
11818                 err17935 "pfid in changelog $fidc != dir fid $fidf"
11819
11820         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
11821         $LFS changelog_clear $MDT0 $CL_USER $(($USER_REC1 + 5))
11822         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
11823         echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
11824         [ $USER_REC2 == $(($USER_REC1 + 5)) ] ||
11825                 err17935 "user index expected $(($USER_REC1 + 5)) is $USER_REC2"
11826
11827         MIN_REC=$($GET_CL_USERS |
11828                 awk 'min == "" || $2 < min {min = $2}; END {print min}')
11829         FIRST_REC=$($LFS changelog $MDT0 | head -n1 | awk '{print $1}')
11830         echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
11831         [ $FIRST_REC == $(($MIN_REC + 1)) ] ||
11832                 err17935 "first index should be $(($MIN_REC + 1)) is $FIRST_REC"
11833
11834         # LU-3446 changelog index reset on MDT restart
11835         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11836         CUR_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11837         $LFS changelog_clear $MDT0 $CL_USER 0
11838         stop $SINGLEMDS || error "Fail to stop MDT."
11839         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
11840         CUR_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11841         echo "verifying index survives MDT restart: $CUR_REC1 == $CUR_REC2"
11842         [ $CUR_REC1 == $CUR_REC2 ] ||
11843                 err17935 "current index should be $CUR_REC1 is $CUR_REC2"
11844
11845         echo "verifying user deregister"
11846         cleanup_changelog
11847         $GET_CL_USERS | grep -q $CL_USER &&
11848                 error "User $CL_USER still in changelog_users"
11849
11850         USERS=$(( $($GET_CL_USERS | wc -l) - 2 ))
11851         if [ $CL_USER -eq 0 ]; then
11852                 LAST_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11853                 touch $DIR/$tdir/chloe
11854                 LAST_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11855                 echo "verify changelogs are off: $LAST_REC1 == $LAST_REC2"
11856                 [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
11857         else
11858                 echo "$CL_USER other changelog users; can't verify off"
11859         fi
11860 }
11861 run_test 160a "changelog sanity"
11862
11863 test_160b() { # LU-3587
11864         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11865         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11866         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
11867                 { skip "Need MDS version at least 2.2.0"; return; }
11868
11869         local CL_USERS="mdd.$MDT0.changelog_users"
11870         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
11871         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11872                 changelog_register -n)
11873         echo "Registered as changelog user $CL_USER"
11874         trap cleanup_changelog EXIT
11875         $GET_CL_USERS | grep -q $CL_USER ||
11876                 error "User $CL_USER not found in changelog_users"
11877
11878         local LONGNAME1=$(str_repeat a 255)
11879         local LONGNAME2=$(str_repeat b 255)
11880
11881         cd $DIR
11882         echo "creating very long named file"
11883         touch $LONGNAME1 || error "create of $LONGNAME1 failed"
11884         echo "moving very long named file"
11885         mv $LONGNAME1 $LONGNAME2
11886
11887         $LFS changelog $MDT0 | grep RENME
11888         rm -f $LONGNAME2
11889         cleanup_changelog
11890 }
11891 run_test 160b "Verify that very long rename doesn't crash in changelog"
11892
11893 test_160c() {
11894         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11895
11896         local rc=0
11897         local server_version=$(lustre_version_code $SINGLEMDS)
11898
11899         [[ $server_version -gt $(version_code 2.5.57) ]] ||
11900                 [[ $server_version -gt $(version_code 2.5.1) &&
11901                    $server_version -lt $(version_code 2.5.50) ]] ||
11902                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
11903         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11904
11905         # Registration step
11906         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11907                 changelog_register -n)
11908         trap cleanup_changelog EXIT
11909
11910         rm -rf $DIR/$tdir
11911         mkdir -p $DIR/$tdir
11912         $MCREATE $DIR/$tdir/foo_160c
11913         changelog_chmask "TRUNC"
11914         $TRUNCATE $DIR/$tdir/foo_160c 200
11915         changelog_chmask "TRUNC"
11916         $TRUNCATE $DIR/$tdir/foo_160c 199
11917         $LFS changelog $MDT0
11918         TRUNCS=$($LFS changelog $MDT0 | tail -5 | grep -c "TRUNC")
11919         [ $TRUNCS -eq 1 ] || err17935 "TRUNC changelog mask count $TRUNCS != 1"
11920         $LFS changelog_clear $MDT0 $CL_USER 0
11921
11922         # Deregistration step
11923         cleanup_changelog
11924 }
11925 run_test 160c "verify that changelog log catch the truncate event"
11926
11927 test_160d() {
11928         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11929         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11930
11931         local server_version=$(lustre_version_code mds1)
11932         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
11933
11934         [[ $server_version -ge $(version_code 2.7.60) ]] ||
11935                 { skip "Need MDS version at least 2.7.60+"; return; }
11936         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11937
11938         # Registration step
11939         CL_USER=$(do_facet mds1 $LCTL --device $MDT0 \
11940                 changelog_register -n)
11941
11942         trap cleanup_changelog EXIT
11943         mkdir -p $DIR/$tdir/migrate_dir
11944         $LFS changelog_clear $MDT0 $CL_USER 0
11945
11946         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
11947         $LFS changelog $MDT0
11948         MIGRATES=$($LFS changelog $MDT0 | tail -5 | grep -c "MIGRT")
11949         $LFS changelog_clear $MDT0 $CL_USER 0
11950         [ $MIGRATES -eq 1 ] ||
11951                 error "MIGRATE changelog mask count $MIGRATES != 1"
11952
11953         # Deregistration step
11954         cleanup_changelog
11955 }
11956 run_test 160d "verify that changelog log catch the migrate event"
11957
11958 test_160e() {
11959         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11960
11961         # Create a user
11962         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11963                 changelog_register -n)
11964         echo "Registered as changelog user $CL_USER"
11965         trap cleanup_changelog EXIT
11966
11967         # Delete a future user (expect fail)
11968         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister cl77
11969         local rc=$?
11970
11971         if [ $rc -eq 0 ]; then
11972                 error "Deleted non-existant user cl77"
11973         elif [ $rc -ne 2 ]; then
11974                 error "changelog_deregister failed with $rc, " \
11975                         "expected 2 (ENOENT)"
11976         fi
11977
11978         # Clear to a bad index (1 billion should be safe)
11979         $LFS changelog_clear $MDT0 $CL_USER 1000000000
11980         rc=$?
11981
11982         if [ $rc -eq 0 ]; then
11983                 error "Successfully cleared to invalid CL index"
11984         elif [ $rc -ne 22 ]; then
11985                 error "changelog_clear failed with $rc, expected 22 (EINVAL)"
11986         fi
11987 }
11988 run_test 160e "changelog negative testing"
11989
11990 cleanup_160f() {
11991         trap 0
11992         do_facet $SINGLEMDS $LCTL set_param fail_loc=0 fail_val=0
11993         echo "Deregistering changelog client $CL_USER"
11994         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $CL_USER
11995         echo "Deregistering changelog client $CL_USER2"
11996         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $CL_USER2
11997         restore_lustre_params < $save_params
11998         rm -f $save_params
11999 }
12000
12001 test_160f() {
12002         # do_facet $SINGLEMDS $LCTL set_param mdd.$MDT0.changelog_gc=1
12003         # should be set by default
12004
12005         local CL_USERS="mdd.$MDT0.changelog_users"
12006         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
12007         local save_params="$TMP/sanity-$TESTNAME.parameters"
12008
12009         save_lustre_params $SINGLEMDS \
12010                 "mdd.$MDT0.changelog_max_idle_time" > $save_params
12011         save_lustre_params $SINGLEMDS \
12012                 "mdd.$MDT0.changelog_min_gc_interval" >> $save_params
12013         save_lustre_params $SINGLEMDS \
12014                 "mdd.$MDT0.changelog_min_free_cat_entries" >> $save_params
12015
12016         trap cleanup_160f EXIT
12017
12018         # Create a user
12019         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
12020                 changelog_register -n)
12021         echo "Registered as changelog user $CL_USER"
12022         CL_USER2=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
12023                 changelog_register -n)
12024         echo "Registered as changelog user $CL_USER2"
12025         $GET_CL_USERS | grep -q $CL_USER ||
12026                 error "User $CL_USER not found in changelog_users"
12027         $GET_CL_USERS | grep -q $CL_USER2 ||
12028                 error "User $CL_USER2 not found in changelog_users"
12029
12030         # generate some changelogs to accumulate
12031         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
12032         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
12033         touch $DIR/$tdir/${tfile}2 || error "touch $DIR/$tdir/${tfile}2 failed"
12034         rm -f $DIR/$tdir/$tfile || error "rm -f $tfile failed"
12035
12036         # check changelogs have been generated
12037         nbcl=$($LFS changelog $MDT0 | wc -l)
12038         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12039
12040         do_facet $SINGLEMDS $LCTL set_param \
12041                 mdd.$MDT0.changelog_max_idle_time=10
12042         do_facet $SINGLEMDS $LCTL set_param \
12043                 mdd.$MDT0.changelog_min_gc_interval=2
12044         do_facet $SINGLEMDS $LCTL set_param \
12045                 mdd.$MDT0.changelog_min_free_cat_entries=3
12046
12047         # simulate changelog catalog almost full
12048 #define OBD_FAIL_CAT_FREE_RECORDS                  0x1313
12049         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x1313
12050         do_facet $SINGLEMDS $LCTL set_param fail_val=3
12051
12052         sleep 6
12053         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
12054         $LFS changelog_clear $MDT0 $CL_USER $(($USER_REC1 + 2))
12055         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
12056         echo "verifying user clear: $(( $USER_REC1 + 2 )) == $USER_REC2"
12057         [ $USER_REC2 == $(($USER_REC1 + 2)) ] ||
12058                 error "user index expected $(($USER_REC1 + 2)) is $USER_REC2"
12059         sleep 5
12060
12061         # generate one more changelog to trigger fail_loc
12062         rm -rf $DIR/$tdir || error "rm -rf $tdir failed"
12063
12064         # ensure gc thread is done
12065         wait_update_facet $SINGLEMDS \
12066                           "ps -e -o comm= | grep chlg_gc_thread" "" 20
12067
12068         # check user still registered
12069         $GET_CL_USERS | grep -q $CL_USER ||
12070                 error "User $CL_USER not found in changelog_users"
12071         # check user2 unregistered
12072         $GET_CL_USERS | grep -q $CL_USER2 &&
12073                 error "User $CL_USER2 still found in changelog_users"
12074
12075         # check changelogs are present and starting at $USER_REC2 + 1
12076         FIRST_REC=$($LFS changelog $MDT0 | head -n1 | awk '{print $1}')
12077         echo "verifying min purge: $(( $USER_REC2 + 1 )) == $FIRST_REC"
12078         [ $FIRST_REC == $(($USER_REC2 + 1)) ] ||
12079                 error "first index should be $(($USER_REC2 + 1)) is $FIRST_REC"
12080
12081         cleanup_160f
12082 }
12083 run_test 160f "changelog garbage collect (timestamped users)"
12084
12085 test_160g() {
12086         # do_facet $SINGLEMDS $LCTL set_param mdd.$MDT0.changelog_gc=1
12087         # should be set by default
12088
12089         local CL_USERS="mdd.$MDT0.changelog_users"
12090         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
12091         local save_params="$TMP/sanity-$TESTNAME.parameters"
12092
12093         save_lustre_params $SINGLEMDS \
12094                 "mdd.$MDT0.changelog_max_idle_indexes" > $save_params
12095         save_lustre_params $SINGLEMDS \
12096                 "mdd.$MDT0.changelog_min_gc_interval" >> $save_params
12097         save_lustre_params $SINGLEMDS \
12098                 "mdd.$MDT0.changelog_min_free_cat_entries" >> $save_params
12099
12100         trap cleanup_160f EXIT
12101
12102 #define OBD_FAIL_TIME_IN_CHLOG_USER                 0x1314
12103         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x1314
12104
12105         # Create a user
12106         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
12107                 changelog_register -n)
12108         echo "Registered as changelog user $CL_USER"
12109         CL_USER2=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
12110                 changelog_register -n)
12111         echo "Registered as changelog user $CL_USER2"
12112         $GET_CL_USERS | grep -q $CL_USER ||
12113                 error "User $CL_USER not found in changelog_users"
12114         $GET_CL_USERS | grep -q $CL_USER2 ||
12115                 error "User $CL_USER2 not found in changelog_users"
12116
12117         # generate some changelogs to accumulate
12118         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
12119         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
12120         touch $DIR/$tdir/${tfile}2 || error "touch $DIR/$tdir/${tfile}2 failed"
12121         rm -f $DIR/$tdir/$tfile || error "rm -f $tfile failed"
12122
12123         # check changelogs have been generated
12124         nbcl=$($LFS changelog $MDT0 | wc -l)
12125         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12126
12127         do_facet $SINGLEMDS $LCTL set_param \
12128                 mdd.$MDT0.changelog_max_idle_indexes=$((nbcl - 1))
12129         do_facet $SINGLEMDS $LCTL set_param \
12130                 mdd.$MDT0.changelog_min_gc_interval=2
12131         do_facet $SINGLEMDS $LCTL set_param \
12132                 mdd.$MDT0.changelog_min_free_cat_entries=3
12133
12134         # simulate changelog catalog almost full
12135 #define OBD_FAIL_CAT_FREE_RECORDS                  0x1313
12136         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x1313
12137         do_facet $SINGLEMDS $LCTL set_param fail_val=3
12138
12139         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
12140         $LFS changelog_clear $MDT0 $CL_USER $(($USER_REC1 + 3))
12141         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
12142         echo "verifying user clear: $(( $USER_REC1 + 3 )) == $USER_REC2"
12143         [ $USER_REC2 == $(($USER_REC1 + 3)) ] ||
12144                 error "user index expected $(($USER_REC1 + 3)) is $USER_REC2"
12145
12146         # generate one more changelog to trigger fail_loc
12147         rm -rf $DIR/$tdir || error "rm -rf $tdir failed"
12148
12149         # ensure gc thread is done
12150         wait_update_facet $SINGLEMDS \
12151                           "ps -e -o comm= | grep chlg_gc_thread" "" 20
12152
12153         # check user still registered
12154         $GET_CL_USERS | grep -q $CL_USER ||
12155                 error "User $CL_USER not found in changelog_users"
12156         # check user2 unregistered
12157         $GET_CL_USERS | grep -q $CL_USER2 &&
12158                 error "User $CL_USER2 still found in changelog_users"
12159
12160         # check changelogs are present and starting at $USER_REC2 + 1
12161         FIRST_REC=$($LFS changelog $MDT0 | head -n1 | awk '{print $1}')
12162         echo "verifying min purge: $(( $USER_REC2 + 1 )) == $FIRST_REC"
12163         [ $FIRST_REC == $(($USER_REC2 + 1)) ] ||
12164                 error "first index should be $(($USER_REC2 + 1)) is $FIRST_REC"
12165
12166         cleanup_160f
12167 }
12168 run_test 160g "changelog garbage collect (old users)"
12169
12170 test_161a() {
12171         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12172         test_mkdir -c1 $DIR/$tdir
12173         cp /etc/hosts $DIR/$tdir/$tfile
12174         test_mkdir -c1 $DIR/$tdir/foo1
12175         test_mkdir -c1 $DIR/$tdir/foo2
12176         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
12177         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
12178         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
12179         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
12180         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
12181         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
12182                 $LFS fid2path $DIR $FID
12183                 err17935 "bad link ea"
12184         fi
12185     # middle
12186     rm $DIR/$tdir/foo2/zachary
12187     # last
12188     rm $DIR/$tdir/foo2/thor
12189     # first
12190     rm $DIR/$tdir/$tfile
12191     # rename
12192     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
12193     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
12194         then
12195         $LFS fid2path $DIR $FID
12196         err17935 "bad link rename"
12197     fi
12198     rm $DIR/$tdir/foo2/maggie
12199
12200         # overflow the EA
12201         local longname=filename_avg_len_is_thirty_two_
12202         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
12203                 error "failed to hardlink many files"
12204         links=$($LFS fid2path $DIR $FID | wc -l)
12205         echo -n "${links}/1000 links in link EA"
12206         [[ $links -gt 60 ]] ||
12207                 err17935 "expected at least 60 links in link EA"
12208         unlinkmany $DIR/$tdir/foo2/$longname 1000 ||
12209                 error "failed to unlink many hardlinks"
12210 }
12211 run_test 161a "link ea sanity"
12212
12213 test_161b() {
12214         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12215         [ $MDSCOUNT -lt 2 ] && skip "skipping remote directory test" && return
12216         local MDTIDX=1
12217         local remote_dir=$DIR/$tdir/remote_dir
12218
12219         mkdir -p $DIR/$tdir
12220         $LFS mkdir -i $MDTIDX $remote_dir ||
12221                 error "create remote directory failed"
12222
12223         cp /etc/hosts $remote_dir/$tfile
12224         mkdir -p $remote_dir/foo1
12225         mkdir -p $remote_dir/foo2
12226         ln $remote_dir/$tfile $remote_dir/foo1/sofia
12227         ln $remote_dir/$tfile $remote_dir/foo2/zachary
12228         ln $remote_dir/$tfile $remote_dir/foo1/luna
12229         ln $remote_dir/$tfile $remote_dir/foo2/thor
12230
12231         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
12232                      tr -d ']')
12233         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
12234                 $LFS fid2path $DIR $FID
12235                 err17935 "bad link ea"
12236         fi
12237         # middle
12238         rm $remote_dir/foo2/zachary
12239         # last
12240         rm $remote_dir/foo2/thor
12241         # first
12242         rm $remote_dir/$tfile
12243         # rename
12244         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
12245         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
12246         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
12247                 $LFS fid2path $DIR $FID
12248                 err17935 "bad link rename"
12249         fi
12250         rm $remote_dir/foo2/maggie
12251
12252         # overflow the EA
12253         local longname=filename_avg_len_is_thirty_two_
12254         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
12255                 error "failed to hardlink many files"
12256         links=$($LFS fid2path $DIR $FID | wc -l)
12257         echo -n "${links}/1000 links in link EA"
12258         [[ ${links} -gt 60 ]] ||
12259                 err17935 "expected at least 60 links in link EA"
12260         unlinkmany $remote_dir/foo2/$longname 1000 ||
12261         error "failed to unlink many hardlinks"
12262 }
12263 run_test 161b "link ea sanity under remote directory"
12264
12265 test_161c() {
12266         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12267         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12268         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
12269                 skip "Need MDS version at least 2.1.5" && return
12270
12271         # define CLF_RENAME_LAST 0x0001
12272         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
12273         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
12274                 changelog_register -n)
12275
12276         trap cleanup_changelog EXIT
12277         rm -rf $DIR/$tdir
12278         mkdir -p $DIR/$tdir
12279         touch $DIR/$tdir/foo_161c
12280         touch $DIR/$tdir/bar_161c
12281         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
12282         $LFS changelog $MDT0 | grep RENME
12283         local flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | \
12284                 cut -f5 -d' ')
12285         $LFS changelog_clear $MDT0 $CL_USER 0
12286         if [ x$flags != "x0x1" ]; then
12287                 error "flag $flags is not 0x1"
12288         fi
12289         echo "rename overwrite a target having nlink = 1," \
12290                 "changelog record has flags of $flags"
12291
12292         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
12293         touch $DIR/$tdir/foo_161c
12294         touch $DIR/$tdir/bar_161c
12295         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
12296         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
12297         $LFS changelog $MDT0 | grep RENME
12298         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
12299         $LFS changelog_clear $MDT0 $CL_USER 0
12300         if [ x$flags != "x0x0" ]; then
12301                 error "flag $flags is not 0x0"
12302         fi
12303         echo "rename overwrite a target having nlink > 1," \
12304                 "changelog record has flags of $flags"
12305
12306         # rename doesn't overwrite a target (changelog flag 0x0)
12307         touch $DIR/$tdir/foo_161c
12308         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
12309         $LFS changelog $MDT0 | grep RENME
12310         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
12311         $LFS changelog_clear $MDT0 $CL_USER 0
12312         if [ x$flags != "x0x0" ]; then
12313                 error "flag $flags is not 0x0"
12314         fi
12315         echo "rename doesn't overwrite a target," \
12316                 "changelog record has flags of $flags"
12317
12318         # define CLF_UNLINK_LAST 0x0001
12319         # unlink a file having nlink = 1 (changelog flag 0x1)
12320         rm -f $DIR/$tdir/foo2_161c
12321         $LFS changelog $MDT0 | grep UNLNK
12322         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
12323         $LFS changelog_clear $MDT0 $CL_USER 0
12324         if [ x$flags != "x0x1" ]; then
12325                 error "flag $flags is not 0x1"
12326         fi
12327         echo "unlink a file having nlink = 1," \
12328                 "changelog record has flags of $flags"
12329
12330         # unlink a file having nlink > 1 (changelog flag 0x0)
12331         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
12332         rm -f $DIR/$tdir/foobar_161c
12333         $LFS changelog $MDT0 | grep UNLNK
12334         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
12335         $LFS changelog_clear $MDT0 $CL_USER 0
12336         if [ x$flags != "x0x0" ]; then
12337                 error "flag $flags is not 0x0"
12338         fi
12339         echo "unlink a file having nlink > 1," \
12340                 "changelog record has flags of $flags"
12341         cleanup_changelog
12342 }
12343 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
12344
12345 test_161d() {
12346         local user
12347         local pid
12348         local fid
12349
12350         # cleanup previous run
12351         rm -rf $DIR/$tdir/$tfile
12352
12353         user=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
12354                 changelog_register -n)
12355         [[ $? -eq 0 ]] || error "changelog_register failed"
12356
12357         # work in a standalone dir to avoid locking on $DIR/$MOUNT to
12358         # interfer with $MOUNT/.lustre/fid/ access
12359         mkdir $DIR/$tdir
12360         [[ $? -eq 0 ]] || error "mkdir failed"
12361
12362         #define OBD_FAIL_LLITE_CREATE_NODE_PAUSE 0x140c | OBD_FAIL_ONCE
12363         $LCTL set_param fail_loc=0x8000140c
12364         # 5s pause
12365         $LCTL set_param fail_val=5
12366
12367         # create file
12368         echo foofoo > $DIR/$tdir/$tfile &
12369         pid=$!
12370
12371         # wait for create to be delayed
12372         sleep 2
12373
12374         ps -p $pid
12375         [[ $? -eq 0 ]] || error "create should be blocked"
12376
12377         local tempfile=$(mktemp)
12378         fid=$(changelog_extract_field $MDT0 "CREAT" "$tfile" "t=")
12379         cat $MOUNT/.lustre/fid/$fid 2>/dev/null >$tempfile || error "cat failed"
12380         # some delay may occur during ChangeLog publishing and file read just
12381         # above, that could allow file write to happen finally
12382         [[ -s $tempfile ]] && echo "file should be empty"
12383
12384         $LCTL set_param fail_loc=0
12385
12386         wait $pid
12387         [[ $? -eq 0 ]] || error "create failed"
12388
12389         $LFS changelog_clear $MDT0 $user 0
12390         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $user
12391 }
12392 run_test 161d "create with concurrent .lustre/fid access"
12393
12394 check_path() {
12395     local expected=$1
12396     shift
12397     local fid=$2
12398
12399     local path=$(${LFS} fid2path $*)
12400     # Remove the '//' indicating a remote directory
12401     path=$(echo $path | sed 's#//#/#g')
12402     RC=$?
12403
12404     if [ $RC -ne 0 ]; then
12405         err17935 "path looked up of $expected failed. Error $RC"
12406         return $RC
12407     elif [ "${path}" != "${expected}" ]; then
12408         err17935 "path looked up \"${path}\" instead of \"${expected}\""
12409         return 2
12410     fi
12411     echo "fid $fid resolves to path $path (expected $expected)"
12412 }
12413
12414 test_162a() { # was test_162
12415         # Make changes to filesystem
12416         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12417         test_mkdir -p -c1 $DIR/$tdir/d2
12418         touch $DIR/$tdir/d2/$tfile
12419         touch $DIR/$tdir/d2/x1
12420         touch $DIR/$tdir/d2/x2
12421         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
12422         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
12423         # regular file
12424         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
12425         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0 ||
12426                 error "check path $tdir/d2/$tfile failed"
12427
12428         # softlink
12429         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
12430         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
12431         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0 ||
12432                 error "check path $tdir/d2/p/q/r/slink failed"
12433
12434         # softlink to wrong file
12435         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
12436         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
12437         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0 ||
12438                 error "check path $tdir/d2/p/q/r/slink.wrong failed"
12439
12440         # hardlink
12441         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
12442         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
12443         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
12444         # fid2path dir/fsname should both work
12445         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1 ||
12446                 error "check path $tdir/d2/a/b/c/new_file failed"
12447         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0 ||
12448                 error "check path $DIR/$tdir/d2/p/q/r/hlink failed"
12449
12450         # hardlink count: check that there are 2 links
12451         # Doesnt work with CMD yet: 17935
12452         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
12453                 err17935 "expected 2 links"
12454
12455         # hardlink indexing: remove the first link
12456         rm $DIR/$tdir/d2/p/q/r/hlink
12457         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0 ||
12458                 error "check path $DIR/$tdir/d2/a/b/c/new_file failed"
12459
12460         return 0
12461 }
12462 run_test 162a "path lookup sanity"
12463
12464 test_162b() {
12465         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12466         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12467
12468         mkdir $DIR/$tdir
12469         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
12470                                 error "create striped dir failed"
12471
12472         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
12473                                         tail -n 1 | awk '{print $2}')
12474         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
12475
12476         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
12477         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
12478
12479         # regular file
12480         for ((i=0;i<5;i++)); do
12481                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
12482                         error "get fid for f$i failed"
12483                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0 ||
12484                         error "check path $tdir/striped_dir/f$i failed"
12485
12486                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
12487                         error "get fid for d$i failed"
12488                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0 ||
12489                         error "check path $tdir/striped_dir/d$i failed"
12490         done
12491
12492         return 0
12493 }
12494 run_test 162b "striped directory path lookup sanity"
12495
12496 # LU-4239: Verify fid2path works with paths 100 or more directories deep
12497 test_162c() {
12498         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.51) ]] &&
12499                 skip "Need MDS version at least 2.7.51" && return
12500         test_mkdir $DIR/$tdir.local
12501         test_mkdir $DIR/$tdir.remote
12502         local lpath=$tdir.local
12503         local rpath=$tdir.remote
12504
12505         for ((i = 0; i <= 101; i++)); do
12506                 lpath="$lpath/$i"
12507                 mkdir $DIR/$lpath
12508                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
12509                         error "get fid for local directory $DIR/$lpath failed"
12510                 check_path "$DIR/$lpath" $MOUNT $FID --link 0 ||
12511                         error "check path for local directory $DIR/$lpath failed"
12512
12513                 rpath="$rpath/$i"
12514                 test_mkdir $DIR/$rpath
12515                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
12516                         error "get fid for remote directory $DIR/$rpath failed"
12517                 check_path "$DIR/$rpath" $MOUNT $FID --link 0 ||
12518                         error "check path for remote directory $DIR/$rpath failed"
12519         done
12520
12521         return 0
12522 }
12523 run_test 162c "fid2path works with paths 100 or more directories deep"
12524
12525 test_169() {
12526         # do directio so as not to populate the page cache
12527         log "creating a 10 Mb file"
12528         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
12529         log "starting reads"
12530         dd if=$DIR/$tfile of=/dev/null bs=4096 &
12531         log "truncating the file"
12532         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
12533         log "killing dd"
12534         kill %+ || true # reads might have finished
12535         echo "wait until dd is finished"
12536         wait
12537         log "removing the temporary file"
12538         rm -rf $DIR/$tfile || error "tmp file removal failed"
12539 }
12540 run_test 169 "parallel read and truncate should not deadlock"
12541
12542 test_170() {
12543         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12544
12545         $LCTL clear     # bug 18514
12546         $LCTL debug_daemon start $TMP/${tfile}_log_good
12547         touch $DIR/$tfile
12548         $LCTL debug_daemon stop
12549         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
12550                 error "sed failed to read log_good"
12551
12552         $LCTL debug_daemon start $TMP/${tfile}_log_good
12553         rm -rf $DIR/$tfile
12554         $LCTL debug_daemon stop
12555
12556         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
12557                error "lctl df log_bad failed"
12558
12559         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
12560         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
12561
12562         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
12563         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
12564
12565         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
12566                 error "bad_line good_line1 good_line2 are empty"
12567
12568         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
12569         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
12570         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
12571
12572         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
12573         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
12574         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
12575
12576         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
12577                 error "bad_line_new good_line_new are empty"
12578
12579         local expected_good=$((good_line1 + good_line2*2))
12580
12581         rm -f $TMP/${tfile}*
12582         # LU-231, short malformed line may not be counted into bad lines
12583         if [ $bad_line -ne $bad_line_new ] &&
12584                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
12585                 error "expected $bad_line bad lines, but got $bad_line_new"
12586                 return 1
12587         fi
12588
12589         if [ $expected_good -ne $good_line_new ]; then
12590                 error "expected $expected_good good lines, but got $good_line_new"
12591                 return 2
12592         fi
12593         true
12594 }
12595 run_test 170 "test lctl df to handle corrupted log ====================="
12596
12597 test_171() { # bug20592
12598         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12599 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
12600         $LCTL set_param fail_loc=0x50e
12601         $LCTL set_param fail_val=3000
12602         multiop_bg_pause $DIR/$tfile O_s || true
12603         local MULTIPID=$!
12604         kill -USR1 $MULTIPID
12605         # cause log dump
12606         sleep 3
12607         wait $MULTIPID
12608         if dmesg | grep "recursive fault"; then
12609                 error "caught a recursive fault"
12610         fi
12611         $LCTL set_param fail_loc=0
12612         true
12613 }
12614 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
12615
12616 # it would be good to share it with obdfilter-survey/iokit-libecho code
12617 setup_obdecho_osc () {
12618         local rc=0
12619         local ost_nid=$1
12620         local obdfilter_name=$2
12621         echo "Creating new osc for $obdfilter_name on $ost_nid"
12622         # make sure we can find loopback nid
12623         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
12624
12625         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
12626                            ${obdfilter_name}_osc_UUID || rc=2; }
12627         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
12628                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
12629         return $rc
12630 }
12631
12632 cleanup_obdecho_osc () {
12633         local obdfilter_name=$1
12634         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
12635         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
12636         return 0
12637 }
12638
12639 obdecho_test() {
12640         local OBD=$1
12641         local node=$2
12642         local pages=${3:-64}
12643         local rc=0
12644         local id
12645
12646         local count=10
12647         local obd_size=$(get_obd_size $node $OBD)
12648         local page_size=$(get_page_size $node)
12649         if [[ -n "$obd_size" ]]; then
12650                 local new_count=$((obd_size / (pages * page_size / 1024)))
12651                 [[ $new_count -ge $count ]] || count=$new_count
12652         fi
12653
12654         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
12655         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
12656                            rc=2; }
12657         if [ $rc -eq 0 ]; then
12658             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
12659             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
12660         fi
12661         echo "New object id is $id"
12662         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
12663                            rc=4; }
12664         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
12665                            "test_brw $count w v $pages $id" || rc=4; }
12666         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
12667                            rc=4; }
12668         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
12669                                         "cleanup" || rc=5; }
12670         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
12671                                         "detach" || rc=6; }
12672         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
12673         return $rc
12674 }
12675
12676 test_180a() {
12677         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12678         remote_ost_nodsh && skip "remote OST with nodsh" && return
12679         local rc=0
12680         local rmmod_local=0
12681
12682         if ! module_loaded obdecho; then
12683             load_module obdecho/obdecho
12684             rmmod_local=1
12685         fi
12686
12687         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
12688         local host=$(lctl get_param -n osc.$osc.import |
12689                              awk '/current_connection:/ {print $2}' )
12690         local target=$(lctl get_param -n osc.$osc.import |
12691                              awk '/target:/ {print $2}' )
12692         target=${target%_UUID}
12693
12694         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
12695         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
12696         [[ -n $target ]] && cleanup_obdecho_osc $target
12697         [ $rmmod_local -eq 1 ] && rmmod obdecho
12698         return $rc
12699 }
12700 run_test 180a "test obdecho on osc"
12701
12702 test_180b() {
12703         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12704         remote_ost_nodsh && skip "remote OST with nodsh" && return
12705         local rc=0
12706         local rmmod_remote=0
12707
12708         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
12709                 rmmod_remote=true || error "failed to load module obdecho"
12710         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
12711         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
12712         $rmmod_remote && do_facet ost1 "rmmod obdecho"
12713         return $rc
12714 }
12715 run_test 180b "test obdecho directly on obdfilter"
12716
12717 test_180c() { # LU-2598
12718         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12719         remote_ost_nodsh && skip "remote OST with nodsh" && return
12720         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
12721                 skip "Need MDS version at least 2.4.0" && return
12722
12723         local rc=0
12724         local rmmod_remote=false
12725         local pages=16384 # 64MB bulk I/O RPC size
12726         local target
12727
12728         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
12729                 rmmod_remote=true || error "failed to load module obdecho"
12730
12731         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ { print $4 }' |
12732                 head -n1)
12733         if [ -n "$target" ]; then
12734                 obdecho_test "$target" ost1 "$pages" || rc=${PIPESTATUS[0]}
12735         else
12736                 echo "there is no obdfilter target on ost1"
12737                 rc=2
12738         fi
12739         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
12740         return $rc
12741 }
12742 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
12743
12744 test_181() { # bug 22177
12745         test_mkdir $DIR/$tdir
12746         # create enough files to index the directory
12747         createmany -o $DIR/$tdir/foobar 4000
12748         # print attributes for debug purpose
12749         lsattr -d .
12750         # open dir
12751         multiop_bg_pause $DIR/$tdir D_Sc || return 1
12752         MULTIPID=$!
12753         # remove the files & current working dir
12754         unlinkmany $DIR/$tdir/foobar 4000
12755         rmdir $DIR/$tdir
12756         kill -USR1 $MULTIPID
12757         wait $MULTIPID
12758         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
12759         return 0
12760 }
12761 run_test 181 "Test open-unlinked dir ========================"
12762
12763 test_182() {
12764         local fcount=1000
12765         local tcount=10
12766
12767         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
12768
12769         $LCTL set_param mdc.*.rpc_stats=clear
12770
12771         for (( i = 0; i < $tcount; i++ )) ; do
12772                 mkdir $DIR/$tdir/$i
12773         done
12774
12775         for (( i = 0; i < $tcount; i++ )) ; do
12776                 createmany -o $DIR/$tdir/$i/f- $fcount &
12777         done
12778         wait
12779
12780         for (( i = 0; i < $tcount; i++ )) ; do
12781                 unlinkmany $DIR/$tdir/$i/f- $fcount &
12782         done
12783         wait
12784
12785         $LCTL get_param mdc.*.rpc_stats
12786
12787         rm -rf $DIR/$tdir
12788 }
12789 run_test 182 "Test parallel modify metadata operations ================"
12790
12791 test_183() { # LU-2275
12792         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12793         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
12794                 skip "Need MDS version at least 2.3.56" && return
12795
12796         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12797         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
12798         echo aaa > $DIR/$tdir/$tfile
12799
12800 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
12801         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
12802
12803         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
12804         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
12805
12806         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
12807
12808         # Flush negative dentry cache
12809         touch $DIR/$tdir/$tfile
12810
12811         # We are not checking for any leaked references here, they'll
12812         # become evident next time we do cleanup with module unload.
12813         rm -rf $DIR/$tdir
12814 }
12815 run_test 183 "No crash or request leak in case of strange dispositions ========"
12816
12817 # test suite 184 is for LU-2016, LU-2017
12818 test_184a() {
12819         check_swap_layouts_support && return 0
12820
12821         dir0=$DIR/$tdir/$testnum
12822         test_mkdir -p -c1 $dir0
12823         ref1=/etc/passwd
12824         ref2=/etc/group
12825         file1=$dir0/f1
12826         file2=$dir0/f2
12827         $SETSTRIPE -c1 $file1
12828         cp $ref1 $file1
12829         $SETSTRIPE -c2 $file2
12830         cp $ref2 $file2
12831         gen1=$($GETSTRIPE -g $file1)
12832         gen2=$($GETSTRIPE -g $file2)
12833
12834         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
12835         gen=$($GETSTRIPE -g $file1)
12836         [[ $gen1 != $gen ]] ||
12837                 "Layout generation on $file1 does not change"
12838         gen=$($GETSTRIPE -g $file2)
12839         [[ $gen2 != $gen ]] ||
12840                 "Layout generation on $file2 does not change"
12841
12842         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
12843         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
12844
12845         lfsck_verify_pfid $file1 $file2 || error "PFID are not transferred"
12846 }
12847 run_test 184a "Basic layout swap"
12848
12849 test_184b() {
12850         check_swap_layouts_support && return 0
12851
12852         dir0=$DIR/$tdir/$testnum
12853         mkdir -p $dir0 || error "creating dir $dir0"
12854         file1=$dir0/f1
12855         file2=$dir0/f2
12856         file3=$dir0/f3
12857         dir1=$dir0/d1
12858         dir2=$dir0/d2
12859         mkdir $dir1 $dir2
12860         $SETSTRIPE -c1 $file1
12861         $SETSTRIPE -c2 $file2
12862         $SETSTRIPE -c1 $file3
12863         chown $RUNAS_ID $file3
12864         gen1=$($GETSTRIPE -g $file1)
12865         gen2=$($GETSTRIPE -g $file2)
12866
12867         $LFS swap_layouts $dir1 $dir2 &&
12868                 error "swap of directories layouts should fail"
12869         $LFS swap_layouts $dir1 $file1 &&
12870                 error "swap of directory and file layouts should fail"
12871         $RUNAS $LFS swap_layouts $file1 $file2 &&
12872                 error "swap of file we cannot write should fail"
12873         $LFS swap_layouts $file1 $file3 &&
12874                 error "swap of file with different owner should fail"
12875         /bin/true # to clear error code
12876 }
12877 run_test 184b "Forbidden layout swap (will generate errors)"
12878
12879 test_184c() {
12880         local cmpn_arg=$(cmp -n 2>&1 | grep "invalid option")
12881         [ -n "$cmpn_arg" ] && skip_env "cmp does not support -n" && return
12882         check_swap_layouts_support && return 0
12883
12884         local dir0=$DIR/$tdir/$testnum
12885         mkdir -p $dir0 || error "creating dir $dir0"
12886
12887         local ref1=$dir0/ref1
12888         local ref2=$dir0/ref2
12889         local file1=$dir0/file1
12890         local file2=$dir0/file2
12891         # create a file large enough for the concurrent test
12892         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
12893         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
12894         echo "ref file size: ref1($(stat -c %s $ref1))," \
12895              "ref2($(stat -c %s $ref2))"
12896
12897         cp $ref2 $file2
12898         dd if=$ref1 of=$file1 bs=16k &
12899         local DD_PID=$!
12900
12901         # Make sure dd starts to copy file
12902         while [ ! -f $file1 ]; do sleep 0.1; done
12903
12904         $LFS swap_layouts $file1 $file2
12905         local rc=$?
12906         wait $DD_PID
12907         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
12908         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
12909
12910         # how many bytes copied before swapping layout
12911         local copied=$(stat -c %s $file2)
12912         local remaining=$(stat -c %s $ref1)
12913         remaining=$((remaining - copied))
12914         echo "Copied $copied bytes before swapping layout..."
12915
12916         cmp -n $copied $file1 $ref2 | grep differ &&
12917                 error "Content mismatch [0, $copied) of ref2 and file1"
12918         cmp -n $copied $file2 $ref1 ||
12919                 error "Content mismatch [0, $copied) of ref1 and file2"
12920         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
12921                 error "Content mismatch [$copied, EOF) of ref1 and file1"
12922
12923         # clean up
12924         rm -f $ref1 $ref2 $file1 $file2
12925 }
12926 run_test 184c "Concurrent write and layout swap"
12927
12928 test_184d() {
12929         check_swap_layouts_support && return 0
12930         [ -z "$(which getfattr 2>/dev/null)" ] &&
12931                 skip "no getfattr command" && return 0
12932
12933         local file1=$DIR/$tdir/$tfile-1
12934         local file2=$DIR/$tdir/$tfile-2
12935         local file3=$DIR/$tdir/$tfile-3
12936         local lovea1
12937         local lovea2
12938
12939         mkdir -p $DIR/$tdir
12940         touch $file1 || error "create $file1 failed"
12941         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
12942                 error "create $file2 failed"
12943         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
12944                 error "create $file3 failed"
12945         lovea1=$(get_layout_param $file1)
12946
12947         $LFS swap_layouts $file2 $file3 ||
12948                 error "swap $file2 $file3 layouts failed"
12949         $LFS swap_layouts $file1 $file2 ||
12950                 error "swap $file1 $file2 layouts failed"
12951
12952         lovea2=$(get_layout_param $file2)
12953         echo "$lovea1"
12954         echo "$lovea2"
12955         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
12956
12957         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
12958         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
12959 }
12960 run_test 184d "allow stripeless layouts swap"
12961
12962 test_184e() {
12963         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.94) ]] ||
12964                 { skip "Need MDS version at least 2.6.94"; return 0; }
12965         check_swap_layouts_support && return 0
12966         [ -z "$(which getfattr 2>/dev/null)" ] &&
12967                 skip "no getfattr command" && return 0
12968
12969         local file1=$DIR/$tdir/$tfile-1
12970         local file2=$DIR/$tdir/$tfile-2
12971         local file3=$DIR/$tdir/$tfile-3
12972         local lovea
12973
12974         mkdir -p $DIR/$tdir
12975         touch $file1 || error "create $file1 failed"
12976         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
12977                 error "create $file2 failed"
12978         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
12979                 error "create $file3 failed"
12980
12981         $LFS swap_layouts $file1 $file2 ||
12982                 error "swap $file1 $file2 layouts failed"
12983
12984         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
12985         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
12986
12987         echo 123 > $file1 || error "Should be able to write into $file1"
12988
12989         $LFS swap_layouts $file1 $file3 ||
12990                 error "swap $file1 $file3 layouts failed"
12991
12992         echo 123 > $file1 || error "Should be able to write into $file1"
12993
12994         rm -rf $file1 $file2 $file3
12995 }
12996 run_test 184e "Recreate layout after stripeless layout swaps"
12997
12998 test_185() { # LU-2441
12999         # LU-3553 - no volatile file support in old servers
13000         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
13001                 { skip "Need MDS version at least 2.3.60"; return 0; }
13002
13003         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13004         touch $DIR/$tdir/spoo
13005         local mtime1=$(stat -c "%Y" $DIR/$tdir)
13006         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
13007                 error "cannot create/write a volatile file"
13008         [ "$FILESET" == "" ] &&
13009         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
13010                 error "FID is still valid after close"
13011
13012         multiop_bg_pause $DIR/$tdir vVw4096_c
13013         local multi_pid=$!
13014
13015         local OLD_IFS=$IFS
13016         IFS=":"
13017         local fidv=($fid)
13018         IFS=$OLD_IFS
13019         # assume that the next FID for this client is sequential, since stdout
13020         # is unfortunately eaten by multiop_bg_pause
13021         local n=$((${fidv[1]} + 1))
13022         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
13023         if [ "$FILESET" == "" ]; then
13024                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
13025                         error "FID is missing before close"
13026         fi
13027         kill -USR1 $multi_pid
13028         # 1 second delay, so if mtime change we will see it
13029         sleep 1
13030         local mtime2=$(stat -c "%Y" $DIR/$tdir)
13031         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
13032 }
13033 run_test 185 "Volatile file support"
13034
13035 test_187a() {
13036         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13037         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
13038                 skip "Need MDS version at least 2.3.0" && return
13039
13040         local dir0=$DIR/$tdir/$testnum
13041         mkdir -p $dir0 || error "creating dir $dir0"
13042
13043         local file=$dir0/file1
13044         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
13045         local dv1=$($LFS data_version $file)
13046         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
13047         local dv2=$($LFS data_version $file)
13048         [[ $dv1 != $dv2 ]] ||
13049                 error "data version did not change on write $dv1 == $dv2"
13050
13051         # clean up
13052         rm -f $file1
13053 }
13054 run_test 187a "Test data version change"
13055
13056 test_187b() {
13057         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13058         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
13059                 skip "Need MDS version at least 2.3.0" && return
13060
13061         local dir0=$DIR/$tdir/$testnum
13062         mkdir -p $dir0 || error "creating dir $dir0"
13063
13064         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
13065         [[ ${DV[0]} != ${DV[1]} ]] ||
13066                 error "data version did not change on write"\
13067                       " ${DV[0]} == ${DV[1]}"
13068
13069         # clean up
13070         rm -f $file1
13071 }
13072 run_test 187b "Test data version change on volatile file"
13073
13074 test_200() {
13075         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13076         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
13077         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
13078
13079         local POOL=${POOL:-cea1}
13080         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
13081         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
13082         # Pool OST targets
13083         local first_ost=0
13084         local last_ost=$(($OSTCOUNT - 1))
13085         local ost_step=2
13086         local ost_list=$(seq $first_ost $ost_step $last_ost)
13087         local ost_range="$first_ost $last_ost $ost_step"
13088         local test_path=$POOL_ROOT/$POOL_DIR_NAME
13089         local file_dir=$POOL_ROOT/file_tst
13090         local subdir=$test_path/subdir
13091         local rc=0
13092
13093         if ! combined_mgs_mds ; then
13094                 mount_mgs_client
13095         fi
13096
13097         while : ; do
13098                 # former test_200a test_200b
13099                 pool_add $POOL                          || { rc=$? ; break; }
13100                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
13101                 # former test_200c test_200d
13102                 mkdir -p $test_path
13103                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
13104                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
13105                 mkdir -p $subdir
13106                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
13107                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
13108                                                         || { rc=$? ; break; }
13109                 # former test_200e test_200f
13110                 local files=$((OSTCOUNT*3))
13111                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
13112                                                         || { rc=$? ; break; }
13113                 pool_create_files $POOL $file_dir $files "$ost_list" \
13114                                                         || { rc=$? ; break; }
13115                 # former test_200g test_200h
13116                 pool_lfs_df $POOL                       || { rc=$? ; break; }
13117                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
13118
13119                 # former test_201a test_201b test_201c
13120                 pool_remove_first_target $POOL          || { rc=$? ; break; }
13121
13122                 local f=$test_path/$tfile
13123                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
13124                 pool_remove $POOL $f                    || { rc=$? ; break; }
13125                 break
13126         done
13127
13128         destroy_test_pools
13129
13130         if ! combined_mgs_mds ; then
13131                 umount_mgs_client
13132         fi
13133         return $rc
13134 }
13135 run_test 200 "OST pools"
13136
13137 # usage: default_attr <count | size | offset>
13138 default_attr() {
13139         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
13140 }
13141
13142 # usage: check_default_stripe_attr
13143 check_default_stripe_attr() {
13144         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
13145         case $1 in
13146         --stripe-count|-c)
13147                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
13148         --stripe-size|-S)
13149                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
13150         --stripe-index|-i)
13151                 EXPECTED=-1;;
13152         *)
13153                 error "unknown getstripe attr '$1'"
13154         esac
13155
13156         [ $ACTUAL == $EXPECTED ] ||
13157                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
13158 }
13159
13160 test_204a() {
13161         test_mkdir $DIR/$tdir
13162         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
13163
13164         check_default_stripe_attr --stripe-count
13165         check_default_stripe_attr --stripe-size
13166         check_default_stripe_attr --stripe-index
13167 }
13168 run_test 204a "Print default stripe attributes"
13169
13170 test_204b() {
13171         test_mkdir $DIR/$tdir
13172         $SETSTRIPE --stripe-count 1 $DIR/$tdir
13173
13174         check_default_stripe_attr --stripe-size
13175         check_default_stripe_attr --stripe-index
13176 }
13177 run_test 204b "Print default stripe size and offset"
13178
13179 test_204c() {
13180         test_mkdir $DIR/$tdir
13181         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
13182
13183         check_default_stripe_attr --stripe-count
13184         check_default_stripe_attr --stripe-index
13185 }
13186 run_test 204c "Print default stripe count and offset"
13187
13188 test_204d() {
13189         test_mkdir $DIR/$tdir
13190         $SETSTRIPE --stripe-index 0 $DIR/$tdir
13191
13192         check_default_stripe_attr --stripe-count
13193         check_default_stripe_attr --stripe-size
13194 }
13195 run_test 204d "Print default stripe count and size"
13196
13197 test_204e() {
13198         test_mkdir $DIR/$tdir
13199         $SETSTRIPE -d $DIR/$tdir
13200
13201         check_default_stripe_attr --stripe-count --raw
13202         check_default_stripe_attr --stripe-size --raw
13203         check_default_stripe_attr --stripe-index --raw
13204 }
13205 run_test 204e "Print raw stripe attributes"
13206
13207 test_204f() {
13208         test_mkdir $DIR/$tdir
13209         $SETSTRIPE --stripe-count 1 $DIR/$tdir
13210
13211         check_default_stripe_attr --stripe-size --raw
13212         check_default_stripe_attr --stripe-index --raw
13213 }
13214 run_test 204f "Print raw stripe size and offset"
13215
13216 test_204g() {
13217         test_mkdir $DIR/$tdir
13218         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
13219
13220         check_default_stripe_attr --stripe-count --raw
13221         check_default_stripe_attr --stripe-index --raw
13222 }
13223 run_test 204g "Print raw stripe count and offset"
13224
13225 test_204h() {
13226         test_mkdir $DIR/$tdir
13227         $SETSTRIPE --stripe-index 0 $DIR/$tdir
13228
13229         check_default_stripe_attr --stripe-count --raw
13230         check_default_stripe_attr --stripe-size --raw
13231 }
13232 run_test 204h "Print raw stripe count and size"
13233
13234 # Figure out which job scheduler is being used, if any,
13235 # or use a fake one
13236 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
13237         JOBENV=SLURM_JOB_ID
13238 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
13239         JOBENV=LSB_JOBID
13240 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
13241         JOBENV=PBS_JOBID
13242 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
13243         JOBENV=LOADL_STEP_ID
13244 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
13245         JOBENV=JOB_ID
13246 else
13247         $LCTL list_param jobid_name > /dev/null 2>&1
13248         if [ $? -eq 0 ]; then
13249                 JOBENV=nodelocal
13250         else
13251                 JOBENV=FAKE_JOBID
13252         fi
13253 fi
13254
13255 verify_jobstats() {
13256         local cmd=($1)
13257         shift
13258         local facets="$@"
13259
13260 # we don't really need to clear the stats for this test to work, since each
13261 # command has a unique jobid, but it makes debugging easier if needed.
13262 #       for facet in $facets; do
13263 #               local dev=$(convert_facet2label $facet)
13264 #               # clear old jobstats
13265 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
13266 #       done
13267
13268         # use a new JobID for each test, or we might see an old one
13269         [ "$JOBENV" = "FAKE_JOBID" ] &&
13270                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
13271
13272         JOBVAL=${!JOBENV}
13273
13274         [ "$JOBENV" = "nodelocal" ] && {
13275                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
13276                 $LCTL set_param jobid_name=$FAKE_JOBID
13277                 JOBVAL=$FAKE_JOBID
13278         }
13279
13280         log "Test: ${cmd[*]}"
13281         log "Using JobID environment variable $JOBENV=$JOBVAL"
13282
13283         if [ $JOBENV = "FAKE_JOBID" ]; then
13284                 FAKE_JOBID=$JOBVAL ${cmd[*]}
13285         else
13286                 ${cmd[*]}
13287         fi
13288
13289         # all files are created on OST0000
13290         for facet in $facets; do
13291                 local stats="*.$(convert_facet2label $facet).job_stats"
13292                 if [ $(do_facet $facet lctl get_param $stats |
13293                        grep -c $JOBVAL) -ne 1 ]; then
13294                         do_facet $facet lctl get_param $stats
13295                         error "No jobstats for $JOBVAL found on $facet::$stats"
13296                 fi
13297         done
13298 }
13299
13300 jobstats_set() {
13301         trap 0
13302         NEW_JOBENV=${1:-$OLD_JOBENV}
13303         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
13304         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
13305 }
13306
13307 cleanup_205() {
13308         trap 0
13309         do_facet $SINGLEMDS \
13310                 $LCTL set_param mdt.*.job_cleanup_interval=$OLD_INTERVAL
13311         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
13312         cleanup_changelog
13313 }
13314
13315 test_205() { # Job stats
13316         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.1) ]] ||
13317                 { skip "Need MDS version with at least 2.7.1"; return 0; }
13318
13319         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13320         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
13321         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13322         remote_ost_nodsh && skip "remote OST with nodsh" && return
13323
13324         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
13325                 skip "Server doesn't support jobstats" && return 0
13326         [[ $JOBID_VAR = disable ]] && skip "jobstats is disabled" && return
13327
13328         OLD_JOBENV=$($LCTL get_param -n jobid_var)
13329         if [ $OLD_JOBENV != $JOBENV ]; then
13330                 jobstats_set $JOBENV
13331                 trap cleanup_205 EXIT
13332         fi
13333
13334         CL_USER=$(do_facet $SINGLEMDS lctl --device $MDT0 changelog_register -n)
13335         echo "Registered as changelog user $CL_USER"
13336
13337         OLD_INTERVAL=$(do_facet $SINGLEMDS \
13338                        lctl get_param -n mdt.*.job_cleanup_interval)
13339         local interval_new=5
13340         do_facet $SINGLEMDS \
13341                 $LCTL set_param mdt.*.job_cleanup_interval=$interval_new
13342         local start=$SECONDS
13343
13344         local cmd
13345         # mkdir
13346         cmd="mkdir $DIR/$tdir"
13347         verify_jobstats "$cmd" "$SINGLEMDS"
13348         # rmdir
13349         cmd="rmdir $DIR/$tdir"
13350         verify_jobstats "$cmd" "$SINGLEMDS"
13351         # mkdir on secondary MDT
13352         if [ $MDSCOUNT -gt 1 ]; then
13353                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
13354                 verify_jobstats "$cmd" "mds2"
13355         fi
13356         # mknod
13357         cmd="mknod $DIR/$tfile c 1 3"
13358         verify_jobstats "$cmd" "$SINGLEMDS"
13359         # unlink
13360         cmd="rm -f $DIR/$tfile"
13361         verify_jobstats "$cmd" "$SINGLEMDS"
13362         # create all files on OST0000 so verify_jobstats can find OST stats
13363         # open & close
13364         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
13365         verify_jobstats "$cmd" "$SINGLEMDS"
13366         # setattr
13367         cmd="touch $DIR/$tfile"
13368         verify_jobstats "$cmd" "$SINGLEMDS ost1"
13369         # write
13370         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
13371         verify_jobstats "$cmd" "ost1"
13372         # read
13373         cancel_lru_locks osc
13374         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
13375         verify_jobstats "$cmd" "ost1"
13376         # truncate
13377         cmd="$TRUNCATE $DIR/$tfile 0"
13378         verify_jobstats "$cmd" "$SINGLEMDS ost1"
13379         # rename
13380         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
13381         verify_jobstats "$cmd" "$SINGLEMDS"
13382         # jobstats expiry - sleep until old stats should be expired
13383         local left=$((interval_new + 5 - (SECONDS - start)))
13384         [ $left -ge 0 ] && wait_update_facet $SINGLEMDS \
13385                 "lctl get_param *.*.job_stats | grep -c 'job_id.*mkdir'" \
13386                         "0" $left
13387         cmd="mkdir $DIR/$tdir.expire"
13388         verify_jobstats "$cmd" "$SINGLEMDS"
13389         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
13390             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
13391
13392         # Ensure that jobid are present in changelog (if supported by MDS)
13393         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.52) ]
13394         then
13395                 $LFS changelog $MDT0 | tail -9
13396                 jobids=$($LFS changelog $MDT0 | tail -9 | grep -c "j=")
13397                 [ $jobids -eq 9 ] ||
13398                         error "Wrong changelog jobid count $jobids != 9"
13399
13400                 # LU-5862
13401                 JOBENV="disable"
13402                 jobstats_set $JOBENV
13403                 touch $DIR/$tfile
13404                 $LFS changelog $MDT0 | tail -1
13405                 jobids=$($LFS changelog $MDT0 | tail -1 | grep -c "j=")
13406                 [ $jobids -eq 0 ] ||
13407                         error "Unexpected jobids when jobid_var=$JOBENV"
13408         fi
13409
13410         cleanup_205
13411 }
13412 run_test 205 "Verify job stats"
13413
13414 # LU-1480, LU-1773 and LU-1657
13415 test_206() {
13416         mkdir -p $DIR/$tdir
13417         $SETSTRIPE -c -1 $DIR/$tdir
13418 #define OBD_FAIL_LOV_INIT 0x1403
13419         $LCTL set_param fail_loc=0xa0001403
13420         $LCTL set_param fail_val=1
13421         touch $DIR/$tdir/$tfile || true
13422 }
13423 run_test 206 "fail lov_init_raid0() doesn't lbug"
13424
13425 test_207a() {
13426         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
13427         local fsz=`stat -c %s $DIR/$tfile`
13428         cancel_lru_locks mdc
13429
13430         # do not return layout in getattr intent
13431 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
13432         $LCTL set_param fail_loc=0x170
13433         local sz=`stat -c %s $DIR/$tfile`
13434
13435         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
13436
13437         rm -rf $DIR/$tfile
13438 }
13439 run_test 207a "can refresh layout at glimpse"
13440
13441 test_207b() {
13442         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
13443         local cksum=`md5sum $DIR/$tfile`
13444         local fsz=`stat -c %s $DIR/$tfile`
13445         cancel_lru_locks mdc
13446         cancel_lru_locks osc
13447
13448         # do not return layout in getattr intent
13449 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
13450         $LCTL set_param fail_loc=0x171
13451
13452         # it will refresh layout after the file is opened but before read issues
13453         echo checksum is "$cksum"
13454         echo "$cksum" |md5sum -c --quiet || error "file differs"
13455
13456         rm -rf $DIR/$tfile
13457 }
13458 run_test 207b "can refresh layout at open"
13459
13460 test_208() {
13461         # FIXME: in this test suite, only RD lease is used. This is okay
13462         # for now as only exclusive open is supported. After generic lease
13463         # is done, this test suite should be revised. - Jinshan
13464
13465         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13466         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
13467                 { skip "Need MDS version at least 2.4.52"; return 0; }
13468
13469         echo "==== test 1: verify get lease work"
13470         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
13471
13472         echo "==== test 2: verify lease can be broken by upcoming open"
13473         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
13474         local PID=$!
13475         sleep 1
13476
13477         $MULTIOP $DIR/$tfile oO_RDONLY:c
13478         kill -USR1 $PID && wait $PID || error "break lease error"
13479
13480         echo "==== test 3: verify lease can't be granted if an open already exists"
13481         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
13482         local PID=$!
13483         sleep 1
13484
13485         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
13486         kill -USR1 $PID && wait $PID || error "open file error"
13487
13488         echo "==== test 4: lease can sustain over recovery"
13489         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
13490         PID=$!
13491         sleep 1
13492
13493         fail mds1
13494
13495         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
13496
13497         echo "==== test 5: lease broken can't be regained by replay"
13498         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
13499         PID=$!
13500         sleep 1
13501
13502         # open file to break lease and then recovery
13503         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
13504         fail mds1
13505
13506         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
13507
13508         rm -f $DIR/$tfile
13509 }
13510 run_test 208 "Exclusive open"
13511
13512 test_209() {
13513         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
13514                 skip_env "must have disp_stripe" && return
13515
13516         touch $DIR/$tfile
13517         sync; sleep 5; sync;
13518
13519         echo 3 > /proc/sys/vm/drop_caches
13520         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
13521
13522         # open/close 500 times
13523         for i in $(seq 500); do
13524                 cat $DIR/$tfile
13525         done
13526
13527         echo 3 > /proc/sys/vm/drop_caches
13528         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
13529
13530         echo "before: $req_before, after: $req_after"
13531         [ $((req_after - req_before)) -ge 300 ] &&
13532                 error "open/close requests are not freed"
13533         return 0
13534 }
13535 run_test 209 "read-only open/close requests should be freed promptly"
13536
13537 test_212() {
13538         size=`date +%s`
13539         size=$((size % 8192 + 1))
13540         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
13541         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
13542         rm -f $DIR/f212 $DIR/f212.xyz
13543 }
13544 run_test 212 "Sendfile test ============================================"
13545
13546 test_213() {
13547         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
13548         cancel_lru_locks osc
13549         lctl set_param fail_loc=0x8000040f
13550         # generate a read lock
13551         cat $DIR/$tfile > /dev/null
13552         # write to the file, it will try to cancel the above read lock.
13553         cat /etc/hosts >> $DIR/$tfile
13554 }
13555 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
13556
13557 test_214() { # for bug 20133
13558         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
13559         for (( i=0; i < 340; i++ )) ; do
13560                 touch $DIR/$tdir/d214c/a$i
13561         done
13562
13563         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
13564         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
13565         ls $DIR/d214c || error "ls $DIR/d214c failed"
13566         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
13567         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
13568 }
13569 run_test 214 "hash-indexed directory test - bug 20133"
13570
13571 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
13572 create_lnet_proc_files() {
13573         lctl get_param -n $1 >$TMP/lnet_$1.sys || error "cannot read lnet.$1"
13574 }
13575
13576 # counterpart of create_lnet_proc_files
13577 remove_lnet_proc_files() {
13578         rm -f $TMP/lnet_$1.sys
13579 }
13580
13581 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
13582 # 3rd arg as regexp for body
13583 check_lnet_proc_stats() {
13584         local l=$(cat "$TMP/lnet_$1" |wc -l)
13585         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
13586
13587         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
13588 }
13589
13590 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
13591 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
13592 # optional and can be regexp for 2nd line (lnet.routes case)
13593 check_lnet_proc_entry() {
13594         local blp=2          # blp stands for 'position of 1st line of body'
13595         [ -z "$5" ] || blp=3 # lnet.routes case
13596
13597         local l=$(cat "$TMP/lnet_$1" |wc -l)
13598         # subtracting one from $blp because the body can be empty
13599         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
13600
13601         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
13602                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
13603
13604         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
13605                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
13606
13607         # bail out if any unexpected line happened
13608         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
13609         [ "$?" != 0 ] || error "$2 misformatted"
13610 }
13611
13612 test_215() { # for bugs 18102, 21079, 21517
13613         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13614         local N='(0|[1-9][0-9]*)'       # non-negative numeric
13615         local P='[1-9][0-9]*'           # positive numeric
13616         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
13617         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
13618         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
13619         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
13620
13621         local L1 # regexp for 1st line
13622         local L2 # regexp for 2nd line (optional)
13623         local BR # regexp for the rest (body)
13624
13625         # lnet.stats should look as 11 space-separated non-negative numerics
13626         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
13627         create_lnet_proc_files "stats"
13628         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
13629         remove_lnet_proc_files "stats"
13630
13631         # lnet.routes should look like this:
13632         # Routing disabled/enabled
13633         # net hops priority state router
13634         # where net is a string like tcp0, hops > 0, priority >= 0,
13635         # state is up/down,
13636         # router is a string like 192.168.1.1@tcp2
13637         L1="^Routing (disabled|enabled)$"
13638         L2="^net +hops +priority +state +router$"
13639         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
13640         create_lnet_proc_files "routes"
13641         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
13642         remove_lnet_proc_files "routes"
13643
13644         # lnet.routers should look like this:
13645         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
13646         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
13647         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
13648         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
13649         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
13650         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
13651         create_lnet_proc_files "routers"
13652         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
13653         remove_lnet_proc_files "routers"
13654
13655         # lnet.peers should look like this:
13656         # nid refs state last max rtr min tx min queue
13657         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
13658         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
13659         # numeric (0 or >0 or <0), queue >= 0.
13660         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
13661         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
13662         create_lnet_proc_files "peers"
13663         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
13664         remove_lnet_proc_files "peers"
13665
13666         # lnet.buffers  should look like this:
13667         # pages count credits min
13668         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
13669         L1="^pages +count +credits +min$"
13670         BR="^ +$N +$N +$I +$I$"
13671         create_lnet_proc_files "buffers"
13672         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
13673         remove_lnet_proc_files "buffers"
13674
13675         # lnet.nis should look like this:
13676         # nid status alive refs peer rtr max tx min
13677         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
13678         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
13679         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
13680         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
13681         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
13682         create_lnet_proc_files "nis"
13683         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
13684         remove_lnet_proc_files "nis"
13685
13686         # can we successfully write to lnet.stats?
13687         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
13688 }
13689 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
13690
13691 test_216() { # bug 20317
13692         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13693         remote_ost_nodsh && skip "remote OST with nodsh" && return
13694
13695         local node
13696         local facets=$(get_facets OST)
13697         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
13698
13699         save_lustre_params client "osc.*.contention_seconds" > $p
13700         save_lustre_params $facets \
13701                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
13702         save_lustre_params $facets \
13703                 "ldlm.namespaces.filter-*.contended_locks" >> $p
13704         save_lustre_params $facets \
13705                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
13706         clear_stats osc.*.osc_stats
13707
13708         # agressive lockless i/o settings
13709         do_nodes $(comma_list $(osts_nodes)) \
13710                 "lctl set_param -n ldlm.namespaces.*.max_nolock_bytes=2000000 \
13711                         ldlm.namespaces.filter-*.contended_locks=0 \
13712                         ldlm.namespaces.filter-*.contention_seconds=60"
13713         lctl set_param -n osc.*.contention_seconds=60
13714
13715         $DIRECTIO write $DIR/$tfile 0 10 4096
13716         $CHECKSTAT -s 40960 $DIR/$tfile
13717
13718         # disable lockless i/o
13719         do_nodes $(comma_list $(osts_nodes)) \
13720                 "lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes=0 \
13721                         ldlm.namespaces.filter-*.contended_locks=32 \
13722                         ldlm.namespaces.filter-*.contention_seconds=0"
13723         lctl set_param -n osc.*.contention_seconds=0
13724         clear_stats osc.*.osc_stats
13725
13726         dd if=/dev/zero of=$DIR/$tfile count=0
13727         $CHECKSTAT -s 0 $DIR/$tfile
13728
13729         restore_lustre_params <$p
13730         rm -f $p
13731         rm $DIR/$tfile
13732 }
13733 run_test 216 "check lockless direct write updates file size and kms correctly"
13734
13735 test_217() { # bug 22430
13736         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13737         local node
13738         local nid
13739
13740         for node in $(nodes_list); do
13741                 nid=$(host_nids_address $node $NETTYPE)
13742                 if [[ $nid = *-* ]] ; then
13743                         echo "lctl ping $(h2nettype $nid)"
13744                         lctl ping $(h2nettype $nid)
13745                 else
13746                         echo "skipping $node (no hyphen detected)"
13747                 fi
13748         done
13749 }
13750 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
13751
13752 test_218() {
13753        # do directio so as not to populate the page cache
13754        log "creating a 10 Mb file"
13755        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
13756        log "starting reads"
13757        dd if=$DIR/$tfile of=/dev/null bs=4096 &
13758        log "truncating the file"
13759        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
13760        log "killing dd"
13761        kill %+ || true # reads might have finished
13762        echo "wait until dd is finished"
13763        wait
13764        log "removing the temporary file"
13765        rm -rf $DIR/$tfile || error "tmp file removal failed"
13766 }
13767 run_test 218 "parallel read and truncate should not deadlock ======================="
13768
13769 test_219() {
13770         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13771         # write one partial page
13772         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
13773         # set no grant so vvp_io_commit_write will do sync write
13774         $LCTL set_param fail_loc=0x411
13775         # write a full page at the end of file
13776         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
13777
13778         $LCTL set_param fail_loc=0
13779         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
13780         $LCTL set_param fail_loc=0x411
13781         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
13782
13783         # LU-4201
13784         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
13785         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
13786 }
13787 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
13788
13789 test_220() { #LU-325
13790         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13791         remote_ost_nodsh && skip "remote OST with nodsh" && return
13792         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13793         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
13794         local OSTIDX=0
13795
13796         # create on MDT0000 so the last_id and next_id are correct
13797         mkdir $DIR/$tdir
13798         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
13799         OST=${OST%_UUID}
13800
13801         # on the mdt's osc
13802         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
13803         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
13804                         osc.$mdtosc_proc1.prealloc_last_id)
13805         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
13806                         osc.$mdtosc_proc1.prealloc_next_id)
13807
13808         $LFS df -i
13809
13810         if ! combined_mgs_mds ; then
13811                 mount_mgs_client
13812         fi
13813
13814         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
13815         #define OBD_FAIL_OST_ENOINO              0x229
13816         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
13817         create_pool $FSNAME.$TESTNAME || return 1
13818         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
13819
13820         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
13821
13822         MDSOBJS=$((last_id - next_id))
13823         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
13824
13825         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
13826         echo "OST still has $count kbytes free"
13827
13828         echo "create $MDSOBJS files @next_id..."
13829         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
13830
13831         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
13832                         osc.$mdtosc_proc1.prealloc_last_id)
13833         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
13834                         osc.$mdtosc_proc1.prealloc_next_id)
13835
13836         echo "after creation, last_id=$last_id2, next_id=$next_id2"
13837         $LFS df -i
13838
13839         echo "cleanup..."
13840
13841         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
13842         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
13843
13844         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST ||
13845                 error "$LCTL pool_remove $FSNAME.$TESTNAME $OST failed"
13846         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
13847                 error "$LCTL pool_destroy $FSNAME.$TESTNAME failed"
13848         echo "unlink $MDSOBJS files @$next_id..."
13849         unlinkmany $DIR/$tdir/f $MDSOBJS || error "unlinkmany failed"
13850
13851         if ! combined_mgs_mds ; then
13852                 umount_mgs_client
13853         fi
13854 }
13855 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
13856
13857 test_221() {
13858         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13859         dd if=`which date` of=$MOUNT/date oflag=sync
13860         chmod +x $MOUNT/date
13861
13862         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
13863         $LCTL set_param fail_loc=0x80001401
13864
13865         $MOUNT/date > /dev/null
13866         rm -f $MOUNT/date
13867 }
13868 run_test 221 "make sure fault and truncate race to not cause OOM"
13869
13870 test_222a () {
13871         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13872         rm -rf $DIR/$tdir
13873         test_mkdir $DIR/$tdir
13874         $LFS setstripe -c 1 -i 0 $DIR/$tdir
13875         createmany -o $DIR/$tdir/$tfile 10
13876         cancel_lru_locks mdc
13877         cancel_lru_locks osc
13878         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
13879         $LCTL set_param fail_loc=0x31a
13880         ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
13881         $LCTL set_param fail_loc=0
13882         rm -r $DIR/$tdir
13883 }
13884 run_test 222a "AGL for ls should not trigger CLIO lock failure"
13885
13886 test_222b () {
13887         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13888         rm -rf $DIR/$tdir
13889         test_mkdir $DIR/$tdir
13890         $LFS setstripe -c 1 -i 0 $DIR/$tdir
13891         createmany -o $DIR/$tdir/$tfile 10
13892         cancel_lru_locks mdc
13893         cancel_lru_locks osc
13894         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
13895         $LCTL set_param fail_loc=0x31a
13896         rm -r $DIR/$tdir || error "AGL for rmdir failed"
13897         $LCTL set_param fail_loc=0
13898 }
13899 run_test 222b "AGL for rmdir should not trigger CLIO lock failure"
13900
13901 test_223 () {
13902         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13903         rm -rf $DIR/$tdir
13904         test_mkdir $DIR/$tdir
13905         $LFS setstripe -c 1 -i 0 $DIR/$tdir
13906         createmany -o $DIR/$tdir/$tfile 10
13907         cancel_lru_locks mdc
13908         cancel_lru_locks osc
13909         #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
13910         $LCTL set_param fail_loc=0x31b
13911         ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
13912         $LCTL set_param fail_loc=0
13913         rm -r $DIR/$tdir
13914 }
13915 run_test 223 "osc reenqueue if without AGL lock granted ======================="
13916
13917 test_224a() { # LU-1039, MRP-303
13918         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13919         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
13920         $LCTL set_param fail_loc=0x508
13921         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
13922         $LCTL set_param fail_loc=0
13923         df $DIR
13924 }
13925 run_test 224a "Don't panic on bulk IO failure"
13926
13927 test_224b() { # LU-1039, MRP-303
13928         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13929         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
13930         cancel_lru_locks osc
13931         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
13932         $LCTL set_param fail_loc=0x515
13933         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
13934         $LCTL set_param fail_loc=0
13935         df $DIR
13936 }
13937 run_test 224b "Don't panic on bulk IO failure"
13938
13939 test_224c() { # LU-6441
13940         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13941         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13942
13943         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
13944         save_writethrough $p
13945         set_cache writethrough on
13946
13947         local pages_per_rpc=$($LCTL get_param \
13948                                 osc.*.max_pages_per_rpc)
13949         local at_max=$($LCTL get_param -n at_max)
13950         local timeout=$($LCTL get_param -n timeout)
13951         local test_at="$LCTL get_param -n at_max"
13952         local param_at="$FSNAME.sys.at_max"
13953         local test_timeout="$LCTL get_param -n timeout"
13954         local param_timeout="$FSNAME.sys.timeout"
13955
13956         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
13957
13958         set_conf_param_and_check client "$test_at" "$param_at" 0 ||
13959                 error "conf_param at_max=0 failed"
13960         set_conf_param_and_check client "$test_timeout" "$param_timeout" 5 ||
13961                 error "conf_param timeout=5 failed"
13962
13963         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3   0x520
13964         do_facet ost1 $LCTL set_param fail_loc=0x520
13965         $LFS setstripe -c 1 -i 0 $DIR/$tfile
13966         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
13967         sync
13968         do_facet ost1 $LCTL set_param fail_loc=0
13969
13970         set_conf_param_and_check client "$test_at" "$param_at" $at_max ||
13971                 error "conf_param at_max=$at_max failed"
13972         set_conf_param_and_check client "$test_timeout" "$param_timeout" \
13973                 $timeout || error "conf_param timeout=$timeout failed"
13974
13975         $LCTL set_param -n $pages_per_rpc
13976         restore_lustre_params < $p
13977         rm -f $p
13978 }
13979 run_test 224c "Don't hang if one of md lost during large bulk RPC"
13980
13981 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
13982 test_225a () {
13983         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13984         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13985         if [ -z ${MDSSURVEY} ]; then
13986               skip_env "mds-survey not found" && return
13987         fi
13988
13989         [ $MDSCOUNT -ge 2 ] &&
13990                 skip "skipping now for more than one MDT" && return
13991
13992        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
13993             { skip "Need MDS version at least 2.2.51"; return; }
13994
13995        local mds=$(facet_host $SINGLEMDS)
13996        local target=$(do_nodes $mds 'lctl dl' | \
13997                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
13998
13999        local cmd1="file_count=1000 thrhi=4"
14000        local cmd2="dir_count=2 layer=mdd stripe_count=0"
14001        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
14002        local cmd="$cmd1 $cmd2 $cmd3"
14003
14004        rm -f ${TMP}/mds_survey*
14005        echo + $cmd
14006        eval $cmd || error "mds-survey with zero-stripe failed"
14007        cat ${TMP}/mds_survey*
14008        rm -f ${TMP}/mds_survey*
14009 }
14010 run_test 225a "Metadata survey sanity with zero-stripe"
14011
14012 test_225b () {
14013         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14014         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14015         if [ -z ${MDSSURVEY} ]; then
14016               skip_env "mds-survey not found" && return
14017         fi
14018         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
14019             { skip "Need MDS version at least 2.2.51"; return; }
14020
14021         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
14022               skip_env "Need to mount OST to test" && return
14023         fi
14024
14025        local mds=$(facet_host $SINGLEMDS)
14026        local target=$(do_nodes $mds 'lctl dl' | \
14027                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
14028
14029        local cmd1="file_count=1000 thrhi=4"
14030        local cmd2="dir_count=2 layer=mdd stripe_count=1"
14031        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
14032        local cmd="$cmd1 $cmd2 $cmd3"
14033
14034        rm -f ${TMP}/mds_survey*
14035        echo + $cmd
14036        eval $cmd || error "mds-survey with stripe_count failed"
14037        cat ${TMP}/mds_survey*
14038        rm -f ${TMP}/mds_survey*
14039 }
14040 run_test 225b "Metadata survey sanity with stripe_count = 1"
14041
14042 mcreate_path2fid () {
14043         local mode=$1
14044         local major=$2
14045         local minor=$3
14046         local name=$4
14047         local desc=$5
14048         local path=$DIR/$tdir/$name
14049         local fid
14050         local rc
14051         local fid_path
14052
14053         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
14054                 error "cannot create $desc"
14055
14056         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
14057         rc=$?
14058         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
14059
14060         fid_path=$($LFS fid2path $MOUNT $fid)
14061         rc=$?
14062         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
14063
14064         [ "$path" == "$fid_path" ] ||
14065                 error "fid2path returned $fid_path, expected $path"
14066
14067         echo "pass with $path and $fid"
14068 }
14069
14070 test_226a () {
14071         rm -rf $DIR/$tdir
14072         mkdir -p $DIR/$tdir
14073
14074         mcreate_path2fid 0010666 0 0 fifo "FIFO"
14075         mcreate_path2fid 0020666 1 3 null "character special file (null)"
14076         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
14077         mcreate_path2fid 0040666 0 0 dir "directory"
14078         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
14079         mcreate_path2fid 0100666 0 0 file "regular file"
14080         mcreate_path2fid 0120666 0 0 link "symbolic link"
14081         mcreate_path2fid 0140666 0 0 sock "socket"
14082 }
14083 run_test 226a "call path2fid and fid2path on files of all type"
14084
14085 test_226b () {
14086         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14087         rm -rf $DIR/$tdir
14088         local MDTIDX=1
14089
14090         mkdir -p $DIR/$tdir
14091         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
14092                 error "create remote directory failed"
14093         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
14094         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
14095                                 "character special file (null)"
14096         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
14097                                 "character special file (no device)"
14098         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
14099         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
14100                                 "block special file (loop)"
14101         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
14102         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
14103         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
14104 }
14105 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
14106
14107 # LU-1299 Executing or running ldd on a truncated executable does not
14108 # cause an out-of-memory condition.
14109 test_227() {
14110         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14111         [ -z "$(which ldd)" ] && skip "should have ldd tool" && return
14112         dd if=$(which date) of=$MOUNT/date bs=1k count=1
14113         chmod +x $MOUNT/date
14114
14115         $MOUNT/date > /dev/null
14116         ldd $MOUNT/date > /dev/null
14117         rm -f $MOUNT/date
14118 }
14119 run_test 227 "running truncated executable does not cause OOM"
14120
14121 # LU-1512 try to reuse idle OI blocks
14122 test_228a() {
14123         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14124         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14125         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
14126                 skip "ldiskfs only test" && return
14127
14128         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14129         local myDIR=$DIR/$tdir
14130
14131         mkdir -p $myDIR
14132         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14133         $LCTL set_param fail_loc=0x80001002
14134         createmany -o $myDIR/t- 10000
14135         $LCTL set_param fail_loc=0
14136         # The guard is current the largest FID holder
14137         touch $myDIR/guard
14138         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14139                     tr -d '[')
14140         local IDX=$(($SEQ % 64))
14141
14142         do_facet $SINGLEMDS sync
14143         # Make sure journal flushed.
14144         sleep 6
14145         local blk1=$(do_facet $SINGLEMDS \
14146                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14147                      grep Blockcount | awk '{print $4}')
14148
14149         # Remove old files, some OI blocks will become idle.
14150         unlinkmany $myDIR/t- 10000
14151         # Create new files, idle OI blocks should be reused.
14152         createmany -o $myDIR/t- 2000
14153         do_facet $SINGLEMDS sync
14154         # Make sure journal flushed.
14155         sleep 6
14156         local blk2=$(do_facet $SINGLEMDS \
14157                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14158                      grep Blockcount | awk '{print $4}')
14159
14160         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14161 }
14162 run_test 228a "try to reuse idle OI blocks"
14163
14164 test_228b() {
14165         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14166         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14167         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
14168                 skip "ldiskfs only test" && return
14169
14170         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14171         local myDIR=$DIR/$tdir
14172
14173         mkdir -p $myDIR
14174         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14175         $LCTL set_param fail_loc=0x80001002
14176         createmany -o $myDIR/t- 10000
14177         $LCTL set_param fail_loc=0
14178         # The guard is current the largest FID holder
14179         touch $myDIR/guard
14180         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14181                     tr -d '[')
14182         local IDX=$(($SEQ % 64))
14183
14184         do_facet $SINGLEMDS sync
14185         # Make sure journal flushed.
14186         sleep 6
14187         local blk1=$(do_facet $SINGLEMDS \
14188                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14189                      grep Blockcount | awk '{print $4}')
14190
14191         # Remove old files, some OI blocks will become idle.
14192         unlinkmany $myDIR/t- 10000
14193
14194         # stop the MDT
14195         stop $SINGLEMDS || error "Fail to stop MDT."
14196         # remount the MDT
14197         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
14198
14199         df $MOUNT || error "Fail to df."
14200         # Create new files, idle OI blocks should be reused.
14201         createmany -o $myDIR/t- 2000
14202         do_facet $SINGLEMDS sync
14203         # Make sure journal flushed.
14204         sleep 6
14205         local blk2=$(do_facet $SINGLEMDS \
14206                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14207                      grep Blockcount | awk '{print $4}')
14208
14209         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14210 }
14211 run_test 228b "idle OI blocks can be reused after MDT restart"
14212
14213 #LU-1881
14214 test_228c() {
14215         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14216         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14217         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
14218                 skip "ldiskfs only test" && return
14219
14220         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14221         local myDIR=$DIR/$tdir
14222
14223         mkdir -p $myDIR
14224         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14225         $LCTL set_param fail_loc=0x80001002
14226         # 20000 files can guarantee there are index nodes in the OI file
14227         createmany -o $myDIR/t- 20000
14228         $LCTL set_param fail_loc=0
14229         # The guard is current the largest FID holder
14230         touch $myDIR/guard
14231         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14232                     tr -d '[')
14233         local IDX=$(($SEQ % 64))
14234
14235         do_facet $SINGLEMDS sync
14236         # Make sure journal flushed.
14237         sleep 6
14238         local blk1=$(do_facet $SINGLEMDS \
14239                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14240                      grep Blockcount | awk '{print $4}')
14241
14242         # Remove old files, some OI blocks will become idle.
14243         unlinkmany $myDIR/t- 20000
14244         rm -f $myDIR/guard
14245         # The OI file should become empty now
14246
14247         # Create new files, idle OI blocks should be reused.
14248         createmany -o $myDIR/t- 2000
14249         do_facet $SINGLEMDS sync
14250         # Make sure journal flushed.
14251         sleep 6
14252         local blk2=$(do_facet $SINGLEMDS \
14253                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14254                      grep Blockcount | awk '{print $4}')
14255
14256         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14257 }
14258 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
14259
14260 test_229() { # LU-2482, LU-3448
14261         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
14262                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
14263                 return
14264         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14265         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
14266
14267         rm -f $DIR/$tfile
14268
14269         # Create a file with a released layout and stripe count 2.
14270         $MULTIOP $DIR/$tfile H2c ||
14271                 error "failed to create file with released layout"
14272
14273         $GETSTRIPE -v $DIR/$tfile
14274
14275         local pattern=$($GETSTRIPE -L $DIR/$tfile)
14276         [ X"$pattern" = X"released" ] || error "pattern error ($pattern)"
14277
14278         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
14279         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
14280         stat $DIR/$tfile || error "failed to stat released file"
14281
14282         chown $RUNAS_ID $DIR/$tfile ||
14283                 error "chown $RUNAS_ID $DIR/$tfile failed"
14284
14285         chgrp $RUNAS_ID $DIR/$tfile ||
14286                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
14287
14288         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
14289         rm $DIR/$tfile || error "failed to remove released file"
14290 }
14291 run_test 229 "getstripe/stat/rm/attr changes work on released files"
14292
14293 test_230a() {
14294         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14295         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14296         local MDTIDX=1
14297
14298         test_mkdir $DIR/$tdir
14299         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
14300         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
14301         [ $mdt_idx -ne 0 ] &&
14302                 error "create local directory on wrong MDT $mdt_idx"
14303
14304         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
14305                         error "create remote directory failed"
14306         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
14307         [ $mdt_idx -ne $MDTIDX ] &&
14308                 error "create remote directory on wrong MDT $mdt_idx"
14309
14310         createmany -o $DIR/$tdir/test_230/t- 10 ||
14311                 error "create files on remote directory failed"
14312         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
14313         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
14314         rm -r $DIR/$tdir || error "unlink remote directory failed"
14315 }
14316 run_test 230a "Create remote directory and files under the remote directory"
14317
14318 test_230b() {
14319         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14320         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14321         local MDTIDX=1
14322         local mdt_index
14323         local i
14324         local file
14325         local pid
14326         local stripe_count
14327         local migrate_dir=$DIR/$tdir/migrate_dir
14328         local other_dir=$DIR/$tdir/other_dir
14329
14330         test_mkdir $DIR/$tdir
14331         test_mkdir -i0 -c1 $migrate_dir
14332         test_mkdir -i0 -c1 $other_dir
14333         for ((i=0; i<10; i++)); do
14334                 mkdir -p $migrate_dir/dir_${i}
14335                 createmany -o $migrate_dir/dir_${i}/f 10 ||
14336                         error "create files under remote dir failed $i"
14337         done
14338
14339         cp /etc/passwd $migrate_dir/$tfile
14340         cp /etc/passwd $other_dir/$tfile
14341         chattr +SAD $migrate_dir
14342         chattr +SAD $migrate_dir/$tfile
14343
14344         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
14345         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
14346         local old_dir_mode=$(stat -c%f $migrate_dir)
14347         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
14348
14349         mkdir -p $migrate_dir/dir_default_stripe2
14350         $SETSTRIPE -c 2 $migrate_dir/dir_default_stripe2
14351         $SETSTRIPE -c 2 $migrate_dir/${tfile}_stripe2
14352
14353         mkdir -p $other_dir
14354         ln $migrate_dir/$tfile $other_dir/luna
14355         ln $migrate_dir/$tfile $migrate_dir/sofia
14356         ln $other_dir/$tfile $migrate_dir/david
14357         ln -s $migrate_dir/$tfile $other_dir/zachary
14358         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
14359         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
14360
14361         $LFS migrate -m $MDTIDX $migrate_dir ||
14362                 error "fails on migrating remote dir to MDT1"
14363
14364         echo "migratate to MDT1, then checking.."
14365         for ((i = 0; i < 10; i++)); do
14366                 for file in $(find $migrate_dir/dir_${i}); do
14367                         mdt_index=$($LFS getstripe -M $file)
14368                         [ $mdt_index == $MDTIDX ] ||
14369                                 error "$file is not on MDT${MDTIDX}"
14370                 done
14371         done
14372
14373         # the multiple link file should still in MDT0
14374         mdt_index=$($LFS getstripe -M $migrate_dir/$tfile)
14375         [ $mdt_index == 0 ] ||
14376                 error "$file is not on MDT${MDTIDX}"
14377
14378         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
14379         [ "$old_dir_flag" = "$new_dir_flag" ] ||
14380                 error " expect $old_dir_flag get $new_dir_flag"
14381
14382         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
14383         [ "$old_file_flag" = "$new_file_flag" ] ||
14384                 error " expect $old_file_flag get $new_file_flag"
14385
14386         local new_dir_mode=$(stat -c%f $migrate_dir)
14387         [ "$old_dir_mode" = "$new_dir_mode" ] ||
14388                 error "expect mode $old_dir_mode get $new_dir_mode"
14389
14390         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
14391         [ "$old_file_mode" = "$new_file_mode" ] ||
14392                 error "expect mode $old_file_mode get $new_file_mode"
14393
14394         diff /etc/passwd $migrate_dir/$tfile ||
14395                 error "$tfile different after migration"
14396
14397         diff /etc/passwd $other_dir/luna ||
14398                 error "luna different after migration"
14399
14400         diff /etc/passwd $migrate_dir/sofia ||
14401                 error "sofia different after migration"
14402
14403         diff /etc/passwd $migrate_dir/david ||
14404                 error "david different after migration"
14405
14406         diff /etc/passwd $other_dir/zachary ||
14407                 error "zachary different after migration"
14408
14409         diff /etc/passwd $migrate_dir/${tfile}_ln ||
14410                 error "${tfile}_ln different after migration"
14411
14412         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
14413                 error "${tfile}_ln_other different after migration"
14414
14415         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
14416         [ $stripe_count = 2 ] ||
14417                 error "dir strpe_count $d != 2 after migration."
14418
14419         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
14420         [ $stripe_count = 2 ] ||
14421                 error "file strpe_count $d != 2 after migration."
14422
14423         #migrate back to MDT0
14424         MDTIDX=0
14425
14426         $LFS migrate -m $MDTIDX $migrate_dir ||
14427                 error "fails on migrating remote dir to MDT0"
14428
14429         echo "migrate back to MDT0, checking.."
14430         for file in $(find $migrate_dir); do
14431                 mdt_index=$($LFS getstripe -M $file)
14432                 [ $mdt_index == $MDTIDX ] ||
14433                         error "$file is not on MDT${MDTIDX}"
14434         done
14435
14436         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
14437         [ "$old_dir_flag" = "$new_dir_flag" ] ||
14438                 error " expect $old_dir_flag get $new_dir_flag"
14439
14440         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
14441         [ "$old_file_flag" = "$new_file_flag" ] ||
14442                 error " expect $old_file_flag get $new_file_flag"
14443
14444         local new_dir_mode=$(stat -c%f $migrate_dir)
14445         [ "$old_dir_mode" = "$new_dir_mode" ] ||
14446                 error "expect mode $old_dir_mode get $new_dir_mode"
14447
14448         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
14449         [ "$old_file_mode" = "$new_file_mode" ] ||
14450                 error "expect mode $old_file_mode get $new_file_mode"
14451
14452         diff /etc/passwd ${migrate_dir}/$tfile ||
14453                 error "$tfile different after migration"
14454
14455         diff /etc/passwd ${other_dir}/luna ||
14456                 error "luna different after migration"
14457
14458         diff /etc/passwd ${migrate_dir}/sofia ||
14459                 error "sofia different after migration"
14460
14461         diff /etc/passwd ${other_dir}/zachary ||
14462                 error "zachary different after migration"
14463
14464         diff /etc/passwd $migrate_dir/${tfile}_ln ||
14465                 error "${tfile}_ln different after migration"
14466
14467         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
14468                 error "${tfile}_ln_other different after migration"
14469
14470         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
14471         [ $stripe_count = 2 ] ||
14472                 error "dir strpe_count $d != 2 after migration."
14473
14474         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
14475         [ $stripe_count = 2 ] ||
14476                 error "file strpe_count $d != 2 after migration."
14477
14478         rm -rf $DIR/$tdir || error "rm dir failed after migration"
14479 }
14480 run_test 230b "migrate directory"
14481
14482 test_230c() {
14483         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14484         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14485         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14486         local MDTIDX=1
14487         local mdt_index
14488         local file
14489         local migrate_dir=$DIR/$tdir/migrate_dir
14490
14491         #If migrating directory fails in the middle, all entries of
14492         #the directory is still accessiable.
14493         test_mkdir $DIR/$tdir
14494         test_mkdir -i0 -c1 $migrate_dir
14495         stat $migrate_dir
14496         createmany -o $migrate_dir/f 10 ||
14497                 error "create files under ${migrate_dir} failed"
14498
14499         #failed after migrating 5 entries
14500         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
14501         do_facet mds1 lctl set_param fail_loc=0x20001801
14502         do_facet mds1 lctl  set_param fail_val=5
14503         local t=$(ls $migrate_dir | wc -l)
14504         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
14505                 error "migrate should fail after 5 entries"
14506
14507         mkdir $migrate_dir/dir &&
14508                 error "mkdir succeeds under migrating directory"
14509         touch $migrate_dir/file &&
14510                 error "touch file succeeds under migrating directory"
14511
14512         local u=$(ls $migrate_dir | wc -l)
14513         [ "$u" == "$t" ] || error "$u != $t during migration"
14514
14515         for file in $(find $migrate_dir); do
14516                 stat $file || error "stat $file failed"
14517         done
14518
14519         do_facet mds1 lctl set_param fail_loc=0
14520         do_facet mds1 lctl set_param fail_val=0
14521
14522         $LFS migrate -m $MDTIDX $migrate_dir ||
14523                 error "migrate open files should failed with open files"
14524
14525         echo "Finish migration, then checking.."
14526         for file in $(find $migrate_dir); do
14527                 mdt_index=$($LFS getstripe -M $file)
14528                 [ $mdt_index == $MDTIDX ] ||
14529                         error "$file is not on MDT${MDTIDX}"
14530         done
14531
14532         rm -rf $DIR/$tdir || error "rm dir failed after migration"
14533 }
14534 run_test 230c "check directory accessiblity if migration is failed"
14535
14536 test_230d() {
14537         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14538         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14539         local MDTIDX=1
14540         local mdt_index
14541         local migrate_dir=$DIR/$tdir/migrate_dir
14542         local i
14543         local j
14544
14545         test_mkdir $DIR/$tdir
14546         test_mkdir -i0 -c1 $migrate_dir
14547
14548         for ((i=0; i<100; i++)); do
14549                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
14550                 createmany -o $migrate_dir/dir_${i}/f 100 ||
14551                         error "create files under remote dir failed $i"
14552         done
14553
14554         $LFS migrate -m $MDTIDX $migrate_dir ||
14555                 error "migrate remote dir error"
14556
14557         echo "Finish migration, then checking.."
14558         for file in $(find $migrate_dir); do
14559                 mdt_index=$($LFS getstripe -M $file)
14560                 [ $mdt_index == $MDTIDX ] ||
14561                         error "$file is not on MDT${MDTIDX}"
14562         done
14563
14564         rm -rf $DIR/$tdir || error "rm dir failed after migration"
14565 }
14566 run_test 230d "check migrate big directory"
14567
14568 test_230e() {
14569         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14570         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14571         local i
14572         local j
14573         local a_fid
14574         local b_fid
14575
14576         mkdir -p $DIR/$tdir
14577         mkdir $DIR/$tdir/migrate_dir
14578         mkdir $DIR/$tdir/other_dir
14579         touch $DIR/$tdir/migrate_dir/a
14580         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
14581         ls $DIR/$tdir/other_dir
14582
14583         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
14584                 error "migrate dir fails"
14585
14586         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
14587         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
14588
14589         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
14590         [ $mdt_index == 0 ] || error "a is not on MDT0"
14591
14592         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
14593                 error "migrate dir fails"
14594
14595         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir)
14596         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
14597
14598         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
14599         [ $mdt_index == 1 ] || error "a is not on MDT1"
14600
14601         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir/b)
14602         [ $mdt_index == 1 ] || error "b is not on MDT1"
14603
14604         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
14605         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
14606
14607         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
14608
14609         rm -rf $DIR/$tdir || error "rm dir failed after migration"
14610 }
14611 run_test 230e "migrate mulitple local link files"
14612
14613 test_230f() {
14614         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14615         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14616         local a_fid
14617         local ln_fid
14618
14619         mkdir -p $DIR/$tdir
14620         mkdir $DIR/$tdir/migrate_dir
14621         $LFS mkdir -i1 $DIR/$tdir/other_dir
14622         touch $DIR/$tdir/migrate_dir/a
14623         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
14624         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
14625         ls $DIR/$tdir/other_dir
14626
14627         # a should be migrated to MDT1, since no other links on MDT0
14628         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
14629                 error "#1 migrate dir fails"
14630         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
14631         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
14632         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
14633         [ $mdt_index == 1 ] || error "a is not on MDT1"
14634
14635         # a should stay on MDT1, because it is a mulitple link file
14636         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
14637                 error "#2 migrate dir fails"
14638         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
14639         [ $mdt_index == 1 ] || error "a is not on MDT1"
14640
14641         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
14642                 error "#3 migrate dir fails"
14643
14644         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
14645         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
14646         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
14647
14648         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
14649         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
14650
14651         # a should be migrated to MDT0, since no other links on MDT1
14652         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
14653                 error "#4 migrate dir fails"
14654         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
14655         [ $mdt_index == 0 ] || error "a is not on MDT0"
14656
14657         rm -rf $DIR/$tdir || error "rm dir failed after migration"
14658 }
14659 run_test 230f "migrate mulitple remote link files"
14660
14661 test_230g() {
14662         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14663         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14664
14665         mkdir -p $DIR/$tdir/migrate_dir
14666
14667         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
14668                 error "migrating dir to non-exist MDT succeeds"
14669         true
14670 }
14671 run_test 230g "migrate dir to non-exist MDT"
14672
14673 test_230h() {
14674         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14675         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14676         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
14677                 skip "Need MDS version at least 2.7.64" && return
14678         local mdt_index
14679
14680         mkdir -p $DIR/$tdir/migrate_dir
14681
14682         $LFS migrate -m1 $DIR &&
14683                 error "migrating mountpoint1 should fail"
14684
14685         $LFS migrate -m1 $DIR/$tdir/.. &&
14686                 error "migrating mountpoint2 should fail"
14687
14688         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. ||
14689                 error "migrating $tdir fail"
14690
14691         mdt_index=$($LFS getstripe -M $DIR/$tdir)
14692         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
14693
14694         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
14695         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
14696
14697 }
14698 run_test 230h "migrate .. and root"
14699
14700 test_230i() {
14701         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14702         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14703
14704         mkdir -p $DIR/$tdir/migrate_dir
14705
14706         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
14707                 error "migration fails with a tailing slash"
14708
14709         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
14710                 error "migration fails with two tailing slashes"
14711 }
14712 run_test 230i "lfs migrate -m tolerates trailing slashes"
14713
14714 test_231a()
14715 {
14716         # For simplicity this test assumes that max_pages_per_rpc
14717         # is the same across all OSCs
14718         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
14719         local bulk_size=$((max_pages * 4096))
14720         local brw_size=$(do_facet ost1 $LCTL get_param -n obdfilter.*.brw_size |
14721                                        head -n 1)
14722
14723         mkdir -p $DIR/$tdir
14724         $LFS setstripe -S ${brw_size}M $DIR/$tdir ||
14725                 error "failed to set stripe with -S ${brw_size}M option"
14726
14727         # clear the OSC stats
14728         $LCTL set_param osc.*.stats=0 &>/dev/null
14729         stop_writeback
14730
14731         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
14732         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
14733                 oflag=direct &>/dev/null || error "dd failed"
14734
14735         sync; sleep 1; sync # just to be safe
14736         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
14737         if [ x$nrpcs != "x1" ]; then
14738                 $LCTL get_param osc.*.stats
14739                 error "found $nrpcs ost_write RPCs, not 1 as expected"
14740         fi
14741
14742         start_writeback
14743         # Drop the OSC cache, otherwise we will read from it
14744         cancel_lru_locks osc
14745
14746         # clear the OSC stats
14747         $LCTL set_param osc.*.stats=0 &>/dev/null
14748
14749         # Client reads $bulk_size.
14750         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
14751                 iflag=direct &>/dev/null || error "dd failed"
14752
14753         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
14754         if [ x$nrpcs != "x1" ]; then
14755                 $LCTL get_param osc.*.stats
14756                 error "found $nrpcs ost_read RPCs, not 1 as expected"
14757         fi
14758 }
14759 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
14760
14761 test_231b() {
14762         mkdir -p $DIR/$tdir
14763         local i
14764         for i in {0..1023}; do
14765                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
14766                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
14767                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
14768         done
14769         sync
14770 }
14771 run_test 231b "must not assert on fully utilized OST request buffer"
14772
14773 test_232a() {
14774         mkdir -p $DIR/$tdir
14775         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
14776
14777         #define OBD_FAIL_LDLM_OST_LVB            0x31c
14778         do_facet ost1 $LCTL set_param fail_loc=0x31c
14779
14780         # ignore dd failure
14781         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
14782
14783         do_facet ost1 $LCTL set_param fail_loc=0
14784         umount_client $MOUNT || error "umount failed"
14785         mount_client $MOUNT || error "mount failed"
14786         stop ost1 || error "cannot stop ost1"
14787         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
14788 }
14789 run_test 232a "failed lock should not block umount"
14790
14791 test_232b() {
14792         mkdir -p $DIR/$tdir
14793         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
14794         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1
14795         sync
14796         cancel_lru_locks osc
14797
14798         #define OBD_FAIL_LDLM_OST_LVB            0x31c
14799         do_facet ost1 $LCTL set_param fail_loc=0x31c
14800
14801         # ignore failure
14802         $LFS data_version $DIR/$tdir/$tfile || true
14803
14804         do_facet ost1 $LCTL set_param fail_loc=0
14805         umount_client $MOUNT || error "umount failed"
14806         mount_client $MOUNT || error "mount failed"
14807         stop ost1 || error "cannot stop ost1"
14808         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
14809 }
14810 run_test 232b "failed data version lock should not block umount"
14811
14812 test_233a() {
14813         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
14814         { skip "Need MDS version at least 2.3.64"; return; }
14815         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
14816
14817         local fid=$($LFS path2fid $MOUNT)
14818         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
14819                 error "cannot access $MOUNT using its FID '$fid'"
14820 }
14821 run_test 233a "checking that OBF of the FS root succeeds"
14822
14823 test_233b() {
14824         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
14825         { skip "Need MDS version at least 2.5.90"; return; }
14826         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
14827
14828         local fid=$($LFS path2fid $MOUNT/.lustre)
14829         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
14830                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
14831
14832         fid=$($LFS path2fid $MOUNT/.lustre/fid)
14833         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
14834                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
14835 }
14836 run_test 233b "checking that OBF of the FS .lustre succeeds"
14837
14838 test_234() {
14839         local p="$TMP/sanityN-$TESTNAME.parameters"
14840         save_lustre_params client "llite.*.xattr_cache" > $p
14841         lctl set_param llite.*.xattr_cache 1 ||
14842                 { skip "xattr cache is not supported"; return 0; }
14843
14844         mkdir -p $DIR/$tdir || error "mkdir failed"
14845         touch $DIR/$tdir/$tfile || error "touch failed"
14846         # OBD_FAIL_LLITE_XATTR_ENOMEM
14847         $LCTL set_param fail_loc=0x1405
14848         getfattr -n user.attr $DIR/$tdir/$tfile &&
14849                 error "getfattr should have failed with ENOMEM"
14850         $LCTL set_param fail_loc=0x0
14851         rm -rf $DIR/$tdir
14852
14853         restore_lustre_params < $p
14854         rm -f $p
14855 }
14856 run_test 234 "xattr cache should not crash on ENOMEM"
14857
14858 test_235() {
14859         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
14860                 skip "Need MDS version at least 2.4.52" && return
14861         flock_deadlock $DIR/$tfile
14862         local RC=$?
14863         case $RC in
14864                 0)
14865                 ;;
14866                 124) error "process hangs on a deadlock"
14867                 ;;
14868                 *) error "error executing flock_deadlock $DIR/$tfile"
14869                 ;;
14870         esac
14871 }
14872 run_test 235 "LU-1715: flock deadlock detection does not work properly"
14873
14874 #LU-2935
14875 test_236() {
14876         check_swap_layouts_support && return 0
14877         test_mkdir -c1 $DIR/$tdir
14878
14879         local ref1=/etc/passwd
14880         local ref2=/etc/group
14881         local file1=$DIR/$tdir/f1
14882         local file2=$DIR/$tdir/f2
14883
14884         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
14885         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
14886         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
14887         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
14888         local fd=$(free_fd)
14889         local cmd="exec $fd<>$file2"
14890         eval $cmd
14891         rm $file2
14892         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
14893                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
14894         cmd="exec $fd>&-"
14895         eval $cmd
14896         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
14897
14898         #cleanup
14899         rm -rf $DIR/$tdir
14900 }
14901 run_test 236 "Layout swap on open unlinked file"
14902
14903 # test to verify file handle related system calls
14904 # (name_to_handle_at/open_by_handle_at)
14905 # The new system calls are supported in glibc >= 2.14.
14906
14907 test_237() {
14908         echo "Test file_handle syscalls" > $DIR/$tfile ||
14909                 error "write failed"
14910         check_fhandle_syscalls $DIR/$tfile ||
14911                 error "check_fhandle_syscalls failed"
14912 }
14913 run_test 237 "Verify name_to_handle_at/open_by_handle_at syscalls"
14914
14915 # LU-4659 linkea consistency
14916 test_238() {
14917         local server_version=$(lustre_version_code $SINGLEMDS)
14918
14919         [[ $server_version -gt $(version_code 2.5.57) ]] ||
14920                 [[ $server_version -gt $(version_code 2.5.1) &&
14921                    $server_version -lt $(version_code 2.5.50) ]] ||
14922                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
14923
14924         touch $DIR/$tfile
14925         ln $DIR/$tfile $DIR/$tfile.lnk
14926         touch $DIR/$tfile.new
14927         mv $DIR/$tfile.new $DIR/$tfile
14928         local fid1=$($LFS path2fid $DIR/$tfile)
14929         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
14930         local path1=$($LFS fid2path $FSNAME "$fid1")
14931         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
14932         local path2=$($LFS fid2path $FSNAME "$fid2")
14933         [ $tfile.lnk == $path2 ] ||
14934                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
14935         rm -f $DIR/$tfile*
14936 }
14937 run_test 238 "Verify linkea consistency"
14938
14939 test_239() {
14940         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.60) ] &&
14941                 skip "Need MDS version at least 2.5.60" && return
14942         local list=$(comma_list $(mdts_nodes))
14943
14944         mkdir -p $DIR/$tdir
14945         createmany -o $DIR/$tdir/f- 5000
14946         unlinkmany $DIR/$tdir/f- 5000
14947         [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.10.53) ] &&
14948                 do_nodes $list "lctl set_param -n osp.*.force_sync=1"
14949         changes=$(do_nodes $list "lctl get_param -n osp.*MDT*.sync_changes \
14950                         osp.*MDT*.sync_in_flight" | calc_sum)
14951         [ "$changes" -eq 0 ] || error "$changes not synced"
14952 }
14953 run_test 239 "osp_sync test"
14954
14955 test_239a() { #LU-5297
14956         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14957         touch $DIR/$tfile
14958         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
14959         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
14960         chgrp $RUNAS_GID $DIR/$tfile
14961         wait_delete_completed
14962 }
14963 run_test 239a "process invalid osp sync record correctly"
14964
14965 test_239b() { #LU-5297
14966         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14967         touch $DIR/$tfile1
14968         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
14969         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
14970         chgrp $RUNAS_GID $DIR/$tfile1
14971         wait_delete_completed
14972         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
14973         touch $DIR/$tfile2
14974         chgrp $RUNAS_GID $DIR/$tfile2
14975         wait_delete_completed
14976 }
14977 run_test 239b "process osp sync record with ENOMEM error correctly"
14978
14979 test_240() {
14980         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14981         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14982
14983         mkdir -p $DIR/$tdir
14984
14985         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
14986                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
14987         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
14988                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
14989
14990         umount_client $MOUNT || error "umount failed"
14991         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
14992         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
14993         mount_client $MOUNT || error "failed to mount client"
14994
14995         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
14996         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
14997 }
14998 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
14999
15000 test_241_bio() {
15001         for LOOP in $(seq $1); do
15002                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 2>/dev/null
15003                 cancel_lru_locks $OSC || true
15004         done
15005 }
15006
15007 test_241_dio() {
15008         for LOOP in $(seq $1); do
15009                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 \
15010                                                 iflag=direct 2>/dev/null
15011         done
15012 }
15013
15014 test_241a() { # was test_241
15015         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
15016         ls -la $DIR/$tfile
15017         cancel_lru_locks $OSC
15018         test_241_bio 1000 &
15019         PID=$!
15020         test_241_dio 1000
15021         wait $PID
15022 }
15023 run_test 241a "bio vs dio"
15024
15025 test_241b() {
15026         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
15027         ls -la $DIR/$tfile
15028         test_241_dio 1000 &
15029         PID=$!
15030         test_241_dio 1000
15031         wait $PID
15032 }
15033 run_test 241b "dio vs dio"
15034
15035 test_242() {
15036         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15037         mkdir -p $DIR/$tdir
15038         touch $DIR/$tdir/$tfile
15039
15040         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
15041         do_facet mds1 lctl set_param fail_loc=0x105
15042         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
15043
15044         do_facet mds1 lctl set_param fail_loc=0
15045         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
15046 }
15047 run_test 242 "mdt_readpage failure should not cause directory unreadable"
15048
15049 test_243()
15050 {
15051         test_mkdir $DIR/$tdir
15052         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
15053 }
15054 run_test 243 "various group lock tests"
15055
15056 test_244()
15057 {
15058         test_mkdir $DIR/$tdir
15059         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
15060         sendfile_grouplock $DIR/$tdir/$tfile || \
15061                 error "sendfile+grouplock failed"
15062         rm -rf $DIR/$tdir
15063 }
15064 run_test 244 "sendfile with group lock tests"
15065
15066 test_245() {
15067         local flagname="multi_mod_rpcs"
15068         local connect_data_name="max_mod_rpcs"
15069         local out
15070
15071         # check if multiple modify RPCs flag is set
15072         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
15073                 grep "connect_flags:")
15074         echo "$out"
15075
15076         echo "$out" | grep -qw $flagname
15077         if [ $? -ne 0 ]; then
15078                 echo "connect flag $flagname is not set"
15079                 return
15080         fi
15081
15082         # check if multiple modify RPCs data is set
15083         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
15084         echo "$out"
15085
15086         echo "$out" | grep -qw $connect_data_name ||
15087                 error "import should have connect data $connect_data_name"
15088 }
15089 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
15090
15091 test_246() { # LU-7371
15092         remote_ost_nodsh && skip "remote OST with nodsh" && return
15093         [ $(lustre_version_code ost1) -lt $(version_code 2.7.62) ] &&
15094                 skip "Need OST version >= 2.7.62" && return 0
15095         do_facet ost1 $LCTL set_param fail_val=4095
15096 #define OBD_FAIL_OST_READ_SIZE          0x234
15097         do_facet ost1 $LCTL set_param fail_loc=0x234
15098         $LFS setstripe $DIR/$tfile -i 0 -c 1
15099         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
15100         cancel_lru_locks $FSNAME-OST0000
15101         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
15102 }
15103 run_test 246 "Read file of size 4095 should return right length"
15104
15105 cleanup_247() {
15106         local submount=$1
15107
15108         trap 0
15109         umount_client $submount
15110         rmdir $submount
15111 }
15112
15113 test_247a() {
15114         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
15115                 grep -q subtree ||
15116                 { skip "Fileset feature is not supported"; return; }
15117
15118         local submount=${MOUNT}_$tdir
15119
15120         mkdir $MOUNT/$tdir
15121         mkdir -p $submount || error "mkdir $submount failed"
15122         FILESET="$FILESET/$tdir" mount_client $submount ||
15123                 error "mount $submount failed"
15124         trap "cleanup_247 $submount" EXIT
15125         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
15126         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
15127                 error "read $MOUNT/$tdir/$tfile failed"
15128         cleanup_247 $submount
15129 }
15130 run_test 247a "mount subdir as fileset"
15131
15132 test_247b() {
15133         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
15134                 { skip "Fileset feature is not supported"; return; }
15135
15136         local submount=${MOUNT}_$tdir
15137
15138         rm -rf $MOUNT/$tdir
15139         mkdir -p $submount || error "mkdir $submount failed"
15140         SKIP_FILESET=1
15141         FILESET="$FILESET/$tdir" mount_client $submount &&
15142                 error "mount $submount should fail"
15143         rmdir $submount
15144 }
15145 run_test 247b "mount subdir that dose not exist"
15146
15147 test_247c() {
15148         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
15149                 { skip "Fileset feature is not supported"; return; }
15150
15151         local submount=${MOUNT}_$tdir
15152
15153         mkdir -p $MOUNT/$tdir/dir1
15154         mkdir -p $submount || error "mkdir $submount failed"
15155         trap "cleanup_247 $submount" EXIT
15156         FILESET="$FILESET/$tdir" mount_client $submount ||
15157                 error "mount $submount failed"
15158         local fid=$($LFS path2fid $MOUNT/)
15159         $LFS fid2path $submount $fid && error "fid2path should fail"
15160         cleanup_247 $submount
15161 }
15162 run_test 247c "running fid2path outside root"
15163
15164 test_247d() {
15165         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
15166                 { skip "Fileset feature is not supported"; return; }
15167
15168         local submount=${MOUNT}_$tdir
15169
15170         mkdir -p $MOUNT/$tdir/dir1
15171         mkdir -p $submount || error "mkdir $submount failed"
15172         FILESET="$FILESET/$tdir" mount_client $submount ||
15173                 error "mount $submount failed"
15174         trap "cleanup_247 $submount" EXIT
15175         local fid=$($LFS path2fid $submount/dir1)
15176         $LFS fid2path $submount $fid || error "fid2path should succeed"
15177         cleanup_247 $submount
15178 }
15179 run_test 247d "running fid2path inside root"
15180
15181 # LU-8037
15182 test_247e() {
15183         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
15184                 grep -q subtree ||
15185                 { skip "Fileset feature is not supported"; return; }
15186
15187         local submount=${MOUNT}_$tdir
15188
15189         mkdir $MOUNT/$tdir
15190         mkdir -p $submount || error "mkdir $submount failed"
15191         FILESET="$FILESET/.." mount_client $submount &&
15192                 error "mount $submount should fail"
15193         rmdir $submount
15194 }
15195 run_test 247e "mount .. as fileset"
15196
15197 test_248() {
15198         local fast_read_sav=$($LCTL get_param -n llite.*.fast_read 2>/dev/null)
15199         [ -z "$fast_read_sav" ] && skip "no fast read support" && return
15200
15201         # create a large file for fast read verification
15202         dd if=/dev/zero of=$DIR/$tfile bs=1M count=128 > /dev/null 2>&1
15203
15204         # make sure the file is created correctly
15205         $CHECKSTAT -s $((128*1024*1024)) $DIR/$tfile ||
15206                 { rm -f $DIR/$tfile; skip "file creation error" && return; }
15207
15208         echo "Test 1: verify that fast read is 4 times faster on cache read"
15209
15210         # small read with fast read enabled
15211         $LCTL set_param -n llite.*.fast_read=1
15212         local t_fast=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
15213                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15214                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15215         # small read with fast read disabled
15216         $LCTL set_param -n llite.*.fast_read=0
15217         local t_slow=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
15218                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15219                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15220
15221         # verify that fast read is 4 times faster for cache read
15222         [ $(bc <<< "4 * $t_fast < $t_slow") -eq 1 ] ||
15223                 error_not_in_vm "fast read was not 4 times faster: " \
15224                            "$t_fast vs $t_slow"
15225
15226         echo "Test 2: verify the performance between big and small read"
15227         $LCTL set_param -n llite.*.fast_read=1
15228
15229         # 1k non-cache read
15230         cancel_lru_locks osc
15231         local t_1k=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
15232                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15233                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15234
15235         # 1M non-cache read
15236         cancel_lru_locks osc
15237         local t_1m=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
15238                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15239                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15240
15241         # verify that big IO is not 4 times faster than small IO
15242         [ $(bc <<< "4 * $t_1k >= $t_1m") -eq 1 ] ||
15243                 error_not_in_vm "bigger IO is way too fast: $t_1k vs $t_1m"
15244
15245         $LCTL set_param -n llite.*.fast_read=$fast_read_sav
15246         rm -f $DIR/$tfile
15247 }
15248 run_test 248 "fast read verification"
15249
15250 test_249() { # LU-7890
15251         rm -f $DIR/$tfile
15252         $SETSTRIPE -c 1 $DIR/$tfile
15253
15254         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
15255         skip "Need at least version 2.8.54"
15256
15257         # Offset 2T == 4k * 512M
15258         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 seek=512M ||
15259                 error "dd to 2T offset failed"
15260 }
15261 run_test 249 "Write above 2T file size"
15262
15263 test_250() {
15264         [ "$(facet_fstype ost$(($($GETSTRIPE -i $DIR/$tfile) + 1)))" = "zfs" ] \
15265          && skip "no 16TB file size limit on ZFS" && return
15266
15267         $SETSTRIPE -c 1 $DIR/$tfile
15268         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
15269         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
15270         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
15271         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
15272                 conv=notrunc,fsync && error "append succeeded"
15273         return 0
15274 }
15275 run_test 250 "Write above 16T limit"
15276
15277 test_251() {
15278         $SETSTRIPE -c -1 -S 1048576 $DIR/$tfile
15279
15280         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
15281         #Skip once - writing the first stripe will succeed
15282         $LCTL set_param fail_loc=0xa0001407 fail_val=1
15283         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
15284                 error "short write happened"
15285
15286         $LCTL set_param fail_loc=0xa0001407 fail_val=1
15287         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
15288                 error "short read happened"
15289
15290         rm -f $DIR/$tfile
15291 }
15292 run_test 251 "Handling short read and write correctly"
15293
15294 test_252() {
15295         local tgt
15296         local dev
15297         local out
15298         local uuid
15299         local num
15300         local gen
15301
15302         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15303         remote_ost_nodsh && skip "remote OST with nodsh" && return
15304         if [ "$(facet_fstype ost1)" != "ldiskfs" -o \
15305              "$(facet_fstype mds1)" != "ldiskfs" ]; then
15306                 skip "ldiskfs only test"
15307                 return
15308         fi
15309
15310         # check lr_reader on OST0000
15311         tgt=ost1
15312         dev=$(facet_device $tgt)
15313         out=$(do_facet $tgt $LR_READER $dev)
15314         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
15315         echo "$out"
15316         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
15317         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
15318                 error "Invalid uuid returned by $LR_READER on target $tgt"
15319         echo -e "uuid returned by $LR_READER is '$uuid'\n"
15320
15321         # check lr_reader -c on MDT0000
15322         tgt=mds1
15323         dev=$(facet_device $tgt)
15324         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
15325                 echo "$LR_READER does not support additional options"
15326                 return 0
15327         fi
15328         out=$(do_facet $tgt $LR_READER -c $dev)
15329         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
15330         echo "$out"
15331         num=$(echo "$out" | grep -c "mdtlov")
15332         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
15333                 error "Invalid number of mdtlov clients returned by $LR_READER"
15334         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
15335
15336         # check lr_reader -cr on MDT0000
15337         out=$(do_facet $tgt $LR_READER -cr $dev)
15338         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
15339         echo "$out"
15340         echo "$out" | grep -q "^reply_data:$" ||
15341                 error "$LR_READER should have returned 'reply_data' section"
15342         num=$(echo "$out" | grep -c "client_generation")
15343         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
15344 }
15345 run_test 252 "check lr_reader tool"
15346
15347 test_253_fill_ost() {
15348         local size_mb #how many MB should we write to pass watermark
15349         local lwm=$3  #low watermark
15350         local free_10mb #10% of free space
15351
15352         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
15353         size_mb=$((free_kb / 1024 - lwm))
15354         free_10mb=$((free_kb / 10240))
15355         #If 10% of free space cross low watermark use it
15356         if (( free_10mb > size_mb )); then
15357                 size_mb=$free_10mb
15358         else
15359                 #At least we need to store 1.1 of difference between
15360                 #free space and low watermark
15361                 size_mb=$((size_mb + size_mb / 10))
15362         fi
15363         if (( lwm <= $((free_kb / 1024)) )) || [ ! -f $DIR/$tdir/1 ]; then
15364                 dd if=/dev/zero of=$DIR/$tdir/1 bs=1M count=$size_mb \
15365                          oflag=append conv=notrunc
15366         fi
15367
15368         sleep_maxage
15369
15370         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
15371         echo "OST still has $((free_kb / 1024)) mbytes free"
15372 }
15373
15374 test_253() {
15375         local ostidx=0
15376         local rc=0
15377
15378         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15379         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15380         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
15381
15382         local ost_name=$($LFS osts |
15383                 sed -n 's/^'$ostidx': \(.*\)_UUID .*/\1/p')
15384         # on the mdt's osc
15385         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $ost_name)
15386         do_facet $SINGLEMDS $LCTL get_param -n \
15387                 osp.$mdtosc_proc1.reserved_mb_high ||
15388                 { skip  "remote MDS does not support reserved_mb_high" &&
15389                   return; }
15390
15391         rm -rf $DIR/$tdir
15392         wait_mds_ost_sync
15393         wait_delete_completed
15394         mkdir $DIR/$tdir
15395
15396         local last_wm_h=$(do_facet $SINGLEMDS $LCTL get_param -n \
15397                         osp.$mdtosc_proc1.reserved_mb_high)
15398         local last_wm_l=$(do_facet $SINGLEMDS $LCTL get_param -n \
15399                         osp.$mdtosc_proc1.reserved_mb_low)
15400         echo "prev high watermark $last_wm_h, prev low watermark $last_wm_l"
15401
15402         if ! combined_mgs_mds ; then
15403                 mount_mgs_client
15404         fi
15405         create_pool $FSNAME.$TESTNAME || error "Pool creation failed"
15406         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $ost_name ||
15407                 error "Adding $ost_name to pool failed"
15408
15409         # Wait for client to see a OST at pool
15410         wait_update $HOSTNAME "$LCTL get_param -n
15411                 lov.$FSNAME-*.pools.$TESTNAME | sort -u |
15412                 grep $ost_name" "$ost_name""_UUID" $((TIMEOUT/2)) ||
15413                 error "Client can not see the pool"
15414         $SETSTRIPE $DIR/$tdir -i $ostidx -c 1 -p $FSNAME.$TESTNAME ||
15415                 error "Setstripe failed"
15416
15417         dd if=/dev/zero of=$DIR/$tdir/0 bs=1M count=10
15418         local blocks=$($LFS df $MOUNT | grep $ost_name | awk '{ print $4 }')
15419         echo "OST still has $((blocks/1024)) mbytes free"
15420
15421         local new_lwm=$((blocks/1024-10))
15422         do_facet $SINGLEMDS $LCTL set_param \
15423                         osp.$mdtosc_proc1.reserved_mb_high=$((new_lwm+5))
15424         do_facet $SINGLEMDS $LCTL set_param \
15425                         osp.$mdtosc_proc1.reserved_mb_low=$new_lwm
15426
15427         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
15428
15429         #First enospc could execute orphan deletion so repeat.
15430         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
15431
15432         local oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
15433                         osp.$mdtosc_proc1.prealloc_status)
15434         echo "prealloc_status $oa_status"
15435
15436         dd if=/dev/zero of=$DIR/$tdir/2 bs=1M count=1 &&
15437                 error "File creation should fail"
15438         #object allocation was stopped, but we still able to append files
15439         dd if=/dev/zero of=$DIR/$tdir/1 bs=1M seek=6 count=5 oflag=append ||
15440                 error "Append failed"
15441         rm -f $DIR/$tdir/1 $DIR/$tdir/0 $DIR/$tdir/r*
15442
15443         wait_delete_completed
15444
15445         sleep_maxage
15446
15447         for i in $(seq 10 12); do
15448                 dd if=/dev/zero of=$DIR/$tdir/$i bs=1M count=1 2>/dev/null ||
15449                         error "File creation failed after rm";
15450         done
15451
15452         oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
15453                         osp.$mdtosc_proc1.prealloc_status)
15454         echo "prealloc_status $oa_status"
15455
15456         if (( oa_status != 0 )); then
15457                 error "Object allocation still disable after rm"
15458         fi
15459         do_facet $SINGLEMDS $LCTL set_param \
15460                         osp.$mdtosc_proc1.reserved_mb_high=$last_wm_h
15461         do_facet $SINGLEMDS $LCTL set_param \
15462                         osp.$mdtosc_proc1.reserved_mb_low=$last_wm_l
15463
15464
15465         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $ost_name ||
15466                 error "Remove $ost_name from pool failed"
15467         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
15468                 error "Pool destroy fialed"
15469
15470         if ! combined_mgs_mds ; then
15471                 umount_mgs_client
15472         fi
15473 }
15474 run_test 253 "Check object allocation limit"
15475
15476 test_254() {
15477         local cl_user
15478
15479         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15480         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15481         do_facet mds1 $LCTL get_param -n mdd.$MDT0.changelog_size ||
15482                 { skip "MDS does not support changelog_size" && return; }
15483
15484         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
15485         echo "Registered as changelog user $cl_user"
15486
15487         $LFS changelog_clear $MDT0 $cl_user 0
15488
15489         local size1=$(do_facet mds1 \
15490                       $LCTL get_param -n mdd.$MDT0.changelog_size)
15491         echo "Changelog size $size1"
15492
15493         rm -rf $DIR/$tdir
15494         $LFS mkdir -i 0 $DIR/$tdir
15495         # change something
15496         mkdir -p $DIR/$tdir/pics/2008/zachy
15497         touch $DIR/$tdir/pics/2008/zachy/timestamp
15498         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
15499         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
15500         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
15501         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
15502         rm $DIR/$tdir/pics/desktop.jpg
15503
15504         local size2=$(do_facet mds1 \
15505                       $LCTL get_param -n mdd.$MDT0.changelog_size)
15506         echo "Changelog size after work $size2"
15507
15508         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
15509
15510         if (( size2 <= size1 )); then
15511                 error "Changelog size after work should be greater than original"
15512         fi
15513         return 0
15514 }
15515 run_test 254 "Check changelog size"
15516
15517 ladvise_no_type()
15518 {
15519         local type=$1
15520         local file=$2
15521
15522         lfs ladvise -a invalid $file 2>&1 | grep "Valid types" |
15523                 awk -F: '{print $2}' | grep $type > /dev/null
15524         if [ $? -ne 0 ]; then
15525                 return 0
15526         fi
15527         return 1
15528 }
15529
15530 ladvise_no_ioctl()
15531 {
15532         local file=$1
15533
15534         lfs ladvise -a willread $file > /dev/null 2>&1
15535         if [ $? -eq 0 ]; then
15536                 return 1
15537         fi
15538
15539         lfs ladvise -a willread $file 2>&1 |
15540                 grep "Inappropriate ioctl for device" > /dev/null
15541         if [ $? -eq 0 ]; then
15542                 return 0
15543         fi
15544         return 1
15545 }
15546
15547 percent() {
15548         bc <<<"scale=2; ($1 - $2) * 100 / $2"
15549 }
15550
15551 # run a random read IO workload
15552 # usage: random_read_iops <filename> <filesize> <iosize>
15553 random_read_iops() {
15554         local file=$1
15555         local fsize=$2
15556         local iosize=${3:-4096}
15557
15558         $READS -f $file -s $fsize -b $iosize -n $((fsize / iosize)) -t 60 |
15559                 sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##'
15560 }
15561
15562 drop_file_oss_cache() {
15563         local file="$1"
15564         local nodes="$2"
15565
15566         $LFS ladvise -a dontneed $file 2>/dev/null ||
15567                 do_nodes $nodes "echo 3 > /proc/sys/vm/drop_caches"
15568 }
15569
15570 ladvise_willread_performance()
15571 {
15572         local repeat=10
15573         local average_origin=0
15574         local average_cache=0
15575         local average_ladvise=0
15576
15577         for ((i = 1; i <= $repeat; i++)); do
15578                 echo "Iter $i/$repeat: reading without willread hint"
15579                 cancel_lru_locks osc
15580                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
15581                 local speed_origin=$(random_read_iops $DIR/$tfile $size)
15582                 echo "Iter $i/$repeat: uncached speed: $speed_origin"
15583                 average_origin=$(bc <<<"$average_origin + $speed_origin")
15584
15585                 cancel_lru_locks osc
15586                 local speed_cache=$(random_read_iops $DIR/$tfile $size)
15587                 echo "Iter $i/$repeat: OSS cache speed: $speed_cache"
15588                 average_cache=$(bc <<<"$average_cache + $speed_cache")
15589
15590                 cancel_lru_locks osc
15591                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
15592                 $LFS ladvise -a willread $DIR/$tfile || error "ladvise failed"
15593                 local speed_ladvise=$(random_read_iops $DIR/$tfile $size)
15594                 echo "Iter $i/$repeat: ladvise speed: $speed_ladvise"
15595                 average_ladvise=$(bc <<<"$average_ladvise + $speed_ladvise")
15596         done
15597         average_origin=$(bc <<<"scale=2; $average_origin / $repeat")
15598         average_cache=$(bc <<<"scale=2; $average_cache / $repeat")
15599         average_ladvise=$(bc <<<"scale=2; $average_ladvise / $repeat")
15600
15601         speedup_cache=$(percent $average_cache $average_origin)
15602         speedup_ladvise=$(percent $average_ladvise $average_origin)
15603
15604         echo "Average uncached read: $average_origin"
15605         echo "Average speedup with OSS cached read: " \
15606                 "$average_cache = +$speedup_cache%"
15607         echo "Average speedup with ladvise willread: " \
15608                 "$average_ladvise = +$speedup_ladvise%"
15609
15610         local lowest_speedup=20
15611         if [ ${average_cache%.*} -lt $lowest_speedup ]; then
15612                 echo "Speedup with OSS cached read less than $lowest_speedup%," \
15613                         "got $average_cache%. Skipping ladvise willread check."
15614                 return 0
15615         fi
15616
15617         # the test won't work on ZFS until it supports 'ladvise dontneed', but
15618         # it is still good to run until then to exercise 'ladvise willread'
15619         ! $LFS ladvise -a dontneed $DIR/$tfile &&
15620                 [ "$(facet_fstype ost1)" = "zfs" ] &&
15621                 echo "osd-zfs does not support dontneed or drop_caches" &&
15622                 return 0
15623
15624         lowest_speedup=$(bc <<<"scale=2; $average_cache / 2")
15625         [ ${average_ladvise%.*} -gt $lowest_speedup ] ||
15626                 error_not_in_vm "Speedup with willread is less than " \
15627                         "$lowest_speedup%, got $average_ladvise%"
15628 }
15629
15630 test_255a() {
15631         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
15632                 skip "lustre < 2.8.54 does not support ladvise " && return
15633         remote_ost_nodsh && skip "remote OST with nodsh" && return
15634
15635         lfs setstripe -c -1 -i 0 $DIR/$tfile || error "$tfile failed"
15636
15637         ladvise_no_type willread $DIR/$tfile &&
15638                 skip "willread ladvise is not supported" && return
15639
15640         ladvise_no_ioctl $DIR/$tfile &&
15641                 skip "ladvise ioctl is not supported" && return
15642
15643         local size_mb=100
15644         local size=$((size_mb * 1048576))
15645         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
15646                 error "dd to $DIR/$tfile failed"
15647
15648         lfs ladvise -a willread $DIR/$tfile ||
15649                 error "Ladvise failed with no range argument"
15650
15651         lfs ladvise -a willread -s 0 $DIR/$tfile ||
15652                 error "Ladvise failed with no -l or -e argument"
15653
15654         lfs ladvise -a willread -e 1 $DIR/$tfile ||
15655                 error "Ladvise failed with only -e argument"
15656
15657         lfs ladvise -a willread -l 1 $DIR/$tfile ||
15658                 error "Ladvise failed with only -l argument"
15659
15660         lfs ladvise -a willread -s 2 -e 1 $DIR/$tfile &&
15661                 error "End offset should not be smaller than start offset"
15662
15663         lfs ladvise -a willread -s 2 -e 2 $DIR/$tfile &&
15664                 error "End offset should not be equal to start offset"
15665
15666         lfs ladvise -a willread -s $size -l 1 $DIR/$tfile ||
15667                 error "Ladvise failed with overflowing -s argument"
15668
15669         lfs ladvise -a willread -s 1 -e $((size + 1)) $DIR/$tfile ||
15670                 error "Ladvise failed with overflowing -e argument"
15671
15672         lfs ladvise -a willread -s 1 -l $size $DIR/$tfile ||
15673                 error "Ladvise failed with overflowing -l argument"
15674
15675         lfs ladvise -a willread -l 1 -e 2 $DIR/$tfile &&
15676                 error "Ladvise succeeded with conflicting -l and -e arguments"
15677
15678         echo "Synchronous ladvise should wait"
15679         local delay=4
15680 #define OBD_FAIL_OST_LADVISE_PAUSE       0x237
15681         do_nodes $(comma_list $(osts_nodes)) \
15682                 $LCTL set_param fail_val=$delay fail_loc=0x237
15683
15684         local start_ts=$SECONDS
15685         lfs ladvise -a willread $DIR/$tfile ||
15686                 error "Ladvise failed with no range argument"
15687         local end_ts=$SECONDS
15688         local inteval_ts=$((end_ts - start_ts))
15689
15690         if [ $inteval_ts -lt $(($delay - 1)) ]; then
15691                 error "Synchronous advice didn't wait reply"
15692         fi
15693
15694         echo "Asynchronous ladvise shouldn't wait"
15695         local start_ts=$SECONDS
15696         lfs ladvise -a willread -b $DIR/$tfile ||
15697                 error "Ladvise failed with no range argument"
15698         local end_ts=$SECONDS
15699         local inteval_ts=$((end_ts - start_ts))
15700
15701         if [ $inteval_ts -gt $(($delay / 2)) ]; then
15702                 error "Asynchronous advice blocked"
15703         fi
15704
15705         do_nodes $(comma_list $(osts_nodes)) $LCTL set_param fail_loc=0
15706         ladvise_willread_performance
15707 }
15708 run_test 255a "check 'lfs ladvise -a willread'"
15709
15710 facet_meminfo() {
15711         local facet=$1
15712         local info=$2
15713
15714         do_facet $facet "cat /proc/meminfo | grep ^${info}:" | awk '{print $2}'
15715 }
15716
15717 test_255b() {
15718         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
15719                 skip "lustre < 2.8.54 does not support ladvise " && return
15720         remote_ost_nodsh && skip "remote OST with nodsh" && return
15721
15722         lfs setstripe -c 1 -i 0 $DIR/$tfile
15723
15724         ladvise_no_type dontneed $DIR/$tfile &&
15725                 skip "dontneed ladvise is not supported" && return
15726
15727         ladvise_no_ioctl $DIR/$tfile &&
15728                 skip "ladvise ioctl is not supported" && return
15729
15730         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
15731                 skip "lustre < 2.8.54 does not support ladvise" && return
15732
15733         ! $LFS ladvise -a dontneed $DIR/$tfile &&
15734                 [ "$(facet_fstype ost1)" = "zfs" ] &&
15735                 skip "zfs-osd does not support 'ladvise dontneed'" && return
15736
15737         local size_mb=100
15738         local size=$((size_mb * 1048576))
15739         # In order to prevent disturbance of other processes, only check 3/4
15740         # of the memory usage
15741         local kibibytes=$((size_mb * 1024 * 3 / 4))
15742
15743         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
15744                 error "dd to $DIR/$tfile failed"
15745
15746         local total=$(facet_meminfo ost1 MemTotal)
15747         echo "Total memory: $total KiB"
15748
15749         do_facet ost1 "sync && echo 3 > /proc/sys/vm/drop_caches"
15750         local before_read=$(facet_meminfo ost1 Cached)
15751         echo "Cache used before read: $before_read KiB"
15752
15753         lfs ladvise -a willread $DIR/$tfile ||
15754                 error "Ladvise willread failed"
15755         local after_read=$(facet_meminfo ost1 Cached)
15756         echo "Cache used after read: $after_read KiB"
15757
15758         lfs ladvise -a dontneed $DIR/$tfile ||
15759                 error "Ladvise dontneed again failed"
15760         local no_read=$(facet_meminfo ost1 Cached)
15761         echo "Cache used after dontneed ladvise: $no_read KiB"
15762
15763         if [ $total -lt $((before_read + kibibytes)) ]; then
15764                 echo "Memory is too small, abort checking"
15765                 return 0
15766         fi
15767
15768         if [ $((before_read + kibibytes)) -gt $after_read ]; then
15769                 error "Ladvise willread should use more memory" \
15770                         "than $kibibytes KiB"
15771         fi
15772
15773         if [ $((no_read + kibibytes)) -gt $after_read ]; then
15774                 error "Ladvise dontneed should release more memory" \
15775                         "than $kibibytes KiB"
15776         fi
15777 }
15778 run_test 255b "check 'lfs ladvise -a dontneed'"
15779
15780 test_255c() {
15781         local count
15782         local new_count
15783         local difference
15784         local i
15785         local rc
15786
15787         [ $(lustre_version_code ost1) -lt $(version_code 2.10.50) ] &&
15788                 skip "lustre < 2.10.53 does not support lockahead" && return
15789
15790         test_mkdir -p $DIR/$tdir
15791         $SETSTRIPE -i 0 $DIR/$tdir
15792
15793         #test 10 returns only success/failure
15794         i=10
15795         lockahead_test -d $DIR/$tdir -t $i -f $tfile
15796         rc=$?
15797         if [ $rc -eq 255 ]; then
15798                 error "Ladvise test${i} failed, ${rc}"
15799         fi
15800
15801         #test 11 counts lock enqueue requests, all others count new locks
15802         i=11
15803         count=$(do_facet ost1 \
15804                 $LCTL get_param -n ost.OSS.ost.stats)
15805         count=$(echo "$count" | grep ldlm_extent_enqueue | awk '{ print $2 }')
15806
15807         lockahead_test -d $DIR/$tdir -t $i -f $tfile
15808         rc=$?
15809         if [ $rc -eq 255 ]; then
15810                 error "Ladvise test${i} failed, ${rc}"
15811         fi
15812
15813         new_count=$(do_facet ost1 \
15814                 $LCTL get_param -n ost.OSS.ost.stats)
15815         new_count=$(echo "$new_count" | grep ldlm_extent_enqueue | \
15816                    awk '{ print $2 }')
15817
15818         difference="$((new_count - count))"
15819         if [ $difference -ne $rc ]; then
15820                 error "Ladvise test${i}, bad enqueue count, returned " \
15821                       "${rc}, actual ${difference}"
15822         fi
15823
15824         for i in $(seq 12 21); do
15825                 # If we do not do this, we run the risk of having too many
15826                 # locks and starting lock cancellation while we are checking
15827                 # lock counts.
15828                 cancel_lru_locks osc
15829
15830                 count=$($LCTL get_param -n \
15831                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
15832
15833                 lockahead_test -d $DIR/$tdir -t $i -f $tfile
15834                 rc=$?
15835                 if [ $rc -eq 255 ]; then
15836                         error "Ladvise test ${i} failed, ${rc}"
15837                 fi
15838
15839                 new_count=$($LCTL get_param -n \
15840                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
15841                 difference="$((new_count - count))"
15842
15843                 # Test 15 output is divided by 100 to map down to valid return
15844                 if [ $i -eq 15 ]; then
15845                         rc="$((rc * 100))"
15846                 fi
15847
15848                 if [ $difference -ne $rc ]; then
15849                         error "Ladvise test ${i}, bad lock count, returned " \
15850                               "${rc}, actual ${difference}"
15851                 fi
15852         done
15853
15854         #test 22 returns only success/failure
15855         i=22
15856         lockahead_test -d $DIR/$tdir -t $i -f $tfile
15857         rc=$?
15858         if [ $rc -eq 255 ]; then
15859                 error "Ladvise test${i} failed, ${rc}"
15860         fi
15861 }
15862 run_test 255c "suite of ladvise lockahead tests"
15863
15864 test_256() {
15865         local cl_user
15866         local cat_sl
15867         local mdt_dev
15868
15869         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15870         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15871         [ "$(facet_fstype mds1)" != "ldiskfs" ] &&
15872                 skip "ldiskfs only test" && return
15873
15874         mdt_dev=$(mdsdevname 1)
15875         echo $mdt_dev
15876         cl_user=$(do_facet mds1 \
15877         "$LCTL get_param -n mdd.$MDT0.changelog_users | grep cl")
15878         if [[ -n $cl_user ]]; then
15879                 skip "active changelog user"
15880                 return
15881         fi
15882
15883         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
15884         echo "Registered as changelog user $cl_user"
15885
15886         rm -rf $DIR/$tdir
15887         mkdir -p $DIR/$tdir
15888
15889         $LFS changelog_clear $MDT0 $cl_user 0
15890
15891         # change something
15892         touch $DIR/$tdir/{1..10}
15893
15894         # stop the MDT
15895         stop mds1 || error "Fail to stop MDT."
15896
15897         # remount the MDT
15898         start mds1 $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT."
15899
15900         #after mount new plainllog is used
15901         touch $DIR/$tdir/{11..19}
15902         do_facet mds1 sync
15903         local TEMP256FILE=$(mktemp -u TEMP256XXXXXX)
15904         cat_sl=$(do_facet mds1 \
15905         "$DEBUGFS -R \\\"dump changelog_catalog $TEMP256FILE\\\" $mdt_dev; \
15906          llog_reader $TEMP256FILE | grep \\\"type=1064553b\\\" | wc -l")
15907         do_facet mds1 rm $TEMP256FILE
15908
15909         if (( cat_sl != 2 )); then
15910                 do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
15911                 error "Changelog catalog has wrong number of slots $cat_sl"
15912         fi
15913
15914         $LFS changelog_clear $MDT0 $cl_user 0
15915
15916         do_facet mds1 sync
15917         TEMP256FILE=$(mktemp -u TEMP256XXXXXX)
15918         cat_sl=$(do_facet mds1 \
15919         "$DEBUGFS -R \\\"dump changelog_catalog $TEMP256FILE\\\" $mdt_dev; \
15920          llog_reader $TEMP256FILE | grep \\\"type=1064553b\\\" | wc -l")
15921         do_facet mds1 rm $TEMP256FILE
15922
15923         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
15924
15925         if (( cat_sl == 2 )); then
15926                 error "Empty plain llog was not deleted from changelog catalog"
15927         fi
15928         if (( cat_sl != 1 )); then
15929                 error "Active plain llog shouldn\`t be deleted from catalog"
15930         fi
15931 }
15932 run_test 256 "Check llog delete for empty and not full state"
15933
15934 test_257() {
15935         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15936         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
15937                 skip "Need MDS version at least 2.8.55" && return
15938
15939         test_mkdir $DIR/$tdir
15940
15941         setfattr -n trusted.name1 -v value1 $DIR/$tdir ||
15942                 error "setfattr -n trusted.name1=value1 $DIR/$tdir failed"
15943         stat $DIR/$tdir
15944
15945 #define OBD_FAIL_MDS_XATTR_REP                  0x161
15946         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
15947         local facet=mds$((mdtidx + 1))
15948         set_nodes_failloc $(facet_active_host $facet) 0x80000161
15949         getfattr -n trusted.name1 $DIR/$tdir 2> /dev/null
15950
15951         stop $facet || error "stop MDS failed"
15952         start $facet $(mdsdevname $((mdtidx + 1))) $MDS_MOUNT_OPTS ||
15953                 error "start MDS fail"
15954 }
15955 run_test 257 "xattr locks are not lost"
15956
15957 # Verify we take the i_mutex when security requires it
15958 test_258a() {
15959 #define OBD_FAIL_IMUTEX_SEC 0x141c
15960         $LCTL set_param fail_loc=0x141c
15961         touch $DIR/$tfile
15962         chmod u+s $DIR/$tfile
15963         chmod a+rwx $DIR/$tfile
15964         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
15965         RC=$?
15966         if [ $RC -ne 0 ]; then
15967                 error "error, failed to take i_mutex, rc=$?"
15968         fi
15969         rm -f $DIR/$tfile
15970 }
15971 run_test 258a
15972
15973 # Verify we do NOT take the i_mutex in the normal case
15974 test_258b() {
15975 #define OBD_FAIL_IMUTEX_NOSEC 0x141d
15976         $LCTL set_param fail_loc=0x141d
15977         touch $DIR/$tfile
15978         chmod a+rwx $DIR
15979         chmod a+rw $DIR/$tfile
15980         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
15981         RC=$?
15982         if [ $RC -ne 0 ]; then
15983                 error "error, took i_mutex unnecessarily, rc=$?"
15984         fi
15985         rm -f $DIR/$tfile
15986
15987 }
15988 run_test 258b "verify i_mutex security behavior"
15989
15990 test_260() {
15991 #define OBD_FAIL_MDC_CLOSE               0x806
15992         $LCTL set_param fail_loc=0x80000806
15993         touch $DIR/$tfile
15994
15995 }
15996 run_test 260 "Check mdc_close fail"
15997
15998 ### Data-on-MDT sanity tests ###
15999 test_270a() {
16000
16001         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16002                 skip "Need MDS version at least 2.10.55" && return
16003
16004         # create DoM file
16005         local dom=$DIR/$tdir/dom_file
16006         local tmp=$DIR/$tdir/tmp_file
16007
16008         mkdir -p $DIR/$tdir
16009
16010         # basic checks for DoM component creation
16011         $LFS setstripe -E 1024K -E 1024K -L mdt $dom 2>/dev/null &&
16012                 error "Can set MDT layout to non-first entry"
16013
16014         $LFS setstripe -E 1024K -L mdt -E 1024K -L mdt $dom 2>/dev/null &&
16015                 error "Can define multiple entries as MDT layout"
16016
16017         $LFS setstripe -E 1M -L mdt $dom ||
16018                 error "Can't create DoM layout"
16019
16020         [ $($LFS getstripe -L $dom) == "mdt" ] || error "bad pattern"
16021         [ $($LFS getstripe -c $dom) == 0 ] || error "bad stripe count"
16022         [ $($LFS getstripe -S $dom) == 1048576 ] || error "bad stripe size"
16023
16024         local mdtidx=$($GETSTRIPE -M $dom)
16025         local mdtname=MDT$(printf %04x $mdtidx)
16026         local facet=mds$((mdtidx + 1))
16027         local space_check=1
16028
16029         # Skip free space checks with ZFS
16030         if [ "$(facet_fstype $facet)" == "zfs" ]; then
16031                 space_check=0
16032         fi
16033
16034         # write
16035         sync
16036         local mdtfree1=$(do_facet $facet \
16037                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16038         dd if=/dev/urandom of=$tmp bs=1024 count=100
16039         # check also direct IO along write
16040         dd if=$tmp of=$dom bs=102400 count=1 oflag=direct
16041         sync
16042         cmp $tmp $dom || error "file data is different"
16043         [ $(stat -c%s $dom) == 102400 ] || error "bad size after write"
16044         if [ $space_check == 1 ]; then
16045                 local mdtfree2=$(do_facet $facet \
16046                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16047                 [ $(($mdtfree1 - $mdtfree2)) -ge 102 ] ||
16048                         error "MDT free space is wrong after write"
16049         fi
16050
16051         # truncate
16052         $TRUNCATE $dom 10000
16053         [ $(stat -c%s $dom) == 10000 ] || error "bad size after truncate"
16054         if [ $space_check == 1 ]; then
16055                 mdtfree1=$(do_facet $facet \
16056                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16057                 [ $(($mdtfree1 - $mdtfree2)) -ge 92 ] ||
16058                         error "MDT free space is wrong after truncate"
16059         fi
16060
16061         # append
16062         cat $tmp >> $dom
16063         sync
16064         [ $(stat -c%s $dom) == 112400 ] || error "bad size after append"
16065         if [ $space_check == 1 ]; then
16066                 mdtfree2=$(do_facet $facet \
16067                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16068                 [ $(($mdtfree1 - $mdtfree2)) -ge 102 ] ||
16069                         error "MDT free space is wrong after append"
16070         fi
16071
16072         # delete
16073         rm $dom
16074         if [ $space_check == 1 ]; then
16075                 mdtfree1=$(do_facet $facet \
16076                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16077                 [ $(($mdtfree1 - $mdtfree2)) -ge 112 ] ||
16078                         error "MDT free space is wrong after removal"
16079         fi
16080
16081         # combined striping
16082         $LFS setstripe -E 1024K -L mdt -E EOF $dom ||
16083                 error "Can't create DoM + OST striping"
16084
16085         dd if=/dev/urandom of=$tmp bs=1024 count=2000
16086         # check also direct IO along write
16087         dd if=$tmp of=$dom bs=102400 count=20 oflag=direct
16088         sync
16089         cmp $tmp $dom || error "file data is different"
16090         [ $(stat -c%s $dom) == 2048000 ] || error "bad size after write"
16091         rm $dom
16092         rm $tmp
16093
16094         return 0
16095 }
16096 run_test 270a "DoM: basic functionality tests"
16097
16098 test_270b() {
16099         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16100                 skip "Need MDS version at least 2.10.55" && return
16101
16102         local dom=$DIR/$tdir/dom_file
16103         local max_size=1048576
16104
16105         mkdir -p $DIR/$tdir
16106         $LFS setstripe -E $max_size -L mdt $dom
16107
16108         # truncate over the limit
16109         $TRUNCATE $dom $(($max_size + 1)) &&
16110                 error "successful truncate over the maximum size"
16111         # write over the limit
16112         dd if=/dev/zero of=$dom bs=$max_size seek=1 count=1 &&
16113                 error "successful write over the maximum size"
16114         # append over the limit
16115         dd if=/dev/zero of=$dom bs=$(($max_size - 3)) count=1
16116         echo "12345" >> $dom && error "successful append over the maximum size"
16117         rm $dom
16118
16119         return 0
16120 }
16121 run_test 270b "DoM: maximum size overflow checks for DoM-only file"
16122
16123 test_270c() {
16124         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16125                 skip "Need MDS version at least 2.10.55" && return
16126
16127         mkdir -p $DIR/$tdir
16128         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
16129
16130         # check files inherit DoM EA
16131         touch $DIR/$tdir/first
16132         [ $($GETSTRIPE -L $DIR/$tdir/first) == "mdt" ] ||
16133                 error "bad pattern"
16134         [ $($LFS getstripe -c $DIR/$tdir/first) == 0 ] ||
16135                 error "bad stripe count"
16136         [ $($LFS getstripe -S $DIR/$tdir/first) == 1048576 ] ||
16137                 error "bad stripe size"
16138
16139         # check directory inherits DoM EA and uses it as default
16140         mkdir $DIR/$tdir/subdir
16141         touch $DIR/$tdir/subdir/second
16142         [ $($LFS getstripe -L $DIR/$tdir/subdir/second) == "mdt" ] ||
16143                 error "bad pattern in sub-directory"
16144         [ $($LFS getstripe -c $DIR/$tdir/subdir/second) == 0 ] ||
16145                 error "bad stripe count in sub-directory"
16146         [ $($LFS getstripe -S $DIR/$tdir/subdir/second) == 1048576 ] ||
16147                 error "bad stripe size in sub-directory"
16148         return 0
16149 }
16150 run_test 270c "DoM: DoM EA inheritance tests"
16151
16152 test_270d() {
16153         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16154                 skip "Need MDS version at least 2.10.55" && return
16155
16156         mkdir -p $DIR/$tdir
16157         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
16158
16159         # inherit default DoM striping
16160         mkdir $DIR/$tdir/subdir
16161         touch $DIR/$tdir/subdir/f1
16162
16163         # change default directory striping
16164         $LFS setstripe -c 1 $DIR/$tdir/subdir
16165         touch $DIR/$tdir/subdir/f2
16166         [ $($LFS getstripe -c $DIR/$tdir/subdir/f2) == 1 ] ||
16167                 error "wrong default striping in file 2"
16168         [ $($LFS getstripe -L $DIR/$tdir/subdir/f2) == "raid0" ] ||
16169                 error "bad pattern in file 2"
16170         return 0
16171 }
16172 run_test 270d "DoM: change striping from DoM to RAID0"
16173
16174 test_270e() {
16175         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16176                 skip "Need MDS version at least 2.10.55" && return
16177
16178         mkdir -p $DIR/$tdir/dom
16179         mkdir -p $DIR/$tdir/norm
16180         DOMFILES=20
16181         NORMFILES=10
16182         $LFS setstripe -E 1M -L mdt $DIR/$tdir/dom
16183         $LFS setstripe -i 0 -S 2M $DIR/$tdir/norm
16184
16185         createmany -o $DIR/$tdir/dom/dom- $DOMFILES
16186         createmany -o $DIR/$tdir/norm/norm- $NORMFILES
16187
16188         # find DoM files by layout
16189         NUM=$($LFS find -L mdt -type f $DIR/$tdir 2>/dev/null | wc -l)
16190         [ $NUM -eq  $DOMFILES ] ||
16191                 error "lfs find -L: found $NUM, expected $DOMFILES"
16192         echo "Test 1: lfs find 20 DOM files by layout: OK"
16193
16194         # there should be 1 dir with default DOM striping
16195         NUM=$($LFS find -L mdt -type d $DIR/$tdir 2>/dev/null | wc -l)
16196         [ $NUM -eq  1 ] ||
16197                 error "lfs find -L: found $NUM, expected 1 dir"
16198         echo "Test 2: lfs find 1 DOM dir by layout: OK"
16199
16200         # find DoM files by stripe size
16201         NUM=$($LFS find -S -1200K -type f $DIR/$tdir 2>/dev/null | wc -l)
16202         [ $NUM -eq  $DOMFILES ] ||
16203                 error "lfs find -S: found $NUM, expected $DOMFILES"
16204         echo "Test 4: lfs find 20 DOM files by stripe size: OK"
16205
16206         # find files by stripe offset except DoM files
16207         NUM=$($LFS find -i 0 -type f $DIR/$tdir 2>/dev/null | wc -l)
16208         [ $NUM -eq  $NORMFILES ] ||
16209                 error "lfs find -i: found $NUM, expected $NORMFILES"
16210         echo "Test 5: lfs find no DOM files by stripe index: OK"
16211         return 0
16212 }
16213 run_test 270e "DoM: lfs find with DoM files test"
16214
16215 test_270f() {
16216         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16217                 skip "Need MDS version at least 2.10.55" && return
16218
16219         local mdtname=${FSNAME}-MDT0000-mdtlov
16220         local dom=$DIR/$tdir/dom_file
16221         local dom_limit_saved=$(do_facet mds1 $LCTL get_param -n \
16222                                                 lod.$mdtname.dom_stripesize)
16223         local dom_limit=131072
16224
16225         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=$dom_limit
16226         local dom_current=$(do_facet mds1 $LCTL get_param -n \
16227                                                 lod.$mdtname.dom_stripesize)
16228         [ ${dom_limit} -eq ${dom_current} ] ||
16229                 error "Cannot change per-MDT DoM stripe limit to $dom_limit"
16230
16231         $LFS mkdir -i 0 -c 1 $DIR/$tdir
16232         $LFS setstripe -d $DIR/$tdir
16233         $LFS setstripe -E $dom_limit -L mdt $DIR/$tdir ||
16234                 error "Can't set directory default striping"
16235
16236         # exceed maximum stripe size
16237         $LFS setstripe -E $(($dom_limit * 2)) -L mdt $dom &&
16238                 error "Able to create DoM component size more than LOD limit"
16239
16240         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=0
16241         dom_current=$(do_facet mds1 $LCTL get_param -n \
16242                                                 lod.$mdtname.dom_stripesize)
16243         [ 0 -eq ${dom_current} ] ||
16244                 error "Can't set zero DoM stripe limit"
16245
16246         # too low values to be aligned with smallest stripe size 64K
16247         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=30000
16248         dom_current=$(do_facet mds1 $LCTL get_param -n \
16249                                                 lod.$mdtname.dom_stripesize)
16250         [ 30000 -eq ${dom_current} ] &&
16251                 error "Can set too small DoM stripe limit"
16252
16253         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=2147483648
16254         dom_current=$(do_facet mds1 $LCTL get_param -n \
16255                                                 lod.$mdtname.dom_stripesize)
16256         echo $dom_current
16257         [ 2147483648 -eq ${dom_current} ] &&
16258                 error "Can set too large DoM stripe limit"
16259
16260         do_facet mds1 $LCTL set_param -n \
16261                                 lod.$mdtname.dom_stripesize=$((dom_limit * 2))
16262         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
16263                 error "Can't create DoM component size after limit change"
16264         do_facet mds1 $LCTL set_param -n \
16265                                 lod.$mdtname.dom_stripesize=$((dom_limit / 2))
16266         $LFS setstripe -E $dom_limit -L mdt ${dom}_big &&
16267                 error "Can create big DoM component after limit decrease"
16268         touch ${dom}_def ||
16269                 error "Can't create file with old default layout"
16270
16271         do_facet mds1 $LCTL set_param -n lod.*.dom_stripesize=$dom_limit_saved
16272         return 0
16273 }
16274 run_test 270f "DoM: maximum DoM stripe size checks"
16275
16276 test_271a() {
16277         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16278                 skip "Need MDS version at least 2.10.55" && return
16279
16280         local dom=$DIR/$tdir/dom
16281
16282         mkdir -p $DIR/$tdir
16283
16284         $LFS setstripe -E 1024K -L mdt $dom
16285
16286         lctl set_param -n mdc.*.stats=clear
16287         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
16288         cat $dom > /dev/null
16289         local reads=$(lctl get_param -n mdc.*.stats |
16290                         awk '/ost_read/ {print $2}')
16291         [ -z $reads ] || error "Unexpected $reads READ RPCs"
16292         ls $dom
16293         rm -f $dom
16294 }
16295 run_test 271a "DoM: data is cached for read after write"
16296
16297 test_271b() {
16298         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16299                 skip "Need MDS version at least 2.10.55" && return
16300
16301         local dom=$DIR/$tdir/dom
16302
16303         mkdir -p $DIR/$tdir
16304
16305         $LFS setstripe -E 1024K -L mdt -E EOF $dom
16306
16307         lctl set_param -n mdc.*.stats=clear
16308         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
16309         cancel_lru_locks mdc
16310         $CHECKSTAT -t file -s 4096 $dom || error "stat #1 fails"
16311         # second stat to check size is cached on client
16312         $CHECKSTAT -t file -s 4096 $dom || error "stat #2 fails"
16313         local gls=$(lctl get_param -n mdc.*.stats |
16314                         awk '/ldlm_glimpse/ {print $2}')
16315         [ -z $gls ] || error "Unexpected $gls glimpse RPCs"
16316         rm -f $dom
16317 }
16318 run_test 271b "DoM: no glimpse RPC for stat (DoM only file)"
16319
16320 test_271ba() {
16321         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16322                 skip "Need MDS version at least 2.10.55" && return
16323
16324         local dom=$DIR/$tdir/dom
16325
16326         mkdir -p $DIR/$tdir
16327
16328         $LFS setstripe -E 1024K -L mdt -E EOF $dom
16329
16330         lctl set_param -n mdc.*.stats=clear
16331         lctl set_param -n osc.*.stats=clear
16332         dd if=/dev/zero of=$dom bs=2048K count=1 || return 1
16333         cancel_lru_locks mdc
16334         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
16335         # second stat to check size is cached on client
16336         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
16337         local gls=$(lctl get_param -n mdc.*.stats |
16338                         awk '/ldlm_glimpse/ {print $2}')
16339         [ -z $gls ] || error "Unexpected $gls glimpse RPCs"
16340         local gls=$(lctl get_param -n osc.*.stats |
16341                         awk '/ldlm_glimpse/ {print $2}')
16342         [ -z $gls ] || error "Unexpected $gls OSC glimpse RPCs"
16343         rm -f $dom
16344 }
16345 run_test 271ba "DoM: no glimpse RPC for stat (combined file)"
16346
16347 test_271c() {
16348         # test to be enabled with lock_convert
16349         skip "skipped until lock convert will be implemented" && return
16350
16351         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16352                 skip "Need MDS version at least 2.10.55" && return
16353
16354         local dom=$DIR/$tdir/dom
16355
16356         mkdir -p $DIR/$tdir
16357
16358         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
16359
16360         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
16361         local facet=mds$((mdtidx + 1))
16362
16363         cancel_lru_locks mdc
16364         do_facet $facet lctl set_param -n mdt.*.dom_lock=0
16365         createmany -o $dom 1000
16366         lctl set_param -n mdc.*.stats=clear
16367         smalliomany -w $dom 1000 200
16368         lctl get_param -n mdc.*.stats
16369         local enq=$(lctl get_param -n mdc.*.stats |
16370                         awk '/ldlm_ibits_enqueue/ {print $2}')
16371         # Each file has 1 open, 1 IO enqueues, total 2000
16372         # but now we have also +1 getxattr for security.capability, total 3000
16373         [ $enq -ge 2000 ] || error "Too few enqueues $enq, expected > 2000"
16374         unlinkmany $dom 1000
16375
16376         cancel_lru_locks mdc
16377         do_facet $facet lctl set_param -n mdt.*.dom_lock=1
16378         createmany -o $dom 1000
16379         lctl set_param -n mdc.*.stats=clear
16380         smalliomany -w $dom 1000 200
16381         lctl get_param -n mdc.*.stats
16382         local enq_2=$(lctl get_param -n mdc.*.stats |
16383                         awk '/ldlm_ibits_enqueue/ {print $2}')
16384         # Expect to see reduced amount of RPCs by 1000 due to single enqueue
16385         # for OPEN and IO lock.
16386         [ $((enq - enq_2)) -ge 1000 ] ||
16387                 error "Too many enqueues $enq_2, expected about $((enq - 1000))"
16388         unlinkmany $dom 1000
16389         return 0
16390 }
16391 run_test 271c "DoM: IO lock at open saves enqueue RPCs"
16392
16393 test_276() {
16394         remote_ost_nodsh && skip "remote OST with nodsh" && return
16395         local pid
16396
16397         do_facet ost1 "(while true; do \
16398                 $LCTL get_param obdfilter.*.filesfree > /dev/null 2>&1; \
16399                 done) & pid=\\\$!; echo \\\$pid > $TMP/sanity_276_pid" &
16400         pid=$!
16401
16402         for LOOP in $(seq 20); do
16403                 stop ost1
16404                 start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
16405         done
16406         kill -9 $pid
16407         do_facet ost1 "pid=\\\$(cat $TMP/sanity_276_pid); kill -9 \\\$pid; \
16408                 rm $TMP/sanity_276_pid"
16409 }
16410 run_test 276 "Race between mount and obd_statfs"
16411
16412 cleanup_test_300() {
16413         trap 0
16414         umask $SAVE_UMASK
16415 }
16416 test_striped_dir() {
16417         local mdt_index=$1
16418         local stripe_count
16419         local stripe_index
16420
16421         mkdir -p $DIR/$tdir
16422
16423         SAVE_UMASK=$(umask)
16424         trap cleanup_test_300 RETURN EXIT
16425
16426         $LFS setdirstripe -i $mdt_index -c 2 -H all_char -o 755 \
16427                                                 $DIR/$tdir/striped_dir ||
16428                 error "set striped dir error"
16429
16430         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
16431         [ "$mode" = "755" ] || error "expect 755 got $mode"
16432
16433         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
16434                 error "getdirstripe failed"
16435         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
16436         if [ "$stripe_count" != "2" ]; then
16437                 error "1:stripe_count is $stripe_count, expect 2"
16438         fi
16439         stripe_count=$($LFS getdirstripe -T $DIR/$tdir/striped_dir)
16440         if [ "$stripe_count" != "2" ]; then
16441                 error "2:stripe_count is $stripe_count, expect 2"
16442         fi
16443
16444         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
16445         if [ "$stripe_index" != "$mdt_index" ]; then
16446                 error "stripe_index is $stripe_index, expect $mdt_index"
16447         fi
16448
16449         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
16450                 error "nlink error after create striped dir"
16451
16452         mkdir $DIR/$tdir/striped_dir/a
16453         mkdir $DIR/$tdir/striped_dir/b
16454
16455         stat $DIR/$tdir/striped_dir/a ||
16456                 error "create dir under striped dir failed"
16457         stat $DIR/$tdir/striped_dir/b ||
16458                 error "create dir under striped dir failed"
16459
16460         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
16461                 error "nlink error after mkdir"
16462
16463         rmdir $DIR/$tdir/striped_dir/a
16464         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
16465                 error "nlink error after rmdir"
16466
16467         rmdir $DIR/$tdir/striped_dir/b
16468         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
16469                 error "nlink error after rmdir"
16470
16471         chattr +i $DIR/$tdir/striped_dir
16472         createmany -o $DIR/$tdir/striped_dir/f 10 &&
16473                 error "immutable flags not working under striped dir!"
16474         chattr -i $DIR/$tdir/striped_dir
16475
16476         rmdir $DIR/$tdir/striped_dir ||
16477                 error "rmdir striped dir error"
16478
16479         cleanup_test_300
16480
16481         true
16482 }
16483
16484 test_300a() {
16485         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
16486                 skip "skipped for lustre < 2.7.0" && return
16487         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16488         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16489
16490         test_striped_dir 0 || error "failed on striped dir on MDT0"
16491         test_striped_dir 1 || error "failed on striped dir on MDT0"
16492 }
16493 run_test 300a "basic striped dir sanity test"
16494
16495 test_300b() {
16496         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
16497                 skip "skipped for lustre < 2.7.0" && return
16498         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16499         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16500         local i
16501         local mtime1
16502         local mtime2
16503         local mtime3
16504
16505         test_mkdir $DIR/$tdir || error "mkdir fail"
16506         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
16507                 error "set striped dir error"
16508         for i in {0..9}; do
16509                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
16510                 sleep 1
16511                 touch $DIR/$tdir/striped_dir/file_$i || error "touch error $i"
16512                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
16513                 [ $mtime1 -eq $mtime2 ] && error "mtime unchanged after create"
16514                 sleep 1
16515                 rm -f $DIR/$tdir/striped_dir/file_$i || error "unlink error $i"
16516                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
16517                 [ $mtime2 -eq $mtime3 ] && error "mtime unchanged after unlink"
16518         done
16519         true
16520 }
16521 run_test 300b "check ctime/mtime for striped dir"
16522
16523 test_300c() {
16524         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
16525                 skip "skipped for lustre < 2.7.0" && return
16526         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16527         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16528         local file_count
16529
16530         mkdir -p $DIR/$tdir
16531         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
16532                 error "set striped dir error"
16533
16534         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
16535                 error "chown striped dir failed"
16536
16537         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
16538                 error "create 5k files failed"
16539
16540         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
16541
16542         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
16543
16544         rm -rf $DIR/$tdir
16545 }
16546 run_test 300c "chown && check ls under striped directory"
16547
16548 test_300d() {
16549         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
16550                 skip "skipped for lustre < 2.7.0" && return
16551         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16552         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16553         local stripe_count
16554         local file
16555
16556         mkdir -p $DIR/$tdir
16557         $SETSTRIPE -c 2 $DIR/$tdir
16558
16559         #local striped directory
16560         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
16561                 error "set striped dir error"
16562         createmany -o $DIR/$tdir/striped_dir/f 10 ||
16563                 error "create 10 files failed"
16564
16565         #remote striped directory
16566         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
16567                 error "set striped dir error"
16568         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
16569                 error "create 10 files failed"
16570
16571         for file in $(find $DIR/$tdir); do
16572                 stripe_count=$($GETSTRIPE -c $file)
16573                 [ $stripe_count -eq 2 ] ||
16574                         error "wrong stripe $stripe_count for $file"
16575         done
16576
16577         rm -rf $DIR/$tdir
16578 }
16579 run_test 300d "check default stripe under striped directory"
16580
16581 test_300e() {
16582         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16583                 skip "Need MDS version at least 2.7.55" && return
16584         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16585         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16586         local stripe_count
16587         local file
16588
16589         mkdir -p $DIR/$tdir
16590
16591         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
16592                 error "set striped dir error"
16593
16594         touch $DIR/$tdir/striped_dir/a
16595         touch $DIR/$tdir/striped_dir/b
16596         touch $DIR/$tdir/striped_dir/c
16597
16598         mkdir $DIR/$tdir/striped_dir/dir_a
16599         mkdir $DIR/$tdir/striped_dir/dir_b
16600         mkdir $DIR/$tdir/striped_dir/dir_c
16601
16602         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_a ||
16603                 error "set striped adir under striped dir error"
16604
16605         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_b ||
16606                 error "set striped bdir under striped dir error"
16607
16608         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_c ||
16609                 error "set striped cdir under striped dir error"
16610
16611         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
16612                 error "rename dir under striped dir fails"
16613
16614         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
16615                 error "rename dir under different stripes fails"
16616
16617         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
16618                 error "rename file under striped dir should succeed"
16619
16620         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
16621                 error "rename dir under striped dir should succeed"
16622
16623         rm -rf $DIR/$tdir
16624 }
16625 run_test 300e "check rename under striped directory"
16626
16627 test_300f() {
16628         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16629                 skip "Need MDS version at least 2.7.55" && return
16630         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16631         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16632         local stripe_count
16633         local file
16634
16635         rm -rf $DIR/$tdir
16636         mkdir -p $DIR/$tdir
16637
16638         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
16639                 error "set striped dir error"
16640
16641         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir1 ||
16642                 error "set striped dir error"
16643
16644         touch $DIR/$tdir/striped_dir/a
16645         mkdir $DIR/$tdir/striped_dir/dir_a
16646         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
16647                 error "create striped dir under striped dir fails"
16648
16649         touch $DIR/$tdir/striped_dir1/b
16650         mkdir $DIR/$tdir/striped_dir1/dir_b
16651         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
16652                 error "create striped dir under striped dir fails"
16653
16654         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
16655                 error "rename dir under different striped dir should fail"
16656
16657         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
16658                 error "rename striped dir under diff striped dir should fail"
16659
16660         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
16661                 error "rename file under diff striped dirs fails"
16662
16663         rm -rf $DIR/$tdir
16664 }
16665 run_test 300f "check rename cross striped directory"
16666
16667 test_300_check_default_striped_dir()
16668 {
16669         local dirname=$1
16670         local default_count=$2
16671         local default_index=$3
16672         local stripe_count
16673         local stripe_index
16674         local dir_stripe_index
16675         local dir
16676
16677         echo "checking $dirname $default_count $default_index"
16678         $LFS setdirstripe -D -c $default_count -i $default_index \
16679                                 -t all_char $DIR/$tdir/$dirname ||
16680                 error "set default stripe on striped dir error"
16681         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
16682         [ $stripe_count -eq $default_count ] ||
16683                 error "expect $default_count get $stripe_count for $dirname"
16684
16685         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
16686         [ $stripe_index -eq $default_index ] ||
16687                 error "expect $default_index get $stripe_index for $dirname"
16688
16689         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
16690                                                 error "create dirs failed"
16691
16692         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
16693         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
16694         for dir in $(find $DIR/$tdir/$dirname/*); do
16695                 stripe_count=$($LFS getdirstripe -c $dir)
16696                 [ $stripe_count -eq $default_count ] ||
16697                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
16698                 error "stripe count $default_count != $stripe_count for $dir"
16699
16700                 stripe_index=$($LFS getdirstripe -i $dir)
16701                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
16702                         error "$stripe_index != $default_index for $dir"
16703
16704                 #check default stripe
16705                 stripe_count=$($LFS getdirstripe -D -c $dir)
16706                 [ $stripe_count -eq $default_count ] ||
16707                 error "default count $default_count != $stripe_count for $dir"
16708
16709                 stripe_index=$($LFS getdirstripe -D -i $dir)
16710                 [ $stripe_index -eq $default_index ] ||
16711                 error "default index $default_index != $stripe_index for $dir"
16712         done
16713         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
16714 }
16715
16716 test_300g() {
16717         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16718                 skip "Need MDS version at least 2.7.55" && return
16719         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16720         local dir
16721         local stripe_count
16722         local stripe_index
16723
16724         mkdir $DIR/$tdir
16725         mkdir $DIR/$tdir/normal_dir
16726
16727         #Checking when client cache stripe index
16728         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
16729         $LFS setdirstripe -D -i1 $DIR/$tdir/striped_dir ||
16730                 error "create striped_dir failed"
16731
16732         $LFS setdirstripe -i0 $DIR/$tdir/striped_dir/dir0 ||
16733                 error "create dir0 fails"
16734         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir0)
16735         [ $stripe_index -eq 0 ] ||
16736                 error "dir0 expect index 0 got $stripe_index"
16737
16738         mkdir $DIR/$tdir/striped_dir/dir1 ||
16739                 error "create dir1 fails"
16740         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir1)
16741         [ $stripe_index -eq 1 ] ||
16742                 error "dir1 expect index 1 got $stripe_index"
16743
16744         #check default stripe count/stripe index
16745         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
16746         test_300_check_default_striped_dir normal_dir 1 0
16747         test_300_check_default_striped_dir normal_dir 2 1
16748         test_300_check_default_striped_dir normal_dir 2 -1
16749
16750         #delete default stripe information
16751         echo "delete default stripeEA"
16752         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
16753                 error "set default stripe on striped dir error"
16754
16755         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
16756         for dir in $(find $DIR/$tdir/normal_dir/*); do
16757                 stripe_count=$($LFS getdirstripe -c $dir)
16758                 [ $stripe_count -eq 0 ] ||
16759                         error "expect 1 get $stripe_count for $dir"
16760                 stripe_index=$($LFS getdirstripe -i $dir)
16761                 [ $stripe_index -eq 0 ] ||
16762                         error "expect 0 get $stripe_index for $dir"
16763         done
16764 }
16765 run_test 300g "check default striped directory for normal directory"
16766
16767 test_300h() {
16768         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16769                 skip "Need MDS version at least 2.7.55" && return
16770         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16771         local dir
16772         local stripe_count
16773
16774         mkdir $DIR/$tdir
16775         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
16776                 error "set striped dir error"
16777
16778         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
16779         test_300_check_default_striped_dir striped_dir 1 0
16780         test_300_check_default_striped_dir striped_dir 2 1
16781         test_300_check_default_striped_dir striped_dir 2 -1
16782
16783         #delete default stripe information
16784         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
16785                 error "set default stripe on striped dir error"
16786
16787         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
16788         for dir in $(find $DIR/$tdir/striped_dir/*); do
16789                 stripe_count=$($LFS getdirstripe -c $dir)
16790                 [ $stripe_count -eq 0 ] ||
16791                         error "expect 1 get $stripe_count for $dir"
16792         done
16793 }
16794 run_test 300h "check default striped directory for striped directory"
16795
16796 test_300i() {
16797         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16798                 skip "Need MDS version at least 2.7.55" && return
16799         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16800         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16801         local stripe_count
16802         local file
16803
16804         mkdir $DIR/$tdir
16805
16806         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
16807                 error "set striped dir error"
16808
16809         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
16810                 error "create files under striped dir failed"
16811
16812         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir ||
16813                 error "set striped hashdir error"
16814
16815         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir/d0 ||
16816                 error "create dir0 under hash dir failed"
16817         $LFS setdirstripe -i0 -c$MDSCOUNT -H fnv_1a_64 $DIR/$tdir/hashdir/d1 ||
16818                 error "create dir1 under hash dir failed"
16819
16820         # unfortunately, we need to umount to clear dir layout cache for now
16821         # once we fully implement dir layout, we can drop this
16822         umount_client $MOUNT || error "umount failed"
16823         mount_client $MOUNT || error "mount failed"
16824
16825         $LFS find -H fnv_1a_64 $DIR/$tdir/hashdir
16826         local dircnt=$($LFS find -H fnv_1a_64 $DIR/$tdir/hashdir | wc -l)
16827         [ $dircnt -eq 1 ] || error "lfs find striped dir got:$dircnt,except:1"
16828
16829         #set the stripe to be unknown hash type
16830         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
16831         $LCTL set_param fail_loc=0x1901
16832         for ((i = 0; i < 10; i++)); do
16833                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
16834                         error "stat f-$i failed"
16835                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
16836         done
16837
16838         touch $DIR/$tdir/striped_dir/f0 &&
16839                 error "create under striped dir with unknown hash should fail"
16840
16841         $LCTL set_param fail_loc=0
16842
16843         umount_client $MOUNT || error "umount failed"
16844         mount_client $MOUNT || error "mount failed"
16845
16846         return 0
16847 }
16848 run_test 300i "client handle unknown hash type striped directory"
16849
16850 test_300j() {
16851         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16852         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16853                 skip "Need MDS version at least 2.7.55" && return
16854         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16855         local stripe_count
16856         local file
16857
16858         mkdir $DIR/$tdir
16859
16860         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
16861         $LCTL set_param fail_loc=0x1702
16862         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
16863                 error "set striped dir error"
16864
16865         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
16866                 error "create files under striped dir failed"
16867
16868         $LCTL set_param fail_loc=0
16869
16870         rm -rf $DIR/$tdir || error "unlink striped dir fails"
16871
16872         return 0
16873 }
16874 run_test 300j "test large update record"
16875
16876 test_300k() {
16877         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16878                 skip "Need MDS version at least 2.7.55" && return
16879         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16880         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16881         local stripe_count
16882         local file
16883
16884         mkdir $DIR/$tdir
16885
16886         #define OBD_FAIL_LARGE_STRIPE   0x1703
16887         $LCTL set_param fail_loc=0x1703
16888         $LFS setdirstripe -i 0 -c512 $DIR/$tdir/striped_dir ||
16889                 error "set striped dir error"
16890         $LCTL set_param fail_loc=0
16891
16892         $LFS getdirstripe $DIR/$tdir/striped_dir ||
16893                 error "getstripeddir fails"
16894         rm -rf $DIR/$tdir/striped_dir ||
16895                 error "unlink striped dir fails"
16896
16897         return 0
16898 }
16899 run_test 300k "test large striped directory"
16900
16901 test_300l() {
16902         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16903                 skip "Need MDS version at least 2.7.55" && return
16904         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16905         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16906         local stripe_index
16907
16908         test_mkdir -p $DIR/$tdir/striped_dir
16909         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
16910                         error "chown $RUNAS_ID failed"
16911         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
16912                 error "set default striped dir failed"
16913
16914         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
16915         $LCTL set_param fail_loc=0x80000158
16916         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
16917
16918         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
16919         [ $stripe_index -eq 1 ] ||
16920                 error "expect 1 get $stripe_index for $dir"
16921 }
16922 run_test 300l "non-root user to create dir under striped dir with stale layout"
16923
16924 test_300m() {
16925         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16926                 skip "Need MDS version at least 2.7.55" && return
16927         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16928         [ $MDSCOUNT -ge 2 ] && skip "Only for single MDT" && return
16929
16930         mkdir -p $DIR/$tdir/striped_dir
16931         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
16932                 error "set default stripes dir error"
16933
16934         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
16935
16936         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
16937         [ $stripe_count -eq 0 ] ||
16938                         error "expect 0 get $stripe_count for a"
16939
16940         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
16941                 error "set default stripes dir error"
16942
16943         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
16944
16945         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
16946         [ $stripe_count -eq 0 ] ||
16947                         error "expect 0 get $stripe_count for b"
16948
16949         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
16950                 error "set default stripes dir error"
16951
16952         mkdir $DIR/$tdir/striped_dir/c &&
16953                 error "default stripe_index is invalid, mkdir c should fails"
16954
16955         rm -rf $DIR/$tdir || error "rmdir fails"
16956 }
16957 run_test 300m "setstriped directory on single MDT FS"
16958
16959 cleanup_300n() {
16960         local list=$(comma_list $(mdts_nodes))
16961
16962         trap 0
16963         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
16964 }
16965
16966 test_300n() {
16967         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16968                 skip "Need MDS version at least 2.7.55" && return
16969         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16970         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16971         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16972
16973         local stripe_index
16974         local list=$(comma_list $(mdts_nodes))
16975
16976         trap cleanup_300n RETURN EXIT
16977         mkdir -p $DIR/$tdir
16978         chmod 777 $DIR/$tdir
16979         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
16980                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
16981                 error "create striped dir succeeds with gid=0"
16982
16983         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
16984         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
16985                 error "create striped dir fails with gid=-1"
16986
16987         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
16988         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
16989                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
16990                 error "set default striped dir succeeds with gid=0"
16991
16992
16993         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
16994         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
16995                 error "set default striped dir fails with gid=-1"
16996
16997
16998         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
16999         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
17000                                         error "create test_dir fails"
17001         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
17002                                         error "create test_dir1 fails"
17003         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
17004                                         error "create test_dir2 fails"
17005         cleanup_300n
17006 }
17007 run_test 300n "non-root user to create dir under striped dir with default EA"
17008
17009 test_300o() {
17010         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17011                 skip "Need MDS version at least 2.7.55" && return
17012         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
17013         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
17014         local numfree1
17015         local numfree2
17016
17017         mkdir -p $DIR/$tdir
17018
17019         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
17020         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
17021         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
17022                 skip "not enough free inodes $numfree1 $numfree2"
17023                 return
17024         fi
17025
17026         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
17027         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
17028         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
17029                 skip "not enough free space $numfree1 $numfree2"
17030                 return
17031         fi
17032
17033         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
17034                 error "setdirstripe fails"
17035
17036         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
17037                 error "create dirs fails"
17038
17039         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
17040         ls $DIR/$tdir/striped_dir > /dev/null ||
17041                 error "ls striped dir fails"
17042         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
17043                 error "unlink big striped dir fails"
17044 }
17045 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
17046
17047 test_300p() {
17048         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
17049         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
17050         remote_mds_nodsh && skip "remote MDS with nodsh" && return
17051
17052         mkdir -p $DIR/$tdir
17053
17054         #define OBD_FAIL_OUT_ENOSPC     0x1704
17055         do_facet mds2 lctl set_param fail_loc=0x80001704
17056         $LFS setdirstripe -i 0 -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 \
17057                  && error "create striped directory should fail"
17058
17059         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
17060
17061         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
17062         true
17063 }
17064 run_test 300p "create striped directory without space"
17065
17066 test_300q() {
17067         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
17068         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
17069
17070         local fd=$(free_fd)
17071         local cmd="exec $fd<$tdir"
17072         cd $DIR
17073         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
17074         eval $cmd
17075         cmd="exec $fd<&-"
17076         trap "eval $cmd" EXIT
17077         cd $tdir || error "cd $tdir fails"
17078         rmdir  ../$tdir || error "rmdir $tdir fails"
17079         mkdir local_dir && error "create dir succeeds"
17080         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
17081         eval $cmd
17082         return 0
17083 }
17084 run_test 300q "create remote directory under orphan directory"
17085
17086 prepare_remote_file() {
17087         mkdir $DIR/$tdir/src_dir ||
17088                 error "create remote source failed"
17089
17090         cp /etc/hosts $DIR/$tdir/src_dir/a ||
17091                  error "cp to remote source failed"
17092         touch $DIR/$tdir/src_dir/a
17093
17094         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
17095                 error "create remote target dir failed"
17096
17097         touch $DIR/$tdir/tgt_dir/b
17098
17099         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
17100                 error "rename dir cross MDT failed!"
17101
17102         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
17103                 error "src_child still exists after rename"
17104
17105         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
17106                 error "missing file(a) after rename"
17107
17108         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
17109                 error "diff after rename"
17110 }
17111
17112 test_310a() {
17113         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
17114         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
17115         local remote_file=$DIR/$tdir/tgt_dir/b
17116
17117         mkdir -p $DIR/$tdir
17118
17119         prepare_remote_file || error "prepare remote file failed"
17120
17121         #open-unlink file
17122         $OPENUNLINK $remote_file $remote_file ||
17123                 error "openunlink $remote_file failed"
17124         $CHECKSTAT -a $remote_file || error "$remote_file exists"
17125 }
17126 run_test 310a "open unlink remote file"
17127
17128 test_310b() {
17129         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
17130         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
17131         local remote_file=$DIR/$tdir/tgt_dir/b
17132
17133         mkdir -p $DIR/$tdir
17134
17135         prepare_remote_file || error "prepare remote file failed"
17136
17137         ln $remote_file $DIR/$tfile || error "link failed for remote file"
17138         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
17139         $CHECKSTAT -t file $remote_file || error "check file failed"
17140 }
17141 run_test 310b "unlink remote file with multiple links while open"
17142
17143 test_310c() {
17144         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
17145         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
17146         local remote_file=$DIR/$tdir/tgt_dir/b
17147
17148         mkdir -p $DIR/$tdir
17149
17150         prepare_remote_file || error "prepare remote file failed"
17151
17152         ln $remote_file $DIR/$tfile || error "link failed for remote file"
17153         multiop_bg_pause $remote_file O_uc ||
17154                         error "mulitop failed for remote file"
17155         MULTIPID=$!
17156         $MULTIOP $DIR/$tfile Ouc
17157         kill -USR1 $MULTIPID
17158         wait $MULTIPID
17159 }
17160 run_test 310c "open-unlink remote file with multiple links"
17161
17162 #LU-4825
17163 test_311() {
17164         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.54) ] &&
17165                 skip "lustre < 2.8.54 does not contain LU-4825 fix" && return
17166         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
17167         remote_mds_nodsh && skip "remote MDS with nodsh" && return
17168
17169         local old_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
17170
17171         mkdir -p $DIR/$tdir
17172         $SETSTRIPE -i 0 -c 1 $DIR/$tdir
17173         createmany -o $DIR/$tdir/$tfile. 1000
17174
17175         # statfs data is not real time, let's just calculate it
17176         old_iused=$((old_iused + 1000))
17177
17178         local count=$(do_facet $SINGLEMDS "lctl get_param -n \
17179                         osp.*OST0000*MDT0000.create_count")
17180         local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
17181                                 osp.*OST0000*MDT0000.max_create_count")
17182         for idx in $(seq $MDSCOUNT); do
17183                 do_facet mds$idx "lctl set_param -n \
17184                         osp.*OST0000*MDT000?.max_create_count=0"
17185         done
17186
17187         $SETSTRIPE -i 0 $DIR/$tdir/$tfile || error "setstripe failed"
17188         local index=$($GETSTRIPE -i $DIR/$tdir/$tfile)
17189         [ $index -ne 0 ] || error "$tfile stripe index is 0"
17190
17191         unlinkmany $DIR/$tdir/$tfile. 1000
17192
17193         for idx in $(seq $MDSCOUNT); do
17194                 do_facet mds$idx "lctl set_param -n \
17195                         osp.*OST0000*MDT000?.max_create_count=$max_count"
17196                 do_facet mds$idx "lctl set_param -n \
17197                         osp.*OST0000*MDT000?.create_count=$count"
17198         done
17199
17200         local new_iused
17201         for i in $(seq 120); do
17202                 new_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
17203                 # system may be too busy to destroy all objs in time, use
17204                 # a somewhat small value to not fail autotest
17205                 [ $((old_iused - new_iused)) -gt 400 ] && break
17206                 sleep 1
17207         done
17208
17209         echo "waited $i sec, old Iused $old_iused, new Iused $new_iused"
17210         [ $((old_iused - new_iused)) -gt 400 ] ||
17211                 error "objs not destroyed after unlink"
17212 }
17213 run_test 311 "disable OSP precreate, and unlink should destroy objs"
17214
17215 zfs_oid_to_objid()
17216 {
17217         local ost=$1
17218         local objid=$2
17219
17220         local vdevdir=$(dirname $(facet_vdevice $ost))
17221         local cmd="$ZDB -e -p $vdevdir -ddddd $(facet_device $ost)"
17222         local zfs_zapid=$(do_facet $ost $cmd |
17223                           grep -w "/O/0/d$((objid%32))" -C 5 |
17224                           awk '/Object/{getline; print $1}')
17225         local zfs_objid=$(do_facet $ost $cmd $zfs_zapid |
17226                           awk "/$objid = /"'{printf $3}')
17227
17228         echo $zfs_objid
17229 }
17230
17231 zfs_object_blksz() {
17232         local ost=$1
17233         local objid=$2
17234
17235         local vdevdir=$(dirname $(facet_vdevice $ost))
17236         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
17237         local blksz=$(do_facet $ost $cmd $objid |
17238                       awk '/dblk/{getline; printf $4}')
17239
17240         case "${blksz: -1}" in
17241                 k|K) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024)) ;;
17242                 m|M) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024*1024)) ;;
17243                 *) ;;
17244         esac
17245
17246         echo $blksz
17247 }
17248
17249 test_312() { # LU-4856
17250         remote_ost_nodsh && skip "remote OST with nodsh" && return
17251
17252         [ $(facet_fstype ost1) = "zfs" ] ||
17253                 { skip "the test only applies to zfs" && return; }
17254
17255         local max_blksz=$(do_facet ost1 \
17256                           $ZFS get -p recordsize $(facet_device ost1) |
17257                           awk '!/VALUE/{print $3}')
17258         local min_blksz=$(getconf PAGE_SIZE)
17259
17260         # to make life a little bit easier
17261         $LFS mkdir -c 1 -i 0 $DIR/$tdir
17262         $LFS setstripe -c 1 -i 0 $DIR/$tdir
17263
17264         local tf=$DIR/$tdir/$tfile
17265         touch $tf
17266         local oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
17267
17268         # Get ZFS object id
17269         local zfs_objid=$(zfs_oid_to_objid ost1 $oid)
17270
17271         # block size change by sequential over write
17272         local blksz
17273         for ((bs=$min_blksz; bs <= max_blksz; bs <<= 2)); do
17274                 dd if=/dev/zero of=$tf bs=$bs count=1 oflag=sync conv=notrunc
17275
17276                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
17277                 [ $blksz -eq $bs ] || error "blksz error: $blksz, expected: $bs"
17278         done
17279         rm -f $tf
17280
17281         # block size change by sequential append write
17282         dd if=/dev/zero of=$tf bs=$min_blksz count=1 oflag=sync conv=notrunc
17283         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
17284         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
17285
17286         for ((count = 1; count < $((max_blksz / min_blksz)); count *= 2)); do
17287                 dd if=/dev/zero of=$tf bs=$min_blksz count=$count seek=$count \
17288                         oflag=sync conv=notrunc
17289
17290                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
17291                 [ $blksz -eq $((2 * count * min_blksz)) ] ||
17292                         error "blksz error, actual $blksz, "    \
17293                                 "expected: 2 * $count * $min_blksz"
17294         done
17295         rm -f $tf
17296
17297         # random write
17298         touch $tf
17299         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
17300         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
17301
17302         dd if=/dev/zero of=$tf bs=1K count=1 oflag=sync conv=notrunc
17303         blksz=$(zfs_object_blksz ost1 $zfs_objid)
17304         [ $blksz -eq $min_blksz ] ||
17305                 error "blksz error: $blksz, expected: $min_blksz"
17306
17307         dd if=/dev/zero of=$tf bs=64K count=1 oflag=sync conv=notrunc seek=128
17308         blksz=$(zfs_object_blksz ost1 $zfs_objid)
17309         [ $blksz -eq 65536 ] || error "blksz error: $blksz, expected: 64k"
17310
17311         dd if=/dev/zero of=$tf bs=1M count=1 oflag=sync conv=notrunc
17312         blksz=$(zfs_object_blksz ost1 $zfs_objid)
17313         [ $blksz -eq 65536 ] || error "rewrite error: $blksz, expected: 64k"
17314 }
17315 run_test 312 "make sure ZFS adjusts its block size by write pattern"
17316
17317 test_313() {
17318         remote_ost_nodsh && skip "remote OST with nodsh" && return
17319
17320         local file=$DIR/$tfile
17321         rm -f $file
17322         $SETSTRIPE -c 1 -i 0 $file || error "setstripe failed"
17323
17324         # define OBD_FAIL_TGT_RCVD_EIO           0x720
17325         do_facet ost1 "$LCTL set_param fail_loc=0x720"
17326         dd if=/dev/zero of=$file bs=4096 oflag=direct count=1 &&
17327                 error "write should failed"
17328         do_facet ost1 "$LCTL set_param fail_loc=0"
17329         rm -f $file
17330 }
17331 run_test 313 "io should fail after last_rcvd update fail"
17332
17333 test_314() {
17334         $SETSTRIPE -c 2 -i 0 $DIR/$tfile || error "setstripe failed"
17335         do_facet ost1 "$LCTL set_param fail_loc=0x720"
17336         rm -f $DIR/$tfile
17337         wait_delete_completed
17338         do_facet ost1 "$LCTL set_param fail_loc=0"
17339 }
17340 run_test 314 "OSP shouldn't fail after last_rcvd update failure"
17341
17342 test_315() { # LU-618
17343         local file=$DIR/$tfile
17344         rm -f $file
17345
17346         $MULTIOP $file oO_CREAT:O_DIRECT:O_RDWR:w4096000c
17347         $MULTIOP $file oO_RDONLY:r4096000_c &
17348         PID=$!
17349
17350         sleep 2
17351
17352         local rbytes=$(awk '/read_bytes/ { print $2 }' /proc/$PID/io)
17353         kill -USR1 $PID
17354
17355         [ $rbytes -gt 4000000 ] || error "read is not accounted ($rbytes)"
17356         rm -f $file
17357 }
17358 run_test 315 "read should be accounted"
17359
17360 test_fake_rw() {
17361         local read_write=$1
17362         if [ "$read_write" = "write" ]; then
17363                 local dd_cmd="dd if=/dev/zero of=$DIR/$tfile"
17364         elif [ "$read_write" = "read" ]; then
17365                 local dd_cmd="dd of=/dev/null if=$DIR/$tfile"
17366         else
17367                 error "argument error"
17368         fi
17369
17370         # turn off debug for performance testing
17371         local saved_debug=$($LCTL get_param -n debug)
17372         $LCTL set_param debug=0
17373
17374         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
17375
17376         # get ost1 size - lustre-OST0000
17377         local ost1_avail_size=$($LFS df | awk /${ost1_svc}/'{ print $4 }')
17378         local blocks=$((ost1_avail_size/2/1024)) # half avail space by megabytes
17379         [ $blocks -gt 1000 ] && blocks=1000 # 1G in maximum
17380
17381         if [ "$read_write" = "read" ]; then
17382                 truncate -s $(expr 1048576 \* $blocks) $DIR/$tfile
17383         fi
17384
17385         local start_time=$(date +%s.%N)
17386         $dd_cmd bs=1M count=$blocks oflag=sync ||
17387                 error "real dd $read_write error"
17388         local duration=$(bc <<< "$(date +%s.%N) - $start_time")
17389
17390         if [ "$read_write" = "write" ]; then
17391                 rm -f $DIR/$tfile
17392         fi
17393
17394         # define OBD_FAIL_OST_FAKE_RW           0x238
17395         do_facet ost1 $LCTL set_param fail_loc=0x238
17396
17397         local start_time=$(date +%s.%N)
17398         $dd_cmd bs=1M count=$blocks oflag=sync ||
17399                 error "fake dd $read_write error"
17400         local duration_fake=$(bc <<< "$(date +%s.%N) - $start_time")
17401
17402         if [ "$read_write" = "write" ]; then
17403                 # verify file size
17404                 cancel_lru_locks osc
17405                 $CHECKSTAT -t file -s $((blocks * 1024 * 1024)) $DIR/$tfile ||
17406                         error "$tfile size not $blocks MB"
17407         fi
17408         do_facet ost1 $LCTL set_param fail_loc=0
17409
17410         echo "fake $read_write $duration_fake vs. normal $read_write" \
17411                 "$duration in seconds"
17412         [ $(bc <<< "$duration_fake < $duration") -eq 1 ] ||
17413                 error_not_in_vm "fake write is slower"
17414
17415         $LCTL set_param -n debug="$saved_debug"
17416         rm -f $DIR/$tfile
17417 }
17418 test_399a() { # LU-7655 for OST fake write
17419         remote_ost_nodsh && skip "remote OST with nodsh" && return
17420
17421         test_fake_rw write
17422 }
17423 run_test 399a "fake write should not be slower than normal write"
17424
17425 test_399b() { # LU-8726 for OST fake read
17426         remote_ost_nodsh && skip "remote OST with nodsh" && return
17427
17428         if [ "$(facet_fstype ost1)" != "ldiskfs" ]; then
17429                 skip "ldiskfs only test" && return 0
17430         fi
17431         test_fake_rw read
17432 }
17433 run_test 399b "fake read should not be slower than normal read"
17434
17435 test_400a() { # LU-1606, was conf-sanity test_74
17436         local extra_flags=''
17437         local out=$TMP/$tfile
17438         local prefix=/usr/include/lustre
17439         local prog
17440
17441         if ! which $CC > /dev/null 2>&1; then
17442                 skip_env "$CC is not installed"
17443                 return 0
17444         fi
17445
17446         if ! [[ -d $prefix ]]; then
17447                 # Assume we're running in tree and fixup the include path.
17448                 extra_flags+=" -I$LUSTRE/include"
17449                 extra_flags+=" -L$LUSTRE/utils"
17450         fi
17451
17452         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
17453                 $CC -Wall -Werror $extra_flags -llustreapi -o $out $prog ||
17454                         error "client api broken"
17455         done
17456         rm -f $out
17457 }
17458 run_test 400a "Lustre client api program can compile and link"
17459
17460 test_400b() { # LU-1606, LU-5011
17461         local header
17462         local out=$TMP/$tfile
17463         local prefix=/usr/include/linux/lustre
17464
17465         # We use a hard coded prefix so that this test will not fail
17466         # when run in tree. There are headers in lustre/include/lustre/
17467         # that are not packaged (like lustre_idl.h) and have more
17468         # complicated include dependencies (like config.h and lnet/types.h).
17469         # Since this test about correct packaging we just skip them when
17470         # they don't exist (see below) rather than try to fixup cppflags.
17471
17472         if ! which $CC > /dev/null 2>&1; then
17473                 skip_env "$CC is not installed"
17474                 return 0
17475         fi
17476
17477         for header in $prefix/*.h; do
17478                 if ! [[ -f "$header" ]]; then
17479                         continue
17480                 fi
17481
17482                 if [[ "$(basename $header)" == lustre_ioctl.h ]]; then
17483                         continue # lustre_ioctl.h is internal header
17484                 fi
17485
17486                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
17487                         error "cannot compile '$header'"
17488         done
17489         rm -f $out
17490 }
17491 run_test 400b "packaged headers can be compiled"
17492
17493 test_401a() { #LU-7437
17494         local printf_arg=$(find -printf 2>&1 | grep "unrecognized:")
17495         [ -n "$printf_arg" ] && skip_env "find does not support -printf" &&
17496                 return
17497         #count the number of parameters by "list_param -R"
17498         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
17499         #count the number of parameters by listing proc files
17500         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
17501         echo "proc_dirs='$proc_dirs'"
17502         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
17503         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
17504                       sort -u | wc -l)
17505
17506         [ $params -eq $procs ] ||
17507                 error "found $params parameters vs. $procs proc files"
17508
17509         # test the list_param -D option only returns directories
17510         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
17511         #count the number of parameters by listing proc directories
17512         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
17513                 sort -u | wc -l)
17514
17515         [ $params -eq $procs ] ||
17516                 error "found $params parameters vs. $procs proc files"
17517 }
17518 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
17519
17520 test_401b() {
17521         local save=$($LCTL get_param -n jobid_var)
17522         local tmp=testing
17523
17524         $LCTL set_param foo=bar jobid_var=$tmp bar=baz &&
17525                 error "no error returned when setting bad parameters"
17526
17527         local jobid_new=$($LCTL get_param -n foe jobid_var baz)
17528         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
17529
17530         $LCTL set_param -n fog=bam jobid_var=$save bat=fog
17531         local jobid_old=$($LCTL get_param -n foe jobid_var bag)
17532         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
17533 }
17534 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
17535
17536 test_401c() {
17537         local jobid_var_old=$($LCTL get_param -n jobid_var)
17538         local jobid_var_new
17539
17540         $LCTL set_param jobid_var= &&
17541                 error "no error returned for 'set_param a='"
17542
17543         jobid_var_new=$($LCTL get_param -n jobid_var)
17544         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
17545                 error "jobid_var was changed by setting without value"
17546
17547         $LCTL set_param jobid_var &&
17548                 error "no error returned for 'set_param a'"
17549
17550         jobid_var_new=$($LCTL get_param -n jobid_var)
17551         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
17552                 error "jobid_var was changed by setting without value"
17553 }
17554 run_test 401c "Verify 'lctl set_param' without value fails in either format."
17555
17556 test_401d() {
17557         local jobid_var_old=$($LCTL get_param -n jobid_var)
17558         local jobid_var_new
17559         local new_value="foo=bar"
17560
17561         $LCTL set_param jobid_var=$new_value ||
17562                 error "'set_param a=b' did not accept a value containing '='"
17563
17564         jobid_var_new=$($LCTL get_param -n jobid_var)
17565         [[ "$jobid_var_new" == "$new_value" ]] ||
17566                 error "'set_param a=b' failed on a value containing '='"
17567
17568         # Reset the jobid_var to test the other format
17569         $LCTL set_param jobid_var=$jobid_var_old
17570         jobid_var_new=$($LCTL get_param -n jobid_var)
17571         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
17572                 error "failed to reset jobid_var"
17573
17574         $LCTL set_param jobid_var $new_value ||
17575                 error "'set_param a b' did not accept a value containing '='"
17576
17577         jobid_var_new=$($LCTL get_param -n jobid_var)
17578         [[ "$jobid_var_new" == "$new_value" ]] ||
17579                 error "'set_param a b' failed on a value containing '='"
17580
17581         $LCTL set_param jobid_var $jobid_var_old
17582         jobid_var_new=$($LCTL get_param -n jobid_var)
17583         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
17584                 error "failed to reset jobid_var"
17585 }
17586 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
17587
17588 test_402() {
17589         local server_version=$(lustre_version_code $SINGLEMDS)
17590         [[ $server_version -ge $(version_code 2.7.66) ]] ||
17591         [[ $server_version -ge $(version_code 2.7.18.4) &&
17592                 $server_version -lt $(version_code 2.7.50) ]] ||
17593         [[ $server_version -ge $(version_code 2.7.2) &&
17594                 $server_version -lt $(version_code 2.7.11) ]] ||
17595                 { skip "Need MDS version 2.7.2+ or 2.7.18.4+ or 2.7.66+";
17596                         return; }
17597         remote_mds_nodsh && skip "remote MDS with nodsh" && return
17598         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
17599 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
17600         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
17601         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
17602                 echo "Touch failed - OK"
17603 }
17604 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
17605
17606 test_403() {
17607         local file1=$DIR/$tfile.1
17608         local file2=$DIR/$tfile.2
17609         local tfile=$TMP/$tfile
17610
17611         rm -f $file1 $file2 $tfile
17612
17613         touch $file1
17614         ln $file1 $file2
17615
17616         # 30 sec OBD_TIMEOUT in ll_getattr()
17617         # right before populating st_nlink
17618         $LCTL set_param fail_loc=0x80001409
17619         stat -c %h $file1 > $tfile &
17620
17621         # create an alias, drop all locks and reclaim the dentry
17622         < $file2
17623         cancel_lru_locks mdc
17624         cancel_lru_locks osc
17625         sysctl -w vm.drop_caches=2
17626
17627         wait
17628
17629         [ $(cat $tfile) -gt 0 ] || error "wrong nlink count: $(cat $tfile)"
17630
17631         rm -f $tfile $file1 $file2
17632 }
17633 run_test 403 "i_nlink should not drop to zero due to aliasing"
17634
17635 test_404() { # LU-6601
17636         local server_version=$(lustre_version_code $SINGLEMDS)
17637         [[ $server_version -ge $(version_code 2.8.53) ]] ||
17638                 { skip "Need server version newer than 2.8.52"; return 0; }
17639
17640         remote_mds_nodsh && skip "remote MDS with nodsh" && return
17641         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
17642                 awk '/osp .*-osc-MDT/ { print $4}')
17643
17644         local osp
17645         for osp in $mosps; do
17646                 echo "Deactivate: " $osp
17647                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
17648                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
17649                         awk -vp=$osp '$4 == p { print $2 }')
17650                 [ $stat = IN ] || {
17651                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
17652                         error "deactivate error"
17653                 }
17654                 echo "Activate: " $osp
17655                 do_facet $SINGLEMDS $LCTL --device %$osp activate
17656                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
17657                         awk -vp=$osp '$4 == p { print $2 }')
17658                 [ $stat = UP ] || {
17659                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
17660                         error "activate error"
17661                 }
17662         done
17663 }
17664 run_test 404 "validate manual {de}activated works properly for OSPs"
17665
17666 test_405() {
17667         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) -o \
17668         [ $(lustre_version_code client) -lt $(version_code 2.6.99) ] &&
17669                 skip "Layout swap lock is not supported" && return
17670
17671         check_swap_layouts_support && return 0
17672
17673         test_mkdir $DIR/$tdir
17674         swap_lock_test -d $DIR/$tdir ||
17675                 error "One layout swap locked test failed"
17676 }
17677 run_test 405 "Various layout swap lock tests"
17678
17679 test_406() {
17680         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
17681         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
17682         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
17683         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
17684         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.50) ] &&
17685                 skip "Need MDS version at least 2.8.50" && return
17686
17687         local def_stripe_size=$($LFS getstripe -S $MOUNT)
17688         local test_pool=$TESTNAME
17689
17690         if ! combined_mgs_mds ; then
17691                 mount_mgs_client
17692         fi
17693         pool_add $test_pool || error "pool_add failed"
17694         pool_add_targets $test_pool 0 $(($OSTCOUNT - 1)) 1 ||
17695                 error "pool_add_targets failed"
17696
17697         save_layout_restore_at_exit $MOUNT
17698
17699         # parent set default stripe count only, child will stripe from both
17700         # parent and fs default
17701         $LFS setstripe -c 1 -i 1 -S $((def_stripe_size * 2)) -p $test_pool $MOUNT ||
17702                 error "setstripe $MOUNT failed"
17703         $LFS mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
17704         $LFS setstripe -c $OSTCOUNT $DIR/$tdir || error "setstripe $tdir failed"
17705         for i in $(seq 10); do
17706                 local f=$DIR/$tdir/$tfile.$i
17707                 touch $f || error "touch failed"
17708                 local count=$($LFS getstripe -c $f)
17709                 [ $count -eq $OSTCOUNT ] ||
17710                         error "$f stripe count $count != $OSTCOUNT"
17711                 local offset=$($LFS getstripe -i $f)
17712                 [ $offset -eq 1 ] || error "$f stripe offset $offset != 1"
17713                 local size=$($LFS getstripe -S $f)
17714                 [ $size -eq $((def_stripe_size * 2)) ] ||
17715                         error "$f stripe size $size != $((def_stripe_size * 2))"
17716                 local pool=$($LFS getstripe -p $f)
17717                 [ $pool == $test_pool ] || error "$f pool $pool != $test_pool"
17718         done
17719
17720         # change fs default striping, delete parent default striping, now child
17721         # will stripe from new fs default striping only
17722         $LFS setstripe -c 1 -S $def_stripe_size -i 0 $MOUNT ||
17723                 error "change $MOUNT default stripe failed"
17724         $LFS setstripe -c 0 $DIR/$tdir ||
17725                 error "delete $tdir default stripe failed"
17726         for i in $(seq 11 20); do
17727                 local f=$DIR/$tdir/$tfile.$i
17728                 touch $f || error "touch $f failed"
17729                 local count=$($LFS getstripe -c $f)
17730                 [ $count -eq 1 ] || error "$f stripe count $count != 1"
17731                 local offset=$($LFS getstripe -i $f)
17732                 [ $offset -eq 0 ] || error "$f stripe offset $offset != 0"
17733                 local size=$($LFS getstripe -S $f)
17734                 [ $size -eq $def_stripe_size ] ||
17735                         error "$f stripe size $size != $def_stripe_size"
17736                 local pool=$($LFS getstripe -p $f)
17737                 [ $pool == $test_pool ] || error "$f pool $pool isn't set"
17738         done
17739
17740         unlinkmany $DIR/$tdir/$tfile. 1 20
17741
17742         local f=$DIR/$tdir/$tfile
17743         pool_remove_all_targets $test_pool $f
17744         pool_remove $test_pool $f
17745
17746         if ! combined_mgs_mds ; then
17747                 umount_mgs_client
17748         fi
17749 }
17750 run_test 406 "DNE support fs default striping"
17751
17752 test_407() {
17753         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
17754         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
17755                 skip "Need MDS version at least 2.8.55" && return
17756         remote_mds_nodsh && skip "remote MDS with nodsh" && return
17757
17758         $LFS mkdir -i 0 -c 1 $DIR/$tdir.0 ||
17759                 error "$LFS mkdir -i 0 -c 1 $tdir.0 failed"
17760         $LFS mkdir -i 1 -c 1 $DIR/$tdir.1 ||
17761                 error "$LFS mkdir -i 1 -c 1 $tdir.1 failed"
17762         touch $DIR/$tdir.0/$tfile.0 || error "touch $tdir.0/$tfile.0 failed"
17763
17764         #define OBD_FAIL_DT_TXN_STOP    0x2019
17765         for idx in $(seq $MDSCOUNT); do
17766                 do_facet mds$idx "lctl set_param fail_loc=0x2019"
17767         done
17768         $LFS mkdir -c 2 $DIR/$tdir && error "$LFS mkdir -c 2 $tdir should fail"
17769         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1/$tfile.1 &&
17770                 error "mv $tdir.0/$tfile.0 $tdir.1/$tfile.1 should fail"
17771         true
17772 }
17773 run_test 407 "transaction fail should cause operation fail"
17774
17775 test_408() {
17776         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 oflag=direct
17777
17778         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
17779         lctl set_param fail_loc=0x8000040a
17780         # let ll_prepare_partial_page() fail
17781         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 conv=notrunc || true
17782
17783         rm -f $DIR/$tfile
17784
17785         # create at least 100 unused inodes so that
17786         # shrink_icache_memory(0) should not return 0
17787         touch $DIR/$tfile-{0..100}
17788         rm -f $DIR/$tfile-{0..100}
17789         sync
17790
17791         echo 2 > /proc/sys/vm/drop_caches
17792 }
17793 run_test 408 "drop_caches should not hang due to page leaks"
17794
17795 test_409()
17796 {
17797         [ $MDSCOUNT -lt 2 ] &&
17798                 skip "We need at least 2 MDTs for this test" && return
17799
17800         check_mount_and_prep
17801
17802         mkdir -p $DIR/$tdir || error "(0) Fail to mkdir"
17803         $LFS mkdir -i 1 -c 2 $DIR/$tdir/foo || error "(1) Fail to mkdir"
17804         touch $DIR/$tdir/guard || error "(2) Fail to create"
17805
17806         local PREFIX=$(str_repeat 'A' 128)
17807         echo "Create 1K hard links start at $(date)"
17808         createmany -l $DIR/$tdir/guard $DIR/$tdir/foo/${PREFIX}_ 1000 ||
17809                 error "(3) Fail to hard link"
17810
17811         echo "Links count should be right although linkEA overflow"
17812         stat $DIR/$tdir/guard || error "(4) Fail to stat"
17813         local linkcount=$(stat --format=%h $DIR/$tdir/guard)
17814         [ $linkcount -eq 1001 ] ||
17815                 error "(5) Unexpected hard links count: $linkcount"
17816
17817         echo "List all links start at $(date)"
17818         ls -l $DIR/$tdir/foo > /dev/null ||
17819                 error "(6) Fail to list $DIR/$tdir/foo"
17820
17821         echo "Unlink hard links start at $(date)"
17822         unlinkmany $DIR/$tdir/foo/${PREFIX}_ 1000 ||
17823                 error "(7) Fail to unlink"
17824 }
17825 run_test 409 "Large amount of cross-MDTs hard links on the same file"
17826
17827 test_410()
17828 {
17829         [[ $(lustre_version_code client) -lt $(version_code 2.9.59) ]] &&
17830                 skip "Need client version at least 2.9.59" && return
17831
17832         # Create a file, and stat it from the kernel
17833         local testfile=$DIR/$tfile
17834         touch $testfile
17835
17836         local run_id=$RANDOM
17837         local my_ino=$(stat --format "%i" $testfile)
17838
17839         # Try to insert the module. This will always fail as the
17840         # module is designed to not be inserted.
17841         insmod $LUSTRE/tests/kernel/kinode.ko run_id=$run_id fname=$testfile \
17842             &> /dev/null
17843
17844         # Anything but success is a test failure
17845         dmesg | grep -q \
17846             "lustre_kinode_$run_id: inode numbers are identical: $my_ino" ||
17847             error "no inode match"
17848 }
17849 run_test 410 "Test inode number returned from kernel thread"
17850
17851 cleanup_test411_cgroup() {
17852         trap 0
17853         rmdir "$1"
17854 }
17855
17856 test_411() {
17857         local cg_basedir=/sys/fs/cgroup/memory
17858         # LU-9966
17859         test -f "$cg_basedir/memory.kmem.limit_in_bytes" ||
17860                 { skip "no setup for cgroup"; return; }
17861
17862         dd if=/dev/zero of=$DIR/$tfile bs=1M count=100 conv=fsync ||
17863                 error "test file creation failed"
17864         cancel_lru_locks osc
17865
17866         # Create a very small memory cgroup to force a slab allocation error
17867         local cgdir=$cg_basedir/osc_slab_alloc
17868         mkdir $cgdir || error "cgroup mkdir '$cgdir' failed"
17869         trap "cleanup_test411_cgroup $cgdir" EXIT
17870         echo 2M > $cgdir/memory.kmem.limit_in_bytes
17871         echo 1M > $cgdir/memory.limit_in_bytes
17872
17873         # Should not LBUG, just be killed by oom-killer
17874         sh -c "echo \$$ > $cgdir/tasks && dd if=$DIR/$tfile of=/dev/null" &&
17875                 error "fail to trigger a memory allocation error"
17876
17877         cleanup_test411_cgroup $cgdir
17878
17879         return 0
17880 }
17881 run_test 411 "Slab allocation error with cgroup does not LBUG"
17882
17883 test_412() {
17884         [ $MDSCOUNT -lt 2 ] &&
17885                 skip "We need at least 2 MDTs for this test" && return
17886
17887         if [ $(lustre_version_code mds1) -lt $(version_code 2.10.55) ]; then
17888                 skip "Need server version at least 2.10.55" && exit 0
17889         fi
17890
17891         $LFS mkdir -i $((MDSCOUNT - 1)),$((MDSCOUNT - 2)) $DIR/$tdir ||
17892                 error "mkdir failed"
17893         $LFS getdirstripe $DIR/$tdir
17894         local stripe_index=$($LFS getdirstripe -i $DIR/$tdir)
17895         [ $stripe_index -eq $((MDSCOUNT - 1)) ] ||
17896                 error "expect $((MDSCOUT - 1)) get $stripe_index"
17897         local stripe_count=$($LFS getdirstripe -T $DIR/$tdir)
17898         [ $stripe_count -eq 2 ] ||
17899                 error "expect 2 get $stripe_count"
17900 }
17901 run_test 412 "mkdir on specific MDTs"
17902
17903 test_413() {
17904         [ $MDSCOUNT -lt 2 ] &&
17905                 skip "We need at least 2 MDTs for this test" && return
17906
17907         if [ $(lustre_version_code mds1) -lt $(version_code 2.10.55) ]; then
17908                 skip "Need server version at least 2.10.55" && exit 0
17909         fi
17910
17911         mkdir $DIR/$tdir || error "mkdir failed"
17912
17913         # find MDT that is the most full
17914         local max=$($LFS df | grep MDT |
17915                 awk 'BEGIN { a=0 }
17916                         { sub("%", "", $5)
17917                           if (0+$5 >= a)
17918                           {
17919                                 a = $5
17920                                 b = $6
17921                           }
17922                         }
17923                      END { split(b, c, ":")
17924                            sub("]", "", c[2])
17925                            print c[2]
17926                          }')
17927
17928         for i in $(seq $((MDSCOUNT - 1))); do
17929                 $LFS mkdir -c $i $DIR/$tdir/d$i ||
17930                         error "mkdir d$i failed"
17931                 $LFS getdirstripe $DIR/$tdir/d$i
17932                 local stripe_index=$($LFS getdirstripe -i $DIR/$tdir/d$i)
17933                 [ $stripe_index -ne $max ] ||
17934                         error "don't expect $max"
17935         done
17936 }
17937 run_test 413 "mkdir on less full MDTs"
17938
17939 prep_801() {
17940         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
17941         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
17942                 skip "Need server version at least 2.9.55" & exit 0
17943         start_full_debug_logging
17944 }
17945
17946 post_801() {
17947         stop_full_debug_logging
17948 }
17949
17950 barrier_stat() {
17951         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
17952                 local st=$(do_facet mgs $LCTL barrier_stat $FSNAME |
17953                            awk '/The barrier for/ { print $7 }')
17954                 echo $st
17955         else
17956                 local st=$(do_facet mgs $LCTL barrier_stat -s $FSNAME)
17957                 echo \'$st\'
17958         fi
17959 }
17960
17961 barrier_expired() {
17962         local expired
17963
17964         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
17965                 expired=$(do_facet mgs $LCTL barrier_stat $FSNAME |
17966                           awk '/will be expired/ { print $7 }')
17967         else
17968                 expired=$(do_facet mgs $LCTL barrier_stat -t $FSNAME)
17969         fi
17970
17971         echo $expired
17972 }
17973
17974 test_801a() {
17975         prep_801
17976
17977         echo "Start barrier_freeze at: $(date)"
17978         #define OBD_FAIL_BARRIER_DELAY          0x2202
17979         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
17980         do_facet mgs $LCTL barrier_freeze $FSNAME 10 &
17981
17982         sleep 2
17983         local b_status=$(barrier_stat)
17984         echo "Got barrier status at: $(date)"
17985         [ "$b_status" = "'freezing_p1'" ] ||
17986                 error "(1) unexpected barrier status $b_status"
17987
17988         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
17989         wait
17990         b_status=$(barrier_stat)
17991         [ "$b_status" = "'frozen'" ] ||
17992                 error "(2) unexpected barrier status $b_status"
17993
17994         local expired=$(barrier_expired)
17995         echo "sleep $((expired + 3)) seconds, then the barrier will be expired"
17996         sleep $((expired + 3))
17997
17998         b_status=$(barrier_stat)
17999         [ "$b_status" = "'expired'" ] ||
18000                 error "(3) unexpected barrier status $b_status"
18001
18002         do_facet mgs $LCTL barrier_freeze $FSNAME 10 ||
18003                 error "(4) fail to freeze barrier"
18004
18005         b_status=$(barrier_stat)
18006         [ "$b_status" = "'frozen'" ] ||
18007                 error "(5) unexpected barrier status $b_status"
18008
18009         echo "Start barrier_thaw at: $(date)"
18010         #define OBD_FAIL_BARRIER_DELAY          0x2202
18011         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
18012         do_facet mgs $LCTL barrier_thaw $FSNAME &
18013
18014         sleep 2
18015         b_status=$(barrier_stat)
18016         echo "Got barrier status at: $(date)"
18017         [ "$b_status" = "'thawing'" ] ||
18018                 error "(6) unexpected barrier status $b_status"
18019
18020         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
18021         wait
18022         b_status=$(barrier_stat)
18023         [ "$b_status" = "'thawed'" ] ||
18024                 error "(7) unexpected barrier status $b_status"
18025
18026         #define OBD_FAIL_BARRIER_FAILURE        0x2203
18027         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2203
18028         do_facet mgs $LCTL barrier_freeze $FSNAME
18029
18030         b_status=$(barrier_stat)
18031         [ "$b_status" = "'failed'" ] ||
18032                 error "(8) unexpected barrier status $b_status"
18033
18034         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
18035         do_facet mgs $LCTL barrier_thaw $FSNAME
18036
18037         post_801
18038 }
18039 run_test 801a "write barrier user interfaces and stat machine"
18040
18041 test_801b() {
18042         prep_801
18043
18044         mkdir $DIR/$tdir || error "(1) fail to mkdir"
18045         createmany -d $DIR/$tdir/d 6 || "(2) fail to mkdir"
18046         touch $DIR/$tdir/d2/f10 || error "(3) fail to touch"
18047         touch $DIR/$tdir/d3/f11 || error "(4) fail to touch"
18048         touch $DIR/$tdir/d4/f12 || error "(5) fail to touch"
18049
18050         cancel_lru_locks mdc
18051
18052         # 180 seconds should be long enough
18053         do_facet mgs $LCTL barrier_freeze $FSNAME 180
18054
18055         local b_status=$(barrier_stat)
18056         [ "$b_status" = "'frozen'" ] ||
18057                 error "(6) unexpected barrier status $b_status"
18058
18059         mkdir $DIR/$tdir/d0/d10 &
18060         mkdir_pid=$!
18061
18062         touch $DIR/$tdir/d1/f13 &
18063         touch_pid=$!
18064
18065         ln $DIR/$tdir/d2/f10 $DIR/$tdir/d2/f14 &
18066         ln_pid=$!
18067
18068         mv $DIR/$tdir/d3/f11 $DIR/$tdir/d3/f15 &
18069         mv_pid=$!
18070
18071         rm -f $DIR/$tdir/d4/f12 &
18072         rm_pid=$!
18073
18074         stat $DIR/$tdir/d5 || error "(7) stat should succeed"
18075
18076         # To guarantee taht the 'stat' is not blocked
18077         b_status=$(barrier_stat)
18078         [ "$b_status" = "'frozen'" ] ||
18079                 error "(8) unexpected barrier status $b_status"
18080
18081         # let above commands to run at background
18082         sleep 5
18083
18084         ps -p $mkdir_pid || error "(9) mkdir should be blocked"
18085         ps -p $touch_pid || error "(10) touch should be blocked"
18086         ps -p $ln_pid || error "(11) link should be blocked"
18087         ps -p $mv_pid || error "(12) rename should be blocked"
18088         ps -p $rm_pid || error "(13) unlink should be blocked"
18089
18090         b_status=$(barrier_stat)
18091         [ "$b_status" = "'frozen'" ] ||
18092                 error "(14) unexpected barrier status $b_status"
18093
18094         do_facet mgs $LCTL barrier_thaw $FSNAME
18095         b_status=$(barrier_stat)
18096         [ "$b_status" = "'thawed'" ] ||
18097                 error "(15) unexpected barrier status $b_status"
18098
18099         wait $mkdir_pid || error "(16) mkdir should succeed"
18100         wait $touch_pid || error "(17) touch should succeed"
18101         wait $ln_pid || error "(18) link should succeed"
18102         wait $mv_pid || error "(19) rename should succeed"
18103         wait $rm_pid || error "(20) unlink should succeed"
18104
18105         post_801
18106 }
18107 run_test 801b "modification will be blocked by write barrier"
18108
18109 test_801c() {
18110         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
18111
18112         prep_801
18113
18114         stop mds2 || error "(1) Fail to stop mds2"
18115
18116         do_facet mgs $LCTL barrier_freeze $FSNAME 30
18117
18118         local b_status=$(barrier_stat)
18119         [ "$b_status" = "'expired'" -o "$b_status" = "'failed'" ] || {
18120                 do_facet mgs $LCTL barrier_thaw $FSNAME
18121                 error "(2) unexpected barrier status $b_status"
18122         }
18123
18124         do_facet mgs $LCTL barrier_rescan $FSNAME ||
18125                 error "(3) Fail to rescan barrier bitmap"
18126
18127         do_facet mgs $LCTL barrier_freeze $FSNAME 10
18128
18129         b_status=$(barrier_stat)
18130         [ "$b_status" = "'frozen'" ] ||
18131                 error "(4) unexpected barrier status $b_status"
18132
18133         do_facet mgs $LCTL barrier_thaw $FSNAME
18134         b_status=$(barrier_stat)
18135         [ "$b_status" = "'thawed'" ] ||
18136                 error "(5) unexpected barrier status $b_status"
18137
18138         local devname=$(mdsdevname 2)
18139
18140         start mds2 $devname $MDS_MOUNT_OPTS || error "(6) Fail to start mds2"
18141
18142         do_facet mgs $LCTL barrier_rescan $FSNAME ||
18143                 error "(7) Fail to rescan barrier bitmap"
18144
18145         post_801
18146 }
18147 run_test 801c "rescan barrier bitmap"
18148
18149 saved_MGS_MOUNT_OPTS=$MGS_MOUNT_OPTS
18150 saved_MDS_MOUNT_OPTS=$MDS_MOUNT_OPTS
18151 saved_OST_MOUNT_OPTS=$OST_MOUNT_OPTS
18152
18153 cleanup_802() {
18154         trap 0
18155
18156         stopall
18157         MGS_MOUNT_OPTS=$saved_MGS_MOUNT_OPTS
18158         MDS_MOUNT_OPTS=$saved_MDS_MOUNT_OPTS
18159         OST_MOUNT_OPTS=$saved_OST_MOUNT_OPTS
18160         setupall
18161 }
18162
18163 test_802() {
18164
18165         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
18166         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
18167                 skip "Need server version at least 2.9.55" & exit 0
18168
18169         mkdir $DIR/$tdir || error "(1) fail to mkdir"
18170
18171         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
18172                 error "(2) Fail to copy"
18173
18174         trap cleanup_802 EXIT
18175
18176         # sync by force before remount as readonly
18177         sync; sync_all_data; sleep 3; sync_all_data
18178
18179         stopall
18180
18181         MGS_MOUNT_OPTS=$(csa_add "$MGS_MOUNT_OPTS" -o rdonly_dev)
18182         MDS_MOUNT_OPTS=$(csa_add "$MDS_MOUNT_OPTS" -o rdonly_dev)
18183         OST_MOUNT_OPTS=$(csa_add "$OST_MOUNT_OPTS" -o rdonly_dev)
18184
18185         echo "Mount the server as read only"
18186         setupall server_only || error "(3) Fail to start servers"
18187
18188         echo "Mount client without ro should fail"
18189         mount_client $MOUNT &&
18190                 error "(4) Mount client without 'ro' should fail"
18191
18192         echo "Mount client with ro should succeed"
18193         mount_client $MOUNT ro ||
18194                 error "(5) Mount client with 'ro' should succeed"
18195
18196         echo "Modify should be refused"
18197         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
18198
18199         echo "Read should be allowed"
18200         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
18201                 error "(7) Read should succeed under ro mode"
18202
18203         cleanup_802
18204 }
18205 run_test 802 "simulate readonly device"
18206
18207 test_803() {
18208         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
18209         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.54) ] &&
18210                 skip "MDS needs to be newer than 2.10.54" && return
18211
18212         mkdir -p $DIR/$tdir
18213         # Create some objects on all MDTs to trigger related logs objects
18214         for idx in $(seq $MDSCOUNT); do
18215                 $LFS mkdir -c $MDSCOUNT -i $((idx % $MDSCOUNT)) \
18216                         $DIR/$tdir/dir${idx} ||
18217                         error "Fail to create $DIR/$tdir/dir${idx}"
18218         done
18219
18220         sync; sleep 3
18221         echo "before create:"
18222         $LFS df -i $MOUNT
18223         local before_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
18224
18225         for ((i=0; i<10; i++)); do
18226                 $LFS mkdir -c 1 -i 1 $DIR/$tdir/foo$i ||
18227                         error "Fail to create $DIR/$tdir/foo$i"
18228         done
18229
18230         sync; sleep 3
18231         echo "after create:"
18232         $LFS df -i $MOUNT
18233         local after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
18234
18235         [ $after_used -ge $((before_used + 10)) ] ||
18236                 error "before ($before_used) + 10 > after ($after_used)"
18237
18238         for ((i=0; i<10; i++)); do
18239                 rm -rf $DIR/$tdir/foo$i ||
18240                         error "Fail to remove $DIR/$tdir/foo$i"
18241         done
18242
18243         sleep 3 # avoid MDT return cached statfs
18244         wait_delete_completed
18245         echo "after unlink:"
18246         $LFS df -i $MOUNT
18247         before_used=$after_used
18248         after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
18249
18250         [ $after_used -le $((before_used - 8)) ] ||
18251                 error "before ($before_used) - 8 < after ($after_used)"
18252 }
18253 run_test 803 "verify agent object for remote object"
18254
18255 test_804() {
18256         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
18257         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.54) ] &&
18258                 skip "MDS needs to be newer than 2.10.54" && return
18259
18260         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
18261                 skip "ldiskfs only test" && return 0
18262
18263         mkdir -p $DIR/$tdir
18264         $LFS mkdir -c 1 -i 1 $DIR/$tdir/dir0 ||
18265                 error "Fail to create $DIR/$tdir/dir0"
18266
18267         local fid=$($LFS path2fid $DIR/$tdir/dir0)
18268         local dev=$(mdsdevname 2)
18269
18270         do_facet mds2 "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
18271                 grep ${fid} || error "NOT found agent entry for dir0"
18272
18273         $LFS mkdir -c $MDSCOUNT -i 0 $DIR/$tdir/dir1 ||
18274                 error "Fail to create $DIR/$tdir/dir1"
18275
18276         touch $DIR/$tdir/dir1/foo0 ||
18277                 error "Fail to create $DIR/$tdir/dir1/foo0"
18278         fid=$($LFS path2fid $DIR/$tdir/dir1/foo0)
18279         local rc=0
18280
18281         for idx in $(seq $MDSCOUNT); do
18282                 dev=$(mdsdevname $idx)
18283                 do_facet mds${idx} \
18284                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
18285                         grep ${fid} && rc=$idx
18286         done
18287
18288         mv $DIR/$tdir/dir1/foo0 $DIR/$tdir/dir1/foo1 ||
18289                 error "Fail to rename foo0 to foo1"
18290         if [ $rc -eq 0 ]; then
18291                 for idx in $(seq $MDSCOUNT); do
18292                         dev=$(mdsdevname $idx)
18293                         do_facet mds${idx} \
18294                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
18295                         grep ${fid} && rc=$idx
18296                 done
18297         fi
18298
18299         mv $DIR/$tdir/dir1/foo1 $DIR/$tdir/dir1/foo2 ||
18300                 error "Fail to rename foo1 to foo2"
18301         if [ $rc -eq 0 ]; then
18302                 for idx in $(seq $MDSCOUNT); do
18303                         dev=$(mdsdevname $idx)
18304                         do_facet mds${idx} \
18305                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
18306                         grep ${fid} && rc=$idx
18307                 done
18308         fi
18309
18310         [ $rc -ne 0 ] || error "NOT found agent entry for foo"
18311
18312         ln $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir0/guard ||
18313                 error "Fail to link to $DIR/$tdir/dir1/foo2"
18314         mv $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir1/foo0 ||
18315                 error "Fail to rename foo2 to foo0"
18316         unlink $DIR/$tdir/dir1/foo0 ||
18317                 error "Fail to unlink $DIR/$tdir/dir1/foo0"
18318         rm -rf $DIR/$tdir/dir0 ||
18319                 error "Fail to rm $DIR/$tdir/dir0"
18320
18321         for idx in $(seq $MDSCOUNT); do
18322                 dev=$(mdsdevname $idx)
18323                 rc=0
18324
18325                 stop mds${idx}
18326                 run_e2fsck $(facet_active_host mds$idx) $dev -n ||
18327                         rc=$?
18328                 start mds${idx} $dev $MDS_MOUNT_OPTS ||
18329                         error "mount mds$idx failed"
18330                 df $MOUNT > /dev/null 2>&1
18331
18332                 # e2fsck should not return error
18333                 [ $rc -eq 0 ] ||
18334                         error "e2fsck detected error on MDT${idx}: rc=$rc"
18335         done
18336 }
18337 run_test 804 "verify agent entry for remote entry"
18338
18339 cleanup_805() {
18340         do_facet $SINGLEMDS zfs set quota=$old $fsset
18341         unlinkmany $DIR/$tdir/f- 1000000
18342         trap 0
18343 }
18344
18345 test_805() {
18346         local zfs_version=$(do_node $SINGLEMDS cat /sys/module/zfs/version)
18347         [ "$(facet_fstype mds1)" != "zfs" ] &&
18348                 skip "ZFS specific test" && return
18349         [ $(version_code $zfs_version) -lt $(version_code 0.7.2) ] &&
18350                 skip "netfree not implemented before 0.7" && return
18351         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.57) ]] ||
18352                 { skip "Need MDS version at least 2.10.57" && return 0; }
18353
18354         local fsset
18355         local freekb
18356         local usedkb
18357         local old
18358         local quota
18359         local pref="osd-zfs.lustre-MDT0000."
18360
18361         # limit available space on MDS dataset to meet nospace issue
18362         # quickly. then ZFS 0.7.2 can use reserved space if asked
18363         # properly (using netfree flag in osd_declare_destroy()
18364         fsset=$(do_facet $SINGLEMDS lctl get_param -n $pref.mntdev)
18365         old=$(do_facet $SINGLEMDS zfs get -H quota $fsset | \
18366                 gawk '{print $3}')
18367         freekb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytesfree)
18368         usedkb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytestotal)
18369         let "usedkb=usedkb-freekb"
18370         let "freekb=freekb/2"
18371         if let "freekb > 5000"; then
18372                 let "freekb=5000"
18373         fi
18374         do_facet $SINGLEMDS zfs set quota=$(((usedkb+freekb)*1024)) $fsset
18375         trap cleanup_805 EXIT
18376         mkdir $DIR/$tdir
18377         $LFS setstripe -E 1M -L mdt $DIR/$tdir || error "DoM not working"
18378         createmany -m $DIR/$tdir/f- 1000000 && error "ENOSPC wasn't met"
18379         rm -rf $DIR/$tdir || error "not able to remove"
18380         do_facet $SINGLEMDS zfs set quota=$old $fsset
18381         trap 0
18382 }
18383 run_test 805 "ZFS can remove from full fs"
18384
18385 #
18386 # tests that do cleanup/setup should be run at the end
18387 #
18388
18389 test_900() {
18390         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
18391         local ls
18392         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
18393         $LCTL set_param fail_loc=0x903
18394
18395         cancel_lru_locks MGC
18396
18397         FAIL_ON_ERROR=true cleanup
18398         FAIL_ON_ERROR=true setup
18399 }
18400 run_test 900 "umount should not race with any mgc requeue thread"
18401
18402 complete $SECONDS
18403 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
18404 check_and_cleanup_lustre
18405 if [ "$I_MOUNTED" != "yes" ]; then
18406         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
18407 fi
18408 exit_status