Whamcloud - gitweb
LU-3397 lprocfs: create "export" /proc file on server
[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 # rename sanity
862 test_24a() {
863         echo '-- same directory rename'
864         test_mkdir $DIR/$tdir
865         touch $DIR/$tdir/$tfile.1
866         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
867         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
868 }
869 run_test 24a "rename file to non-existent target"
870
871 test_24b() {
872         test_mkdir $DIR/$tdir
873         touch $DIR/$tdir/$tfile.{1,2}
874         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
875         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
876         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
877 }
878 run_test 24b "rename file to existing target"
879
880 test_24c() {
881         test_mkdir $DIR/$tdir
882         test_mkdir $DIR/$tdir/d$testnum.1
883         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
884         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
885         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
886 }
887 run_test 24c "rename directory to non-existent target"
888
889 test_24d() {
890         test_mkdir -c1 $DIR/$tdir
891         test_mkdir -c1 $DIR/$tdir/d$testnum.1
892         test_mkdir -c1 $DIR/$tdir/d$testnum.2
893         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
894         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
895         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
896 }
897 run_test 24d "rename directory to existing target"
898
899 test_24e() {
900         echo '-- cross directory renames --'
901         test_mkdir $DIR/R5a
902         test_mkdir $DIR/R5b
903         touch $DIR/R5a/f
904         mv $DIR/R5a/f $DIR/R5b/g
905         $CHECKSTAT -a $DIR/R5a/f || error
906         $CHECKSTAT -t file $DIR/R5b/g || error
907 }
908 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
909
910 test_24f() {
911         test_mkdir $DIR/R6a
912         test_mkdir $DIR/R6b
913         touch $DIR/R6a/f $DIR/R6b/g
914         mv $DIR/R6a/f $DIR/R6b/g
915         $CHECKSTAT -a $DIR/R6a/f || error
916         $CHECKSTAT -t file $DIR/R6b/g || error
917 }
918 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
919
920 test_24g() {
921         test_mkdir $DIR/R7a
922         test_mkdir $DIR/R7b
923         test_mkdir $DIR/R7a/d
924         mv $DIR/R7a/d $DIR/R7b/e
925         $CHECKSTAT -a $DIR/R7a/d || error
926         $CHECKSTAT -t dir $DIR/R7b/e || error
927 }
928 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
929
930 test_24h() {
931         test_mkdir -c1 $DIR/R8a
932         test_mkdir -c1 $DIR/R8b
933         test_mkdir -c1 $DIR/R8a/d
934         test_mkdir -c1 $DIR/R8b/e
935         mrename $DIR/R8a/d $DIR/R8b/e
936         $CHECKSTAT -a $DIR/R8a/d || error
937         $CHECKSTAT -t dir $DIR/R8b/e || error
938 }
939 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
940
941 test_24i() {
942         echo "-- rename error cases"
943         test_mkdir $DIR/R9
944         test_mkdir $DIR/R9/a
945         touch $DIR/R9/f
946         mrename $DIR/R9/f $DIR/R9/a
947         $CHECKSTAT -t file $DIR/R9/f || error
948         $CHECKSTAT -t dir  $DIR/R9/a || error
949         $CHECKSTAT -a $DIR/R9/a/f || error
950 }
951 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
952
953 test_24j() {
954         test_mkdir $DIR/R10
955         mrename $DIR/R10/f $DIR/R10/g
956         $CHECKSTAT -t dir $DIR/R10 || error
957         $CHECKSTAT -a $DIR/R10/f || error
958         $CHECKSTAT -a $DIR/R10/g || error
959 }
960 run_test 24j "source does not exist ============================"
961
962 test_24k() {
963         test_mkdir $DIR/R11a
964         test_mkdir $DIR/R11a/d
965         touch $DIR/R11a/f
966         mv $DIR/R11a/f $DIR/R11a/d
967         $CHECKSTAT -a $DIR/R11a/f || error
968         $CHECKSTAT -t file $DIR/R11a/d/f || error
969 }
970 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
971
972 # bug 2429 - rename foo foo foo creates invalid file
973 test_24l() {
974         f="$DIR/f24l"
975         $MULTIOP $f OcNs || error
976 }
977 run_test 24l "Renaming a file to itself ========================"
978
979 test_24m() {
980         f="$DIR/f24m"
981         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
982         # on ext3 this does not remove either the source or target files
983         # though the "expected" operation would be to remove the source
984         $CHECKSTAT -t file ${f} || error "${f} missing"
985         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
986 }
987 run_test 24m "Renaming a file to a hard link to itself ========="
988
989 test_24n() {
990     f="$DIR/f24n"
991     # this stats the old file after it was renamed, so it should fail
992     touch ${f}
993     $CHECKSTAT ${f}
994     mv ${f} ${f}.rename
995     $CHECKSTAT ${f}.rename
996     $CHECKSTAT -a ${f}
997 }
998 run_test 24n "Statting the old file after renaming (Posix rename 2)"
999
1000 test_24o() {
1001         test_mkdir $DIR/$tdir
1002         rename_many -s random -v -n 10 $DIR/$tdir
1003 }
1004 run_test 24o "rename of files during htree split"
1005
1006 test_24p() {
1007         test_mkdir $DIR/R12a
1008         test_mkdir $DIR/R12b
1009         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
1010         mrename $DIR/R12a $DIR/R12b
1011         $CHECKSTAT -a $DIR/R12a || error
1012         $CHECKSTAT -t dir $DIR/R12b || error
1013         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
1014         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
1015 }
1016 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
1017
1018 cleanup_multiop_pause() {
1019         trap 0
1020         kill -USR1 $MULTIPID
1021 }
1022
1023 test_24q() {
1024         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1025         test_mkdir $DIR/R13a
1026         test_mkdir $DIR/R13b
1027         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
1028         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
1029         MULTIPID=$!
1030
1031         trap cleanup_multiop_pause EXIT
1032         mrename $DIR/R13a $DIR/R13b
1033         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
1034         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
1035         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
1036         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
1037         cleanup_multiop_pause
1038         wait $MULTIPID || error "multiop close failed"
1039 }
1040 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
1041
1042 test_24r() { #bug 3789
1043         test_mkdir $DIR/R14a
1044         test_mkdir $DIR/R14a/b
1045         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
1046         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
1047         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
1048 }
1049 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
1050
1051 test_24s() {
1052         test_mkdir $DIR/R15a
1053         test_mkdir $DIR/R15a/b
1054         test_mkdir $DIR/R15a/b/c
1055         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
1056         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
1057         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
1058 }
1059 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
1060 test_24t() {
1061         test_mkdir $DIR/R16a
1062         test_mkdir $DIR/R16a/b
1063         test_mkdir $DIR/R16a/b/c
1064         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1065         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1066         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1067 }
1068 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1069
1070 test_24u() { # bug12192
1071         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error
1072         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1073 }
1074 run_test 24u "create stripe file"
1075
1076 page_size() {
1077         local size
1078         size=$(getconf PAGE_SIZE 2>/dev/null)
1079         echo -n ${size:-4096}
1080 }
1081
1082 simple_cleanup_common() {
1083         local rc=0
1084         trap 0
1085         [ -z "$DIR" -o -z "$tdir" ] && return 0
1086
1087         local start=$SECONDS
1088         rm -rf $DIR/$tdir
1089         rc=$?
1090         wait_delete_completed
1091         echo "cleanup time $((SECONDS - start))"
1092         return $rc
1093 }
1094
1095 max_pages_per_rpc() {
1096         local mdtname="$(printf "MDT%04x" ${1:-0})"
1097         $LCTL get_param -n mdc.*$mdtname*.max_pages_per_rpc
1098 }
1099
1100 test_24v() {
1101         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1102         local nrfiles=${COUNT:-100000}
1103         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1104         [ $(facet_fstype $SINGLEMDS) = "zfs" ] && nrfiles=${COUNT:-10000}
1105
1106         local fname="$DIR/$tdir/$tfile"
1107         test_mkdir "$(dirname $fname)"
1108         # assume MDT0000 has the fewest inodes
1109         local stripes=$($LFS getdirstripe -c $(dirname $fname))
1110         local free_inodes=$(($(mdt_free_inodes 0) * stripes))
1111         [[ $free_inodes -lt $nrfiles ]] && nrfiles=$free_inodes
1112
1113         trap simple_cleanup_common EXIT
1114
1115         createmany -m "$fname" $nrfiles
1116
1117         cancel_lru_locks mdc
1118         lctl set_param mdc.*.stats clear
1119
1120         # was previously test_24D: LU-6101
1121         # readdir() returns correct number of entries after cursor reload
1122         local num_ls=$(ls $DIR/$tdir | wc -l)
1123         local num_uniq=$(ls $DIR/$tdir | sort -u | wc -l)
1124         local num_all=$(ls -a $DIR/$tdir | wc -l)
1125         if [ $num_ls -ne $nrfiles -o $num_uniq -ne $nrfiles -o \
1126              $num_all -ne $((nrfiles + 2)) ]; then
1127                 error "Expected $nrfiles files, got $num_ls " \
1128                         "($num_uniq unique $num_all .&..)"
1129         fi
1130         # LU-5 large readdir
1131         # dirent_size = 32 bytes for sizeof(struct lu_dirent) +
1132         #               N bytes for name (len($nrfiles) rounded to 8 bytes) +
1133         #               8 bytes for luda_type (4 bytes rounded to 8 bytes)
1134         # take into account of overhead in lu_dirpage header and end mark in
1135         # each page, plus one in rpc_num calculation.
1136         local dirent_size=$((32 + (${#tfile} | 7) + 1 + 8))
1137         local page_entries=$((($(page_size) - 24) / dirent_size))
1138         local mdt_idx=$($LFS getdirstripe -i $(dirname $fname))
1139         local rpc_pages=$(max_pages_per_rpc $mdt_idx)
1140         local rpc_max=$((nrfiles / (page_entries * rpc_pages) + stripes))
1141         local mds_readpage=$(calc_stats mdc.*.stats mds_readpage)
1142         echo "readpages: $mds_readpage rpc_max: $rpc_max"
1143         (( $mds_readpage < $rpc_max - 2 || $mds_readpage > $rpc_max + 1)) &&
1144                 error "large readdir doesn't take effect: " \
1145                       "$mds_readpage should be about $rpc_max"
1146
1147         simple_cleanup_common
1148 }
1149 run_test 24v "list large directory (test hash collision, b=17560)"
1150
1151 test_24w() { # bug21506
1152         SZ1=234852
1153         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1154         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1155         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1156         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1157         [[ "$SZ1" -eq "$SZ2" ]] ||
1158                 error "Error reading at the end of the file $tfile"
1159 }
1160 run_test 24w "Reading a file larger than 4Gb"
1161
1162 test_24x() {
1163         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1164
1165         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1166                 skip "Need MDS version at least 2.7.56" && return
1167
1168         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1169         local MDTIDX=1
1170         local remote_dir=$DIR/$tdir/remote_dir
1171
1172         test_mkdir $DIR/$tdir
1173         $LFS mkdir -i $MDTIDX $remote_dir ||
1174                 error "create remote directory failed"
1175
1176         test_mkdir $DIR/$tdir/src_dir
1177         touch $DIR/$tdir/src_file
1178         test_mkdir $remote_dir/tgt_dir
1179         touch $remote_dir/tgt_file
1180
1181         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir ||
1182                 error "rename dir cross MDT failed!"
1183
1184         mrename $DIR/$tdir/src_file $remote_dir/tgt_file ||
1185                 error "rename file cross MDT failed!"
1186
1187         touch $DIR/$tdir/ln_file
1188         ln $DIR/$tdir/ln_file $remote_dir/ln_name ||
1189                 error "ln file cross MDT failed"
1190
1191         rm -rf $DIR/$tdir || error "Can not delete directories"
1192 }
1193 run_test 24x "cross MDT rename/link"
1194
1195 test_24y() {
1196         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1197         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1198         local remote_dir=$DIR/$tdir/remote_dir
1199         local mdtidx=1
1200
1201         test_mkdir $DIR/$tdir
1202         $LFS mkdir -i $mdtidx $remote_dir ||
1203                    error "create remote directory failed"
1204
1205         test_mkdir $remote_dir/src_dir
1206         touch $remote_dir/src_file
1207         test_mkdir $remote_dir/tgt_dir
1208         touch $remote_dir/tgt_file
1209
1210         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1211                 error "rename subdir in the same remote dir failed!"
1212
1213         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1214                 error "rename files in the same remote dir failed!"
1215
1216         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1217                 error "link files in the same remote dir failed!"
1218
1219         rm -rf $DIR/$tdir || error "Can not delete directories"
1220 }
1221 run_test 24y "rename/link on the same dir should succeed"
1222
1223 test_24A() { # LU-3182
1224         local NFILES=5000
1225
1226         rm -rf $DIR/$tdir
1227         test_mkdir $DIR/$tdir
1228         trap simple_cleanup_common EXIT
1229         createmany -m $DIR/$tdir/$tfile $NFILES
1230         local t=$(ls $DIR/$tdir | wc -l)
1231         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1232         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1233         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1234                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1235         fi
1236
1237         simple_cleanup_common || error "Can not delete directories"
1238 }
1239 run_test 24A "readdir() returns correct number of entries."
1240
1241 test_24B() { # LU-4805
1242         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1243         local count
1244
1245         test_mkdir $DIR/$tdir
1246         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1247                 error "create striped dir failed"
1248
1249         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1250         [ $count -eq 2 ] || error "Expected 2, got $count"
1251
1252         touch $DIR/$tdir/striped_dir/a
1253
1254         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1255         [ $count -eq 3 ] || error "Expected 3, got $count"
1256
1257         touch $DIR/$tdir/striped_dir/.f
1258
1259         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1260         [ $count -eq 4 ] || error "Expected 4, got $count"
1261
1262         rm -rf $DIR/$tdir || error "Can not delete directories"
1263 }
1264 run_test 24B "readdir for striped dir return correct number of entries"
1265
1266 test_24C() {
1267         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1268
1269         mkdir $DIR/$tdir
1270         mkdir $DIR/$tdir/d0
1271         mkdir $DIR/$tdir/d1
1272
1273         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1274                 error "create striped dir failed"
1275
1276         cd $DIR/$tdir/d0/striped_dir
1277
1278         local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1279         local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1280         local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1281
1282         [ "$d0_ino" = "$parent_ino" ] ||
1283                 error ".. wrong, expect $d0_ino, get $parent_ino"
1284
1285         mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1286                 error "mv striped dir failed"
1287
1288         parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1289
1290         [ "$d1_ino" = "$parent_ino" ] ||
1291                 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1292 }
1293 run_test 24C "check .. in striped dir"
1294
1295 test_24E() {
1296         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
1297         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1298
1299         mkdir -p $DIR/$tdir
1300         mkdir $DIR/$tdir/src_dir
1301         $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
1302                 error "create remote source failed"
1303
1304         touch $DIR/$tdir/src_dir/src_child/a
1305
1306         $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
1307                 error "create remote target dir failed"
1308
1309         $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
1310                 error "create remote target child failed"
1311
1312         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
1313                 error "rename dir cross MDT failed!"
1314
1315         find $DIR/$tdir
1316
1317         $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
1318                 error "src_child still exists after rename"
1319
1320         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
1321                 error "missing file(a) after rename"
1322
1323         rm -rf $DIR/$tdir || error "Can not delete directories"
1324 }
1325 run_test 24E "cross MDT rename/link"
1326
1327 test_25a() {
1328         echo '== symlink sanity ============================================='
1329
1330         test_mkdir $DIR/d25
1331         ln -s d25 $DIR/s25
1332         touch $DIR/s25/foo || error
1333 }
1334 run_test 25a "create file in symlinked directory ==============="
1335
1336 test_25b() {
1337         [ ! -d $DIR/d25 ] && test_25a
1338         $CHECKSTAT -t file $DIR/s25/foo || error
1339 }
1340 run_test 25b "lookup file in symlinked directory ==============="
1341
1342 test_26a() {
1343         test_mkdir $DIR/d26
1344         test_mkdir $DIR/d26/d26-2
1345         ln -s d26/d26-2 $DIR/s26
1346         touch $DIR/s26/foo || error
1347 }
1348 run_test 26a "multiple component symlink ======================="
1349
1350 test_26b() {
1351         test_mkdir -p $DIR/$tdir/d26-2
1352         ln -s $tdir/d26-2/foo $DIR/s26-2
1353         touch $DIR/s26-2 || error
1354 }
1355 run_test 26b "multiple component symlink at end of lookup ======"
1356
1357 test_26c() {
1358         test_mkdir $DIR/d26.2
1359         touch $DIR/d26.2/foo
1360         ln -s d26.2 $DIR/s26.2-1
1361         ln -s s26.2-1 $DIR/s26.2-2
1362         ln -s s26.2-2 $DIR/s26.2-3
1363         chmod 0666 $DIR/s26.2-3/foo
1364 }
1365 run_test 26c "chain of symlinks"
1366
1367 # recursive symlinks (bug 439)
1368 test_26d() {
1369         ln -s d26-3/foo $DIR/d26-3
1370 }
1371 run_test 26d "create multiple component recursive symlink"
1372
1373 test_26e() {
1374         [ ! -h $DIR/d26-3 ] && test_26d
1375         rm $DIR/d26-3
1376 }
1377 run_test 26e "unlink multiple component recursive symlink"
1378
1379 # recursive symlinks (bug 7022)
1380 test_26f() {
1381         test_mkdir $DIR/$tdir
1382         test_mkdir $DIR/$tdir/$tfile
1383         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1384         test_mkdir -p lndir/bar1
1385         test_mkdir $DIR/$tdir/$tfile/$tfile
1386         cd $tfile                || error "cd $tfile failed"
1387         ln -s .. dotdot          || error "ln dotdot failed"
1388         ln -s dotdot/lndir lndir || error "ln lndir failed"
1389         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1390         output=`ls $tfile/$tfile/lndir/bar1`
1391         [ "$output" = bar1 ] && error "unexpected output"
1392         rm -r $tfile             || error "rm $tfile failed"
1393         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1394 }
1395 run_test 26f "rm -r of a directory which has recursive symlink"
1396
1397 test_27a() {
1398         test_mkdir $DIR/$tdir
1399         $LFS getstripe $DIR/$tdir
1400         $LFS setstripe -c 1 $DIR/$tdir/$tfile || error "setstripe failed"
1401         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1402         cp /etc/hosts $DIR/$tdir/$tfile || error
1403 }
1404 run_test 27a "one stripe file"
1405
1406 test_27b() {
1407         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1408         test_mkdir $DIR/$tdir
1409         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1410         $LFS getstripe -c $DIR/$tdir/$tfile
1411         [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
1412                 error "two-stripe file doesn't have two stripes"
1413
1414         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1415 }
1416 run_test 27b "create and write to two stripe file"
1417
1418 test_27d() {
1419         test_mkdir $DIR/$tdir
1420         $LFS setstripe -c 0 -i -1 -S 0 $DIR/$tdir/$tfile ||
1421                 error "setstripe failed"
1422         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1423         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1424 }
1425 run_test 27d "create file with default settings"
1426
1427 test_27e() {
1428         # LU-5839 adds check for existed layout before setting it
1429         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1430                 skip "Need MDS version at least 2.7.56" && return
1431         test_mkdir $DIR/$tdir
1432         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1433         $LFS setstripe -c 2 $DIR/$tdir/$tfile && error "setstripe worked twice"
1434         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1435 }
1436 run_test 27e "setstripe existing file (should return error)"
1437
1438 test_27f() {
1439         test_mkdir $DIR/$tdir
1440         $LFS setstripe -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1441                 error "$SETSTRIPE $DIR/$tdir/$tfile failed"
1442         $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1443                 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1444         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1445         $LFS getstripe $DIR/$tdir/$tfile || error "$LFS getstripe failed"
1446 }
1447 run_test 27f "setstripe with bad stripe size (should return error)"
1448
1449 test_27g() {
1450         test_mkdir $DIR/$tdir
1451         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1452         $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "no stripe info" ||
1453                 error "$DIR/$tdir/$tfile has object"
1454 }
1455 run_test 27g "$LFS getstripe with no objects"
1456
1457 test_27i() {
1458         test_mkdir $DIR/$tdir
1459         touch $DIR/$tdir/$tfile || error "touch failed"
1460         [[ $($LFS getstripe -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1461                 error "missing objects"
1462 }
1463 run_test 27i "$LFS getstripe with some objects"
1464
1465 test_27j() {
1466         test_mkdir $DIR/$tdir
1467         $LFS setstripe -i $OSTCOUNT $DIR/$tdir/$tfile &&
1468                 error "setstripe failed" || true
1469 }
1470 run_test 27j "setstripe with bad stripe offset (should return error)"
1471
1472 test_27k() { # bug 2844
1473         test_mkdir $DIR/$tdir
1474         local file=$DIR/$tdir/$tfile
1475         local ll_max_blksize=$((4 * 1024 * 1024))
1476         $LFS setstripe -S 67108864 $file || error "setstripe failed"
1477         local blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1478         [ $blksize -le $ll_max_blksize ] || error "1:$blksize > $ll_max_blksize"
1479         dd if=/dev/zero of=$file bs=4k count=1
1480         blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1481         [ $blksize -le $ll_max_blksize ] || error "2:$blksize > $ll_max_blksize"
1482 }
1483 run_test 27k "limit i_blksize for broken user apps"
1484
1485 test_27l() {
1486         mcreate $DIR/$tfile || error "creating file"
1487         $RUNAS $LFS setstripe -c 1 $DIR/$tfile &&
1488                 error "setstripe should have failed" || true
1489 }
1490 run_test 27l "check setstripe permissions (should return error)"
1491
1492 test_27m() {
1493         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1494
1495         ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1496                    head -n1)
1497         if [[ $ORIGFREE -gt $MAXFREE ]]; then
1498                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1499                 return
1500         fi
1501         trap simple_cleanup_common EXIT
1502         test_mkdir $DIR/$tdir
1503         $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.1
1504         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=1024 count=$MAXFREE &&
1505                 error "dd should fill OST0"
1506         i=2
1507         while $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.$i; do
1508                 i=$((i + 1))
1509                 [ $i -gt 256 ] && break
1510         done
1511         i=$((i + 1))
1512         touch $DIR/$tdir/$tfile.$i
1513         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1514             awk '{print $1}'| grep -w "0") ] &&
1515                 error "OST0 was full but new created file still use it"
1516         i=$((i + 1))
1517         touch $DIR/$tdir/$tfile.$i
1518         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1519             awk '{print $1}'| grep -w "0") ] &&
1520                 error "OST0 was full but new created file still use it"
1521         simple_cleanup_common
1522 }
1523 run_test 27m "create file while OST0 was full"
1524
1525 sleep_maxage() {
1526         local delay=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage |
1527                       head -n 1 | awk '{ print $1 * 2 }')
1528         sleep $delay
1529 }
1530
1531 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1532 # if the OST isn't full anymore.
1533 reset_enospc() {
1534         local OSTIDX=${1:-""}
1535
1536         local list=$(comma_list $(osts_nodes))
1537         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1538
1539         do_nodes $list lctl set_param fail_loc=0
1540         sync    # initiate all OST_DESTROYs from MDS to OST
1541         sleep_maxage
1542 }
1543
1544 exhaust_precreations() {
1545         local OSTIDX=$1
1546         local FAILLOC=$2
1547         local FAILIDX=${3:-$OSTIDX}
1548         local ofacet=ost$((OSTIDX + 1))
1549
1550         test_mkdir -p -c1 $DIR/$tdir
1551         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
1552         local mfacet=mds$((mdtidx + 1))
1553         echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1554
1555         local OST=$(ostname_from_index $OSTIDX)
1556
1557         # on the mdt's osc
1558         local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1559         local last_id=$(do_facet $mfacet lctl get_param -n \
1560                         osc.$mdtosc_proc1.prealloc_last_id)
1561         local next_id=$(do_facet $mfacet lctl get_param -n \
1562                         osc.$mdtosc_proc1.prealloc_next_id)
1563
1564         local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1565         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1566
1567         test_mkdir -p $DIR/$tdir/${OST}
1568         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1569 #define OBD_FAIL_OST_ENOSPC              0x215
1570         do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1571         echo "Creating to objid $last_id on ost $OST..."
1572         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1573         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1574         do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1575         sleep_maxage
1576 }
1577
1578 exhaust_all_precreations() {
1579         local i
1580         for (( i=0; i < OSTCOUNT; i++ )) ; do
1581                 exhaust_precreations $i $1 -1
1582         done
1583 }
1584
1585 test_27n() {
1586         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1587         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1588         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1589         remote_ost_nodsh && skip "remote OST with nodsh" && return
1590
1591         reset_enospc
1592         rm -f $DIR/$tdir/$tfile
1593         exhaust_precreations 0 0x80000215
1594         $LFS setstripe -c -1 $DIR/$tdir
1595         touch $DIR/$tdir/$tfile || error
1596         $LFS getstripe $DIR/$tdir/$tfile
1597         reset_enospc
1598 }
1599 run_test 27n "create file with some full OSTs"
1600
1601 test_27o() {
1602         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1603         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1604         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1605         remote_ost_nodsh && skip "remote OST with nodsh" && return
1606
1607         reset_enospc
1608         rm -f $DIR/$tdir/$tfile
1609         exhaust_all_precreations 0x215
1610
1611         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1612
1613         reset_enospc
1614         rm -rf $DIR/$tdir/*
1615 }
1616 run_test 27o "create file with all full OSTs (should error)"
1617
1618 test_27p() {
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         test_mkdir $DIR/$tdir
1627
1628         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1629         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1630         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1631
1632         exhaust_precreations 0 0x80000215
1633         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1634         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1635         $LFS getstripe $DIR/$tdir/$tfile
1636
1637         reset_enospc
1638 }
1639 run_test 27p "append to a truncated file with some full OSTs"
1640
1641 test_27q() {
1642         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1643         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1644         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1645         remote_ost_nodsh && skip "remote OST with nodsh" && return
1646
1647         reset_enospc
1648         rm -f $DIR/$tdir/$tfile
1649
1650         test_mkdir $DIR/$tdir
1651         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1652         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||
1653                 error "truncate $DIR/$tdir/$tfile failed"
1654         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1655
1656         exhaust_all_precreations 0x215
1657
1658         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1659         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1660
1661         reset_enospc
1662 }
1663 run_test 27q "append to truncated file with all OSTs full (should error)"
1664
1665 test_27r() {
1666         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1667         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1668         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1669         remote_ost_nodsh && skip "remote OST with nodsh" && return
1670
1671         reset_enospc
1672         rm -f $DIR/$tdir/$tfile
1673         exhaust_precreations 0 0x80000215
1674
1675         $LFS setstripe -i 0 -c 2 $DIR/$tdir/$tfile # && error
1676
1677         reset_enospc
1678 }
1679 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1680
1681 test_27s() { # bug 10725
1682         test_mkdir $DIR/$tdir
1683         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1684         local stripe_count=0
1685         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1686         $LFS setstripe -S $stripe_size -c $stripe_count $DIR/$tdir &&
1687                 error "stripe width >= 2^32 succeeded" || true
1688
1689 }
1690 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1691
1692 test_27t() { # bug 10864
1693         WDIR=$(pwd)
1694         WLFS=$(which lfs)
1695         cd $DIR
1696         touch $tfile
1697         $WLFS getstripe $tfile
1698         cd $WDIR
1699 }
1700 run_test 27t "check that utils parse path correctly"
1701
1702 test_27u() { # bug 4900
1703         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1704         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1705         local index
1706         local list=$(comma_list $(mdts_nodes))
1707
1708 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1709         do_nodes $list $LCTL set_param fail_loc=0x139
1710         test_mkdir -p $DIR/$tdir
1711         trap simple_cleanup_common EXIT
1712         createmany -o $DIR/$tdir/t- 1000
1713         do_nodes $list $LCTL set_param fail_loc=0
1714
1715         TLOG=$TMP/$tfile.getstripe
1716         $LFS getstripe $DIR/$tdir > $TLOG
1717         OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
1718         unlinkmany $DIR/$tdir/t- 1000
1719         trap 0
1720         [[ $OBJS -gt 0 ]] &&
1721                 error "$OBJS objects created on OST-0. See $TLOG" ||
1722                 rm -f $TLOG
1723 }
1724 run_test 27u "skip object creation on OSC w/o objects"
1725
1726 test_27v() { # bug 4900
1727         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1728         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1729         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1730         remote_ost_nodsh && skip "remote OST with nodsh" && return
1731
1732         exhaust_all_precreations 0x215
1733         reset_enospc
1734
1735         $LFS setstripe -c 1 $DIR/$tdir         # 1 stripe / file
1736
1737         touch $DIR/$tdir/$tfile
1738         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1739         # all except ost1
1740         for (( i=1; i < OSTCOUNT; i++ )); do
1741                 do_facet ost$i lctl set_param fail_loc=0x705
1742         done
1743         local START=`date +%s`
1744         createmany -o $DIR/$tdir/$tfile 32
1745
1746         local FINISH=`date +%s`
1747         local TIMEOUT=`lctl get_param -n timeout`
1748         local PROCESS=$((FINISH - START))
1749         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1750                error "$FINISH - $START >= $TIMEOUT / 2"
1751         sleep $((TIMEOUT / 2 - PROCESS))
1752         reset_enospc
1753 }
1754 run_test 27v "skip object creation on slow OST"
1755
1756 test_27w() { # bug 10997
1757         test_mkdir $DIR/$tdir
1758         $LFS setstripe -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1759         [ $($LFS getstripe -S $DIR/$tdir/f0) -ne 65536 ] &&
1760                 error "stripe size $size != 65536" || true
1761         [ $($LFS getstripe -d $DIR/$tdir | grep -c "stripe_count") -eq 0 ] &&
1762                 error "$LFS getstripe -d $DIR/$tdir no 'stripe_count'" || true
1763 }
1764 run_test 27w "check $LFS setstripe -S and getstrip -d options"
1765
1766 test_27wa() {
1767         [[ $OSTCOUNT -lt 2 ]] &&
1768                 skip_env "skipping multiple stripe count/offset test" && return
1769
1770         test_mkdir $DIR/$tdir
1771         for i in $(seq 1 $OSTCOUNT); do
1772                 offset=$((i - 1))
1773                 $LFS setstripe -c $i -i $offset $DIR/$tdir/f$i ||
1774                         error "setstripe -c $i -i $offset failed"
1775                 count=$($LFS getstripe -c $DIR/$tdir/f$i)
1776                 index=$($LFS getstripe -i $DIR/$tdir/f$i)
1777                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1778                 [ $index -ne $offset ] &&
1779                         error "stripe offset $index != $offset" || true
1780         done
1781 }
1782 run_test 27wa "check $LFS setstripe -c -i options"
1783
1784 test_27x() {
1785         remote_ost_nodsh && skip "remote OST with nodsh" && return
1786         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1787         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1788         OFFSET=$(($OSTCOUNT - 1))
1789         OSTIDX=0
1790         local OST=$(ostname_from_index $OSTIDX)
1791
1792         test_mkdir $DIR/$tdir
1793         $LFS setstripe -c 1 $DIR/$tdir  # 1 stripe per file
1794         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1795         sleep_maxage
1796         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1797         for i in $(seq 0 $OFFSET); do
1798                 [ $($LFS getstripe $DIR/$tdir/$tfile$i | grep -A 10 obdidx |
1799                         awk '{print $1}' | grep -w "$OSTIDX") ] &&
1800                 error "OST0 was degraded but new created file still use it"
1801         done
1802         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1803 }
1804 run_test 27x "create files while OST0 is degraded"
1805
1806 test_27y() {
1807         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1808         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1809         remote_ost_nodsh && skip "remote OST with nodsh" && return
1810         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1811
1812         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1813         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1814                 osc.$mdtosc.prealloc_last_id)
1815         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1816                 osc.$mdtosc.prealloc_next_id)
1817         local fcount=$((last_id - next_id))
1818         [[ $fcount -eq 0 ]] && skip "not enough space on OST0" && return
1819         [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
1820
1821         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1822                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1823         local OST_DEACTIVE_IDX=-1
1824         local OSC
1825         local OSTIDX
1826         local OST
1827
1828         for OSC in $MDS_OSCS; do
1829                 OST=$(osc_to_ost $OSC)
1830                 OSTIDX=$(index_from_ostuuid $OST)
1831                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1832                         OST_DEACTIVE_IDX=$OSTIDX
1833                 fi
1834                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1835                         echo $OSC "is Deactivated:"
1836                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1837                 fi
1838         done
1839
1840         OSTIDX=$(index_from_ostuuid $OST)
1841         test_mkdir $DIR/$tdir
1842         $LFS setstripe -c 1 $DIR/$tdir      # 1 stripe / file
1843
1844         for OSC in $MDS_OSCS; do
1845                 OST=$(osc_to_ost $OSC)
1846                 OSTIDX=$(index_from_ostuuid $OST)
1847                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1848                         echo $OST "is degraded:"
1849                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1850                                                 obdfilter.$OST.degraded=1
1851                 fi
1852         done
1853
1854         sleep_maxage
1855         createmany -o $DIR/$tdir/$tfile $fcount
1856
1857         for OSC in $MDS_OSCS; do
1858                 OST=$(osc_to_ost $OSC)
1859                 OSTIDX=$(index_from_ostuuid $OST)
1860                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1861                         echo $OST "is recovered from degraded:"
1862                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1863                                                 obdfilter.$OST.degraded=0
1864                 else
1865                         do_facet $SINGLEMDS lctl --device %$OSC activate
1866                 fi
1867         done
1868
1869         # all osp devices get activated, hence -1 stripe count restored
1870         local stripe_count=0
1871
1872         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1873         # devices get activated.
1874         sleep_maxage
1875         $LFS setstripe -c -1 $DIR/$tfile
1876         stripe_count=$($LFS getstripe -c $DIR/$tfile)
1877         rm -f $DIR/$tfile
1878         [ $stripe_count -ne $OSTCOUNT ] &&
1879                 error "Of $OSTCOUNT OSTs, only $stripe_count is available"
1880         return 0
1881 }
1882 run_test 27y "create files while OST0 is degraded and the rest inactive"
1883
1884 check_seq_oid()
1885 {
1886         log "check file $1"
1887
1888         lmm_count=$($GETSTRIPE -c $1)
1889         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1890         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1891
1892         local old_ifs="$IFS"
1893         IFS=$'[:]'
1894         fid=($($LFS path2fid $1))
1895         IFS="$old_ifs"
1896
1897         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1898         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1899
1900         # compare lmm_seq and lu_fid->f_seq
1901         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1902         # compare lmm_object_id and lu_fid->oid
1903         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1904
1905         # check the trusted.fid attribute of the OST objects of the file
1906         local have_obdidx=false
1907         local stripe_nr=0
1908         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1909                 # skip lines up to and including "obdidx"
1910                 [ -z "$obdidx" ] && break
1911                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1912                 $have_obdidx || continue
1913
1914                 local ost=$((obdidx + 1))
1915                 local dev=$(ostdevname $ost)
1916                 local oid_hex
1917
1918                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1919
1920                 seq=$(echo $seq | sed -e "s/^0x//g")
1921                 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
1922                         oid_hex=$(echo $oid)
1923                 else
1924                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1925                 fi
1926                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1927
1928                 local ff=""
1929                 #
1930                 # Don't unmount/remount the OSTs if we don't need to do that.
1931                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1932                 # update too, until that use mount/ll_decode_filter_fid/mount.
1933                 # Re-enable when debugfs will understand new filter_fid.
1934                 #
1935                 if [ $(facet_fstype ost$ost) == ldiskfs ]; then
1936                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1937                                 $dev 2>/dev/null" | grep "parent=")
1938                 fi
1939                 if [ -z "$ff" ]; then
1940                         stop ost$ost
1941                         mount_fstype ost$ost
1942                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
1943                                 $(facet_mntpt ost$ost)/$obj_file)
1944                         unmount_fstype ost$ost
1945                         start ost$ost $dev $OST_MOUNT_OPTS
1946                         clients_up
1947                 fi
1948
1949                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1950
1951                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1952
1953                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1954                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1955                 #
1956                 # fid: parent=[0x200000400:0x1e:0x0] stripe=1 stripe_count=2 \
1957                 #       stripe_size=1048576 component_id=1 component_start=0 \
1958                 #       component_end=33554432
1959                 local ff_parent=$(sed -e 's/.*parent=.//' <<<$ff)
1960                 local ff_pseq=$(cut -d: -f1 <<<$ff_parent)
1961                 local ff_poid=$(cut -d: -f2 <<<$ff_parent)
1962                 local ff_pstripe
1963                 if grep -q 'stripe=' <<<$ff; then
1964                         ff_pstripe=$(sed -e 's/.*stripe=//' -e 's/ .*//' <<<$ff)
1965                 else
1966                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
1967                         # into f_ver in this case.  See comment on ff_parent.
1968                         ff_pstripe=$(cut -d: -f3 <<<$ff_parent | sed -e 's/]//')
1969                 fi
1970
1971                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1972                 [ $ff_pseq = $lmm_seq ] ||
1973                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1974                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1975                 [ $ff_poid = $lmm_oid ] ||
1976                         error "FF parent OID $ff_poid != $lmm_oid"
1977                 (($ff_pstripe == $stripe_nr)) ||
1978                         error "FF stripe $ff_pstripe != $stripe_nr"
1979
1980                 stripe_nr=$((stripe_nr + 1))
1981                 [ $(lustre_version_code client) -lt $(version_code 2.9.55) ] &&
1982                         continue
1983                 if grep -q 'stripe_count=' <<<$ff; then
1984                         local ff_scnt=$(sed -e 's/.*stripe_count=//' \
1985                                             -e 's/ .*//' <<<$ff)
1986                         [ $lmm_count = $ff_scnt ] ||
1987                                 error "FF stripe count $lmm_count != $ff_scnt"
1988                 fi
1989         done
1990 }
1991
1992 test_27z() {
1993         remote_ost_nodsh && skip "remote OST with nodsh" && return
1994         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1995         test_mkdir $DIR/$tdir
1996
1997         $LFS setstripe -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1998                 { error "setstripe -c -1 failed"; return 1; }
1999         # We need to send a write to every object to get parent FID info set.
2000         # This _should_ also work for setattr, but does not currently.
2001         # touch $DIR/$tdir/$tfile-1 ||
2002         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
2003                 { error "dd $tfile-1 failed"; return 2; }
2004         $LFS setstripe -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
2005                 { error "setstripe -c -1 failed"; return 3; }
2006         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
2007                 { error "dd $tfile-2 failed"; return 4; }
2008
2009         # make sure write RPCs have been sent to OSTs
2010         sync; sleep 5; sync
2011
2012         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
2013         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
2014 }
2015 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
2016
2017 test_27A() { # b=19102
2018         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2019         local restore_size=$($GETSTRIPE -S $MOUNT)
2020         local restore_count=$($GETSTRIPE -c $MOUNT)
2021         local restore_offset=$($GETSTRIPE -i $MOUNT)
2022         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
2023         wait_update $HOSTNAME "$GETSTRIPE -c $MOUNT | sed 's/  *//g'" "1" 20 ||
2024                 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
2025         local default_size=$($GETSTRIPE -S $MOUNT)
2026         local default_offset=$($GETSTRIPE -i $MOUNT)
2027         local dsize=$((1024 * 1024))
2028         [ $default_size -eq $dsize ] ||
2029                 error "stripe size $default_size != $dsize"
2030         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
2031         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
2032 }
2033 run_test 27A "check filesystem-wide default LOV EA values"
2034
2035 test_27B() { # LU-2523
2036         test_mkdir $DIR/$tdir
2037         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
2038         touch $DIR/$tdir/f0
2039         # open f1 with O_LOV_DELAY_CREATE
2040         # rename f0 onto f1
2041         # call setstripe ioctl on open file descriptor for f1
2042         # close
2043         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
2044                 $DIR/$tdir/f0
2045
2046         rm -f $DIR/$tdir/f1
2047         # open f1 with O_LOV_DELAY_CREATE
2048         # unlink f1
2049         # call setstripe ioctl on open file descriptor for f1
2050         # close
2051         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
2052
2053         # Allow multiop to fail in imitation of NFS's busted semantics.
2054         true
2055 }
2056 run_test 27B "call setstripe on open unlinked file/rename victim"
2057
2058 test_27C() { #LU-2871
2059         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs" && return
2060
2061         declare -a ost_idx
2062         local index
2063         local found
2064         local i
2065         local j
2066
2067         test_mkdir $DIR/$tdir
2068         cd $DIR/$tdir
2069         for i in $(seq 0 $((OSTCOUNT - 1))); do
2070                 # set stripe across all OSTs starting from OST$i
2071                 $SETSTRIPE -i $i -c -1 $tfile$i
2072                 # get striping information
2073                 ost_idx=($($GETSTRIPE $tfile$i |
2074                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2075                 echo ${ost_idx[@]}
2076
2077                 # check the layout
2078                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2079                         error "${#ost_idx[@]} != $OSTCOUNT"
2080
2081                 for index in $(seq 0 $((OSTCOUNT - 1))); do
2082                         found=0
2083                         for j in $(echo ${ost_idx[@]}); do
2084                                 if [ $index -eq $j ]; then
2085                                         found=1
2086                                         break
2087                                 fi
2088                         done
2089                         [ $found = 1 ] ||
2090                                 error "Can not find $index in ${ost_idx[@]}"
2091                 done
2092         done
2093 }
2094 run_test 27C "check full striping across all OSTs"
2095
2096 test_27D() {
2097         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2098         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
2099         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2100         local POOL=${POOL:-testpool}
2101         local first_ost=0
2102         local last_ost=$(($OSTCOUNT - 1))
2103         local ost_step=1
2104         local ost_list=$(seq $first_ost $ost_step $last_ost)
2105         local ost_range="$first_ost $last_ost $ost_step"
2106
2107         if ! combined_mgs_mds ; then
2108                 mount_mgs_client
2109         fi
2110
2111         test_mkdir $DIR/$tdir
2112         pool_add $POOL || error "pool_add failed"
2113         pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2114
2115         local skip27D
2116         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ] &&
2117                 skip27D+="-s 29"
2118         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.55) -o \
2119           $(lustre_version_code client) -lt $(version_code 2.9.55) ] &&
2120                 skip27D+=" -s 30,31"
2121         llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT $skip27D ||
2122                 error "llapi_layout_test failed"
2123
2124         destroy_test_pools || error "destroy test pools failed"
2125
2126         if ! combined_mgs_mds ; then
2127                 umount_mgs_client
2128         fi
2129 }
2130 run_test 27D "validate llapi_layout API"
2131
2132 # Verify that default_easize is increased from its initial value after
2133 # accessing a widely striped file.
2134 test_27E() {
2135         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2136         [ $(lustre_version_code client) -lt $(version_code 2.5.57) ] &&
2137                 skip "client does not have LU-3338 fix" && return
2138
2139         # 72 bytes is the minimum space required to store striping
2140         # information for a file striped across one OST:
2141         # (sizeof(struct lov_user_md_v3) +
2142         #  sizeof(struct lov_user_ost_data_v1))
2143         local min_easize=72
2144         $LCTL set_param -n llite.*.default_easize $min_easize ||
2145                 error "lctl set_param failed"
2146         local easize=$($LCTL get_param -n llite.*.default_easize)
2147
2148         [ $easize -eq $min_easize ] ||
2149                 error "failed to set default_easize"
2150
2151         $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2152                 error "setstripe failed"
2153         cat $DIR/$tfile
2154         rm $DIR/$tfile
2155
2156         easize=$($LCTL get_param -n llite.*.default_easize)
2157
2158         [ $easize -gt $min_easize ] ||
2159                 error "default_easize not updated"
2160 }
2161 run_test 27E "check that default extended attribute size properly increases"
2162
2163 test_27F() { # LU-5346/LU-7975
2164         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2165         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.51) ]] &&
2166                 skip "Need MDS version at least 2.8.51" && return
2167         remote_ost_nodsh && skip "remote OST with nodsh" && return
2168
2169         test_mkdir $DIR/$tdir
2170         rm -f $DIR/$tdir/f0
2171         $SETSTRIPE -c 2 $DIR/$tdir
2172
2173         # stop all OSTs to reproduce situation for LU-7975 ticket
2174         for num in $(seq $OSTCOUNT); do
2175                 stop ost$num
2176         done
2177
2178         # open/create f0 with O_LOV_DELAY_CREATE
2179         # truncate f0 to a non-0 size
2180         # close
2181         multiop $DIR/$tdir/f0 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T1050000c
2182
2183         $CHECKSTAT -s 1050000 $DIR/$tdir/f0 || error "checkstat failed"
2184         # open/write it again to force delayed layout creation
2185         cat /etc/hosts > $DIR/$tdir/f0 &
2186         catpid=$!
2187
2188         # restart OSTs
2189         for num in $(seq $OSTCOUNT); do
2190                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
2191                         error "ost$num failed to start"
2192         done
2193
2194         wait $catpid || error "cat failed"
2195
2196         cmp /etc/hosts $DIR/$tdir/f0 || error "cmp failed"
2197         [[ $($GETSTRIPE -c $DIR/$tdir/f0) == 2 ]] || error "wrong stripecount"
2198
2199 }
2200 run_test 27F "Client resend delayed layout creation with non-zero size"
2201
2202 # createtest also checks that device nodes are created and
2203 # then visible correctly (#2091)
2204 test_28() { # bug 2091
2205         test_mkdir $DIR/d28
2206         $CREATETEST $DIR/d28/ct || error
2207 }
2208 run_test 28 "create/mknod/mkdir with bad file types ============"
2209
2210 test_29() {
2211         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
2212         sync; sleep 1; sync # flush out any dirty pages from previous tests
2213         cancel_lru_locks
2214         test_mkdir $DIR/d29
2215         touch $DIR/d29/foo
2216         log 'first d29'
2217         ls -l $DIR/d29
2218
2219         declare -i LOCKCOUNTORIG=0
2220         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2221                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2222         done
2223         [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
2224
2225         declare -i LOCKUNUSEDCOUNTORIG=0
2226         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2227                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2228         done
2229
2230         log 'second d29'
2231         ls -l $DIR/d29
2232         log 'done'
2233
2234         declare -i LOCKCOUNTCURRENT=0
2235         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2236                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2237         done
2238
2239         declare -i LOCKUNUSEDCOUNTCURRENT=0
2240         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2241                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2242         done
2243
2244         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2245                 $LCTL set_param -n ldlm.dump_namespaces ""
2246                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2247                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2248                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2249                 return 2
2250         fi
2251         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2252                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2253                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2254                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2255                 return 3
2256         fi
2257 }
2258 run_test 29 "IT_GETATTR regression  ============================"
2259
2260 test_30a() { # was test_30
2261         cp $(which ls) $DIR || cp /bin/ls $DIR
2262         $DIR/ls / || error
2263         rm $DIR/ls
2264 }
2265 run_test 30a "execute binary from Lustre (execve) =============="
2266
2267 test_30b() {
2268         cp `which ls` $DIR || cp /bin/ls $DIR
2269         chmod go+rx $DIR/ls
2270         $RUNAS $DIR/ls / || error
2271         rm $DIR/ls
2272 }
2273 run_test 30b "execute binary from Lustre as non-root ==========="
2274
2275 test_30c() { # b=22376
2276         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2277         cp `which ls` $DIR || cp /bin/ls $DIR
2278         chmod a-rw $DIR/ls
2279         cancel_lru_locks mdc
2280         cancel_lru_locks osc
2281         $RUNAS $DIR/ls / || error
2282         rm -f $DIR/ls
2283 }
2284 run_test 30c "execute binary from Lustre without read perms ===="
2285
2286 test_31a() {
2287         $OPENUNLINK $DIR/f31 $DIR/f31 || error
2288         $CHECKSTAT -a $DIR/f31 || error
2289 }
2290 run_test 31a "open-unlink file =================================="
2291
2292 test_31b() {
2293         touch $DIR/f31 || error
2294         ln $DIR/f31 $DIR/f31b || error
2295         $MULTIOP $DIR/f31b Ouc || error
2296         $CHECKSTAT -t file $DIR/f31 || error
2297 }
2298 run_test 31b "unlink file with multiple links while open ======="
2299
2300 test_31c() {
2301         touch $DIR/f31 || error
2302         ln $DIR/f31 $DIR/f31c || error
2303         multiop_bg_pause $DIR/f31 O_uc || return 1
2304         MULTIPID=$!
2305         $MULTIOP $DIR/f31c Ouc
2306         kill -USR1 $MULTIPID
2307         wait $MULTIPID
2308 }
2309 run_test 31c "open-unlink file with multiple links ============="
2310
2311 test_31d() {
2312         opendirunlink $DIR/d31d $DIR/d31d || error
2313         $CHECKSTAT -a $DIR/d31d || error
2314 }
2315 run_test 31d "remove of open directory ========================="
2316
2317 test_31e() { # bug 2904
2318         openfilleddirunlink $DIR/d31e || error
2319 }
2320 run_test 31e "remove of open non-empty directory ==============="
2321
2322 test_31f() { # bug 4554
2323         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2324         set -vx
2325         test_mkdir $DIR/d31f
2326         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2327         cp /etc/hosts $DIR/d31f
2328         ls -l $DIR/d31f
2329         $GETSTRIPE $DIR/d31f/hosts
2330         multiop_bg_pause $DIR/d31f D_c || return 1
2331         MULTIPID=$!
2332
2333         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2334         test_mkdir $DIR/d31f
2335         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2336         cp /etc/hosts $DIR/d31f
2337         ls -l $DIR/d31f
2338         $GETSTRIPE $DIR/d31f/hosts
2339         multiop_bg_pause $DIR/d31f D_c || return 1
2340         MULTIPID2=$!
2341
2342         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2343         wait $MULTIPID || error "first opendir $MULTIPID failed"
2344
2345         sleep 6
2346
2347         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2348         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2349         set +vx
2350 }
2351 run_test 31f "remove of open directory with open-unlink file ==="
2352
2353 test_31g() {
2354         echo "-- cross directory link --"
2355         test_mkdir -c1 $DIR/${tdir}ga
2356         test_mkdir -c1 $DIR/${tdir}gb
2357         touch $DIR/${tdir}ga/f
2358         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2359         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2360         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2361         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2362         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2363 }
2364 run_test 31g "cross directory link==============="
2365
2366 test_31h() {
2367         echo "-- cross directory link --"
2368         test_mkdir -c1 $DIR/${tdir}
2369         test_mkdir -c1 $DIR/${tdir}/dir
2370         touch $DIR/${tdir}/f
2371         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2372         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2373         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2374         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2375         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2376 }
2377 run_test 31h "cross directory link under child==============="
2378
2379 test_31i() {
2380         echo "-- cross directory link --"
2381         test_mkdir -c1 $DIR/$tdir
2382         test_mkdir -c1 $DIR/$tdir/dir
2383         touch $DIR/$tdir/dir/f
2384         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2385         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2386         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2387         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2388         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2389 }
2390 run_test 31i "cross directory link under parent==============="
2391
2392 test_31j() {
2393         test_mkdir -c1 -p $DIR/$tdir
2394         test_mkdir -c1 -p $DIR/$tdir/dir1
2395         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2396         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2397         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2398         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2399         return 0
2400 }
2401 run_test 31j "link for directory==============="
2402
2403 test_31k() {
2404         test_mkdir -c1 -p $DIR/$tdir
2405         touch $DIR/$tdir/s
2406         touch $DIR/$tdir/exist
2407         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2408         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2409         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2410         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2411         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2412         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2413         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2414         return 0
2415 }
2416 run_test 31k "link to file: the same, non-existing, dir==============="
2417
2418 test_31m() {
2419         mkdir $DIR/d31m
2420         touch $DIR/d31m/s
2421         mkdir $DIR/d31m2
2422         touch $DIR/d31m2/exist
2423         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2424         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2425         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2426         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2427         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2428         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2429         return 0
2430 }
2431 run_test 31m "link to file: the same, non-existing, dir==============="
2432
2433 test_31n() {
2434         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2435         nlink=$(stat --format=%h $DIR/$tfile)
2436         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2437         local fd=$(free_fd)
2438         local cmd="exec $fd<$DIR/$tfile"
2439         eval $cmd
2440         cmd="exec $fd<&-"
2441         trap "eval $cmd" EXIT
2442         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2443         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2444         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2445         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2446         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2447         eval $cmd
2448 }
2449 run_test 31n "check link count of unlinked file"
2450
2451 link_one() {
2452         local TEMPNAME=$(mktemp $1_XXXXXX)
2453         mlink $TEMPNAME $1 2> /dev/null &&
2454                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2455         munlink $TEMPNAME
2456 }
2457
2458 test_31o() { # LU-2901
2459         test_mkdir $DIR/$tdir
2460         for LOOP in $(seq 100); do
2461                 rm -f $DIR/$tdir/$tfile*
2462                 for THREAD in $(seq 8); do
2463                         link_one $DIR/$tdir/$tfile.$LOOP &
2464                 done
2465                 wait
2466                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2467                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2468                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2469                         break || true
2470         done
2471 }
2472 run_test 31o "duplicate hard links with same filename"
2473
2474 test_31p() {
2475         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2476
2477         test_mkdir $DIR/$tdir
2478         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2479         $LFS setdirstripe -D -c2 -t all_char $DIR/$tdir/striped_dir
2480
2481         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2482                 error "open unlink test1 failed"
2483         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2484                 error "open unlink test2 failed"
2485
2486         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2487                 error "test1 still exists"
2488         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2489                 error "test2 still exists"
2490 }
2491 run_test 31p "remove of open striped directory"
2492
2493 cleanup_test32_mount() {
2494         local rc=0
2495         trap 0
2496         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$//p')
2497         $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
2498         losetup -d $loopdev || true
2499         rm -rf $DIR/$tdir
2500         return $rc
2501 }
2502
2503 test_32a() {
2504         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2505         echo "== more mountpoints and symlinks ================="
2506         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2507         trap cleanup_test32_mount EXIT
2508         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2509         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2510         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2511         cleanup_test32_mount
2512 }
2513 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2514
2515 test_32b() {
2516         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2517         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2518         trap cleanup_test32_mount EXIT
2519         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2520         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2521         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2522         cleanup_test32_mount
2523 }
2524 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2525
2526 test_32c() {
2527         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2528         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2529         trap cleanup_test32_mount EXIT
2530         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2531         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2532         test_mkdir -p $DIR/$tdir/d2/test_dir
2533         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2534         cleanup_test32_mount
2535 }
2536 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2537
2538 test_32d() {
2539         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2540         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2541         trap cleanup_test32_mount EXIT
2542         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2543         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2544         test_mkdir -p $DIR/$tdir/d2/test_dir
2545         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2546         cleanup_test32_mount
2547 }
2548 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir"
2549
2550 test_32e() {
2551         rm -fr $DIR/$tdir
2552         test_mkdir -p $DIR/$tdir/tmp
2553         local tmp_dir=$DIR/$tdir/tmp
2554         ln -s $DIR/$tdir $tmp_dir/symlink11
2555         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2556         $CHECKSTAT -t link $DIR/$tdir/tmp/symlink11 || error "symlink11 bad"
2557         $CHECKSTAT -t link $DIR/$tdir/symlink01 || error "symlink01 bad"
2558 }
2559 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir"
2560
2561 test_32f() {
2562         rm -fr $DIR/$tdir
2563         test_mkdir -p $DIR/$tdir/tmp
2564         local tmp_dir=$DIR/$tdir/tmp
2565         ln -s $DIR/$tdir $tmp_dir/symlink11
2566         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2567         ls $DIR/$tdir/tmp/symlink11  || error "symlink11 bad"
2568         ls $DIR/$tdir/symlink01 || error "symlink01 bad"
2569 }
2570 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir"
2571
2572 test_32g() {
2573         local tmp_dir=$DIR/$tdir/tmp
2574         test_mkdir -p $tmp_dir
2575         test_mkdir $DIR/${tdir}2
2576         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2577         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2578         $CHECKSTAT -t link $tmp_dir/symlink12 || error "symlink12 not a link"
2579         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error "symlink02 not a link"
2580         $CHECKSTAT -t dir -f $tmp_dir/symlink12 || error "symlink12 not a dir"
2581         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error "symlink12 not a dir"
2582 }
2583 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2584
2585 test_32h() {
2586         rm -fr $DIR/$tdir $DIR/${tdir}2
2587         tmp_dir=$DIR/$tdir/tmp
2588         test_mkdir -p $tmp_dir
2589         test_mkdir $DIR/${tdir}2
2590         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2591         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2592         ls $tmp_dir/symlink12 || error "listing symlink12"
2593         ls $DIR/$tdir/symlink02  || error "listing symlink02"
2594 }
2595 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2596
2597 test_32i() {
2598         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2599         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2600         trap cleanup_test32_mount EXIT
2601         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2602         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2603         touch $DIR/$tdir/test_file
2604         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2605         cleanup_test32_mount
2606 }
2607 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2608
2609 test_32j() {
2610         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2611         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2612         trap cleanup_test32_mount EXIT
2613         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2614         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2615         touch $DIR/$tdir/test_file
2616         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2617         cleanup_test32_mount
2618 }
2619 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2620
2621 test_32k() {
2622         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2623         rm -fr $DIR/$tdir
2624         trap cleanup_test32_mount EXIT
2625         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2626         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2627         test_mkdir -p $DIR/$tdir/d2
2628         touch $DIR/$tdir/d2/test_file || error
2629         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2630         cleanup_test32_mount
2631 }
2632 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2633
2634 test_32l() {
2635         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2636         rm -fr $DIR/$tdir
2637         trap cleanup_test32_mount EXIT
2638         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2639         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2640         test_mkdir -p $DIR/$tdir/d2
2641         touch $DIR/$tdir/d2/test_file
2642         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2643         cleanup_test32_mount
2644 }
2645 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2646
2647 test_32m() {
2648         rm -fr $DIR/d32m
2649         test_mkdir -p $DIR/d32m/tmp
2650         TMP_DIR=$DIR/d32m/tmp
2651         ln -s $DIR $TMP_DIR/symlink11
2652         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2653         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2654         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2655 }
2656 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2657
2658 test_32n() {
2659         rm -fr $DIR/d32n
2660         test_mkdir -p $DIR/d32n/tmp
2661         TMP_DIR=$DIR/d32n/tmp
2662         ln -s $DIR $TMP_DIR/symlink11
2663         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2664         ls -l $DIR/d32n/tmp/symlink11  || error
2665         ls -l $DIR/d32n/symlink01 || error
2666 }
2667 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2668
2669 test_32o() {
2670         touch $DIR/$tfile
2671         test_mkdir -p $DIR/d32o/tmp
2672         TMP_DIR=$DIR/d32o/tmp
2673         ln -s $DIR/$tfile $TMP_DIR/symlink12
2674         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2675         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2676         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2677         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2678         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2679 }
2680 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2681
2682 test_32p() {
2683         log 32p_1
2684         rm -fr $DIR/d32p
2685         log 32p_2
2686         rm -f $DIR/$tfile
2687         log 32p_3
2688         touch $DIR/$tfile
2689         log 32p_4
2690         test_mkdir -p $DIR/d32p/tmp
2691         log 32p_5
2692         TMP_DIR=$DIR/d32p/tmp
2693         log 32p_6
2694         ln -s $DIR/$tfile $TMP_DIR/symlink12
2695         log 32p_7
2696         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2697         log 32p_8
2698         cat $DIR/d32p/tmp/symlink12 || error
2699         log 32p_9
2700         cat $DIR/d32p/symlink02 || error
2701         log 32p_10
2702 }
2703 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2704
2705 test_32q() {
2706         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2707         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2708         trap cleanup_test32_mount EXIT
2709         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2710         touch $DIR/$tdir/ext2-mountpoint/under_the_mount
2711         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2712         ls $DIR/$tdir/ext2-mountpoint | grep "\<under_the_mount\>" && error
2713         cleanup_test32_mount
2714 }
2715 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2716
2717 test_32r() {
2718         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2719         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2720         trap cleanup_test32_mount EXIT
2721         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2722         touch $DIR/$tdir/ext2-mountpoint/under_the_mount
2723         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2724         ls $DIR/$tdir/ext2-mountpoint | grep -q under_the_mount && error || true
2725         cleanup_test32_mount
2726 }
2727 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2728
2729 test_33aa() {
2730         rm -f $DIR/$tfile
2731         touch $DIR/$tfile
2732         chmod 444 $DIR/$tfile
2733         chown $RUNAS_ID $DIR/$tfile
2734         log 33_1
2735         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2736         log 33_2
2737 }
2738 run_test 33aa "write file with mode 444 (should return error)"
2739
2740 test_33a() {
2741         rm -fr $DIR/$tdir
2742         test_mkdir $DIR/$tdir
2743         chown $RUNAS_ID $DIR/$tdir
2744         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile ||
2745                 error "$RUNAS create $tdir/$tfile failed"
2746         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile &&
2747                 error "open RDWR" || true
2748 }
2749 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2750
2751 test_33b() {
2752         rm -fr $DIR/$tdir
2753         test_mkdir $DIR/$tdir
2754         chown $RUNAS_ID $DIR/$tdir
2755         $RUNAS $OPENFILE -f 1286739555 $DIR/$tdir/$tfile || true
2756 }
2757 run_test 33b "test open file with malformed flags (No panic)"
2758
2759 test_33c() {
2760         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2761         local ostnum
2762         local ostname
2763         local write_bytes
2764         local all_zeros
2765
2766         remote_ost_nodsh && skip "remote OST with nodsh" && return
2767         all_zeros=:
2768         rm -fr $DIR/$tdir
2769         test_mkdir $DIR/$tdir
2770         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2771
2772         sync
2773         for ostnum in $(seq $OSTCOUNT); do
2774                 # test-framework's OST numbering is one-based, while Lustre's
2775                 # is zero-based
2776                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2777                 # Parsing llobdstat's output sucks; we could grep the /proc
2778                 # path, but that's likely to not be as portable as using the
2779                 # llobdstat utility.  So we parse lctl output instead.
2780                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2781                         obdfilter/$ostname/stats |
2782                         awk '/^write_bytes/ {print $7}' )
2783                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2784                 if (( ${write_bytes:-0} > 0 ))
2785                 then
2786                         all_zeros=false
2787                         break;
2788                 fi
2789         done
2790
2791         $all_zeros || return 0
2792
2793         # Write four bytes
2794         echo foo > $DIR/$tdir/bar
2795         # Really write them
2796         sync
2797
2798         # Total up write_bytes after writing.  We'd better find non-zeros.
2799         for ostnum in $(seq $OSTCOUNT); do
2800                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2801                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2802                         obdfilter/$ostname/stats |
2803                         awk '/^write_bytes/ {print $7}' )
2804                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2805                 if (( ${write_bytes:-0} > 0 ))
2806                 then
2807                         all_zeros=false
2808                         break;
2809                 fi
2810         done
2811
2812         if $all_zeros
2813         then
2814                 for ostnum in $(seq $OSTCOUNT); do
2815                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2816                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2817                         do_facet ost$ostnum lctl get_param -n \
2818                                 obdfilter/$ostname/stats
2819                 done
2820                 error "OST not keeping write_bytes stats (b22312)"
2821         fi
2822 }
2823 run_test 33c "test llobdstat and write_bytes"
2824
2825 test_33d() {
2826         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
2827         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2828         local MDTIDX=1
2829         local remote_dir=$DIR/$tdir/remote_dir
2830
2831         test_mkdir $DIR/$tdir
2832         $LFS mkdir -i $MDTIDX $remote_dir ||
2833                 error "create remote directory failed"
2834
2835         touch $remote_dir/$tfile
2836         chmod 444 $remote_dir/$tfile
2837         chown $RUNAS_ID $remote_dir/$tfile
2838
2839         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2840
2841         chown $RUNAS_ID $remote_dir
2842         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2843                                         error "create" || true
2844         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2845                                     error "open RDWR" || true
2846         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
2847 }
2848 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2849
2850 test_33e() {
2851         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2852
2853         mkdir $DIR/$tdir
2854
2855         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2856         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2857         mkdir $DIR/$tdir/local_dir
2858
2859         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2860         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2861         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2862
2863         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2864                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
2865
2866         rmdir $DIR/$tdir/* || error "rmdir failed"
2867
2868         umask 777
2869         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2870         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2871         mkdir $DIR/$tdir/local_dir
2872
2873         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2874         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2875         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2876
2877         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2878                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
2879
2880         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
2881
2882         umask 000
2883         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2884         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2885         mkdir $DIR/$tdir/local_dir
2886
2887         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2888         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2889         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2890
2891         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2892                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
2893 }
2894 run_test 33e "mkdir and striped directory should have same mode"
2895
2896 cleanup_33f() {
2897         trap 0
2898         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
2899 }
2900
2901 test_33f() {
2902         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2903         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2904
2905         mkdir $DIR/$tdir
2906         chmod go+rwx $DIR/$tdir
2907         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
2908         trap cleanup_33f EXIT
2909
2910         $RUNAS lfs mkdir -c$MDSCOUNT $DIR/$tdir/striped_dir ||
2911                 error "cannot create striped directory"
2912
2913         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
2914                 error "cannot create files in striped directory"
2915
2916         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
2917                 error "cannot remove files in striped directory"
2918
2919         $RUNAS rmdir $DIR/$tdir/striped_dir ||
2920                 error "cannot remove striped directory"
2921
2922         cleanup_33f
2923 }
2924 run_test 33f "nonroot user can create, access, and remove a striped directory"
2925
2926 test_33g() {
2927         mkdir -p $DIR/$tdir/dir2
2928
2929         local err=$($RUNAS mkdir $DIR/$tdir/dir2 2>&1)
2930         echo $err
2931         [[ $err =~ "exists" ]] || error "Not exists error"
2932 }
2933 run_test 33g "nonroot user create already existing root created file"
2934
2935 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2936 test_34a() {
2937         rm -f $DIR/f34
2938         $MCREATE $DIR/f34 || error
2939         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2940         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2941         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2942         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2943 }
2944 run_test 34a "truncate file that has not been opened ==========="
2945
2946 test_34b() {
2947         [ ! -f $DIR/f34 ] && test_34a
2948         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2949         $OPENFILE -f O_RDONLY $DIR/f34
2950         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2951         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2952 }
2953 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2954
2955 test_34c() {
2956         [ ! -f $DIR/f34 ] && test_34a
2957         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2958         $OPENFILE -f O_RDWR $DIR/f34
2959         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2960         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2961 }
2962 run_test 34c "O_RDWR opening file-with-size works =============="
2963
2964 test_34d() {
2965         [ ! -f $DIR/f34 ] && test_34a
2966         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2967         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2968         rm $DIR/f34
2969 }
2970 run_test 34d "write to sparse file ============================="
2971
2972 test_34e() {
2973         rm -f $DIR/f34e
2974         $MCREATE $DIR/f34e || error
2975         $TRUNCATE $DIR/f34e 1000 || error
2976         $CHECKSTAT -s 1000 $DIR/f34e || error
2977         $OPENFILE -f O_RDWR $DIR/f34e
2978         $CHECKSTAT -s 1000 $DIR/f34e || error
2979 }
2980 run_test 34e "create objects, some with size and some without =="
2981
2982 test_34f() { # bug 6242, 6243
2983         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2984         SIZE34F=48000
2985         rm -f $DIR/f34f
2986         $MCREATE $DIR/f34f || error
2987         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2988         dd if=$DIR/f34f of=$TMP/f34f
2989         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2990         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2991         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2992         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2993         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2994 }
2995 run_test 34f "read from a file with no objects until EOF ======="
2996
2997 test_34g() {
2998         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2999         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
3000         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
3001         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
3002         cancel_lru_locks osc
3003         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
3004                 error "wrong size after lock cancel"
3005
3006         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
3007         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
3008                 error "expanding truncate failed"
3009         cancel_lru_locks osc
3010         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
3011                 error "wrong expanded size after lock cancel"
3012 }
3013 run_test 34g "truncate long file ==============================="
3014
3015 test_34h() {
3016         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3017         local gid=10
3018         local sz=1000
3019
3020         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
3021         sync # Flush the cache so that multiop below does not block on cache
3022              # flush when getting the group lock
3023         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
3024         MULTIPID=$!
3025
3026         # Since just timed wait is not good enough, let's do a sync write
3027         # that way we are sure enough time for a roundtrip + processing
3028         # passed + 2 seconds of extra margin.
3029         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
3030         rm $DIR/${tfile}-1
3031         sleep 2
3032
3033         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
3034                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
3035                 kill -9 $MULTIPID
3036         fi
3037         wait $MULTIPID
3038         local nsz=`stat -c %s $DIR/$tfile`
3039         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
3040 }
3041 run_test 34h "ftruncate file under grouplock should not block"
3042
3043 test_35a() {
3044         cp /bin/sh $DIR/f35a
3045         chmod 444 $DIR/f35a
3046         chown $RUNAS_ID $DIR/f35a
3047         $RUNAS $DIR/f35a && error || true
3048         rm $DIR/f35a
3049 }
3050 run_test 35a "exec file with mode 444 (should return and not leak)"
3051
3052 test_36a() {
3053         rm -f $DIR/f36
3054         utime $DIR/f36 || error
3055 }
3056 run_test 36a "MDS utime check (mknod, utime)"
3057
3058 test_36b() {
3059         echo "" > $DIR/f36
3060         utime $DIR/f36 || error
3061 }
3062 run_test 36b "OST utime check (open, utime)"
3063
3064 test_36c() {
3065         rm -f $DIR/d36/f36
3066         test_mkdir $DIR/d36
3067         chown $RUNAS_ID $DIR/d36
3068         $RUNAS utime $DIR/d36/f36 || error
3069 }
3070 run_test 36c "non-root MDS utime check (mknod, utime)"
3071
3072 test_36d() {
3073         [ ! -d $DIR/d36 ] && test_36c
3074         echo "" > $DIR/d36/f36
3075         $RUNAS utime $DIR/d36/f36 || error
3076 }
3077 run_test 36d "non-root OST utime check (open, utime)"
3078
3079 test_36e() {
3080         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3081         test_mkdir $DIR/$tdir
3082         touch $DIR/$tdir/$tfile
3083         $RUNAS utime $DIR/$tdir/$tfile &&
3084                 error "utime worked, expected failure" || true
3085 }
3086 run_test 36e "utime on non-owned file (should return error)"
3087
3088 subr_36fh() {
3089         local fl="$1"
3090         local LANG_SAVE=$LANG
3091         local LC_LANG_SAVE=$LC_LANG
3092         export LANG=C LC_LANG=C # for date language
3093
3094         DATESTR="Dec 20  2000"
3095         test_mkdir $DIR/$tdir
3096         lctl set_param fail_loc=$fl
3097         date; date +%s
3098         cp /etc/hosts $DIR/$tdir/$tfile
3099         sync & # write RPC generated with "current" inode timestamp, but delayed
3100         sleep 1
3101         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
3102         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
3103         cancel_lru_locks osc
3104         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
3105         date; date +%s
3106         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
3107                 echo "BEFORE: $LS_BEFORE" && \
3108                 echo "AFTER : $LS_AFTER" && \
3109                 echo "WANT  : $DATESTR" && \
3110                 error "$DIR/$tdir/$tfile timestamps changed" || true
3111
3112         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
3113 }
3114
3115 test_36f() {
3116         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3117         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
3118         subr_36fh "0x80000214"
3119 }
3120 run_test 36f "utime on file racing with OST BRW write =========="
3121
3122 test_36g() {
3123         remote_ost_nodsh && skip "remote OST with nodsh" && return
3124         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3125         local fmd_max_age
3126         local fmd_before
3127         local fmd_after
3128
3129         test_mkdir $DIR/$tdir
3130         fmd_max_age=$(do_facet ost1 \
3131                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
3132                 head -n 1")
3133
3134         fmd_before=$(do_facet ost1 \
3135                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3136         touch $DIR/$tdir/$tfile
3137         sleep $((fmd_max_age + 12))
3138         fmd_after=$(do_facet ost1 \
3139                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3140
3141         echo "fmd_before: $fmd_before"
3142         echo "fmd_after: $fmd_after"
3143         [[ $fmd_after -gt $fmd_before ]] &&
3144                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" &&
3145                 error "fmd didn't expire after ping" || true
3146 }
3147 run_test 36g "filter mod data cache expiry ====================="
3148
3149 test_36h() {
3150         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3151         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
3152         subr_36fh "0x80000227"
3153 }
3154 run_test 36h "utime on file racing with OST BRW write =========="
3155
3156 test_36i() {
3157         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3158
3159         test_mkdir $DIR/$tdir
3160         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3161
3162         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3163         local new_mtime=$((mtime + 200))
3164
3165         #change Modify time of striped dir
3166         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3167                         error "change mtime failed"
3168
3169         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3170
3171         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3172 }
3173 run_test 36i "change mtime on striped directory"
3174
3175 # test_37 - duplicate with tests 32q 32r
3176
3177 test_38() {
3178         local file=$DIR/$tfile
3179         touch $file
3180         openfile -f O_DIRECTORY $file
3181         local RC=$?
3182         local ENOTDIR=20
3183         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3184         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3185 }
3186 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3187
3188 test_39a() { # was test_39
3189         touch $DIR/$tfile
3190         touch $DIR/${tfile}2
3191 #       ls -l  $DIR/$tfile $DIR/${tfile}2
3192 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
3193 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
3194         sleep 2
3195         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3196         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3197                 echo "mtime"
3198                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3199                 echo "atime"
3200                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3201                 echo "ctime"
3202                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3203                 error "O_TRUNC didn't change timestamps"
3204         fi
3205 }
3206 run_test 39a "mtime changed on create"
3207
3208 test_39b() {
3209         test_mkdir -c1 $DIR/$tdir
3210         cp -p /etc/passwd $DIR/$tdir/fopen
3211         cp -p /etc/passwd $DIR/$tdir/flink
3212         cp -p /etc/passwd $DIR/$tdir/funlink
3213         cp -p /etc/passwd $DIR/$tdir/frename
3214         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3215
3216         sleep 1
3217         echo "aaaaaa" >> $DIR/$tdir/fopen
3218         echo "aaaaaa" >> $DIR/$tdir/flink
3219         echo "aaaaaa" >> $DIR/$tdir/funlink
3220         echo "aaaaaa" >> $DIR/$tdir/frename
3221
3222         local open_new=`stat -c %Y $DIR/$tdir/fopen`
3223         local link_new=`stat -c %Y $DIR/$tdir/flink`
3224         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3225         local rename_new=`stat -c %Y $DIR/$tdir/frename`
3226
3227         cat $DIR/$tdir/fopen > /dev/null
3228         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3229         rm -f $DIR/$tdir/funlink2
3230         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3231
3232         for (( i=0; i < 2; i++ )) ; do
3233                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3234                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3235                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3236                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3237
3238                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3239                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3240                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3241                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3242
3243                 cancel_lru_locks osc
3244                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3245         done
3246 }
3247 run_test 39b "mtime change on open, link, unlink, rename  ======"
3248
3249 # this should be set to past
3250 TEST_39_MTIME=`date -d "1 year ago" +%s`
3251
3252 # bug 11063
3253 test_39c() {
3254         touch $DIR1/$tfile
3255         sleep 2
3256         local mtime0=`stat -c %Y $DIR1/$tfile`
3257
3258         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3259         local mtime1=`stat -c %Y $DIR1/$tfile`
3260         [ "$mtime1" = $TEST_39_MTIME ] || \
3261                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3262
3263         local d1=`date +%s`
3264         echo hello >> $DIR1/$tfile
3265         local d2=`date +%s`
3266         local mtime2=`stat -c %Y $DIR1/$tfile`
3267         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3268                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3269
3270         mv $DIR1/$tfile $DIR1/$tfile-1
3271
3272         for (( i=0; i < 2; i++ )) ; do
3273                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3274                 [ "$mtime2" = "$mtime3" ] || \
3275                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3276
3277                 cancel_lru_locks osc
3278                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3279         done
3280 }
3281 run_test 39c "mtime change on rename ==========================="
3282
3283 # bug 21114
3284 test_39d() {
3285         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3286         touch $DIR1/$tfile
3287
3288         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3289
3290         for (( i=0; i < 2; i++ )) ; do
3291                 local mtime=`stat -c %Y $DIR1/$tfile`
3292                 [ $mtime = $TEST_39_MTIME ] || \
3293                         error "mtime($mtime) is not set to $TEST_39_MTIME"
3294
3295                 cancel_lru_locks osc
3296                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3297         done
3298 }
3299 run_test 39d "create, utime, stat =============================="
3300
3301 # bug 21114
3302 test_39e() {
3303         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3304         touch $DIR1/$tfile
3305         local mtime1=`stat -c %Y $DIR1/$tfile`
3306
3307         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3308
3309         for (( i=0; i < 2; i++ )) ; do
3310                 local mtime2=`stat -c %Y $DIR1/$tfile`
3311                 [ $mtime2 = $TEST_39_MTIME ] || \
3312                         error "mtime($mtime2) is not set to $TEST_39_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 39e "create, stat, utime, stat ========================"
3319
3320 # bug 21114
3321 test_39f() {
3322         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3323         touch $DIR1/$tfile
3324         mtime1=`stat -c %Y $DIR1/$tfile`
3325
3326         sleep 2
3327         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3328
3329         for (( i=0; i < 2; i++ )) ; do
3330                 local mtime2=`stat -c %Y $DIR1/$tfile`
3331                 [ $mtime2 = $TEST_39_MTIME ] || \
3332                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3333
3334                 cancel_lru_locks osc
3335                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3336         done
3337 }
3338 run_test 39f "create, stat, sleep, utime, stat ================="
3339
3340 # bug 11063
3341 test_39g() {
3342         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3343         echo hello >> $DIR1/$tfile
3344         local mtime1=`stat -c %Y $DIR1/$tfile`
3345
3346         sleep 2
3347         chmod o+r $DIR1/$tfile
3348
3349         for (( i=0; i < 2; i++ )) ; do
3350                 local mtime2=`stat -c %Y $DIR1/$tfile`
3351                 [ "$mtime1" = "$mtime2" ] || \
3352                         error "lost mtime: $mtime2, should be $mtime1"
3353
3354                 cancel_lru_locks osc
3355                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3356         done
3357 }
3358 run_test 39g "write, chmod, stat ==============================="
3359
3360 # bug 11063
3361 test_39h() {
3362         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3363         touch $DIR1/$tfile
3364         sleep 1
3365
3366         local d1=`date`
3367         echo hello >> $DIR1/$tfile
3368         local mtime1=`stat -c %Y $DIR1/$tfile`
3369
3370         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3371         local d2=`date`
3372         if [ "$d1" != "$d2" ]; then
3373                 echo "write and touch not within one second"
3374         else
3375                 for (( i=0; i < 2; i++ )) ; do
3376                         local mtime2=`stat -c %Y $DIR1/$tfile`
3377                         [ "$mtime2" = $TEST_39_MTIME ] || \
3378                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3379
3380                         cancel_lru_locks osc
3381                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3382                 done
3383         fi
3384 }
3385 run_test 39h "write, utime within one second, stat ============="
3386
3387 test_39i() {
3388         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3389         touch $DIR1/$tfile
3390         sleep 1
3391
3392         echo hello >> $DIR1/$tfile
3393         local mtime1=`stat -c %Y $DIR1/$tfile`
3394
3395         mv $DIR1/$tfile $DIR1/$tfile-1
3396
3397         for (( i=0; i < 2; i++ )) ; do
3398                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3399
3400                 [ "$mtime1" = "$mtime2" ] || \
3401                         error "lost mtime: $mtime2, should be $mtime1"
3402
3403                 cancel_lru_locks osc
3404                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3405         done
3406 }
3407 run_test 39i "write, rename, stat =============================="
3408
3409 test_39j() {
3410         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3411         start_full_debug_logging
3412         touch $DIR1/$tfile
3413         sleep 1
3414
3415         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3416         lctl set_param fail_loc=0x80000412
3417         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3418                 error "multiop failed"
3419         local multipid=$!
3420         local mtime1=`stat -c %Y $DIR1/$tfile`
3421
3422         mv $DIR1/$tfile $DIR1/$tfile-1
3423
3424         kill -USR1 $multipid
3425         wait $multipid || error "multiop close failed"
3426
3427         for (( i=0; i < 2; i++ )) ; do
3428                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3429                 [ "$mtime1" = "$mtime2" ] ||
3430                         error "mtime is lost on close: $mtime2, " \
3431                               "should be $mtime1"
3432
3433                 cancel_lru_locks osc
3434                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3435         done
3436         lctl set_param fail_loc=0
3437         stop_full_debug_logging
3438 }
3439 run_test 39j "write, rename, close, stat ======================="
3440
3441 test_39k() {
3442         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3443         touch $DIR1/$tfile
3444         sleep 1
3445
3446         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3447         local multipid=$!
3448         local mtime1=`stat -c %Y $DIR1/$tfile`
3449
3450         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3451
3452         kill -USR1 $multipid
3453         wait $multipid || error "multiop close failed"
3454
3455         for (( i=0; i < 2; i++ )) ; do
3456                 local mtime2=`stat -c %Y $DIR1/$tfile`
3457
3458                 [ "$mtime2" = $TEST_39_MTIME ] || \
3459                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3460
3461                 cancel_lru_locks osc
3462                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3463         done
3464 }
3465 run_test 39k "write, utime, close, stat ========================"
3466
3467 # this should be set to future
3468 TEST_39_ATIME=`date -d "1 year" +%s`
3469
3470 test_39l() {
3471         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3472         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3473         local atime_diff=$(do_facet $SINGLEMDS \
3474                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3475         rm -rf $DIR/$tdir
3476         mkdir -p $DIR/$tdir
3477
3478         # test setting directory atime to future
3479         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3480         local atime=$(stat -c %X $DIR/$tdir)
3481         [ "$atime" = $TEST_39_ATIME ] ||
3482                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3483
3484         # test setting directory atime from future to now
3485         local now=$(date +%s)
3486         touch -a -d @$now $DIR/$tdir
3487
3488         atime=$(stat -c %X $DIR/$tdir)
3489         [ "$atime" -eq "$now"  ] ||
3490                 error "atime is not updated from future: $atime, $now"
3491
3492         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3493         sleep 3
3494
3495         # test setting directory atime when now > dir atime + atime_diff
3496         local d1=$(date +%s)
3497         ls $DIR/$tdir
3498         local d2=$(date +%s)
3499         cancel_lru_locks mdc
3500         atime=$(stat -c %X $DIR/$tdir)
3501         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3502                 error "atime is not updated  : $atime, should be $d2"
3503
3504         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3505         sleep 3
3506
3507         # test not setting directory atime when now < dir atime + atime_diff
3508         ls $DIR/$tdir
3509         cancel_lru_locks mdc
3510         atime=$(stat -c %X $DIR/$tdir)
3511         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3512                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3513
3514         do_facet $SINGLEMDS \
3515                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3516 }
3517 run_test 39l "directory atime update ==========================="
3518
3519 test_39m() {
3520         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3521         touch $DIR1/$tfile
3522         sleep 2
3523         local far_past_mtime=$(date -d "May 29 1953" +%s)
3524         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3525
3526         touch -m -d @$far_past_mtime $DIR1/$tfile
3527         touch -a -d @$far_past_atime $DIR1/$tfile
3528
3529         for (( i=0; i < 2; i++ )) ; do
3530                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3531                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3532                         error "atime or mtime set incorrectly"
3533
3534                 cancel_lru_locks osc
3535                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3536         done
3537 }
3538 run_test 39m "test atime and mtime before 1970"
3539
3540 test_39n() { # LU-3832
3541         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3542         local atime_diff=$(do_facet $SINGLEMDS \
3543                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3544         local atime0
3545         local atime1
3546         local atime2
3547
3548         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3549
3550         rm -rf $DIR/$tfile
3551         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3552         atime0=$(stat -c %X $DIR/$tfile)
3553
3554         sleep 5
3555         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3556         atime1=$(stat -c %X $DIR/$tfile)
3557
3558         sleep 5
3559         cancel_lru_locks mdc
3560         cancel_lru_locks osc
3561         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3562         atime2=$(stat -c %X $DIR/$tfile)
3563
3564         do_facet $SINGLEMDS \
3565                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3566
3567         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3568         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3569 }
3570 run_test 39n "check that O_NOATIME is honored"
3571
3572 test_39o() {
3573         TESTDIR=$DIR/$tdir/$tfile
3574         [ -e $TESTDIR ] && rm -rf $TESTDIR
3575         mkdir -p $TESTDIR
3576         cd $TESTDIR
3577         links1=2
3578         ls
3579         mkdir a b
3580         ls
3581         links2=$(stat -c %h .)
3582         [ $(($links1 + 2)) != $links2 ] &&
3583                 error "wrong links count $(($links1 + 2)) != $links2"
3584         rmdir b
3585         links3=$(stat -c %h .)
3586         [ $(($links1 + 1)) != $links3 ] &&
3587                 error "wrong links count $links1 != $links3"
3588         return 0
3589 }
3590 run_test 39o "directory cached attributes updated after create"
3591
3592 test_39p() {
3593         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
3594         local MDTIDX=1
3595         TESTDIR=$DIR/$tdir/$tdir
3596         [ -e $TESTDIR ] && rm -rf $TESTDIR
3597         test_mkdir -p $TESTDIR
3598         cd $TESTDIR
3599         links1=2
3600         ls
3601         test_mkdir -i $MDTIDX $TESTDIR/remote_dir1
3602         test_mkdir -i $MDTIDX $TESTDIR/remote_dir2
3603         ls
3604         links2=$(stat -c %h .)
3605         [ $(($links1 + 2)) != $links2 ] &&
3606                 error "wrong links count $(($links1 + 2)) != $links2"
3607         rmdir remote_dir2
3608         links3=$(stat -c %h .)
3609         [ $(($links1 + 1)) != $links3 ] &&
3610                 error "wrong links count $links1 != $links3"
3611         return 0
3612 }
3613 run_test 39p "remote directory cached attributes updated after create ========"
3614
3615
3616 test_39q() { # LU-8041
3617         local testdir=$DIR/$tdir
3618         mkdir -p $testdir
3619         multiop_bg_pause $testdir D_c || error "multiop failed"
3620         local multipid=$!
3621         cancel_lru_locks mdc
3622         kill -USR1 $multipid
3623         local atime=$(stat -c %X $testdir)
3624         [ "$atime" -ne 0 ] || error "atime is zero"
3625 }
3626 run_test 39q "close won't zero out atime"
3627
3628 test_40() {
3629         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3630         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3631                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3632         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3633                 error "$tfile is not 4096 bytes in size"
3634 }
3635 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3636
3637 test_41() {
3638         # bug 1553
3639         small_write $DIR/f41 18
3640 }
3641 run_test 41 "test small file write + fstat ====================="
3642
3643 count_ost_writes() {
3644         lctl get_param -n ${OSC}.*.stats |
3645                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
3646                         END { printf("%0.0f", writes) }'
3647 }
3648
3649 # decent default
3650 WRITEBACK_SAVE=500
3651 DIRTY_RATIO_SAVE=40
3652 MAX_DIRTY_RATIO=50
3653 BG_DIRTY_RATIO_SAVE=10
3654 MAX_BG_DIRTY_RATIO=25
3655
3656 start_writeback() {
3657         trap 0
3658         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3659         # dirty_ratio, dirty_background_ratio
3660         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3661                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3662                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3663                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3664         else
3665                 # if file not here, we are a 2.4 kernel
3666                 kill -CONT `pidof kupdated`
3667         fi
3668 }
3669
3670 stop_writeback() {
3671         # setup the trap first, so someone cannot exit the test at the
3672         # exact wrong time and mess up a machine
3673         trap start_writeback EXIT
3674         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3675         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3676                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3677                 sysctl -w vm.dirty_writeback_centisecs=0
3678                 sysctl -w vm.dirty_writeback_centisecs=0
3679                 # save and increase /proc/sys/vm/dirty_ratio
3680                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3681                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3682                 # save and increase /proc/sys/vm/dirty_background_ratio
3683                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3684                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3685         else
3686                 # if file not here, we are a 2.4 kernel
3687                 kill -STOP `pidof kupdated`
3688         fi
3689 }
3690
3691 # ensure that all stripes have some grant before we test client-side cache
3692 setup_test42() {
3693         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3694                 dd if=/dev/zero of=$i bs=4k count=1
3695                 rm $i
3696         done
3697 }
3698
3699 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3700 # file truncation, and file removal.
3701 test_42a() {
3702         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3703         setup_test42
3704         cancel_lru_locks $OSC
3705         stop_writeback
3706         sync; sleep 1; sync # just to be safe
3707         BEFOREWRITES=`count_ost_writes`
3708         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3709         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3710         AFTERWRITES=`count_ost_writes`
3711         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3712                 error "$BEFOREWRITES < $AFTERWRITES"
3713         start_writeback
3714 }
3715 run_test 42a "ensure that we don't flush on close"
3716
3717 test_42b() {
3718         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3719         setup_test42
3720         cancel_lru_locks $OSC
3721         stop_writeback
3722         sync
3723         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3724         BEFOREWRITES=$(count_ost_writes)
3725         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3726         AFTERWRITES=$(count_ost_writes)
3727         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3728                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3729         fi
3730         BEFOREWRITES=$(count_ost_writes)
3731         sync || error "sync: $?"
3732         AFTERWRITES=$(count_ost_writes)
3733         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3734                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3735         fi
3736         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3737         start_writeback
3738         return 0
3739 }
3740 run_test 42b "test destroy of file with cached dirty data ======"
3741
3742 # if these tests just want to test the effect of truncation,
3743 # they have to be very careful.  consider:
3744 # - the first open gets a {0,EOF}PR lock
3745 # - the first write conflicts and gets a {0, count-1}PW
3746 # - the rest of the writes are under {count,EOF}PW
3747 # - the open for truncate tries to match a {0,EOF}PR
3748 #   for the filesize and cancels the PWs.
3749 # any number of fixes (don't get {0,EOF} on open, match
3750 # composite locks, do smarter file size management) fix
3751 # this, but for now we want these tests to verify that
3752 # the cancellation with truncate intent works, so we
3753 # start the file with a full-file pw lock to match against
3754 # until the truncate.
3755 trunc_test() {
3756         test=$1
3757         file=$DIR/$test
3758         offset=$2
3759         cancel_lru_locks $OSC
3760         stop_writeback
3761         # prime the file with 0,EOF PW to match
3762         touch $file
3763         $TRUNCATE $file 0
3764         sync; sync
3765         # now the real test..
3766         dd if=/dev/zero of=$file bs=1024 count=100
3767         BEFOREWRITES=`count_ost_writes`
3768         $TRUNCATE $file $offset
3769         cancel_lru_locks $OSC
3770         AFTERWRITES=`count_ost_writes`
3771         start_writeback
3772 }
3773
3774 test_42c() {
3775         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3776         trunc_test 42c 1024
3777         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3778             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3779         rm $file
3780 }
3781 run_test 42c "test partial truncate of file with cached dirty data"
3782
3783 test_42d() {
3784         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3785         trunc_test 42d 0
3786         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3787             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3788         rm $file
3789 }
3790 run_test 42d "test complete truncate of file with cached dirty data"
3791
3792 test_42e() { # bug22074
3793         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3794         local TDIR=$DIR/${tdir}e
3795         local pagesz=$(page_size)
3796         local pages=16 # hardcoded 16 pages, don't change it.
3797         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3798         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3799         local max_dirty_mb
3800         local warmup_files
3801
3802         test_mkdir $DIR/${tdir}e
3803         $SETSTRIPE -c 1 $TDIR
3804         createmany -o $TDIR/f $files
3805
3806         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3807
3808         # we assume that with $OSTCOUNT files, at least one of them will
3809         # be allocated on OST0.
3810         warmup_files=$((OSTCOUNT * max_dirty_mb))
3811         createmany -o $TDIR/w $warmup_files
3812
3813         # write a large amount of data into one file and sync, to get good
3814         # avail_grant number from OST.
3815         for ((i=0; i<$warmup_files; i++)); do
3816                 idx=$($GETSTRIPE -i $TDIR/w$i)
3817                 [ $idx -ne 0 ] && continue
3818                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3819                 break
3820         done
3821         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
3822         sync
3823         $LCTL get_param $proc_osc0/cur_dirty_bytes
3824         $LCTL get_param $proc_osc0/cur_grant_bytes
3825
3826         # create as much dirty pages as we can while not to trigger the actual
3827         # RPCs directly. but depends on the env, VFS may trigger flush during this
3828         # period, hopefully we are good.
3829         for ((i=0; i<$warmup_files; i++)); do
3830                 idx=$($GETSTRIPE -i $TDIR/w$i)
3831                 [ $idx -ne 0 ] && continue
3832                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3833         done
3834         $LCTL get_param $proc_osc0/cur_dirty_bytes
3835         $LCTL get_param $proc_osc0/cur_grant_bytes
3836
3837         # perform the real test
3838         $LCTL set_param $proc_osc0/rpc_stats 0
3839         for ((;i<$files; i++)); do
3840                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3841                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3842         done
3843         sync
3844         $LCTL get_param $proc_osc0/rpc_stats
3845
3846         local percent=0
3847         local have_ppr=false
3848         $LCTL get_param $proc_osc0/rpc_stats |
3849                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3850                         # skip lines until we are at the RPC histogram data
3851                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3852                         $have_ppr || continue
3853
3854                         # we only want the percent stat for < 16 pages
3855                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
3856
3857                         percent=$((percent + WPCT))
3858                         if [[ $percent -gt 15 ]]; then
3859                                 error "less than 16-pages write RPCs" \
3860                                       "$percent% > 15%"
3861                                 break
3862                         fi
3863                 done
3864         rm -rf $TDIR
3865 }
3866 run_test 42e "verify sub-RPC writes are not done synchronously"
3867
3868 test_43A() { # was test_43
3869         test_mkdir $DIR/$tdir
3870         cp -p /bin/ls $DIR/$tdir/$tfile
3871         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3872         pid=$!
3873         # give multiop a chance to open
3874         sleep 1
3875
3876         $DIR/$tdir/$tfile && error "execute $DIR/$tdir/$tfile succeeded" || true
3877         kill -USR1 $pid
3878 }
3879 run_test 43A "execution of file opened for write should return -ETXTBSY"
3880
3881 test_43a() {
3882         test_mkdir $DIR/$tdir
3883         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
3884                 cp -p multiop $DIR/$tdir/multiop
3885         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3886                 error "multiop open $TMP/$tfile.junk failed"
3887         rm $TMP/$tfile.junk     # delete junk file on close (not part of test)
3888         MULTIOP_PID=$!
3889         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3890         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
3891         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
3892 }
3893 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3894
3895 test_43b() {
3896         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3897         test_mkdir $DIR/$tdir
3898         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
3899                 cp -p multiop $DIR/$tdir/multiop
3900         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3901                 error "multiop open $TMP/$tfile.junk failed"
3902         rm $TMP/$tfile.junk     # delete junk file on close (not part of test)
3903         MULTIOP_PID=$!
3904         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3905         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
3906         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
3907 }
3908 run_test 43b "truncate of file being executed should return -ETXTBSY"
3909
3910 test_43c() {
3911         local testdir="$DIR/$tdir"
3912         test_mkdir $testdir
3913         cp $SHELL $testdir/
3914         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) |
3915                 ( cd $testdir && md5sum -c )
3916 }
3917 run_test 43c "md5sum of copy into lustre"
3918
3919 test_44A() { # was test_44
3920         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
3921         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3922         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3923 }
3924 run_test 44A "zero length read from a sparse stripe"
3925
3926 test_44a() {
3927         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
3928                 awk '{ print $2 }')
3929         [ -z "$nstripe" ] && skip "can't get stripe info" && return
3930         [[ $nstripe -gt $OSTCOUNT ]] &&
3931             skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" &&
3932             return
3933         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
3934                 awk '{ print $2 }')
3935         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
3936                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
3937                         awk '{ print $2 }')
3938         fi
3939
3940         OFFSETS="0 $((stride/2)) $((stride-1))"
3941         for offset in $OFFSETS; do
3942                 for i in $(seq 0 $((nstripe-1))); do
3943                         local GLOBALOFFSETS=""
3944                         # size in Bytes
3945                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
3946                         local myfn=$DIR/d44a-$size
3947                         echo "--------writing $myfn at $size"
3948                         ll_sparseness_write $myfn $size ||
3949                                 error "ll_sparseness_write"
3950                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
3951                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3952                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3953
3954                         for j in $(seq 0 $((nstripe-1))); do
3955                                 # size in Bytes
3956                                 size=$((((j + $nstripe )*$stride + $offset)))
3957                                 ll_sparseness_write $myfn $size ||
3958                                         error "ll_sparseness_write"
3959                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
3960                         done
3961                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3962                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3963                         rm -f $myfn
3964                 done
3965         done
3966 }
3967 run_test 44a "test sparse pwrite ==============================="
3968
3969 dirty_osc_total() {
3970         tot=0
3971         for d in `lctl get_param -n ${OSC}.*.cur_dirty_bytes`; do
3972                 tot=$(($tot + $d))
3973         done
3974         echo $tot
3975 }
3976 do_dirty_record() {
3977         before=`dirty_osc_total`
3978         echo executing "\"$*\""
3979         eval $*
3980         after=`dirty_osc_total`
3981         echo before $before, after $after
3982 }
3983 test_45() {
3984         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3985         f="$DIR/f45"
3986         # Obtain grants from OST if it supports it
3987         echo blah > ${f}_grant
3988         stop_writeback
3989         sync
3990         do_dirty_record "echo blah > $f"
3991         [[ $before -eq $after ]] && error "write wasn't cached"
3992         do_dirty_record "> $f"
3993         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
3994         do_dirty_record "echo blah > $f"
3995         [[ $before -eq $after ]] && error "write wasn't cached"
3996         do_dirty_record "sync"
3997         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
3998         do_dirty_record "echo blah > $f"
3999         [[ $before -eq $after ]] && error "write wasn't cached"
4000         do_dirty_record "cancel_lru_locks osc"
4001         [[ $before -gt $after ]] ||
4002                 error "lock cancellation didn't lower dirty count"
4003         start_writeback
4004 }
4005 run_test 45 "osc io page accounting ============================"
4006
4007 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
4008 # test tickles a bug where re-dirtying a page was failing to be mapped to the
4009 # objects offset and an assert hit when an rpc was built with 1023's mapped
4010 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
4011 test_46() {
4012         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4013         f="$DIR/f46"
4014         stop_writeback
4015         sync
4016         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
4017         sync
4018         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
4019         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
4020         sync
4021         start_writeback
4022 }
4023 run_test 46 "dirtying a previously written page ================"
4024
4025 # test_47 is removed "Device nodes check" is moved to test_28
4026
4027 test_48a() { # bug 2399
4028         [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
4029         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.63) ] &&
4030                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly" &&
4031                 return
4032         test_mkdir $DIR/$tdir
4033         cd $DIR/$tdir
4034         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
4035         test_mkdir $DIR/$tdir
4036         touch foo || error "'touch foo' failed after recreating cwd"
4037         test_mkdir bar
4038         touch .foo || error "'touch .foo' failed after recreating cwd"
4039         test_mkdir .bar
4040         ls . > /dev/null || error "'ls .' failed after recreating cwd"
4041         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4042         cd . || error "'cd .' failed after recreating cwd"
4043         mkdir . && error "'mkdir .' worked after recreating cwd"
4044         rmdir . && error "'rmdir .' worked after recreating cwd"
4045         ln -s . baz || error "'ln -s .' failed after recreating cwd"
4046         cd .. || error "'cd ..' failed after recreating cwd"
4047 }
4048 run_test 48a "Access renamed working dir (should return errors)="
4049
4050 test_48b() { # bug 2399
4051         rm -rf $DIR/$tdir
4052         test_mkdir $DIR/$tdir
4053         cd $DIR/$tdir
4054         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
4055         touch foo && error "'touch foo' worked after removing cwd"
4056         mkdir foo && error "'mkdir foo' worked after removing cwd"
4057         touch .foo && error "'touch .foo' worked after removing cwd"
4058         mkdir .foo && error "'mkdir .foo' worked after removing cwd"
4059         ls . > /dev/null && error "'ls .' worked after removing cwd"
4060         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4061         mkdir . && error "'mkdir .' worked after removing cwd"
4062         rmdir . && error "'rmdir .' worked after removing cwd"
4063         ln -s . foo && error "'ln -s .' worked after removing cwd"
4064         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
4065 }
4066 run_test 48b "Access removed working dir (should return errors)="
4067
4068 test_48c() { # bug 2350
4069         #lctl set_param debug=-1
4070         #set -vx
4071         rm -rf $DIR/$tdir
4072         test_mkdir -p $DIR/$tdir/dir
4073         cd $DIR/$tdir/dir
4074         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4075         $TRACE touch foo && error "touch foo worked after removing cwd"
4076         $TRACE mkdir foo && error "'mkdir foo' worked after removing cwd"
4077         touch .foo && error "touch .foo worked after removing cwd"
4078         mkdir .foo && error "mkdir .foo worked after removing cwd"
4079         $TRACE ls . && error "'ls .' worked after removing cwd"
4080         $TRACE ls .. || error "'ls ..' failed after removing cwd"
4081         $TRACE mkdir . && error "'mkdir .' worked after removing cwd"
4082         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
4083         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
4084         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
4085 }
4086 run_test 48c "Access removed working subdir (should return errors)"
4087
4088 test_48d() { # bug 2350
4089         #lctl set_param debug=-1
4090         #set -vx
4091         rm -rf $DIR/$tdir
4092         test_mkdir -p $DIR/$tdir/dir
4093         cd $DIR/$tdir/dir
4094         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4095         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4096         $TRACE touch foo && error "'touch foo' worked after removing parent"
4097         $TRACE mkdir foo && error "mkdir foo worked after removing parent"
4098         touch .foo && error "'touch .foo' worked after removing parent"
4099         mkdir .foo && error "mkdir .foo worked after removing parent"
4100         $TRACE ls . && error "'ls .' worked after removing parent"
4101         $TRACE ls .. && error "'ls ..' worked after removing parent"
4102         $TRACE mkdir . && error "'mkdir .' worked after removing parent"
4103         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
4104         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
4105         true
4106 }
4107 run_test 48d "Access removed parent subdir (should return errors)"
4108
4109 test_48e() { # bug 4134
4110         #lctl set_param debug=-1
4111         #set -vx
4112         rm -rf $DIR/$tdir
4113         test_mkdir -p $DIR/$tdir/dir
4114         cd $DIR/$tdir/dir
4115         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4116         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4117         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
4118         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
4119         # On a buggy kernel addition of "touch foo" after cd .. will
4120         # produce kernel oops in lookup_hash_it
4121         touch ../foo && error "'cd ..' worked after recreate parent"
4122         cd $DIR
4123         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
4124 }
4125 run_test 48e "Access to recreated parent subdir (should return errors)"
4126
4127 test_49() { # LU-1030
4128         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4129         remote_ost_nodsh && skip "remote OST with nodsh" && return
4130         # get ost1 size - lustre-OST0000
4131         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
4132                 awk '{ print $4 }')
4133         # write 800M at maximum
4134         [[ $ost1_size -lt 2 ]] && ost1_size=2
4135         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
4136
4137         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
4138         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
4139         local dd_pid=$!
4140
4141         # change max_pages_per_rpc while writing the file
4142         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
4143         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
4144         # loop until dd process exits
4145         while ps ax -opid | grep -wq $dd_pid; do
4146                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
4147                 sleep $((RANDOM % 5 + 1))
4148         done
4149         # restore original max_pages_per_rpc
4150         $LCTL set_param $osc1_mppc=$orig_mppc
4151         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
4152 }
4153 run_test 49 "Change max_pages_per_rpc won't break osc extent"
4154
4155 test_50() {
4156         # bug 1485
4157         test_mkdir $DIR/$tdir
4158         cd $DIR/$tdir
4159         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
4160 }
4161 run_test 50 "special situations: /proc symlinks  ==============="
4162
4163 test_51a() {    # was test_51
4164         # bug 1516 - create an empty entry right after ".." then split dir
4165         test_mkdir -c1 $DIR/$tdir
4166         touch $DIR/$tdir/foo
4167         $MCREATE $DIR/$tdir/bar
4168         rm $DIR/$tdir/foo
4169         createmany -m $DIR/$tdir/longfile 201
4170         FNUM=202
4171         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
4172                 $MCREATE $DIR/$tdir/longfile$FNUM
4173                 FNUM=$(($FNUM + 1))
4174                 echo -n "+"
4175         done
4176         echo
4177         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
4178 }
4179 run_test 51a "special situations: split htree with empty entry =="
4180
4181 cleanup_print_lfs_df () {
4182         trap 0
4183         $LFS df
4184         $LFS df -i
4185 }
4186
4187 test_51b() {
4188         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4189         local dir=$DIR/$tdir
4190
4191         local nrdirs=$((65536 + 100))
4192
4193         # cleanup the directory
4194         rm -fr $dir
4195
4196         test_mkdir -c1 $dir
4197
4198         $LFS df
4199         $LFS df -i
4200         local mdtidx=$(printf "%04x" $($LFS getstripe -M $dir))
4201         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
4202         [[ $numfree -lt $nrdirs ]] &&
4203                 skip "not enough free inodes ($numfree) on MDT$mdtidx" &&
4204                 return
4205
4206         # need to check free space for the directories as well
4207         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
4208         numfree=$(( blkfree / $(fs_inode_ksize) ))
4209         [[ $numfree -lt $nrdirs ]] && skip "not enough blocks ($numfree)" &&
4210                 return
4211
4212         trap cleanup_print_lfs_df EXIT
4213
4214         # create files
4215         createmany -d $dir/d $nrdirs || {
4216                 unlinkmany $dir/d $nrdirs
4217                 error "failed to create $nrdirs subdirs in MDT$mdtidx:$dir"
4218         }
4219
4220         # really created :
4221         nrdirs=$(ls -U $dir | wc -l)
4222
4223         # unlink all but 100 subdirectories, then check it still works
4224         local left=100
4225         local delete=$((nrdirs - left))
4226
4227         $LFS df
4228         $LFS df -i
4229
4230         # for ldiskfs the nlink count should be 1, but this is OSD specific
4231         # and so this is listed for informational purposes only
4232         echo "nlink before: $(stat -c %h $dir), created before: $nrdirs"
4233         unlinkmany -d $dir/d $delete ||
4234                 error "unlink of first $delete subdirs failed"
4235
4236         echo "nlink between: $(stat -c %h $dir)"
4237         local found=$(ls -U $dir | wc -l)
4238         [ $found -ne $left ] &&
4239                 error "can't find subdirs: found only $found, expected $left"
4240
4241         unlinkmany -d $dir/d $delete $left ||
4242                 error "unlink of second $left subdirs failed"
4243         # regardless of whether the backing filesystem tracks nlink accurately
4244         # or not, the nlink count shouldn't be more than "." and ".." here
4245         local after=$(stat -c %h $dir)
4246         [[ $after -gt 2 ]] && error "nlink after: $after > 2" ||
4247                 echo "nlink after: $after"
4248
4249         cleanup_print_lfs_df
4250 }
4251 run_test 51b "exceed 64k subdirectory nlink limit on create, verify unlink"
4252
4253 test_51d() {
4254         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4255         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs" && return
4256         test_mkdir $DIR/$tdir
4257         createmany -o $DIR/$tdir/t- 1000
4258         $LFS getstripe $DIR/$tdir > $TMP/$tfile
4259         for N in $(seq 0 $((OSTCOUNT - 1))); do
4260                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4261                         END { printf("%0.0f", objs) }' $TMP/$tfile)
4262                 OBJS0[$N]=$(grep -A 1 idx $TMP/$tfile | awk -vobjs=0 \
4263                         '($1 == '$N') { objs += 1 } \
4264                         END { printf("%0.0f", objs) }')
4265                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4266         done
4267         unlinkmany $DIR/$tdir/t- 1000
4268
4269         NLAST=0
4270         for N in $(seq 1 $((OSTCOUNT - 1))); do
4271                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4272                         error "OST $N has less objects vs OST $NLAST" \
4273                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4274                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4275                         error "OST $N has less objects vs OST $NLAST" \
4276                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4277
4278                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4279                         error "OST $N has less #0 objects vs OST $NLAST" \
4280                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4281                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4282                         error "OST $N has less #0 objects vs OST $NLAST" \
4283                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4284                 NLAST=$N
4285         done
4286         rm -f $TMP/$tfile
4287 }
4288 run_test 51d "check object distribution"
4289
4290 test_51e() {
4291         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4292                 skip "ldiskfs only test"
4293                 return
4294         fi
4295
4296         test_mkdir -c1 $DIR/$tdir
4297         test_mkdir -c1 $DIR/$tdir/d0
4298
4299         touch $DIR/$tdir/d0/foo
4300         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4301                 error "file exceed 65000 nlink limit!"
4302         unlinkmany $DIR/$tdir/d0/f- 65001
4303         return 0
4304 }
4305 run_test 51e "check file nlink limit"
4306
4307 test_51f() {
4308         test_mkdir $DIR/$tdir
4309
4310         local max=100000
4311         local ulimit_old=$(ulimit -n)
4312         local spare=20 # number of spare fd's for scripts/libraries, etc.
4313         local mdt=$(lfs getstripe -M $DIR/$tdir)
4314         local numfree=$(lfs df -i $DIR/$tdir | awk '/MDT:'$mdt'/ { print $4 }')
4315
4316         echo "MDT$mdt numfree=$numfree, max=$max"
4317         [[ $numfree -gt $max ]] && numfree=$max || numfree=$((numfree * 7 / 8))
4318         if [ $((numfree + spare)) -gt $ulimit_old ]; then
4319                 while ! ulimit -n $((numfree + spare)); do
4320                         numfree=$((numfree * 3 / 4))
4321                 done
4322                 echo "changed ulimit from $ulimit_old to $((numfree + spare))"
4323         else
4324                 echo "left ulimit at $ulimit_old"
4325         fi
4326
4327         createmany -o -k -t 120 $DIR/$tdir/f $numfree || {
4328                 unlinkmany $DIR/$tdir/f $numfree
4329                 error "create+open $numfree files in $DIR/$tdir failed"
4330         }
4331         ulimit -n $ulimit_old
4332
4333         # if createmany exits at 120s there will be fewer than $numfree files
4334         unlinkmany $DIR/$tdir/f $numfree || true
4335 }
4336 run_test 51f "check many open files limit"
4337
4338 test_52a() {
4339         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4340         test_mkdir $DIR/$tdir
4341         touch $DIR/$tdir/foo
4342         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4343         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4344         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4345         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4346         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4347                                         error "link worked"
4348         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4349         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4350         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4351                                                      error "lsattr"
4352         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4353         cp -r $DIR/$tdir $TMP/
4354         rm -fr $DIR/$tdir $TMP/$tdir || error "cleanup rm failed"
4355 }
4356 run_test 52a "append-only flag test (should return errors)"
4357
4358 test_52b() {
4359         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4360         test_mkdir $DIR/$tdir
4361         touch $DIR/$tdir/foo
4362         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4363         cat test > $DIR/$tdir/foo && error "cat test worked"
4364         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4365         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4366         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4367                                         error "link worked"
4368         echo foo >> $DIR/$tdir/foo && error "echo worked"
4369         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4370         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4371         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4372         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4373                                                         error "lsattr"
4374         chattr -i $DIR/$tdir/foo || error "chattr failed"
4375
4376         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4377 }
4378 run_test 52b "immutable flag test (should return errors) ======="
4379
4380 test_53() {
4381         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4382         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4383         remote_ost_nodsh && skip "remote OST with nodsh" && return
4384
4385         local param
4386         local param_seq
4387         local ostname
4388         local mds_last
4389         local mds_last_seq
4390         local ost_last
4391         local ost_last_seq
4392         local ost_last_id
4393         local ostnum
4394         local node
4395         local found=false
4396         local support_last_seq=true
4397
4398         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
4399                 support_last_seq=false
4400
4401         # only test MDT0000
4402         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4403         local value
4404         for value in $(do_facet $SINGLEMDS \
4405                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4406                 param=$(echo ${value[0]} | cut -d "=" -f1)
4407                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4408
4409                 if $support_last_seq; then
4410                         param_seq=$(echo $param |
4411                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4412                         mds_last_seq=$(do_facet $SINGLEMDS \
4413                                        $LCTL get_param -n $param_seq)
4414                 fi
4415                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4416
4417                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4418                 node=$(facet_active_host ost$((ostnum+1)))
4419                 param="obdfilter.$ostname.last_id"
4420                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4421                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4422                         ost_last_id=$ost_last
4423
4424                         if $support_last_seq; then
4425                                 ost_last_id=$(echo $ost_last |
4426                                               awk -F':' '{print $2}' |
4427                                               sed -e "s/^0x//g")
4428                                 ost_last_seq=$(echo $ost_last |
4429                                                awk -F':' '{print $1}')
4430                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4431                         fi
4432
4433                         if [[ $ost_last_id != $mds_last ]]; then
4434                                 error "$ost_last_id != $mds_last"
4435                         else
4436                                 found=true
4437                                 break
4438                         fi
4439                 done
4440         done
4441         $found || error "can not match last_seq/last_id for $mdtosc"
4442         return 0
4443 }
4444 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4445
4446 test_54a() {
4447         perl -MSocket -e ';' || { skip "no Socket perl module installed" && return; }
4448
4449         $SOCKETSERVER $DIR/socket ||
4450                 error "$SOCKETSERVER $DIR/socket failed: $?"
4451         $SOCKETCLIENT $DIR/socket ||
4452                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4453         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4454 }
4455 run_test 54a "unix domain socket test =========================="
4456
4457 test_54b() {
4458         f="$DIR/f54b"
4459         mknod $f c 1 3
4460         chmod 0666 $f
4461         dd if=/dev/zero of=$f bs=$(page_size) count=1
4462 }
4463 run_test 54b "char device works in lustre ======================"
4464
4465 find_loop_dev() {
4466         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4467         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4468         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4469
4470         for i in $(seq 3 7); do
4471                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4472                 LOOPDEV=$LOOPBASE$i
4473                 LOOPNUM=$i
4474                 break
4475         done
4476 }
4477
4478 cleanup_54c() {
4479         local rc=0
4480         loopdev="$DIR/loop54c"
4481
4482         trap 0
4483         $UMOUNT $DIR/$tdir || rc=$?
4484         losetup -d $loopdev || true
4485         losetup -d $LOOPDEV || true
4486         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4487         return $rc
4488 }
4489
4490 test_54c() {
4491         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4492         loopdev="$DIR/loop54c"
4493
4494         find_loop_dev
4495         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
4496         trap cleanup_54c EXIT
4497         mknod $loopdev b 7 $LOOPNUM
4498         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4499         dd if=/dev/zero of=$DIR/$tfile bs=$(get_page_size client) seek=1024 count=1 > /dev/null
4500         losetup $loopdev $DIR/$tfile ||
4501                 error "can't set up $loopdev for $DIR/$tfile"
4502         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4503         test_mkdir $DIR/$tdir
4504         mount -t ext2 $loopdev $DIR/$tdir ||
4505                 error "error mounting $loopdev on $DIR/$tdir"
4506         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$(get_page_size client) count=30 ||
4507                 error "dd write"
4508         df $DIR/$tdir
4509         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$(get_page_size client) count=30 ||
4510                 error "dd read"
4511         cleanup_54c
4512 }
4513 run_test 54c "block device works in lustre ====================="
4514
4515 test_54d() {
4516         f="$DIR/f54d"
4517         string="aaaaaa"
4518         mknod $f p
4519         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4520 }
4521 run_test 54d "fifo device works in lustre ======================"
4522
4523 test_54e() {
4524         f="$DIR/f54e"
4525         string="aaaaaa"
4526         cp -aL /dev/console $f
4527         echo $string > $f || error "echo $string to $f failed"
4528 }
4529 run_test 54e "console/tty device works in lustre ======================"
4530
4531 test_56a() {
4532         local numfiles=3
4533         local dir=$DIR/$tdir
4534
4535         rm -rf $dir
4536         test_mkdir -p $dir/dir
4537         for i in $(seq $numfiles); do
4538                 touch $dir/file$i
4539                 touch $dir/dir/file$i
4540         done
4541
4542         local numcomp=$($LFS getstripe --component-count $dir)
4543
4544         [[ $numcomp == 0 ]] && numcomp=1
4545
4546         # test lfs getstripe with --recursive
4547         local filenum=$($LFS getstripe -r $dir | egrep -c "obdidx|l_ost_idx")
4548
4549         [[ $filenum -eq $((numfiles * 2)) ]] ||
4550                 error "$LFS getstripe -r: found $filenum != $((numfiles * 2))"
4551         filenum=$($LFS getstripe $dir | egrep -c "obdidx|l_ost_idx")
4552         [[ $filenum -eq $numfiles ]] ||
4553                 error "$LFS getstripe $dir: found $filenum, not $numfiles"
4554         echo "$LFS getstripe showed obdidx or l_ost_idx"
4555
4556         # test lfs getstripe with file instead of dir
4557         filenum=$($LFS getstripe $dir/file1 | egrep -c "obdidx|l_ost_idx")
4558         [[ $filenum -eq 1 ]] ||
4559                 error "$LFS getstripe $dir/file1: found $filenum, not 1"
4560         echo "$LFS getstripe file1 passed"
4561
4562         #test lfs getstripe with --verbose
4563         filenum=$($LFS getstripe --verbose $dir | grep -c lmm_magic)
4564         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
4565                 error "$LFS getstripe --verbose $dir: "\
4566                       "got $filenum want $((numfiles * numcomp)) lmm_magic"
4567         [[ $($LFS getstripe $dir | grep -c lmm_magic) -eq 0 ]] ||
4568                 error "$LFS getstripe $dir: showed lmm_magic"
4569
4570         #test lfs getstripe with -v prints lmm_fid
4571         filenum=$($LFS getstripe -v $dir | grep -c lmm_fid)
4572         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
4573                 error "$LFS getstripe -v $dir: "\
4574                       "got $filenum want $((numfiles * numcomp)) lmm_fid"
4575         [[ $($LFS getstripe $dir | grep -c lmm_fid) -eq 0 ]] ||
4576                 error "$LFS getstripe $dir: showed lmm_fid by default"
4577         echo "$LFS getstripe --verbose passed"
4578
4579         #check for FID information
4580         local fid1=$($LFS getstripe --fid $dir/file1)
4581         local fid2=$($LFS getstripe --verbose $dir/file1 |
4582                      awk '/lmm_fid: / { print $2; exit; }')
4583         local fid3=$($LFS path2fid $dir/file1)
4584
4585         [ "$fid1" != "$fid2" ] &&
4586                 error "getstripe --fid '$fid1' != getstripe --verbose '$fid2'"
4587         [ "$fid1" != "$fid3" ] &&
4588                 error "getstripe --fid '$fid1' != lfs path2fid '$fid3'"
4589         echo "$LFS getstripe --fid passed"
4590
4591         #test lfs getstripe with --obd
4592         $LFS getstripe --obd wrong_uuid $dir 2>&1 | grep -q "unknown obduuid" ||
4593                 error "$LFS getstripe --obd wrong_uuid: should return error"
4594
4595         [[ $OSTCOUNT -lt 2 ]] &&
4596                 skip_env "skip '$LFS getstripe --obd' tests: $OSTCOUNT < 2" &&
4597                 return
4598
4599         local ostidx=1
4600         local obduuid=$(ostuuid_from_index $ostidx)
4601         local found=$($LFS getstripe -r --obd $obduuid $dir |
4602                       egrep -c "obdidx|l_ost_idx")
4603
4604         filenum=$($LFS getstripe -ir $dir | grep "^$ostidx\$" | wc -l)
4605         [[ $found -eq $filenum ]] ||
4606                 error "$LFS getstripe --obd: found $found expect $filenum"
4607         [[ $($LFS getstripe -r -v --obd $obduuid $dir |
4608                 sed '/^[         ]*'${ostidx}'[  ]/d' |
4609                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4610                 error "$LFS getstripe --obd: should not show file on other obd"
4611         echo "$LFS getstripe --obd passed"
4612 }
4613 run_test 56a "check $LFS getstripe"
4614
4615 test_56b() {
4616         local dir=$DIR/$tdir
4617         local numdirs=3
4618
4619         test_mkdir $dir
4620         for i in $(seq $numdirs); do
4621                 test_mkdir $dir/dir$i
4622         done
4623
4624         # test lfs getdirstripe default mode is non-recursion, which is
4625         # different from lfs getstripe
4626         local dircnt=$($LFS getdirstripe $dir | grep -c lmv_stripe_count)
4627
4628         [[ $dircnt -eq 1 ]] ||
4629                 error "$LFS getdirstripe: found $dircnt, not 1"
4630         dircnt=$($LFS getdirstripe --recursive $dir |
4631                 grep -c lmv_stripe_count)
4632         [[ $dircnt -eq $((numdirs + 1)) ]] ||
4633                 error "$LFS getdirstripe -r: $dircnt, != $((numdirs + 1))"
4634 }
4635 run_test 56b "check $LFS getdirstripe"
4636
4637 test_56c() {
4638         local ost_idx=0
4639         local ost_name=$(ostname_from_index $ost_idx)
4640         local old_status=$(ost_dev_status $ost_idx)
4641
4642         [[ -z "$old_status" ]] ||
4643                 { skip_env "OST $ost_name is in $old_status status"; return 0; }
4644
4645         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=1
4646         sleep_maxage
4647
4648         local new_status=$(ost_dev_status $ost_idx)
4649
4650         [[ "$new_status" = "D" ]] ||
4651                 error "OST $ost_name is in status of '$new_status', not 'D'"
4652
4653         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=0
4654         sleep_maxage
4655
4656         new_status=$(ost_dev_status $ost_idx)
4657         [[ -z "$new_status" ]] ||
4658                 error "OST $ost_name is in status of '$new_status', not ''"
4659 }
4660 run_test 56c "check 'lfs df' showing device status"
4661
4662 NUMFILES=3
4663 NUMDIRS=3
4664 setup_56() {
4665         local local_tdir="$1"
4666         local local_numfiles="$2"
4667         local local_numdirs="$3"
4668         local dir_params="$4"
4669         local dir_stripe_params="$5"
4670
4671         if [ ! -d "$local_tdir" ] ; then
4672                 test_mkdir -p $dir_stripe_params $local_tdir
4673                 [ "$dir_params" ] && $LFS setstripe $dir_params $local_tdir
4674                 for i in $(seq $local_numfiles) ; do
4675                         touch $local_tdir/file$i
4676                 done
4677                 for i in $(seq $local_numdirs) ; do
4678                         test_mkdir $dir_stripe_params $local_tdir/dir$i
4679                         for j in $(seq $local_numfiles) ; do
4680                                 touch $local_tdir/dir$i/file$j
4681                         done
4682                 done
4683         fi
4684 }
4685
4686 setup_56_special() {
4687         local local_tdir=$1
4688         local local_numfiles=$2
4689         local local_numdirs=$3
4690
4691         setup_56 $local_tdir $local_numfiles $local_numdirs
4692
4693         if [ ! -e "$local_tdir/loop${local_numfiles}b" ] ; then
4694                 for i in $(seq $local_numfiles) ; do
4695                         mknod $local_tdir/loop${i}b b 7 $i
4696                         mknod $local_tdir/null${i}c c 1 3
4697                         ln -s $local_tdir/file1 $local_tdir/link${i}
4698                 done
4699                 for i in $(seq $local_numdirs) ; do
4700                         mknod $local_tdir/dir$i/loop${i}b b 7 $i
4701                         mknod $local_tdir/dir$i/null${i}c c 1 3
4702                         ln -s $local_tdir/dir$i/file1 $local_tdir/dir$i/link${i}
4703                 done
4704         fi
4705 }
4706
4707 test_56g() {
4708         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4709         local expected=$(($NUMDIRS + 2))
4710
4711         setup_56 $dir $NUMFILES $NUMDIRS
4712
4713         # test lfs find with -name
4714         for i in $(seq $NUMFILES) ; do
4715                 local nums=$($LFS find -name "*$i" $dir | wc -l)
4716
4717                 [ $nums -eq $expected ] ||
4718                         error "lfs find -name '*$i' $dir wrong: "\
4719                               "found $nums, expected $expected"
4720         done
4721 }
4722 run_test 56g "check lfs find -name"
4723
4724 test_56h() {
4725         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4726         local expected=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4727
4728         setup_56 $dir $NUMFILES $NUMDIRS
4729
4730         # test lfs find with ! -name
4731         for i in $(seq $NUMFILES) ; do
4732                 local nums=$($LFS find ! -name "*$i" $dir | wc -l)
4733
4734                 [ $nums -eq $expected ] ||
4735                         error "lfs find ! -name '*$i' $dir wrong: "\
4736                               "found $nums, expected $expected"
4737         done
4738 }
4739 run_test 56h "check lfs find ! -name"
4740
4741 test_56i() {
4742         local dir=$DIR/$tdir
4743
4744         test_mkdir $dir
4745
4746         local cmd="$LFS find -ost $(ostuuid_from_index 0 $dir) $dir"
4747         local out=$($cmd)
4748
4749         [ -z "$out" ] || error "'$cmd' returned directory '$out'"
4750 }
4751 run_test 56i "check 'lfs find -ost UUID' skips directories"
4752
4753 test_56j() {
4754         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4755
4756         setup_56_special $dir $NUMFILES $NUMDIRS
4757
4758         local expected=$((NUMDIRS + 1))
4759         local cmd="$LFS find -type d $dir"
4760         local nums=$($cmd | wc -l)
4761
4762         [ $nums -eq $expected ] ||
4763                 error "'$cmd' wrong: found $nums, expected $expected"
4764 }
4765 run_test 56j "check lfs find -type d"
4766
4767 test_56k() {
4768         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4769
4770         setup_56_special $dir $NUMFILES $NUMDIRS
4771
4772         local expected=$(((NUMDIRS + 1) * NUMFILES))
4773         local cmd="$LFS find -type f $dir"
4774         local nums=$($cmd | wc -l)
4775
4776         [ $nums -eq $expected ] ||
4777                 error "'$cmd' wrong: found $nums, expected $expected"
4778 }
4779 run_test 56k "check lfs find -type f"
4780
4781 test_56l() {
4782         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4783
4784         setup_56_special $dir $NUMFILES $NUMDIRS
4785
4786         local expected=$((NUMDIRS + NUMFILES))
4787         local cmd="$LFS find -type b $dir"
4788         local nums=$($cmd | wc -l)
4789
4790         [ $nums -eq $expected ] ||
4791                 error "'$cmd' wrong: found $nums, expected $expected"
4792 }
4793 run_test 56l "check lfs find -type b"
4794
4795 test_56m() {
4796         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4797
4798         setup_56_special $dir $NUMFILES $NUMDIRS
4799
4800         local expected=$((NUMDIRS + NUMFILES))
4801         local cmd="$LFS find -type c $dir"
4802         local nums=$($cmd | wc -l)
4803         [ $nums -eq $expected ] ||
4804                 error "'$cmd' wrong: found $nums, expected $expected"
4805 }
4806 run_test 56m "check lfs find -type c"
4807
4808 test_56n() {
4809         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4810         setup_56_special $dir $NUMFILES $NUMDIRS
4811
4812         local expected=$((NUMDIRS + NUMFILES))
4813         local cmd="$LFS find -type l $dir"
4814         local nums=$($cmd | wc -l)
4815
4816         [ $nums -eq $expected ] ||
4817                 error "'$cmd' wrong: found $nums, expected $expected"
4818 }
4819 run_test 56n "check lfs find -type l"
4820
4821 test_56o() {
4822         local dir=$DIR/$tdir
4823
4824         setup_56 $dir $NUMFILES $NUMDIRS
4825         utime $dir/file1 > /dev/null || error "utime (1)"
4826         utime $dir/file2 > /dev/null || error "utime (2)"
4827         utime $dir/dir1 > /dev/null || error "utime (3)"
4828         utime $dir/dir2 > /dev/null || error "utime (4)"
4829         utime $dir/dir1/file1 > /dev/null || error "utime (5)"
4830         dd if=/dev/zero count=1 >> $dir/dir1/file1 && sync
4831
4832         local expected=4
4833         local nums=$($LFS find -mtime +0 $dir | wc -l)
4834
4835         [ $nums -eq $expected ] ||
4836                 error "lfs find -mtime +0 $dir: found $nums expect $expected"
4837
4838         expected=12
4839         cmd="$LFS find -mtime 0 $dir"
4840         nums=$($cmd | wc -l)
4841         [ $nums -eq $expected ] ||
4842                 error "'$cmd' wrong: found $nums, expected $expected"
4843 }
4844 run_test 56o "check lfs find -mtime for old files"
4845
4846 test_56p() {
4847         [ $RUNAS_ID -eq $UID ] &&
4848                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4849
4850         local dir=$DIR/$tdir
4851
4852         setup_56 $dir $NUMFILES $NUMDIRS
4853         chown $RUNAS_ID $dir/file* || error "chown $DIR/${tdir}g/file$i failed"
4854
4855         local expected=$NUMFILES
4856         local cmd="$LFS find -uid $RUNAS_ID $dir"
4857         local nums=$($cmd | wc -l)
4858
4859         [ $nums -eq $expected ] ||
4860                 error "'$cmd' wrong: found $nums, expected $expected"
4861
4862         expected=$(((NUMFILES + 1) * NUMDIRS + 1))
4863         cmd="$LFS find ! -uid $RUNAS_ID $dir"
4864         nums=$($cmd | wc -l)
4865         [ $nums -eq $expected ] ||
4866                 error "'$cmd' wrong: found $nums, expected $expected"
4867 }
4868 run_test 56p "check lfs find -uid and ! -uid"
4869
4870 test_56q() {
4871         [ $RUNAS_ID -eq $UID ] &&
4872                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4873
4874         local dir=$DIR/$tdir
4875
4876         setup_56 $dir $NUMFILES $NUMDIRS
4877         chgrp $RUNAS_GID $dir/file* || error "chown $dir/file$i failed"
4878
4879         local expected=$NUMFILES
4880         local cmd="$LFS find -gid $RUNAS_GID $dir"
4881         local nums=$($cmd | wc -l)
4882
4883         [ $nums -eq $expected ] ||
4884                 error "'$cmd' wrong: found $nums, expected $expected"
4885
4886         expected=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4887         cmd="$LFS find ! -gid $RUNAS_GID $dir"
4888         nums=$($cmd | wc -l)
4889         [ $nums -eq $expected ] ||
4890                 error "'$cmd' wrong: found $nums, expected $expected"
4891 }
4892 run_test 56q "check lfs find -gid and ! -gid"
4893
4894 test_56r() {
4895         local dir=$DIR/$tdir
4896
4897         setup_56 $dir $NUMFILES $NUMDIRS
4898
4899         local expected=12
4900         local cmd="$LFS find -size 0 -type f $dir"
4901         local nums=$($cmd | wc -l)
4902
4903         [ $nums -eq $expected ] ||
4904                 error "'$cmd' wrong: found $nums, expected $expected"
4905         expected=0
4906         cmd="$LFS find ! -size 0 -type f $dir"
4907         nums=$($cmd | wc -l)
4908         [ $nums -eq $expected ] ||
4909                 error "'$cmd' wrong: found $nums, expected $expected"
4910         echo "test" > $dir/$tfile
4911         echo "test2" > $dir/$tfile.2 && sync
4912         expected=1
4913         cmd="$LFS find -size 5 -type f $dir"
4914         nums=$($cmd | wc -l)
4915         [ $nums -eq $expected ] ||
4916                 error "'$cmd' wrong: found $nums, expected $expected"
4917         expected=1
4918         cmd="$LFS find -size +5 -type f $dir"
4919         nums=$($cmd | wc -l)
4920         [ $nums -eq $expected ] ||
4921                 error "'$cmd' wrong: found $nums, expected $expected"
4922         expected=2
4923         cmd="$LFS find -size +0 -type f $dir"
4924         nums=$($cmd | wc -l)
4925         [ $nums -eq $expected ] ||
4926                 error "'$cmd' wrong: found $nums, expected $expected"
4927         expected=2
4928         cmd="$LFS find ! -size -5 -type f $dir"
4929         nums=$($cmd | wc -l)
4930         [ $nums -eq $expected ] ||
4931                 error "'$cmd' wrong: found $nums, expected $expected"
4932         expected=12
4933         cmd="$LFS find -size -5 -type f $dir"
4934         nums=$($cmd | wc -l)
4935         [ $nums -eq $expected ] ||
4936                 error "'$cmd' wrong: found $nums, expected $expected"
4937 }
4938 run_test 56r "check lfs find -size works"
4939
4940 test_56s() { # LU-611 #LU-9369
4941         [[ $OSTCOUNT -lt 2 ]] && skip "need at least 2 OSTs" && return 0
4942
4943         local dir=$DIR/$tdir
4944         local onestripe=$(((NUMDIRS + 1) * NUMFILES))
4945
4946         setup_56 $dir $NUMFILES $NUMDIRS "-c 1"
4947         for i in $(seq $NUMDIRS); do
4948                 $LFS setstripe -c $((OSTCOUNT + 1)) $dir/dir$i/$tfile
4949         done
4950
4951         local expected=$NUMDIRS
4952         local cmd="$LFS find -c $OSTCOUNT $dir"
4953         local nums=$($cmd | wc -l)
4954
4955         [ $nums -eq $expected ] || {
4956                 $LFS getstripe -R $dir
4957                 error "'$cmd' wrong: found $nums, expected $expected"
4958         }
4959
4960         expected=$((NUMDIRS + onestripe))
4961         cmd="$LFS find -stripe-count +0 -type f $dir"
4962         nums=$($cmd | wc -l)
4963         [ $nums -eq $expected ] || {
4964                 $LFS getstripe -R $dir
4965                 error "'$cmd' wrong: found $nums, expected $expected"
4966         }
4967
4968         expected=$onestripe
4969         cmd="$LFS find -stripe-count 1 -type f $dir"
4970         nums=$($cmd | wc -l)
4971         [ $nums -eq $expected ] || {
4972                 $LFS getstripe -R $dir
4973                 error "'$cmd' wrong: found $nums, expected $expected"
4974         }
4975
4976         cmd="$LFS find -stripe-count -2 -type f $dir"
4977         nums=$($cmd | wc -l)
4978         [ $nums -eq $expected ] || {
4979                 $LFS getstripe -R $dir
4980                 error "'$cmd' wrong: found $nums, expected $expected"
4981         }
4982
4983         expected=0
4984         cmd="$LFS find -stripe-count $((OSTCOUNT + 1)) -type f $dir"
4985         nums=$($cmd | wc -l)
4986         [ $nums -eq $expected ] || {
4987                 $LFS getstripe -R $dir
4988                 error "'$cmd' wrong: found $nums, expected $expected"
4989         }
4990 }
4991 run_test 56s "check lfs find -stripe-count works"
4992
4993 test_56t() { # LU-611 #LU-9369
4994         local dir=$DIR/$tdir
4995
4996         setup_56 $dir 0 $NUMDIRS
4997         for i in $(seq $NUMDIRS); do
4998                 $LFS setstripe -S 4M $dir/dir$i/$tfile
4999         done
5000
5001         local expected=$NUMDIRS
5002         local cmd="$LFS find -S 4M $dir"
5003         local nums=$($cmd | wc -l)
5004
5005         [ $nums -eq $expected ] || {
5006                 $LFS getstripe -R $dir
5007                 error "'$cmd' wrong: found $nums, expected $expected"
5008         }
5009         rm -rf $dir
5010
5011         setup_56 $dir $NUMFILES $NUMDIRS "--stripe-size 512k"
5012
5013         $LFS setstripe -S 256k $dir/$tfile.{0,1,2,3}
5014
5015         expected=$(((NUMDIRS + 1) * NUMFILES))
5016         cmd="$LFS find -stripe-size 512k -type f $dir"
5017         nums=$($cmd | wc -l)
5018         [ $nums -eq $expected ] ||
5019                 error "'$cmd' wrong: found $nums, expected $expected"
5020
5021         cmd="$LFS find -stripe-size +320k -type f $dir"
5022         nums=$($cmd | wc -l)
5023         [ $nums -eq $expected ] ||
5024                 error "'$cmd' wrong: found $nums, expected $expected"
5025
5026         expected=$(((NUMDIRS + 1) * NUMFILES + 4))
5027         cmd="$LFS find -stripe-size +200k -type f $dir"
5028         nums=$($cmd | wc -l)
5029         [ $nums -eq $expected ] ||
5030                 error "'$cmd' wrong: found $nums, expected $expected"
5031
5032         cmd="$LFS find -stripe-size -640k -type f $dir"
5033         nums=$($cmd | wc -l)
5034         [ $nums -eq $expected ] ||
5035                 error "'$cmd' wrong: found $nums, expected $expected"
5036
5037         expected=4
5038         cmd="$LFS find -stripe-size 256k -type f $dir"
5039         nums=$($cmd | wc -l)
5040         [ $nums -eq $expected ] ||
5041                 error "'$cmd' wrong: found $nums, expected $expected"
5042
5043         cmd="$LFS find -stripe-size -320k -type f $dir"
5044         nums=$($cmd | wc -l)
5045         [ $nums -eq $expected ] ||
5046                 error "'$cmd' wrong: found $nums, expected $expected"
5047
5048         expected=0
5049         cmd="$LFS find -stripe-size 1024k -type f $dir"
5050         nums=$($cmd | wc -l)
5051         [ $nums -eq $expected ] ||
5052                 error "'$cmd' wrong: found $nums, expected $expected"
5053 }
5054 run_test 56t "check lfs find -stripe-size works"
5055
5056 test_56u() { # LU-611
5057         local dir=$DIR/$tdir
5058
5059         setup_56 $dir $NUMFILES $NUMDIRS "-i 0 -c 1"
5060
5061         if [[ $OSTCOUNT -gt 1 ]]; then
5062                 $LFS setstripe -i 1 -c 1 $dir/$tfile.{0,1,2,3}
5063                 onestripe=4
5064         else
5065                 onestripe=0
5066         fi
5067
5068         local expected=$(((NUMDIRS + 1) * NUMFILES))
5069         local cmd="$LFS find -stripe-index 0 -type f $dir"
5070         local nums=$($cmd | wc -l)
5071
5072         [ $nums -eq $expected ] ||
5073                 error "'$cmd' wrong: found $nums, expected $expected"
5074
5075         expected=$onestripe
5076         cmd="$LFS find -stripe-index 1 -type f $dir"
5077         nums=$($cmd | wc -l)
5078         [ $nums -eq $expected ] ||
5079                 error "'$cmd' wrong: found $nums, expected $expected"
5080
5081         cmd="$LFS find ! -stripe-index 0 -type f $dir"
5082         nums=$($cmd | wc -l)
5083         [ $nums -eq $expected ] ||
5084                 error "'$cmd' wrong: found $nums, expected $expected"
5085
5086         expected=0
5087         # This should produce an error and not return any files
5088         cmd="$LFS find -stripe-index $OSTCOUNT -type f $dir"
5089         nums=$($cmd 2>/dev/null | wc -l)
5090         [ $nums -eq $expected ] ||
5091                 error "'$cmd' wrong: found $nums, expected $expected"
5092
5093         if [[ $OSTCOUNT -gt 1 ]]; then
5094                 expected=$(((NUMDIRS + 1) * NUMFILES + onestripe))
5095                 cmd="$LFS find -stripe-index 0,1 -type f $dir"
5096                 nums=$($cmd | wc -l)
5097                 [ $nums -eq $expected ] ||
5098                         error "'$cmd' wrong: found $nums, expected $expected"
5099         fi
5100 }
5101 run_test 56u "check lfs find -stripe-index works"
5102
5103 test_56v() {
5104         local MDT_IDX=0
5105         local dir=$DIR/$tdir
5106
5107         setup_56 $dir $NUMFILES $NUMDIRS
5108
5109         UUID=$(mdtuuid_from_index $MDT_IDX $dir)
5110         [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT $MDT_IDX"
5111
5112         for file in $($LFS find -mdt $UUID $dir); do
5113                 file_mdt_idx=$($LFS getstripe -M $file)
5114                 [ $file_mdt_idx -eq $MDT_IDX ] ||
5115                         error "lfind -mdt $UUID != getstripe -M $file_mdt_idx"
5116         done
5117 }
5118 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
5119
5120 test_56w() {
5121         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
5122         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5123         local dir=$DIR/$tdir
5124
5125         setup_56 $dir $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
5126
5127         local stripe_size=$($LFS getstripe -S -d $dir) ||
5128                 error "$LFS getstripe -S -d $dir failed"
5129         stripe_size=${stripe_size%% *}
5130
5131         local file_size=$((stripe_size * OSTCOUNT))
5132         local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
5133         local required_space=$((file_num * file_size))
5134         local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
5135                            head -n1)
5136         [[ $free_space -le $((required_space / 1024)) ]] &&
5137                 skip_env "need $required_space, have $free_space kbytes" &&
5138                 return
5139
5140         local dd_bs=65536
5141         local dd_count=$((file_size / dd_bs))
5142
5143         # write data into the files
5144         local i
5145         local j
5146         local file
5147
5148         for i in $(seq $NUMFILES); do
5149                 file=$dir/file$i
5150                 yes | dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5151                         error "write data into $file failed"
5152         done
5153         for i in $(seq $NUMDIRS); do
5154                 for j in $(seq $NUMFILES); do
5155                         file=$dir/dir$i/file$j
5156                         yes|dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5157                                 error "write data into $file failed"
5158                 done
5159         done
5160
5161         # $LFS_MIGRATE will fail if hard link migration is unsupported
5162         if [[ $(lustre_version_code mds1) -gt $(version_code 2.5.55) ]]; then
5163                 createmany -l$dir/dir1/file1 $dir/dir1/link 200 ||
5164                         error "creating links to $dir/dir1/file1 failed"
5165         fi
5166
5167         local expected=-1
5168
5169         [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
5170
5171         # lfs_migrate file
5172         local cmd="$LFS_MIGRATE -y -c $expected $dir/file1"
5173
5174         echo "$cmd"
5175         eval $cmd || error "$cmd failed"
5176
5177         check_stripe_count $dir/file1 $expected
5178
5179         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.90) ];
5180         then
5181                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
5182                 # OST 1 if it is on OST 0. This file is small enough to
5183                 # be on only one stripe.
5184                 file=$dir/migr_1_ost
5185                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
5186                         error "write data into $file failed"
5187                 local obdidx=$($LFS getstripe -i $file)
5188                 local oldmd5=$(md5sum $file)
5189                 local newobdidx=0
5190
5191                 [[ $obdidx -eq 0 ]] && newobdidx=1
5192                 cmd="$LFS migrate -i $newobdidx $file"
5193                 echo $cmd
5194                 eval $cmd || error "$cmd failed"
5195
5196                 local realobdix=$($LFS getstripe -i $file)
5197                 local newmd5=$(md5sum $file)
5198
5199                 [[ $newobdidx -ne $realobdix ]] &&
5200                         error "new OST is different (was=$obdidx, "\
5201                               "wanted=$newobdidx, got=$realobdix)"
5202                 [[ "$oldmd5" != "$newmd5" ]] &&
5203                         error "md5sum differ: $oldmd5, $newmd5"
5204         fi
5205
5206         # lfs_migrate dir
5207         cmd="$LFS_MIGRATE -y -c $expected $dir/dir1"
5208         echo "$cmd"
5209         eval $cmd || error "$cmd failed"
5210
5211         for j in $(seq $NUMFILES); do
5212                 check_stripe_count $dir/dir1/file$j $expected
5213         done
5214
5215         # lfs_migrate works with lfs find
5216         cmd="$LFS find -stripe_count $OSTCOUNT -type f $dir |
5217              $LFS_MIGRATE -y -c $expected"
5218         echo "$cmd"
5219         eval $cmd || error "$cmd failed"
5220
5221         for i in $(seq 2 $NUMFILES); do
5222                 check_stripe_count $dir/file$i $expected
5223         done
5224         for i in $(seq 2 $NUMDIRS); do
5225                 for j in $(seq $NUMFILES); do
5226                 check_stripe_count $dir/dir$i/file$j $expected
5227                 done
5228         done
5229 }
5230 run_test 56w "check lfs_migrate -c stripe_count works"
5231
5232 test_56wb() {
5233         local file1=$DIR/$tdir/file1
5234         local create_pool=false
5235         local initial_pool=$($LFS getstripe -p $DIR)
5236         local pool_list=()
5237         local pool=""
5238
5239         echo -n "Creating test dir..."
5240         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
5241         echo "done."
5242
5243         echo -n "Creating test file..."
5244         touch $file1 || error "cannot create file"
5245         echo "done."
5246
5247         echo -n "Detecting existing pools..."
5248         pool_list=($($LFS pool_list $FSNAME | grep "$FSNAME\." | cut -d. -f2))
5249
5250         if [ ${#pool_list[@]} -gt 0 ]; then
5251                 echo "${pool_list[@]}"
5252                 for thispool in "${pool_list[@]}"; do
5253                         if [[ -z "$initial_pool" ||
5254                               "$initial_pool" != "$thispool" ]]; then
5255                                 pool="$thispool"
5256                                 echo "Using existing pool '$pool'"
5257                                 break
5258                         fi
5259                 done
5260         else
5261                 echo "none detected."
5262         fi
5263         if [ -z "$pool" ]; then
5264                 pool=${POOL:-testpool}
5265                 [ "$initial_pool" = "$pool" ] && pool="testpool2"
5266                 echo -n "Creating pool '$pool'..."
5267                 create_pool=true
5268                 pool_add $pool &> /dev/null ||
5269                         error "pool_add failed"
5270                 echo "done."
5271
5272                 echo -n "Adding target to pool..."
5273                 pool_add_targets $pool 0 0 1 &> /dev/null ||
5274                         error "pool_add_targets failed"
5275                 echo "done."
5276         fi
5277
5278         echo -n "Setting pool using -p option..."
5279         $LFS_MIGRATE -y -q --no-rsync -p $pool $file1 &> /dev/null ||
5280                 error "migrate failed rc = $?"
5281         echo "done."
5282
5283         echo -n "Verifying test file is in pool after migrating..."
5284         [ "$($LFS getstripe -p $file1)" = $pool ] ||
5285                 error "file was not migrated to pool $pool"
5286         echo "done."
5287
5288         echo -n "Removing test file from pool '$pool'..."
5289         $LFS migrate $file1 &> /dev/null ||
5290                 error "cannot remove from pool"
5291         [ "$($LFS getstripe -p $file1)" ] &&
5292                 error "pool still set"
5293         echo "done."
5294
5295         echo -n "Setting pool using --pool option..."
5296         $LFS_MIGRATE -y -q --no-rsync --pool $pool $file1 &> /dev/null ||
5297                 error "migrate failed rc = $?"
5298         echo "done."
5299
5300         # Clean up
5301         rm -f $file1
5302         if $create_pool; then
5303                 destroy_test_pools 2> /dev/null ||
5304                         error "destroy test pools failed"
5305         fi
5306 }
5307 run_test 56wb "check lfs_migrate pool support"
5308
5309 test_56wc() {
5310         local file1="$DIR/$tdir/file 1"
5311
5312         echo -n "Creating test dir..."
5313         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
5314         $LFS setstripe -S 1M -c 1 "$DIR/$tdir" &> /dev/null ||
5315                 error "cannot set stripe"
5316         echo "done"
5317
5318         echo -n "Setting initial stripe for test file..."
5319         $LFS setstripe -S 512K -c 1 "$file1" &> /dev/null ||
5320                 error "cannot set stripe"
5321         [ $($LFS getstripe -S "$file1") -eq 524288 ] ||
5322                 error "stripe size not set"
5323         echo "done."
5324
5325         # File currently set to -S 512K -c 1
5326
5327         # Ensure -c and -S options are rejected when -R is set
5328         echo -n "Verifying incompatible options are detected..."
5329         $LFS_MIGRATE -y -R -c 1 "$file1" &> /dev/null &&
5330                 error "incompatible -c and -R options not detected"
5331         $LFS_MIGRATE -y -R -S 1M "$file1" &> /dev/null &&
5332                 error "incompatible -S and -R options not detected"
5333         echo "done."
5334
5335         # Ensure unrecognized options are passed through to 'lfs migrate'
5336         echo -n "Verifying -S option is passed through to lfs migrate..."
5337         $LFS_MIGRATE -y -S 1M "$file1" &> /dev/null ||
5338                 error "migration failed"
5339         [ $($LFS getstripe -S "$file1") -eq 1048576 ] ||
5340                 error "file was not restriped"
5341         echo "done."
5342
5343         # File currently set to -S 1M -c 1
5344
5345         # Ensure long options are supported
5346         echo -n "Verifying long options supported..."
5347         $LFS_MIGRATE -y --non-block "$file1" &> /dev/null ||
5348                 error "long option without argument not supported"
5349         $LFS_MIGRATE -y --stripe-size 512K "$file1" &> /dev/null ||
5350                 error "long option with argument not supported"
5351         [ $($LFS getstripe -S "$file1") -eq 524288 ] ||
5352                 error "file not restriped with --stripe-size option"
5353         echo "done."
5354
5355         # File currently set to -S 512K -c 1
5356
5357         if [ "$OSTCOUNT" -gt 1 ]; then
5358                 echo -n "Verifying explicit stripe count can be set..."
5359                 $LFS_MIGRATE -y -c 2 "$file1" &> /dev/null ||
5360                         error "migrate failed"
5361                 [ $($LFS getstripe -c "$file1") -eq 2 ] ||
5362                         error "file not restriped to explicit count"
5363                 echo "done."
5364         fi
5365
5366         # File currently set to -S 512K -c 1 or -S 512K -c 2
5367
5368         # Ensure parent striping is used if -R is set, and no stripe
5369         # count or size is specified
5370         echo -n "Setting stripe for parent directory..."
5371         $LFS setstripe -S 1M -c 1 "$DIR/$tdir" &> /dev/null ||
5372                 error "cannot set stripe"
5373         echo "done."
5374
5375         echo -n "Verifying restripe option uses parent stripe settings..."
5376         $LFS_MIGRATE -y -R "$file1" &> /dev/null ||
5377                 error "migrate failed"
5378         [ $($LFS getstripe -S "$file1") -eq 1048576 ] ||
5379                 error "file not restriped to parent settings"
5380         [ $($LFS getstripe -c "$file1") -eq 1 ] ||
5381                 error "file not restriped to parent settings"
5382         echo "done."
5383
5384         # File currently set to -S 1M -c 1
5385
5386         # Ensure striping is preserved if -R is not set, and no stripe
5387         # count or size is specified
5388         echo -n "Verifying striping size preserved when not specified..."
5389         $LFS setstripe -S 2M -c 1 "$DIR/$tdir" &> /dev/null ||
5390                 error "cannot set stripe on parent directory"
5391         $LFS_MIGRATE -y "$file1" &> /dev/null ||
5392                 error "migrate failed"
5393         [ $($LFS getstripe -S "$file1") -eq 1048576 ] ||
5394                 error "file was restriped"
5395         echo "done."
5396
5397         # Ensure file name properly detected when final option has no argument
5398         echo -n "Verifying file name properly detected..."
5399         $LFS_MIGRATE -y "$file1" &> /dev/null ||
5400                 error "file name interpreted as option argument"
5401         echo "done."
5402
5403         # Clean up
5404         rm -f "$file1"
5405 }
5406 run_test 56wc "check unrecognized options for lfs_migrate are passed through"
5407
5408 test_56wd() {
5409         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
5410         local file1=$DIR/$tdir/file1
5411
5412         echo -n "Creating test dir..."
5413         test_mkdir $DIR/$tdir || error "cannot create dir"
5414         echo "done."
5415
5416         echo -n "Creating test file..."
5417         touch $file1
5418         echo "done."
5419
5420         # Ensure 'lfs migrate' will fail by using a non-existent option,
5421         # and make sure rsync is not called to recover
5422         echo -n "Make sure --no-rsync option works..."
5423         $LFS_MIGRATE -y --no-rsync --invalid-opt $file1 2>&1 |
5424                 grep -q 'refusing to fall back to rsync' ||
5425                 error "rsync was called with --no-rsync set"
5426         echo "done."
5427
5428         # Ensure rsync is called without trying 'lfs migrate' first
5429         echo -n "Make sure --rsync option works..."
5430         $LFS_MIGRATE -y --rsync --invalid-opt $file1 2>&1 |
5431                 grep -q 'falling back to rsync' &&
5432                 error "lfs migrate was called with --rsync set"
5433         echo "done."
5434
5435         echo -n "Make sure --rsync and --no-rsync options are exclusive..."
5436         $LFS_MIGRATE -y --rsync --no-rsync $file1 2>&1 |
5437                 grep -q 'at the same time' ||
5438                 error "--rsync and --no-rsync accepted concurrently"
5439         echo "done."
5440
5441         # Clean up
5442         rm -f $file1
5443 }
5444 run_test 56wd "check lfs_migrate --rsync and --no-rsync work"
5445
5446 test_56x() {
5447         check_swap_layouts_support && return 0
5448         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
5449
5450         local dir=$DIR/$tdir
5451         local ref1=/etc/passwd
5452         local file1=$dir/file1
5453
5454         test_mkdir $dir || error "creating dir $dir"
5455         $LFS setstripe -c 2 $file1
5456         cp $ref1 $file1
5457         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
5458         stripe=$($LFS getstripe -c $file1)
5459         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5460         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5461
5462         # clean up
5463         rm -f $file1
5464 }
5465 run_test 56x "lfs migration support"
5466
5467 test_56xa() {
5468         check_swap_layouts_support && return 0
5469         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
5470
5471         local dir=$DIR/$tdir/$testnum
5472
5473         test_mkdir -p $dir
5474
5475         local ref1=/etc/passwd
5476         local file1=$dir/file1
5477
5478         $LFS setstripe -c 2 $file1
5479         cp $ref1 $file1
5480         $LFS migrate --block -c 1 $file1 || error "migrate failed rc = $?"
5481
5482         local stripe=$($LFS getstripe -c $file1)
5483
5484         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5485         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5486
5487         # clean up
5488         rm -f $file1
5489 }
5490 run_test 56xa "lfs migration --block support"
5491
5492 check_migrate_links() {
5493         local dir="$1"
5494         local file1="$dir/file1"
5495         local begin="$2"
5496         local count="$3"
5497         local total_count=$(($begin + $count - 1))
5498         local symlink_count=10
5499         local uniq_count=10
5500
5501         if [ ! -f "$file1" ]; then
5502                 echo -n "creating initial file..."
5503                 $LFS setstripe -c 1 -S "512k" "$file1" ||
5504                         error "cannot setstripe initial file"
5505                 echo "done"
5506
5507                 echo -n "creating symlinks..."
5508                 for s in $(seq 1 $symlink_count); do
5509                         ln -s "$file1" "$dir/slink$s" ||
5510                                 error "cannot create symlinks"
5511                 done
5512                 echo "done"
5513
5514                 echo -n "creating nonlinked files..."
5515                 createmany -o "$dir/uniq" 1 10 &> /dev/null ||
5516                         error "cannot create nonlinked files"
5517                 echo "done"
5518         fi
5519
5520         # create hard links
5521         if [ ! -f "$dir/file$total_count" ]; then
5522                 echo -n "creating hard links $begin:$total_count..."
5523                 createmany -l"$file1" "$dir/file" "$begin" "$count" &>  \
5524                         /dev/null || error "cannot create hard links"
5525                 echo "done"
5526         fi
5527
5528         echo -n "checking number of hard links listed in xattrs..."
5529         local fid=$($LFS getstripe -F "$file1")
5530         local paths=($($LFS fid2path "$MOUNT" "$fid" 2> /dev/null))
5531
5532         echo "${#paths[*]}"
5533         if [ ${#paths[*]} -lt $total_count -a "$begin" -eq 2  ]; then
5534                         echo "hard link list has unexpected size, skipping test"
5535                         return 0
5536         fi
5537         if [ ${#paths[*]} -ge $total_count -a "$begin" -ne 2  ]; then
5538                         error "link names should exceed xattrs size"
5539         fi
5540
5541         echo -n "migrating files..."
5542         local migrate_out=$($LFS_MIGRATE -y -S '1m' $dir)
5543         local rc=$?
5544         [ $rc -eq 0 ] || error "migrate failed rc = $rc"
5545         echo "done"
5546
5547         # make sure all links have been properly migrated
5548         echo -n "verifying files..."
5549         fid=$($LFS getstripe -F "$file1") ||
5550                 error "cannot get fid for file $file1"
5551         for i in $(seq 2 $total_count); do
5552                 local fid2=$($LFS getstripe -F $dir/file$i)
5553
5554                 [ "$fid2" == "$fid" ] ||
5555                         error "migrated hard link has mismatched FID"
5556         done
5557
5558         # make sure hard links were properly detected, and migration was
5559         # performed only once for the entire link set; nonlinked files should
5560         # also be migrated
5561         local actual=$(grep -c 'done migrate' <<< "$migrate_out")
5562         local expected=$(($uniq_count + 1))
5563
5564         [ "$actual" -eq  "$expected" ] ||
5565                 error "hard links individually migrated ($actual != $expected)"
5566
5567         # make sure the correct number of hard links are present
5568         local hardlinks=$(stat -c '%h' "$file1")
5569
5570         [ $hardlinks -eq $total_count ] ||
5571                 error "num hard links $hardlinks != $total_count"
5572         echo "done"
5573
5574         return 0
5575 }
5576
5577 test_56xb() {
5578         local dir="$DIR/$tdir"
5579
5580         test_mkdir "$dir" || error "cannot create dir $dir"
5581
5582         echo "testing lfs migrate mode when all links fit within xattrs"
5583         LFS_MIGRATE_RSYNC=false check_migrate_links "$dir" 2 99
5584
5585         echo "testing rsync mode when all links fit within xattrs"
5586         LFS_MIGRATE_RSYNC=true check_migrate_links "$dir" 2 99
5587
5588         echo "testing lfs migrate mode when all links do not fit within xattrs"
5589         LFS_MIGRATE_RSYNC=false check_migrate_links "$dir" 101 100
5590
5591         echo "testing rsync mode when all links do not fit within xattrs"
5592         LFS_MIGRATE_RSYNC=true check_migrate_links "$dir" 101 100
5593
5594         # clean up
5595         rm -rf $dir
5596 }
5597 run_test 56xb "lfs migration hard link support"
5598
5599 test_56y() {
5600         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
5601                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
5602                 return
5603
5604         local res=""
5605         local dir=$DIR/$tdir
5606         local f1=$dir/file1
5607         local f2=$dir/file2
5608
5609         test_mkdir -p $dir || error "creating dir $dir"
5610         touch $f1 || error "creating std file $f1"
5611         $MULTIOP $f2 H2c || error "creating released file $f2"
5612
5613         # a directory can be raid0, so ask only for files
5614         res=$($LFS find $dir -L raid0 -type f | wc -l)
5615         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
5616
5617         res=$($LFS find $dir \! -L raid0 -type f | wc -l)
5618         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
5619
5620         # only files can be released, so no need to force file search
5621         res=$($LFS find $dir -L released)
5622         [[ $res == $f2 ]] || error "search released: found $res != $f2"
5623
5624         res=$($LFS find $dir -type f \! -L released)
5625         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
5626 }
5627 run_test 56y "lfs find -L raid0|released"
5628
5629 test_56z() { # LU-4824
5630         # This checks to make sure 'lfs find' continues after errors
5631         # There are two classes of errors that should be caught:
5632         # - If multiple paths are provided, all should be searched even if one
5633         #   errors out
5634         # - If errors are encountered during the search, it should not terminate
5635         #   early
5636         local dir=$DIR/$tdir
5637         local i
5638
5639         test_mkdir $dir
5640         for i in d{0..9}; do
5641                 test_mkdir $dir/$i
5642         done
5643         touch $dir/d{0..9}/$tfile
5644         $LFS find $DIR/non_existent_dir $dir &&
5645                 error "$LFS find did not return an error"
5646         # Make a directory unsearchable. This should NOT be the last entry in
5647         # directory order.  Arbitrarily pick the 6th entry
5648         chmod 700 $($LFS find $dir -type d | sed '6!d')
5649
5650         local count=$($RUNAS $LFS find $DIR/non_existent $dir | wc -l)
5651
5652         # The user should be able to see 10 directories and 9 files
5653         [ $count == 19 ] || error "$LFS find did not continue after error"
5654 }
5655 run_test 56z "lfs find should continue after an error"
5656
5657 test_56aa() { # LU-5937
5658         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5659
5660         local dir=$DIR/$tdir
5661
5662         mkdir $dir
5663         $LFS setdirstripe -c$MDSCOUNT $dir/striped_dir
5664
5665         createmany -o $dir/striped_dir/${tfile}- 1024
5666         local dirs=$(lfs find --size +8k $dir/)
5667
5668         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
5669 }
5670 run_test 56aa "lfs find --size under striped dir"
5671
5672 test_56ba() {
5673         # Create composite files with one component
5674         local dir=$DIR/$tdir
5675
5676         setup_56 $dir/1Mfiles 5 1 "--component-end 1M"
5677         # Create composite files with three components
5678         setup_56 $dir/2Mfiles 5 2 "-E 2M -E 4M -E 6M"
5679         # Create non-composite files
5680         createmany -o $dir/${tfile}- 10
5681
5682         local nfiles=$($LFS find --component-end 1M --type f $dir | wc -l)
5683
5684         [[ $nfiles == 10 ]] ||
5685                 error "lfs find -E 1M found $nfiles != 10 files"
5686
5687         nfiles=$($LFS find ! -E 1M --type f $dir | wc -l)
5688         [[ $nfiles == 25 ]] ||
5689                 error "lfs find ! -E 1M found $nfiles != 25 files"
5690
5691         # All files have a component that starts at 0
5692         nfiles=$($LFS find --component-start 0 --type f $dir | wc -l)
5693         [[ $nfiles == 35 ]] ||
5694                 error "lfs find --component-start 0 - $nfiles != 35 files"
5695
5696         nfiles=$($LFS find --component-start 2M --type f $dir | wc -l)
5697         [[ $nfiles == 15 ]] ||
5698                 error "lfs find --component-start 2M - $nfiles != 15 files"
5699
5700         # All files created here have a componenet that does not starts at 2M
5701         nfiles=$($LFS find ! --component-start 2M --type f $dir | wc -l)
5702         [[ $nfiles == 35 ]] ||
5703                 error "lfs find ! --component-start 2M - $nfiles != 35 files"
5704
5705         # Find files with a specified number of components
5706         local nfiles=$($LFS find --component-count 3 --type f $dir | wc -l)
5707         [[ $nfiles == 15 ]] ||
5708                 error "lfs find --component-count 3 - $nfiles != 15 files"
5709
5710         # Remember non-composite files have a component count of zero
5711         local nfiles=$($LFS find --component-count 0 --type f $dir | wc -l)
5712         [[ $nfiles == 10 ]] ||
5713                 error "lfs find --component-count 0 - $nfiles != 10 files"
5714
5715         nfiles=$($LFS find ! --component-count 3 --type f $dir | wc -l)
5716         [[ $nfiles == 20 ]] ||
5717                 error "lfs find ! --component-count 3 - $nfiles != 20 files"
5718
5719         # All files have a flag called "init"
5720         local nfiles=$($LFS find --component-flags init --type f $dir | wc -l)
5721         [[ $nfiles == 35 ]] ||
5722                 error "lfs find --component-flags init - $nfiles != 35 files"
5723
5724         # Multi-component files will have a component not initialized
5725         local nfiles=$($LFS find ! --component-flags init --type f $dir | wc -l)
5726         [[ $nfiles == 15 ]] ||
5727                 error "lfs find !--component-flags init - $nfiles != 15 files"
5728
5729         rm -rf $dir
5730
5731 }
5732 run_test 56ba "test lfs find --component-end, -start, -count, and -flags"
5733
5734 test_57a() {
5735         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5736         # note test will not do anything if MDS is not local
5737         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5738                 skip "ldiskfs only test"
5739                 return
5740         fi
5741
5742         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5743         local MNTDEV="osd*.*MDT*.mntdev"
5744         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
5745         [ -z "$DEV" ] && error "can't access $MNTDEV"
5746         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
5747                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
5748                         error "can't access $DEV"
5749                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
5750                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
5751                 rm $TMP/t57a.dump
5752         done
5753 }
5754 run_test 57a "verify MDS filesystem created with large inodes =="
5755
5756 test_57b() {
5757         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5758         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5759                 skip "ldiskfs only test"
5760                 return
5761         fi
5762
5763         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5764         local dir=$DIR/$tdir
5765
5766         local FILECOUNT=100
5767         local FILE1=$dir/f1
5768         local FILEN=$dir/f$FILECOUNT
5769
5770         rm -rf $dir || error "removing $dir"
5771         test_mkdir -c1 $dir
5772         local mdtidx=$($LFS getstripe -M $dir)
5773         local mdtname=MDT$(printf %04x $mdtidx)
5774         local facet=mds$((mdtidx + 1))
5775
5776         echo "mcreating $FILECOUNT files"
5777         createmany -m $dir/f 1 $FILECOUNT || \
5778                 error "creating files in $dir"
5779
5780         # verify that files do not have EAs yet
5781         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
5782         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
5783
5784         sync
5785         sleep 1
5786         df $dir  #make sure we get new statfs data
5787         local MDSFREE=$(do_facet $facet \
5788                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5789         local MDCFREE=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5790         echo "opening files to create objects/EAs"
5791         local FILE
5792         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
5793                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
5794         done
5795
5796         # verify that files have EAs now
5797         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
5798         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
5799
5800         sleep 1  #make sure we get new statfs data
5801         df $dir
5802         local MDSFREE2=$(do_facet $facet \
5803                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5804         local MDCFREE2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5805         if [[ $MDCFREE2 -lt $((MDCFREE - 16)) ]]; then
5806                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
5807                         error "MDC before $MDCFREE != after $MDCFREE2"
5808                 else
5809                         echo "MDC before $MDCFREE != after $MDCFREE2"
5810                         echo "unable to confirm if MDS has large inodes"
5811                 fi
5812         fi
5813         rm -rf $dir
5814 }
5815 run_test 57b "default LOV EAs are stored inside large inodes ==="
5816
5817 test_58() {
5818         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5819         [ -z "$(which wiretest 2>/dev/null)" ] &&
5820                         skip_env "could not find wiretest" && return
5821         wiretest
5822 }
5823 run_test 58 "verify cross-platform wire constants =============="
5824
5825 test_59() {
5826         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5827         echo "touch 130 files"
5828         createmany -o $DIR/f59- 130
5829         echo "rm 130 files"
5830         unlinkmany $DIR/f59- 130
5831         sync
5832         # wait for commitment of removal
5833         wait_delete_completed
5834 }
5835 run_test 59 "verify cancellation of llog records async ========="
5836
5837 TEST60_HEAD="test_60 run $RANDOM"
5838 test_60a() {
5839         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5840         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
5841         do_facet mgs "! which run-llog.sh &> /dev/null" &&
5842                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
5843                         skip_env "missing subtest run-llog.sh" && return
5844
5845         log "$TEST60_HEAD - from kernel mode"
5846         do_facet mgs "$LCTL set_param debug=warning; $LCTL dk > /dev/null"
5847         do_facet mgs "sh run-llog.sh" || error "run-llog.sh failed"
5848         do_facet mgs $LCTL dk > $TMP/$tfile
5849
5850         # LU-6388: test llog_reader
5851         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
5852         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
5853         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
5854                         skip_env "missing llog_reader" && return
5855         local fstype=$(facet_fstype mgs)
5856         [ $fstype != ldiskfs -a $fstype != zfs ] &&
5857                 skip_env "Only for ldiskfs or zfs type mgs" && return
5858
5859         local mntpt=$(facet_mntpt mgs)
5860         local mgsdev=$(mgsdevname 1)
5861         local fid_list
5862         local fid
5863         local rec_list
5864         local rec
5865         local rec_type
5866         local obj_file
5867         local path
5868         local seq
5869         local oid
5870         local pass=true
5871
5872         #get fid and record list
5873         fid_list=($(awk '/9_sub.*record/ { print $NF }' /$TMP/$tfile |
5874                 tail -n 4))
5875         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' /$TMP/$tfile |
5876                 tail -n 4))
5877         #remount mgs as ldiskfs or zfs type
5878         stop mgs || error "stop mgs failed"
5879         mount_fstype mgs || error "remount mgs failed"
5880         for ((i = 0; i < ${#fid_list[@]}; i++)); do
5881                 fid=${fid_list[i]}
5882                 rec=${rec_list[i]}
5883                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
5884                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
5885                 oid=$((16#$oid))
5886
5887                 case $fstype in
5888                         ldiskfs )
5889                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
5890                         zfs )
5891                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
5892                 esac
5893                 echo "obj_file is $obj_file"
5894                 do_facet mgs $llog_reader $obj_file
5895
5896                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
5897                         awk '{ print $3 }' | sed -e "s/^type=//g")
5898                 if [ $rec_type != $rec ]; then
5899                         echo "FAILED test_60a wrong record type $rec_type," \
5900                               "should be $rec"
5901                         pass=false
5902                         break
5903                 fi
5904
5905                 #check obj path if record type is LLOG_LOGID_MAGIC
5906                 if [ "$rec" == "1064553b" ]; then
5907                         path=$(do_facet mgs $llog_reader $obj_file |
5908                                 grep "path=" | awk '{ print $NF }' |
5909                                 sed -e "s/^path=//g")
5910                         if [ $obj_file != $mntpt/$path ]; then
5911                                 echo "FAILED test_60a wrong obj path" \
5912                                       "$montpt/$path, should be $obj_file"
5913                                 pass=false
5914                                 break
5915                         fi
5916                 fi
5917         done
5918         rm -f $TMP/$tfile
5919         #restart mgs before "error", otherwise it will block the next test
5920         stop mgs || error "stop mgs failed"
5921         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
5922         $pass || error "test failed, see FAILED test_60a messages for specifics"
5923 }
5924 run_test 60a "llog_test run from kernel module and test llog_reader"
5925
5926 test_60aa() {
5927         # test old logid format
5928         if [ $(lustre_version_code mgs) -le $(version_code 3.1.53) ]; then
5929                 do_facet mgs $LCTL dl | grep MGS
5930                 do_facet mgs "$LCTL --device %MGS llog_print \\\\\\\$$FSNAME-client" ||
5931                         error "old llog_print failed"
5932         fi
5933
5934         # test new logid format
5935         if [ $(lustre_version_code mgs) -ge $(version_code 2.9.53) ]; then
5936                 do_facet mgs "$LCTL --device MGS llog_print $FSNAME-client" ||
5937                         error "new llog_print failed"
5938         fi
5939 }
5940 run_test 60aa "llog_print works with FIDs and simple names"
5941
5942 test_60b() { # bug 6411
5943         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5944         dmesg > $DIR/$tfile
5945         LLOG_COUNT=$(dmesg | awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
5946                                 /llog.test/ {
5947                                         if (marker)
5948                                                 from_marker++
5949                                         from_begin++
5950                                 }
5951                                 END {
5952                                         if (marker)
5953                                                 print from_marker
5954                                         else
5955                                                 print from_begin
5956                                 }")
5957         [[ $LLOG_COUNT -gt 100 ]] &&
5958                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
5959 }
5960 run_test 60b "limit repeated messages from CERROR/CWARN ========"
5961
5962 test_60c() {
5963         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5964         echo "create 5000 files"
5965         createmany -o $DIR/f60c- 5000
5966 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
5967         lctl set_param fail_loc=0x80000137
5968         unlinkmany $DIR/f60c- 5000
5969         lctl set_param fail_loc=0
5970 }
5971 run_test 60c "unlink file when mds full"
5972
5973 test_60d() {
5974         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5975         SAVEPRINTK=$(lctl get_param -n printk)
5976
5977         # verify "lctl mark" is even working"
5978         MESSAGE="test message ID $RANDOM $$"
5979         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5980         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
5981
5982         lctl set_param printk=0 || error "set lnet.printk failed"
5983         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
5984         MESSAGE="new test message ID $RANDOM $$"
5985         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
5986         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5987         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
5988
5989         lctl set_param -n printk="$SAVEPRINTK"
5990 }
5991 run_test 60d "test printk console message masking"
5992
5993 test_60e() {
5994         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5995         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5996         touch $DIR/$tfile
5997 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
5998         do_facet mds1 lctl set_param fail_loc=0x15b
5999         rm $DIR/$tfile
6000 }
6001 run_test 60e "no space while new llog is being created"
6002
6003 test_61() {
6004         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6005         f="$DIR/f61"
6006         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
6007         cancel_lru_locks osc
6008         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
6009         sync
6010 }
6011 run_test 61 "mmap() writes don't make sync hang ================"
6012
6013 # bug 2330 - insufficient obd_match error checking causes LBUG
6014 test_62() {
6015         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6016         f="$DIR/f62"
6017         echo foo > $f
6018         cancel_lru_locks osc
6019         lctl set_param fail_loc=0x405
6020         cat $f && error "cat succeeded, expect -EIO"
6021         lctl set_param fail_loc=0
6022 }
6023 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
6024 # match every page all of the time.
6025 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
6026
6027 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
6028 # Though this test is irrelevant anymore, it helped to reveal some
6029 # other grant bugs (LU-4482), let's keep it.
6030 test_63a() {   # was test_63
6031         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6032         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
6033         for i in `seq 10` ; do
6034                 dd if=/dev/zero of=$DIR/f63 bs=8k &
6035                 sleep 5
6036                 kill $!
6037                 sleep 1
6038         done
6039
6040         rm -f $DIR/f63 || true
6041 }
6042 run_test 63a "Verify oig_wait interruption does not crash ======="
6043
6044 # bug 2248 - async write errors didn't return to application on sync
6045 # bug 3677 - async write errors left page locked
6046 test_63b() {
6047         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6048         debugsave
6049         lctl set_param debug=-1
6050
6051         # ensure we have a grant to do async writes
6052         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
6053         rm $DIR/$tfile
6054
6055         sync    # sync lest earlier test intercept the fail_loc
6056
6057         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
6058         lctl set_param fail_loc=0x80000406
6059         $MULTIOP $DIR/$tfile Owy && \
6060                 error "sync didn't return ENOMEM"
6061         sync; sleep 2; sync     # do a real sync this time to flush page
6062         lctl get_param -n llite.*.dump_page_cache | grep locked && \
6063                 error "locked page left in cache after async error" || true
6064         debugrestore
6065 }
6066 run_test 63b "async write errors should be returned to fsync ==="
6067
6068 test_64a () {
6069         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6070         df $DIR
6071         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
6072 }
6073 run_test 64a "verify filter grant calculations (in kernel) ====="
6074
6075 test_64b () {
6076         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6077         sh oos.sh $MOUNT || error "oos.sh failed: $?"
6078 }
6079 run_test 64b "check out-of-space detection on client"
6080
6081 test_64c() {
6082         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
6083 }
6084 run_test 64c "verify grant shrink"
6085
6086 # this does exactly what osc_request.c:osc_announce_cached() does in
6087 # order to calculate max amount of grants to ask from server
6088 want_grant() {
6089         local tgt=$1
6090
6091         local page_size=$(get_page_size client)
6092
6093         local nrpages=$($LCTL get_param -n osc.${tgt}.max_pages_per_rpc)
6094         local rpc_in_flight=$($LCTL get_param -n osc.${tgt}.max_rpcs_in_flight)
6095
6096         ((rpc_in_flight ++));
6097         nrpages=$((nrpages * rpc_in_flight))
6098
6099         local dirty_max_pages=$($LCTL get_param -n osc.${tgt}.max_dirty_mb)
6100
6101         dirty_max_pages=$((dirty_max_pages * 1024 * 1024 / page_size))
6102
6103         [[ $dirty_max_pages -gt $nrpages ]] && nrpages=$dirty_max_pages
6104         local undirty=$((nrpages * page_size))
6105
6106         local max_extent_pages
6107         max_extent_pages=$($LCTL get_param osc.${tgt}.import |
6108             grep grant_max_extent_size | awk '{print $2}')
6109         max_extent_pages=$((max_extent_pages / page_size))
6110         local nrextents=$(((nrpages + max_extent_pages - 1) / max_extent_pages))
6111         local grant_extent_tax
6112         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6113             grep grant_extent_tax | awk '{print $2}')
6114
6115         undirty=$((undirty + nrextents * grant_extent_tax))
6116
6117         echo $undirty
6118 }
6119
6120 # this is size of unit for grant allocation. It should be equal to
6121 # what tgt_grant.c:tgt_grant_chunk() calculates
6122 grant_chunk() {
6123         local tgt=$1
6124         local max_brw_size
6125         local grant_extent_tax
6126
6127         max_brw_size=$($LCTL get_param osc.${tgt}.import |
6128             grep max_brw_size | awk '{print $2}')
6129
6130         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6131             grep grant_extent_tax | awk '{print $2}')
6132
6133         echo $(((max_brw_size + grant_extent_tax) * 2))
6134 }
6135
6136 test_64d() {
6137         [ $(lustre_version_code ost1) -lt $(version_code 2.10.56) ] &&
6138                 skip "OST < 2.10.55 doesn't limit grants enough" && return 0
6139
6140         local tgt=$($LCTL dl | grep "0000-osc-[^mM]" | awk '{print $4}')
6141
6142         [[ $($LCTL get_param osc.${tgt}.import |
6143                     grep "connect_flags:.*grant_param") ]] || \
6144                         { skip "no grant_param connect flag"; return; }
6145
6146         local olddebug=$($LCTL get_param -n debug 2> /dev/null)
6147
6148         $LCTL set_param debug="$OLDDEBUG" 2> /dev/null || true
6149
6150         local max_cur_granted=$(($(want_grant $tgt) + $(grant_chunk $tgt)))
6151
6152         $SETSTRIPE $DIR/$tfile -i 0 -c 1
6153         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1000 &
6154         ddpid=$!
6155
6156         while true
6157         do
6158                 local cur_grant=$($LCTL get_param -n osc.${tgt}.cur_grant_bytes)
6159                 if [[ $cur_grant -gt $max_cur_granted ]]
6160                 then
6161                         kill $ddpid
6162                         error "cur_grant $cur_grant > $max_cur_granted"
6163                 fi
6164                 kill -0 $ddpid
6165                 [[ $? -ne 0 ]] && break;
6166                 sleep 2
6167         done
6168         $LCTL set_param debug="$olddebug" 2> /dev/null || true
6169 }
6170 run_test 64d "check grant limit exceed"
6171
6172 # bug 1414 - set/get directories' stripe info
6173 test_65a() {
6174         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6175         test_mkdir $DIR/$tdir
6176         touch $DIR/$tdir/f1
6177         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
6178 }
6179 run_test 65a "directory with no stripe info"
6180
6181 test_65b() {
6182         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6183         test_mkdir $DIR/$tdir
6184         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6185
6186         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6187                                                 error "setstripe"
6188         touch $DIR/$tdir/f2
6189         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
6190 }
6191 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
6192
6193 test_65c() {
6194         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6195         [ $OSTCOUNT -lt 2 ] && skip "need at least 2 OSTs" && return
6196         test_mkdir $DIR/$tdir
6197         local stripesize=$($GETSTRIPE -S $DIR/$tdir)
6198
6199         $LFS setstripe -S $((stripesize * 4)) -i 1 \
6200                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
6201         touch $DIR/$tdir/f3
6202         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
6203 }
6204 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
6205
6206 test_65d() {
6207         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6208         test_mkdir $DIR/$tdir
6209         local STRIPECOUNT=$($GETSTRIPE -c $DIR/$tdir)
6210         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6211
6212         if [[ $STRIPECOUNT -le 0 ]]; then
6213                 sc=1
6214         elif [[ $STRIPECOUNT -gt 2000 ]]; then
6215 #LOV_MAX_STRIPE_COUNT is 2000
6216                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
6217         else
6218                 sc=$(($STRIPECOUNT - 1))
6219         fi
6220         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
6221         touch $DIR/$tdir/f4 $DIR/$tdir/f5
6222         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
6223                 error "lverify failed"
6224 }
6225 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
6226
6227 test_65e() {
6228         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6229         test_mkdir $DIR/$tdir
6230
6231         $SETSTRIPE $DIR/$tdir || error "setstripe"
6232         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
6233                                         error "no stripe info failed"
6234         touch $DIR/$tdir/f6
6235         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
6236 }
6237 run_test 65e "directory setstripe defaults"
6238
6239 test_65f() {
6240         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6241         test_mkdir $DIR/${tdir}f
6242         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
6243 }
6244 run_test 65f "dir setstripe permission (should return error) ==="
6245
6246 test_65g() {
6247         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6248         test_mkdir $DIR/$tdir
6249         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6250
6251         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6252                 error "setstripe -S failed"
6253         $LFS setstripe -d $DIR/$tdir || error "setstripe -d failed"
6254         $LFS getstripe -v $DIR/$tdir | grep "Default" ||
6255                 error "delete default stripe failed"
6256 }
6257 run_test 65g "directory setstripe -d"
6258
6259 test_65h() {
6260         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6261         test_mkdir $DIR/$tdir
6262         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6263
6264         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6265                 error "setstripe -S failed"
6266         test_mkdir $DIR/$tdir/dd1
6267         [ $($LFS getstripe -c $DIR/$tdir) = $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
6268                 error "stripe info inherit failed"
6269 }
6270 run_test 65h "directory stripe info inherit ===================="
6271
6272 test_65i() { # bug6367
6273         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6274         $SETSTRIPE -S 65536 -c -1 $MOUNT
6275 }
6276 run_test 65i "set non-default striping on root directory (bug 6367)="
6277
6278 test_65ia() { # bug12836
6279         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6280         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
6281 }
6282 run_test 65ia "getstripe on -1 default directory striping"
6283
6284 test_65ib() { # bug12836
6285         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6286         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
6287 }
6288 run_test 65ib "getstripe -v on -1 default directory striping"
6289
6290 test_65ic() { # bug12836
6291         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6292         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
6293 }
6294 run_test 65ic "new find on -1 default directory striping"
6295
6296 test_65j() { # bug6367
6297         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6298         [ $($LFS getstripe --component-count $MOUNT) -gt 1 ] &&
6299                 skip "don't delete default PFL layout" && return
6300         sync; sleep 1
6301         # if we aren't already remounting for each test, do so for this test
6302         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
6303                 cleanup || error "failed to unmount"
6304                 setup
6305         fi
6306         $SETSTRIPE -d $MOUNT || error "setstripe failed"
6307 }
6308 run_test 65j "set default striping on root directory (bug 6367)="
6309
6310 test_65k() { # bug11679
6311         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6312         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
6313         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6314
6315         local disable_precreate=true
6316         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.8.54) ] &&
6317                 disable_precreate=false
6318
6319         echo "Check OST status: "
6320         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
6321                 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
6322
6323         for OSC in $MDS_OSCS; do
6324                 echo $OSC "is active"
6325                 do_facet $SINGLEMDS lctl --device %$OSC activate
6326         done
6327
6328         for INACTIVE_OSC in $MDS_OSCS; do
6329                 local ost=$(osc_to_ost $INACTIVE_OSC)
6330                 local ostnum=$(do_facet $SINGLEMDS lctl get_param -n \
6331                                lov.*md*.target_obd |
6332                                awk -F: /$ost/'{ print $1 }' | head -n 1)
6333
6334                 mkdir -p $DIR/$tdir
6335                 $SETSTRIPE -i $ostnum -c 1 $DIR/$tdir
6336                 createmany -o $DIR/$tdir/$tfile.$ostnum. 1000
6337
6338                 echo "Deactivate: " $INACTIVE_OSC
6339                 do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
6340
6341                 local count=$(do_facet $SINGLEMDS "lctl get_param -n \
6342                               osp.$ost*MDT0000.create_count")
6343                 local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
6344                                   osp.$ost*MDT0000.max_create_count")
6345                 $disable_precreate &&
6346                         do_facet $SINGLEMDS "lctl set_param -n \
6347                                 osp.$ost*MDT0000.max_create_count=0"
6348
6349                 for idx in $(seq 0 $((OSTCOUNT - 1))); do
6350                         [ -f $DIR/$tdir/$idx ] && continue
6351                         echo "$SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx"
6352                         $SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx ||
6353                                 error "setstripe $idx should succeed"
6354                         rm -f $DIR/$tdir/$idx || error "rm $idx failed"
6355                 done
6356                 unlinkmany $DIR/$tdir/$tfile.$ostnum. 1000
6357                 rmdir $DIR/$tdir
6358
6359                 do_facet $SINGLEMDS "lctl set_param -n \
6360                         osp.$ost*MDT0000.max_create_count=$max_count"
6361                 do_facet $SINGLEMDS "lctl set_param -n \
6362                         osp.$ost*MDT0000.create_count=$count"
6363                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
6364                 echo $INACTIVE_OSC "is Activate"
6365
6366                 wait_osc_import_state mds ost$ostnum FULL
6367         done
6368 }
6369 run_test 65k "validate manual striping works properly with deactivated OSCs"
6370
6371 test_65l() { # bug 12836
6372         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6373         test_mkdir -p $DIR/$tdir/test_dir
6374         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
6375         $LFS find -mtime -1 $DIR/$tdir >/dev/null
6376 }
6377 run_test 65l "lfs find on -1 stripe dir ========================"
6378
6379 test_65m() {
6380         $RUNAS $SETSTRIPE -c 2 $MOUNT && error "setstripe should fail"
6381         true
6382 }
6383 run_test 65m "normal user can't set filesystem default stripe"
6384
6385 # bug 2543 - update blocks count on client
6386 test_66() {
6387         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6388         COUNT=${COUNT:-8}
6389         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
6390         sync; sync_all_data; sync; sync_all_data
6391         cancel_lru_locks osc
6392         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
6393         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
6394 }
6395 run_test 66 "update inode blocks count on client ==============="
6396
6397 meminfo() {
6398         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
6399 }
6400
6401 swap_used() {
6402         swapon -s | awk '($1 == "'$1'") { print $4 }'
6403 }
6404
6405 # bug5265, obdfilter oa2dentry return -ENOENT
6406 # #define OBD_FAIL_SRV_ENOENT 0x217
6407 test_69() {
6408         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6409         remote_ost_nodsh && skip "remote OST with nodsh" && return
6410
6411         f="$DIR/$tfile"
6412         $SETSTRIPE -c 1 -i 0 $f
6413
6414         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
6415
6416         do_facet ost1 lctl set_param fail_loc=0x217
6417         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
6418         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
6419
6420         do_facet ost1 lctl set_param fail_loc=0
6421         $DIRECTIO write $f 0 2 || error "write error"
6422
6423         cancel_lru_locks osc
6424         $DIRECTIO read $f 0 1 || error "read error"
6425
6426         do_facet ost1 lctl set_param fail_loc=0x217
6427         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
6428
6429         do_facet ost1 lctl set_param fail_loc=0
6430         rm -f $f
6431 }
6432 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
6433
6434 test_71() {
6435         test_mkdir $DIR/$tdir
6436         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
6437         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
6438 }
6439 run_test 71 "Running dbench on lustre (don't segment fault) ===="
6440
6441 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
6442         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6443         [ "$RUNAS_ID" = "$UID" ] &&
6444                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
6445
6446         # Check that testing environment is properly set up. Skip if not
6447         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
6448                 skip_env "User $RUNAS_ID does not exist - skipping"
6449                 return 0
6450         }
6451         touch $DIR/$tfile
6452         chmod 777 $DIR/$tfile
6453         chmod ug+s $DIR/$tfile
6454         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
6455                 error "$RUNAS dd $DIR/$tfile failed"
6456         # See if we are still setuid/sgid
6457         test -u $DIR/$tfile -o -g $DIR/$tfile &&
6458                 error "S/gid is not dropped on write"
6459         # Now test that MDS is updated too
6460         cancel_lru_locks mdc
6461         test -u $DIR/$tfile -o -g $DIR/$tfile &&
6462                 error "S/gid is not dropped on MDS"
6463         rm -f $DIR/$tfile
6464 }
6465 run_test 72a "Test that remove suid works properly (bug5695) ===="
6466
6467 test_72b() { # bug 24226 -- keep mode setting when size is not changing
6468         local perm
6469
6470         [ "$RUNAS_ID" = "$UID" ] && \
6471                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
6472         [ "$RUNAS_ID" -eq 0 ] && \
6473                 skip_env "RUNAS_ID = 0 -- skipping" && return
6474
6475         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6476         # Check that testing environment is properly set up. Skip if not
6477         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
6478                 skip_env "User $RUNAS_ID does not exist - skipping"
6479                 return 0
6480         }
6481         touch $DIR/${tfile}-f{g,u}
6482         test_mkdir $DIR/${tfile}-dg
6483         test_mkdir $DIR/${tfile}-du
6484         chmod 770 $DIR/${tfile}-{f,d}{g,u}
6485         chmod g+s $DIR/${tfile}-{f,d}g
6486         chmod u+s $DIR/${tfile}-{f,d}u
6487         for perm in 777 2777 4777; do
6488                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
6489                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
6490                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
6491                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
6492         done
6493         true
6494 }
6495 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
6496
6497 # bug 3462 - multiple simultaneous MDC requests
6498 test_73() {
6499         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6500         test_mkdir $DIR/d73-1
6501         test_mkdir $DIR/d73-2
6502         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
6503         pid1=$!
6504
6505         lctl set_param fail_loc=0x80000129
6506         $MULTIOP $DIR/d73-1/f73-2 Oc &
6507         sleep 1
6508         lctl set_param fail_loc=0
6509
6510         $MULTIOP $DIR/d73-2/f73-3 Oc &
6511         pid3=$!
6512
6513         kill -USR1 $pid1
6514         wait $pid1 || return 1
6515
6516         sleep 25
6517
6518         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
6519         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
6520         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
6521
6522         rm -rf $DIR/d73-*
6523 }
6524 run_test 73 "multiple MDC requests (should not deadlock)"
6525
6526 test_74a() { # bug 6149, 6184
6527         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6528         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
6529         #
6530         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
6531         # will spin in a tight reconnection loop
6532         touch $DIR/f74a
6533         $LCTL set_param fail_loc=0x8000030e
6534         # get any lock that won't be difficult - lookup works.
6535         ls $DIR/f74a
6536         $LCTL set_param fail_loc=0
6537         rm -f $DIR/f74a
6538         true
6539 }
6540 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
6541
6542 test_74b() { # bug 13310
6543         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6544         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
6545         #
6546         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
6547         # will spin in a tight reconnection loop
6548         $LCTL set_param fail_loc=0x8000030e
6549         # get a "difficult" lock
6550         touch $DIR/f74b
6551         $LCTL set_param fail_loc=0
6552         rm -f $DIR/f74b
6553         true
6554 }
6555 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
6556
6557 test_74c() {
6558         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6559         #define OBD_FAIL_LDLM_NEW_LOCK
6560         $LCTL set_param fail_loc=0x319
6561         touch $DIR/$tfile && error "touch successful"
6562         $LCTL set_param fail_loc=0
6563         true
6564 }
6565 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
6566
6567 num_inodes() {
6568         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
6569 }
6570
6571 test_76() { # Now for bug 20433, added originally in bug 1443
6572         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6573         local CPUS=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
6574         cancel_lru_locks osc
6575         BEFORE_INODES=$(num_inodes)
6576         echo "before inodes: $BEFORE_INODES"
6577         local COUNT=1000
6578         [ "$SLOW" = "no" ] && COUNT=100
6579         for i in $(seq $COUNT); do
6580                 touch $DIR/$tfile
6581                 rm -f $DIR/$tfile
6582         done
6583         cancel_lru_locks osc
6584         AFTER_INODES=$(num_inodes)
6585         echo "after inodes: $AFTER_INODES"
6586         local wait=0
6587         while [[ $((AFTER_INODES-1*${CPUS:-1})) -gt $BEFORE_INODES ]]; do
6588                 sleep 2
6589                 AFTER_INODES=$(num_inodes)
6590                 wait=$((wait+2))
6591                 echo "wait $wait seconds inodes: $AFTER_INODES"
6592                 if [ $wait -gt 30 ]; then
6593                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
6594                 fi
6595         done
6596 }
6597 run_test 76 "confirm clients recycle inodes properly ===="
6598
6599
6600 export ORIG_CSUM=""
6601 set_checksums()
6602 {
6603         # Note: in sptlrpc modes which enable its own bulk checksum, the
6604         # original crc32_le bulk checksum will be automatically disabled,
6605         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
6606         # will be checked by sptlrpc code against sptlrpc bulk checksum.
6607         # In this case set_checksums() will not be no-op, because sptlrpc
6608         # bulk checksum will be enabled all through the test.
6609
6610         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
6611         lctl set_param -n osc.*.checksums $1
6612         return 0
6613 }
6614
6615 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
6616                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
6617 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
6618 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
6619 set_checksum_type()
6620 {
6621         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
6622         log "set checksum type to $1"
6623         return 0
6624 }
6625 F77_TMP=$TMP/f77-temp
6626 F77SZ=8
6627 setup_f77() {
6628         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
6629                 error "error writing to $F77_TMP"
6630 }
6631
6632 test_77a() { # bug 10889
6633         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6634         $GSS && skip "could not run with gss" && return
6635         [ ! -f $F77_TMP ] && setup_f77
6636         set_checksums 1
6637         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
6638         set_checksums 0
6639         rm -f $DIR/$tfile
6640 }
6641 run_test 77a "normal checksum read/write operation"
6642
6643 test_77b() { # bug 10889
6644         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6645         $GSS && skip "could not run with gss" && return
6646         [ ! -f $F77_TMP ] && setup_f77
6647         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6648         $LCTL set_param fail_loc=0x80000409
6649         set_checksums 1
6650
6651         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
6652                 error "dd error: $?"
6653         $LCTL set_param fail_loc=0
6654
6655         for algo in $CKSUM_TYPES; do
6656                 cancel_lru_locks osc
6657                 set_checksum_type $algo
6658                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
6659                 $LCTL set_param fail_loc=0x80000408
6660                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
6661                 $LCTL set_param fail_loc=0
6662         done
6663         set_checksums 0
6664         set_checksum_type $ORIG_CSUM_TYPE
6665         rm -f $DIR/$tfile
6666 }
6667 run_test 77b "checksum error on client write, read"
6668
6669 cleanup_77c() {
6670         trap 0
6671         set_checksums 0
6672         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=0
6673         $check_ost &&
6674                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=0
6675         [ -n $osc_file_prefix ] && rm -f ${osc_file_prefix}*
6676         $check_ost && [ -n $ost_file_prefix ] &&
6677                 do_facet ost1 rm -f ${ost_file_prefix}\*
6678 }
6679
6680 test_77c() {
6681         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6682         $GSS && skip "could not run with gss" && return
6683
6684         local bad1
6685         local osc_file_prefix
6686         local osc_file
6687         local check_ost=false
6688         local ost_file_prefix
6689         local ost_file
6690         local orig_cksum
6691         local dump_cksum
6692         local fid
6693
6694         # ensure corruption will occur on first OSS/OST
6695         $LFS setstripe -i 0 $DIR/$tfile
6696
6697         [ ! -f $F77_TMP ] && setup_f77
6698         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
6699                 error "dd write error: $?"
6700         fid=$($LFS path2fid $DIR/$tfile)
6701
6702         if [ $(lustre_version_code ost1) -ge $(version_code 2.9.57) ]
6703         then
6704                 check_ost=true
6705                 ost_file_prefix=$(do_facet ost1 $LCTL get_param -n debug_path)
6706                 ost_file_prefix=${ost_file_prefix}-checksum_dump-ost-\\${fid}
6707         else
6708                 echo "OSS do not support bulk pages dump upon error"
6709         fi
6710
6711         osc_file_prefix=$($LCTL get_param -n debug_path)
6712         osc_file_prefix=${osc_file_prefix}-checksum_dump-osc-\\${fid}
6713
6714         trap cleanup_77c EXIT
6715
6716         set_checksums 1
6717         # enable bulk pages dump upon error on Client
6718         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=1
6719         # enable bulk pages dump upon error on OSS
6720         $check_ost &&
6721                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=1
6722
6723         # flush Client cache to allow next read to reach OSS
6724         cancel_lru_locks osc
6725
6726         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE       0x408
6727         $LCTL set_param fail_loc=0x80000408
6728         dd if=$DIR/$tfile of=/dev/null bs=1M || error "dd read error: $?"
6729         $LCTL set_param fail_loc=0
6730
6731         rm -f $DIR/$tfile
6732
6733         # check cksum dump on Client
6734         osc_file=$(ls ${osc_file_prefix}*)
6735         [ -n "$osc_file" ] || error "no checksum dump file on Client"
6736         # OBD_FAIL_OSC_CHECKSUM_RECEIVE corrupts with "bad1" at start of file
6737         bad1=$(dd if=$osc_file bs=1 count=4 2>/dev/null) || error "dd error: $?"
6738         [ $bad1 == "bad1" ] || error "unexpected corrupt pattern"
6739         orig_cksum=$(dd if=$F77_TMP bs=1 skip=4 count=1048572 2>/dev/null |
6740                      cksum)
6741         dump_cksum=$(dd if=$osc_file bs=1 skip=4 2>/dev/null | cksum)
6742         [[ "$orig_cksum" == "$dump_cksum" ]] ||
6743                 error "dump content does not match on Client"
6744
6745         $check_ost || { skip "No need to check cksum dump on OSS"; return 0; }
6746
6747         # check cksum dump on OSS
6748         ost_file=$(do_facet ost1 ls ${ost_file_prefix}\*)
6749         [ -n "$ost_file" ] || error "no checksum dump file on OSS"
6750         orig_cksum=$(dd if=$F77_TMP bs=1048576 count=1 2>/dev/null | cksum)
6751         dump_cksum=$(do_facet ost1 dd if=$ost_file 2>/dev/null \| cksum)
6752         [[ "$orig_cksum" == "$dump_cksum" ]] ||
6753                 error "dump content does not match on OSS"
6754
6755         cleanup_77c
6756 }
6757 run_test 77c "checksum error on client read with debug"
6758
6759 test_77d() { # bug 10889
6760         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6761         $GSS && skip "could not run with gss" && return
6762         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6763         $LCTL set_param fail_loc=0x80000409
6764         set_checksums 1
6765         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
6766                 error "direct write: rc=$?"
6767         $LCTL set_param fail_loc=0
6768         set_checksums 0
6769
6770         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
6771         $LCTL set_param fail_loc=0x80000408
6772         set_checksums 1
6773         cancel_lru_locks osc
6774         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
6775                 error "direct read: rc=$?"
6776         $LCTL set_param fail_loc=0
6777         set_checksums 0
6778 }
6779 run_test 77d "checksum error on OST direct write, read"
6780
6781 test_77f() { # bug 10889
6782         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6783         $GSS && skip "could not run with gss" && return
6784         set_checksums 1
6785         for algo in $CKSUM_TYPES; do
6786                 cancel_lru_locks osc
6787                 set_checksum_type $algo
6788                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6789                 $LCTL set_param fail_loc=0x409
6790                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
6791                         error "direct write succeeded"
6792                 $LCTL set_param fail_loc=0
6793         done
6794         set_checksum_type $ORIG_CSUM_TYPE
6795         set_checksums 0
6796 }
6797 run_test 77f "repeat checksum error on write (expect error)"
6798
6799 test_77g() { # bug 10889
6800         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6801         $GSS && skip "could not run with gss" && return
6802         remote_ost_nodsh && skip "remote OST with nodsh" && return
6803
6804         [ ! -f $F77_TMP ] && setup_f77
6805
6806         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
6807         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
6808         do_facet ost1 lctl set_param fail_loc=0x8000021a
6809         set_checksums 1
6810         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ ||
6811                 error "write error: rc=$?"
6812         do_facet ost1 lctl set_param fail_loc=0
6813         set_checksums 0
6814
6815         cancel_lru_locks osc
6816         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
6817         do_facet ost1 lctl set_param fail_loc=0x8000021b
6818         set_checksums 1
6819         cmp $F77_TMP $DIR/$tfile || error "file compare failed"
6820         do_facet ost1 lctl set_param fail_loc=0
6821         set_checksums 0
6822 }
6823 run_test 77g "checksum error on OST write, read"
6824
6825 test_77j() { # bug 13805
6826         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6827         $GSS && skip "could not run with gss" && return
6828         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
6829         lctl set_param fail_loc=0x40c
6830         remount_client $MOUNT
6831         lctl set_param fail_loc=0
6832         # wait async osc connect to finish and reflect updated state value
6833         local i
6834         for (( i=0; i < OSTCOUNT; i++ )) ; do
6835                 wait_osc_import_state client ost$((i+1)) FULL
6836         done
6837
6838         for VALUE in $(lctl get_param osc.*osc-[^mM]*.checksum_type); do
6839                 PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
6840                 algo=$(lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g')
6841                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
6842         done
6843         remount_client $MOUNT
6844 }
6845 run_test 77j "client only supporting ADLER32"
6846
6847 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
6848 rm -f $F77_TMP
6849 unset F77_TMP
6850
6851 cleanup_test_78() {
6852         trap 0
6853         rm -f $DIR/$tfile
6854 }
6855
6856 test_78() { # bug 10901
6857         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6858         remote_ost || { skip_env "local OST" && return; }
6859
6860         NSEQ=5
6861         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
6862         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
6863         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
6864         echo "MemTotal: $MEMTOTAL"
6865
6866         # reserve 256MB of memory for the kernel and other running processes,
6867         # and then take 1/2 of the remaining memory for the read/write buffers.
6868         if [ $MEMTOTAL -gt 512 ] ;then
6869                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
6870         else
6871                 # for those poor memory-starved high-end clusters...
6872                 MEMTOTAL=$((MEMTOTAL / 2))
6873         fi
6874         echo "Mem to use for directio: $MEMTOTAL"
6875
6876         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
6877         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
6878         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
6879         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
6880                 head -n1)
6881         echo "Smallest OST: $SMALLESTOST"
6882         [[ $SMALLESTOST -lt 10240 ]] &&
6883                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
6884
6885         trap cleanup_test_78 EXIT
6886
6887         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
6888                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
6889
6890         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
6891         echo "File size: $F78SIZE"
6892         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
6893         for i in $(seq 1 $NSEQ); do
6894                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
6895                 echo directIO rdwr round $i of $NSEQ
6896                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
6897         done
6898
6899         cleanup_test_78
6900 }
6901 run_test 78 "handle large O_DIRECT writes correctly ============"
6902
6903 test_79() { # bug 12743
6904         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6905         wait_delete_completed
6906
6907         BKTOTAL=$(calc_osc_kbytes kbytestotal)
6908         BKFREE=$(calc_osc_kbytes kbytesfree)
6909         BKAVAIL=$(calc_osc_kbytes kbytesavail)
6910
6911         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
6912         DFTOTAL=`echo $STRING | cut -d, -f1`
6913         DFUSED=`echo $STRING  | cut -d, -f2`
6914         DFAVAIL=`echo $STRING | cut -d, -f3`
6915         DFFREE=$(($DFTOTAL - $DFUSED))
6916
6917         ALLOWANCE=$((64 * $OSTCOUNT))
6918
6919         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
6920            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
6921                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
6922         fi
6923         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
6924            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
6925                 error "df free($DFFREE) mismatch OST free($BKFREE)"
6926         fi
6927         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
6928            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
6929                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
6930         fi
6931 }
6932 run_test 79 "df report consistency check ======================="
6933
6934 test_80() { # bug 10718
6935         remote_ost_nodsh && skip "remote OST with nodsh" && return
6936         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6937         # relax strong synchronous semantics for slow backends like ZFS
6938         local soc="obdfilter.*.sync_on_lock_cancel"
6939         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
6940         local hosts=
6941         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
6942                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
6943                           facet_active_host $host; done | sort -u)
6944                 do_nodes $hosts lctl set_param $soc=never
6945         fi
6946
6947         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
6948         sync; sleep 1; sync
6949         local BEFORE=`date +%s`
6950         cancel_lru_locks osc
6951         local AFTER=`date +%s`
6952         local DIFF=$((AFTER-BEFORE))
6953         if [ $DIFF -gt 1 ] ; then
6954                 error "elapsed for 1M@1T = $DIFF"
6955         fi
6956
6957         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
6958
6959         rm -f $DIR/$tfile
6960 }
6961 run_test 80 "Page eviction is equally fast at high offsets too  ===="
6962
6963 test_81a() { # LU-456
6964         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6965         remote_ost_nodsh && skip "remote OST with nodsh" && return
6966         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6967         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
6968         do_facet ost1 lctl set_param fail_loc=0x80000228
6969
6970         # write should trigger a retry and success
6971         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6972         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6973         RC=$?
6974         if [ $RC -ne 0 ] ; then
6975                 error "write should success, but failed for $RC"
6976         fi
6977 }
6978 run_test 81a "OST should retry write when get -ENOSPC ==============="
6979
6980 test_81b() { # LU-456
6981         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6982         remote_ost_nodsh && skip "remote OST with nodsh" && return
6983         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6984         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
6985         do_facet ost1 lctl set_param fail_loc=0x228
6986
6987         # write should retry several times and return -ENOSPC finally
6988         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6989         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6990         RC=$?
6991         ENOSPC=28
6992         if [ $RC -ne $ENOSPC ] ; then
6993                 error "dd should fail for -ENOSPC, but succeed."
6994         fi
6995 }
6996 run_test 81b "OST should return -ENOSPC when retry still fails ======="
6997
6998 test_82() { # LU-1031
6999         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
7000         local gid1=14091995
7001         local gid2=16022000
7002
7003         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
7004         local MULTIPID1=$!
7005         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
7006         local MULTIPID2=$!
7007         kill -USR1 $MULTIPID2
7008         sleep 2
7009         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
7010                 error "First grouplock does not block second one"
7011         else
7012                 echo "Second grouplock blocks first one"
7013         fi
7014         kill -USR1 $MULTIPID1
7015         wait $MULTIPID1
7016         wait $MULTIPID2
7017 }
7018 run_test 82 "Basic grouplock test"
7019
7020 test_83() {
7021         local sfile="/boot/System.map-$(uname -r)"
7022         # define OBD_FAIL_LLITE_PTASK_IO_FAIL 0x140d
7023         $LCTL set_param fail_loc=0x140d
7024         cp $sfile $DIR/$tfile || error "write failed"
7025         diff -c $sfile $DIR/$tfile || error "files are different"
7026         $LCTL set_param fail_loc=0
7027         rm -f $DIR/$tfile
7028 }
7029 run_test 83 "Short write in ptask ==============================="
7030
7031 test_99() {
7032         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" &&
7033                 return
7034         test_mkdir $DIR/$tdir.cvsroot
7035         chown $RUNAS_ID $DIR/$tdir.cvsroot
7036
7037         cd $TMP
7038         $RUNAS cvs -d $DIR/$tdir.cvsroot init || error "cvs init failed"
7039
7040         cd /etc/init.d
7041         # some versions of cvs import exit(1) when asked to import links or
7042         # files they can't read.  ignore those files.
7043         local toignore=$(find . -type l -printf '-I %f\n' -o \
7044                          ! -perm /4 -printf '-I %f\n')
7045         $RUNAS cvs -d $DIR/$tdir.cvsroot import -m "nomesg" $toignore \
7046                 $tdir.reposname vtag rtag
7047
7048         cd $DIR
7049         test_mkdir $DIR/$tdir.reposname
7050         chown $RUNAS_ID $DIR/$tdir.reposname
7051         $RUNAS cvs -d $DIR/$tdir.cvsroot co $tdir.reposname
7052
7053         cd $DIR/$tdir.reposname
7054         $RUNAS touch foo99
7055         $RUNAS cvs add -m 'addmsg' foo99
7056         $RUNAS cvs update
7057         $RUNAS cvs commit -m 'nomsg' foo99
7058         rm -fr $DIR/$tdir.cvsroot
7059 }
7060 run_test 99 "cvs strange file/directory operations"
7061
7062 test_100() {
7063         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7064         [[ "$NETTYPE" =~ tcp ]] ||
7065                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" &&
7066                         return ; }
7067
7068         remote_ost_nodsh && skip "remote OST with nodsh" && return
7069         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7070         remote_servers ||
7071                 { skip "useless for local single node setup" && return; }
7072
7073         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
7074                 [ "$PROT" != "tcp" ] && continue
7075                 RPORT=$(echo $REMOTE | cut -d: -f2)
7076                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
7077
7078                 rc=0
7079                 LPORT=`echo $LOCAL | cut -d: -f2`
7080                 if [ $LPORT -ge 1024 ]; then
7081                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
7082                         netstat -tna
7083                         error_exit "local: $LPORT > 1024, remote: $RPORT"
7084                 fi
7085         done
7086         [ "$rc" = 0 ] || error_exit "privileged port not found" )
7087 }
7088 run_test 100 "check local port using privileged port ==========="
7089
7090 function get_named_value()
7091 {
7092     local tag
7093
7094     tag=$1
7095     while read ;do
7096         line=$REPLY
7097         case $line in
7098         $tag*)
7099             echo $line | sed "s/^$tag[ ]*//"
7100             break
7101             ;;
7102         esac
7103     done
7104 }
7105
7106 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
7107                    awk '/^max_cached_mb/ { print $2 }')
7108
7109 cleanup_101a() {
7110         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
7111         trap 0
7112 }
7113
7114 test_101a() {
7115         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7116         [ $MDSCOUNT -ge 2 ] && skip "needs < 2 MDTs" && return #LU-4322
7117         local s
7118         local discard
7119         local nreads=10000
7120         local cache_limit=32
7121
7122         $LCTL set_param -n osc.*-osc*.rpc_stats 0
7123         trap cleanup_101a EXIT
7124         $LCTL set_param -n llite.*.read_ahead_stats 0
7125         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
7126
7127         #
7128         # randomly read 10000 of 64K chunks from file 3x 32MB in size
7129         #
7130         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
7131         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
7132
7133         discard=0
7134         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
7135                 get_named_value 'read but discarded' | cut -d" " -f1); do
7136                         discard=$(($discard + $s))
7137         done
7138         cleanup_101a
7139
7140         if [[ $(($discard * 10)) -gt $nreads ]]; then
7141                 $LCTL get_param osc.*-osc*.rpc_stats
7142                 $LCTL get_param llite.*.read_ahead_stats
7143                 error "too many ($discard) discarded pages"
7144         fi
7145         rm -f $DIR/$tfile || true
7146 }
7147 run_test 101a "check read-ahead for random reads"
7148
7149 setup_test101bc() {
7150         test_mkdir $DIR/$tdir
7151         local STRIPE_SIZE=$1
7152         local FILE_LENGTH=$2
7153         STRIPE_OFFSET=0
7154
7155         local FILE_SIZE_MB=$((FILE_LENGTH / STRIPE_SIZE))
7156
7157         local list=$(comma_list $(osts_nodes))
7158         set_osd_param $list '' read_cache_enable 0
7159         set_osd_param $list '' writethrough_cache_enable 0
7160
7161         trap cleanup_test101bc EXIT
7162         # prepare the read-ahead file
7163         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
7164
7165         dd if=/dev/zero of=$DIR/$tfile bs=$STRIPE_SIZE \
7166                                 count=$FILE_SIZE_MB 2> /dev/null
7167
7168 }
7169
7170 cleanup_test101bc() {
7171         trap 0
7172         rm -rf $DIR/$tdir
7173         rm -f $DIR/$tfile
7174
7175         local list=$(comma_list $(osts_nodes))
7176         set_osd_param $list '' read_cache_enable 1
7177         set_osd_param $list '' writethrough_cache_enable 1
7178 }
7179
7180 calc_total() {
7181         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
7182 }
7183
7184 ra_check_101() {
7185         local READ_SIZE=$1
7186         local STRIPE_SIZE=$2
7187         local FILE_LENGTH=$3
7188         local RA_INC=1048576
7189         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
7190         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
7191                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
7192         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
7193                         get_named_value 'read but discarded' |
7194                         cut -d" " -f1 | calc_total)
7195         if [[ $DISCARD -gt $discard_limit ]]; then
7196                 $LCTL get_param llite.*.read_ahead_stats
7197                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
7198         else
7199                 echo "Read-ahead success for size ${READ_SIZE}"
7200         fi
7201 }
7202
7203 test_101b() {
7204         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7205         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7206         local STRIPE_SIZE=1048576
7207         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
7208         if [ $SLOW == "yes" ]; then
7209                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
7210         else
7211                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
7212         fi
7213
7214         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
7215
7216         # prepare the read-ahead file
7217         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
7218         cancel_lru_locks osc
7219         for BIDX in 2 4 8 16 32 64 128 256
7220         do
7221                 local BSIZE=$((BIDX*4096))
7222                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
7223                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
7224                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
7225                 $LCTL set_param -n llite.*.read_ahead_stats 0
7226                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
7227                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
7228                 cancel_lru_locks osc
7229                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
7230         done
7231         cleanup_test101bc
7232         true
7233 }
7234 run_test 101b "check stride-io mode read-ahead ================="
7235
7236 test_101c() {
7237         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7238         local STRIPE_SIZE=1048576
7239         local FILE_LENGTH=$((STRIPE_SIZE*100))
7240         local nreads=10000
7241         local osc_rpc_stats
7242
7243         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
7244
7245         cancel_lru_locks osc
7246         $LCTL set_param osc.*.rpc_stats 0
7247         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
7248         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
7249                 local stats=$($LCTL get_param -n $osc_rpc_stats)
7250                 local lines=$(echo "$stats" | awk 'END {print NR;}')
7251                 local size
7252
7253                 if [ $lines -le 20 ]; then
7254                         continue
7255                 fi
7256                 for size in 1 2 4 8; do
7257                         local rpc=$(echo "$stats" |
7258                                     awk '($1 == "'$size':") {print $2; exit; }')
7259                         [ $rpc != 0 ] &&
7260                                 error "Small $((size*4))k read IO $rpc !"
7261                 done
7262                 echo "$osc_rpc_stats check passed!"
7263         done
7264         cleanup_test101bc
7265         true
7266 }
7267 run_test 101c "check stripe_size aligned read-ahead ================="
7268
7269 set_read_ahead() {
7270         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
7271         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
7272 }
7273
7274 test_101d() {
7275         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7276         local file=$DIR/$tfile
7277         local sz_MB=${FILESIZE_101d:-500}
7278         local ra_MB=${READAHEAD_MB:-40}
7279
7280         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
7281         [ $free_MB -lt $sz_MB ] &&
7282                 skip "Need free space ${sz_MB}M, have ${free_MB}M" && return
7283
7284         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
7285         $SETSTRIPE -c -1 $file || error "setstripe failed"
7286
7287         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
7288         echo Cancel LRU locks on lustre client to flush the client cache
7289         cancel_lru_locks osc
7290
7291         echo Disable read-ahead
7292         local old_READAHEAD=$(set_read_ahead 0)
7293
7294         echo Reading the test file $file with read-ahead disabled
7295         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
7296
7297         echo Cancel LRU locks on lustre client to flush the client cache
7298         cancel_lru_locks osc
7299         echo Enable read-ahead with ${ra_MB}MB
7300         set_read_ahead $ra_MB
7301
7302         echo Reading the test file $file with read-ahead enabled
7303         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
7304
7305         echo "read-ahead disabled time read $raOFF"
7306         echo "read-ahead enabled  time read $raON"
7307
7308         set_read_ahead $old_READAHEAD
7309         rm -f $file
7310         wait_delete_completed
7311
7312         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
7313                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
7314 }
7315 run_test 101d "file read with and without read-ahead enabled"
7316
7317 test_101e() {
7318         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7319         local file=$DIR/$tfile
7320         local size_KB=500  #KB
7321         local count=100
7322         local bsize=1024
7323
7324         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
7325         local need_KB=$((count * size_KB))
7326         [[ $free_KB -le $need_KB ]] &&
7327                 skip_env "Need free space $need_KB, have $free_KB" && return
7328
7329         echo "Creating $count ${size_KB}K test files"
7330         for ((i = 0; i < $count; i++)); do
7331                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
7332         done
7333
7334         echo "Cancel LRU locks on lustre client to flush the client cache"
7335         cancel_lru_locks $OSC
7336
7337         echo "Reset readahead stats"
7338         $LCTL set_param -n llite.*.read_ahead_stats 0
7339
7340         for ((i = 0; i < $count; i++)); do
7341                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
7342         done
7343
7344         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
7345                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
7346
7347         for ((i = 0; i < $count; i++)); do
7348                 rm -rf $file.$i 2>/dev/null
7349         done
7350
7351         #10000 means 20% reads are missing in readahead
7352         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
7353 }
7354 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
7355
7356 test_101f() {
7357         which iozone || { skip "no iozone installed" && return; }
7358
7359         local old_debug=$($LCTL get_param debug)
7360         old_debug=${old_debug#*=}
7361         $LCTL set_param debug="reada mmap"
7362
7363         # create a test file
7364         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
7365
7366         echo Cancel LRU locks on lustre client to flush the client cache
7367         cancel_lru_locks osc
7368
7369         echo Reset readahead stats
7370         $LCTL set_param -n llite.*.read_ahead_stats 0
7371
7372         echo mmap read the file with small block size
7373         iozone -i 1 -u 1 -l 1 -+n -r 32k -s 128m -B -f $DIR/$tfile \
7374                 > /dev/null 2>&1
7375
7376         echo checking missing pages
7377         $LCTL get_param llite.*.read_ahead_stats
7378         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
7379                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
7380
7381         $LCTL set_param debug="$old_debug"
7382         [ $miss -lt 3 ] || error "misses too much pages ('$miss')!"
7383         rm -f $DIR/$tfile
7384 }
7385 run_test 101f "check mmap read performance"
7386
7387 test_101g_brw_size_test() {
7388         local mb=$1
7389         local pages=$((mb * 1048576 / $(page_size)))
7390
7391         $LCTL set_param osc.*.max_pages_per_rpc=${mb}M ||
7392                 { error "unable to set max_pages_per_rpc=${mb}M"; return 1; }
7393         for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
7394                 [ $mp -ne $pages ] && error "max_pages_per_rpc $mp != $pages" &&
7395                         return 2
7396         done
7397
7398         $LCTL set_param -n osc.*.rpc_stats=0
7399
7400         # 10 RPCs should be enough for the test
7401         local count=10
7402         dd if=/dev/zero of=$DIR/$tfile bs=${mb}M count=$count ||
7403                 { error "dd write ${mb} MB blocks failed"; return 3; }
7404         cancel_lru_locks osc
7405         dd of=/dev/null if=$DIR/$tfile bs=${mb}M count=$count ||
7406                 { error "dd write ${mb} MB blocks failed"; return 4; }
7407
7408         # calculate number of full-sized read and write RPCs
7409         rpcs=($($LCTL get_param -n 'osc.*.rpc_stats' |
7410                 sed -n '/pages per rpc/,/^$/p' |
7411                 awk '/'$pages':/ { reads += $2; writes += $6 }; \
7412                 END { print reads,writes }'))
7413         [ ${rpcs[0]} -ne $count ] && error "${rpcs[0]} != $count read RPCs" &&
7414                 return 5
7415         [ ${rpcs[1]} -ne $count ] && error "${rpcs[1]} != $count write RPCs" &&
7416                 return 6
7417
7418         return 0
7419 }
7420
7421 test_101g() {
7422         local rpcs
7423         local osts=$(get_facets OST)
7424         local list=$(comma_list $(osts_nodes))
7425         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
7426         local brw_size="obdfilter.*.brw_size"
7427         local ostver=$(lustre_version_code ost1)
7428         local cliver=$(lustre_version_code client)
7429
7430         $LFS setstripe -i 0 -c 1 $DIR/$tfile
7431
7432         local orig_mb=$(do_facet ost1 $LCTL get_param -n $brw_size | head -n 1)
7433         if [ $ostver -ge $(version_code 2.8.52) -o \
7434              \( $ostver -ge $(version_code 2.7.17) -a \
7435                 $ostver -lt $(version_code 2.7.50) \) ] &&
7436            [ $cliver -ge $(version_code 2.8.52) -o \
7437              \( $cliver -ge $(version_code 2.7.17) -a \
7438                 $cliver -lt $(version_code 2.7.50) \) ]; then
7439                 [ $ostver -ge $(version_code 2.9.52) ] && suffix="M"
7440                 if [[ $orig_mb -lt 16 ]]; then
7441                         save_lustre_params $osts "$brw_size" > $p
7442                         do_nodes $list $LCTL set_param -n $brw_size=16$suffix ||
7443                                 error "set 16MB RPC size failed"
7444
7445                         echo "remount client to enable new RPC size"
7446                         remount_client $MOUNT || error "remount_client failed"
7447                 fi
7448
7449                 test_101g_brw_size_test 16 || error "16MB RPC test failed"
7450                 # should be able to set brw_size=12, but no rpc_stats for that
7451                 test_101g_brw_size_test 8 || error "8MB RPC test failed"
7452         fi
7453
7454         test_101g_brw_size_test 4 || error "4MB RPC test failed"
7455
7456         if [[ $orig_mb -lt 16 ]]; then
7457                 restore_lustre_params < $p
7458                 remount_client $MOUNT || error "remount_client restore failed"
7459         fi
7460
7461         rm -f $p $DIR/$tfile
7462 }
7463 run_test 101g "Big bulk(4/16 MiB) readahead"
7464
7465 setup_test102() {
7466         test_mkdir $DIR/$tdir
7467         chown $RUNAS_ID $DIR/$tdir
7468         STRIPE_SIZE=65536
7469         STRIPE_OFFSET=1
7470         STRIPE_COUNT=$OSTCOUNT
7471         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
7472
7473         trap cleanup_test102 EXIT
7474         cd $DIR
7475         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
7476         cd $DIR/$tdir
7477         for num in 1 2 3 4; do
7478                 for count in $(seq 1 $STRIPE_COUNT); do
7479                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
7480                                 local size=`expr $STRIPE_SIZE \* $num`
7481                                 local file=file"$num-$idx-$count"
7482                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
7483                         done
7484                 done
7485         done
7486
7487         cd $DIR
7488         $1 tar cf $TMP/f102.tar $tdir --xattrs
7489 }
7490
7491 cleanup_test102() {
7492         trap 0
7493         rm -f $TMP/f102.tar
7494         rm -rf $DIR/d0.sanity/d102
7495 }
7496
7497 test_102a() {
7498         local testfile=$DIR/$tfile
7499
7500         touch $testfile
7501
7502         [ "$UID" != 0 ] && skip_env "must run as root" && return
7503         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
7504                 skip_env "must have user_xattr" && return
7505
7506         [ -z "$(which setfattr 2>/dev/null)" ] &&
7507                 skip_env "could not find setfattr" && return
7508
7509         echo "set/get xattr..."
7510         setfattr -n trusted.name1 -v value1 $testfile ||
7511                 error "setfattr -n trusted.name1=value1 $testfile failed"
7512         getfattr -n trusted.name1 $testfile 2> /dev/null |
7513           grep "trusted.name1=.value1" ||
7514                 error "$testfile missing trusted.name1=value1"
7515
7516         setfattr -n user.author1 -v author1 $testfile ||
7517                 error "setfattr -n user.author1=author1 $testfile failed"
7518         getfattr -n user.author1 $testfile 2> /dev/null |
7519           grep "user.author1=.author1" ||
7520                 error "$testfile missing trusted.author1=author1"
7521
7522         echo "listxattr..."
7523         setfattr -n trusted.name2 -v value2 $testfile ||
7524                 error "$testfile unable to set trusted.name2"
7525         setfattr -n trusted.name3 -v value3 $testfile ||
7526                 error "$testfile unable to set trusted.name3"
7527         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
7528             grep "trusted.name" | wc -l) -eq 3 ] ||
7529                 error "$testfile missing 3 trusted.name xattrs"
7530
7531         setfattr -n user.author2 -v author2 $testfile ||
7532                 error "$testfile unable to set user.author2"
7533         setfattr -n user.author3 -v author3 $testfile ||
7534                 error "$testfile unable to set user.author3"
7535         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
7536             grep "user.author" | wc -l) -eq 3 ] ||
7537                 error "$testfile missing 3 user.author xattrs"
7538
7539         echo "remove xattr..."
7540         setfattr -x trusted.name1 $testfile ||
7541                 error "$testfile error deleting trusted.name1"
7542         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
7543                 error "$testfile did not delete trusted.name1 xattr"
7544
7545         setfattr -x user.author1 $testfile ||
7546                 error "$testfile error deleting user.author1"
7547         echo "set lustre special xattr ..."
7548         $LFS setstripe -c1 $testfile
7549         local lovea=$(getfattr -n "trusted.lov" -e hex $testfile |
7550                 awk -F "=" '/trusted.lov/ { print $2 }' )
7551         setfattr -n "trusted.lov" -v $lovea $testfile ||
7552                 error "$testfile doesn't ignore setting trusted.lov again"
7553         setfattr -n "trusted.lov" -v "invalid_value" $testfile &&
7554                 error "$testfile allow setting invalid trusted.lov"
7555         rm -f $testfile
7556 }
7557 run_test 102a "user xattr test =================================="
7558
7559 test_102b() {
7560         [ -z "$(which setfattr 2>/dev/null)" ] &&
7561                 skip_env "could not find setfattr" && return
7562
7563         # b10930: get/set/list trusted.lov xattr
7564         echo "get/set/list trusted.lov xattr ..."
7565         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7566         local testfile=$DIR/$tfile
7567         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
7568                 error "setstripe failed"
7569         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
7570                 error "getstripe failed"
7571         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
7572                 error "can't get trusted.lov from $testfile"
7573
7574         local testfile2=${testfile}2
7575         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
7576                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
7577
7578         $MCREATE $testfile2
7579         setfattr -n trusted.lov -v $value $testfile2
7580         local stripe_size=$($GETSTRIPE -S $testfile2)
7581         local stripe_count=$($GETSTRIPE -c $testfile2)
7582         [[ $stripe_size -eq 65536 ]] ||
7583                 error "stripe size $stripe_size != 65536"
7584         [[ $stripe_count -eq $STRIPECOUNT ]] ||
7585                 error "stripe count $stripe_count != $STRIPECOUNT"
7586         rm -f $DIR/$tfile
7587 }
7588 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
7589
7590 test_102c() {
7591         [ -z "$(which setfattr 2>/dev/null)" ] &&
7592                 skip_env "could not find setfattr" && return
7593
7594         # b10930: get/set/list lustre.lov xattr
7595         echo "get/set/list lustre.lov xattr ..."
7596         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7597         test_mkdir $DIR/$tdir
7598         chown $RUNAS_ID $DIR/$tdir
7599         local testfile=$DIR/$tdir/$tfile
7600         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
7601                 error "setstripe failed"
7602         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
7603                 error "getstripe failed"
7604         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
7605         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
7606
7607         local testfile2=${testfile}2
7608         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
7609                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
7610
7611         $RUNAS $MCREATE $testfile2
7612         $RUNAS setfattr -n lustre.lov -v $value $testfile2
7613         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
7614         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
7615         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
7616         [ $stripe_count -eq $STRIPECOUNT ] ||
7617                 error "stripe count $stripe_count != $STRIPECOUNT"
7618 }
7619 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
7620
7621 compare_stripe_info1() {
7622         local stripe_index_all_zero=true
7623
7624         for num in 1 2 3 4; do
7625                 for count in $(seq 1 $STRIPE_COUNT); do
7626                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
7627                                 local size=$((STRIPE_SIZE * num))
7628                                 local file=file"$num-$offset-$count"
7629                                 stripe_size=$($LFS getstripe -S $PWD/$file)
7630                                 [[ $stripe_size -ne $size ]] &&
7631                                     error "$file: size $stripe_size != $size"
7632                                 stripe_count=$($LFS getstripe -c $PWD/$file)
7633                                 # allow fewer stripes to be created, ORI-601
7634                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
7635                                     error "$file: count $stripe_count != $count"
7636                                 stripe_index=$($LFS getstripe -i $PWD/$file)
7637                                 [[ $stripe_index -ne 0 ]] &&
7638                                         stripe_index_all_zero=false
7639                         done
7640                 done
7641         done
7642         $stripe_index_all_zero &&
7643                 error "all files are being extracted starting from OST index 0"
7644         return 0
7645 }
7646
7647 have_xattrs_include() {
7648         tar --help | grep -q xattrs-include &&
7649                 echo --xattrs-include="lustre.*"
7650 }
7651
7652 test_102d() {
7653         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7654         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7655         XINC=$(have_xattrs_include)
7656         setup_test102
7657         tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
7658         cd $DIR/$tdir/$tdir
7659         compare_stripe_info1
7660 }
7661 run_test 102d "tar restore stripe info from tarfile,not keep osts"
7662
7663 test_102f() {
7664         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7665         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7666         XINC=$(have_xattrs_include)
7667         setup_test102
7668         test_mkdir $DIR/$tdir.restore
7669         cd $DIR
7670         tar cf - --xattrs $tdir | tar xf - \
7671                 -C $DIR/$tdir.restore --xattrs $XINC
7672         cd $DIR/$tdir.restore/$tdir
7673         compare_stripe_info1
7674 }
7675 run_test 102f "tar copy files, not keep osts"
7676
7677 grow_xattr() {
7678         local xsize=${1:-1024}  # in bytes
7679         local file=$DIR/$tfile
7680
7681         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
7682                 skip "must have user_xattr" && return 0
7683         [ -z "$(which setfattr 2>/dev/null)" ] &&
7684                 skip_env "could not find setfattr" && return 0
7685         [ -z "$(which getfattr 2>/dev/null)" ] &&
7686                 skip_env "could not find getfattr" && return 0
7687
7688         touch $file
7689
7690         local value="$(generate_string $xsize)"
7691
7692         local xbig=trusted.big
7693         log "save $xbig on $file"
7694         setfattr -n $xbig -v $value $file ||
7695                 error "saving $xbig on $file failed"
7696
7697         local orig=$(get_xattr_value $xbig $file)
7698         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
7699
7700         local xsml=trusted.sml
7701         log "save $xsml on $file"
7702         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
7703
7704         local new=$(get_xattr_value $xbig $file)
7705         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
7706
7707         log "grow $xsml on $file"
7708         setfattr -n $xsml -v "$value" $file ||
7709                 error "growing $xsml on $file failed"
7710
7711         new=$(get_xattr_value $xbig $file)
7712         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
7713         log "$xbig still valid after growing $xsml"
7714
7715         rm -f $file
7716 }
7717
7718 test_102h() { # bug 15777
7719         grow_xattr 1024
7720 }
7721 run_test 102h "grow xattr from inside inode to external block"
7722
7723 test_102ha() {
7724         large_xattr_enabled || { skip "large_xattr disabled" && return; }
7725         grow_xattr $(max_xattr_size)
7726 }
7727 run_test 102ha "grow xattr from inside inode to external inode"
7728
7729 test_102i() { # bug 17038
7730         [ -z "$(which getfattr 2>/dev/null)" ] &&
7731                 skip "could not find getfattr" && return
7732         touch $DIR/$tfile
7733         ln -s $DIR/$tfile $DIR/${tfile}link
7734         getfattr -n trusted.lov $DIR/$tfile ||
7735                 error "lgetxattr on $DIR/$tfile failed"
7736         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
7737                 grep -i "no such attr" ||
7738                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
7739         rm -f $DIR/$tfile $DIR/${tfile}link
7740 }
7741 run_test 102i "lgetxattr test on symbolic link ============"
7742
7743 test_102j() {
7744         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7745         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7746         XINC=$(have_xattrs_include)
7747         setup_test102 "$RUNAS"
7748         chown $RUNAS_ID $DIR/$tdir
7749         $RUNAS tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
7750         cd $DIR/$tdir/$tdir
7751         compare_stripe_info1 "$RUNAS"
7752 }
7753 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
7754
7755 test_102k() {
7756         [ -z "$(which setfattr 2>/dev/null)" ] &&
7757                 skip "could not find setfattr" && return
7758         touch $DIR/$tfile
7759         # b22187 just check that does not crash for regular file.
7760         setfattr -n trusted.lov $DIR/$tfile
7761         # b22187 'setfattr -n trusted.lov' should remove LOV EA for directories
7762         local test_kdir=$DIR/$tdir
7763         test_mkdir $test_kdir
7764         local default_size=$($LFS getstripe -S $test_kdir)
7765         local default_count=$($LFS getstripe -c $test_kdir)
7766         local default_offset=$($LFS getstripe -i $test_kdir)
7767         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
7768                 error 'dir setstripe failed'
7769         setfattr -n trusted.lov $test_kdir
7770         local stripe_size=$($LFS getstripe -S $test_kdir)
7771         local stripe_count=$($LFS getstripe -c $test_kdir)
7772         local stripe_offset=$($LFS getstripe -i $test_kdir)
7773         [ $stripe_size -eq $default_size ] ||
7774                 error "stripe size $stripe_size != $default_size"
7775         [ $stripe_count -eq $default_count ] ||
7776                 error "stripe count $stripe_count != $default_count"
7777         [ $stripe_offset -eq $default_offset ] ||
7778                 error "stripe offset $stripe_offset != $default_offset"
7779         rm -rf $DIR/$tfile $test_kdir
7780 }
7781 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
7782
7783 test_102l() {
7784         [ -z "$(which getfattr 2>/dev/null)" ] &&
7785                 skip "could not find getfattr" && return
7786
7787         # LU-532 trusted. xattr is invisible to non-root
7788         local testfile=$DIR/$tfile
7789
7790         touch $testfile
7791
7792         echo "listxattr as user..."
7793         chown $RUNAS_ID $testfile
7794         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
7795             grep -q "trusted" &&
7796                 error "$testfile trusted xattrs are user visible"
7797
7798         return 0;
7799 }
7800 run_test 102l "listxattr size test =================================="
7801
7802 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
7803         local path=$DIR/$tfile
7804         touch $path
7805
7806         listxattr_size_check $path || error "listattr_size_check $path failed"
7807 }
7808 run_test 102m "Ensure listxattr fails on small bufffer ========"
7809
7810 cleanup_test102
7811
7812 getxattr() { # getxattr path name
7813         # Return the base64 encoding of the value of xattr name on path.
7814         local path=$1
7815         local name=$2
7816
7817         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
7818         # file: $path
7819         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7820         #
7821         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7822
7823         getfattr --absolute-names --encoding=base64 --name=$name $path |
7824                 awk -F= -v name=$name '$1 == name {
7825                         print substr($0, index($0, "=") + 1);
7826         }'
7827 }
7828
7829 test_102n() { # LU-4101 mdt: protect internal xattrs
7830         [ -z "$(which setfattr 2>/dev/null)" ] &&
7831                 skip "could not find setfattr" && return
7832         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.50) ]
7833         then
7834                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
7835                 return
7836         fi
7837
7838         local file0=$DIR/$tfile.0
7839         local file1=$DIR/$tfile.1
7840         local xattr0=$TMP/$tfile.0
7841         local xattr1=$TMP/$tfile.1
7842         local namelist="lov lma lmv link fid version som hsm"
7843         local name
7844         local value
7845
7846         rm -rf $file0 $file1 $xattr0 $xattr1
7847         touch $file0 $file1
7848
7849         # Get 'before' xattrs of $file1.
7850         getfattr --absolute-names --dump --match=- $file1 > $xattr0
7851
7852         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
7853                 namelist+=" lfsck_namespace"
7854         for name in $namelist; do
7855                 # Try to copy xattr from $file0 to $file1.
7856                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
7857
7858                 setfattr --name=trusted.$name --value="$value" $file1 ||
7859                         error "setxattr 'trusted.$name' failed"
7860
7861                 # Try to set a garbage xattr.
7862                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
7863
7864                 if [[ x$name == "xlov" ]]; then
7865                         setfattr --name=trusted.lov --value="$value" $file1 &&
7866                         error "setxattr invalid 'trusted.lov' success"
7867                 else
7868                         setfattr --name=trusted.$name --value="$value" $file1 ||
7869                                 error "setxattr invalid 'trusted.$name' failed"
7870                 fi
7871
7872                 # Try to remove the xattr from $file1. We don't care if this
7873                 # appears to succeed or fail, we just don't want there to be
7874                 # any changes or crashes.
7875                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7876         done
7877
7878         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.6.50) ]
7879         then
7880                 name="lfsck_ns"
7881                 # Try to copy xattr from $file0 to $file1.
7882                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
7883
7884                 setfattr --name=trusted.$name --value="$value" $file1 ||
7885                         error "setxattr 'trusted.$name' failed"
7886
7887                 # Try to set a garbage xattr.
7888                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
7889
7890                 setfattr --name=trusted.$name --value="$value" $file1 ||
7891                         error "setxattr 'trusted.$name' failed"
7892
7893                 # Try to remove the xattr from $file1. We don't care if this
7894                 # appears to succeed or fail, we just don't want there to be
7895                 # any changes or crashes.
7896                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7897         fi
7898
7899         # Get 'after' xattrs of file1.
7900         getfattr --absolute-names --dump --match=- $file1 > $xattr1
7901
7902         if ! diff $xattr0 $xattr1; then
7903                 error "before and after xattrs of '$file1' differ"
7904         fi
7905
7906         rm -rf $file0 $file1 $xattr0 $xattr1
7907
7908         return 0
7909 }
7910 run_test 102n "silently ignore setxattr on internal trusted xattrs"
7911
7912 test_102p() { # LU-4703 setxattr did not check ownership
7913         local testfile=$DIR/$tfile
7914
7915         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.56) ] &&
7916                 skip "MDS needs to be at least 2.5.56" && return
7917
7918         touch $testfile
7919
7920         echo "setfacl as user..."
7921         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
7922         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
7923
7924         echo "setfattr as user..."
7925         setfacl -m "u:$RUNAS_ID:---" $testfile
7926         $RUNAS setfattr -x system.posix_acl_access $testfile
7927         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
7928 }
7929 run_test 102p "check setxattr(2) correctly fails without permission"
7930
7931 test_102q() {
7932         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
7933                 skip "MDS needs to be at least 2.6.92" && return
7934         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
7935 }
7936 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
7937
7938 test_102r() {
7939         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.93) ] &&
7940                 skip "MDS needs to be at least 2.6.93" && return
7941         touch $DIR/$tfile || error "touch"
7942         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
7943         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
7944         rm $DIR/$tfile || error "rm"
7945
7946         #normal directory
7947         mkdir -p $DIR/$tdir || error "mkdir"
7948         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7949         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7950         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7951                 error "$testfile error deleting user.author1"
7952         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7953                 grep "user.$(basename $tdir)" &&
7954                 error "$tdir did not delete user.$(basename $tdir)"
7955         rmdir $DIR/$tdir || error "rmdir"
7956
7957         #striped directory
7958         test_mkdir $DIR/$tdir
7959         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7960         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7961         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7962                 error "$testfile error deleting user.author1"
7963         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7964                 grep "user.$(basename $tdir)" &&
7965                 error "$tdir did not delete user.$(basename $tdir)"
7966         rmdir $DIR/$tdir || error "rm striped dir"
7967 }
7968 run_test 102r "set EAs with empty values"
7969
7970 run_acl_subtest()
7971 {
7972     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
7973     return $?
7974 }
7975
7976 test_103a() {
7977         [ "$UID" != 0 ] && skip_env "must run as root" && return
7978         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
7979                 skip "must have acl enabled" && return
7980         [ -z "$(which setfacl 2>/dev/null)" ] &&
7981                 skip_env "could not find setfacl" && return
7982         $GSS && skip "could not run under gss" && return
7983         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7984
7985         gpasswd -a daemon bin                           # LU-5641
7986         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
7987
7988         declare -a identity_old
7989
7990         for num in $(seq $MDSCOUNT); do
7991                 switch_identity $num true || identity_old[$num]=$?
7992         done
7993
7994         SAVE_UMASK=$(umask)
7995         umask 0022
7996         mkdir -p $DIR/$tdir
7997         cd $DIR/$tdir
7998
7999         echo "performing cp ..."
8000         run_acl_subtest cp || error "run_acl_subtest cp failed"
8001         echo "performing getfacl-noacl..."
8002         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
8003         echo "performing misc..."
8004         run_acl_subtest misc || error  "misc test failed"
8005         echo "performing permissions..."
8006         run_acl_subtest permissions || error "permissions failed"
8007         # LU-1482 mdd: Setting xattr are properly checked with and without ACLs
8008         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.8.55) -o \
8009              \( $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6) -a \
8010              $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.29) \) ]
8011         then
8012                 echo "performing permissions xattr..."
8013                 run_acl_subtest permissions_xattr ||
8014                         error "permissions_xattr failed"
8015         fi
8016         echo "performing setfacl..."
8017         run_acl_subtest setfacl || error  "setfacl test failed"
8018
8019         # inheritance test got from HP
8020         echo "performing inheritance..."
8021         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
8022         chmod +x make-tree || error "chmod +x failed"
8023         run_acl_subtest inheritance || error "inheritance test failed"
8024         rm -f make-tree
8025
8026         echo "LU-974 ignore umask when acl is enabled..."
8027         run_acl_subtest 974 || error "LU-974 umask test failed"
8028         if [ $MDSCOUNT -ge 2 ]; then
8029                 run_acl_subtest 974_remote ||
8030                         error "LU-974 umask test failed under remote dir"
8031         fi
8032
8033         echo "LU-2561 newly created file is same size as directory..."
8034         if [ $(facet_fstype $SINGLEMDS) != "zfs" ]; then
8035                 run_acl_subtest 2561 || error "LU-2561 test failed"
8036         else
8037                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
8038         fi
8039
8040         run_acl_subtest 4924 || error "LU-4924 test failed"
8041
8042         cd $SAVE_PWD
8043         umask $SAVE_UMASK
8044
8045         for num in $(seq $MDSCOUNT); do
8046                 if [ "${identity_old[$num]}" = 1 ]; then
8047                         switch_identity $num false || identity_old[$num]=$?
8048                 fi
8049         done
8050 }
8051 run_test 103a "acl test ========================================="
8052
8053 test_103c() {
8054         mkdir -p $DIR/$tdir
8055         cp -rp $DIR/$tdir $DIR/$tdir.bak
8056
8057         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
8058                 error "$DIR/$tdir shouldn't contain default ACL"
8059         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
8060                 error "$DIR/$tdir.bak shouldn't contain default ACL"
8061         true
8062 }
8063 run_test 103c "'cp -rp' won't set empty acl"
8064
8065 test_104a() {
8066         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8067         touch $DIR/$tfile
8068         lfs df || error "lfs df failed"
8069         lfs df -ih || error "lfs df -ih failed"
8070         lfs df -h $DIR || error "lfs df -h $DIR failed"
8071         lfs df -i $DIR || error "lfs df -i $DIR failed"
8072         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
8073         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
8074
8075         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
8076         lctl --device %$OSC deactivate
8077         lfs df || error "lfs df with deactivated OSC failed"
8078         lctl --device %$OSC activate
8079         # wait the osc back to normal
8080         wait_osc_import_state client ost FULL
8081
8082         lfs df || error "lfs df with reactivated OSC failed"
8083         rm -f $DIR/$tfile
8084 }
8085 run_test 104a "lfs df [-ih] [path] test ========================="
8086
8087 test_104b() {
8088         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8089         [ $RUNAS_ID -eq $UID ] &&
8090                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
8091         chmod 666 /dev/obd
8092         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
8093                         grep "Permission denied" | wc -l)))
8094         if [ $denied_cnt -ne 0 ]; then
8095                 error "lfs check servers test failed"
8096         fi
8097 }
8098 run_test 104b "$RUNAS lfs check servers test ===================="
8099
8100 test_105a() {
8101         # doesn't work on 2.4 kernels
8102         touch $DIR/$tfile
8103         if $(flock_is_enabled); then
8104                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
8105         else
8106                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
8107         fi
8108         rm -f $DIR/$tfile
8109 }
8110 run_test 105a "flock when mounted without -o flock test ========"
8111
8112 test_105b() {
8113         touch $DIR/$tfile
8114         if $(flock_is_enabled); then
8115                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
8116         else
8117                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
8118         fi
8119         rm -f $DIR/$tfile
8120 }
8121 run_test 105b "fcntl when mounted without -o flock test ========"
8122
8123 test_105c() {
8124         touch $DIR/$tfile
8125         if $(flock_is_enabled); then
8126                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
8127         else
8128                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
8129         fi
8130         rm -f $DIR/$tfile
8131 }
8132 run_test 105c "lockf when mounted without -o flock test"
8133
8134 test_105d() { # bug 15924
8135         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8136         test_mkdir $DIR/$tdir
8137         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
8138         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
8139         $LCTL set_param fail_loc=0x80000315
8140         flocks_test 2 $DIR/$tdir
8141 }
8142 run_test 105d "flock race (should not freeze) ========"
8143
8144 test_105e() { # bug 22660 && 22040
8145         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
8146         touch $DIR/$tfile
8147         flocks_test 3 $DIR/$tfile
8148 }
8149 run_test 105e "Two conflicting flocks from same process"
8150
8151 test_106() { #bug 10921
8152         test_mkdir $DIR/$tdir
8153         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
8154         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
8155 }
8156 run_test 106 "attempt exec of dir followed by chown of that dir"
8157
8158 test_107() {
8159         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8160         CDIR=`pwd`
8161         cd $DIR
8162
8163         local file=core
8164         rm -f $file
8165
8166         local save_pattern=$(sysctl -n kernel.core_pattern)
8167         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
8168         sysctl -w kernel.core_pattern=$file
8169         sysctl -w kernel.core_uses_pid=0
8170
8171         ulimit -c unlimited
8172         sleep 60 &
8173         SLEEPPID=$!
8174
8175         sleep 1
8176
8177         kill -s 11 $SLEEPPID
8178         wait $SLEEPPID
8179         if [ -e $file ]; then
8180                 size=`stat -c%s $file`
8181                 [ $size -eq 0 ] && error "Fail to create core file $file"
8182         else
8183                 error "Fail to create core file $file"
8184         fi
8185         rm -f $file
8186         sysctl -w kernel.core_pattern=$save_pattern
8187         sysctl -w kernel.core_uses_pid=$save_uses_pid
8188         cd $CDIR
8189 }
8190 run_test 107 "Coredump on SIG"
8191
8192 test_110() {
8193         test_mkdir $DIR/$tdir
8194         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255)
8195         $LFS mkdir -c $MDSCOUNT $DIR/$tdir/$(str_repeat 'b' 256) &&
8196                 error "mkdir with 256 char should fail, but did not"
8197         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
8198                 error "create with 255 char failed"
8199         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
8200                 error "create with 256 char should fail, but did not"
8201
8202         ls -l $DIR/$tdir
8203         rm -rf $DIR/$tdir
8204 }
8205 run_test 110 "filename length checking"
8206
8207 #
8208 # Purpose: To verify dynamic thread (OSS) creation.
8209 #
8210 test_115() {
8211         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8212         remote_ost_nodsh && skip "remote OST with nodsh" && return
8213
8214         # Lustre does not stop service threads once they are started.
8215         # Reset number of running threads to default.
8216         stopall
8217         setupall
8218
8219         local OSTIO_pre
8220         local save_params="$TMP/sanity-$TESTNAME.parameters"
8221
8222         # Get ll_ost_io count before I/O
8223         OSTIO_pre=$(do_facet ost1 \
8224                 "$LCTL get_param ost.OSS.ost_io.threads_started | cut -d= -f2")
8225         # Exit if lustre is not running (ll_ost_io not running).
8226         [ -z "$OSTIO_pre" ] && error "no OSS threads"
8227
8228         echo "Starting with $OSTIO_pre threads"
8229         local thread_max=$((OSTIO_pre * 2))
8230         local rpc_in_flight=$((thread_max * 2))
8231         # Number of I/O Process proposed to be started.
8232         local nfiles
8233         local facets=$(get_facets OST)
8234
8235         save_lustre_params client "osc.*OST*.max_rpcs_in_flight" > $save_params
8236         save_lustre_params $facets "ost.OSS.ost_io.threads_max" >> $save_params
8237
8238         # Set in_flight to $rpc_in_flight
8239         $LCTL set_param osc.*OST*.max_rpcs_in_flight=$rpc_in_flight ||
8240                 error "Failed to set max_rpcs_in_flight to $rpc_in_flight"
8241         nfiles=${rpc_in_flight}
8242         # Set ost thread_max to $thread_max
8243         do_facet ost1 "$LCTL set_param ost.OSS.ost_io.threads_max=$thread_max"
8244
8245         # 5 Minutes should be sufficient for max number of OSS
8246         # threads(thread_max) to be created.
8247         local timeout=300
8248
8249         # Start I/O.
8250         local WTL=${WTL:-"$LUSTRE/tests/write_time_limit"}
8251         test_mkdir $DIR/$tdir
8252         for i in $(seq $nfiles); do
8253                 local file=$DIR/$tdir/${tfile}-$i
8254                 $LFS setstripe -c -1 -i 0 $file
8255                 ($WTL $file $timeout)&
8256         done
8257
8258         # I/O Started - Wait for thread_started to reach thread_max or report
8259         # error if thread_started is more than thread_max.
8260         echo "Waiting for thread_started to reach thread_max"
8261         local thread_started=0
8262         local end_time=$((SECONDS + timeout))
8263
8264         while [ $SECONDS -le $end_time ] ; do
8265                 echo -n "."
8266                 # Get ost i/o thread_started count.
8267                 thread_started=$(do_facet ost1 \
8268                         "$LCTL get_param \
8269                         ost.OSS.ost_io.threads_started | cut -d= -f2")
8270                 # Break out if thread_started is equal/greater than thread_max
8271                 if [[ $thread_started -ge $thread_max ]]; then
8272                         echo ll_ost_io thread_started $thread_started, \
8273                                 equal/greater than thread_max $thread_max
8274                         break
8275                 fi
8276                 sleep 1
8277         done
8278
8279         # Cleanup - We have the numbers, Kill i/o jobs if running.
8280         jobcount=($(jobs -p))
8281         for i in $(seq 0 $((${#jobcount[@]}-1)))
8282         do
8283                 kill -9 ${jobcount[$i]}
8284                 if [ $? -ne 0 ] ; then
8285                         echo Warning: \
8286                         Failed to Kill \'WTL\(I/O\)\' with pid ${jobcount[$i]}
8287                 fi
8288         done
8289
8290         # Cleanup files left by WTL binary.
8291         for i in $(seq $nfiles); do
8292                 local file=$DIR/$tdir/${tfile}-$i
8293                 rm -rf $file
8294                 if [ $? -ne 0 ] ; then
8295                         echo "Warning: Failed to delete file $file"
8296                 fi
8297         done
8298
8299         restore_lustre_params <$save_params
8300         rm -f $save_params || echo "Warning: delete file '$save_params' failed"
8301
8302         # Error out if no new thread has started or Thread started is greater
8303         # than thread max.
8304         if [[ $thread_started -le $OSTIO_pre ||
8305                         $thread_started -gt $thread_max ]]; then
8306                 error "ll_ost_io: thread_started $thread_started" \
8307                       "OSTIO_pre $OSTIO_pre, thread_max $thread_max." \
8308                       "No new thread started or thread started greater " \
8309                       "than thread_max."
8310         fi
8311 }
8312 run_test 115 "verify dynamic thread creation===================="
8313
8314 free_min_max () {
8315         wait_delete_completed
8316         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
8317         echo "OST kbytes available: ${AVAIL[@]}"
8318         MAXV=${AVAIL[0]}
8319         MAXI=0
8320         MINV=${AVAIL[0]}
8321         MINI=0
8322         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
8323                 #echo OST $i: ${AVAIL[i]}kb
8324                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
8325                         MAXV=${AVAIL[i]}
8326                         MAXI=$i
8327                 fi
8328                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
8329                         MINV=${AVAIL[i]}
8330                         MINI=$i
8331                 fi
8332         done
8333         echo "Min free space: OST $MINI: $MINV"
8334         echo "Max free space: OST $MAXI: $MAXV"
8335 }
8336
8337 test_116a() { # was previously test_116()
8338         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8339         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8340
8341         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
8342
8343         echo -n "Free space priority "
8344         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
8345                 head -n1
8346         declare -a AVAIL
8347         free_min_max
8348
8349         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip" && return
8350         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip" \
8351                 && return
8352         trap simple_cleanup_common EXIT
8353
8354
8355         # Check if we need to generate uneven OSTs
8356         test_mkdir -p $DIR/$tdir/OST${MINI}
8357         local FILL=$((MINV / 4))
8358         local DIFF=$((MAXV - MINV))
8359         local DIFF2=$((DIFF * 100 / MINV))
8360
8361         local threshold=$(do_facet $SINGLEMDS \
8362                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
8363         threshold=${threshold%%%}
8364         echo -n "Check for uneven OSTs: "
8365         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
8366
8367         if [[ $DIFF2 -gt $threshold ]]; then
8368                 echo "ok"
8369                 echo "Don't need to fill OST$MINI"
8370         else
8371                 # generate uneven OSTs. Write 2% over the QOS threshold value
8372                 echo "no"
8373                 DIFF=$((threshold - DIFF2 + 2))
8374                 DIFF2=$((MINV * DIFF / 100))
8375                 echo "Fill $DIFF% remaining space in OST$MINI with ${DIFF2}KB"
8376                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
8377                         error "setstripe failed"
8378                 DIFF=$((DIFF2 / 2048))
8379                 i=0
8380                 while [ $i -lt $DIFF ]; do
8381                         i=$((i + 1))
8382                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
8383                                 bs=2M count=1 2>/dev/null
8384                         echo -n .
8385                 done
8386                 echo .
8387                 sync
8388                 sleep_maxage
8389                 free_min_max
8390         fi
8391
8392         DIFF=$((MAXV - MINV))
8393         DIFF2=$((DIFF * 100 / MINV))
8394         echo -n "diff=$DIFF=$DIFF2% must be > $threshold% for QOS mode..."
8395         if [ $DIFF2 -gt $threshold ]; then
8396                 echo "ok"
8397         else
8398                 echo "failed - QOS mode won't be used"
8399                 skip "QOS imbalance criteria not met"
8400                 simple_cleanup_common
8401                 return
8402         fi
8403
8404         MINI1=$MINI
8405         MINV1=$MINV
8406         MAXI1=$MAXI
8407         MAXV1=$MAXV
8408
8409         # now fill using QOS
8410         $SETSTRIPE -c 1 $DIR/$tdir
8411         FILL=$((FILL / 200))
8412         if [ $FILL -gt 600 ]; then
8413                 FILL=600
8414         fi
8415         echo "writing $FILL files to QOS-assigned OSTs"
8416         i=0
8417         while [ $i -lt $FILL ]; do
8418                 i=$((i + 1))
8419                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
8420                         count=1 2>/dev/null
8421                 echo -n .
8422         done
8423         echo "wrote $i 200k files"
8424         sync
8425         sleep_maxage
8426
8427         echo "Note: free space may not be updated, so measurements might be off"
8428         free_min_max
8429         DIFF2=$((MAXV - MINV))
8430         echo "free space delta: orig $DIFF final $DIFF2"
8431         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
8432         DIFF=$((MINV1 - ${AVAIL[$MINI1]}))
8433         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
8434         DIFF2=$((MAXV1 - ${AVAIL[$MAXI1]}))
8435         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
8436         if [[ $DIFF -gt 0 ]]; then
8437                 FILL=$((DIFF2 * 100 / DIFF - 100))
8438                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
8439         fi
8440
8441         # Figure out which files were written where
8442         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
8443                awk '/'$MINI1': / {print $2; exit}')
8444         echo $UUID
8445         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
8446         echo "$MINC files created on smaller OST $MINI1"
8447         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
8448                awk '/'$MAXI1': / {print $2; exit}')
8449         echo $UUID
8450         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
8451         echo "$MAXC files created on larger OST $MAXI1"
8452         if [[ $MINC -gt 0 ]]; then
8453                 FILL=$((MAXC * 100 / MINC - 100))
8454                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
8455         fi
8456         [[ $MAXC -gt $MINC ]] ||
8457                 error_ignore LU-9 "stripe QOS didn't balance free space"
8458         simple_cleanup_common
8459 }
8460 run_test 116a "stripe QOS: free space balance ==================="
8461
8462 test_116b() { # LU-2093
8463         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8464         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8465
8466 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
8467         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
8468                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
8469         [ -z "$old_rr" ] && skip "no QOS" && return 0
8470         do_facet $SINGLEMDS lctl set_param \
8471                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
8472         mkdir -p $DIR/$tdir
8473         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
8474         createmany -o $DIR/$tdir/f- 20 || error "can't create"
8475         do_facet $SINGLEMDS lctl set_param fail_loc=0
8476         rm -rf $DIR/$tdir
8477         do_facet $SINGLEMDS lctl set_param \
8478                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
8479 }
8480 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
8481
8482 test_117() # bug 10891
8483 {
8484         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8485         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
8486         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
8487         lctl set_param fail_loc=0x21e
8488         > $DIR/$tfile || error "truncate failed"
8489         lctl set_param fail_loc=0
8490         echo "Truncate succeeded."
8491         rm -f $DIR/$tfile
8492 }
8493 run_test 117 "verify osd extend =========="
8494
8495 NO_SLOW_RESENDCOUNT=4
8496 export OLD_RESENDCOUNT=""
8497 set_resend_count () {
8498         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
8499         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
8500         lctl set_param -n $PROC_RESENDCOUNT $1
8501         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
8502 }
8503
8504 # for reduce test_118* time (b=14842)
8505 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
8506
8507 # Reset async IO behavior after error case
8508 reset_async() {
8509         FILE=$DIR/reset_async
8510
8511         # Ensure all OSCs are cleared
8512         $SETSTRIPE -c -1 $FILE
8513         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
8514         sync
8515         rm $FILE
8516 }
8517
8518 test_118a() #bug 11710
8519 {
8520         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8521         reset_async
8522
8523         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8524         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8525         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8526
8527         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8528                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8529                 return 1;
8530         fi
8531         rm -f $DIR/$tfile
8532 }
8533 run_test 118a "verify O_SYNC works =========="
8534
8535 test_118b()
8536 {
8537         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8538         remote_ost_nodsh && skip "remote OST with nodsh" && return
8539
8540         reset_async
8541
8542         #define OBD_FAIL_SRV_ENOENT 0x217
8543         set_nodes_failloc "$(osts_nodes)" 0x217
8544         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8545         RC=$?
8546         set_nodes_failloc "$(osts_nodes)" 0
8547         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8548         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8549                     grep -c writeback)
8550
8551         if [[ $RC -eq 0 ]]; then
8552                 error "Must return error due to dropped pages, rc=$RC"
8553                 return 1;
8554         fi
8555
8556         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8557                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8558                 return 1;
8559         fi
8560
8561         echo "Dirty pages not leaked on ENOENT"
8562
8563         # Due to the above error the OSC will issue all RPCs syncronously
8564         # until a subsequent RPC completes successfully without error.
8565         $MULTIOP $DIR/$tfile Ow4096yc
8566         rm -f $DIR/$tfile
8567
8568         return 0
8569 }
8570 run_test 118b "Reclaim dirty pages on fatal error =========="
8571
8572 test_118c()
8573 {
8574         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8575
8576         # for 118c, restore the original resend count, LU-1940
8577         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
8578                                 set_resend_count $OLD_RESENDCOUNT
8579         remote_ost_nodsh && skip "remote OST with nodsh" && return
8580
8581         reset_async
8582
8583         #define OBD_FAIL_OST_EROFS               0x216
8584         set_nodes_failloc "$(osts_nodes)" 0x216
8585
8586         # multiop should block due to fsync until pages are written
8587         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8588         MULTIPID=$!
8589         sleep 1
8590
8591         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
8592                 error "Multiop failed to block on fsync, pid=$MULTIPID"
8593         fi
8594
8595         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8596                     grep -c writeback)
8597         if [[ $WRITEBACK -eq 0 ]]; then
8598                 error "No page in writeback, writeback=$WRITEBACK"
8599         fi
8600
8601         set_nodes_failloc "$(osts_nodes)" 0
8602         wait $MULTIPID
8603         RC=$?
8604         if [[ $RC -ne 0 ]]; then
8605                 error "Multiop fsync failed, rc=$RC"
8606         fi
8607
8608         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8609         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8610                     grep -c writeback)
8611         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8612                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8613         fi
8614
8615         rm -f $DIR/$tfile
8616         echo "Dirty pages flushed via fsync on EROFS"
8617         return 0
8618 }
8619 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
8620
8621 # continue to use small resend count to reduce test_118* time (b=14842)
8622 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
8623
8624 test_118d()
8625 {
8626         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8627         remote_ost_nodsh && skip "remote OST with nodsh" && return
8628
8629         reset_async
8630
8631         #define OBD_FAIL_OST_BRW_PAUSE_BULK
8632         set_nodes_failloc "$(osts_nodes)" 0x214
8633         # multiop should block due to fsync until pages are written
8634         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8635         MULTIPID=$!
8636         sleep 1
8637
8638         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
8639                 error "Multiop failed to block on fsync, pid=$MULTIPID"
8640         fi
8641
8642         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8643                     grep -c writeback)
8644         if [[ $WRITEBACK -eq 0 ]]; then
8645                 error "No page in writeback, writeback=$WRITEBACK"
8646         fi
8647
8648         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
8649         set_nodes_failloc "$(osts_nodes)" 0
8650
8651         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8652         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8653                     grep -c writeback)
8654         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8655                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8656         fi
8657
8658         rm -f $DIR/$tfile
8659         echo "Dirty pages gaurenteed flushed via fsync"
8660         return 0
8661 }
8662 run_test 118d "Fsync validation inject a delay of the bulk =========="
8663
8664 test_118f() {
8665         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8666         reset_async
8667
8668         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
8669         lctl set_param fail_loc=0x8000040a
8670
8671         # Should simulate EINVAL error which is fatal
8672         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8673         RC=$?
8674         if [[ $RC -eq 0 ]]; then
8675                 error "Must return error due to dropped pages, rc=$RC"
8676         fi
8677
8678         lctl set_param fail_loc=0x0
8679
8680         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8681         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8682         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8683                     grep -c writeback)
8684         if [[ $LOCKED -ne 0 ]]; then
8685                 error "Locked pages remain in cache, locked=$LOCKED"
8686         fi
8687
8688         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8689                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8690         fi
8691
8692         rm -f $DIR/$tfile
8693         echo "No pages locked after fsync"
8694
8695         reset_async
8696         return 0
8697 }
8698 run_test 118f "Simulate unrecoverable OSC side error =========="
8699
8700 test_118g() {
8701         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8702         reset_async
8703
8704         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
8705         lctl set_param fail_loc=0x406
8706
8707         # simulate local -ENOMEM
8708         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8709         RC=$?
8710
8711         lctl set_param fail_loc=0
8712         if [[ $RC -eq 0 ]]; then
8713                 error "Must return error due to dropped pages, rc=$RC"
8714         fi
8715
8716         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8717         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8718         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8719                         grep -c writeback)
8720         if [[ $LOCKED -ne 0 ]]; then
8721                 error "Locked pages remain in cache, locked=$LOCKED"
8722         fi
8723
8724         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8725                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8726         fi
8727
8728         rm -f $DIR/$tfile
8729         echo "No pages locked after fsync"
8730
8731         reset_async
8732         return 0
8733 }
8734 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
8735
8736 test_118h() {
8737         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8738         remote_ost_nodsh && skip "remote OST with nodsh" && return
8739
8740         reset_async
8741
8742         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8743         set_nodes_failloc "$(osts_nodes)" 0x20e
8744         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
8745         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8746         RC=$?
8747
8748         set_nodes_failloc "$(osts_nodes)" 0
8749         if [[ $RC -eq 0 ]]; then
8750                 error "Must return error due to dropped pages, rc=$RC"
8751         fi
8752
8753         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8754         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8755         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8756                     grep -c writeback)
8757         if [[ $LOCKED -ne 0 ]]; then
8758                 error "Locked pages remain in cache, locked=$LOCKED"
8759         fi
8760
8761         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8762                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8763         fi
8764
8765         rm -f $DIR/$tfile
8766         echo "No pages locked after fsync"
8767
8768         return 0
8769 }
8770 run_test 118h "Verify timeout in handling recoverables errors  =========="
8771
8772 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
8773
8774 test_118i() {
8775         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8776         remote_ost_nodsh && skip "remote OST with nodsh" && return
8777
8778         reset_async
8779
8780         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8781         set_nodes_failloc "$(osts_nodes)" 0x20e
8782
8783         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
8784         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8785         PID=$!
8786         sleep 5
8787         set_nodes_failloc "$(osts_nodes)" 0
8788
8789         wait $PID
8790         RC=$?
8791         if [[ $RC -ne 0 ]]; then
8792                 error "got error, but should be not, rc=$RC"
8793         fi
8794
8795         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8796         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8797         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8798         if [[ $LOCKED -ne 0 ]]; then
8799                 error "Locked pages remain in cache, locked=$LOCKED"
8800         fi
8801
8802         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8803                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8804         fi
8805
8806         rm -f $DIR/$tfile
8807         echo "No pages locked after fsync"
8808
8809         return 0
8810 }
8811 run_test 118i "Fix error before timeout in recoverable error  =========="
8812
8813 [ "$SLOW" = "no" ] && set_resend_count 4
8814
8815 test_118j() {
8816         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8817         remote_ost_nodsh && skip "remote OST with nodsh" && return
8818
8819         reset_async
8820
8821         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
8822         set_nodes_failloc "$(osts_nodes)" 0x220
8823
8824         # return -EIO from OST
8825         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8826         RC=$?
8827         set_nodes_failloc "$(osts_nodes)" 0x0
8828         if [[ $RC -eq 0 ]]; then
8829                 error "Must return error due to dropped pages, rc=$RC"
8830         fi
8831
8832         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8833         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8834         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8835         if [[ $LOCKED -ne 0 ]]; then
8836                 error "Locked pages remain in cache, locked=$LOCKED"
8837         fi
8838
8839         # in recoverable error on OST we want resend and stay until it finished
8840         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8841                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8842         fi
8843
8844         rm -f $DIR/$tfile
8845         echo "No pages locked after fsync"
8846
8847         return 0
8848 }
8849 run_test 118j "Simulate unrecoverable OST side error =========="
8850
8851 test_118k()
8852 {
8853         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8854         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
8855
8856         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8857         set_nodes_failloc "$(osts_nodes)" 0x20e
8858         test_mkdir $DIR/$tdir
8859
8860         for ((i=0;i<10;i++)); do
8861                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
8862                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
8863                 SLEEPPID=$!
8864                 sleep 0.500s
8865                 kill $SLEEPPID
8866                 wait $SLEEPPID
8867         done
8868
8869         set_nodes_failloc "$(osts_nodes)" 0
8870         rm -rf $DIR/$tdir
8871 }
8872 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
8873
8874 test_118l()
8875 {
8876         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8877         # LU-646
8878         test_mkdir $DIR/$tdir
8879         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
8880         rm -rf $DIR/$tdir
8881 }
8882 run_test 118l "fsync dir"
8883
8884 test_118m() # LU-3066
8885 {
8886         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8887         test_mkdir $DIR/$tdir
8888         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
8889         rm -rf $DIR/$tdir
8890 }
8891 run_test 118m "fdatasync dir ========="
8892
8893 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
8894
8895 test_118n()
8896 {
8897         local begin
8898         local end
8899
8900         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8901         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
8902
8903         # Sleep to avoid a cached response.
8904         #define OBD_STATFS_CACHE_SECONDS 1
8905         sleep 2
8906
8907         # Inject a 10 second delay in the OST_STATFS handler.
8908         #define OBD_FAIL_OST_STATFS_DELAY 0x242
8909         set_nodes_failloc "$(osts_nodes)" 0x242
8910
8911         begin=$SECONDS
8912         stat --file-system $MOUNT > /dev/null
8913         end=$SECONDS
8914
8915         set_nodes_failloc "$(osts_nodes)" 0
8916
8917         if ((end - begin > 20)); then
8918             error "statfs took $((end - begin)) seconds, expected 10"
8919         fi
8920 }
8921 run_test 118n "statfs() sends OST_STATFS requests in parallel"
8922
8923 test_119a() # bug 11737
8924 {
8925         BSIZE=$((512 * 1024))
8926         directio write $DIR/$tfile 0 1 $BSIZE
8927         # We ask to read two blocks, which is more than a file size.
8928         # directio will indicate an error when requested and actual
8929         # sizes aren't equeal (a normal situation in this case) and
8930         # print actual read amount.
8931         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
8932         if [ "$NOB" != "$BSIZE" ]; then
8933                 error "read $NOB bytes instead of $BSIZE"
8934         fi
8935         rm -f $DIR/$tfile
8936 }
8937 run_test 119a "Short directIO read must return actual read amount"
8938
8939 test_119b() # bug 11737
8940 {
8941         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
8942
8943         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
8944         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
8945         sync
8946         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
8947                 error "direct read failed"
8948         rm -f $DIR/$tfile
8949 }
8950 run_test 119b "Sparse directIO read must return actual read amount"
8951
8952 test_119c() # bug 13099
8953 {
8954         BSIZE=1048576
8955         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
8956         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
8957         rm -f $DIR/$tfile
8958 }
8959 run_test 119c "Testing for direct read hitting hole"
8960
8961 test_119d() # bug 15950
8962 {
8963         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8964         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
8965         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
8966         BSIZE=1048576
8967         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
8968         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
8969         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
8970         lctl set_param fail_loc=0x40d
8971         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
8972         pid_dio=$!
8973         sleep 1
8974         cat $DIR/$tfile > /dev/null &
8975         lctl set_param fail_loc=0
8976         pid_reads=$!
8977         wait $pid_dio
8978         log "the DIO writes have completed, now wait for the reads (should not block very long)"
8979         sleep 2
8980         [ -n "`ps h -p $pid_reads -o comm`" ] && \
8981         error "the read rpcs have not completed in 2s"
8982         rm -f $DIR/$tfile
8983         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
8984 }
8985 run_test 119d "The DIO path should try to send a new rpc once one is completed"
8986
8987 test_120a() {
8988         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8989         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8990         test_mkdir $DIR/$tdir
8991         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
8992                 { skip "no early lock cancel on server"; return 0; }
8993
8994         lru_resize_disable mdc
8995         lru_resize_disable osc
8996         cancel_lru_locks mdc
8997         # asynchronous object destroy at MDT could cause bl ast to client
8998         cancel_lru_locks osc
8999
9000         stat $DIR/$tdir > /dev/null
9001         can1=$(do_facet $SINGLEMDS \
9002                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9003                awk '/ldlm_cancel/ {print $2}')
9004         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9005                awk '/ldlm_bl_callback/ {print $2}')
9006         test_mkdir -c1 $DIR/$tdir/d1
9007         can2=$(do_facet $SINGLEMDS \
9008                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9009                awk '/ldlm_cancel/ {print $2}')
9010         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9011                awk '/ldlm_bl_callback/ {print $2}')
9012         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9013         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9014         lru_resize_enable mdc
9015         lru_resize_enable osc
9016 }
9017 run_test 120a "Early Lock Cancel: mkdir test"
9018
9019 test_120b() {
9020         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9021         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9022         test_mkdir $DIR/$tdir
9023         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9024                 { skip "no early lock cancel on server"; return 0; }
9025         lru_resize_disable mdc
9026         lru_resize_disable osc
9027         cancel_lru_locks mdc
9028         stat $DIR/$tdir > /dev/null
9029         can1=$(do_facet $SINGLEMDS \
9030                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9031                awk '/ldlm_cancel/ {print $2}')
9032         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9033                awk '/ldlm_bl_callback/ {print $2}')
9034         touch $DIR/$tdir/f1
9035         can2=$(do_facet $SINGLEMDS \
9036                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9037                awk '/ldlm_cancel/ {print $2}')
9038         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9039                awk '/ldlm_bl_callback/ {print $2}')
9040         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9041         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9042         lru_resize_enable mdc
9043         lru_resize_enable osc
9044 }
9045 run_test 120b "Early Lock Cancel: create test"
9046
9047 test_120c() {
9048         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9049         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9050         test_mkdir -c1 $DIR/$tdir
9051         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9052                 { skip "no early lock cancel on server"; return 0; }
9053         lru_resize_disable mdc
9054         lru_resize_disable osc
9055         test_mkdir -c1 $DIR/$tdir/d1
9056         test_mkdir -c1 $DIR/$tdir/d2
9057         touch $DIR/$tdir/d1/f1
9058         cancel_lru_locks mdc
9059         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
9060         can1=$(do_facet $SINGLEMDS \
9061                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9062                awk '/ldlm_cancel/ {print $2}')
9063         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9064                awk '/ldlm_bl_callback/ {print $2}')
9065         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
9066         can2=$(do_facet $SINGLEMDS \
9067                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9068                awk '/ldlm_cancel/ {print $2}')
9069         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9070                awk '/ldlm_bl_callback/ {print $2}')
9071         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9072         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9073         lru_resize_enable mdc
9074         lru_resize_enable osc
9075 }
9076 run_test 120c "Early Lock Cancel: link test"
9077
9078 test_120d() {
9079         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9080         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9081         test_mkdir -c1 $DIR/$tdir
9082         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9083                 { skip "no early lock cancel on server"; return 0; }
9084         lru_resize_disable mdc
9085         lru_resize_disable osc
9086         touch $DIR/$tdir
9087         cancel_lru_locks mdc
9088         stat $DIR/$tdir > /dev/null
9089         can1=$(do_facet $SINGLEMDS \
9090                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9091                awk '/ldlm_cancel/ {print $2}')
9092         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9093                awk '/ldlm_bl_callback/ {print $2}')
9094         chmod a+x $DIR/$tdir
9095         can2=$(do_facet $SINGLEMDS \
9096                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9097                awk '/ldlm_cancel/ {print $2}')
9098         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9099                awk '/ldlm_bl_callback/ {print $2}')
9100         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9101         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9102         lru_resize_enable mdc
9103         lru_resize_enable osc
9104 }
9105 run_test 120d "Early Lock Cancel: setattr test"
9106
9107 test_120e() {
9108         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9109         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9110                 { skip "no early lock cancel on server"; return 0; }
9111         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9112         local dlmtrace_set=false
9113
9114         test_mkdir -c1 $DIR/$tdir
9115         lru_resize_disable mdc
9116         lru_resize_disable osc
9117         ! $LCTL get_param debug | grep -q dlmtrace &&
9118                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
9119         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
9120         cancel_lru_locks mdc
9121         cancel_lru_locks osc
9122         dd if=$DIR/$tdir/f1 of=/dev/null
9123         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
9124         # XXX client can not do early lock cancel of OST lock
9125         # during unlink (LU-4206), so cancel osc lock now.
9126         sleep 2
9127         cancel_lru_locks osc
9128         can1=$(do_facet $SINGLEMDS \
9129                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9130                awk '/ldlm_cancel/ {print $2}')
9131         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9132                awk '/ldlm_bl_callback/ {print $2}')
9133         unlink $DIR/$tdir/f1
9134         sleep 5
9135         can2=$(do_facet $SINGLEMDS \
9136                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9137                awk '/ldlm_cancel/ {print $2}')
9138         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9139                awk '/ldlm_bl_callback/ {print $2}')
9140         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
9141                 $LCTL dk $TMP/cancel.debug.txt
9142         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
9143                 $LCTL dk $TMP/blocking.debug.txt
9144         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
9145         lru_resize_enable mdc
9146         lru_resize_enable osc
9147 }
9148 run_test 120e "Early Lock Cancel: unlink test"
9149
9150 test_120f() {
9151         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9152         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9153                 { skip "no early lock cancel on server"; return 0; }
9154         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9155         test_mkdir -c1 $DIR/$tdir
9156         lru_resize_disable mdc
9157         lru_resize_disable osc
9158         test_mkdir -c1 $DIR/$tdir/d1
9159         test_mkdir -c1 $DIR/$tdir/d2
9160         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
9161         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
9162         cancel_lru_locks mdc
9163         cancel_lru_locks osc
9164         dd if=$DIR/$tdir/d1/f1 of=/dev/null
9165         dd if=$DIR/$tdir/d2/f2 of=/dev/null
9166         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
9167         # XXX client can not do early lock cancel of OST lock
9168         # during rename (LU-4206), so cancel osc lock now.
9169         sleep 2
9170         cancel_lru_locks osc
9171         can1=$(do_facet $SINGLEMDS \
9172                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9173                awk '/ldlm_cancel/ {print $2}')
9174         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9175                awk '/ldlm_bl_callback/ {print $2}')
9176         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
9177         sleep 5
9178         can2=$(do_facet $SINGLEMDS \
9179                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9180                awk '/ldlm_cancel/ {print $2}')
9181         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9182                awk '/ldlm_bl_callback/ {print $2}')
9183         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9184         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9185         lru_resize_enable mdc
9186         lru_resize_enable osc
9187 }
9188 run_test 120f "Early Lock Cancel: rename test"
9189
9190 test_120g() {
9191         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9192         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9193                 { skip "no early lock cancel on server"; return 0; }
9194         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9195         lru_resize_disable mdc
9196         lru_resize_disable osc
9197         count=10000
9198         echo create $count files
9199         test_mkdir $DIR/$tdir
9200         cancel_lru_locks mdc
9201         cancel_lru_locks osc
9202         t0=$(date +%s)
9203
9204         can0=$(do_facet $SINGLEMDS \
9205                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9206                awk '/ldlm_cancel/ {print $2}')
9207         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9208                awk '/ldlm_bl_callback/ {print $2}')
9209         createmany -o $DIR/$tdir/f $count
9210         sync
9211         can1=$(do_facet $SINGLEMDS \
9212                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9213                awk '/ldlm_cancel/ {print $2}')
9214         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9215                awk '/ldlm_bl_callback/ {print $2}')
9216         t1=$(date +%s)
9217         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
9218         echo rm $count files
9219         rm -r $DIR/$tdir
9220         sync
9221         can2=$(do_facet $SINGLEMDS \
9222                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9223                awk '/ldlm_cancel/ {print $2}')
9224         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9225                awk '/ldlm_bl_callback/ {print $2}')
9226         t2=$(date +%s)
9227         echo total: $count removes in $((t2-t1))
9228         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
9229         sleep 2
9230         # wait for commitment of removal
9231         lru_resize_enable mdc
9232         lru_resize_enable osc
9233 }
9234 run_test 120g "Early Lock Cancel: performance test"
9235
9236 test_121() { #bug #10589
9237         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9238         rm -rf $DIR/$tfile
9239         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
9240 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
9241         lctl set_param fail_loc=0x310
9242         cancel_lru_locks osc > /dev/null
9243         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
9244         lctl set_param fail_loc=0
9245         [[ $reads -eq $writes ]] ||
9246                 error "read $reads blocks, must be $writes blocks"
9247 }
9248 run_test 121 "read cancel race ========="
9249
9250 test_123a() { # was test 123, statahead(bug 11401)
9251         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9252         SLOWOK=0
9253         if ! grep -q "processor.*: 1" /proc/cpuinfo; then
9254                 log "testing UP system. Performance may be lower than expected."
9255                 SLOWOK=1
9256         fi
9257
9258         rm -rf $DIR/$tdir
9259         test_mkdir $DIR/$tdir
9260         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
9261         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
9262         MULT=10
9263         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
9264                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
9265
9266                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
9267                 lctl set_param -n llite.*.statahead_max 0
9268                 lctl get_param llite.*.statahead_max
9269                 cancel_lru_locks mdc
9270                 cancel_lru_locks osc
9271                 stime=`date +%s`
9272                 time ls -l $DIR/$tdir | wc -l
9273                 etime=`date +%s`
9274                 delta=$((etime - stime))
9275                 log "ls $i files without statahead: $delta sec"
9276                 lctl set_param llite.*.statahead_max=$max
9277
9278                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
9279                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
9280                 cancel_lru_locks mdc
9281                 cancel_lru_locks osc
9282                 stime=`date +%s`
9283                 time ls -l $DIR/$tdir | wc -l
9284                 etime=`date +%s`
9285                 delta_sa=$((etime - stime))
9286                 log "ls $i files with statahead: $delta_sa sec"
9287                 lctl get_param -n llite.*.statahead_stats
9288                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
9289
9290                 [[ $swrong -lt $ewrong ]] &&
9291                         log "statahead was stopped, maybe too many locks held!"
9292                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
9293
9294                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
9295                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
9296                     lctl set_param -n llite.*.statahead_max 0
9297                     lctl get_param llite.*.statahead_max
9298                     cancel_lru_locks mdc
9299                     cancel_lru_locks osc
9300                     stime=`date +%s`
9301                     time ls -l $DIR/$tdir | wc -l
9302                     etime=`date +%s`
9303                     delta=$((etime - stime))
9304                     log "ls $i files again without statahead: $delta sec"
9305                     lctl set_param llite.*.statahead_max=$max
9306                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
9307                         if [  $SLOWOK -eq 0 ]; then
9308                                 error "ls $i files is slower with statahead!"
9309                         else
9310                                 log "ls $i files is slower with statahead!"
9311                         fi
9312                         break
9313                     fi
9314                 fi
9315
9316                 [ $delta -gt 20 ] && break
9317                 [ $delta -gt 8 ] && MULT=$((50 / delta))
9318                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
9319         done
9320         log "ls done"
9321
9322         stime=`date +%s`
9323         rm -r $DIR/$tdir
9324         sync
9325         etime=`date +%s`
9326         delta=$((etime - stime))
9327         log "rm -r $DIR/$tdir/: $delta seconds"
9328         log "rm done"
9329         lctl get_param -n llite.*.statahead_stats
9330 }
9331 run_test 123a "verify statahead work"
9332
9333 test_123b () { # statahead(bug 15027)
9334         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9335         test_mkdir $DIR/$tdir
9336         createmany -o $DIR/$tdir/$tfile-%d 1000
9337
9338         cancel_lru_locks mdc
9339         cancel_lru_locks osc
9340
9341 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
9342         lctl set_param fail_loc=0x80000803
9343         ls -lR $DIR/$tdir > /dev/null
9344         log "ls done"
9345         lctl set_param fail_loc=0x0
9346         lctl get_param -n llite.*.statahead_stats
9347         rm -r $DIR/$tdir
9348         sync
9349
9350 }
9351 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
9352
9353 test_124a() {
9354         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9355         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
9356                 { skip "no lru resize on server"; return 0; }
9357         local NR=2000
9358         test_mkdir $DIR/$tdir
9359
9360         log "create $NR files at $DIR/$tdir"
9361         createmany -o $DIR/$tdir/f $NR ||
9362                 error "failed to create $NR files in $DIR/$tdir"
9363
9364         cancel_lru_locks mdc
9365         ls -l $DIR/$tdir > /dev/null
9366
9367         local NSDIR=""
9368         local LRU_SIZE=0
9369         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
9370                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
9371                 LRU_SIZE=$($LCTL get_param -n $PARAM)
9372                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
9373                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
9374                         log "NSDIR=$NSDIR"
9375                         log "NS=$(basename $NSDIR)"
9376                         break
9377                 fi
9378         done
9379
9380         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
9381                 skip "Not enough cached locks created!"
9382                 return 0
9383         fi
9384         log "LRU=$LRU_SIZE"
9385
9386         local SLEEP=30
9387
9388         # We know that lru resize allows one client to hold $LIMIT locks
9389         # for 10h. After that locks begin to be killed by client.
9390         local MAX_HRS=10
9391         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
9392         log "LIMIT=$LIMIT"
9393         if [ $LIMIT -lt $LRU_SIZE ]; then
9394             skip "Limit is too small $LIMIT"
9395             return 0
9396         fi
9397
9398         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
9399         # killing locks. Some time was spent for creating locks. This means
9400         # that up to the moment of sleep finish we must have killed some of
9401         # them (10-100 locks). This depends on how fast ther were created.
9402         # Many of them were touched in almost the same moment and thus will
9403         # be killed in groups.
9404         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
9405
9406         # Use $LRU_SIZE_B here to take into account real number of locks
9407         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
9408         local LRU_SIZE_B=$LRU_SIZE
9409         log "LVF=$LVF"
9410         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
9411         log "OLD_LVF=$OLD_LVF"
9412         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
9413
9414         # Let's make sure that we really have some margin. Client checks
9415         # cached locks every 10 sec.
9416         SLEEP=$((SLEEP+20))
9417         log "Sleep ${SLEEP} sec"
9418         local SEC=0
9419         while ((SEC<$SLEEP)); do
9420                 echo -n "..."
9421                 sleep 5
9422                 SEC=$((SEC+5))
9423                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
9424                 echo -n "$LRU_SIZE"
9425         done
9426         echo ""
9427         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
9428         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
9429
9430         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
9431                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
9432                 unlinkmany $DIR/$tdir/f $NR
9433                 return
9434         }
9435
9436         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
9437         log "unlink $NR files at $DIR/$tdir"
9438         unlinkmany $DIR/$tdir/f $NR
9439 }
9440 run_test 124a "lru resize ======================================="
9441
9442 get_max_pool_limit()
9443 {
9444         local limit=$($LCTL get_param \
9445                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
9446         local max=0
9447         for l in $limit; do
9448                 if [[ $l -gt $max ]]; then
9449                         max=$l
9450                 fi
9451         done
9452         echo $max
9453 }
9454
9455 test_124b() {
9456         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9457         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
9458                 { skip "no lru resize on server"; return 0; }
9459
9460         LIMIT=$(get_max_pool_limit)
9461
9462         NR=$(($(default_lru_size)*20))
9463         if [[ $NR -gt $LIMIT ]]; then
9464                 log "Limit lock number by $LIMIT locks"
9465                 NR=$LIMIT
9466         fi
9467
9468         IFree=$(mdsrate_inodes_available)
9469         if [ $IFree -lt $NR ]; then
9470                 log "Limit lock number by $IFree inodes"
9471                 NR=$IFree
9472         fi
9473
9474         lru_resize_disable mdc
9475         test_mkdir -p $DIR/$tdir/disable_lru_resize
9476
9477         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
9478         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
9479         cancel_lru_locks mdc
9480         stime=`date +%s`
9481         PID=""
9482         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
9483         PID="$PID $!"
9484         sleep 2
9485         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
9486         PID="$PID $!"
9487         sleep 2
9488         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
9489         PID="$PID $!"
9490         wait $PID
9491         etime=`date +%s`
9492         nolruresize_delta=$((etime-stime))
9493         log "ls -la time: $nolruresize_delta seconds"
9494         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
9495         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
9496
9497         lru_resize_enable mdc
9498         test_mkdir -p $DIR/$tdir/enable_lru_resize
9499
9500         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
9501         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
9502         cancel_lru_locks mdc
9503         stime=`date +%s`
9504         PID=""
9505         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
9506         PID="$PID $!"
9507         sleep 2
9508         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
9509         PID="$PID $!"
9510         sleep 2
9511         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
9512         PID="$PID $!"
9513         wait $PID
9514         etime=`date +%s`
9515         lruresize_delta=$((etime-stime))
9516         log "ls -la time: $lruresize_delta seconds"
9517         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
9518
9519         if [ $lruresize_delta -gt $nolruresize_delta ]; then
9520                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
9521         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
9522                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
9523         else
9524                 log "lru resize performs the same with no lru resize"
9525         fi
9526         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
9527 }
9528 run_test 124b "lru resize (performance test) ======================="
9529
9530 test_124c() {
9531         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9532         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
9533                 { skip "no lru resize on server"; return 0; }
9534
9535         # cache ununsed locks on client
9536         local nr=100
9537         cancel_lru_locks mdc
9538         test_mkdir $DIR/$tdir
9539         createmany -o $DIR/$tdir/f $nr ||
9540                 error "failed to create $nr files in $DIR/$tdir"
9541         ls -l $DIR/$tdir > /dev/null
9542
9543         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
9544         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9545         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
9546         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
9547         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
9548
9549         # set lru_max_age to 1 sec
9550         $LCTL set_param $nsdir.lru_max_age=1000 # milliseconds
9551         echo "sleep $((recalc_p * 2)) seconds..."
9552         sleep $((recalc_p * 2))
9553
9554         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
9555         # restore lru_max_age
9556         $LCTL set_param -n $nsdir.lru_max_age $max_age
9557         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
9558         unlinkmany $DIR/$tdir/f $nr
9559 }
9560 run_test 124c "LRUR cancel very aged locks"
9561
9562 test_125() { # 13358
9563         $LCTL get_param -n llite.*.client_type | grep -q local ||
9564                 { skip "must run as local client"; return; }
9565         $LCTL get_param -n mdc.*-mdc-*.connect_flags | grep -q acl ||
9566                 { skip "must have acl enabled"; return; }
9567         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
9568         test_mkdir $DIR/$tdir
9569         $LFS setstripe -S 65536 -c -1 $DIR/$tdir || error "setstripe failed"
9570         setfacl -R -m u:bin:rwx $DIR/$tdir || error "setfacl $DIR/$tdir failed"
9571         ls -ld $DIR/$tdir || error "cannot access $DIR/$tdir"
9572 }
9573 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
9574
9575 test_126() { # bug 12829/13455
9576         $LCTL get_param -n llite.*.client_type | grep -q local ||
9577                 { skip "must run as local client"; return; }
9578         [ "$UID" != 0 ] && skip_env "$TESTNAME (must run as root)" && return
9579         $GSS && skip "must run as gss disabled" && return
9580
9581         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
9582         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
9583         rm -f $DIR/$tfile
9584         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
9585 }
9586 run_test 126 "check that the fsgid provided by the client is taken into account"
9587
9588 test_127a() { # bug 15521
9589         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9590         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
9591         $LCTL set_param osc.*.stats=0
9592         FSIZE=$((2048 * 1024))
9593         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9594         cancel_lru_locks osc
9595         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
9596
9597         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
9598         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
9599                 echo "got $COUNT $NAME"
9600                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
9601                 eval $NAME=$COUNT || error "Wrong proc format"
9602
9603                 case $NAME in
9604                         read_bytes|write_bytes)
9605                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
9606                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
9607                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
9608                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
9609                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
9610                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
9611                                 error "sumsquare is too small: $SUMSQ"
9612                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
9613                                 error "sumsquare is too big: $SUMSQ"
9614                         ;;
9615                         *) ;;
9616                 esac
9617         done < $DIR/${tfile}.tmp
9618
9619         #check that we actually got some stats
9620         [ "$read_bytes" ] || error "Missing read_bytes stats"
9621         [ "$write_bytes" ] || error "Missing write_bytes stats"
9622         [ "$read_bytes" != 0 ] || error "no read done"
9623         [ "$write_bytes" != 0 ] || error "no write done"
9624 }
9625 run_test 127a "verify the client stats are sane"
9626
9627 test_127b() { # bug LU-333
9628         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9629         $LCTL set_param llite.*.stats=0
9630         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
9631         # perform 2 reads and writes so MAX is different from SUM.
9632         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9633         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9634         cancel_lru_locks osc
9635         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
9636         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
9637
9638         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
9639         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
9640                 echo "got $COUNT $NAME"
9641                 eval $NAME=$COUNT || error "Wrong proc format"
9642
9643         case $NAME in
9644                 read_bytes)
9645                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
9646                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
9647                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
9648                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
9649                         ;;
9650                 write_bytes)
9651                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
9652                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
9653                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
9654                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
9655                         ;;
9656                         *) ;;
9657                 esac
9658         done < $TMP/${tfile}.tmp
9659
9660         #check that we actually got some stats
9661         [ "$read_bytes" ] || error "Missing read_bytes stats"
9662         [ "$write_bytes" ] || error "Missing write_bytes stats"
9663         [ "$read_bytes" != 0 ] || error "no read done"
9664         [ "$write_bytes" != 0 ] || error "no write done"
9665
9666         rm -f $TMP/${tfile}.tmp
9667 }
9668 run_test 127b "verify the llite client stats are sane"
9669
9670 test_128() { # bug 15212
9671         touch $DIR/$tfile
9672         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
9673                 find $DIR/$tfile
9674                 find $DIR/$tfile
9675         EOF
9676
9677         result=$(grep error $TMP/$tfile.log)
9678         rm -f $DIR/$tfile $TMP/$tfile.log
9679         [ -z "$result" ] ||
9680                 error "consecutive find's under interactive lfs failed"
9681 }
9682 run_test 128 "interactive lfs for 2 consecutive find's"
9683
9684 set_dir_limits () {
9685         local mntdev
9686         local canondev
9687         local node
9688
9689         local ldproc=/proc/fs/ldiskfs
9690         local facets=$(get_facets MDS)
9691
9692         for facet in ${facets//,/ }; do
9693                 canondev=$(ldiskfs_canon \
9694                            *.$(convert_facet2label $facet).mntdev $facet)
9695                 do_facet $facet "test -e $ldproc/$canondev/max_dir_size" ||
9696                         ldproc=/sys/fs/ldiskfs
9697                 do_facet $facet "echo $1 >$ldproc/$canondev/max_dir_size"
9698                 do_facet $facet "echo $2 >$ldproc/$canondev/warning_dir_size"
9699         done
9700 }
9701
9702 check_mds_dmesg() {
9703         local facets=$(get_facets MDS)
9704         for facet in ${facets//,/ }; do
9705                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
9706         done
9707         return 1
9708 }
9709
9710 test_129() {
9711         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.56) ]] ||
9712                 { skip "Need MDS version with at least 2.5.56"; return 0; }
9713
9714         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9715         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
9716                 skip "ldiskfs only test"
9717                 return
9718         fi
9719         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9720         local ENOSPC=28
9721         local EFBIG=27
9722         local has_warning=false
9723
9724         rm -rf $DIR/$tdir
9725         mkdir -p $DIR/$tdir
9726
9727         # block size of mds1
9728         local maxsize=$(($($LCTL get_param -n mdc.*MDT0000*.blocksize) * 5))
9729         set_dir_limits $maxsize $maxsize
9730         local dirsize=$(stat -c%s "$DIR/$tdir")
9731         local nfiles=0
9732         while [[ $dirsize -le $maxsize ]]; do
9733                 $MULTIOP $DIR/$tdir/file_base_$nfiles Oc
9734                 rc=$?
9735                 if ! $has_warning; then
9736                         check_mds_dmesg '"is approaching"' && has_warning=true
9737                 fi
9738                 # check two errors:
9739                 # ENOSPC for new ext4 max_dir_size (kernel commit df981d03ee)
9740                 # EFBIG for previous versions included in ldiskfs series
9741                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
9742                         set_dir_limits 0 0
9743                         echo "return code $rc received as expected"
9744
9745                         createmany -o $DIR/$tdir/file_extra_$nfiles. 5 ||
9746                                 error_exit "create failed w/o dir size limit"
9747
9748                         check_mds_dmesg '"has reached"' ||
9749                                 error_exit "reached message should be output"
9750
9751                         [ $has_warning = "false" ] &&
9752                                 error_exit "warning message should be output"
9753
9754                         dirsize=$(stat -c%s "$DIR/$tdir")
9755
9756                         [[ $dirsize -ge $maxsize ]] && return 0
9757                         error_exit "current dir size $dirsize, " \
9758                                    "previous limit $maxsize"
9759                 elif [ $rc -ne 0 ]; then
9760                         set_dir_limits 0 0
9761                         error_exit "return $rc received instead of expected " \
9762                                    "$EFBIG or $ENOSPC, files in dir $dirsize"
9763                 fi
9764                 nfiles=$((nfiles + 1))
9765                 dirsize=$(stat -c%s "$DIR/$tdir")
9766         done
9767
9768         set_dir_limits 0 0
9769         error "exceeded dir size limit $maxsize($MDSCOUNT) : $dirsize bytes"
9770 }
9771 run_test 129 "test directory size limit ========================"
9772
9773 OLDIFS="$IFS"
9774 cleanup_130() {
9775         trap 0
9776         IFS="$OLDIFS"
9777 }
9778
9779 test_130a() {
9780         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9781         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
9782                 return
9783
9784         trap cleanup_130 EXIT RETURN
9785
9786         local fm_file=$DIR/$tfile
9787         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
9788         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
9789                 error "dd failed for $fm_file"
9790
9791         # LU-1795: test filefrag/FIEMAP once, even if unsupported
9792         filefrag -ves $fm_file
9793         RC=$?
9794         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9795                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9796         [ $RC != 0 ] && error "filefrag $fm_file failed"
9797
9798         filefrag_op=$(filefrag -ve -k $fm_file |
9799                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9800         lun=$($GETSTRIPE -i $fm_file)
9801
9802         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
9803         IFS=$'\n'
9804         tot_len=0
9805         for line in $filefrag_op
9806         do
9807                 frag_lun=`echo $line | cut -d: -f5`
9808                 ext_len=`echo $line | cut -d: -f4`
9809                 if (( $frag_lun != $lun )); then
9810                         cleanup_130
9811                         error "FIEMAP on 1-stripe file($fm_file) failed"
9812                         return
9813                 fi
9814                 (( tot_len += ext_len ))
9815         done
9816
9817         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
9818                 cleanup_130
9819                 error "FIEMAP on 1-stripe file($fm_file) failed;"
9820                 return
9821         fi
9822
9823         cleanup_130
9824
9825         echo "FIEMAP on single striped file succeeded"
9826 }
9827 run_test 130a "FIEMAP (1-stripe file)"
9828
9829 test_130b() {
9830         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >= 2 OSTs" && return
9831
9832         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9833         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
9834                 return
9835
9836         trap cleanup_130 EXIT RETURN
9837
9838         local fm_file=$DIR/$tfile
9839         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
9840                         error "setstripe on $fm_file"
9841         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9842                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9843
9844         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
9845                 error "dd failed on $fm_file"
9846
9847         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9848         filefrag_op=$(filefrag -ve -k $fm_file |
9849                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9850
9851         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9852                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9853
9854         IFS=$'\n'
9855         tot_len=0
9856         num_luns=1
9857         for line in $filefrag_op
9858         do
9859                 frag_lun=$(echo $line | cut -d: -f5 |
9860                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9861                 ext_len=$(echo $line | cut -d: -f4)
9862                 if (( $frag_lun != $last_lun )); then
9863                         if (( tot_len != 1024 )); then
9864                                 cleanup_130
9865                                 error "FIEMAP on $fm_file failed; returned " \
9866                                 "len $tot_len for OST $last_lun instead of 1024"
9867                                 return
9868                         else
9869                                 (( num_luns += 1 ))
9870                                 tot_len=0
9871                         fi
9872                 fi
9873                 (( tot_len += ext_len ))
9874                 last_lun=$frag_lun
9875         done
9876         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
9877                 cleanup_130
9878                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9879                         "luns or wrong len for OST $last_lun"
9880                 return
9881         fi
9882
9883         cleanup_130
9884
9885         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
9886 }
9887 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
9888
9889 test_130c() {
9890         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
9891
9892         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9893         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
9894                 return
9895
9896         trap cleanup_130 EXIT RETURN
9897
9898         local fm_file=$DIR/$tfile
9899         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
9900         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9901                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9902
9903         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
9904                         error "dd failed on $fm_file"
9905
9906         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9907         filefrag_op=$(filefrag -ve -k $fm_file |
9908                 sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9909
9910         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9911                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9912
9913         IFS=$'\n'
9914         tot_len=0
9915         num_luns=1
9916         for line in $filefrag_op
9917         do
9918                 frag_lun=$(echo $line | cut -d: -f5 |
9919                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9920                 ext_len=$(echo $line | cut -d: -f4)
9921                 if (( $frag_lun != $last_lun )); then
9922                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
9923                         if (( logical != 512 )); then
9924                                 cleanup_130
9925                                 error "FIEMAP on $fm_file failed; returned " \
9926                                 "logical start for lun $logical instead of 512"
9927                                 return
9928                         fi
9929                         if (( tot_len != 512 )); then
9930                                 cleanup_130
9931                                 error "FIEMAP on $fm_file failed; returned " \
9932                                 "len $tot_len for OST $last_lun instead of 1024"
9933                                 return
9934                         else
9935                                 (( num_luns += 1 ))
9936                                 tot_len=0
9937                         fi
9938                 fi
9939                 (( tot_len += ext_len ))
9940                 last_lun=$frag_lun
9941         done
9942         if (( num_luns != 2 || tot_len != 512 )); then
9943                 cleanup_130
9944                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9945                         "luns or wrong len for OST $last_lun"
9946                 return
9947         fi
9948
9949         cleanup_130
9950
9951         echo "FIEMAP on 2-stripe file with hole succeeded"
9952 }
9953 run_test 130c "FIEMAP (2-stripe file with hole)"
9954
9955 test_130d() {
9956         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs" && return
9957
9958         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9959         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
9960                 return
9961
9962         trap cleanup_130 EXIT RETURN
9963
9964         local fm_file=$DIR/$tfile
9965         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
9966                         error "setstripe on $fm_file"
9967         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9968                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9969
9970         local actual_stripe_count=$($GETSTRIPE -c $fm_file)
9971         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripe_count ||
9972                 error "dd failed on $fm_file"
9973
9974         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9975         filefrag_op=$(filefrag -ve -k $fm_file |
9976                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9977
9978         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9979                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9980
9981         IFS=$'\n'
9982         tot_len=0
9983         num_luns=1
9984         for line in $filefrag_op
9985         do
9986                 frag_lun=$(echo $line | cut -d: -f5 |
9987                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9988                 ext_len=$(echo $line | cut -d: -f4)
9989                 if (( $frag_lun != $last_lun )); then
9990                         if (( tot_len != 1024 )); then
9991                                 cleanup_130
9992                                 error "FIEMAP on $fm_file failed; returned " \
9993                                 "len $tot_len for OST $last_lun instead of 1024"
9994                                 return
9995                         else
9996                                 (( num_luns += 1 ))
9997                                 tot_len=0
9998                         fi
9999                 fi
10000                 (( tot_len += ext_len ))
10001                 last_lun=$frag_lun
10002         done
10003         if (( num_luns != actual_stripe_count || tot_len != 1024 )); then
10004                 cleanup_130
10005                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10006                         "luns or wrong len for OST $last_lun"
10007                 return
10008         fi
10009
10010         cleanup_130
10011
10012         echo "FIEMAP on N-stripe file succeeded"
10013 }
10014 run_test 130d "FIEMAP (N-stripe file)"
10015
10016 test_130e() {
10017         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
10018
10019         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10020         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
10021
10022         trap cleanup_130 EXIT RETURN
10023
10024         local fm_file=$DIR/$tfile
10025         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
10026         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10027                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
10028
10029         NUM_BLKS=512
10030         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
10031         for ((i = 0; i < $NUM_BLKS; i++))
10032         do
10033                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
10034         done
10035
10036         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10037         filefrag_op=$(filefrag -ve -k $fm_file |
10038                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10039
10040         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10041                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10042
10043         IFS=$'\n'
10044         tot_len=0
10045         num_luns=1
10046         for line in $filefrag_op
10047         do
10048                 frag_lun=$(echo $line | cut -d: -f5 |
10049                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10050                 ext_len=$(echo $line | cut -d: -f4)
10051                 if (( $frag_lun != $last_lun )); then
10052                         if (( tot_len != $EXPECTED_LEN )); then
10053                                 cleanup_130
10054                                 error "FIEMAP on $fm_file failed; returned " \
10055                                 "len $tot_len for OST $last_lun instead " \
10056                                 "of $EXPECTED_LEN"
10057                                 return
10058                         else
10059                                 (( num_luns += 1 ))
10060                                 tot_len=0
10061                         fi
10062                 fi
10063                 (( tot_len += ext_len ))
10064                 last_lun=$frag_lun
10065         done
10066         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
10067                 cleanup_130
10068                 error "FIEMAP on $fm_file failed; returned wrong number " \
10069                         "of luns or wrong len for OST $last_lun"
10070                 return
10071         fi
10072
10073         cleanup_130
10074
10075         echo "FIEMAP with continuation calls succeeded"
10076 }
10077 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
10078
10079 test_130f() {
10080         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10081         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
10082                 return
10083
10084         local fm_file=$DIR/$tfile
10085         $MULTIOP $fm_file oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T33554432c ||
10086                 error "multiop create with lov_delay_create on $fm_file"
10087
10088         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10089         filefrag_extents=$(filefrag -vek $fm_file |
10090                            awk '/extents? found/ { print $2 }')
10091         if [[ "$filefrag_extents" != "0" ]]; then
10092                 error "FIEMAP on $fm_file failed; " \
10093                       "returned $filefrag_extents expected 0"
10094         fi
10095
10096         rm -f $fm_file
10097 }
10098 run_test 130f "FIEMAP (unstriped file)"
10099
10100 # Test for writev/readv
10101 test_131a() {
10102         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 ||
10103                 error "writev test failed"
10104         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 ||
10105                 error "readv failed"
10106         rm -f $DIR/$tfile
10107 }
10108 run_test 131a "test iov's crossing stripe boundary for writev/readv"
10109
10110 test_131b() {
10111         local fsize=$((524288 + 1048576 + 1572864))
10112         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 &&
10113                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
10114                         error "append writev test failed"
10115
10116         ((fsize += 1572864 + 1048576))
10117         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 &&
10118                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
10119                         error "append writev test failed"
10120         rm -f $DIR/$tfile
10121 }
10122 run_test 131b "test append writev"
10123
10124 test_131c() {
10125         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
10126         error "NOT PASS"
10127 }
10128 run_test 131c "test read/write on file w/o objects"
10129
10130 test_131d() {
10131         rwv -f $DIR/$tfile -w -n 1 1572864
10132         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
10133         if [ "$NOB" != 1572864 ]; then
10134                 error "Short read filed: read $NOB bytes instead of 1572864"
10135         fi
10136         rm -f $DIR/$tfile
10137 }
10138 run_test 131d "test short read"
10139
10140 test_131e() {
10141         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
10142         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
10143         error "read hitting hole failed"
10144         rm -f $DIR/$tfile
10145 }
10146 run_test 131e "test read hitting hole"
10147
10148 check_stats() {
10149         local facet=$1
10150         local op=$2
10151         local want=${3:-0}
10152         local res
10153
10154         case $facet in
10155         mds*) res=$(do_facet $facet \
10156                    $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$op")
10157                  ;;
10158         ost*) res=$(do_facet $facet \
10159                    $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$op")
10160                  ;;
10161         *) error "Wrong facet '$facet'" ;;
10162         esac
10163         echo $res
10164         [ "$res" ] || error "The counter for $op on $facet was not incremented"
10165         # if the argument $3 is zero, it means any stat increment is ok.
10166         if [[ $want -gt 0 ]]; then
10167                 local count=$(echo $res | awk '{ print $2 }')
10168                 [[ $count -ne $want ]] &&
10169                         error "The $op counter on $facet is $count, not $want"
10170         fi
10171 }
10172
10173 test_133a() {
10174         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10175         remote_ost_nodsh && skip "remote OST with nodsh" && return
10176         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10177
10178         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
10179                 { skip "MDS doesn't support rename stats"; return; }
10180         local testdir=$DIR/${tdir}/stats_testdir
10181         mkdir -p $DIR/${tdir}
10182
10183         # clear stats.
10184         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10185         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10186
10187         # verify mdt stats first.
10188         mkdir ${testdir} || error "mkdir failed"
10189         check_stats $SINGLEMDS "mkdir" 1
10190         touch ${testdir}/${tfile} || error "touch failed"
10191         check_stats $SINGLEMDS "open" 1
10192         check_stats $SINGLEMDS "close" 1
10193         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.8.54) ] && {
10194                 mknod ${testdir}/${tfile}-pipe p || error "mknod failed"
10195                 check_stats $SINGLEMDS "mknod" 2
10196         }
10197         rm -f ${testdir}/${tfile}-pipe || error "pipe remove failed"
10198         check_stats $SINGLEMDS "unlink" 1
10199         rm -f ${testdir}/${tfile} || error "file remove failed"
10200         check_stats $SINGLEMDS "unlink" 2
10201
10202         # remove working dir and check mdt stats again.
10203         rmdir ${testdir} || error "rmdir failed"
10204         check_stats $SINGLEMDS "rmdir" 1
10205
10206         local testdir1=$DIR/${tdir}/stats_testdir1
10207         mkdir -p ${testdir}
10208         mkdir -p ${testdir1}
10209         touch ${testdir1}/test1
10210         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
10211         check_stats $SINGLEMDS "crossdir_rename" 1
10212
10213         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
10214         check_stats $SINGLEMDS "samedir_rename" 1
10215
10216         rm -rf $DIR/${tdir}
10217 }
10218 run_test 133a "Verifying MDT stats ========================================"
10219
10220 test_133b() {
10221         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10222         remote_ost_nodsh && skip "remote OST with nodsh" && return
10223         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10224         local testdir=$DIR/${tdir}/stats_testdir
10225         mkdir -p ${testdir} || error "mkdir failed"
10226         touch ${testdir}/${tfile} || error "touch failed"
10227         cancel_lru_locks mdc
10228
10229         # clear stats.
10230         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10231         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10232
10233         # extra mdt stats verification.
10234         chmod 444 ${testdir}/${tfile} || error "chmod failed"
10235         check_stats $SINGLEMDS "setattr" 1
10236         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10237         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
10238         then            # LU-1740
10239                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
10240                 check_stats $SINGLEMDS "getattr" 1
10241         fi
10242         $LFS df || error "lfs failed"
10243         check_stats $SINGLEMDS "statfs" 1
10244
10245         rm -rf $DIR/${tdir}
10246 }
10247 run_test 133b "Verifying extra MDT stats =================================="
10248
10249 test_133c() {
10250         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10251         remote_ost_nodsh && skip "remote OST with nodsh" && return
10252         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10253         local testdir=$DIR/$tdir/stats_testdir
10254         test_mkdir -p $testdir
10255
10256         # verify obdfilter stats.
10257         $SETSTRIPE -c 1 -i 0 $testdir/$tfile
10258         sync
10259         cancel_lru_locks osc
10260         wait_delete_completed
10261
10262         # clear stats.
10263         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10264         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10265
10266         dd if=/dev/zero of=$testdir/$tfile conv=notrunc bs=512k count=1 ||
10267                 error "dd failed"
10268         sync
10269         cancel_lru_locks osc
10270         check_stats ost1 "write" 1
10271
10272         dd if=$testdir/$tfile of=/dev/null bs=1k count=1 || error "dd failed"
10273         check_stats ost1 "read" 1
10274
10275         > $testdir/$tfile || error "truncate failed"
10276         check_stats ost1 "punch" 1
10277
10278         rm -f $testdir/$tfile || error "file remove failed"
10279         wait_delete_completed
10280         check_stats ost1 "destroy" 1
10281
10282         rm -rf $DIR/$tdir
10283 }
10284 run_test 133c "Verifying OST stats ========================================"
10285
10286 order_2() {
10287         local value=$1
10288         local orig=$value
10289         local order=1
10290
10291         while [ $value -ge 2 ]; do
10292                 order=$((order*2))
10293                 value=$((value/2))
10294         done
10295
10296         if [ $orig -gt $order ]; then
10297                 order=$((order*2))
10298         fi
10299         echo $order
10300 }
10301
10302 size_in_KMGT() {
10303     local value=$1
10304     local size=('K' 'M' 'G' 'T');
10305     local i=0
10306     local size_string=$value
10307
10308     while [ $value -ge 1024 ]; do
10309         if [ $i -gt 3 ]; then
10310             #T is the biggest unit we get here, if that is bigger,
10311             #just return XXXT
10312             size_string=${value}T
10313             break
10314         fi
10315         value=$((value >> 10))
10316         if [ $value -lt 1024 ]; then
10317             size_string=${value}${size[$i]}
10318             break
10319         fi
10320         i=$((i + 1))
10321     done
10322
10323     echo $size_string
10324 }
10325
10326 get_rename_size() {
10327     local size=$1
10328     local context=${2:-.}
10329     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
10330                 grep -A1 $context |
10331                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
10332     echo $sample
10333 }
10334
10335 test_133d() {
10336         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10337         remote_ost_nodsh && skip "remote OST with nodsh" && return
10338         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10339         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
10340         { skip "MDS doesn't support rename stats"; return; }
10341
10342         local testdir1=$DIR/${tdir}/stats_testdir1
10343         local testdir2=$DIR/${tdir}/stats_testdir2
10344
10345         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
10346
10347         mkdir -p ${testdir1} || error "mkdir failed"
10348         mkdir -p ${testdir2} || error "mkdir failed"
10349
10350         createmany -o $testdir1/test 512 || error "createmany failed"
10351
10352         # check samedir rename size
10353         mv ${testdir1}/test0 ${testdir1}/test_0
10354
10355         local testdir1_size=$(ls -l $DIR/${tdir} |
10356                 awk '/stats_testdir1/ {print $5}')
10357         local testdir2_size=$(ls -l $DIR/${tdir} |
10358                 awk '/stats_testdir2/ {print $5}')
10359
10360         testdir1_size=$(order_2 $testdir1_size)
10361         testdir2_size=$(order_2 $testdir2_size)
10362
10363         testdir1_size=$(size_in_KMGT $testdir1_size)
10364         testdir2_size=$(size_in_KMGT $testdir2_size)
10365
10366         echo "source rename dir size: ${testdir1_size}"
10367         echo "target rename dir size: ${testdir2_size}"
10368
10369         local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
10370         eval $cmd || error "$cmd failed"
10371         local samedir=$($cmd | grep 'same_dir')
10372         local same_sample=$(get_rename_size $testdir1_size)
10373         [ -z "$samedir" ] && error "samedir_rename_size count error"
10374         [[ $same_sample -eq 1 ]] ||
10375                 error "samedir_rename_size error $same_sample"
10376         echo "Check same dir rename stats success"
10377
10378         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
10379
10380         # check crossdir rename size
10381         mv ${testdir1}/test_0 ${testdir2}/test_0
10382
10383         testdir1_size=$(ls -l $DIR/${tdir} |
10384                 awk '/stats_testdir1/ {print $5}')
10385         testdir2_size=$(ls -l $DIR/${tdir} |
10386                 awk '/stats_testdir2/ {print $5}')
10387
10388         testdir1_size=$(order_2 $testdir1_size)
10389         testdir2_size=$(order_2 $testdir2_size)
10390
10391         testdir1_size=$(size_in_KMGT $testdir1_size)
10392         testdir2_size=$(size_in_KMGT $testdir2_size)
10393
10394         echo "source rename dir size: ${testdir1_size}"
10395         echo "target rename dir size: ${testdir2_size}"
10396
10397         eval $cmd || error "$cmd failed"
10398         local crossdir=$($cmd | grep 'crossdir')
10399         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
10400         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
10401         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
10402         [[ $src_sample -eq 1 ]] ||
10403                 error "crossdir_rename_size error $src_sample"
10404         [[ $tgt_sample -eq 1 ]] ||
10405                 error "crossdir_rename_size error $tgt_sample"
10406         echo "Check cross dir rename stats success"
10407         rm -rf $DIR/${tdir}
10408 }
10409 run_test 133d "Verifying rename_stats ========================================"
10410
10411 test_133e() {
10412         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10413         remote_ost_nodsh && skip "remote OST with nodsh" && return
10414         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10415         local testdir=$DIR/${tdir}/stats_testdir
10416         local ctr f0 f1 bs=32768 count=42 sum
10417
10418         mkdir -p ${testdir} || error "mkdir failed"
10419
10420         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
10421
10422         for ctr in {write,read}_bytes; do
10423                 sync
10424                 cancel_lru_locks osc
10425
10426                 do_facet ost1 $LCTL set_param -n \
10427                         "obdfilter.*.exports.clear=clear"
10428
10429                 if [ $ctr = write_bytes ]; then
10430                         f0=/dev/zero
10431                         f1=${testdir}/${tfile}
10432                 else
10433                         f0=${testdir}/${tfile}
10434                         f1=/dev/null
10435                 fi
10436
10437                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
10438                         error "dd failed"
10439                 sync
10440                 cancel_lru_locks osc
10441
10442                 sum=$(do_facet ost1 $LCTL get_param \
10443                         "obdfilter.*.exports.*.stats" |
10444                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
10445                                 $1 == ctr { sum += $7 }
10446                                 END { printf("%0.0f", sum) }')
10447
10448                 if ((sum != bs * count)); then
10449                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
10450                 fi
10451         done
10452
10453         rm -rf $DIR/${tdir}
10454 }
10455 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
10456
10457 proc_regexp="/{proc,sys}/{fs,sys,kernel/debug}/{lustre,lnet}/"
10458
10459 test_133f() {
10460         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10461         remote_ost_nodsh && skip "remote OST with nodsh" && return
10462         # First without trusting modes.
10463         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
10464         echo "proc_dirs='$proc_dirs'"
10465         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
10466         find $proc_dirs -exec cat '{}' \; &> /dev/null
10467
10468         # Second verifying readability.
10469         $LCTL get_param -R '*' &> /dev/null || error "proc file read failed"
10470
10471         # eventually, this can also be replaced with "lctl get_param -R",
10472         # but not until that option is always available on the server
10473         local facet
10474         for facet in mds1 ost1; do
10475                 local facet_proc_dirs=$(do_facet $facet \
10476                                         \\\ls -d $proc_regexp 2>/dev/null)
10477                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
10478                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
10479                 do_facet $facet find $facet_proc_dirs \
10480                         ! -name req_history \
10481                         -exec cat '{}' \\\; &> /dev/null
10482
10483                 do_facet $facet find $facet_proc_dirs \
10484                         ! -name req_history \
10485                         -type f \
10486                         -exec cat '{}' \\\; &> /dev/null ||
10487                                 error "proc file read failed"
10488         done
10489 }
10490 run_test 133f "Check for LBUGs/Oopses/unreadable files in /proc"
10491
10492 test_133g() {
10493         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10494         remote_ost_nodsh && skip "remote OST with nodsh" && return
10495         # Second verifying writability.
10496         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
10497         echo "proc_dirs='$proc_dirs'"
10498         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
10499         find $proc_dirs \
10500                 -ignore_readdir_race \
10501                 -type f \
10502                 -not -name force_lbug \
10503                 -not -name changelog_mask \
10504                 -exec badarea_io '{}' \; ||
10505                 error "find $proc_dirs failed"
10506
10507         local facet
10508         for facet in mds1 ost1; do
10509                 [ $(lustre_version_code $facet) -le $(version_code 2.5.54) ] &&
10510                         skip "Too old lustre on $facet" && continue
10511                 local facet_proc_dirs=$(do_facet $facet \
10512                                         \\\ls -d $proc_regexp 2> /dev/null)
10513                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
10514                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
10515                 do_facet $facet find $facet_proc_dirs \
10516                         -ignore_readdir_race \
10517                         -type f \
10518                         -not -name force_lbug \
10519                         -not -name changelog_mask \
10520                         -exec badarea_io '{}' \\\; ||
10521                                 error "$facet find $facet_proc_dirs failed"
10522         done
10523
10524         # remount the FS in case writes/reads /proc break the FS
10525         cleanup || error "failed to unmount"
10526         setup || error "failed to setup"
10527         true
10528 }
10529 run_test 133g "Check for Oopses on bad io area writes/reads in /proc"
10530
10531 test_133h() {
10532         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10533         remote_ost_nodsh && skip "remote OST with nodsh" && return
10534         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.54) ]] &&
10535                 skip "Need MDS version at least 2.9.54" && return
10536
10537         local facet
10538         for facet in client mds1 ost1; do
10539                 local facet_proc_dirs=$(do_facet $facet \
10540                                         \\\ls -d $proc_regexp 2> /dev/null)
10541                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
10542                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
10543                 # Get the list of files that are missing the terminating newline
10544                 local missing=($(do_facet $facet \
10545                         find ${facet_proc_dirs} -type f \|              \
10546                                 while read F\; do                       \
10547                                         awk -v FS='\v' -v RS='\v\v'     \
10548                                         "'END { if(NR>0 &&              \
10549                                         \\\$NF !~ /.*\\\n\$/)           \
10550                                                 print FILENAME}'"       \
10551                                         '\$F'\;                         \
10552                                 done 2>/dev/null))
10553                 [ ${#missing[*]} -eq 0 ] ||
10554                         error "files do not end with newline: ${missing[*]}"
10555         done
10556 }
10557 run_test 133h "Proc files should end with newlines"
10558
10559 test_134a() {
10560         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10561         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
10562                 skip "Need MDS version at least 2.7.54" && return
10563
10564         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
10565         cancel_lru_locks mdc
10566
10567         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
10568         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
10569         [ $unused -eq 0 ] || error "$unused locks are not cleared"
10570
10571         local nr=1000
10572         createmany -o $DIR/$tdir/f $nr ||
10573                 error "failed to create $nr files in $DIR/$tdir"
10574         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
10575
10576         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
10577         do_facet mds1 $LCTL set_param fail_loc=0x327
10578         do_facet mds1 $LCTL set_param fail_val=500
10579         touch $DIR/$tdir/m
10580
10581         echo "sleep 10 seconds ..."
10582         sleep 10
10583         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
10584
10585         do_facet mds1 $LCTL set_param fail_loc=0
10586         do_facet mds1 $LCTL set_param fail_val=0
10587         [ $lck_cnt -lt $unused ] ||
10588                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
10589
10590         rm $DIR/$tdir/m
10591         unlinkmany $DIR/$tdir/f $nr
10592 }
10593 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
10594
10595 test_134b() {
10596         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10597         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
10598                 skip "Need MDS version at least 2.7.54" && return
10599
10600         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
10601         cancel_lru_locks mdc
10602
10603         local low_wm=$(do_facet mds1 $LCTL get_param -n \
10604                         ldlm.lock_reclaim_threshold_mb)
10605         # disable reclaim temporarily
10606         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
10607
10608         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
10609         do_facet mds1 $LCTL set_param fail_loc=0x328
10610         do_facet mds1 $LCTL set_param fail_val=500
10611
10612         $LCTL set_param debug=+trace
10613
10614         local nr=600
10615         createmany -o $DIR/$tdir/f $nr &
10616         local create_pid=$!
10617
10618         echo "Sleep $TIMEOUT seconds ..."
10619         sleep $TIMEOUT
10620         if ! ps -p $create_pid  > /dev/null 2>&1; then
10621                 do_facet mds1 $LCTL set_param fail_loc=0
10622                 do_facet mds1 $LCTL set_param fail_val=0
10623                 do_facet mds1 $LCTL set_param \
10624                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
10625                 error "createmany finished incorrectly!"
10626         fi
10627         do_facet mds1 $LCTL set_param fail_loc=0
10628         do_facet mds1 $LCTL set_param fail_val=0
10629         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
10630         wait $create_pid || return 1
10631
10632         unlinkmany $DIR/$tdir/f $nr
10633 }
10634 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
10635
10636 test_140() { #bug-17379
10637         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10638         test_mkdir $DIR/$tdir
10639         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
10640         cp $(which stat) . || error "Copying stat to $DIR/$tdir"
10641
10642         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
10643         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
10644         local i=0
10645         while i=$((i + 1)); do
10646                 test_mkdir $i
10647                 cd $i || error "Changing to $i"
10648                 ln -s ../stat stat || error "Creating stat symlink"
10649                 # Read the symlink until ELOOP present,
10650                 # not LBUGing the system is considered success,
10651                 # we didn't overrun the stack.
10652                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
10653                 if [ $ret -ne 0 ]; then
10654                         if [ $ret -eq 40 ]; then
10655                                 break  # -ELOOP
10656                         else
10657                                 error "Open stat symlink"
10658                                         return
10659                         fi
10660                 fi
10661         done
10662         i=$((i - 1))
10663         echo "The symlink depth = $i"
10664         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
10665                                         error "Invalid symlink depth"
10666
10667         # Test recursive symlink
10668         ln -s symlink_self symlink_self
10669         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
10670         echo "open symlink_self returns $ret"
10671         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
10672 }
10673 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
10674
10675 test_150() {
10676         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10677         local TF="$TMP/$tfile"
10678
10679         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
10680         cp $TF $DIR/$tfile
10681         cancel_lru_locks $OSC
10682         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
10683         remount_client $MOUNT
10684         df -P $MOUNT
10685         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
10686
10687         $TRUNCATE $TF 6000
10688         $TRUNCATE $DIR/$tfile 6000
10689         cancel_lru_locks $OSC
10690         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
10691
10692         echo "12345" >>$TF
10693         echo "12345" >>$DIR/$tfile
10694         cancel_lru_locks $OSC
10695         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
10696
10697         echo "12345" >>$TF
10698         echo "12345" >>$DIR/$tfile
10699         cancel_lru_locks $OSC
10700         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
10701
10702         rm -f $TF
10703         true
10704 }
10705 run_test 150 "truncate/append tests"
10706
10707 #LU-2902 roc_hit was not able to read all values from lproc
10708 function roc_hit_init() {
10709         local list=$(comma_list $(osts_nodes))
10710         local dir=$DIR/$tdir-check
10711         local file=$dir/$tfile
10712         local BEFORE
10713         local AFTER
10714         local idx
10715
10716         test_mkdir $dir
10717         #use setstripe to do a write to every ost
10718         for i in $(seq 0 $((OSTCOUNT-1))); do
10719                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
10720                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
10721                 idx=$(printf %04x $i)
10722                 BEFORE=$(get_osd_param $list *OST*$idx stats |
10723                         awk '$1 == "cache_access" {sum += $7}
10724                                 END { printf("%0.0f", sum) }')
10725
10726                 cancel_lru_locks osc
10727                 cat $file >/dev/null
10728
10729                 AFTER=$(get_osd_param $list *OST*$idx stats |
10730                         awk '$1 == "cache_access" {sum += $7}
10731                                 END { printf("%0.0f", sum) }')
10732
10733                 echo BEFORE:$BEFORE AFTER:$AFTER
10734                 if ! let "AFTER - BEFORE == 4"; then
10735                         rm -rf $dir
10736                         error "roc_hit is not safe to use"
10737                 fi
10738                 rm $file
10739         done
10740
10741         rm -rf $dir
10742 }
10743
10744 function roc_hit() {
10745         local list=$(comma_list $(osts_nodes))
10746         echo $(get_osd_param $list '' stats |
10747                 awk '$1 == "cache_hit" {sum += $7}
10748                         END { printf("%0.0f", sum) }')
10749 }
10750
10751 function set_cache() {
10752         local on=1
10753
10754         if [ "$2" == "off" ]; then
10755                 on=0;
10756         fi
10757         local list=$(comma_list $(osts_nodes))
10758         set_osd_param $list '' $1_cache_enable $on
10759
10760         cancel_lru_locks osc
10761 }
10762
10763 test_151() {
10764         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10765         remote_ost_nodsh && skip "remote OST with nodsh" && return
10766
10767         local CPAGES=3
10768         local list=$(comma_list $(osts_nodes))
10769
10770         # check whether obdfilter is cache capable at all
10771         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
10772                 echo "not cache-capable obdfilter"
10773                 return 0
10774         fi
10775
10776         # check cache is enabled on all obdfilters
10777         if get_osd_param $list '' read_cache_enable | grep 0; then
10778                 echo "oss cache is disabled"
10779                 return 0
10780         fi
10781
10782         set_osd_param $list '' writethrough_cache_enable 1
10783
10784         # check write cache is enabled on all obdfilters
10785         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
10786                 echo "oss write cache is NOT enabled"
10787                 return 0
10788         fi
10789
10790         roc_hit_init
10791
10792         #define OBD_FAIL_OBD_NO_LRU  0x609
10793         do_nodes $list $LCTL set_param fail_loc=0x609
10794
10795         # pages should be in the case right after write
10796         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
10797                 error "dd failed"
10798
10799         local BEFORE=$(roc_hit)
10800         cancel_lru_locks osc
10801         cat $DIR/$tfile >/dev/null
10802         local AFTER=$(roc_hit)
10803
10804         do_nodes $list $LCTL set_param fail_loc=0
10805
10806         if ! let "AFTER - BEFORE == CPAGES"; then
10807                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10808         fi
10809
10810         # the following read invalidates the cache
10811         cancel_lru_locks osc
10812         set_osd_param $list '' read_cache_enable 0
10813         cat $DIR/$tfile >/dev/null
10814
10815         # now data shouldn't be found in the cache
10816         BEFORE=$(roc_hit)
10817         cancel_lru_locks osc
10818         cat $DIR/$tfile >/dev/null
10819         AFTER=$(roc_hit)
10820         if let "AFTER - BEFORE != 0"; then
10821                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10822         fi
10823
10824         set_osd_param $list '' read_cache_enable 1
10825         rm -f $DIR/$tfile
10826 }
10827 run_test 151 "test cache on oss and controls ==============================="
10828
10829 test_152() {
10830         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10831         local TF="$TMP/$tfile"
10832
10833         # simulate ENOMEM during write
10834 #define OBD_FAIL_OST_NOMEM      0x226
10835         lctl set_param fail_loc=0x80000226
10836         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
10837         cp $TF $DIR/$tfile
10838         sync || error "sync failed"
10839         lctl set_param fail_loc=0
10840
10841         # discard client's cache
10842         cancel_lru_locks osc
10843
10844         # simulate ENOMEM during read
10845         lctl set_param fail_loc=0x80000226
10846         cmp $TF $DIR/$tfile || error "cmp failed"
10847         lctl set_param fail_loc=0
10848
10849         rm -f $TF
10850 }
10851 run_test 152 "test read/write with enomem ============================"
10852
10853 test_153() {
10854         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
10855 }
10856 run_test 153 "test if fdatasync does not crash ======================="
10857
10858 dot_lustre_fid_permission_check() {
10859         local fid=$1
10860         local ffid=$MOUNT/.lustre/fid/$fid
10861         local test_dir=$2
10862
10863         echo "stat fid $fid"
10864         stat $ffid > /dev/null || error "stat $ffid failed."
10865         echo "touch fid $fid"
10866         touch $ffid || error "touch $ffid failed."
10867         echo "write to fid $fid"
10868         cat /etc/hosts > $ffid || error "write $ffid failed."
10869         echo "read fid $fid"
10870         diff /etc/hosts $ffid || error "read $ffid failed."
10871         echo "append write to fid $fid"
10872         cat /etc/hosts >> $ffid || error "append write $ffid failed."
10873         echo "rename fid $fid"
10874         mv $ffid $test_dir/$tfile.1 &&
10875                 error "rename $ffid to $tfile.1 should fail."
10876         touch $test_dir/$tfile.1
10877         mv $test_dir/$tfile.1 $ffid &&
10878                 error "rename $tfile.1 to $ffid should fail."
10879         rm -f $test_dir/$tfile.1
10880         echo "truncate fid $fid"
10881         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
10882         if [ $MDSCOUNT -lt 2 ]; then #FIXME when cross-MDT hard link is working
10883                 echo "link fid $fid"
10884                 ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
10885         fi
10886         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
10887                 echo "setfacl fid $fid"
10888                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
10889                 echo "getfacl fid $fid"
10890                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
10891         fi
10892         echo "unlink fid $fid"
10893         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
10894         echo "mknod fid $fid"
10895         mknod $ffid c 1 3 && error "mknod $ffid should fail."
10896
10897         fid=[0xf00000400:0x1:0x0]
10898         ffid=$MOUNT/.lustre/fid/$fid
10899
10900         echo "stat non-exist fid $fid"
10901         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
10902         echo "write to non-exist fid $fid"
10903         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
10904         echo "link new fid $fid"
10905         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
10906
10907         mkdir -p $test_dir/$tdir
10908         touch $test_dir/$tdir/$tfile
10909         fid=$($LFS path2fid $test_dir/$tdir)
10910         rc=$?
10911         [ $rc -ne 0 ] &&
10912                 error "error: could not get fid for $test_dir/$dir/$tfile."
10913
10914         ffid=$MOUNT/.lustre/fid/$fid
10915
10916         echo "ls $fid"
10917         ls $ffid > /dev/null || error "ls $ffid failed."
10918         echo "touch $fid/$tfile.1"
10919         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
10920
10921         echo "touch $MOUNT/.lustre/fid/$tfile"
10922         touch $MOUNT/.lustre/fid/$tfile && \
10923                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
10924
10925         echo "setxattr to $MOUNT/.lustre/fid"
10926         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
10927
10928         echo "listxattr for $MOUNT/.lustre/fid"
10929         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
10930
10931         echo "delxattr from $MOUNT/.lustre/fid"
10932         setfattr -x trusted.name1 $MOUNT/.lustre/fid
10933
10934         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
10935         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
10936                 error "touch invalid fid should fail."
10937
10938         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
10939         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
10940                 error "touch non-normal fid should fail."
10941
10942         echo "rename $tdir to $MOUNT/.lustre/fid"
10943         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
10944                 error "rename to $MOUNT/.lustre/fid should fail."
10945
10946         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
10947         then            # LU-3547
10948                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
10949                 local new_obf_mode=777
10950
10951                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
10952                 chmod $new_obf_mode $DIR/.lustre/fid ||
10953                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
10954
10955                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
10956                 [ $obf_mode -eq $new_obf_mode ] ||
10957                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
10958
10959                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
10960                 chmod $old_obf_mode $DIR/.lustre/fid ||
10961                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
10962         fi
10963
10964         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
10965         fid=$($LFS path2fid $test_dir/$tfile-2)
10966
10967         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.50) ]
10968         then # LU-5424
10969                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
10970                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
10971                         error "create lov data thru .lustre failed"
10972         fi
10973         echo "cp /etc/passwd $test_dir/$tfile-2"
10974         cp /etc/passwd $test_dir/$tfile-2 ||
10975                 error "copy to $test_dir/$tfile-2 failed."
10976         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
10977         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
10978                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
10979
10980         rm -rf $test_dir/tfile.lnk
10981         rm -rf $test_dir/$tfile-2
10982 }
10983
10984 test_154A() {
10985         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10986                 skip "Need MDS version at least 2.4.1" && return
10987
10988         local tf=$DIR/$tfile
10989         touch $tf
10990
10991         local fid=$($LFS path2fid $tf)
10992         [ -z "$fid" ] && error "path2fid unable to get $tf FID"
10993
10994         # check that we get the same pathname back
10995         local found=$($LFS fid2path $MOUNT "$fid")
10996         [ -z "$found" ] && error "fid2path unable to get '$fid' path"
10997         [ "$found" == "$tf" ] ||
10998                 error "fid2path($fid=path2fid($tf)) = $found != $tf"
10999 }
11000 run_test 154A "lfs path2fid and fid2path basic checks"
11001
11002 test_154B() {
11003         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
11004                 skip "Need MDS version at least 2.4.1" && return
11005
11006         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
11007         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
11008         local linkea=$($LL_DECODE_LINKEA $DIR/$tdir/$tfile | grep 'pfid')
11009         [ -z "$linkea" ] && error "decode linkea $DIR/$tdir/$tfile failed"
11010
11011         local name=$(echo $linkea | awk '/pfid/ {print $5}' | sed -e "s/'//g")
11012         local PFID=$(echo $linkea | awk '/pfid/ {print $3}' | sed -e "s/,//g")
11013
11014         # check that we get the same pathname
11015         echo "PFID: $PFID, name: $name"
11016         local FOUND=$($LFS fid2path $MOUNT "$PFID")
11017         [ -z "$FOUND" ] && error "fid2path unable to get $PFID path"
11018         [ "$FOUND/$name" != "$DIR/$tdir/$tfile" ] &&
11019                 error "ll_decode_linkea has $FOUND/$name != $DIR/$tdir/$tfile"
11020
11021         rm -rf $DIR/$tdir || error "Can not delete directory $DIR/$tdir"
11022 }
11023 run_test 154B "verify the ll_decode_linkea tool"
11024
11025 test_154a() {
11026         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11027         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
11028                 { skip "Need MDS version at least 2.2.51"; return 0; }
11029         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
11030         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
11031
11032         cp /etc/hosts $DIR/$tfile
11033
11034         fid=$($LFS path2fid $DIR/$tfile)
11035         rc=$?
11036         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
11037
11038         dot_lustre_fid_permission_check "$fid" $DIR ||
11039                 error "dot lustre permission check $fid failed"
11040
11041         ls -a $MOUNT | grep "\.lustre" && error ".lustre should not be listed"
11042
11043         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
11044
11045         touch $MOUNT/.lustre/file &&
11046                 error "creation is not allowed under .lustre"
11047
11048         mkdir $MOUNT/.lustre/dir &&
11049                 error "mkdir is not allowed under .lustre"
11050
11051         rm -rf $DIR/$tfile
11052 }
11053 run_test 154a "Open-by-FID"
11054
11055 test_154b() {
11056         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11057         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
11058                 { skip "Need MDS version at least 2.2.51"; return 0; }
11059         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
11060
11061         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11062
11063         local remote_dir=$DIR/$tdir/remote_dir
11064         local MDTIDX=1
11065         local rc=0
11066
11067         mkdir -p $DIR/$tdir
11068         $LFS mkdir -i $MDTIDX $remote_dir ||
11069                 error "create remote directory failed"
11070
11071         cp /etc/hosts $remote_dir/$tfile
11072
11073         fid=$($LFS path2fid $remote_dir/$tfile)
11074         rc=$?
11075         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
11076
11077         dot_lustre_fid_permission_check "$fid" $remote_dir ||
11078                 error "dot lustre permission check $fid failed"
11079         rm -rf $DIR/$tdir
11080 }
11081 run_test 154b "Open-by-FID for remote directory"
11082
11083 test_154c() {
11084         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
11085                 skip "Need MDS version at least 2.4.1" && return
11086
11087         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
11088         local FID1=$($LFS path2fid $DIR/$tfile.1)
11089         local FID2=$($LFS path2fid $DIR/$tfile.2)
11090         local FID3=$($LFS path2fid $DIR/$tfile.3)
11091
11092         local N=1
11093         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
11094                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
11095                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
11096                 local want=FID$N
11097                 [ "$FID" = "${!want}" ] ||
11098                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
11099                 N=$((N + 1))
11100         done
11101
11102         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
11103         do
11104                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
11105                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
11106                 N=$((N + 1))
11107         done
11108 }
11109 run_test 154c "lfs path2fid and fid2path multiple arguments"
11110
11111 test_154d() {
11112         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11113         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.53) ]] &&
11114                 skip "Need MDS version at least 2.5.53" && return
11115
11116         if remote_mds; then
11117                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
11118         else
11119                 nid="0@lo"
11120         fi
11121         local proc_ofile="mdt.*.exports.'$nid'.open_files"
11122         local fd
11123         local cmd
11124
11125         rm -f $DIR/$tfile
11126         touch $DIR/$tfile
11127
11128         local fid=$($LFS path2fid $DIR/$tfile)
11129         # Open the file
11130         fd=$(free_fd)
11131         cmd="exec $fd<$DIR/$tfile"
11132         eval $cmd
11133         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
11134         echo "$fid_list" | grep "$fid"
11135         rc=$?
11136
11137         cmd="exec $fd>/dev/null"
11138         eval $cmd
11139         if [ $rc -ne 0 ]; then
11140                 error "FID $fid not found in open files list $fid_list"
11141         fi
11142 }
11143 run_test 154d "Verify open file fid"
11144
11145 test_154e()
11146 {
11147         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.50) ]] &&
11148                 skip "Need MDS version at least 2.6.50" && return
11149
11150         if ls -a $MOUNT | grep -q '^\.lustre$'; then
11151                 error ".lustre returned by readdir"
11152         fi
11153 }
11154 run_test 154e ".lustre is not returned by readdir"
11155
11156 test_154f() {
11157         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
11158         # create parent directory on a single MDT to avoid cross-MDT hardlinks
11159         test_mkdir -p -c1 $DIR/$tdir/d
11160         # test dirs inherit from its stripe
11161         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
11162         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
11163         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
11164         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
11165         touch $DIR/f
11166
11167         # get fid of parents
11168         local FID0=$($LFS path2fid $DIR/$tdir/d)
11169         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
11170         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
11171         local FID3=$($LFS path2fid $DIR)
11172
11173         # check that path2fid --parents returns expected <parent_fid>/name
11174         # 1) test for a directory (single parent)
11175         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
11176         [ "$parent" == "$FID0/foo1" ] ||
11177                 error "expected parent: $FID0/foo1, got: $parent"
11178
11179         # 2) test for a file with nlink > 1 (multiple parents)
11180         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
11181         echo "$parent" | grep -F "$FID1/$tfile" ||
11182                 error "$FID1/$tfile not returned in parent list"
11183         echo "$parent" | grep -F "$FID2/link" ||
11184                 error "$FID2/link not returned in parent list"
11185
11186         # 3) get parent by fid
11187         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
11188         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11189         echo "$parent" | grep -F "$FID1/$tfile" ||
11190                 error "$FID1/$tfile not returned in parent list (by fid)"
11191         echo "$parent" | grep -F "$FID2/link" ||
11192                 error "$FID2/link not returned in parent list (by fid)"
11193
11194         # 4) test for entry in root directory
11195         parent=$($LFS path2fid --parents $DIR/f)
11196         echo "$parent" | grep -F "$FID3/f" ||
11197                 error "$FID3/f not returned in parent list"
11198
11199         # 5) test it on root directory
11200         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
11201                 error "$MOUNT should not have parents"
11202
11203         # enable xattr caching and check that linkea is correctly updated
11204         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
11205         save_lustre_params client "llite.*.xattr_cache" > $save
11206         lctl set_param llite.*.xattr_cache 1
11207
11208         # 6.1) linkea update on rename
11209         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
11210
11211         # get parents by fid
11212         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11213         # foo1 should no longer be returned in parent list
11214         echo "$parent" | grep -F "$FID1" &&
11215                 error "$FID1 should no longer be in parent list"
11216         # the new path should appear
11217         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
11218                 error "$FID2/$tfile.moved is not in parent list"
11219
11220         # 6.2) linkea update on unlink
11221         rm -f $DIR/$tdir/d/foo2/link
11222         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11223         # foo2/link should no longer be returned in parent list
11224         echo "$parent" | grep -F "$FID2/link" &&
11225                 error "$FID2/link should no longer be in parent list"
11226         true
11227
11228         rm -f $DIR/f
11229         restore_lustre_params < $save
11230         rm -f $save
11231 }
11232 run_test 154f "get parent fids by reading link ea"
11233
11234 test_154g()
11235 {
11236         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.92) && \
11237            $(lustre_version_code client) -gt $(version_code 2.6.99) ]] ||
11238                 { skip "Need MDS version at least 2.6.92"; return 0; }
11239         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
11240
11241         mkdir -p $DIR/$tdir
11242         llapi_fid_test -d $DIR/$tdir
11243 }
11244 run_test 154g "various llapi FID tests"
11245
11246 test_155_small_load() {
11247     local temp=$TMP/$tfile
11248     local file=$DIR/$tfile
11249
11250     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
11251         error "dd of=$temp bs=6096 count=1 failed"
11252     cp $temp $file
11253     cancel_lru_locks $OSC
11254     cmp $temp $file || error "$temp $file differ"
11255
11256     $TRUNCATE $temp 6000
11257     $TRUNCATE $file 6000
11258     cmp $temp $file || error "$temp $file differ (truncate1)"
11259
11260     echo "12345" >>$temp
11261     echo "12345" >>$file
11262     cmp $temp $file || error "$temp $file differ (append1)"
11263
11264     echo "12345" >>$temp
11265     echo "12345" >>$file
11266     cmp $temp $file || error "$temp $file differ (append2)"
11267
11268     rm -f $temp $file
11269     true
11270 }
11271
11272 test_155_big_load() {
11273     remote_ost_nodsh && skip "remote OST with nodsh" && return
11274     local temp=$TMP/$tfile
11275     local file=$DIR/$tfile
11276
11277     free_min_max
11278     local cache_size=$(do_facet ost$((MAXI+1)) \
11279         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
11280     local large_file_size=$((cache_size * 2))
11281
11282     echo "OSS cache size: $cache_size KB"
11283     echo "Large file size: $large_file_size KB"
11284
11285     [ $MAXV -le $large_file_size ] && \
11286         skip_env "max available OST size needs > $large_file_size KB" && \
11287         return 0
11288
11289     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
11290
11291     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
11292         error "dd of=$temp bs=$large_file_size count=1k failed"
11293     cp $temp $file
11294     ls -lh $temp $file
11295     cancel_lru_locks osc
11296     cmp $temp $file || error "$temp $file differ"
11297
11298     rm -f $temp $file
11299     true
11300 }
11301
11302 save_writethrough() {
11303         local facets=$(get_facets OST)
11304
11305         save_lustre_params $facets "obdfilter.*.writethrough_cache_enable" > $1
11306         save_lustre_params $facets "osd-*.*.writethrough_cache_enable" >> $1
11307 }
11308
11309 test_155a() {
11310         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11311         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11312         save_writethrough $p
11313
11314         set_cache read on
11315         set_cache writethrough on
11316         test_155_small_load
11317         restore_lustre_params < $p
11318         rm -f $p
11319 }
11320 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
11321
11322 test_155b() {
11323         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11324         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11325         save_writethrough $p
11326
11327         set_cache read on
11328         set_cache writethrough off
11329         test_155_small_load
11330         restore_lustre_params < $p
11331         rm -f $p
11332 }
11333 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
11334
11335 test_155c() {
11336         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11337         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11338         save_writethrough $p
11339
11340         set_cache read off
11341         set_cache writethrough on
11342         test_155_small_load
11343         restore_lustre_params < $p
11344         rm -f $p
11345 }
11346 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
11347
11348 test_155d() {
11349         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11350         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11351         save_writethrough $p
11352
11353         set_cache read off
11354         set_cache writethrough off
11355         test_155_small_load
11356         restore_lustre_params < $p
11357         rm -f $p
11358 }
11359 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
11360
11361 test_155e() {
11362         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11363         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11364         save_writethrough $p
11365
11366         set_cache read on
11367         set_cache writethrough on
11368         test_155_big_load
11369         restore_lustre_params < $p
11370         rm -f $p
11371 }
11372 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
11373
11374 test_155f() {
11375         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11376         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11377         save_writethrough $p
11378
11379         set_cache read on
11380         set_cache writethrough off
11381         test_155_big_load
11382         restore_lustre_params < $p
11383         rm -f $p
11384 }
11385 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
11386
11387 test_155g() {
11388         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11389         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11390         save_writethrough $p
11391
11392         set_cache read off
11393         set_cache writethrough on
11394         test_155_big_load
11395         restore_lustre_params < $p
11396         rm -f $p
11397 }
11398 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
11399
11400 test_155h() {
11401         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11402         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11403         save_writethrough $p
11404
11405         set_cache read off
11406         set_cache writethrough off
11407         test_155_big_load
11408         restore_lustre_params < $p
11409         rm -f $p
11410 }
11411 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
11412
11413 test_156() {
11414         remote_ost_nodsh && skip "remote OST with nodsh" && return
11415         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11416         local CPAGES=3
11417         local BEFORE
11418         local AFTER
11419         local file="$DIR/$tfile"
11420         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11421
11422         [ "$(facet_fstype ost1)" = "zfs" -a \
11423            $(lustre_version_code ost1 -lt $(version_code 2.6.93)) ] &&
11424                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS" &&
11425                 return
11426
11427         save_writethrough $p
11428         roc_hit_init
11429
11430         log "Turn on read and write cache"
11431         set_cache read on
11432         set_cache writethrough on
11433
11434         log "Write data and read it back."
11435         log "Read should be satisfied from the cache."
11436         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
11437         BEFORE=$(roc_hit)
11438         cancel_lru_locks osc
11439         cat $file >/dev/null
11440         AFTER=$(roc_hit)
11441         if ! let "AFTER - BEFORE == CPAGES"; then
11442                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11443         else
11444                 log "cache hits:: before: $BEFORE, after: $AFTER"
11445         fi
11446
11447         log "Read again; it should be satisfied from the cache."
11448         BEFORE=$AFTER
11449         cancel_lru_locks osc
11450         cat $file >/dev/null
11451         AFTER=$(roc_hit)
11452         if ! let "AFTER - BEFORE == CPAGES"; then
11453                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11454         else
11455                 log "cache hits:: before: $BEFORE, after: $AFTER"
11456         fi
11457
11458         log "Turn off the read cache and turn on the write cache"
11459         set_cache read off
11460         set_cache writethrough on
11461
11462         log "Read again; it should be satisfied from the cache."
11463         BEFORE=$(roc_hit)
11464         cancel_lru_locks osc
11465         cat $file >/dev/null
11466         AFTER=$(roc_hit)
11467         if ! let "AFTER - BEFORE == CPAGES"; then
11468                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11469         else
11470                 log "cache hits:: before: $BEFORE, after: $AFTER"
11471         fi
11472
11473         log "Read again; it should not be satisfied from the cache."
11474         BEFORE=$AFTER
11475         cancel_lru_locks osc
11476         cat $file >/dev/null
11477         AFTER=$(roc_hit)
11478         if ! let "AFTER - BEFORE == 0"; then
11479                 error "IN CACHE: before: $BEFORE, after: $AFTER"
11480         else
11481                 log "cache hits:: before: $BEFORE, after: $AFTER"
11482         fi
11483
11484         log "Write data and read it back."
11485         log "Read should be satisfied from the cache."
11486         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
11487         BEFORE=$(roc_hit)
11488         cancel_lru_locks osc
11489         cat $file >/dev/null
11490         AFTER=$(roc_hit)
11491         if ! let "AFTER - BEFORE == CPAGES"; then
11492                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11493         else
11494                 log "cache hits:: before: $BEFORE, after: $AFTER"
11495         fi
11496
11497         log "Read again; it should not be satisfied from the cache."
11498         BEFORE=$AFTER
11499         cancel_lru_locks osc
11500         cat $file >/dev/null
11501         AFTER=$(roc_hit)
11502         if ! let "AFTER - BEFORE == 0"; then
11503                 error "IN CACHE: before: $BEFORE, after: $AFTER"
11504         else
11505                 log "cache hits:: before: $BEFORE, after: $AFTER"
11506         fi
11507
11508         log "Turn off read and write cache"
11509         set_cache read off
11510         set_cache writethrough off
11511
11512         log "Write data and read it back"
11513         log "It should not be satisfied from the cache."
11514         rm -f $file
11515         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
11516         cancel_lru_locks osc
11517         BEFORE=$(roc_hit)
11518         cat $file >/dev/null
11519         AFTER=$(roc_hit)
11520         if ! let "AFTER - BEFORE == 0"; then
11521                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
11522         else
11523                 log "cache hits:: before: $BEFORE, after: $AFTER"
11524         fi
11525
11526         log "Turn on the read cache and turn off the write cache"
11527         set_cache read on
11528         set_cache writethrough off
11529
11530         log "Write data and read it back"
11531         log "It should not be satisfied from the cache."
11532         rm -f $file
11533         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
11534         BEFORE=$(roc_hit)
11535         cancel_lru_locks osc
11536         cat $file >/dev/null
11537         AFTER=$(roc_hit)
11538         if ! let "AFTER - BEFORE == 0"; then
11539                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
11540         else
11541                 log "cache hits:: before: $BEFORE, after: $AFTER"
11542         fi
11543
11544         log "Read again; it should be satisfied from the cache."
11545         BEFORE=$(roc_hit)
11546         cancel_lru_locks osc
11547         cat $file >/dev/null
11548         AFTER=$(roc_hit)
11549         if ! let "AFTER - BEFORE == CPAGES"; then
11550                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11551         else
11552                 log "cache hits:: before: $BEFORE, after: $AFTER"
11553         fi
11554
11555         restore_lustre_params < $p
11556         rm -f $p $file
11557 }
11558 run_test 156 "Verification of tunables"
11559
11560 #Changelogs
11561 cleanup_changelog () {
11562         trap 0
11563         echo "Deregistering changelog client $CL_USER"
11564         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $CL_USER
11565 }
11566
11567 err17935 () {
11568         if [[ $MDSCOUNT -gt 1 ]]; then
11569                 error_ignore bz17935 $*
11570         else
11571                 error $*
11572         fi
11573 }
11574
11575 changelog_chmask()
11576 {
11577         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
11578
11579         MASK=$(do_facet $SINGLEMDS $LCTL get_param $CL_MASK_PARAM| grep -c "$1")
11580
11581         if [ $MASK -eq 1 ]; then
11582                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="-$1"
11583         else
11584                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="+$1"
11585         fi
11586 }
11587
11588 changelog_extract_field() {
11589         local mdt=$1
11590         local cltype=$2
11591         local file=$3
11592         local identifier=$4
11593
11594         $LFS changelog $mdt | gawk "/$cltype.*$file$/ {
11595                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
11596                 tail -1
11597 }
11598
11599 test_160a() {
11600         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11601         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11602         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
11603                 { skip "Need MDS version at least 2.2.0"; return; }
11604
11605         local CL_USERS="mdd.$MDT0.changelog_users"
11606         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
11607         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11608                 changelog_register -n)
11609         echo "Registered as changelog user $CL_USER"
11610         trap cleanup_changelog EXIT
11611         $GET_CL_USERS | grep -q $CL_USER ||
11612                 error "User $CL_USER not found in changelog_users"
11613
11614         # change something
11615         test_mkdir -p $DIR/$tdir/pics/2008/zachy
11616         touch $DIR/$tdir/pics/2008/zachy/timestamp
11617         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
11618         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
11619         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
11620         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
11621         rm $DIR/$tdir/pics/desktop.jpg
11622
11623         $LFS changelog $MDT0 | tail -5
11624
11625         echo "verifying changelog mask"
11626         changelog_chmask "MKDIR"
11627         changelog_chmask "CLOSE"
11628
11629         test_mkdir -p $DIR/$tdir/pics/zach/sofia
11630         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
11631
11632         changelog_chmask "MKDIR"
11633         changelog_chmask "CLOSE"
11634
11635         test_mkdir -p $DIR/$tdir/pics/2008/sofia
11636         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
11637
11638         $LFS changelog $MDT0
11639         MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
11640         CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
11641         [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
11642         [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
11643
11644         # verify contents
11645         echo "verifying target fid"
11646         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "t=")
11647         fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
11648         [ "$fidc" == "$fidf" ] ||
11649                 err17935 "fid in changelog $fidc != file fid $fidf"
11650         echo "verifying parent fid"
11651         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "p=")
11652         fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
11653         [ "$fidc" == "$fidf" ] ||
11654                 err17935 "pfid in changelog $fidc != dir fid $fidf"
11655
11656         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
11657         $LFS changelog_clear $MDT0 $CL_USER $(($USER_REC1 + 5))
11658         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
11659         echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
11660         [ $USER_REC2 == $(($USER_REC1 + 5)) ] ||
11661                 err17935 "user index expected $(($USER_REC1 + 5)) is $USER_REC2"
11662
11663         MIN_REC=$($GET_CL_USERS |
11664                 awk 'min == "" || $2 < min {min = $2}; END {print min}')
11665         FIRST_REC=$($LFS changelog $MDT0 | head -n1 | awk '{print $1}')
11666         echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
11667         [ $FIRST_REC == $(($MIN_REC + 1)) ] ||
11668                 err17935 "first index should be $(($MIN_REC + 1)) is $FIRST_REC"
11669
11670         # LU-3446 changelog index reset on MDT restart
11671         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11672         CUR_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11673         $LFS changelog_clear $MDT0 $CL_USER 0
11674         stop $SINGLEMDS || error "Fail to stop MDT."
11675         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
11676         CUR_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11677         echo "verifying index survives MDT restart: $CUR_REC1 == $CUR_REC2"
11678         [ $CUR_REC1 == $CUR_REC2 ] ||
11679                 err17935 "current index should be $CUR_REC1 is $CUR_REC2"
11680
11681         echo "verifying user deregister"
11682         cleanup_changelog
11683         $GET_CL_USERS | grep -q $CL_USER &&
11684                 error "User $CL_USER still in changelog_users"
11685
11686         USERS=$(( $($GET_CL_USERS | wc -l) - 2 ))
11687         if [ $CL_USER -eq 0 ]; then
11688                 LAST_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11689                 touch $DIR/$tdir/chloe
11690                 LAST_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11691                 echo "verify changelogs are off: $LAST_REC1 == $LAST_REC2"
11692                 [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
11693         else
11694                 echo "$CL_USER other changelog users; can't verify off"
11695         fi
11696 }
11697 run_test 160a "changelog sanity"
11698
11699 test_160b() { # LU-3587
11700         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11701         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11702         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
11703                 { skip "Need MDS version at least 2.2.0"; return; }
11704
11705         local CL_USERS="mdd.$MDT0.changelog_users"
11706         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
11707         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11708                 changelog_register -n)
11709         echo "Registered as changelog user $CL_USER"
11710         trap cleanup_changelog EXIT
11711         $GET_CL_USERS | grep -q $CL_USER ||
11712                 error "User $CL_USER not found in changelog_users"
11713
11714         local LONGNAME1=$(str_repeat a 255)
11715         local LONGNAME2=$(str_repeat b 255)
11716
11717         cd $DIR
11718         echo "creating very long named file"
11719         touch $LONGNAME1 || error "create of $LONGNAME1 failed"
11720         echo "moving very long named file"
11721         mv $LONGNAME1 $LONGNAME2
11722
11723         $LFS changelog $MDT0 | grep RENME
11724         rm -f $LONGNAME2
11725         cleanup_changelog
11726 }
11727 run_test 160b "Verify that very long rename doesn't crash in changelog"
11728
11729 test_160c() {
11730         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11731
11732         local rc=0
11733         local server_version=$(lustre_version_code $SINGLEMDS)
11734
11735         [[ $server_version -gt $(version_code 2.5.57) ]] ||
11736                 [[ $server_version -gt $(version_code 2.5.1) &&
11737                    $server_version -lt $(version_code 2.5.50) ]] ||
11738                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
11739         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11740
11741         # Registration step
11742         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11743                 changelog_register -n)
11744         trap cleanup_changelog EXIT
11745
11746         rm -rf $DIR/$tdir
11747         mkdir -p $DIR/$tdir
11748         $MCREATE $DIR/$tdir/foo_160c
11749         changelog_chmask "TRUNC"
11750         $TRUNCATE $DIR/$tdir/foo_160c 200
11751         changelog_chmask "TRUNC"
11752         $TRUNCATE $DIR/$tdir/foo_160c 199
11753         $LFS changelog $MDT0
11754         TRUNCS=$($LFS changelog $MDT0 | tail -5 | grep -c "TRUNC")
11755         [ $TRUNCS -eq 1 ] || err17935 "TRUNC changelog mask count $TRUNCS != 1"
11756         $LFS changelog_clear $MDT0 $CL_USER 0
11757
11758         # Deregistration step
11759         cleanup_changelog
11760 }
11761 run_test 160c "verify that changelog log catch the truncate event"
11762
11763 test_160d() {
11764         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11765         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11766
11767         local server_version=$(lustre_version_code mds1)
11768         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
11769
11770         [[ $server_version -ge $(version_code 2.7.60) ]] ||
11771                 { skip "Need MDS version at least 2.7.60+"; return; }
11772         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11773
11774         # Registration step
11775         CL_USER=$(do_facet mds1 $LCTL --device $MDT0 \
11776                 changelog_register -n)
11777
11778         trap cleanup_changelog EXIT
11779         mkdir -p $DIR/$tdir/migrate_dir
11780         $LFS changelog_clear $MDT0 $CL_USER 0
11781
11782         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
11783         $LFS changelog $MDT0
11784         MIGRATES=$($LFS changelog $MDT0 | tail -5 | grep -c "MIGRT")
11785         $LFS changelog_clear $MDT0 $CL_USER 0
11786         [ $MIGRATES -eq 1 ] ||
11787                 error "MIGRATE changelog mask count $MIGRATES != 1"
11788
11789         # Deregistration step
11790         cleanup_changelog
11791 }
11792 run_test 160d "verify that changelog log catch the migrate event"
11793
11794 test_160e() {
11795         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11796
11797         # Create a user
11798         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11799                 changelog_register -n)
11800         echo "Registered as changelog user $CL_USER"
11801         trap cleanup_changelog EXIT
11802
11803         # Delete a future user (expect fail)
11804         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister cl77
11805         local rc=$?
11806
11807         if [ $rc -eq 0 ]; then
11808                 error "Deleted non-existant user cl77"
11809         elif [ $rc -ne 2 ]; then
11810                 error "changelog_deregister failed with $rc, " \
11811                         "expected 2 (ENOENT)"
11812         fi
11813
11814         # Clear to a bad index (1 billion should be safe)
11815         $LFS changelog_clear $MDT0 $CL_USER 1000000000
11816         rc=$?
11817
11818         if [ $rc -eq 0 ]; then
11819                 error "Successfully cleared to invalid CL index"
11820         elif [ $rc -ne 22 ]; then
11821                 error "changelog_clear failed with $rc, expected 22 (EINVAL)"
11822         fi
11823 }
11824 run_test 160e "changelog negative testing"
11825
11826 cleanup_160f() {
11827         trap 0
11828         do_facet $SINGLEMDS $LCTL set_param fail_loc=0 fail_val=0
11829         echo "Deregistering changelog client $CL_USER"
11830         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $CL_USER
11831         echo "Deregistering changelog client $CL_USER2"
11832         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $CL_USER2
11833         restore_lustre_params < $save_params
11834         rm -f $save_params
11835 }
11836
11837 test_160f() {
11838         # do_facet $SINGLEMDS $LCTL set_param mdd.$MDT0.changelog_gc=1
11839         # should be set by default
11840
11841         local CL_USERS="mdd.$MDT0.changelog_users"
11842         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
11843         local save_params="$TMP/sanity-$TESTNAME.parameters"
11844
11845         save_lustre_params $SINGLEMDS \
11846                 "mdd.$MDT0.changelog_max_idle_time" > $save_params
11847         save_lustre_params $SINGLEMDS \
11848                 "mdd.$MDT0.changelog_min_gc_interval" >> $save_params
11849         save_lustre_params $SINGLEMDS \
11850                 "mdd.$MDT0.changelog_min_free_cat_entries" >> $save_params
11851
11852         trap cleanup_160f EXIT
11853
11854         # Create a user
11855         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11856                 changelog_register -n)
11857         echo "Registered as changelog user $CL_USER"
11858         CL_USER2=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11859                 changelog_register -n)
11860         echo "Registered as changelog user $CL_USER2"
11861         $GET_CL_USERS | grep -q $CL_USER ||
11862                 error "User $CL_USER not found in changelog_users"
11863         $GET_CL_USERS | grep -q $CL_USER2 ||
11864                 error "User $CL_USER2 not found in changelog_users"
11865
11866         # generate some changelogs to accumulate
11867         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
11868         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
11869         touch $DIR/$tdir/${tfile}2 || error "touch $DIR/$tdir/${tfile}2 failed"
11870         rm -f $DIR/$tdir/$tfile || error "rm -f $tfile failed"
11871
11872         # check changelogs have been generated
11873         nbcl=$($LFS changelog $MDT0 | wc -l)
11874         [[ $nbcl -eq 0 ]] && error "no changelogs found"
11875
11876         do_facet $SINGLEMDS $LCTL set_param \
11877                 mdd.$MDT0.changelog_max_idle_time=10
11878         do_facet $SINGLEMDS $LCTL set_param \
11879                 mdd.$MDT0.changelog_min_gc_interval=2
11880         do_facet $SINGLEMDS $LCTL set_param \
11881                 mdd.$MDT0.changelog_min_free_cat_entries=3
11882
11883         # simulate changelog catalog almost full
11884 #define OBD_FAIL_CAT_FREE_RECORDS                  0x1313
11885         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x1313
11886         do_facet $SINGLEMDS $LCTL set_param fail_val=3
11887
11888         sleep 6
11889         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
11890         $LFS changelog_clear $MDT0 $CL_USER $(($USER_REC1 + 2))
11891         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
11892         echo "verifying user clear: $(( $USER_REC1 + 2 )) == $USER_REC2"
11893         [ $USER_REC2 == $(($USER_REC1 + 2)) ] ||
11894                 error "user index expected $(($USER_REC1 + 2)) is $USER_REC2"
11895         sleep 5
11896
11897         # generate one more changelog to trigger fail_loc
11898         rm -rf $DIR/$tdir || error "rm -rf $tdir failed"
11899
11900         # ensure gc thread is done
11901         wait_update_facet $SINGLEMDS \
11902                           "ps -e -o comm= | grep chlg_gc_thread" "" 20
11903
11904         # check user still registered
11905         $GET_CL_USERS | grep -q $CL_USER ||
11906                 error "User $CL_USER not found in changelog_users"
11907         # check user2 unregistered
11908         $GET_CL_USERS | grep -q $CL_USER2 &&
11909                 error "User $CL_USER2 still found in changelog_users"
11910
11911         # check changelogs are present and starting at $USER_REC2 + 1
11912         FIRST_REC=$($LFS changelog $MDT0 | head -n1 | awk '{print $1}')
11913         echo "verifying min purge: $(( $USER_REC2 + 1 )) == $FIRST_REC"
11914         [ $FIRST_REC == $(($USER_REC2 + 1)) ] ||
11915                 error "first index should be $(($USER_REC2 + 1)) is $FIRST_REC"
11916
11917         cleanup_160f
11918 }
11919 run_test 160f "changelog garbage collect (timestamped users)"
11920
11921 test_160g() {
11922         # do_facet $SINGLEMDS $LCTL set_param mdd.$MDT0.changelog_gc=1
11923         # should be set by default
11924
11925         local CL_USERS="mdd.$MDT0.changelog_users"
11926         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
11927         local save_params="$TMP/sanity-$TESTNAME.parameters"
11928
11929         save_lustre_params $SINGLEMDS \
11930                 "mdd.$MDT0.changelog_max_idle_indexes" > $save_params
11931         save_lustre_params $SINGLEMDS \
11932                 "mdd.$MDT0.changelog_min_gc_interval" >> $save_params
11933         save_lustre_params $SINGLEMDS \
11934                 "mdd.$MDT0.changelog_min_free_cat_entries" >> $save_params
11935
11936         trap cleanup_160f EXIT
11937
11938 #define OBD_FAIL_TIME_IN_CHLOG_USER                 0x1314
11939         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x1314
11940
11941         # Create a user
11942         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11943                 changelog_register -n)
11944         echo "Registered as changelog user $CL_USER"
11945         CL_USER2=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11946                 changelog_register -n)
11947         echo "Registered as changelog user $CL_USER2"
11948         $GET_CL_USERS | grep -q $CL_USER ||
11949                 error "User $CL_USER not found in changelog_users"
11950         $GET_CL_USERS | grep -q $CL_USER2 ||
11951                 error "User $CL_USER2 not found in changelog_users"
11952
11953         # generate some changelogs to accumulate
11954         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
11955         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
11956         touch $DIR/$tdir/${tfile}2 || error "touch $DIR/$tdir/${tfile}2 failed"
11957         rm -f $DIR/$tdir/$tfile || error "rm -f $tfile failed"
11958
11959         # check changelogs have been generated
11960         nbcl=$($LFS changelog $MDT0 | wc -l)
11961         [[ $nbcl -eq 0 ]] && error "no changelogs found"
11962
11963         do_facet $SINGLEMDS $LCTL set_param \
11964                 mdd.$MDT0.changelog_max_idle_indexes=$((nbcl - 1))
11965         do_facet $SINGLEMDS $LCTL set_param \
11966                 mdd.$MDT0.changelog_min_gc_interval=2
11967         do_facet $SINGLEMDS $LCTL set_param \
11968                 mdd.$MDT0.changelog_min_free_cat_entries=3
11969
11970         # simulate changelog catalog almost full
11971 #define OBD_FAIL_CAT_FREE_RECORDS                  0x1313
11972         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x1313
11973         do_facet $SINGLEMDS $LCTL set_param fail_val=3
11974
11975         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
11976         $LFS changelog_clear $MDT0 $CL_USER $(($USER_REC1 + 3))
11977         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
11978         echo "verifying user clear: $(( $USER_REC1 + 3 )) == $USER_REC2"
11979         [ $USER_REC2 == $(($USER_REC1 + 3)) ] ||
11980                 error "user index expected $(($USER_REC1 + 3)) is $USER_REC2"
11981
11982         # generate one more changelog to trigger fail_loc
11983         rm -rf $DIR/$tdir || error "rm -rf $tdir failed"
11984
11985         # ensure gc thread is done
11986         wait_update_facet $SINGLEMDS \
11987                           "ps -e -o comm= | grep chlg_gc_thread" "" 20
11988
11989         # check user still registered
11990         $GET_CL_USERS | grep -q $CL_USER ||
11991                 error "User $CL_USER not found in changelog_users"
11992         # check user2 unregistered
11993         $GET_CL_USERS | grep -q $CL_USER2 &&
11994                 error "User $CL_USER2 still found in changelog_users"
11995
11996         # check changelogs are present and starting at $USER_REC2 + 1
11997         FIRST_REC=$($LFS changelog $MDT0 | head -n1 | awk '{print $1}')
11998         echo "verifying min purge: $(( $USER_REC2 + 1 )) == $FIRST_REC"
11999         [ $FIRST_REC == $(($USER_REC2 + 1)) ] ||
12000                 error "first index should be $(($USER_REC2 + 1)) is $FIRST_REC"
12001
12002         cleanup_160f
12003 }
12004 run_test 160g "changelog garbage collect (old users)"
12005
12006 test_161a() {
12007         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12008         test_mkdir -c1 $DIR/$tdir
12009         cp /etc/hosts $DIR/$tdir/$tfile
12010         test_mkdir -c1 $DIR/$tdir/foo1
12011         test_mkdir -c1 $DIR/$tdir/foo2
12012         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
12013         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
12014         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
12015         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
12016         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
12017         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
12018                 $LFS fid2path $DIR $FID
12019                 err17935 "bad link ea"
12020         fi
12021     # middle
12022     rm $DIR/$tdir/foo2/zachary
12023     # last
12024     rm $DIR/$tdir/foo2/thor
12025     # first
12026     rm $DIR/$tdir/$tfile
12027     # rename
12028     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
12029     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
12030         then
12031         $LFS fid2path $DIR $FID
12032         err17935 "bad link rename"
12033     fi
12034     rm $DIR/$tdir/foo2/maggie
12035
12036         # overflow the EA
12037         local longname=filename_avg_len_is_thirty_two_
12038         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
12039                 error "failed to hardlink many files"
12040         links=$($LFS fid2path $DIR $FID | wc -l)
12041         echo -n "${links}/1000 links in link EA"
12042         [[ $links -gt 60 ]] ||
12043                 err17935 "expected at least 60 links in link EA"
12044         unlinkmany $DIR/$tdir/foo2/$longname 1000 ||
12045                 error "failed to unlink many hardlinks"
12046 }
12047 run_test 161a "link ea sanity"
12048
12049 test_161b() {
12050         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12051         [ $MDSCOUNT -lt 2 ] && skip "skipping remote directory test" && return
12052         local MDTIDX=1
12053         local remote_dir=$DIR/$tdir/remote_dir
12054
12055         mkdir -p $DIR/$tdir
12056         $LFS mkdir -i $MDTIDX $remote_dir ||
12057                 error "create remote directory failed"
12058
12059         cp /etc/hosts $remote_dir/$tfile
12060         mkdir -p $remote_dir/foo1
12061         mkdir -p $remote_dir/foo2
12062         ln $remote_dir/$tfile $remote_dir/foo1/sofia
12063         ln $remote_dir/$tfile $remote_dir/foo2/zachary
12064         ln $remote_dir/$tfile $remote_dir/foo1/luna
12065         ln $remote_dir/$tfile $remote_dir/foo2/thor
12066
12067         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
12068                      tr -d ']')
12069         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
12070                 $LFS fid2path $DIR $FID
12071                 err17935 "bad link ea"
12072         fi
12073         # middle
12074         rm $remote_dir/foo2/zachary
12075         # last
12076         rm $remote_dir/foo2/thor
12077         # first
12078         rm $remote_dir/$tfile
12079         # rename
12080         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
12081         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
12082         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
12083                 $LFS fid2path $DIR $FID
12084                 err17935 "bad link rename"
12085         fi
12086         rm $remote_dir/foo2/maggie
12087
12088         # overflow the EA
12089         local longname=filename_avg_len_is_thirty_two_
12090         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
12091                 error "failed to hardlink many files"
12092         links=$($LFS fid2path $DIR $FID | wc -l)
12093         echo -n "${links}/1000 links in link EA"
12094         [[ ${links} -gt 60 ]] ||
12095                 err17935 "expected at least 60 links in link EA"
12096         unlinkmany $remote_dir/foo2/$longname 1000 ||
12097         error "failed to unlink many hardlinks"
12098 }
12099 run_test 161b "link ea sanity under remote directory"
12100
12101 test_161c() {
12102         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12103         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12104         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
12105                 skip "Need MDS version at least 2.1.5" && return
12106
12107         # define CLF_RENAME_LAST 0x0001
12108         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
12109         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
12110                 changelog_register -n)
12111
12112         trap cleanup_changelog EXIT
12113         rm -rf $DIR/$tdir
12114         mkdir -p $DIR/$tdir
12115         touch $DIR/$tdir/foo_161c
12116         touch $DIR/$tdir/bar_161c
12117         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
12118         $LFS changelog $MDT0 | grep RENME
12119         local flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | \
12120                 cut -f5 -d' ')
12121         $LFS changelog_clear $MDT0 $CL_USER 0
12122         if [ x$flags != "x0x1" ]; then
12123                 error "flag $flags is not 0x1"
12124         fi
12125         echo "rename overwrite a target having nlink = 1," \
12126                 "changelog record has flags of $flags"
12127
12128         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
12129         touch $DIR/$tdir/foo_161c
12130         touch $DIR/$tdir/bar_161c
12131         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
12132         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
12133         $LFS changelog $MDT0 | grep RENME
12134         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
12135         $LFS changelog_clear $MDT0 $CL_USER 0
12136         if [ x$flags != "x0x0" ]; then
12137                 error "flag $flags is not 0x0"
12138         fi
12139         echo "rename overwrite a target having nlink > 1," \
12140                 "changelog record has flags of $flags"
12141
12142         # rename doesn't overwrite a target (changelog flag 0x0)
12143         touch $DIR/$tdir/foo_161c
12144         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
12145         $LFS changelog $MDT0 | grep RENME
12146         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
12147         $LFS changelog_clear $MDT0 $CL_USER 0
12148         if [ x$flags != "x0x0" ]; then
12149                 error "flag $flags is not 0x0"
12150         fi
12151         echo "rename doesn't overwrite a target," \
12152                 "changelog record has flags of $flags"
12153
12154         # define CLF_UNLINK_LAST 0x0001
12155         # unlink a file having nlink = 1 (changelog flag 0x1)
12156         rm -f $DIR/$tdir/foo2_161c
12157         $LFS changelog $MDT0 | grep UNLNK
12158         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
12159         $LFS changelog_clear $MDT0 $CL_USER 0
12160         if [ x$flags != "x0x1" ]; then
12161                 error "flag $flags is not 0x1"
12162         fi
12163         echo "unlink a file having nlink = 1," \
12164                 "changelog record has flags of $flags"
12165
12166         # unlink a file having nlink > 1 (changelog flag 0x0)
12167         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
12168         rm -f $DIR/$tdir/foobar_161c
12169         $LFS changelog $MDT0 | grep UNLNK
12170         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
12171         $LFS changelog_clear $MDT0 $CL_USER 0
12172         if [ x$flags != "x0x0" ]; then
12173                 error "flag $flags is not 0x0"
12174         fi
12175         echo "unlink a file having nlink > 1," \
12176                 "changelog record has flags of $flags"
12177         cleanup_changelog
12178 }
12179 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
12180
12181 test_161d() {
12182         local user
12183         local pid
12184         local fid
12185
12186         # cleanup previous run
12187         rm -rf $DIR/$tdir/$tfile
12188
12189         user=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
12190                 changelog_register -n)
12191         [[ $? -eq 0 ]] || error "changelog_register failed"
12192
12193         # work in a standalone dir to avoid locking on $DIR/$MOUNT to
12194         # interfer with $MOUNT/.lustre/fid/ access
12195         mkdir $DIR/$tdir
12196         [[ $? -eq 0 ]] || error "mkdir failed"
12197
12198         #define OBD_FAIL_LLITE_CREATE_NODE_PAUSE 0x140c | OBD_FAIL_ONCE
12199         $LCTL set_param fail_loc=0x8000140c
12200         # 5s pause
12201         $LCTL set_param fail_val=5
12202
12203         # create file
12204         echo foofoo > $DIR/$tdir/$tfile &
12205         pid=$!
12206
12207         # wait for create to be delayed
12208         sleep 2
12209
12210         ps -p $pid
12211         [[ $? -eq 0 ]] || error "create should be blocked"
12212
12213         local tempfile=$(mktemp)
12214         fid=$(changelog_extract_field $MDT0 "CREAT" "$tfile" "t=")
12215         cat $MOUNT/.lustre/fid/$fid 2>/dev/null >$tempfile || error "cat failed"
12216         # some delay may occur during ChangeLog publishing and file read just
12217         # above, that could allow file write to happen finally
12218         [[ -s $tempfile ]] && echo "file should be empty"
12219
12220         $LCTL set_param fail_loc=0
12221
12222         wait $pid
12223         [[ $? -eq 0 ]] || error "create failed"
12224
12225         $LFS changelog_clear $MDT0 $user 0
12226         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $user
12227 }
12228 run_test 161d "create with concurrent .lustre/fid access"
12229
12230 check_path() {
12231     local expected=$1
12232     shift
12233     local fid=$2
12234
12235     local path=$(${LFS} fid2path $*)
12236     # Remove the '//' indicating a remote directory
12237     path=$(echo $path | sed 's#//#/#g')
12238     RC=$?
12239
12240     if [ $RC -ne 0 ]; then
12241         err17935 "path looked up of $expected failed. Error $RC"
12242         return $RC
12243     elif [ "${path}" != "${expected}" ]; then
12244         err17935 "path looked up \"${path}\" instead of \"${expected}\""
12245         return 2
12246     fi
12247     echo "fid $fid resolves to path $path (expected $expected)"
12248 }
12249
12250 test_162a() { # was test_162
12251         # Make changes to filesystem
12252         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12253         test_mkdir -p -c1 $DIR/$tdir/d2
12254         touch $DIR/$tdir/d2/$tfile
12255         touch $DIR/$tdir/d2/x1
12256         touch $DIR/$tdir/d2/x2
12257         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
12258         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
12259         # regular file
12260         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
12261         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0 ||
12262                 error "check path $tdir/d2/$tfile failed"
12263
12264         # softlink
12265         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
12266         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
12267         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0 ||
12268                 error "check path $tdir/d2/p/q/r/slink failed"
12269
12270         # softlink to wrong file
12271         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
12272         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
12273         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0 ||
12274                 error "check path $tdir/d2/p/q/r/slink.wrong failed"
12275
12276         # hardlink
12277         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
12278         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
12279         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
12280         # fid2path dir/fsname should both work
12281         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1 ||
12282                 error "check path $tdir/d2/a/b/c/new_file failed"
12283         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0 ||
12284                 error "check path $DIR/$tdir/d2/p/q/r/hlink failed"
12285
12286         # hardlink count: check that there are 2 links
12287         # Doesnt work with CMD yet: 17935
12288         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
12289                 err17935 "expected 2 links"
12290
12291         # hardlink indexing: remove the first link
12292         rm $DIR/$tdir/d2/p/q/r/hlink
12293         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0 ||
12294                 error "check path $DIR/$tdir/d2/a/b/c/new_file failed"
12295
12296         return 0
12297 }
12298 run_test 162a "path lookup sanity"
12299
12300 test_162b() {
12301         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12302         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12303
12304         mkdir $DIR/$tdir
12305         $LFS setdirstripe -i0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
12306                                 error "create striped dir failed"
12307
12308         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
12309                                         tail -n 1 | awk '{print $2}')
12310         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
12311
12312         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
12313         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
12314
12315         # regular file
12316         for ((i=0;i<5;i++)); do
12317                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
12318                         error "get fid for f$i failed"
12319                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0 ||
12320                         error "check path $tdir/striped_dir/f$i failed"
12321
12322                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
12323                         error "get fid for d$i failed"
12324                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0 ||
12325                         error "check path $tdir/striped_dir/d$i failed"
12326         done
12327
12328         return 0
12329 }
12330 run_test 162b "striped directory path lookup sanity"
12331
12332 # LU-4239: Verify fid2path works with paths 100 or more directories deep
12333 test_162c() {
12334         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.51) ]] &&
12335                 skip "Need MDS version at least 2.7.51" && return
12336         test_mkdir $DIR/$tdir.local
12337         test_mkdir $DIR/$tdir.remote
12338         local lpath=$tdir.local
12339         local rpath=$tdir.remote
12340
12341         for ((i = 0; i <= 101; i++)); do
12342                 lpath="$lpath/$i"
12343                 mkdir $DIR/$lpath
12344                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
12345                         error "get fid for local directory $DIR/$lpath failed"
12346                 check_path "$DIR/$lpath" $MOUNT $FID --link 0 ||
12347                         error "check path for local directory $DIR/$lpath failed"
12348
12349                 rpath="$rpath/$i"
12350                 test_mkdir $DIR/$rpath
12351                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
12352                         error "get fid for remote directory $DIR/$rpath failed"
12353                 check_path "$DIR/$rpath" $MOUNT $FID --link 0 ||
12354                         error "check path for remote directory $DIR/$rpath failed"
12355         done
12356
12357         return 0
12358 }
12359 run_test 162c "fid2path works with paths 100 or more directories deep"
12360
12361 test_169() {
12362         # do directio so as not to populate the page cache
12363         log "creating a 10 Mb file"
12364         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
12365         log "starting reads"
12366         dd if=$DIR/$tfile of=/dev/null bs=4096 &
12367         log "truncating the file"
12368         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
12369         log "killing dd"
12370         kill %+ || true # reads might have finished
12371         echo "wait until dd is finished"
12372         wait
12373         log "removing the temporary file"
12374         rm -rf $DIR/$tfile || error "tmp file removal failed"
12375 }
12376 run_test 169 "parallel read and truncate should not deadlock"
12377
12378 test_170() {
12379         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12380
12381         $LCTL clear     # bug 18514
12382         $LCTL debug_daemon start $TMP/${tfile}_log_good
12383         touch $DIR/$tfile
12384         $LCTL debug_daemon stop
12385         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
12386                 error "sed failed to read log_good"
12387
12388         $LCTL debug_daemon start $TMP/${tfile}_log_good
12389         rm -rf $DIR/$tfile
12390         $LCTL debug_daemon stop
12391
12392         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
12393                error "lctl df log_bad failed"
12394
12395         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
12396         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
12397
12398         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
12399         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
12400
12401         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
12402                 error "bad_line good_line1 good_line2 are empty"
12403
12404         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
12405         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
12406         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
12407
12408         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
12409         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
12410         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
12411
12412         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
12413                 error "bad_line_new good_line_new are empty"
12414
12415         local expected_good=$((good_line1 + good_line2*2))
12416
12417         rm -f $TMP/${tfile}*
12418         # LU-231, short malformed line may not be counted into bad lines
12419         if [ $bad_line -ne $bad_line_new ] &&
12420                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
12421                 error "expected $bad_line bad lines, but got $bad_line_new"
12422                 return 1
12423         fi
12424
12425         if [ $expected_good -ne $good_line_new ]; then
12426                 error "expected $expected_good good lines, but got $good_line_new"
12427                 return 2
12428         fi
12429         true
12430 }
12431 run_test 170 "test lctl df to handle corrupted log ====================="
12432
12433 test_171() { # bug20592
12434         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12435 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
12436         $LCTL set_param fail_loc=0x50e
12437         $LCTL set_param fail_val=3000
12438         multiop_bg_pause $DIR/$tfile O_s || true
12439         local MULTIPID=$!
12440         kill -USR1 $MULTIPID
12441         # cause log dump
12442         sleep 3
12443         wait $MULTIPID
12444         if dmesg | grep "recursive fault"; then
12445                 error "caught a recursive fault"
12446         fi
12447         $LCTL set_param fail_loc=0
12448         true
12449 }
12450 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
12451
12452 # it would be good to share it with obdfilter-survey/iokit-libecho code
12453 setup_obdecho_osc () {
12454         local rc=0
12455         local ost_nid=$1
12456         local obdfilter_name=$2
12457         echo "Creating new osc for $obdfilter_name on $ost_nid"
12458         # make sure we can find loopback nid
12459         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
12460
12461         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
12462                            ${obdfilter_name}_osc_UUID || rc=2; }
12463         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
12464                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
12465         return $rc
12466 }
12467
12468 cleanup_obdecho_osc () {
12469         local obdfilter_name=$1
12470         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
12471         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
12472         return 0
12473 }
12474
12475 obdecho_test() {
12476         local OBD=$1
12477         local node=$2
12478         local pages=${3:-64}
12479         local rc=0
12480         local id
12481
12482         local count=10
12483         local obd_size=$(get_obd_size $node $OBD)
12484         local page_size=$(get_page_size $node)
12485         if [[ -n "$obd_size" ]]; then
12486                 local new_count=$((obd_size / (pages * page_size / 1024)))
12487                 [[ $new_count -ge $count ]] || count=$new_count
12488         fi
12489
12490         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
12491         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
12492                            rc=2; }
12493         if [ $rc -eq 0 ]; then
12494             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
12495             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
12496         fi
12497         echo "New object id is $id"
12498         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
12499                            rc=4; }
12500         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
12501                            "test_brw $count w v $pages $id" || rc=4; }
12502         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
12503                            rc=4; }
12504         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
12505                                         "cleanup" || rc=5; }
12506         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
12507                                         "detach" || rc=6; }
12508         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
12509         return $rc
12510 }
12511
12512 test_180a() {
12513         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12514         remote_ost_nodsh && skip "remote OST with nodsh" && return
12515         local rc=0
12516         local rmmod_local=0
12517
12518         if ! module_loaded obdecho; then
12519             load_module obdecho/obdecho
12520             rmmod_local=1
12521         fi
12522
12523         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
12524         local host=$(lctl get_param -n osc.$osc.import |
12525                              awk '/current_connection:/ {print $2}' )
12526         local target=$(lctl get_param -n osc.$osc.import |
12527                              awk '/target:/ {print $2}' )
12528         target=${target%_UUID}
12529
12530         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
12531         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
12532         [[ -n $target ]] && cleanup_obdecho_osc $target
12533         [ $rmmod_local -eq 1 ] && rmmod obdecho
12534         return $rc
12535 }
12536 run_test 180a "test obdecho on osc"
12537
12538 test_180b() {
12539         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12540         remote_ost_nodsh && skip "remote OST with nodsh" && return
12541         local rc=0
12542         local rmmod_remote=0
12543
12544         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
12545                 rmmod_remote=true || error "failed to load module obdecho"
12546         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
12547         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
12548         $rmmod_remote && do_facet ost1 "rmmod obdecho"
12549         return $rc
12550 }
12551 run_test 180b "test obdecho directly on obdfilter"
12552
12553 test_180c() { # LU-2598
12554         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12555         remote_ost_nodsh && skip "remote OST with nodsh" && return
12556         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
12557                 skip "Need MDS version at least 2.4.0" && return
12558
12559         local rc=0
12560         local rmmod_remote=false
12561         local pages=16384 # 64MB bulk I/O RPC size
12562         local target
12563
12564         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
12565                 rmmod_remote=true || error "failed to load module obdecho"
12566
12567         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ { print $4 }' |
12568                 head -n1)
12569         if [ -n "$target" ]; then
12570                 obdecho_test "$target" ost1 "$pages" || rc=${PIPESTATUS[0]}
12571         else
12572                 echo "there is no obdfilter target on ost1"
12573                 rc=2
12574         fi
12575         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
12576         return $rc
12577 }
12578 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
12579
12580 test_181() { # bug 22177
12581         test_mkdir $DIR/$tdir
12582         # create enough files to index the directory
12583         createmany -o $DIR/$tdir/foobar 4000
12584         # print attributes for debug purpose
12585         lsattr -d .
12586         # open dir
12587         multiop_bg_pause $DIR/$tdir D_Sc || return 1
12588         MULTIPID=$!
12589         # remove the files & current working dir
12590         unlinkmany $DIR/$tdir/foobar 4000
12591         rmdir $DIR/$tdir
12592         kill -USR1 $MULTIPID
12593         wait $MULTIPID
12594         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
12595         return 0
12596 }
12597 run_test 181 "Test open-unlinked dir ========================"
12598
12599 test_182() {
12600         local fcount=1000
12601         local tcount=10
12602
12603         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
12604
12605         $LCTL set_param mdc.*.rpc_stats=clear
12606
12607         for (( i = 0; i < $tcount; i++ )) ; do
12608                 mkdir $DIR/$tdir/$i
12609         done
12610
12611         for (( i = 0; i < $tcount; i++ )) ; do
12612                 createmany -o $DIR/$tdir/$i/f- $fcount &
12613         done
12614         wait
12615
12616         for (( i = 0; i < $tcount; i++ )) ; do
12617                 unlinkmany $DIR/$tdir/$i/f- $fcount &
12618         done
12619         wait
12620
12621         $LCTL get_param mdc.*.rpc_stats
12622
12623         rm -rf $DIR/$tdir
12624 }
12625 run_test 182 "Test parallel modify metadata operations ================"
12626
12627 test_183() { # LU-2275
12628         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12629         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
12630                 skip "Need MDS version at least 2.3.56" && return
12631
12632         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12633         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
12634         echo aaa > $DIR/$tdir/$tfile
12635
12636 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
12637         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
12638
12639         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
12640         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
12641
12642         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
12643
12644         # Flush negative dentry cache
12645         touch $DIR/$tdir/$tfile
12646
12647         # We are not checking for any leaked references here, they'll
12648         # become evident next time we do cleanup with module unload.
12649         rm -rf $DIR/$tdir
12650 }
12651 run_test 183 "No crash or request leak in case of strange dispositions ========"
12652
12653 # test suite 184 is for LU-2016, LU-2017
12654 test_184a() {
12655         check_swap_layouts_support && return 0
12656
12657         dir0=$DIR/$tdir/$testnum
12658         test_mkdir -p -c1 $dir0
12659         ref1=/etc/passwd
12660         ref2=/etc/group
12661         file1=$dir0/f1
12662         file2=$dir0/f2
12663         $SETSTRIPE -c1 $file1
12664         cp $ref1 $file1
12665         $SETSTRIPE -c2 $file2
12666         cp $ref2 $file2
12667         gen1=$($GETSTRIPE -g $file1)
12668         gen2=$($GETSTRIPE -g $file2)
12669
12670         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
12671         gen=$($GETSTRIPE -g $file1)
12672         [[ $gen1 != $gen ]] ||
12673                 "Layout generation on $file1 does not change"
12674         gen=$($GETSTRIPE -g $file2)
12675         [[ $gen2 != $gen ]] ||
12676                 "Layout generation on $file2 does not change"
12677
12678         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
12679         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
12680
12681         lfsck_verify_pfid $file1 $file2 || error "PFID are not transferred"
12682 }
12683 run_test 184a "Basic layout swap"
12684
12685 test_184b() {
12686         check_swap_layouts_support && return 0
12687
12688         dir0=$DIR/$tdir/$testnum
12689         mkdir -p $dir0 || error "creating dir $dir0"
12690         file1=$dir0/f1
12691         file2=$dir0/f2
12692         file3=$dir0/f3
12693         dir1=$dir0/d1
12694         dir2=$dir0/d2
12695         mkdir $dir1 $dir2
12696         $SETSTRIPE -c1 $file1
12697         $SETSTRIPE -c2 $file2
12698         $SETSTRIPE -c1 $file3
12699         chown $RUNAS_ID $file3
12700         gen1=$($GETSTRIPE -g $file1)
12701         gen2=$($GETSTRIPE -g $file2)
12702
12703         $LFS swap_layouts $dir1 $dir2 &&
12704                 error "swap of directories layouts should fail"
12705         $LFS swap_layouts $dir1 $file1 &&
12706                 error "swap of directory and file layouts should fail"
12707         $RUNAS $LFS swap_layouts $file1 $file2 &&
12708                 error "swap of file we cannot write should fail"
12709         $LFS swap_layouts $file1 $file3 &&
12710                 error "swap of file with different owner should fail"
12711         /bin/true # to clear error code
12712 }
12713 run_test 184b "Forbidden layout swap (will generate errors)"
12714
12715 test_184c() {
12716         local cmpn_arg=$(cmp -n 2>&1 | grep "invalid option")
12717         [ -n "$cmpn_arg" ] && skip_env "cmp does not support -n" && return
12718         check_swap_layouts_support && return 0
12719
12720         local dir0=$DIR/$tdir/$testnum
12721         mkdir -p $dir0 || error "creating dir $dir0"
12722
12723         local ref1=$dir0/ref1
12724         local ref2=$dir0/ref2
12725         local file1=$dir0/file1
12726         local file2=$dir0/file2
12727         # create a file large enough for the concurrent test
12728         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
12729         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
12730         echo "ref file size: ref1($(stat -c %s $ref1))," \
12731              "ref2($(stat -c %s $ref2))"
12732
12733         cp $ref2 $file2
12734         dd if=$ref1 of=$file1 bs=16k &
12735         local DD_PID=$!
12736
12737         # Make sure dd starts to copy file
12738         while [ ! -f $file1 ]; do sleep 0.1; done
12739
12740         $LFS swap_layouts $file1 $file2
12741         local rc=$?
12742         wait $DD_PID
12743         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
12744         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
12745
12746         # how many bytes copied before swapping layout
12747         local copied=$(stat -c %s $file2)
12748         local remaining=$(stat -c %s $ref1)
12749         remaining=$((remaining - copied))
12750         echo "Copied $copied bytes before swapping layout..."
12751
12752         cmp -n $copied $file1 $ref2 | grep differ &&
12753                 error "Content mismatch [0, $copied) of ref2 and file1"
12754         cmp -n $copied $file2 $ref1 ||
12755                 error "Content mismatch [0, $copied) of ref1 and file2"
12756         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
12757                 error "Content mismatch [$copied, EOF) of ref1 and file1"
12758
12759         # clean up
12760         rm -f $ref1 $ref2 $file1 $file2
12761 }
12762 run_test 184c "Concurrent write and layout swap"
12763
12764 test_184d() {
12765         check_swap_layouts_support && return 0
12766         [ -z "$(which getfattr 2>/dev/null)" ] &&
12767                 skip "no getfattr command" && return 0
12768
12769         local file1=$DIR/$tdir/$tfile-1
12770         local file2=$DIR/$tdir/$tfile-2
12771         local file3=$DIR/$tdir/$tfile-3
12772         local lovea1
12773         local lovea2
12774
12775         mkdir -p $DIR/$tdir
12776         touch $file1 || error "create $file1 failed"
12777         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
12778                 error "create $file2 failed"
12779         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
12780                 error "create $file3 failed"
12781         lovea1=$(get_layout_param $file1)
12782
12783         $LFS swap_layouts $file2 $file3 ||
12784                 error "swap $file2 $file3 layouts failed"
12785         $LFS swap_layouts $file1 $file2 ||
12786                 error "swap $file1 $file2 layouts failed"
12787
12788         lovea2=$(get_layout_param $file2)
12789         echo "$lovea1"
12790         echo "$lovea2"
12791         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
12792
12793         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
12794         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
12795 }
12796 run_test 184d "allow stripeless layouts swap"
12797
12798 test_184e() {
12799         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.94) ]] ||
12800                 { skip "Need MDS version at least 2.6.94"; return 0; }
12801         check_swap_layouts_support && return 0
12802         [ -z "$(which getfattr 2>/dev/null)" ] &&
12803                 skip "no getfattr command" && return 0
12804
12805         local file1=$DIR/$tdir/$tfile-1
12806         local file2=$DIR/$tdir/$tfile-2
12807         local file3=$DIR/$tdir/$tfile-3
12808         local lovea
12809
12810         mkdir -p $DIR/$tdir
12811         touch $file1 || error "create $file1 failed"
12812         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
12813                 error "create $file2 failed"
12814         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
12815                 error "create $file3 failed"
12816
12817         $LFS swap_layouts $file1 $file2 ||
12818                 error "swap $file1 $file2 layouts failed"
12819
12820         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
12821         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
12822
12823         echo 123 > $file1 || error "Should be able to write into $file1"
12824
12825         $LFS swap_layouts $file1 $file3 ||
12826                 error "swap $file1 $file3 layouts failed"
12827
12828         echo 123 > $file1 || error "Should be able to write into $file1"
12829
12830         rm -rf $file1 $file2 $file3
12831 }
12832 run_test 184e "Recreate layout after stripeless layout swaps"
12833
12834 test_185() { # LU-2441
12835         # LU-3553 - no volatile file support in old servers
12836         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
12837                 { skip "Need MDS version at least 2.3.60"; return 0; }
12838
12839         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
12840         touch $DIR/$tdir/spoo
12841         local mtime1=$(stat -c "%Y" $DIR/$tdir)
12842         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
12843                 error "cannot create/write a volatile file"
12844         [ "$FILESET" == "" ] &&
12845         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
12846                 error "FID is still valid after close"
12847
12848         multiop_bg_pause $DIR/$tdir vVw4096_c
12849         local multi_pid=$!
12850
12851         local OLD_IFS=$IFS
12852         IFS=":"
12853         local fidv=($fid)
12854         IFS=$OLD_IFS
12855         # assume that the next FID for this client is sequential, since stdout
12856         # is unfortunately eaten by multiop_bg_pause
12857         local n=$((${fidv[1]} + 1))
12858         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
12859         if [ "$FILESET" == "" ]; then
12860                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
12861                         error "FID is missing before close"
12862         fi
12863         kill -USR1 $multi_pid
12864         # 1 second delay, so if mtime change we will see it
12865         sleep 1
12866         local mtime2=$(stat -c "%Y" $DIR/$tdir)
12867         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
12868 }
12869 run_test 185 "Volatile file support"
12870
12871 test_187a() {
12872         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12873         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
12874                 skip "Need MDS version at least 2.3.0" && return
12875
12876         local dir0=$DIR/$tdir/$testnum
12877         mkdir -p $dir0 || error "creating dir $dir0"
12878
12879         local file=$dir0/file1
12880         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
12881         local dv1=$($LFS data_version $file)
12882         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
12883         local dv2=$($LFS data_version $file)
12884         [[ $dv1 != $dv2 ]] ||
12885                 error "data version did not change on write $dv1 == $dv2"
12886
12887         # clean up
12888         rm -f $file1
12889 }
12890 run_test 187a "Test data version change"
12891
12892 test_187b() {
12893         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12894         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
12895                 skip "Need MDS version at least 2.3.0" && return
12896
12897         local dir0=$DIR/$tdir/$testnum
12898         mkdir -p $dir0 || error "creating dir $dir0"
12899
12900         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
12901         [[ ${DV[0]} != ${DV[1]} ]] ||
12902                 error "data version did not change on write"\
12903                       " ${DV[0]} == ${DV[1]}"
12904
12905         # clean up
12906         rm -f $file1
12907 }
12908 run_test 187b "Test data version change on volatile file"
12909
12910 test_200() {
12911         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12912         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12913         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
12914
12915         local POOL=${POOL:-cea1}
12916         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
12917         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
12918         # Pool OST targets
12919         local first_ost=0
12920         local last_ost=$(($OSTCOUNT - 1))
12921         local ost_step=2
12922         local ost_list=$(seq $first_ost $ost_step $last_ost)
12923         local ost_range="$first_ost $last_ost $ost_step"
12924         local test_path=$POOL_ROOT/$POOL_DIR_NAME
12925         local file_dir=$POOL_ROOT/file_tst
12926         local subdir=$test_path/subdir
12927         local rc=0
12928
12929         if ! combined_mgs_mds ; then
12930                 mount_mgs_client
12931         fi
12932
12933         while : ; do
12934                 # former test_200a test_200b
12935                 pool_add $POOL                          || { rc=$? ; break; }
12936                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
12937                 # former test_200c test_200d
12938                 mkdir -p $test_path
12939                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
12940                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
12941                 mkdir -p $subdir
12942                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
12943                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
12944                                                         || { rc=$? ; break; }
12945                 # former test_200e test_200f
12946                 local files=$((OSTCOUNT*3))
12947                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
12948                                                         || { rc=$? ; break; }
12949                 pool_create_files $POOL $file_dir $files "$ost_list" \
12950                                                         || { rc=$? ; break; }
12951                 # former test_200g test_200h
12952                 pool_lfs_df $POOL                       || { rc=$? ; break; }
12953                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
12954
12955                 # former test_201a test_201b test_201c
12956                 pool_remove_first_target $POOL          || { rc=$? ; break; }
12957
12958                 local f=$test_path/$tfile
12959                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
12960                 pool_remove $POOL $f                    || { rc=$? ; break; }
12961                 break
12962         done
12963
12964         destroy_test_pools
12965
12966         if ! combined_mgs_mds ; then
12967                 umount_mgs_client
12968         fi
12969         return $rc
12970 }
12971 run_test 200 "OST pools"
12972
12973 # usage: default_attr <count | size | offset>
12974 default_attr() {
12975         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
12976 }
12977
12978 # usage: check_default_stripe_attr
12979 check_default_stripe_attr() {
12980         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
12981         case $1 in
12982         --stripe-count|-c)
12983                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
12984         --stripe-size|-S)
12985                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
12986         --stripe-index|-i)
12987                 EXPECTED=-1;;
12988         *)
12989                 error "unknown getstripe attr '$1'"
12990         esac
12991
12992         [ $ACTUAL == $EXPECTED ] ||
12993                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
12994 }
12995
12996 test_204a() {
12997         test_mkdir $DIR/$tdir
12998         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
12999
13000         check_default_stripe_attr --stripe-count
13001         check_default_stripe_attr --stripe-size
13002         check_default_stripe_attr --stripe-index
13003 }
13004 run_test 204a "Print default stripe attributes"
13005
13006 test_204b() {
13007         test_mkdir $DIR/$tdir
13008         $SETSTRIPE --stripe-count 1 $DIR/$tdir
13009
13010         check_default_stripe_attr --stripe-size
13011         check_default_stripe_attr --stripe-index
13012 }
13013 run_test 204b "Print default stripe size and offset"
13014
13015 test_204c() {
13016         test_mkdir $DIR/$tdir
13017         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
13018
13019         check_default_stripe_attr --stripe-count
13020         check_default_stripe_attr --stripe-index
13021 }
13022 run_test 204c "Print default stripe count and offset"
13023
13024 test_204d() {
13025         test_mkdir $DIR/$tdir
13026         $SETSTRIPE --stripe-index 0 $DIR/$tdir
13027
13028         check_default_stripe_attr --stripe-count
13029         check_default_stripe_attr --stripe-size
13030 }
13031 run_test 204d "Print default stripe count and size"
13032
13033 test_204e() {
13034         test_mkdir $DIR/$tdir
13035         $SETSTRIPE -d $DIR/$tdir
13036
13037         check_default_stripe_attr --stripe-count --raw
13038         check_default_stripe_attr --stripe-size --raw
13039         check_default_stripe_attr --stripe-index --raw
13040 }
13041 run_test 204e "Print raw stripe attributes"
13042
13043 test_204f() {
13044         test_mkdir $DIR/$tdir
13045         $SETSTRIPE --stripe-count 1 $DIR/$tdir
13046
13047         check_default_stripe_attr --stripe-size --raw
13048         check_default_stripe_attr --stripe-index --raw
13049 }
13050 run_test 204f "Print raw stripe size and offset"
13051
13052 test_204g() {
13053         test_mkdir $DIR/$tdir
13054         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
13055
13056         check_default_stripe_attr --stripe-count --raw
13057         check_default_stripe_attr --stripe-index --raw
13058 }
13059 run_test 204g "Print raw stripe count and offset"
13060
13061 test_204h() {
13062         test_mkdir $DIR/$tdir
13063         $SETSTRIPE --stripe-index 0 $DIR/$tdir
13064
13065         check_default_stripe_attr --stripe-count --raw
13066         check_default_stripe_attr --stripe-size --raw
13067 }
13068 run_test 204h "Print raw stripe count and size"
13069
13070 # Figure out which job scheduler is being used, if any,
13071 # or use a fake one
13072 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
13073         JOBENV=SLURM_JOB_ID
13074 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
13075         JOBENV=LSB_JOBID
13076 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
13077         JOBENV=PBS_JOBID
13078 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
13079         JOBENV=LOADL_STEP_ID
13080 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
13081         JOBENV=JOB_ID
13082 else
13083         $LCTL list_param jobid_name > /dev/null 2>&1
13084         if [ $? -eq 0 ]; then
13085                 JOBENV=nodelocal
13086         else
13087                 JOBENV=FAKE_JOBID
13088         fi
13089 fi
13090
13091 verify_jobstats() {
13092         local cmd=($1)
13093         shift
13094         local facets="$@"
13095
13096 # we don't really need to clear the stats for this test to work, since each
13097 # command has a unique jobid, but it makes debugging easier if needed.
13098 #       for facet in $facets; do
13099 #               local dev=$(convert_facet2label $facet)
13100 #               # clear old jobstats
13101 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
13102 #       done
13103
13104         # use a new JobID for each test, or we might see an old one
13105         [ "$JOBENV" = "FAKE_JOBID" ] &&
13106                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
13107
13108         JOBVAL=${!JOBENV}
13109
13110         [ "$JOBENV" = "nodelocal" ] && {
13111                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
13112                 $LCTL set_param jobid_name=$FAKE_JOBID
13113                 JOBVAL=$FAKE_JOBID
13114         }
13115
13116         log "Test: ${cmd[*]}"
13117         log "Using JobID environment variable $JOBENV=$JOBVAL"
13118
13119         if [ $JOBENV = "FAKE_JOBID" ]; then
13120                 FAKE_JOBID=$JOBVAL ${cmd[*]}
13121         else
13122                 ${cmd[*]}
13123         fi
13124
13125         # all files are created on OST0000
13126         for facet in $facets; do
13127                 local stats="*.$(convert_facet2label $facet).job_stats"
13128                 if [ $(do_facet $facet lctl get_param $stats |
13129                        grep -c $JOBVAL) -ne 1 ]; then
13130                         do_facet $facet lctl get_param $stats
13131                         error "No jobstats for $JOBVAL found on $facet::$stats"
13132                 fi
13133         done
13134 }
13135
13136 jobstats_set() {
13137         trap 0
13138         NEW_JOBENV=${1:-$OLD_JOBENV}
13139         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
13140         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
13141 }
13142
13143 cleanup_205() {
13144         trap 0
13145         do_facet $SINGLEMDS \
13146                 $LCTL set_param mdt.*.job_cleanup_interval=$OLD_INTERVAL
13147         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
13148         cleanup_changelog
13149 }
13150
13151 test_205() { # Job stats
13152         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.1) ]] ||
13153                 { skip "Need MDS version with at least 2.7.1"; return 0; }
13154
13155         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13156         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
13157         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13158         remote_ost_nodsh && skip "remote OST with nodsh" && return
13159
13160         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
13161                 skip "Server doesn't support jobstats" && return 0
13162         [[ $JOBID_VAR = disable ]] && skip "jobstats is disabled" && return
13163
13164         OLD_JOBENV=$($LCTL get_param -n jobid_var)
13165         if [ $OLD_JOBENV != $JOBENV ]; then
13166                 jobstats_set $JOBENV
13167                 trap cleanup_205 EXIT
13168         fi
13169
13170         CL_USER=$(do_facet $SINGLEMDS lctl --device $MDT0 changelog_register -n)
13171         echo "Registered as changelog user $CL_USER"
13172
13173         OLD_INTERVAL=$(do_facet $SINGLEMDS \
13174                        lctl get_param -n mdt.*.job_cleanup_interval)
13175         local interval_new=5
13176         do_facet $SINGLEMDS \
13177                 $LCTL set_param mdt.*.job_cleanup_interval=$interval_new
13178         local start=$SECONDS
13179
13180         local cmd
13181         # mkdir
13182         cmd="mkdir $DIR/$tdir"
13183         verify_jobstats "$cmd" "$SINGLEMDS"
13184         # rmdir
13185         cmd="rmdir $DIR/$tdir"
13186         verify_jobstats "$cmd" "$SINGLEMDS"
13187         # mkdir on secondary MDT
13188         if [ $MDSCOUNT -gt 1 ]; then
13189                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
13190                 verify_jobstats "$cmd" "mds2"
13191         fi
13192         # mknod
13193         cmd="mknod $DIR/$tfile c 1 3"
13194         verify_jobstats "$cmd" "$SINGLEMDS"
13195         # unlink
13196         cmd="rm -f $DIR/$tfile"
13197         verify_jobstats "$cmd" "$SINGLEMDS"
13198         # create all files on OST0000 so verify_jobstats can find OST stats
13199         # open & close
13200         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
13201         verify_jobstats "$cmd" "$SINGLEMDS"
13202         # setattr
13203         cmd="touch $DIR/$tfile"
13204         verify_jobstats "$cmd" "$SINGLEMDS ost1"
13205         # write
13206         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
13207         verify_jobstats "$cmd" "ost1"
13208         # read
13209         cancel_lru_locks osc
13210         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
13211         verify_jobstats "$cmd" "ost1"
13212         # truncate
13213         cmd="$TRUNCATE $DIR/$tfile 0"
13214         verify_jobstats "$cmd" "$SINGLEMDS ost1"
13215         # rename
13216         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
13217         verify_jobstats "$cmd" "$SINGLEMDS"
13218         # jobstats expiry - sleep until old stats should be expired
13219         local left=$((interval_new + 5 - (SECONDS - start)))
13220         [ $left -ge 0 ] && wait_update_facet $SINGLEMDS \
13221                 "lctl get_param *.*.job_stats | grep -c 'job_id.*mkdir'" \
13222                         "0" $left
13223         cmd="mkdir $DIR/$tdir.expire"
13224         verify_jobstats "$cmd" "$SINGLEMDS"
13225         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
13226             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
13227
13228         # Ensure that jobid are present in changelog (if supported by MDS)
13229         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.52) ]
13230         then
13231                 $LFS changelog $MDT0 | tail -9
13232                 jobids=$($LFS changelog $MDT0 | tail -9 | grep -c "j=")
13233                 [ $jobids -eq 9 ] ||
13234                         error "Wrong changelog jobid count $jobids != 9"
13235
13236                 # LU-5862
13237                 JOBENV="disable"
13238                 jobstats_set $JOBENV
13239                 touch $DIR/$tfile
13240                 $LFS changelog $MDT0 | tail -1
13241                 jobids=$($LFS changelog $MDT0 | tail -1 | grep -c "j=")
13242                 [ $jobids -eq 0 ] ||
13243                         error "Unexpected jobids when jobid_var=$JOBENV"
13244         fi
13245
13246         cleanup_205
13247 }
13248 run_test 205 "Verify job stats"
13249
13250 # LU-1480, LU-1773 and LU-1657
13251 test_206() {
13252         mkdir -p $DIR/$tdir
13253         $SETSTRIPE -c -1 $DIR/$tdir
13254 #define OBD_FAIL_LOV_INIT 0x1403
13255         $LCTL set_param fail_loc=0xa0001403
13256         $LCTL set_param fail_val=1
13257         touch $DIR/$tdir/$tfile || true
13258 }
13259 run_test 206 "fail lov_init_raid0() doesn't lbug"
13260
13261 test_207a() {
13262         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
13263         local fsz=`stat -c %s $DIR/$tfile`
13264         cancel_lru_locks mdc
13265
13266         # do not return layout in getattr intent
13267 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
13268         $LCTL set_param fail_loc=0x170
13269         local sz=`stat -c %s $DIR/$tfile`
13270
13271         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
13272
13273         rm -rf $DIR/$tfile
13274 }
13275 run_test 207a "can refresh layout at glimpse"
13276
13277 test_207b() {
13278         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
13279         local cksum=`md5sum $DIR/$tfile`
13280         local fsz=`stat -c %s $DIR/$tfile`
13281         cancel_lru_locks mdc
13282         cancel_lru_locks osc
13283
13284         # do not return layout in getattr intent
13285 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
13286         $LCTL set_param fail_loc=0x171
13287
13288         # it will refresh layout after the file is opened but before read issues
13289         echo checksum is "$cksum"
13290         echo "$cksum" |md5sum -c --quiet || error "file differs"
13291
13292         rm -rf $DIR/$tfile
13293 }
13294 run_test 207b "can refresh layout at open"
13295
13296 test_208() {
13297         # FIXME: in this test suite, only RD lease is used. This is okay
13298         # for now as only exclusive open is supported. After generic lease
13299         # is done, this test suite should be revised. - Jinshan
13300
13301         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13302         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
13303                 { skip "Need MDS version at least 2.4.52"; return 0; }
13304
13305         echo "==== test 1: verify get lease work"
13306         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
13307
13308         echo "==== test 2: verify lease can be broken by upcoming open"
13309         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
13310         local PID=$!
13311         sleep 1
13312
13313         $MULTIOP $DIR/$tfile oO_RDONLY:c
13314         kill -USR1 $PID && wait $PID || error "break lease error"
13315
13316         echo "==== test 3: verify lease can't be granted if an open already exists"
13317         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
13318         local PID=$!
13319         sleep 1
13320
13321         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
13322         kill -USR1 $PID && wait $PID || error "open file error"
13323
13324         echo "==== test 4: lease can sustain over recovery"
13325         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
13326         PID=$!
13327         sleep 1
13328
13329         fail mds1
13330
13331         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
13332
13333         echo "==== test 5: lease broken can't be regained by replay"
13334         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
13335         PID=$!
13336         sleep 1
13337
13338         # open file to break lease and then recovery
13339         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
13340         fail mds1
13341
13342         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
13343
13344         rm -f $DIR/$tfile
13345 }
13346 run_test 208 "Exclusive open"
13347
13348 test_209() {
13349         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
13350                 skip_env "must have disp_stripe" && return
13351
13352         touch $DIR/$tfile
13353         sync; sleep 5; sync;
13354
13355         echo 3 > /proc/sys/vm/drop_caches
13356         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
13357
13358         # open/close 500 times
13359         for i in $(seq 500); do
13360                 cat $DIR/$tfile
13361         done
13362
13363         echo 3 > /proc/sys/vm/drop_caches
13364         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
13365
13366         echo "before: $req_before, after: $req_after"
13367         [ $((req_after - req_before)) -ge 300 ] &&
13368                 error "open/close requests are not freed"
13369         return 0
13370 }
13371 run_test 209 "read-only open/close requests should be freed promptly"
13372
13373 test_212() {
13374         size=`date +%s`
13375         size=$((size % 8192 + 1))
13376         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
13377         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
13378         rm -f $DIR/f212 $DIR/f212.xyz
13379 }
13380 run_test 212 "Sendfile test ============================================"
13381
13382 test_213() {
13383         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
13384         cancel_lru_locks osc
13385         lctl set_param fail_loc=0x8000040f
13386         # generate a read lock
13387         cat $DIR/$tfile > /dev/null
13388         # write to the file, it will try to cancel the above read lock.
13389         cat /etc/hosts >> $DIR/$tfile
13390 }
13391 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
13392
13393 test_214() { # for bug 20133
13394         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
13395         for (( i=0; i < 340; i++ )) ; do
13396                 touch $DIR/$tdir/d214c/a$i
13397         done
13398
13399         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
13400         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
13401         ls $DIR/d214c || error "ls $DIR/d214c failed"
13402         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
13403         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
13404 }
13405 run_test 214 "hash-indexed directory test - bug 20133"
13406
13407 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
13408 create_lnet_proc_files() {
13409         lctl get_param -n $1 >$TMP/lnet_$1.sys || error "cannot read lnet.$1"
13410 }
13411
13412 # counterpart of create_lnet_proc_files
13413 remove_lnet_proc_files() {
13414         rm -f $TMP/lnet_$1.sys
13415 }
13416
13417 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
13418 # 3rd arg as regexp for body
13419 check_lnet_proc_stats() {
13420         local l=$(cat "$TMP/lnet_$1" |wc -l)
13421         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
13422
13423         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
13424 }
13425
13426 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
13427 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
13428 # optional and can be regexp for 2nd line (lnet.routes case)
13429 check_lnet_proc_entry() {
13430         local blp=2          # blp stands for 'position of 1st line of body'
13431         [ -z "$5" ] || blp=3 # lnet.routes case
13432
13433         local l=$(cat "$TMP/lnet_$1" |wc -l)
13434         # subtracting one from $blp because the body can be empty
13435         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
13436
13437         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
13438                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
13439
13440         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
13441                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
13442
13443         # bail out if any unexpected line happened
13444         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
13445         [ "$?" != 0 ] || error "$2 misformatted"
13446 }
13447
13448 test_215() { # for bugs 18102, 21079, 21517
13449         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13450         local N='(0|[1-9][0-9]*)'       # non-negative numeric
13451         local P='[1-9][0-9]*'           # positive numeric
13452         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
13453         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
13454         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
13455         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
13456
13457         local L1 # regexp for 1st line
13458         local L2 # regexp for 2nd line (optional)
13459         local BR # regexp for the rest (body)
13460
13461         # lnet.stats should look as 11 space-separated non-negative numerics
13462         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
13463         create_lnet_proc_files "stats"
13464         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
13465         remove_lnet_proc_files "stats"
13466
13467         # lnet.routes should look like this:
13468         # Routing disabled/enabled
13469         # net hops priority state router
13470         # where net is a string like tcp0, hops > 0, priority >= 0,
13471         # state is up/down,
13472         # router is a string like 192.168.1.1@tcp2
13473         L1="^Routing (disabled|enabled)$"
13474         L2="^net +hops +priority +state +router$"
13475         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
13476         create_lnet_proc_files "routes"
13477         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
13478         remove_lnet_proc_files "routes"
13479
13480         # lnet.routers should look like this:
13481         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
13482         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
13483         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
13484         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
13485         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
13486         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
13487         create_lnet_proc_files "routers"
13488         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
13489         remove_lnet_proc_files "routers"
13490
13491         # lnet.peers should look like this:
13492         # nid refs state last max rtr min tx min queue
13493         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
13494         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
13495         # numeric (0 or >0 or <0), queue >= 0.
13496         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
13497         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
13498         create_lnet_proc_files "peers"
13499         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
13500         remove_lnet_proc_files "peers"
13501
13502         # lnet.buffers  should look like this:
13503         # pages count credits min
13504         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
13505         L1="^pages +count +credits +min$"
13506         BR="^ +$N +$N +$I +$I$"
13507         create_lnet_proc_files "buffers"
13508         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
13509         remove_lnet_proc_files "buffers"
13510
13511         # lnet.nis should look like this:
13512         # nid status alive refs peer rtr max tx min
13513         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
13514         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
13515         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
13516         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
13517         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
13518         create_lnet_proc_files "nis"
13519         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
13520         remove_lnet_proc_files "nis"
13521
13522         # can we successfully write to lnet.stats?
13523         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
13524 }
13525 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
13526
13527 test_216() { # bug 20317
13528         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13529         remote_ost_nodsh && skip "remote OST with nodsh" && return
13530
13531         local node
13532         local facets=$(get_facets OST)
13533         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
13534
13535         save_lustre_params client "osc.*.contention_seconds" > $p
13536         save_lustre_params $facets \
13537                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
13538         save_lustre_params $facets \
13539                 "ldlm.namespaces.filter-*.contended_locks" >> $p
13540         save_lustre_params $facets \
13541                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
13542         clear_stats osc.*.osc_stats
13543
13544         # agressive lockless i/o settings
13545         do_nodes $(comma_list $(osts_nodes)) \
13546                 "lctl set_param -n ldlm.namespaces.*.max_nolock_bytes=2000000 \
13547                         ldlm.namespaces.filter-*.contended_locks=0 \
13548                         ldlm.namespaces.filter-*.contention_seconds=60"
13549         lctl set_param -n osc.*.contention_seconds=60
13550
13551         $DIRECTIO write $DIR/$tfile 0 10 4096
13552         $CHECKSTAT -s 40960 $DIR/$tfile
13553
13554         # disable lockless i/o
13555         do_nodes $(comma_list $(osts_nodes)) \
13556                 "lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes=0 \
13557                         ldlm.namespaces.filter-*.contended_locks=32 \
13558                         ldlm.namespaces.filter-*.contention_seconds=0"
13559         lctl set_param -n osc.*.contention_seconds=0
13560         clear_stats osc.*.osc_stats
13561
13562         dd if=/dev/zero of=$DIR/$tfile count=0
13563         $CHECKSTAT -s 0 $DIR/$tfile
13564
13565         restore_lustre_params <$p
13566         rm -f $p
13567         rm $DIR/$tfile
13568 }
13569 run_test 216 "check lockless direct write updates file size and kms correctly"
13570
13571 test_217() { # bug 22430
13572         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13573         local node
13574         local nid
13575
13576         for node in $(nodes_list); do
13577                 nid=$(host_nids_address $node $NETTYPE)
13578                 if [[ $nid = *-* ]] ; then
13579                         echo "lctl ping $(h2nettype $nid)"
13580                         lctl ping $(h2nettype $nid)
13581                 else
13582                         echo "skipping $node (no hyphen detected)"
13583                 fi
13584         done
13585 }
13586 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
13587
13588 test_218() {
13589        # do directio so as not to populate the page cache
13590        log "creating a 10 Mb file"
13591        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
13592        log "starting reads"
13593        dd if=$DIR/$tfile of=/dev/null bs=4096 &
13594        log "truncating the file"
13595        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
13596        log "killing dd"
13597        kill %+ || true # reads might have finished
13598        echo "wait until dd is finished"
13599        wait
13600        log "removing the temporary file"
13601        rm -rf $DIR/$tfile || error "tmp file removal failed"
13602 }
13603 run_test 218 "parallel read and truncate should not deadlock ======================="
13604
13605 test_219() {
13606         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13607         # write one partial page
13608         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
13609         # set no grant so vvp_io_commit_write will do sync write
13610         $LCTL set_param fail_loc=0x411
13611         # write a full page at the end of file
13612         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
13613
13614         $LCTL set_param fail_loc=0
13615         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
13616         $LCTL set_param fail_loc=0x411
13617         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
13618
13619         # LU-4201
13620         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
13621         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
13622 }
13623 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
13624
13625 test_220() { #LU-325
13626         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13627         remote_ost_nodsh && skip "remote OST with nodsh" && return
13628         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13629         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
13630         local OSTIDX=0
13631
13632         # create on MDT0000 so the last_id and next_id are correct
13633         mkdir $DIR/$tdir
13634         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
13635         OST=${OST%_UUID}
13636
13637         # on the mdt's osc
13638         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
13639         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
13640                         osc.$mdtosc_proc1.prealloc_last_id)
13641         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
13642                         osc.$mdtosc_proc1.prealloc_next_id)
13643
13644         $LFS df -i
13645
13646         if ! combined_mgs_mds ; then
13647                 mount_mgs_client
13648         fi
13649
13650         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
13651         #define OBD_FAIL_OST_ENOINO              0x229
13652         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
13653         create_pool $FSNAME.$TESTNAME || return 1
13654         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
13655
13656         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
13657
13658         MDSOBJS=$((last_id - next_id))
13659         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
13660
13661         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
13662         echo "OST still has $count kbytes free"
13663
13664         echo "create $MDSOBJS files @next_id..."
13665         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
13666
13667         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
13668                         osc.$mdtosc_proc1.prealloc_last_id)
13669         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
13670                         osc.$mdtosc_proc1.prealloc_next_id)
13671
13672         echo "after creation, last_id=$last_id2, next_id=$next_id2"
13673         $LFS df -i
13674
13675         echo "cleanup..."
13676
13677         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
13678         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
13679
13680         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST ||
13681                 error "$LCTL pool_remove $FSNAME.$TESTNAME $OST failed"
13682         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
13683                 error "$LCTL pool_destroy $FSNAME.$TESTNAME failed"
13684         echo "unlink $MDSOBJS files @$next_id..."
13685         unlinkmany $DIR/$tdir/f $MDSOBJS || error "unlinkmany failed"
13686
13687         if ! combined_mgs_mds ; then
13688                 umount_mgs_client
13689         fi
13690 }
13691 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
13692
13693 test_221() {
13694         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13695         dd if=`which date` of=$MOUNT/date oflag=sync
13696         chmod +x $MOUNT/date
13697
13698         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
13699         $LCTL set_param fail_loc=0x80001401
13700
13701         $MOUNT/date > /dev/null
13702         rm -f $MOUNT/date
13703 }
13704 run_test 221 "make sure fault and truncate race to not cause OOM"
13705
13706 test_222a () {
13707         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13708         rm -rf $DIR/$tdir
13709         test_mkdir $DIR/$tdir
13710         $LFS setstripe -c 1 -i 0 $DIR/$tdir
13711         createmany -o $DIR/$tdir/$tfile 10
13712         cancel_lru_locks mdc
13713         cancel_lru_locks osc
13714         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
13715         $LCTL set_param fail_loc=0x31a
13716         ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
13717         $LCTL set_param fail_loc=0
13718         rm -r $DIR/$tdir
13719 }
13720 run_test 222a "AGL for ls should not trigger CLIO lock failure"
13721
13722 test_222b () {
13723         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13724         rm -rf $DIR/$tdir
13725         test_mkdir $DIR/$tdir
13726         $LFS setstripe -c 1 -i 0 $DIR/$tdir
13727         createmany -o $DIR/$tdir/$tfile 10
13728         cancel_lru_locks mdc
13729         cancel_lru_locks osc
13730         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
13731         $LCTL set_param fail_loc=0x31a
13732         rm -r $DIR/$tdir || error "AGL for rmdir failed"
13733         $LCTL set_param fail_loc=0
13734 }
13735 run_test 222b "AGL for rmdir should not trigger CLIO lock failure"
13736
13737 test_223 () {
13738         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13739         rm -rf $DIR/$tdir
13740         test_mkdir $DIR/$tdir
13741         $LFS setstripe -c 1 -i 0 $DIR/$tdir
13742         createmany -o $DIR/$tdir/$tfile 10
13743         cancel_lru_locks mdc
13744         cancel_lru_locks osc
13745         #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
13746         $LCTL set_param fail_loc=0x31b
13747         ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
13748         $LCTL set_param fail_loc=0
13749         rm -r $DIR/$tdir
13750 }
13751 run_test 223 "osc reenqueue if without AGL lock granted ======================="
13752
13753 test_224a() { # LU-1039, MRP-303
13754         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13755         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
13756         $LCTL set_param fail_loc=0x508
13757         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
13758         $LCTL set_param fail_loc=0
13759         df $DIR
13760 }
13761 run_test 224a "Don't panic on bulk IO failure"
13762
13763 test_224b() { # LU-1039, MRP-303
13764         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13765         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
13766         cancel_lru_locks osc
13767         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
13768         $LCTL set_param fail_loc=0x515
13769         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
13770         $LCTL set_param fail_loc=0
13771         df $DIR
13772 }
13773 run_test 224b "Don't panic on bulk IO failure"
13774
13775 test_224c() { # LU-6441
13776         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13777         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13778
13779         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
13780         save_writethrough $p
13781         set_cache writethrough on
13782
13783         local pages_per_rpc=$($LCTL get_param \
13784                                 osc.*.max_pages_per_rpc)
13785         local at_max=$($LCTL get_param -n at_max)
13786         local timeout=$($LCTL get_param -n timeout)
13787         local test_at="$LCTL get_param -n at_max"
13788         local param_at="$FSNAME.sys.at_max"
13789         local test_timeout="$LCTL get_param -n timeout"
13790         local param_timeout="$FSNAME.sys.timeout"
13791
13792         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
13793
13794         set_conf_param_and_check client "$test_at" "$param_at" 0 ||
13795                 error "conf_param at_max=0 failed"
13796         set_conf_param_and_check client "$test_timeout" "$param_timeout" 5 ||
13797                 error "conf_param timeout=5 failed"
13798
13799         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3   0x520
13800         do_facet ost1 $LCTL set_param fail_loc=0x520
13801         $LFS setstripe -c 1 -i 0 $DIR/$tfile
13802         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
13803         sync
13804         do_facet ost1 $LCTL set_param fail_loc=0
13805
13806         set_conf_param_and_check client "$test_at" "$param_at" $at_max ||
13807                 error "conf_param at_max=$at_max failed"
13808         set_conf_param_and_check client "$test_timeout" "$param_timeout" \
13809                 $timeout || error "conf_param timeout=$timeout failed"
13810
13811         $LCTL set_param -n $pages_per_rpc
13812         restore_lustre_params < $p
13813         rm -f $p
13814 }
13815 run_test 224c "Don't hang if one of md lost during large bulk RPC"
13816
13817 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
13818 test_225a () {
13819         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13820         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13821         if [ -z ${MDSSURVEY} ]; then
13822               skip_env "mds-survey not found" && return
13823         fi
13824
13825         [ $MDSCOUNT -ge 2 ] &&
13826                 skip "skipping now for more than one MDT" && return
13827
13828        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
13829             { skip "Need MDS version at least 2.2.51"; return; }
13830
13831        local mds=$(facet_host $SINGLEMDS)
13832        local target=$(do_nodes $mds 'lctl dl' | \
13833                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
13834
13835        local cmd1="file_count=1000 thrhi=4"
13836        local cmd2="dir_count=2 layer=mdd stripe_count=0"
13837        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
13838        local cmd="$cmd1 $cmd2 $cmd3"
13839
13840        rm -f ${TMP}/mds_survey*
13841        echo + $cmd
13842        eval $cmd || error "mds-survey with zero-stripe failed"
13843        cat ${TMP}/mds_survey*
13844        rm -f ${TMP}/mds_survey*
13845 }
13846 run_test 225a "Metadata survey sanity with zero-stripe"
13847
13848 test_225b () {
13849         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13850         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13851         if [ -z ${MDSSURVEY} ]; then
13852               skip_env "mds-survey not found" && return
13853         fi
13854         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
13855             { skip "Need MDS version at least 2.2.51"; return; }
13856
13857         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
13858               skip_env "Need to mount OST to test" && return
13859         fi
13860
13861        local mds=$(facet_host $SINGLEMDS)
13862        local target=$(do_nodes $mds 'lctl dl' | \
13863                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
13864
13865        local cmd1="file_count=1000 thrhi=4"
13866        local cmd2="dir_count=2 layer=mdd stripe_count=1"
13867        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
13868        local cmd="$cmd1 $cmd2 $cmd3"
13869
13870        rm -f ${TMP}/mds_survey*
13871        echo + $cmd
13872        eval $cmd || error "mds-survey with stripe_count failed"
13873        cat ${TMP}/mds_survey*
13874        rm -f ${TMP}/mds_survey*
13875 }
13876 run_test 225b "Metadata survey sanity with stripe_count = 1"
13877
13878 mcreate_path2fid () {
13879         local mode=$1
13880         local major=$2
13881         local minor=$3
13882         local name=$4
13883         local desc=$5
13884         local path=$DIR/$tdir/$name
13885         local fid
13886         local rc
13887         local fid_path
13888
13889         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
13890                 error "cannot create $desc"
13891
13892         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
13893         rc=$?
13894         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
13895
13896         fid_path=$($LFS fid2path $MOUNT $fid)
13897         rc=$?
13898         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
13899
13900         [ "$path" == "$fid_path" ] ||
13901                 error "fid2path returned $fid_path, expected $path"
13902
13903         echo "pass with $path and $fid"
13904 }
13905
13906 test_226a () {
13907         rm -rf $DIR/$tdir
13908         mkdir -p $DIR/$tdir
13909
13910         mcreate_path2fid 0010666 0 0 fifo "FIFO"
13911         mcreate_path2fid 0020666 1 3 null "character special file (null)"
13912         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
13913         mcreate_path2fid 0040666 0 0 dir "directory"
13914         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
13915         mcreate_path2fid 0100666 0 0 file "regular file"
13916         mcreate_path2fid 0120666 0 0 link "symbolic link"
13917         mcreate_path2fid 0140666 0 0 sock "socket"
13918 }
13919 run_test 226a "call path2fid and fid2path on files of all type"
13920
13921 test_226b () {
13922         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13923         rm -rf $DIR/$tdir
13924         local MDTIDX=1
13925
13926         mkdir -p $DIR/$tdir
13927         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
13928                 error "create remote directory failed"
13929         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
13930         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
13931                                 "character special file (null)"
13932         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
13933                                 "character special file (no device)"
13934         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
13935         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
13936                                 "block special file (loop)"
13937         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
13938         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
13939         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
13940 }
13941 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
13942
13943 # LU-1299 Executing or running ldd on a truncated executable does not
13944 # cause an out-of-memory condition.
13945 test_227() {
13946         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13947         [ -z "$(which ldd)" ] && skip "should have ldd tool" && return
13948         dd if=$(which date) of=$MOUNT/date bs=1k count=1
13949         chmod +x $MOUNT/date
13950
13951         $MOUNT/date > /dev/null
13952         ldd $MOUNT/date > /dev/null
13953         rm -f $MOUNT/date
13954 }
13955 run_test 227 "running truncated executable does not cause OOM"
13956
13957 # LU-1512 try to reuse idle OI blocks
13958 test_228a() {
13959         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13960         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13961         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
13962                 skip "ldiskfs only test" && return
13963
13964         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
13965         local myDIR=$DIR/$tdir
13966
13967         mkdir -p $myDIR
13968         #define OBD_FAIL_SEQ_EXHAUST             0x1002
13969         $LCTL set_param fail_loc=0x80001002
13970         createmany -o $myDIR/t- 10000
13971         $LCTL set_param fail_loc=0
13972         # The guard is current the largest FID holder
13973         touch $myDIR/guard
13974         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
13975                     tr -d '[')
13976         local IDX=$(($SEQ % 64))
13977
13978         do_facet $SINGLEMDS sync
13979         # Make sure journal flushed.
13980         sleep 6
13981         local blk1=$(do_facet $SINGLEMDS \
13982                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13983                      grep Blockcount | awk '{print $4}')
13984
13985         # Remove old files, some OI blocks will become idle.
13986         unlinkmany $myDIR/t- 10000
13987         # Create new files, idle OI blocks should be reused.
13988         createmany -o $myDIR/t- 2000
13989         do_facet $SINGLEMDS sync
13990         # Make sure journal flushed.
13991         sleep 6
13992         local blk2=$(do_facet $SINGLEMDS \
13993                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13994                      grep Blockcount | awk '{print $4}')
13995
13996         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
13997 }
13998 run_test 228a "try to reuse idle OI blocks"
13999
14000 test_228b() {
14001         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14002         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14003         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
14004                 skip "ldiskfs only test" && return
14005
14006         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14007         local myDIR=$DIR/$tdir
14008
14009         mkdir -p $myDIR
14010         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14011         $LCTL set_param fail_loc=0x80001002
14012         createmany -o $myDIR/t- 10000
14013         $LCTL set_param fail_loc=0
14014         # The guard is current the largest FID holder
14015         touch $myDIR/guard
14016         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14017                     tr -d '[')
14018         local IDX=$(($SEQ % 64))
14019
14020         do_facet $SINGLEMDS sync
14021         # Make sure journal flushed.
14022         sleep 6
14023         local blk1=$(do_facet $SINGLEMDS \
14024                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14025                      grep Blockcount | awk '{print $4}')
14026
14027         # Remove old files, some OI blocks will become idle.
14028         unlinkmany $myDIR/t- 10000
14029
14030         # stop the MDT
14031         stop $SINGLEMDS || error "Fail to stop MDT."
14032         # remount the MDT
14033         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
14034
14035         df $MOUNT || error "Fail to df."
14036         # Create new files, idle OI blocks should be reused.
14037         createmany -o $myDIR/t- 2000
14038         do_facet $SINGLEMDS sync
14039         # Make sure journal flushed.
14040         sleep 6
14041         local blk2=$(do_facet $SINGLEMDS \
14042                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14043                      grep Blockcount | awk '{print $4}')
14044
14045         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14046 }
14047 run_test 228b "idle OI blocks can be reused after MDT restart"
14048
14049 #LU-1881
14050 test_228c() {
14051         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14052         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14053         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
14054                 skip "ldiskfs only test" && return
14055
14056         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14057         local myDIR=$DIR/$tdir
14058
14059         mkdir -p $myDIR
14060         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14061         $LCTL set_param fail_loc=0x80001002
14062         # 20000 files can guarantee there are index nodes in the OI file
14063         createmany -o $myDIR/t- 20000
14064         $LCTL set_param fail_loc=0
14065         # The guard is current the largest FID holder
14066         touch $myDIR/guard
14067         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14068                     tr -d '[')
14069         local IDX=$(($SEQ % 64))
14070
14071         do_facet $SINGLEMDS sync
14072         # Make sure journal flushed.
14073         sleep 6
14074         local blk1=$(do_facet $SINGLEMDS \
14075                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14076                      grep Blockcount | awk '{print $4}')
14077
14078         # Remove old files, some OI blocks will become idle.
14079         unlinkmany $myDIR/t- 20000
14080         rm -f $myDIR/guard
14081         # The OI file should become empty now
14082
14083         # Create new files, idle OI blocks should be reused.
14084         createmany -o $myDIR/t- 2000
14085         do_facet $SINGLEMDS sync
14086         # Make sure journal flushed.
14087         sleep 6
14088         local blk2=$(do_facet $SINGLEMDS \
14089                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14090                      grep Blockcount | awk '{print $4}')
14091
14092         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14093 }
14094 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
14095
14096 test_229() { # LU-2482, LU-3448
14097         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
14098                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
14099                 return
14100         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14101         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
14102
14103         rm -f $DIR/$tfile
14104
14105         # Create a file with a released layout and stripe count 2.
14106         $MULTIOP $DIR/$tfile H2c ||
14107                 error "failed to create file with released layout"
14108
14109         $GETSTRIPE -v $DIR/$tfile
14110
14111         local pattern=$($GETSTRIPE -L $DIR/$tfile)
14112         [ X"$pattern" = X"released" ] || error "pattern error ($pattern)"
14113
14114         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
14115         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
14116         stat $DIR/$tfile || error "failed to stat released file"
14117
14118         chown $RUNAS_ID $DIR/$tfile ||
14119                 error "chown $RUNAS_ID $DIR/$tfile failed"
14120
14121         chgrp $RUNAS_ID $DIR/$tfile ||
14122                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
14123
14124         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
14125         rm $DIR/$tfile || error "failed to remove released file"
14126 }
14127 run_test 229 "getstripe/stat/rm/attr changes work on released files"
14128
14129 test_230a() {
14130         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14131         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14132         local MDTIDX=1
14133
14134         test_mkdir $DIR/$tdir
14135         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
14136         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
14137         [ $mdt_idx -ne 0 ] &&
14138                 error "create local directory on wrong MDT $mdt_idx"
14139
14140         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
14141                         error "create remote directory failed"
14142         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
14143         [ $mdt_idx -ne $MDTIDX ] &&
14144                 error "create remote directory on wrong MDT $mdt_idx"
14145
14146         createmany -o $DIR/$tdir/test_230/t- 10 ||
14147                 error "create files on remote directory failed"
14148         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
14149         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
14150         rm -r $DIR/$tdir || error "unlink remote directory failed"
14151 }
14152 run_test 230a "Create remote directory and files under the remote directory"
14153
14154 test_230b() {
14155         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14156         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14157         local MDTIDX=1
14158         local mdt_index
14159         local i
14160         local file
14161         local pid
14162         local stripe_count
14163         local migrate_dir=$DIR/$tdir/migrate_dir
14164         local other_dir=$DIR/$tdir/other_dir
14165
14166         test_mkdir $DIR/$tdir
14167         test_mkdir -i0 -c1 $migrate_dir
14168         test_mkdir -i0 -c1 $other_dir
14169         for ((i=0; i<10; i++)); do
14170                 mkdir -p $migrate_dir/dir_${i}
14171                 createmany -o $migrate_dir/dir_${i}/f 10 ||
14172                         error "create files under remote dir failed $i"
14173         done
14174
14175         cp /etc/passwd $migrate_dir/$tfile
14176         cp /etc/passwd $other_dir/$tfile
14177         chattr +SAD $migrate_dir
14178         chattr +SAD $migrate_dir/$tfile
14179
14180         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
14181         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
14182         local old_dir_mode=$(stat -c%f $migrate_dir)
14183         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
14184
14185         mkdir -p $migrate_dir/dir_default_stripe2
14186         $SETSTRIPE -c 2 $migrate_dir/dir_default_stripe2
14187         $SETSTRIPE -c 2 $migrate_dir/${tfile}_stripe2
14188
14189         mkdir -p $other_dir
14190         ln $migrate_dir/$tfile $other_dir/luna
14191         ln $migrate_dir/$tfile $migrate_dir/sofia
14192         ln $other_dir/$tfile $migrate_dir/david
14193         ln -s $migrate_dir/$tfile $other_dir/zachary
14194         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
14195         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
14196
14197         $LFS migrate -m $MDTIDX $migrate_dir ||
14198                 error "fails on migrating remote dir to MDT1"
14199
14200         echo "migratate to MDT1, then checking.."
14201         for ((i = 0; i < 10; i++)); do
14202                 for file in $(find $migrate_dir/dir_${i}); do
14203                         mdt_index=$($LFS getstripe -M $file)
14204                         [ $mdt_index == $MDTIDX ] ||
14205                                 error "$file is not on MDT${MDTIDX}"
14206                 done
14207         done
14208
14209         # the multiple link file should still in MDT0
14210         mdt_index=$($LFS getstripe -M $migrate_dir/$tfile)
14211         [ $mdt_index == 0 ] ||
14212                 error "$file is not on MDT${MDTIDX}"
14213
14214         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
14215         [ "$old_dir_flag" = "$new_dir_flag" ] ||
14216                 error " expect $old_dir_flag get $new_dir_flag"
14217
14218         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
14219         [ "$old_file_flag" = "$new_file_flag" ] ||
14220                 error " expect $old_file_flag get $new_file_flag"
14221
14222         local new_dir_mode=$(stat -c%f $migrate_dir)
14223         [ "$old_dir_mode" = "$new_dir_mode" ] ||
14224                 error "expect mode $old_dir_mode get $new_dir_mode"
14225
14226         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
14227         [ "$old_file_mode" = "$new_file_mode" ] ||
14228                 error "expect mode $old_file_mode get $new_file_mode"
14229
14230         diff /etc/passwd $migrate_dir/$tfile ||
14231                 error "$tfile different after migration"
14232
14233         diff /etc/passwd $other_dir/luna ||
14234                 error "luna different after migration"
14235
14236         diff /etc/passwd $migrate_dir/sofia ||
14237                 error "sofia different after migration"
14238
14239         diff /etc/passwd $migrate_dir/david ||
14240                 error "david different after migration"
14241
14242         diff /etc/passwd $other_dir/zachary ||
14243                 error "zachary different after migration"
14244
14245         diff /etc/passwd $migrate_dir/${tfile}_ln ||
14246                 error "${tfile}_ln different after migration"
14247
14248         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
14249                 error "${tfile}_ln_other different after migration"
14250
14251         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
14252         [ $stripe_count = 2 ] ||
14253                 error "dir strpe_count $d != 2 after migration."
14254
14255         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
14256         [ $stripe_count = 2 ] ||
14257                 error "file strpe_count $d != 2 after migration."
14258
14259         #migrate back to MDT0
14260         MDTIDX=0
14261
14262         $LFS migrate -m $MDTIDX $migrate_dir ||
14263                 error "fails on migrating remote dir to MDT0"
14264
14265         echo "migrate back to MDT0, checking.."
14266         for file in $(find $migrate_dir); do
14267                 mdt_index=$($LFS getstripe -M $file)
14268                 [ $mdt_index == $MDTIDX ] ||
14269                         error "$file is not on MDT${MDTIDX}"
14270         done
14271
14272         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
14273         [ "$old_dir_flag" = "$new_dir_flag" ] ||
14274                 error " expect $old_dir_flag get $new_dir_flag"
14275
14276         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
14277         [ "$old_file_flag" = "$new_file_flag" ] ||
14278                 error " expect $old_file_flag get $new_file_flag"
14279
14280         local new_dir_mode=$(stat -c%f $migrate_dir)
14281         [ "$old_dir_mode" = "$new_dir_mode" ] ||
14282                 error "expect mode $old_dir_mode get $new_dir_mode"
14283
14284         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
14285         [ "$old_file_mode" = "$new_file_mode" ] ||
14286                 error "expect mode $old_file_mode get $new_file_mode"
14287
14288         diff /etc/passwd ${migrate_dir}/$tfile ||
14289                 error "$tfile different after migration"
14290
14291         diff /etc/passwd ${other_dir}/luna ||
14292                 error "luna different after migration"
14293
14294         diff /etc/passwd ${migrate_dir}/sofia ||
14295                 error "sofia different after migration"
14296
14297         diff /etc/passwd ${other_dir}/zachary ||
14298                 error "zachary different after migration"
14299
14300         diff /etc/passwd $migrate_dir/${tfile}_ln ||
14301                 error "${tfile}_ln different after migration"
14302
14303         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
14304                 error "${tfile}_ln_other different after migration"
14305
14306         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
14307         [ $stripe_count = 2 ] ||
14308                 error "dir strpe_count $d != 2 after migration."
14309
14310         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
14311         [ $stripe_count = 2 ] ||
14312                 error "file strpe_count $d != 2 after migration."
14313
14314         rm -rf $DIR/$tdir || error "rm dir failed after migration"
14315 }
14316 run_test 230b "migrate directory"
14317
14318 test_230c() {
14319         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14320         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14321         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14322         local MDTIDX=1
14323         local mdt_index
14324         local file
14325         local migrate_dir=$DIR/$tdir/migrate_dir
14326
14327         #If migrating directory fails in the middle, all entries of
14328         #the directory is still accessiable.
14329         test_mkdir $DIR/$tdir
14330         test_mkdir -i0 -c1 $migrate_dir
14331         stat $migrate_dir
14332         createmany -o $migrate_dir/f 10 ||
14333                 error "create files under ${migrate_dir} failed"
14334
14335         #failed after migrating 5 entries
14336         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
14337         do_facet mds1 lctl set_param fail_loc=0x20001801
14338         do_facet mds1 lctl  set_param fail_val=5
14339         local t=$(ls $migrate_dir | wc -l)
14340         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
14341                 error "migrate should fail after 5 entries"
14342
14343         mkdir $migrate_dir/dir &&
14344                 error "mkdir succeeds under migrating directory"
14345         touch $migrate_dir/file &&
14346                 error "touch file succeeds under migrating directory"
14347
14348         local u=$(ls $migrate_dir | wc -l)
14349         [ "$u" == "$t" ] || error "$u != $t during migration"
14350
14351         for file in $(find $migrate_dir); do
14352                 stat $file || error "stat $file failed"
14353         done
14354
14355         do_facet mds1 lctl set_param fail_loc=0
14356         do_facet mds1 lctl set_param fail_val=0
14357
14358         $LFS migrate -m $MDTIDX $migrate_dir ||
14359                 error "migrate open files should failed with open files"
14360
14361         echo "Finish migration, then checking.."
14362         for file in $(find $migrate_dir); do
14363                 mdt_index=$($LFS getstripe -M $file)
14364                 [ $mdt_index == $MDTIDX ] ||
14365                         error "$file is not on MDT${MDTIDX}"
14366         done
14367
14368         rm -rf $DIR/$tdir || error "rm dir failed after migration"
14369 }
14370 run_test 230c "check directory accessiblity if migration is failed"
14371
14372 test_230d() {
14373         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14374         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14375         local MDTIDX=1
14376         local mdt_index
14377         local migrate_dir=$DIR/$tdir/migrate_dir
14378         local i
14379         local j
14380
14381         test_mkdir $DIR/$tdir
14382         test_mkdir -i0 -c1 $migrate_dir
14383
14384         for ((i=0; i<100; i++)); do
14385                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
14386                 createmany -o $migrate_dir/dir_${i}/f 100 ||
14387                         error "create files under remote dir failed $i"
14388         done
14389
14390         $LFS migrate -m $MDTIDX $migrate_dir ||
14391                 error "migrate remote dir error"
14392
14393         echo "Finish migration, then checking.."
14394         for file in $(find $migrate_dir); do
14395                 mdt_index=$($LFS getstripe -M $file)
14396                 [ $mdt_index == $MDTIDX ] ||
14397                         error "$file is not on MDT${MDTIDX}"
14398         done
14399
14400         rm -rf $DIR/$tdir || error "rm dir failed after migration"
14401 }
14402 run_test 230d "check migrate big directory"
14403
14404 test_230e() {
14405         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14406         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14407         local i
14408         local j
14409         local a_fid
14410         local b_fid
14411
14412         mkdir -p $DIR/$tdir
14413         mkdir $DIR/$tdir/migrate_dir
14414         mkdir $DIR/$tdir/other_dir
14415         touch $DIR/$tdir/migrate_dir/a
14416         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
14417         ls $DIR/$tdir/other_dir
14418
14419         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
14420                 error "migrate dir fails"
14421
14422         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
14423         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
14424
14425         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
14426         [ $mdt_index == 0 ] || error "a is not on MDT0"
14427
14428         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
14429                 error "migrate dir fails"
14430
14431         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir)
14432         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
14433
14434         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
14435         [ $mdt_index == 1 ] || error "a is not on MDT1"
14436
14437         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir/b)
14438         [ $mdt_index == 1 ] || error "b is not on MDT1"
14439
14440         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
14441         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
14442
14443         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
14444
14445         rm -rf $DIR/$tdir || error "rm dir failed after migration"
14446 }
14447 run_test 230e "migrate mulitple local link files"
14448
14449 test_230f() {
14450         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14451         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14452         local a_fid
14453         local ln_fid
14454
14455         mkdir -p $DIR/$tdir
14456         mkdir $DIR/$tdir/migrate_dir
14457         $LFS mkdir -i1 $DIR/$tdir/other_dir
14458         touch $DIR/$tdir/migrate_dir/a
14459         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
14460         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
14461         ls $DIR/$tdir/other_dir
14462
14463         # a should be migrated to MDT1, since no other links on MDT0
14464         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
14465                 error "#1 migrate dir fails"
14466         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
14467         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
14468         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
14469         [ $mdt_index == 1 ] || error "a is not on MDT1"
14470
14471         # a should stay on MDT1, because it is a mulitple link file
14472         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
14473                 error "#2 migrate dir fails"
14474         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
14475         [ $mdt_index == 1 ] || error "a is not on MDT1"
14476
14477         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
14478                 error "#3 migrate dir fails"
14479
14480         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
14481         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
14482         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
14483
14484         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
14485         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
14486
14487         # a should be migrated to MDT0, since no other links on MDT1
14488         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
14489                 error "#4 migrate dir fails"
14490         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
14491         [ $mdt_index == 0 ] || error "a is not on MDT0"
14492
14493         rm -rf $DIR/$tdir || error "rm dir failed after migration"
14494 }
14495 run_test 230f "migrate mulitple remote link files"
14496
14497 test_230g() {
14498         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14499         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14500
14501         mkdir -p $DIR/$tdir/migrate_dir
14502
14503         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
14504                 error "migrating dir to non-exist MDT succeeds"
14505         true
14506 }
14507 run_test 230g "migrate dir to non-exist MDT"
14508
14509 test_230h() {
14510         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14511         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14512         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
14513                 skip "Need MDS version at least 2.7.64" && return
14514         local mdt_index
14515
14516         mkdir -p $DIR/$tdir/migrate_dir
14517
14518         $LFS migrate -m1 $DIR &&
14519                 error "migrating mountpoint1 should fail"
14520
14521         $LFS migrate -m1 $DIR/$tdir/.. &&
14522                 error "migrating mountpoint2 should fail"
14523
14524         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. ||
14525                 error "migrating $tdir fail"
14526
14527         mdt_index=$($LFS getstripe -M $DIR/$tdir)
14528         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
14529
14530         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
14531         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
14532
14533 }
14534 run_test 230h "migrate .. and root"
14535
14536 test_230i() {
14537         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14538         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14539
14540         mkdir -p $DIR/$tdir/migrate_dir
14541
14542         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
14543                 error "migration fails with a tailing slash"
14544
14545         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
14546                 error "migration fails with two tailing slashes"
14547 }
14548 run_test 230i "lfs migrate -m tolerates trailing slashes"
14549
14550 test_231a()
14551 {
14552         # For simplicity this test assumes that max_pages_per_rpc
14553         # is the same across all OSCs
14554         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
14555         local bulk_size=$((max_pages * 4096))
14556         local brw_size=$(do_facet ost1 $LCTL get_param -n obdfilter.*.brw_size |
14557                                        head -n 1)
14558
14559         mkdir -p $DIR/$tdir
14560         $LFS setstripe -S ${brw_size}M $DIR/$tdir ||
14561                 error "failed to set stripe with -S ${brw_size}M option"
14562
14563         # clear the OSC stats
14564         $LCTL set_param osc.*.stats=0 &>/dev/null
14565         stop_writeback
14566
14567         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
14568         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
14569                 oflag=direct &>/dev/null || error "dd failed"
14570
14571         sync; sleep 1; sync # just to be safe
14572         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
14573         if [ x$nrpcs != "x1" ]; then
14574                 $LCTL get_param osc.*.stats
14575                 error "found $nrpcs ost_write RPCs, not 1 as expected"
14576         fi
14577
14578         start_writeback
14579         # Drop the OSC cache, otherwise we will read from it
14580         cancel_lru_locks osc
14581
14582         # clear the OSC stats
14583         $LCTL set_param osc.*.stats=0 &>/dev/null
14584
14585         # Client reads $bulk_size.
14586         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
14587                 iflag=direct &>/dev/null || error "dd failed"
14588
14589         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
14590         if [ x$nrpcs != "x1" ]; then
14591                 $LCTL get_param osc.*.stats
14592                 error "found $nrpcs ost_read RPCs, not 1 as expected"
14593         fi
14594 }
14595 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
14596
14597 test_231b() {
14598         mkdir -p $DIR/$tdir
14599         local i
14600         for i in {0..1023}; do
14601                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
14602                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
14603                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
14604         done
14605         sync
14606 }
14607 run_test 231b "must not assert on fully utilized OST request buffer"
14608
14609 test_232a() {
14610         mkdir -p $DIR/$tdir
14611         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
14612
14613         #define OBD_FAIL_LDLM_OST_LVB            0x31c
14614         do_facet ost1 $LCTL set_param fail_loc=0x31c
14615
14616         # ignore dd failure
14617         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
14618
14619         do_facet ost1 $LCTL set_param fail_loc=0
14620         umount_client $MOUNT || error "umount failed"
14621         mount_client $MOUNT || error "mount failed"
14622         stop ost1 || error "cannot stop ost1"
14623         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
14624 }
14625 run_test 232a "failed lock should not block umount"
14626
14627 test_232b() {
14628         mkdir -p $DIR/$tdir
14629         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
14630         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1
14631         sync
14632         cancel_lru_locks osc
14633
14634         #define OBD_FAIL_LDLM_OST_LVB            0x31c
14635         do_facet ost1 $LCTL set_param fail_loc=0x31c
14636
14637         # ignore failure
14638         $LFS data_version $DIR/$tdir/$tfile || true
14639
14640         do_facet ost1 $LCTL set_param fail_loc=0
14641         umount_client $MOUNT || error "umount failed"
14642         mount_client $MOUNT || error "mount failed"
14643         stop ost1 || error "cannot stop ost1"
14644         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
14645 }
14646 run_test 232b "failed data version lock should not block umount"
14647
14648 test_233a() {
14649         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
14650         { skip "Need MDS version at least 2.3.64"; return; }
14651         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
14652
14653         local fid=$($LFS path2fid $MOUNT)
14654         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
14655                 error "cannot access $MOUNT using its FID '$fid'"
14656 }
14657 run_test 233a "checking that OBF of the FS root succeeds"
14658
14659 test_233b() {
14660         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
14661         { skip "Need MDS version at least 2.5.90"; return; }
14662         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
14663
14664         local fid=$($LFS path2fid $MOUNT/.lustre)
14665         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
14666                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
14667
14668         fid=$($LFS path2fid $MOUNT/.lustre/fid)
14669         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
14670                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
14671 }
14672 run_test 233b "checking that OBF of the FS .lustre succeeds"
14673
14674 test_234() {
14675         local p="$TMP/sanityN-$TESTNAME.parameters"
14676         save_lustre_params client "llite.*.xattr_cache" > $p
14677         lctl set_param llite.*.xattr_cache 1 ||
14678                 { skip "xattr cache is not supported"; return 0; }
14679
14680         mkdir -p $DIR/$tdir || error "mkdir failed"
14681         touch $DIR/$tdir/$tfile || error "touch failed"
14682         # OBD_FAIL_LLITE_XATTR_ENOMEM
14683         $LCTL set_param fail_loc=0x1405
14684         getfattr -n user.attr $DIR/$tdir/$tfile &&
14685                 error "getfattr should have failed with ENOMEM"
14686         $LCTL set_param fail_loc=0x0
14687         rm -rf $DIR/$tdir
14688
14689         restore_lustre_params < $p
14690         rm -f $p
14691 }
14692 run_test 234 "xattr cache should not crash on ENOMEM"
14693
14694 test_235() {
14695         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
14696                 skip "Need MDS version at least 2.4.52" && return
14697         flock_deadlock $DIR/$tfile
14698         local RC=$?
14699         case $RC in
14700                 0)
14701                 ;;
14702                 124) error "process hangs on a deadlock"
14703                 ;;
14704                 *) error "error executing flock_deadlock $DIR/$tfile"
14705                 ;;
14706         esac
14707 }
14708 run_test 235 "LU-1715: flock deadlock detection does not work properly"
14709
14710 #LU-2935
14711 test_236() {
14712         check_swap_layouts_support && return 0
14713         test_mkdir -c1 $DIR/$tdir
14714
14715         local ref1=/etc/passwd
14716         local ref2=/etc/group
14717         local file1=$DIR/$tdir/f1
14718         local file2=$DIR/$tdir/f2
14719
14720         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
14721         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
14722         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
14723         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
14724         local fd=$(free_fd)
14725         local cmd="exec $fd<>$file2"
14726         eval $cmd
14727         rm $file2
14728         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
14729                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
14730         cmd="exec $fd>&-"
14731         eval $cmd
14732         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
14733
14734         #cleanup
14735         rm -rf $DIR/$tdir
14736 }
14737 run_test 236 "Layout swap on open unlinked file"
14738
14739 # test to verify file handle related system calls
14740 # (name_to_handle_at/open_by_handle_at)
14741 # The new system calls are supported in glibc >= 2.14.
14742
14743 test_237() {
14744         echo "Test file_handle syscalls" > $DIR/$tfile ||
14745                 error "write failed"
14746         check_fhandle_syscalls $DIR/$tfile ||
14747                 error "check_fhandle_syscalls failed"
14748 }
14749 run_test 237 "Verify name_to_handle_at/open_by_handle_at syscalls"
14750
14751 # LU-4659 linkea consistency
14752 test_238() {
14753         local server_version=$(lustre_version_code $SINGLEMDS)
14754
14755         [[ $server_version -gt $(version_code 2.5.57) ]] ||
14756                 [[ $server_version -gt $(version_code 2.5.1) &&
14757                    $server_version -lt $(version_code 2.5.50) ]] ||
14758                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
14759
14760         touch $DIR/$tfile
14761         ln $DIR/$tfile $DIR/$tfile.lnk
14762         touch $DIR/$tfile.new
14763         mv $DIR/$tfile.new $DIR/$tfile
14764         local fid1=$($LFS path2fid $DIR/$tfile)
14765         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
14766         local path1=$($LFS fid2path $FSNAME "$fid1")
14767         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
14768         local path2=$($LFS fid2path $FSNAME "$fid2")
14769         [ $tfile.lnk == $path2 ] ||
14770                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
14771         rm -f $DIR/$tfile*
14772 }
14773 run_test 238 "Verify linkea consistency"
14774
14775 test_239() {
14776         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.60) ] &&
14777                 skip "Need MDS version at least 2.5.60" && return
14778         local list=$(comma_list $(mdts_nodes))
14779
14780         mkdir -p $DIR/$tdir
14781         createmany -o $DIR/$tdir/f- 5000
14782         unlinkmany $DIR/$tdir/f- 5000
14783         [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.10.53) ] &&
14784                 do_nodes $list "lctl set_param -n osp.*.force_sync=1"
14785         changes=$(do_nodes $list "lctl get_param -n osp.*MDT*.sync_changes \
14786                         osp.*MDT*.sync_in_flight" | calc_sum)
14787         [ "$changes" -eq 0 ] || error "$changes not synced"
14788 }
14789 run_test 239 "osp_sync test"
14790
14791 test_239a() { #LU-5297
14792         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14793         touch $DIR/$tfile
14794         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
14795         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
14796         chgrp $RUNAS_GID $DIR/$tfile
14797         wait_delete_completed
14798 }
14799 run_test 239a "process invalid osp sync record correctly"
14800
14801 test_239b() { #LU-5297
14802         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14803         touch $DIR/$tfile1
14804         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
14805         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
14806         chgrp $RUNAS_GID $DIR/$tfile1
14807         wait_delete_completed
14808         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
14809         touch $DIR/$tfile2
14810         chgrp $RUNAS_GID $DIR/$tfile2
14811         wait_delete_completed
14812 }
14813 run_test 239b "process osp sync record with ENOMEM error correctly"
14814
14815 test_240() {
14816         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14817         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14818
14819         mkdir -p $DIR/$tdir
14820
14821         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
14822                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
14823         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
14824                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
14825
14826         umount_client $MOUNT || error "umount failed"
14827         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
14828         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
14829         mount_client $MOUNT || error "failed to mount client"
14830
14831         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
14832         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
14833 }
14834 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
14835
14836 test_241_bio() {
14837         for LOOP in $(seq $1); do
14838                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 2>/dev/null
14839                 cancel_lru_locks $OSC || true
14840         done
14841 }
14842
14843 test_241_dio() {
14844         for LOOP in $(seq $1); do
14845                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 \
14846                                                 iflag=direct 2>/dev/null
14847         done
14848 }
14849
14850 test_241a() { # was test_241
14851         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
14852         ls -la $DIR/$tfile
14853         cancel_lru_locks $OSC
14854         test_241_bio 1000 &
14855         PID=$!
14856         test_241_dio 1000
14857         wait $PID
14858 }
14859 run_test 241a "bio vs dio"
14860
14861 test_241b() {
14862         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
14863         ls -la $DIR/$tfile
14864         test_241_dio 1000 &
14865         PID=$!
14866         test_241_dio 1000
14867         wait $PID
14868 }
14869 run_test 241b "dio vs dio"
14870
14871 test_242() {
14872         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14873         mkdir -p $DIR/$tdir
14874         touch $DIR/$tdir/$tfile
14875
14876         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
14877         do_facet mds1 lctl set_param fail_loc=0x105
14878         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
14879
14880         do_facet mds1 lctl set_param fail_loc=0
14881         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
14882 }
14883 run_test 242 "mdt_readpage failure should not cause directory unreadable"
14884
14885 test_243()
14886 {
14887         test_mkdir $DIR/$tdir
14888         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
14889 }
14890 run_test 243 "various group lock tests"
14891
14892 test_244()
14893 {
14894         test_mkdir $DIR/$tdir
14895         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
14896         sendfile_grouplock $DIR/$tdir/$tfile || \
14897                 error "sendfile+grouplock failed"
14898         rm -rf $DIR/$tdir
14899 }
14900 run_test 244 "sendfile with group lock tests"
14901
14902 test_245() {
14903         local flagname="multi_mod_rpcs"
14904         local connect_data_name="max_mod_rpcs"
14905         local out
14906
14907         # check if multiple modify RPCs flag is set
14908         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
14909                 grep "connect_flags:")
14910         echo "$out"
14911
14912         echo "$out" | grep -qw $flagname
14913         if [ $? -ne 0 ]; then
14914                 echo "connect flag $flagname is not set"
14915                 return
14916         fi
14917
14918         # check if multiple modify RPCs data is set
14919         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
14920         echo "$out"
14921
14922         echo "$out" | grep -qw $connect_data_name ||
14923                 error "import should have connect data $connect_data_name"
14924 }
14925 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
14926
14927 test_246() { # LU-7371
14928         remote_ost_nodsh && skip "remote OST with nodsh" && return
14929         [ $(lustre_version_code ost1) -lt $(version_code 2.7.62) ] &&
14930                 skip "Need OST version >= 2.7.62" && return 0
14931         do_facet ost1 $LCTL set_param fail_val=4095
14932 #define OBD_FAIL_OST_READ_SIZE          0x234
14933         do_facet ost1 $LCTL set_param fail_loc=0x234
14934         $LFS setstripe $DIR/$tfile -i 0 -c 1
14935         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
14936         cancel_lru_locks $FSNAME-OST0000
14937         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
14938 }
14939 run_test 246 "Read file of size 4095 should return right length"
14940
14941 cleanup_247() {
14942         local submount=$1
14943
14944         trap 0
14945         umount_client $submount
14946         rmdir $submount
14947 }
14948
14949 test_247a() {
14950         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
14951                 grep -q subtree ||
14952                 { skip "Fileset feature is not supported"; return; }
14953
14954         local submount=${MOUNT}_$tdir
14955
14956         mkdir $MOUNT/$tdir
14957         mkdir -p $submount || error "mkdir $submount failed"
14958         FILESET="$FILESET/$tdir" mount_client $submount ||
14959                 error "mount $submount failed"
14960         trap "cleanup_247 $submount" EXIT
14961         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
14962         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
14963                 error "read $MOUNT/$tdir/$tfile failed"
14964         cleanup_247 $submount
14965 }
14966 run_test 247a "mount subdir as fileset"
14967
14968 test_247b() {
14969         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
14970                 { skip "Fileset feature is not supported"; return; }
14971
14972         local submount=${MOUNT}_$tdir
14973
14974         rm -rf $MOUNT/$tdir
14975         mkdir -p $submount || error "mkdir $submount failed"
14976         SKIP_FILESET=1
14977         FILESET="$FILESET/$tdir" mount_client $submount &&
14978                 error "mount $submount should fail"
14979         rmdir $submount
14980 }
14981 run_test 247b "mount subdir that dose not exist"
14982
14983 test_247c() {
14984         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
14985                 { skip "Fileset feature is not supported"; return; }
14986
14987         local submount=${MOUNT}_$tdir
14988
14989         mkdir -p $MOUNT/$tdir/dir1
14990         mkdir -p $submount || error "mkdir $submount failed"
14991         trap "cleanup_247 $submount" EXIT
14992         FILESET="$FILESET/$tdir" mount_client $submount ||
14993                 error "mount $submount failed"
14994         local fid=$($LFS path2fid $MOUNT/)
14995         $LFS fid2path $submount $fid && error "fid2path should fail"
14996         cleanup_247 $submount
14997 }
14998 run_test 247c "running fid2path outside root"
14999
15000 test_247d() {
15001         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
15002                 { skip "Fileset feature is not supported"; return; }
15003
15004         local submount=${MOUNT}_$tdir
15005
15006         mkdir -p $MOUNT/$tdir/dir1
15007         mkdir -p $submount || error "mkdir $submount failed"
15008         FILESET="$FILESET/$tdir" mount_client $submount ||
15009                 error "mount $submount failed"
15010         trap "cleanup_247 $submount" EXIT
15011         local fid=$($LFS path2fid $submount/dir1)
15012         $LFS fid2path $submount $fid || error "fid2path should succeed"
15013         cleanup_247 $submount
15014 }
15015 run_test 247d "running fid2path inside root"
15016
15017 # LU-8037
15018 test_247e() {
15019         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
15020                 grep -q subtree ||
15021                 { skip "Fileset feature is not supported"; return; }
15022
15023         local submount=${MOUNT}_$tdir
15024
15025         mkdir $MOUNT/$tdir
15026         mkdir -p $submount || error "mkdir $submount failed"
15027         FILESET="$FILESET/.." mount_client $submount &&
15028                 error "mount $submount should fail"
15029         rmdir $submount
15030 }
15031 run_test 247e "mount .. as fileset"
15032
15033 test_248() {
15034         local fast_read_sav=$($LCTL get_param -n llite.*.fast_read 2>/dev/null)
15035         [ -z "$fast_read_sav" ] && skip "no fast read support" && return
15036
15037         # create a large file for fast read verification
15038         dd if=/dev/zero of=$DIR/$tfile bs=1M count=128 > /dev/null 2>&1
15039
15040         # make sure the file is created correctly
15041         $CHECKSTAT -s $((128*1024*1024)) $DIR/$tfile ||
15042                 { rm -f $DIR/$tfile; skip "file creation error" && return; }
15043
15044         echo "Test 1: verify that fast read is 4 times faster on cache read"
15045
15046         # small read with fast read enabled
15047         $LCTL set_param -n llite.*.fast_read=1
15048         local t_fast=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
15049                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15050                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15051         # small read with fast read disabled
15052         $LCTL set_param -n llite.*.fast_read=0
15053         local t_slow=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
15054                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15055                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15056
15057         # verify that fast read is 4 times faster for cache read
15058         [ $(bc <<< "4 * $t_fast < $t_slow") -eq 1 ] ||
15059                 error_not_in_vm "fast read was not 4 times faster: " \
15060                            "$t_fast vs $t_slow"
15061
15062         echo "Test 2: verify the performance between big and small read"
15063         $LCTL set_param -n llite.*.fast_read=1
15064
15065         # 1k non-cache read
15066         cancel_lru_locks osc
15067         local t_1k=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
15068                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15069                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15070
15071         # 1M non-cache read
15072         cancel_lru_locks osc
15073         local t_1m=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
15074                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15075                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15076
15077         # verify that big IO is not 4 times faster than small IO
15078         [ $(bc <<< "4 * $t_1k >= $t_1m") -eq 1 ] ||
15079                 error_not_in_vm "bigger IO is way too fast: $t_1k vs $t_1m"
15080
15081         $LCTL set_param -n llite.*.fast_read=$fast_read_sav
15082         rm -f $DIR/$tfile
15083 }
15084 run_test 248 "fast read verification"
15085
15086 test_249() { # LU-7890
15087         rm -f $DIR/$tfile
15088         $SETSTRIPE -c 1 $DIR/$tfile
15089
15090         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
15091         skip "Need at least version 2.8.54"
15092
15093         # Offset 2T == 4k * 512M
15094         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 seek=512M ||
15095                 error "dd to 2T offset failed"
15096 }
15097 run_test 249 "Write above 2T file size"
15098
15099 test_250() {
15100         [ "$(facet_fstype ost$(($($GETSTRIPE -i $DIR/$tfile) + 1)))" = "zfs" ] \
15101          && skip "no 16TB file size limit on ZFS" && return
15102
15103         $SETSTRIPE -c 1 $DIR/$tfile
15104         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
15105         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
15106         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
15107         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
15108                 conv=notrunc,fsync && error "append succeeded"
15109         return 0
15110 }
15111 run_test 250 "Write above 16T limit"
15112
15113 test_251() {
15114         $SETSTRIPE -c -1 -S 1048576 $DIR/$tfile
15115
15116         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
15117         #Skip once - writing the first stripe will succeed
15118         $LCTL set_param fail_loc=0xa0001407 fail_val=1
15119         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
15120                 error "short write happened"
15121
15122         $LCTL set_param fail_loc=0xa0001407 fail_val=1
15123         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
15124                 error "short read happened"
15125
15126         rm -f $DIR/$tfile
15127 }
15128 run_test 251 "Handling short read and write correctly"
15129
15130 test_252() {
15131         local tgt
15132         local dev
15133         local out
15134         local uuid
15135         local num
15136         local gen
15137
15138         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15139         remote_ost_nodsh && skip "remote OST with nodsh" && return
15140         if [ "$(facet_fstype ost1)" != "ldiskfs" -o \
15141              "$(facet_fstype mds1)" != "ldiskfs" ]; then
15142                 skip "ldiskfs only test"
15143                 return
15144         fi
15145
15146         # check lr_reader on OST0000
15147         tgt=ost1
15148         dev=$(facet_device $tgt)
15149         out=$(do_facet $tgt $LR_READER $dev)
15150         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
15151         echo "$out"
15152         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
15153         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
15154                 error "Invalid uuid returned by $LR_READER on target $tgt"
15155         echo -e "uuid returned by $LR_READER is '$uuid'\n"
15156
15157         # check lr_reader -c on MDT0000
15158         tgt=mds1
15159         dev=$(facet_device $tgt)
15160         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
15161                 echo "$LR_READER does not support additional options"
15162                 return 0
15163         fi
15164         out=$(do_facet $tgt $LR_READER -c $dev)
15165         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
15166         echo "$out"
15167         num=$(echo "$out" | grep -c "mdtlov")
15168         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
15169                 error "Invalid number of mdtlov clients returned by $LR_READER"
15170         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
15171
15172         # check lr_reader -cr on MDT0000
15173         out=$(do_facet $tgt $LR_READER -cr $dev)
15174         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
15175         echo "$out"
15176         echo "$out" | grep -q "^reply_data:$" ||
15177                 error "$LR_READER should have returned 'reply_data' section"
15178         num=$(echo "$out" | grep -c "client_generation")
15179         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
15180 }
15181 run_test 252 "check lr_reader tool"
15182
15183 test_253_fill_ost() {
15184         local size_mb #how many MB should we write to pass watermark
15185         local lwm=$3  #low watermark
15186         local free_10mb #10% of free space
15187
15188         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
15189         size_mb=$((free_kb / 1024 - lwm))
15190         free_10mb=$((free_kb / 10240))
15191         #If 10% of free space cross low watermark use it
15192         if (( free_10mb > size_mb )); then
15193                 size_mb=$free_10mb
15194         else
15195                 #At least we need to store 1.1 of difference between
15196                 #free space and low watermark
15197                 size_mb=$((size_mb + size_mb / 10))
15198         fi
15199         if (( lwm <= $((free_kb / 1024)) )) || [ ! -f $DIR/$tdir/1 ]; then
15200                 dd if=/dev/zero of=$DIR/$tdir/1 bs=1M count=$size_mb \
15201                          oflag=append conv=notrunc
15202         fi
15203
15204         sleep_maxage
15205
15206         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
15207         echo "OST still has $((free_kb / 1024)) mbytes free"
15208 }
15209
15210 test_253() {
15211         local ostidx=0
15212         local rc=0
15213
15214         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15215         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15216         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
15217
15218         local ost_name=$($LFS osts |
15219                 sed -n 's/^'$ostidx': \(.*\)_UUID .*/\1/p')
15220         # on the mdt's osc
15221         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $ost_name)
15222         do_facet $SINGLEMDS $LCTL get_param -n \
15223                 osp.$mdtosc_proc1.reserved_mb_high ||
15224                 { skip  "remote MDS does not support reserved_mb_high" &&
15225                   return; }
15226
15227         rm -rf $DIR/$tdir
15228         wait_mds_ost_sync
15229         wait_delete_completed
15230         mkdir $DIR/$tdir
15231
15232         local last_wm_h=$(do_facet $SINGLEMDS $LCTL get_param -n \
15233                         osp.$mdtosc_proc1.reserved_mb_high)
15234         local last_wm_l=$(do_facet $SINGLEMDS $LCTL get_param -n \
15235                         osp.$mdtosc_proc1.reserved_mb_low)
15236         echo "prev high watermark $last_wm_h, prev low watermark $last_wm_l"
15237
15238         if ! combined_mgs_mds ; then
15239                 mount_mgs_client
15240         fi
15241         create_pool $FSNAME.$TESTNAME || error "Pool creation failed"
15242         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $ost_name ||
15243                 error "Adding $ost_name to pool failed"
15244
15245         # Wait for client to see a OST at pool
15246         wait_update $HOSTNAME "$LCTL get_param -n
15247                 lov.$FSNAME-*.pools.$TESTNAME | sort -u |
15248                 grep $ost_name" "$ost_name""_UUID" $((TIMEOUT/2)) ||
15249                 error "Client can not see the pool"
15250         $SETSTRIPE $DIR/$tdir -i $ostidx -c 1 -p $FSNAME.$TESTNAME ||
15251                 error "Setstripe failed"
15252
15253         dd if=/dev/zero of=$DIR/$tdir/0 bs=1M count=10
15254         local blocks=$($LFS df $MOUNT | grep $ost_name | awk '{ print $4 }')
15255         echo "OST still has $((blocks/1024)) mbytes free"
15256
15257         local new_lwm=$((blocks/1024-10))
15258         do_facet $SINGLEMDS $LCTL set_param \
15259                         osp.$mdtosc_proc1.reserved_mb_high=$((new_lwm+5))
15260         do_facet $SINGLEMDS $LCTL set_param \
15261                         osp.$mdtosc_proc1.reserved_mb_low=$new_lwm
15262
15263         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
15264
15265         #First enospc could execute orphan deletion so repeat.
15266         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
15267
15268         local oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
15269                         osp.$mdtosc_proc1.prealloc_status)
15270         echo "prealloc_status $oa_status"
15271
15272         dd if=/dev/zero of=$DIR/$tdir/2 bs=1M count=1 &&
15273                 error "File creation should fail"
15274         #object allocation was stopped, but we still able to append files
15275         dd if=/dev/zero of=$DIR/$tdir/1 bs=1M seek=6 count=5 oflag=append ||
15276                 error "Append failed"
15277         rm -f $DIR/$tdir/1 $DIR/$tdir/0 $DIR/$tdir/r*
15278
15279         wait_delete_completed
15280
15281         sleep_maxage
15282
15283         for i in $(seq 10 12); do
15284                 dd if=/dev/zero of=$DIR/$tdir/$i bs=1M count=1 2>/dev/null ||
15285                         error "File creation failed after rm";
15286         done
15287
15288         oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
15289                         osp.$mdtosc_proc1.prealloc_status)
15290         echo "prealloc_status $oa_status"
15291
15292         if (( oa_status != 0 )); then
15293                 error "Object allocation still disable after rm"
15294         fi
15295         do_facet $SINGLEMDS $LCTL set_param \
15296                         osp.$mdtosc_proc1.reserved_mb_high=$last_wm_h
15297         do_facet $SINGLEMDS $LCTL set_param \
15298                         osp.$mdtosc_proc1.reserved_mb_low=$last_wm_l
15299
15300
15301         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $ost_name ||
15302                 error "Remove $ost_name from pool failed"
15303         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
15304                 error "Pool destroy fialed"
15305
15306         if ! combined_mgs_mds ; then
15307                 umount_mgs_client
15308         fi
15309 }
15310 run_test 253 "Check object allocation limit"
15311
15312 test_254() {
15313         local cl_user
15314
15315         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15316         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15317         do_facet mds1 $LCTL get_param -n mdd.$MDT0.changelog_size ||
15318                 { skip "MDS does not support changelog_size" && return; }
15319
15320         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
15321         echo "Registered as changelog user $cl_user"
15322
15323         $LFS changelog_clear $MDT0 $cl_user 0
15324
15325         local size1=$(do_facet mds1 \
15326                       $LCTL get_param -n mdd.$MDT0.changelog_size)
15327         echo "Changelog size $size1"
15328
15329         rm -rf $DIR/$tdir
15330         $LFS mkdir -i 0 $DIR/$tdir
15331         # change something
15332         mkdir -p $DIR/$tdir/pics/2008/zachy
15333         touch $DIR/$tdir/pics/2008/zachy/timestamp
15334         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
15335         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
15336         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
15337         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
15338         rm $DIR/$tdir/pics/desktop.jpg
15339
15340         local size2=$(do_facet mds1 \
15341                       $LCTL get_param -n mdd.$MDT0.changelog_size)
15342         echo "Changelog size after work $size2"
15343
15344         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
15345
15346         if (( size2 <= size1 )); then
15347                 error "Changelog size after work should be greater than original"
15348         fi
15349         return 0
15350 }
15351 run_test 254 "Check changelog size"
15352
15353 ladvise_no_type()
15354 {
15355         local type=$1
15356         local file=$2
15357
15358         lfs ladvise -a invalid $file 2>&1 | grep "Valid types" |
15359                 awk -F: '{print $2}' | grep $type > /dev/null
15360         if [ $? -ne 0 ]; then
15361                 return 0
15362         fi
15363         return 1
15364 }
15365
15366 ladvise_no_ioctl()
15367 {
15368         local file=$1
15369
15370         lfs ladvise -a willread $file > /dev/null 2>&1
15371         if [ $? -eq 0 ]; then
15372                 return 1
15373         fi
15374
15375         lfs ladvise -a willread $file 2>&1 |
15376                 grep "Inappropriate ioctl for device" > /dev/null
15377         if [ $? -eq 0 ]; then
15378                 return 0
15379         fi
15380         return 1
15381 }
15382
15383 percent() {
15384         bc <<<"scale=2; ($1 - $2) * 100 / $2"
15385 }
15386
15387 # run a random read IO workload
15388 # usage: random_read_iops <filename> <filesize> <iosize>
15389 random_read_iops() {
15390         local file=$1
15391         local fsize=$2
15392         local iosize=${3:-4096}
15393
15394         $READS -f $file -s $fsize -b $iosize -n $((fsize / iosize)) -t 60 |
15395                 sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##'
15396 }
15397
15398 drop_file_oss_cache() {
15399         local file="$1"
15400         local nodes="$2"
15401
15402         $LFS ladvise -a dontneed $file 2>/dev/null ||
15403                 do_nodes $nodes "echo 3 > /proc/sys/vm/drop_caches"
15404 }
15405
15406 ladvise_willread_performance()
15407 {
15408         local repeat=10
15409         local average_origin=0
15410         local average_cache=0
15411         local average_ladvise=0
15412
15413         for ((i = 1; i <= $repeat; i++)); do
15414                 echo "Iter $i/$repeat: reading without willread hint"
15415                 cancel_lru_locks osc
15416                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
15417                 local speed_origin=$(random_read_iops $DIR/$tfile $size)
15418                 echo "Iter $i/$repeat: uncached speed: $speed_origin"
15419                 average_origin=$(bc <<<"$average_origin + $speed_origin")
15420
15421                 cancel_lru_locks osc
15422                 local speed_cache=$(random_read_iops $DIR/$tfile $size)
15423                 echo "Iter $i/$repeat: OSS cache speed: $speed_cache"
15424                 average_cache=$(bc <<<"$average_cache + $speed_cache")
15425
15426                 cancel_lru_locks osc
15427                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
15428                 $LFS ladvise -a willread $DIR/$tfile || error "ladvise failed"
15429                 local speed_ladvise=$(random_read_iops $DIR/$tfile $size)
15430                 echo "Iter $i/$repeat: ladvise speed: $speed_ladvise"
15431                 average_ladvise=$(bc <<<"$average_ladvise + $speed_ladvise")
15432         done
15433         average_origin=$(bc <<<"scale=2; $average_origin / $repeat")
15434         average_cache=$(bc <<<"scale=2; $average_cache / $repeat")
15435         average_ladvise=$(bc <<<"scale=2; $average_ladvise / $repeat")
15436
15437         speedup_cache=$(percent $average_cache $average_origin)
15438         speedup_ladvise=$(percent $average_ladvise $average_origin)
15439
15440         echo "Average uncached read: $average_origin"
15441         echo "Average speedup with OSS cached read: " \
15442                 "$average_cache = +$speedup_cache%"
15443         echo "Average speedup with ladvise willread: " \
15444                 "$average_ladvise = +$speedup_ladvise%"
15445
15446         local lowest_speedup=20
15447         if [ ${average_cache%.*} -lt $lowest_speedup ]; then
15448                 echo "Speedup with OSS cached read less than $lowest_speedup%," \
15449                         "got $average_cache%. Skipping ladvise willread check."
15450                 return 0
15451         fi
15452
15453         # the test won't work on ZFS until it supports 'ladvise dontneed', but
15454         # it is still good to run until then to exercise 'ladvise willread'
15455         ! $LFS ladvise -a dontneed $DIR/$tfile &&
15456                 [ "$(facet_fstype ost1)" = "zfs" ] &&
15457                 echo "osd-zfs does not support dontneed or drop_caches" &&
15458                 return 0
15459
15460         lowest_speedup=$(bc <<<"scale=2; $average_cache / 2")
15461         [ ${average_ladvise%.*} -gt $lowest_speedup ] ||
15462                 error_not_in_vm "Speedup with willread is less than " \
15463                         "$lowest_speedup%, got $average_ladvise%"
15464 }
15465
15466 test_255a() {
15467         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
15468                 skip "lustre < 2.8.54 does not support ladvise " && return
15469         remote_ost_nodsh && skip "remote OST with nodsh" && return
15470
15471         lfs setstripe -c -1 -i 0 $DIR/$tfile || error "$tfile failed"
15472
15473         ladvise_no_type willread $DIR/$tfile &&
15474                 skip "willread ladvise is not supported" && return
15475
15476         ladvise_no_ioctl $DIR/$tfile &&
15477                 skip "ladvise ioctl is not supported" && return
15478
15479         local size_mb=100
15480         local size=$((size_mb * 1048576))
15481         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
15482                 error "dd to $DIR/$tfile failed"
15483
15484         lfs ladvise -a willread $DIR/$tfile ||
15485                 error "Ladvise failed with no range argument"
15486
15487         lfs ladvise -a willread -s 0 $DIR/$tfile ||
15488                 error "Ladvise failed with no -l or -e argument"
15489
15490         lfs ladvise -a willread -e 1 $DIR/$tfile ||
15491                 error "Ladvise failed with only -e argument"
15492
15493         lfs ladvise -a willread -l 1 $DIR/$tfile ||
15494                 error "Ladvise failed with only -l argument"
15495
15496         lfs ladvise -a willread -s 2 -e 1 $DIR/$tfile &&
15497                 error "End offset should not be smaller than start offset"
15498
15499         lfs ladvise -a willread -s 2 -e 2 $DIR/$tfile &&
15500                 error "End offset should not be equal to start offset"
15501
15502         lfs ladvise -a willread -s $size -l 1 $DIR/$tfile ||
15503                 error "Ladvise failed with overflowing -s argument"
15504
15505         lfs ladvise -a willread -s 1 -e $((size + 1)) $DIR/$tfile ||
15506                 error "Ladvise failed with overflowing -e argument"
15507
15508         lfs ladvise -a willread -s 1 -l $size $DIR/$tfile ||
15509                 error "Ladvise failed with overflowing -l argument"
15510
15511         lfs ladvise -a willread -l 1 -e 2 $DIR/$tfile &&
15512                 error "Ladvise succeeded with conflicting -l and -e arguments"
15513
15514         echo "Synchronous ladvise should wait"
15515         local delay=4
15516 #define OBD_FAIL_OST_LADVISE_PAUSE       0x237
15517         do_nodes $(comma_list $(osts_nodes)) \
15518                 $LCTL set_param fail_val=$delay fail_loc=0x237
15519
15520         local start_ts=$SECONDS
15521         lfs ladvise -a willread $DIR/$tfile ||
15522                 error "Ladvise failed with no range argument"
15523         local end_ts=$SECONDS
15524         local inteval_ts=$((end_ts - start_ts))
15525
15526         if [ $inteval_ts -lt $(($delay - 1)) ]; then
15527                 error "Synchronous advice didn't wait reply"
15528         fi
15529
15530         echo "Asynchronous ladvise shouldn't wait"
15531         local start_ts=$SECONDS
15532         lfs ladvise -a willread -b $DIR/$tfile ||
15533                 error "Ladvise failed with no range argument"
15534         local end_ts=$SECONDS
15535         local inteval_ts=$((end_ts - start_ts))
15536
15537         if [ $inteval_ts -gt $(($delay / 2)) ]; then
15538                 error "Asynchronous advice blocked"
15539         fi
15540
15541         do_nodes $(comma_list $(osts_nodes)) $LCTL set_param fail_loc=0
15542         ladvise_willread_performance
15543 }
15544 run_test 255a "check 'lfs ladvise -a willread'"
15545
15546 facet_meminfo() {
15547         local facet=$1
15548         local info=$2
15549
15550         do_facet $facet "cat /proc/meminfo | grep ^${info}:" | awk '{print $2}'
15551 }
15552
15553 test_255b() {
15554         remote_ost_nodsh && skip "remote OST with nodsh" && return
15555
15556         lfs setstripe -c 1 -i 0 $DIR/$tfile
15557
15558         ladvise_no_type dontneed $DIR/$tfile &&
15559                 skip "dontneed ladvise is not supported" && return
15560
15561         ladvise_no_ioctl $DIR/$tfile &&
15562                 skip "ladvise ioctl is not supported" && return
15563
15564         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
15565                 skip "lustre < 2.8.54 does not support ladvise" && return
15566
15567         ! $LFS ladvise -a dontneed $DIR/$tfile &&
15568                 [ "$(facet_fstype ost1)" = "zfs" ] &&
15569                 skip "zfs-osd does not support 'ladvise dontneed'" && return
15570
15571         local size_mb=100
15572         local size=$((size_mb * 1048576))
15573         # In order to prevent disturbance of other processes, only check 3/4
15574         # of the memory usage
15575         local kibibytes=$((size_mb * 1024 * 3 / 4))
15576
15577         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
15578                 error "dd to $DIR/$tfile failed"
15579
15580         local total=$(facet_meminfo ost1 MemTotal)
15581         echo "Total memory: $total KiB"
15582
15583         do_facet ost1 "sync && echo 3 > /proc/sys/vm/drop_caches"
15584         local before_read=$(facet_meminfo ost1 Cached)
15585         echo "Cache used before read: $before_read KiB"
15586
15587         lfs ladvise -a willread $DIR/$tfile ||
15588                 error "Ladvise willread failed"
15589         local after_read=$(facet_meminfo ost1 Cached)
15590         echo "Cache used after read: $after_read KiB"
15591
15592         lfs ladvise -a dontneed $DIR/$tfile ||
15593                 error "Ladvise dontneed again failed"
15594         local no_read=$(facet_meminfo ost1 Cached)
15595         echo "Cache used after dontneed ladvise: $no_read KiB"
15596
15597         if [ $total -lt $((before_read + kibibytes)) ]; then
15598                 echo "Memory is too small, abort checking"
15599                 return 0
15600         fi
15601
15602         if [ $((before_read + kibibytes)) -gt $after_read ]; then
15603                 error "Ladvise willread should use more memory" \
15604                         "than $kibibytes KiB"
15605         fi
15606
15607         if [ $((no_read + kibibytes)) -gt $after_read ]; then
15608                 error "Ladvise dontneed should release more memory" \
15609                         "than $kibibytes KiB"
15610         fi
15611 }
15612 run_test 255b "check 'lfs ladvise -a dontneed'"
15613
15614 test_255c() {
15615         local count
15616         local new_count
15617         local difference
15618         local i
15619         local rc
15620
15621         [ $(lustre_version_code ost1) -lt $(version_code 2.10.50) ] &&
15622                 skip "lustre < 2.10.53 does not support lockahead" && return
15623
15624         test_mkdir -p $DIR/$tdir
15625         $SETSTRIPE -i 0 $DIR/$tdir
15626
15627         #test 10 returns only success/failure
15628         i=10
15629         lockahead_test -d $DIR/$tdir -t $i
15630         rc=$?
15631         if [ $rc -eq 255 ]; then
15632                 error "Ladvise test${i} failed, ${rc}"
15633         fi
15634
15635         #test 11 counts lock enqueue requests, all others count new locks
15636         i=11
15637         count=$(do_facet ost1 \
15638                 $LCTL get_param -n ost.OSS.ost.stats)
15639         count=$(echo "$count" | grep ldlm_extent_enqueue | awk '{ print $2 }')
15640
15641         lockahead_test -d $DIR/$tdir -t $i
15642         rc=$?
15643         if [ $rc -eq 255 ]; then
15644                 error "Ladvise test${i} failed, ${rc}"
15645         fi
15646
15647         new_count=$(do_facet ost1 \
15648                 $LCTL get_param -n ost.OSS.ost.stats)
15649         new_count=$(echo "$new_count" | grep ldlm_extent_enqueue | \
15650                    awk '{ print $2 }')
15651
15652         difference="$((new_count - count))"
15653         if [ $difference -ne $rc ]; then
15654                 error "Ladvise test${i}, bad enqueue count, returned " \
15655                       "${rc}, actual ${difference}"
15656         fi
15657
15658         for i in $(seq 12 21); do
15659                 # If we do not do this, we run the risk of having too many
15660                 # locks and starting lock cancellation while we are checking
15661                 # lock counts.
15662                 cancel_lru_locks osc
15663
15664                 count=$($LCTL get_param -n \
15665                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
15666
15667                 lockahead_test -d $DIR/$tdir -t $i
15668                 rc=$?
15669                 if [ $rc -eq 255 ]; then
15670                         error "Ladvise test ${i} failed, ${rc}"
15671                 fi
15672
15673                 new_count=$($LCTL get_param -n \
15674                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
15675                 difference="$((new_count - count))"
15676
15677                 # Test 15 output is divided by 100 to map down to valid return
15678                 if [ $i -eq 15 ]; then
15679                         rc="$((rc * 100))"
15680                 fi
15681
15682                 if [ $difference -ne $rc ]; then
15683                         error "Ladvise test ${i}, bad lock count, returned " \
15684                               "${rc}, actual ${difference}"
15685                 fi
15686         done
15687
15688         #test 22 returns only success/failure
15689         i=22
15690         lockahead_test -d $DIR/$tdir -t $i
15691         rc=$?
15692         if [ $rc -eq 255 ]; then
15693                 error "Ladvise test${i} failed, ${rc}"
15694         fi
15695
15696 }
15697 run_test 255c "suite of ladvise lockahead tests"
15698
15699 test_256() {
15700         local cl_user
15701         local cat_sl
15702         local mdt_dev
15703
15704         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15705         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15706         [ "$(facet_fstype mds1)" != "ldiskfs" ] &&
15707                 skip "ldiskfs only test" && return
15708
15709         mdt_dev=$(mdsdevname 1)
15710         echo $mdt_dev
15711         cl_user=$(do_facet mds1 \
15712         "$LCTL get_param -n mdd.$MDT0.changelog_users | grep cl")
15713         if [[ -n $cl_user ]]; then
15714                 skip "active changelog user"
15715                 return
15716         fi
15717
15718         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
15719         echo "Registered as changelog user $cl_user"
15720
15721         rm -rf $DIR/$tdir
15722         mkdir -p $DIR/$tdir
15723
15724         $LFS changelog_clear $MDT0 $cl_user 0
15725
15726         # change something
15727         touch $DIR/$tdir/{1..10}
15728
15729         # stop the MDT
15730         stop mds1 || error "Fail to stop MDT."
15731
15732         # remount the MDT
15733         start mds1 $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT."
15734
15735         #after mount new plainllog is used
15736         touch $DIR/$tdir/{11..19}
15737         do_facet mds1 sync
15738         local TEMP256FILE=$(mktemp -u TEMP256XXXXXX)
15739         cat_sl=$(do_facet mds1 \
15740         "$DEBUGFS -R \\\"dump changelog_catalog $TEMP256FILE\\\" $mdt_dev; \
15741          llog_reader $TEMP256FILE | grep \\\"type=1064553b\\\" | wc -l")
15742         do_facet mds1 rm $TEMP256FILE
15743
15744         if (( cat_sl != 2 )); then
15745                 do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
15746                 error "Changelog catalog has wrong number of slots $cat_sl"
15747         fi
15748
15749         $LFS changelog_clear $MDT0 $cl_user 0
15750
15751         do_facet mds1 sync
15752         TEMP256FILE=$(mktemp -u TEMP256XXXXXX)
15753         cat_sl=$(do_facet mds1 \
15754         "$DEBUGFS -R \\\"dump changelog_catalog $TEMP256FILE\\\" $mdt_dev; \
15755          llog_reader $TEMP256FILE | grep \\\"type=1064553b\\\" | wc -l")
15756         do_facet mds1 rm $TEMP256FILE
15757
15758         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
15759
15760         if (( cat_sl == 2 )); then
15761                 error "Empty plain llog was not deleted from changelog catalog"
15762         fi
15763         if (( cat_sl != 1 )); then
15764                 error "Active plain llog shouldn\`t be deleted from catalog"
15765         fi
15766 }
15767 run_test 256 "Check llog delete for empty and not full state"
15768
15769 test_257() {
15770         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15771         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
15772                 skip "Need MDS version at least 2.8.55" && return
15773
15774         test_mkdir $DIR/$tdir
15775
15776         setfattr -n trusted.name1 -v value1 $DIR/$tdir ||
15777                 error "setfattr -n trusted.name1=value1 $DIR/$tdir failed"
15778         stat $DIR/$tdir
15779
15780 #define OBD_FAIL_MDS_XATTR_REP                  0x161
15781         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
15782         local facet=mds$((mdtidx + 1))
15783         set_nodes_failloc $(facet_active_host $facet) 0x80000161
15784         getfattr -n trusted.name1 $DIR/$tdir 2> /dev/null
15785
15786         stop $facet || error "stop MDS failed"
15787         start $facet $(mdsdevname $((mdtidx + 1))) $MDS_MOUNT_OPTS ||
15788                 error "start MDS fail"
15789 }
15790 run_test 257 "xattr locks are not lost"
15791
15792 # Verify we take the i_mutex when security requires it
15793 test_258a() {
15794 #define OBD_FAIL_IMUTEX_SEC 0x141c
15795         $LCTL set_param fail_loc=0x141c
15796         touch $DIR/$tfile
15797         chmod u+s $DIR/$tfile
15798         chmod a+rwx $DIR/$tfile
15799         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
15800         RC=$?
15801         if [ $RC -ne 0 ]; then
15802                 error "error, failed to take i_mutex, rc=$?"
15803         fi
15804         rm -f $DIR/$tfile
15805 }
15806 run_test 258a
15807
15808 # Verify we do NOT take the i_mutex in the normal case
15809 test_258b() {
15810 #define OBD_FAIL_IMUTEX_NOSEC 0x141d
15811         $LCTL set_param fail_loc=0x141d
15812         touch $DIR/$tfile
15813         chmod a+rwx $DIR
15814         chmod a+rw $DIR/$tfile
15815         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
15816         RC=$?
15817         if [ $RC -ne 0 ]; then
15818                 error "error, took i_mutex unnecessarily, rc=$?"
15819         fi
15820         rm -f $DIR/$tfile
15821
15822 }
15823 run_test 258b "verify i_mutex security behavior"
15824
15825 test_260() {
15826 #define OBD_FAIL_MDC_CLOSE               0x806
15827         $LCTL set_param fail_loc=0x80000806
15828         touch $DIR/$tfile
15829
15830 }
15831 run_test 260 "Check mdc_close fail"
15832
15833 ### Data-on-MDT sanity tests ###
15834 test_270a() {
15835
15836         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
15837                 skip "Need MDS version at least 2.10.55" && return
15838
15839         # create DoM file
15840         local dom=$DIR/$tdir/dom_file
15841         local tmp=$DIR/$tdir/tmp_file
15842
15843         mkdir -p $DIR/$tdir
15844
15845         # basic checks for DoM component creation
15846         $LFS setstripe -E 1024K -E 1024K -L mdt $dom 2>/dev/null &&
15847                 error "Can set MDT layout to non-first entry"
15848
15849         $LFS setstripe -E 1024K -L mdt -E 1024K -L mdt $dom 2>/dev/null &&
15850                 error "Can define multiple entries as MDT layout"
15851
15852         $LFS setstripe -E 1M -L mdt $dom ||
15853                 error "Can't create DoM layout"
15854
15855         [ $($LFS getstripe -L $dom) == "mdt" ] || error "bad pattern"
15856         [ $($LFS getstripe -c $dom) == 0 ] || error "bad stripe count"
15857         [ $($LFS getstripe -S $dom) == 1048576 ] || error "bad stripe size"
15858
15859         local mdtidx=$($GETSTRIPE -M $dom)
15860         local mdtname=MDT$(printf %04x $mdtidx)
15861         local facet=mds$((mdtidx + 1))
15862         local space_check=1
15863
15864         # Skip free space checks with ZFS
15865         if [ "$(facet_fstype $facet)" == "zfs" ]; then
15866                 space_check=0
15867         fi
15868
15869         # write
15870         sync
15871         local mdtfree1=$(do_facet $facet \
15872                 lctl get_param -n osd*.*$mdtname.kbytesfree)
15873         dd if=/dev/urandom of=$tmp bs=1024 count=100
15874         # check also direct IO along write
15875         dd if=$tmp of=$dom bs=102400 count=1 oflag=direct
15876         sync
15877         cmp $tmp $dom || error "file data is different"
15878         [ $(stat -c%s $dom) == 102400 ] || error "bad size after write"
15879         if [ $space_check == 1 ]; then
15880                 local mdtfree2=$(do_facet $facet \
15881                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
15882                 [ $(($mdtfree1 - $mdtfree2)) -ge 102 ] ||
15883                         error "MDT free space is wrong after write"
15884         fi
15885
15886         # truncate
15887         $TRUNCATE $dom 10000
15888         [ $(stat -c%s $dom) == 10000 ] || error "bad size after truncate"
15889         if [ $space_check == 1 ]; then
15890                 mdtfree1=$(do_facet $facet \
15891                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
15892                 [ $(($mdtfree1 - $mdtfree2)) -ge 92 ] ||
15893                         error "MDT free space is wrong after truncate"
15894         fi
15895
15896         # append
15897         cat $tmp >> $dom
15898         sync
15899         [ $(stat -c%s $dom) == 112400 ] || error "bad size after append"
15900         if [ $space_check == 1 ]; then
15901                 mdtfree2=$(do_facet $facet \
15902                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
15903                 [ $(($mdtfree1 - $mdtfree2)) -ge 102 ] ||
15904                         error "MDT free space is wrong after append"
15905         fi
15906
15907         # delete
15908         rm $dom
15909         if [ $space_check == 1 ]; then
15910                 mdtfree1=$(do_facet $facet \
15911                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
15912                 [ $(($mdtfree1 - $mdtfree2)) -ge 112 ] ||
15913                         error "MDT free space is wrong after removal"
15914         fi
15915
15916         # combined striping
15917         $LFS setstripe -E 1024K -L mdt -E EOF $dom ||
15918                 error "Can't create DoM + OST striping"
15919
15920         dd if=/dev/urandom of=$tmp bs=1024 count=2000
15921         # check also direct IO along write
15922         dd if=$tmp of=$dom bs=102400 count=20 oflag=direct
15923         sync
15924         cmp $tmp $dom || error "file data is different"
15925         [ $(stat -c%s $dom) == 2048000 ] || error "bad size after write"
15926         rm $dom
15927         rm $tmp
15928
15929         return 0
15930 }
15931 run_test 270a "DoM: basic functionality tests"
15932
15933 test_270b() {
15934         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
15935                 skip "Need MDS version at least 2.10.55" && return
15936
15937         local dom=$DIR/$tdir/dom_file
15938         local max_size=1048576
15939
15940         mkdir -p $DIR/$tdir
15941         $LFS setstripe -E $max_size -L mdt $dom
15942
15943         # truncate over the limit
15944         $TRUNCATE $dom $(($max_size + 1)) &&
15945                 error "successful truncate over the maximum size"
15946         # write over the limit
15947         dd if=/dev/zero of=$dom bs=$max_size seek=1 count=1 &&
15948                 error "successful write over the maximum size"
15949         # append over the limit
15950         dd if=/dev/zero of=$dom bs=$(($max_size - 3)) count=1
15951         echo "12345" >> $dom && error "successful append over the maximum size"
15952         rm $dom
15953
15954         return 0
15955 }
15956 run_test 270b "DoM: maximum size overflow checks for DoM-only file"
15957
15958 test_270c() {
15959         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
15960                 skip "Need MDS version at least 2.10.55" && return
15961
15962         mkdir -p $DIR/$tdir
15963         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
15964
15965         # check files inherit DoM EA
15966         touch $DIR/$tdir/first
15967         [ $($GETSTRIPE -L $DIR/$tdir/first) == "mdt" ] ||
15968                 error "bad pattern"
15969         [ $($LFS getstripe -c $DIR/$tdir/first) == 0 ] ||
15970                 error "bad stripe count"
15971         [ $($LFS getstripe -S $DIR/$tdir/first) == 1048576 ] ||
15972                 error "bad stripe size"
15973
15974         # check directory inherits DoM EA and uses it as default
15975         mkdir $DIR/$tdir/subdir
15976         touch $DIR/$tdir/subdir/second
15977         [ $($LFS getstripe -L $DIR/$tdir/subdir/second) == "mdt" ] ||
15978                 error "bad pattern in sub-directory"
15979         [ $($LFS getstripe -c $DIR/$tdir/subdir/second) == 0 ] ||
15980                 error "bad stripe count in sub-directory"
15981         [ $($LFS getstripe -S $DIR/$tdir/subdir/second) == 1048576 ] ||
15982                 error "bad stripe size in sub-directory"
15983         return 0
15984 }
15985 run_test 270c "DoM: DoM EA inheritance tests"
15986
15987 test_270d() {
15988         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
15989                 skip "Need MDS version at least 2.10.55" && return
15990
15991         mkdir -p $DIR/$tdir
15992         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
15993
15994         # inherit default DoM striping
15995         mkdir $DIR/$tdir/subdir
15996         touch $DIR/$tdir/subdir/f1
15997
15998         # change default directory striping
15999         $LFS setstripe -c 1 $DIR/$tdir/subdir
16000         touch $DIR/$tdir/subdir/f2
16001         [ $($LFS getstripe -c $DIR/$tdir/subdir/f2) == 1 ] ||
16002                 error "wrong default striping in file 2"
16003         [ $($LFS getstripe -L $DIR/$tdir/subdir/f2) == "raid0" ] ||
16004                 error "bad pattern in file 2"
16005         return 0
16006 }
16007 run_test 270d "DoM: change striping from DoM to RAID0"
16008
16009 test_270e() {
16010         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16011                 skip "Need MDS version at least 2.10.55" && return
16012
16013         mkdir -p $DIR/$tdir/dom
16014         mkdir -p $DIR/$tdir/norm
16015         DOMFILES=20
16016         NORMFILES=10
16017         $LFS setstripe -E 1M -L mdt $DIR/$tdir/dom
16018         $LFS setstripe -i 0 -S 2M $DIR/$tdir/norm
16019
16020         createmany -o $DIR/$tdir/dom/dom- $DOMFILES
16021         createmany -o $DIR/$tdir/norm/norm- $NORMFILES
16022
16023         # find DoM files by layout
16024         NUM=$($LFS find -L mdt -type f $DIR/$tdir 2>/dev/null | wc -l)
16025         [ $NUM -eq  $DOMFILES ] ||
16026                 error "lfs find -L: found $NUM, expected $DOMFILES"
16027         echo "Test 1: lfs find 20 DOM files by layout: OK"
16028
16029         # there should be 1 dir with default DOM striping
16030         NUM=$($LFS find -L mdt -type d $DIR/$tdir 2>/dev/null | wc -l)
16031         [ $NUM -eq  1 ] ||
16032                 error "lfs find -L: found $NUM, expected 1 dir"
16033         echo "Test 2: lfs find 1 DOM dir by layout: OK"
16034
16035         # find DoM files by stripe size
16036         NUM=$($LFS find -S -1200K -type f $DIR/$tdir 2>/dev/null | wc -l)
16037         [ $NUM -eq  $DOMFILES ] ||
16038                 error "lfs find -S: found $NUM, expected $DOMFILES"
16039         echo "Test 4: lfs find 20 DOM files by stripe size: OK"
16040
16041         # find files by stripe offset except DoM files
16042         NUM=$($LFS find -i 0 -type f $DIR/$tdir 2>/dev/null | wc -l)
16043         [ $NUM -eq  $NORMFILES ] ||
16044                 error "lfs find -i: found $NUM, expected $NORMFILES"
16045         echo "Test 5: lfs find no DOM files by stripe index: OK"
16046         return 0
16047 }
16048 run_test 270e "DoM: lfs find with DoM files test"
16049
16050 test_270f() {
16051         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16052                 skip "Need MDS version at least 2.10.55" && return
16053
16054         local mdtname=${FSNAME}-MDT0000-mdtlov
16055         local dom=$DIR/$tdir/dom_file
16056         local dom_limit_saved=$(do_facet mds1 $LCTL get_param -n \
16057                                                 lod.$mdtname.dom_stripesize)
16058         local dom_limit=131072
16059
16060         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=$dom_limit
16061         local dom_current=$(do_facet mds1 $LCTL get_param -n \
16062                                                 lod.$mdtname.dom_stripesize)
16063         [ ${dom_limit} -eq ${dom_current} ] ||
16064                 error "Cannot change per-MDT DoM stripe limit to $dom_limit"
16065
16066         $LFS mkdir -i 0 -c 1 $DIR/$tdir
16067         $LFS setstripe -d $DIR/$tdir
16068         $LFS setstripe -E $dom_limit -L mdt $DIR/$tdir ||
16069                 error "Can't set directory default striping"
16070
16071         # exceed maximum stripe size
16072         $LFS setstripe -E $(($dom_limit * 2)) -L mdt $dom &&
16073                 error "Able to create DoM component size more than LOD limit"
16074
16075         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=0
16076         dom_current=$(do_facet mds1 $LCTL get_param -n \
16077                                                 lod.$mdtname.dom_stripesize)
16078         [ 0 -eq ${dom_current} ] ||
16079                 error "Can't set zero DoM stripe limit"
16080
16081         # too low values to be aligned with smallest stripe size 64K
16082         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=30000
16083         dom_current=$(do_facet mds1 $LCTL get_param -n \
16084                                                 lod.$mdtname.dom_stripesize)
16085         [ 30000 -eq ${dom_current} ] &&
16086                 error "Can set too small DoM stripe limit"
16087
16088         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=2147483648
16089         dom_current=$(do_facet mds1 $LCTL get_param -n \
16090                                                 lod.$mdtname.dom_stripesize)
16091         echo $dom_current
16092         [ 2147483648 -eq ${dom_current} ] &&
16093                 error "Can set too large DoM stripe limit"
16094
16095         do_facet mds1 $LCTL set_param -n \
16096                                 lod.$mdtname.dom_stripesize=$((dom_limit * 2))
16097         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
16098                 error "Can't create DoM component size after limit change"
16099         do_facet mds1 $LCTL set_param -n \
16100                                 lod.$mdtname.dom_stripesize=$((dom_limit / 2))
16101         $LFS setstripe -E $dom_limit -L mdt ${dom}_big &&
16102                 error "Can create big DoM component after limit decrease"
16103         touch ${dom}_def ||
16104                 error "Can't create file with old default layout"
16105
16106         do_facet mds1 $LCTL set_param -n lod.*.dom_stripesize=$dom_limit_saved
16107         return 0
16108 }
16109 run_test 270f "DoM: maximum DoM stripe size checks"
16110
16111 test_271a() {
16112         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16113                 skip "Need MDS version at least 2.10.55" && return
16114
16115         local dom=$DIR/$tdir/dom
16116
16117         mkdir -p $DIR/$tdir
16118
16119         $LFS setstripe -E 1024K -L mdt $dom
16120
16121         lctl set_param -n mdc.*.stats=clear
16122         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
16123         cat $dom > /dev/null
16124         local reads=$(lctl get_param -n mdc.*.stats |
16125                         awk '/ost_read/ {print $2}')
16126         [ -z $reads ] || error "Unexpected $reads READ RPCs"
16127         ls $dom
16128         rm -f $dom
16129 }
16130 run_test 271a "DoM: data is cached for read after write"
16131
16132 test_271b() {
16133         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16134                 skip "Need MDS version at least 2.10.55" && return
16135
16136         local dom=$DIR/$tdir/dom
16137
16138         mkdir -p $DIR/$tdir
16139
16140         $LFS setstripe -E 1024K -L mdt -E EOF $dom
16141
16142         lctl set_param -n mdc.*.stats=clear
16143         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
16144         cancel_lru_locks mdc
16145         $CHECKSTAT -t file -s 4096 $dom || error "stat #1 fails"
16146         # second stat to check size is cached on client
16147         $CHECKSTAT -t file -s 4096 $dom || error "stat #2 fails"
16148         local gls=$(lctl get_param -n mdc.*.stats |
16149                         awk '/ldlm_glimpse/ {print $2}')
16150         [ -z $gls ] || error "Unexpected $gls glimpse RPCs"
16151         rm -f $dom
16152 }
16153 run_test 271b "DoM: no glimpse RPC for stat (DoM only file)"
16154
16155 test_271ba() {
16156         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16157                 skip "Need MDS version at least 2.10.55" && return
16158
16159         local dom=$DIR/$tdir/dom
16160
16161         mkdir -p $DIR/$tdir
16162
16163         $LFS setstripe -E 1024K -L mdt -E EOF $dom
16164
16165         lctl set_param -n mdc.*.stats=clear
16166         lctl set_param -n osc.*.stats=clear
16167         dd if=/dev/zero of=$dom bs=2048K count=1 || return 1
16168         cancel_lru_locks mdc
16169         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
16170         # second stat to check size is cached on client
16171         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
16172         local gls=$(lctl get_param -n mdc.*.stats |
16173                         awk '/ldlm_glimpse/ {print $2}')
16174         [ -z $gls ] || error "Unexpected $gls glimpse RPCs"
16175         local gls=$(lctl get_param -n osc.*.stats |
16176                         awk '/ldlm_glimpse/ {print $2}')
16177         [ -z $gls ] || error "Unexpected $gls OSC glimpse RPCs"
16178         rm -f $dom
16179 }
16180 run_test 271ba "DoM: no glimpse RPC for stat (combined file)"
16181
16182 test_271c() {
16183         # test to be enabled with lock_convert
16184         skip "skipped until lock convert will be implemented" && return
16185
16186         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16187                 skip "Need MDS version at least 2.10.55" && return
16188
16189         local dom=$DIR/$tdir/dom
16190
16191         mkdir -p $DIR/$tdir
16192
16193         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
16194
16195         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
16196         local facet=mds$((mdtidx + 1))
16197
16198         cancel_lru_locks mdc
16199         do_facet $facet lctl set_param -n mdt.*.dom_lock=0
16200         createmany -o $dom 1000
16201         lctl set_param -n mdc.*.stats=clear
16202         smalliomany -w $dom 1000 200
16203         lctl get_param -n mdc.*.stats
16204         local enq=$(lctl get_param -n mdc.*.stats |
16205                         awk '/ldlm_ibits_enqueue/ {print $2}')
16206         # Each file has 1 open, 1 IO enqueues, total 2000
16207         # but now we have also +1 getxattr for security.capability, total 3000
16208         [ $enq -ge 2000 ] || error "Too few enqueues $enq, expected > 2000"
16209         unlinkmany $dom 1000
16210
16211         cancel_lru_locks mdc
16212         do_facet $facet lctl set_param -n mdt.*.dom_lock=1
16213         createmany -o $dom 1000
16214         lctl set_param -n mdc.*.stats=clear
16215         smalliomany -w $dom 1000 200
16216         lctl get_param -n mdc.*.stats
16217         local enq_2=$(lctl get_param -n mdc.*.stats |
16218                         awk '/ldlm_ibits_enqueue/ {print $2}')
16219         # Expect to see reduced amount of RPCs by 1000 due to single enqueue
16220         # for OPEN and IO lock.
16221         [ $((enq - enq_2)) -ge 1000 ] ||
16222                 error "Too many enqueues $enq_2, expected about $((enq - 1000))"
16223         unlinkmany $dom 1000
16224         return 0
16225 }
16226 run_test 271c "DoM: IO lock at open saves enqueue RPCs"
16227
16228 cleanup_test_300() {
16229         trap 0
16230         umask $SAVE_UMASK
16231 }
16232 test_striped_dir() {
16233         local mdt_index=$1
16234         local stripe_count
16235         local stripe_index
16236
16237         mkdir -p $DIR/$tdir
16238
16239         SAVE_UMASK=$(umask)
16240         trap cleanup_test_300 RETURN EXIT
16241
16242         $LFS setdirstripe -i $mdt_index -c 2 -t all_char -m 755 \
16243                                                 $DIR/$tdir/striped_dir ||
16244                 error "set striped dir error"
16245
16246         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
16247         [ "$mode" = "755" ] || error "expect 755 got $mode"
16248
16249         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
16250                 error "getdirstripe failed"
16251         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
16252         if [ "$stripe_count" != "2" ]; then
16253                 error "1:stripe_count is $stripe_count, expect 2"
16254         fi
16255         stripe_count=$($LFS getdirstripe -T $DIR/$tdir/striped_dir)
16256         if [ "$stripe_count" != "2" ]; then
16257                 error "2:stripe_count is $stripe_count, expect 2"
16258         fi
16259
16260         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
16261         if [ "$stripe_index" != "$mdt_index" ]; then
16262                 error "stripe_index is $stripe_index, expect $mdt_index"
16263         fi
16264
16265         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
16266                 error "nlink error after create striped dir"
16267
16268         mkdir $DIR/$tdir/striped_dir/a
16269         mkdir $DIR/$tdir/striped_dir/b
16270
16271         stat $DIR/$tdir/striped_dir/a ||
16272                 error "create dir under striped dir failed"
16273         stat $DIR/$tdir/striped_dir/b ||
16274                 error "create dir under striped dir failed"
16275
16276         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
16277                 error "nlink error after mkdir"
16278
16279         rmdir $DIR/$tdir/striped_dir/a
16280         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
16281                 error "nlink error after rmdir"
16282
16283         rmdir $DIR/$tdir/striped_dir/b
16284         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
16285                 error "nlink error after rmdir"
16286
16287         chattr +i $DIR/$tdir/striped_dir
16288         createmany -o $DIR/$tdir/striped_dir/f 10 &&
16289                 error "immutable flags not working under striped dir!"
16290         chattr -i $DIR/$tdir/striped_dir
16291
16292         rmdir $DIR/$tdir/striped_dir ||
16293                 error "rmdir striped dir error"
16294
16295         cleanup_test_300
16296
16297         true
16298 }
16299
16300 test_300a() {
16301         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
16302                 skip "skipped for lustre < 2.7.0" && return
16303         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16304         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16305
16306         test_striped_dir 0 || error "failed on striped dir on MDT0"
16307         test_striped_dir 1 || error "failed on striped dir on MDT0"
16308 }
16309 run_test 300a "basic striped dir sanity test"
16310
16311 test_300b() {
16312         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
16313                 skip "skipped for lustre < 2.7.0" && return
16314         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16315         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16316         local i
16317         local mtime1
16318         local mtime2
16319         local mtime3
16320
16321         test_mkdir $DIR/$tdir
16322         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
16323                 error "set striped dir error"
16324         for ((i=0; i<10; i++)); do
16325                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
16326                 sleep 1
16327                 touch $DIR/$tdir/striped_dir/file_$i ||
16328                                         error "touch error $i"
16329                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
16330                 [ $mtime1 -eq $mtime2 ] &&
16331                         error "mtime not change after create"
16332                 sleep 1
16333                 rm -f $DIR/$tdir/striped_dir/file_$i ||
16334                                         error "unlink error $i"
16335                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
16336                 [ $mtime2 -eq $mtime3 ] &&
16337                         error "mtime did not change after unlink"
16338         done
16339         true
16340 }
16341 run_test 300b "check ctime/mtime for striped dir"
16342
16343 test_300c() {
16344         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
16345                 skip "skipped for lustre < 2.7.0" && return
16346         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16347         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16348         local file_count
16349
16350         mkdir -p $DIR/$tdir
16351         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
16352                 error "set striped dir error"
16353
16354         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
16355                 error "chown striped dir failed"
16356
16357         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
16358                 error "create 5k files failed"
16359
16360         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
16361
16362         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
16363
16364         rm -rf $DIR/$tdir
16365 }
16366 run_test 300c "chown && check ls under striped directory"
16367
16368 test_300d() {
16369         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
16370                 skip "skipped for lustre < 2.7.0" && return
16371         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16372         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16373         local stripe_count
16374         local file
16375
16376         mkdir -p $DIR/$tdir
16377         $SETSTRIPE -c 2 $DIR/$tdir
16378
16379         #local striped directory
16380         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
16381                 error "set striped dir error"
16382         createmany -o $DIR/$tdir/striped_dir/f 10 ||
16383                 error "create 10 files failed"
16384
16385         #remote striped directory
16386         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
16387                 error "set striped dir error"
16388         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
16389                 error "create 10 files failed"
16390
16391         for file in $(find $DIR/$tdir); do
16392                 stripe_count=$($GETSTRIPE -c $file)
16393                 [ $stripe_count -eq 2 ] ||
16394                         error "wrong stripe $stripe_count for $file"
16395         done
16396
16397         rm -rf $DIR/$tdir
16398 }
16399 run_test 300d "check default stripe under striped directory"
16400
16401 test_300e() {
16402         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16403                 skip "Need MDS version at least 2.7.55" && return
16404         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16405         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16406         local stripe_count
16407         local file
16408
16409         mkdir -p $DIR/$tdir
16410
16411         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
16412                 error "set striped dir error"
16413
16414         touch $DIR/$tdir/striped_dir/a
16415         touch $DIR/$tdir/striped_dir/b
16416         touch $DIR/$tdir/striped_dir/c
16417
16418         mkdir $DIR/$tdir/striped_dir/dir_a
16419         mkdir $DIR/$tdir/striped_dir/dir_b
16420         mkdir $DIR/$tdir/striped_dir/dir_c
16421
16422         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_a ||
16423                 error "set striped adir under striped dir error"
16424
16425         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_b ||
16426                 error "set striped bdir under striped dir error"
16427
16428         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_c ||
16429                 error "set striped cdir under striped dir error"
16430
16431         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
16432                 error "rename dir under striped dir fails"
16433
16434         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
16435                 error "rename dir under different stripes fails"
16436
16437         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
16438                 error "rename file under striped dir should succeed"
16439
16440         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
16441                 error "rename dir under striped dir should succeed"
16442
16443         rm -rf $DIR/$tdir
16444 }
16445 run_test 300e "check rename under striped directory"
16446
16447 test_300f() {
16448         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16449                 skip "Need MDS version at least 2.7.55" && return
16450         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16451         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16452         local stripe_count
16453         local file
16454
16455         rm -rf $DIR/$tdir
16456         mkdir -p $DIR/$tdir
16457
16458         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
16459                 error "set striped dir error"
16460
16461         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir1 ||
16462                 error "set striped dir error"
16463
16464         touch $DIR/$tdir/striped_dir/a
16465         mkdir $DIR/$tdir/striped_dir/dir_a
16466         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
16467                 error "create striped dir under striped dir fails"
16468
16469         touch $DIR/$tdir/striped_dir1/b
16470         mkdir $DIR/$tdir/striped_dir1/dir_b
16471         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
16472                 error "create striped dir under striped dir fails"
16473
16474         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
16475                 error "rename dir under different striped dir should fail"
16476
16477         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
16478                 error "rename striped dir under diff striped dir should fail"
16479
16480         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
16481                 error "rename file under diff striped dirs fails"
16482
16483         rm -rf $DIR/$tdir
16484 }
16485 run_test 300f "check rename cross striped directory"
16486
16487 test_300_check_default_striped_dir()
16488 {
16489         local dirname=$1
16490         local default_count=$2
16491         local default_index=$3
16492         local stripe_count
16493         local stripe_index
16494         local dir_stripe_index
16495         local dir
16496
16497         echo "checking $dirname $default_count $default_index"
16498         $LFS setdirstripe -D -c $default_count -i $default_index \
16499                                 -t all_char $DIR/$tdir/$dirname ||
16500                 error "set default stripe on striped dir error"
16501         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
16502         [ $stripe_count -eq $default_count ] ||
16503                 error "expect $default_count get $stripe_count for $dirname"
16504
16505         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
16506         [ $stripe_index -eq $default_index ] ||
16507                 error "expect $default_index get $stripe_index for $dirname"
16508
16509         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
16510                                                 error "create dirs failed"
16511
16512         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
16513         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
16514         for dir in $(find $DIR/$tdir/$dirname/*); do
16515                 stripe_count=$($LFS getdirstripe -c $dir)
16516                 [ $stripe_count -eq $default_count ] ||
16517                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
16518                 error "stripe count $default_count != $stripe_count for $dir"
16519
16520                 stripe_index=$($LFS getdirstripe -i $dir)
16521                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
16522                         error "$stripe_index != $default_index for $dir"
16523
16524                 #check default stripe
16525                 stripe_count=$($LFS getdirstripe -D -c $dir)
16526                 [ $stripe_count -eq $default_count ] ||
16527                 error "default count $default_count != $stripe_count for $dir"
16528
16529                 stripe_index=$($LFS getdirstripe -D -i $dir)
16530                 [ $stripe_index -eq $default_index ] ||
16531                 error "default index $default_index != $stripe_index for $dir"
16532         done
16533         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
16534 }
16535
16536 test_300g() {
16537         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16538                 skip "Need MDS version at least 2.7.55" && return
16539         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16540         local dir
16541         local stripe_count
16542         local stripe_index
16543
16544         mkdir $DIR/$tdir
16545         mkdir $DIR/$tdir/normal_dir
16546
16547         #Checking when client cache stripe index
16548         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
16549         $LFS setdirstripe -D -i1 $DIR/$tdir/striped_dir ||
16550                 error "create striped_dir failed"
16551
16552         $LFS setdirstripe -i0 $DIR/$tdir/striped_dir/dir0 ||
16553                 error "create dir0 fails"
16554         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir0)
16555         [ $stripe_index -eq 0 ] ||
16556                 error "dir0 expect index 0 got $stripe_index"
16557
16558         mkdir $DIR/$tdir/striped_dir/dir1 ||
16559                 error "create dir1 fails"
16560         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir1)
16561         [ $stripe_index -eq 1 ] ||
16562                 error "dir1 expect index 1 got $stripe_index"
16563
16564         #check default stripe count/stripe index
16565         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
16566         test_300_check_default_striped_dir normal_dir 1 0
16567         test_300_check_default_striped_dir normal_dir 2 1
16568         test_300_check_default_striped_dir normal_dir 2 -1
16569
16570         #delete default stripe information
16571         echo "delete default stripeEA"
16572         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
16573                 error "set default stripe on striped dir error"
16574
16575         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
16576         for dir in $(find $DIR/$tdir/normal_dir/*); do
16577                 stripe_count=$($LFS getdirstripe -c $dir)
16578                 [ $stripe_count -eq 0 ] ||
16579                         error "expect 1 get $stripe_count for $dir"
16580                 stripe_index=$($LFS getdirstripe -i $dir)
16581                 [ $stripe_index -eq 0 ] ||
16582                         error "expect 0 get $stripe_index for $dir"
16583         done
16584 }
16585 run_test 300g "check default striped directory for normal directory"
16586
16587 test_300h() {
16588         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16589                 skip "Need MDS version at least 2.7.55" && return
16590         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16591         local dir
16592         local stripe_count
16593
16594         mkdir $DIR/$tdir
16595         $LFS setdirstripe -i 0 -c $MDSCOUNT -t all_char \
16596                                         $DIR/$tdir/striped_dir ||
16597                 error "set striped dir error"
16598
16599         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
16600         test_300_check_default_striped_dir striped_dir 1 0
16601         test_300_check_default_striped_dir striped_dir 2 1
16602         test_300_check_default_striped_dir striped_dir 2 -1
16603
16604         #delete default stripe information
16605         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
16606                 error "set default stripe on striped dir error"
16607
16608         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
16609         for dir in $(find $DIR/$tdir/striped_dir/*); do
16610                 stripe_count=$($LFS getdirstripe -c $dir)
16611                 [ $stripe_count -eq 0 ] ||
16612                         error "expect 1 get $stripe_count for $dir"
16613         done
16614 }
16615 run_test 300h "check default striped directory for striped directory"
16616
16617 test_300i() {
16618         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16619                 skip "Need MDS version at least 2.7.55" && return
16620         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16621         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16622         local stripe_count
16623         local file
16624
16625         mkdir $DIR/$tdir
16626
16627         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
16628                 error "set striped dir error"
16629
16630         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
16631                 error "create files under striped dir failed"
16632
16633         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir ||
16634                 error "set striped hashdir error"
16635
16636         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir/d0 ||
16637                 error "create dir0 under hash dir failed"
16638         $LFS setdirstripe -i0 -c$MDSCOUNT -H fnv_1a_64 $DIR/$tdir/hashdir/d1 ||
16639                 error "create dir1 under hash dir failed"
16640
16641         # unfortunately, we need to umount to clear dir layout cache for now
16642         # once we fully implement dir layout, we can drop this
16643         umount_client $MOUNT || error "umount failed"
16644         mount_client $MOUNT || error "mount failed"
16645
16646         $LFS find -H fnv_1a_64 $DIR/$tdir/hashdir
16647         local dircnt=$($LFS find -H fnv_1a_64 $DIR/$tdir/hashdir | wc -l)
16648         [ $dircnt -eq 1 ] || error "lfs find striped dir got:$dircnt,except:1"
16649
16650         #set the stripe to be unknown hash type
16651         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
16652         $LCTL set_param fail_loc=0x1901
16653         for ((i = 0; i < 10; i++)); do
16654                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
16655                         error "stat f-$i failed"
16656                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
16657         done
16658
16659         touch $DIR/$tdir/striped_dir/f0 &&
16660                 error "create under striped dir with unknown hash should fail"
16661
16662         $LCTL set_param fail_loc=0
16663
16664         umount_client $MOUNT || error "umount failed"
16665         mount_client $MOUNT || error "mount failed"
16666
16667         return 0
16668 }
16669 run_test 300i "client handle unknown hash type striped directory"
16670
16671 test_300j() {
16672         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16673         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16674                 skip "Need MDS version at least 2.7.55" && return
16675         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16676         local stripe_count
16677         local file
16678
16679         mkdir $DIR/$tdir
16680
16681         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
16682         $LCTL set_param fail_loc=0x1702
16683         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
16684                 error "set striped dir error"
16685
16686         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
16687                 error "create files under striped dir failed"
16688
16689         $LCTL set_param fail_loc=0
16690
16691         rm -rf $DIR/$tdir || error "unlink striped dir fails"
16692
16693         return 0
16694 }
16695 run_test 300j "test large update record"
16696
16697 test_300k() {
16698         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16699                 skip "Need MDS version at least 2.7.55" && return
16700         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16701         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16702         local stripe_count
16703         local file
16704
16705         mkdir $DIR/$tdir
16706
16707         #define OBD_FAIL_LARGE_STRIPE   0x1703
16708         $LCTL set_param fail_loc=0x1703
16709         $LFS setdirstripe -i 0 -c512 $DIR/$tdir/striped_dir ||
16710                 error "set striped dir error"
16711         $LCTL set_param fail_loc=0
16712
16713         $LFS getdirstripe $DIR/$tdir/striped_dir ||
16714                 error "getstripeddir fails"
16715         rm -rf $DIR/$tdir/striped_dir ||
16716                 error "unlink striped dir fails"
16717
16718         return 0
16719 }
16720 run_test 300k "test large striped directory"
16721
16722 test_300l() {
16723         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16724                 skip "Need MDS version at least 2.7.55" && return
16725         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16726         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16727         local stripe_index
16728
16729         test_mkdir -p $DIR/$tdir/striped_dir
16730         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
16731                         error "chown $RUNAS_ID failed"
16732         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
16733                 error "set default striped dir failed"
16734
16735         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
16736         $LCTL set_param fail_loc=0x80000158
16737         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
16738
16739         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
16740         [ $stripe_index -eq 1 ] ||
16741                 error "expect 1 get $stripe_index for $dir"
16742 }
16743 run_test 300l "non-root user to create dir under striped dir with stale layout"
16744
16745 test_300m() {
16746         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16747                 skip "Need MDS version at least 2.7.55" && return
16748         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16749         [ $MDSCOUNT -ge 2 ] && skip "Only for single MDT" && return
16750
16751         mkdir -p $DIR/$tdir/striped_dir
16752         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
16753                 error "set default stripes dir error"
16754
16755         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
16756
16757         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
16758         [ $stripe_count -eq 0 ] ||
16759                         error "expect 0 get $stripe_count for a"
16760
16761         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
16762                 error "set default stripes dir error"
16763
16764         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
16765
16766         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
16767         [ $stripe_count -eq 0 ] ||
16768                         error "expect 0 get $stripe_count for b"
16769
16770         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
16771                 error "set default stripes dir error"
16772
16773         mkdir $DIR/$tdir/striped_dir/c &&
16774                 error "default stripe_index is invalid, mkdir c should fails"
16775
16776         rm -rf $DIR/$tdir || error "rmdir fails"
16777 }
16778 run_test 300m "setstriped directory on single MDT FS"
16779
16780 cleanup_300n() {
16781         local list=$(comma_list $(mdts_nodes))
16782
16783         trap 0
16784         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
16785 }
16786
16787 test_300n() {
16788         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16789                 skip "Need MDS version at least 2.7.55" && return
16790         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16791         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16792         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16793
16794         local stripe_index
16795         local list=$(comma_list $(mdts_nodes))
16796
16797         trap cleanup_300n RETURN EXIT
16798         mkdir -p $DIR/$tdir
16799         chmod 777 $DIR/$tdir
16800         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
16801                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
16802                 error "create striped dir succeeds with gid=0"
16803
16804         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
16805         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
16806                 error "create striped dir fails with gid=-1"
16807
16808         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
16809         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
16810                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
16811                 error "set default striped dir succeeds with gid=0"
16812
16813
16814         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
16815         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
16816                 error "set default striped dir fails with gid=-1"
16817
16818
16819         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
16820         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
16821                                         error "create test_dir fails"
16822         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
16823                                         error "create test_dir1 fails"
16824         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
16825                                         error "create test_dir2 fails"
16826         cleanup_300n
16827 }
16828 run_test 300n "non-root user to create dir under striped dir with default EA"
16829
16830 test_300o() {
16831         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16832                 skip "Need MDS version at least 2.7.55" && return
16833         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16834         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16835         local numfree1
16836         local numfree2
16837
16838         mkdir -p $DIR/$tdir
16839
16840         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
16841         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
16842         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
16843                 skip "not enough free inodes $numfree1 $numfree2"
16844                 return
16845         fi
16846
16847         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
16848         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
16849         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
16850                 skip "not enough free space $numfree1 $numfree2"
16851                 return
16852         fi
16853
16854         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
16855                 error "setdirstripe fails"
16856
16857         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
16858                 error "create dirs fails"
16859
16860         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
16861         ls $DIR/$tdir/striped_dir > /dev/null ||
16862                 error "ls striped dir fails"
16863         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
16864                 error "unlink big striped dir fails"
16865 }
16866 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
16867
16868 test_300p() {
16869         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16870         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16871         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16872
16873         mkdir -p $DIR/$tdir
16874
16875         #define OBD_FAIL_OUT_ENOSPC     0x1704
16876         do_facet mds2 lctl set_param fail_loc=0x80001704
16877         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 &&
16878                         error "create striped directory should fail"
16879
16880         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
16881
16882         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
16883         true
16884 }
16885 run_test 300p "create striped directory without space"
16886
16887 test_300q() {
16888         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16889         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16890
16891         local fd=$(free_fd)
16892         local cmd="exec $fd<$tdir"
16893         cd $DIR
16894         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
16895         eval $cmd
16896         cmd="exec $fd<&-"
16897         trap "eval $cmd" EXIT
16898         cd $tdir || error "cd $tdir fails"
16899         rmdir  ../$tdir || error "rmdir $tdir fails"
16900         mkdir local_dir && error "create dir succeeds"
16901         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
16902         eval $cmd
16903         return 0
16904 }
16905 run_test 300q "create remote directory under orphan directory"
16906
16907 prepare_remote_file() {
16908         mkdir $DIR/$tdir/src_dir ||
16909                 error "create remote source failed"
16910
16911         cp /etc/hosts $DIR/$tdir/src_dir/a || error
16912         touch $DIR/$tdir/src_dir/a
16913
16914         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
16915                 error "create remote target dir failed"
16916
16917         touch $DIR/$tdir/tgt_dir/b
16918
16919         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
16920                 error "rename dir cross MDT failed!"
16921
16922         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
16923                 error "src_child still exists after rename"
16924
16925         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
16926                 error "missing file(a) after rename"
16927
16928         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
16929                 error "diff after rename"
16930 }
16931
16932 test_310a() {
16933         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
16934         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16935         local remote_file=$DIR/$tdir/tgt_dir/b
16936
16937         mkdir -p $DIR/$tdir
16938
16939         prepare_remote_file || error "prepare remote file failed"
16940
16941         #open-unlink file
16942         $OPENUNLINK $remote_file $remote_file || error
16943         $CHECKSTAT -a $remote_file || error
16944 }
16945 run_test 310a "open unlink remote file"
16946
16947 test_310b() {
16948         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
16949         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16950         local remote_file=$DIR/$tdir/tgt_dir/b
16951
16952         mkdir -p $DIR/$tdir
16953
16954         prepare_remote_file || error "prepare remote file failed"
16955
16956         ln $remote_file $DIR/$tfile || error "link failed for remote file"
16957         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
16958         $CHECKSTAT -t file $remote_file || error "check file failed"
16959 }
16960 run_test 310b "unlink remote file with multiple links while open"
16961
16962 test_310c() {
16963         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
16964         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16965         local remote_file=$DIR/$tdir/tgt_dir/b
16966
16967         mkdir -p $DIR/$tdir
16968
16969         prepare_remote_file || error "prepare remote file failed"
16970
16971         ln $remote_file $DIR/$tfile || error "link failed for remote file"
16972         multiop_bg_pause $remote_file O_uc ||
16973                         error "mulitop failed for remote file"
16974         MULTIPID=$!
16975         $MULTIOP $DIR/$tfile Ouc
16976         kill -USR1 $MULTIPID
16977         wait $MULTIPID
16978 }
16979 run_test 310c "open-unlink remote file with multiple links"
16980
16981 #LU-4825
16982 test_311() {
16983         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.54) ] &&
16984                 skip "lustre < 2.8.54 does not contain LU-4825 fix" && return
16985         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16986         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16987
16988         local old_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
16989
16990         mkdir -p $DIR/$tdir
16991         $SETSTRIPE -i 0 -c 1 $DIR/$tdir
16992         createmany -o $DIR/$tdir/$tfile. 1000
16993
16994         # statfs data is not real time, let's just calculate it
16995         old_iused=$((old_iused + 1000))
16996
16997         local count=$(do_facet $SINGLEMDS "lctl get_param -n \
16998                         osp.*OST0000*MDT0000.create_count")
16999         local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
17000                                 osp.*OST0000*MDT0000.max_create_count")
17001         for idx in $(seq $MDSCOUNT); do
17002                 do_facet mds$idx "lctl set_param -n \
17003                         osp.*OST0000*MDT000?.max_create_count=0"
17004         done
17005
17006         $SETSTRIPE -i 0 $DIR/$tdir/$tfile || error "setstripe failed"
17007         local index=$($GETSTRIPE -i $DIR/$tdir/$tfile)
17008         [ $index -ne 0 ] || error "$tfile stripe index is 0"
17009
17010         unlinkmany $DIR/$tdir/$tfile. 1000
17011
17012         for idx in $(seq $MDSCOUNT); do
17013                 do_facet mds$idx "lctl set_param -n \
17014                         osp.*OST0000*MDT000?.max_create_count=$max_count"
17015                 do_facet mds$idx "lctl set_param -n \
17016                         osp.*OST0000*MDT000?.create_count=$count"
17017         done
17018
17019         local new_iused
17020         for i in $(seq 120); do
17021                 new_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
17022                 # system may be too busy to destroy all objs in time, use
17023                 # a somewhat small value to not fail autotest
17024                 [ $((old_iused - new_iused)) -gt 400 ] && break
17025                 sleep 1
17026         done
17027
17028         echo "waited $i sec, old Iused $old_iused, new Iused $new_iused"
17029         [ $((old_iused - new_iused)) -gt 400 ] ||
17030                 error "objs not destroyed after unlink"
17031 }
17032 run_test 311 "disable OSP precreate, and unlink should destroy objs"
17033
17034 zfs_oid_to_objid()
17035 {
17036         local ost=$1
17037         local objid=$2
17038
17039         local vdevdir=$(dirname $(facet_vdevice $ost))
17040         local cmd="$ZDB -e -p $vdevdir -ddddd $(facet_device $ost)"
17041         local zfs_zapid=$(do_facet $ost $cmd |
17042                           grep -w "/O/0/d$((objid%32))" -C 5 |
17043                           awk '/Object/{getline; print $1}')
17044         local zfs_objid=$(do_facet $ost $cmd $zfs_zapid |
17045                           awk "/$objid = /"'{printf $3}')
17046
17047         echo $zfs_objid
17048 }
17049
17050 zfs_object_blksz() {
17051         local ost=$1
17052         local objid=$2
17053
17054         local vdevdir=$(dirname $(facet_vdevice $ost))
17055         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
17056         local blksz=$(do_facet $ost $cmd $objid |
17057                       awk '/dblk/{getline; printf $4}')
17058
17059         case "${blksz: -1}" in
17060                 k|K) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024)) ;;
17061                 m|M) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024*1024)) ;;
17062                 *) ;;
17063         esac
17064
17065         echo $blksz
17066 }
17067
17068 test_312() { # LU-4856
17069         remote_ost_nodsh && skip "remote OST with nodsh" && return
17070
17071         [ $(facet_fstype ost1) = "zfs" ] ||
17072                 { skip "the test only applies to zfs" && return; }
17073
17074         local max_blksz=$(do_facet ost1 \
17075                           $ZFS get -p recordsize $(facet_device ost1) |
17076                           awk '!/VALUE/{print $3}')
17077         local min_blksz=$(getconf PAGE_SIZE)
17078
17079         # to make life a little bit easier
17080         $LFS mkdir -c 1 -i 0 $DIR/$tdir
17081         $LFS setstripe -c 1 -i 0 $DIR/$tdir
17082
17083         local tf=$DIR/$tdir/$tfile
17084         touch $tf
17085         local oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
17086
17087         # Get ZFS object id
17088         local zfs_objid=$(zfs_oid_to_objid ost1 $oid)
17089
17090         # block size change by sequential over write
17091         local blksz
17092         for ((bs=$min_blksz; bs <= max_blksz; bs <<= 2)); do
17093                 dd if=/dev/zero of=$tf bs=$bs count=1 oflag=sync conv=notrunc
17094
17095                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
17096                 [ $blksz -eq $bs ] || error "blksz error: $blksz, expected: $bs"
17097         done
17098         rm -f $tf
17099
17100         # block size change by sequential append write
17101         dd if=/dev/zero of=$tf bs=$min_blksz count=1 oflag=sync conv=notrunc
17102         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
17103         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
17104
17105         for ((count = 1; count < $((max_blksz / min_blksz)); count *= 2)); do
17106                 dd if=/dev/zero of=$tf bs=$min_blksz count=$count seek=$count \
17107                         oflag=sync conv=notrunc
17108
17109                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
17110                 [ $blksz -eq $((2 * count * min_blksz)) ] ||
17111                         error "blksz error, actual $blksz, "    \
17112                                 "expected: 2 * $count * $min_blksz"
17113         done
17114         rm -f $tf
17115
17116         # random write
17117         touch $tf
17118         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
17119         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
17120
17121         dd if=/dev/zero of=$tf bs=1K count=1 oflag=sync conv=notrunc
17122         blksz=$(zfs_object_blksz ost1 $zfs_objid)
17123         [ $blksz -eq $min_blksz ] ||
17124                 error "blksz error: $blksz, expected: $min_blksz"
17125
17126         dd if=/dev/zero of=$tf bs=64K count=1 oflag=sync conv=notrunc seek=128
17127         blksz=$(zfs_object_blksz ost1 $zfs_objid)
17128         [ $blksz -eq 65536 ] || error "blksz error: $blksz, expected: 64k"
17129
17130         dd if=/dev/zero of=$tf bs=1M count=1 oflag=sync conv=notrunc
17131         blksz=$(zfs_object_blksz ost1 $zfs_objid)
17132         [ $blksz -eq 65536 ] || error "rewrite error: $blksz, expected: 64k"
17133 }
17134 run_test 312 "make sure ZFS adjusts its block size by write pattern"
17135
17136 test_313() {
17137         remote_ost_nodsh && skip "remote OST with nodsh" && return
17138
17139         local file=$DIR/$tfile
17140         rm -f $file
17141         $SETSTRIPE -c 1 -i 0 $file || error "setstripe failed"
17142
17143         # define OBD_FAIL_TGT_RCVD_EIO           0x720
17144         do_facet ost1 "$LCTL set_param fail_loc=0x720"
17145         dd if=/dev/zero of=$file bs=4096 oflag=direct count=1 &&
17146                 error "write should failed"
17147         do_facet ost1 "$LCTL set_param fail_loc=0"
17148         rm -f $file
17149 }
17150 run_test 313 "io should fail after last_rcvd update fail"
17151
17152 test_314() {
17153         $SETSTRIPE -c 2 -i 0 $DIR/$tfile || error "setstripe failed"
17154         do_facet ost1 "$LCTL set_param fail_loc=0x720"
17155         rm -f $DIR/$tfile
17156         wait_delete_completed
17157         do_facet ost1 "$LCTL set_param fail_loc=0"
17158 }
17159 run_test 314 "OSP shouldn't fail after last_rcvd update failure"
17160
17161 test_315() { # LU-618
17162         local file=$DIR/$tfile
17163         rm -f $file
17164
17165         $MULTIOP $file oO_CREAT:O_DIRECT:O_RDWR:w4096000c
17166         $MULTIOP $file oO_RDONLY:r4096000_c &
17167         PID=$!
17168
17169         sleep 2
17170
17171         local rbytes=$(awk '/read_bytes/ { print $2 }' /proc/$PID/io)
17172         kill -USR1 $PID
17173
17174         [ $rbytes -gt 4000000 ] || error "read is not accounted ($rbytes)"
17175         rm -f $file
17176 }
17177 run_test 315 "read should be accounted"
17178
17179 test_fake_rw() {
17180         local read_write=$1
17181         if [ "$read_write" = "write" ]; then
17182                 local dd_cmd="dd if=/dev/zero of=$DIR/$tfile"
17183         elif [ "$read_write" = "read" ]; then
17184                 local dd_cmd="dd of=/dev/null if=$DIR/$tfile"
17185         else
17186                 error "argument error"
17187         fi
17188
17189         # turn off debug for performance testing
17190         local saved_debug=$($LCTL get_param -n debug)
17191         $LCTL set_param debug=0
17192
17193         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
17194
17195         # get ost1 size - lustre-OST0000
17196         local ost1_avail_size=$($LFS df | awk /${ost1_svc}/'{ print $4 }')
17197         local blocks=$((ost1_avail_size/2/1024)) # half avail space by megabytes
17198         [ $blocks -gt 1000 ] && blocks=1000 # 1G in maximum
17199
17200         if [ "$read_write" = "read" ]; then
17201                 truncate -s $(expr 1048576 \* $blocks) $DIR/$tfile
17202         fi
17203
17204         local start_time=$(date +%s.%N)
17205         $dd_cmd bs=1M count=$blocks oflag=sync ||
17206                 error "real dd $read_write error"
17207         local duration=$(bc <<< "$(date +%s.%N) - $start_time")
17208
17209         if [ "$read_write" = "write" ]; then
17210                 rm -f $DIR/$tfile
17211         fi
17212
17213         # define OBD_FAIL_OST_FAKE_RW           0x238
17214         do_facet ost1 $LCTL set_param fail_loc=0x238
17215
17216         local start_time=$(date +%s.%N)
17217         $dd_cmd bs=1M count=$blocks oflag=sync ||
17218                 error "fake dd $read_write error"
17219         local duration_fake=$(bc <<< "$(date +%s.%N) - $start_time")
17220
17221         if [ "$read_write" = "write" ]; then
17222                 # verify file size
17223                 cancel_lru_locks osc
17224                 $CHECKSTAT -t file -s $((blocks * 1024 * 1024)) $DIR/$tfile ||
17225                         error "$tfile size not $blocks MB"
17226         fi
17227         do_facet ost1 $LCTL set_param fail_loc=0
17228
17229         echo "fake $read_write $duration_fake vs. normal $read_write" \
17230                 "$duration in seconds"
17231         [ $(bc <<< "$duration_fake < $duration") -eq 1 ] ||
17232                 error_not_in_vm "fake write is slower"
17233
17234         $LCTL set_param -n debug="$saved_debug"
17235         rm -f $DIR/$tfile
17236 }
17237 test_399a() { # LU-7655 for OST fake write
17238         remote_ost_nodsh && skip "remote OST with nodsh" && return
17239
17240         test_fake_rw write
17241 }
17242 run_test 399a "fake write should not be slower than normal write"
17243
17244 test_399b() { # LU-8726 for OST fake read
17245         remote_ost_nodsh && skip "remote OST with nodsh" && return
17246
17247         if [ "$(facet_fstype ost1)" != "ldiskfs" ]; then
17248                 skip "ldiskfs only test" && return 0
17249         fi
17250         test_fake_rw read
17251 }
17252 run_test 399b "fake read should not be slower than normal read"
17253
17254 test_400a() { # LU-1606, was conf-sanity test_74
17255         local extra_flags=''
17256         local out=$TMP/$tfile
17257         local prefix=/usr/include/lustre
17258         local prog
17259
17260         if ! which $CC > /dev/null 2>&1; then
17261                 skip_env "$CC is not installed"
17262                 return 0
17263         fi
17264
17265         if ! [[ -d $prefix ]]; then
17266                 # Assume we're running in tree and fixup the include path.
17267                 extra_flags+=" -I$LUSTRE/include"
17268                 extra_flags+=" -L$LUSTRE/utils"
17269         fi
17270
17271         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
17272                 $CC -Wall -Werror $extra_flags -llustreapi -o $out $prog ||
17273                         error "client api broken"
17274         done
17275         rm -f $out
17276 }
17277 run_test 400a "Lustre client api program can compile and link"
17278
17279 test_400b() { # LU-1606, LU-5011
17280         local header
17281         local out=$TMP/$tfile
17282         local prefix=/usr/include/linux/lustre
17283
17284         # We use a hard coded prefix so that this test will not fail
17285         # when run in tree. There are headers in lustre/include/lustre/
17286         # that are not packaged (like lustre_idl.h) and have more
17287         # complicated include dependencies (like config.h and lnet/types.h).
17288         # Since this test about correct packaging we just skip them when
17289         # they don't exist (see below) rather than try to fixup cppflags.
17290
17291         if ! which $CC > /dev/null 2>&1; then
17292                 skip_env "$CC is not installed"
17293                 return 0
17294         fi
17295
17296         for header in $prefix/*.h; do
17297                 if ! [[ -f "$header" ]]; then
17298                         continue
17299                 fi
17300
17301                 if [[ "$(basename $header)" == lustre_ioctl.h ]]; then
17302                         continue # lustre_ioctl.h is internal header
17303                 fi
17304
17305                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
17306                         error "cannot compile '$header'"
17307         done
17308         rm -f $out
17309 }
17310 run_test 400b "packaged headers can be compiled"
17311
17312 test_401a() { #LU-7437
17313         local printf_arg=$(find -printf 2>&1 | grep "unrecognized:")
17314         [ -n "$printf_arg" ] && skip_env "find does not support -printf" &&
17315                 return
17316         #count the number of parameters by "list_param -R"
17317         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
17318         #count the number of parameters by listing proc files
17319         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
17320         echo "proc_dirs='$proc_dirs'"
17321         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
17322         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
17323                       sort -u | wc -l)
17324
17325         [ $params -eq $procs ] ||
17326                 error "found $params parameters vs. $procs proc files"
17327
17328         # test the list_param -D option only returns directories
17329         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
17330         #count the number of parameters by listing proc directories
17331         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
17332                 sort -u | wc -l)
17333
17334         [ $params -eq $procs ] ||
17335                 error "found $params parameters vs. $procs proc files"
17336 }
17337 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
17338
17339 test_401b() {
17340         local save=$($LCTL get_param -n jobid_var)
17341         local tmp=testing
17342
17343         $LCTL set_param foo=bar jobid_var=$tmp bar=baz &&
17344                 error "no error returned when setting bad parameters"
17345
17346         local jobid_new=$($LCTL get_param -n foe jobid_var baz)
17347         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
17348
17349         $LCTL set_param -n fog=bam jobid_var=$save bat=fog
17350         local jobid_old=$($LCTL get_param -n foe jobid_var bag)
17351         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
17352 }
17353 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
17354
17355 test_401c() {
17356         local jobid_var_old=$($LCTL get_param -n jobid_var)
17357         local jobid_var_new
17358
17359         $LCTL set_param jobid_var= &&
17360                 error "no error returned for 'set_param a='"
17361
17362         jobid_var_new=$($LCTL get_param -n jobid_var)
17363         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
17364                 error "jobid_var was changed by setting without value"
17365
17366         $LCTL set_param jobid_var &&
17367                 error "no error returned for 'set_param a'"
17368
17369         jobid_var_new=$($LCTL get_param -n jobid_var)
17370         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
17371                 error "jobid_var was changed by setting without value"
17372 }
17373 run_test 401c "Verify 'lctl set_param' without value fails in either format."
17374
17375 test_401d() {
17376         local jobid_var_old=$($LCTL get_param -n jobid_var)
17377         local jobid_var_new
17378         local new_value="foo=bar"
17379
17380         $LCTL set_param jobid_var=$new_value ||
17381                 error "'set_param a=b' did not accept a value containing '='"
17382
17383         jobid_var_new=$($LCTL get_param -n jobid_var)
17384         [[ "$jobid_var_new" == "$new_value" ]] ||
17385                 error "'set_param a=b' failed on a value containing '='"
17386
17387         # Reset the jobid_var to test the other format
17388         $LCTL set_param jobid_var=$jobid_var_old
17389         jobid_var_new=$($LCTL get_param -n jobid_var)
17390         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
17391                 error "failed to reset jobid_var"
17392
17393         $LCTL set_param jobid_var $new_value ||
17394                 error "'set_param a b' did not accept a value containing '='"
17395
17396         jobid_var_new=$($LCTL get_param -n jobid_var)
17397         [[ "$jobid_var_new" == "$new_value" ]] ||
17398                 error "'set_param a b' failed on a value containing '='"
17399
17400         $LCTL set_param jobid_var $jobid_var_old
17401         jobid_var_new=$($LCTL get_param -n jobid_var)
17402         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
17403                 error "failed to reset jobid_var"
17404 }
17405 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
17406
17407 test_402() {
17408         local server_version=$(lustre_version_code $SINGLEMDS)
17409         [[ $server_version -ge $(version_code 2.7.66) ]] ||
17410         [[ $server_version -ge $(version_code 2.7.18.4) &&
17411                 $server_version -lt $(version_code 2.7.50) ]] ||
17412         [[ $server_version -ge $(version_code 2.7.2) &&
17413                 $server_version -lt $(version_code 2.7.11) ]] ||
17414                 { skip "Need MDS version 2.7.2+ or 2.7.18.4+ or 2.7.66+";
17415                         return; }
17416         remote_mds_nodsh && skip "remote MDS with nodsh" && return
17417         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
17418 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
17419         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
17420         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
17421                 echo "Touch failed - OK"
17422 }
17423 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
17424
17425 test_403() {
17426         local file1=$DIR/$tfile.1
17427         local file2=$DIR/$tfile.2
17428         local tfile=$TMP/$tfile
17429
17430         rm -f $file1 $file2 $tfile
17431
17432         touch $file1
17433         ln $file1 $file2
17434
17435         # 30 sec OBD_TIMEOUT in ll_getattr()
17436         # right before populating st_nlink
17437         $LCTL set_param fail_loc=0x80001409
17438         stat -c %h $file1 > $tfile &
17439
17440         # create an alias, drop all locks and reclaim the dentry
17441         < $file2
17442         cancel_lru_locks mdc
17443         cancel_lru_locks osc
17444         sysctl -w vm.drop_caches=2
17445
17446         wait
17447
17448         [ $(cat $tfile) -gt 0 ] || error "wrong nlink count: $(cat $tfile)"
17449
17450         rm -f $tfile $file1 $file2
17451 }
17452 run_test 403 "i_nlink should not drop to zero due to aliasing"
17453
17454 test_404() { # LU-6601
17455         local server_version=$(lustre_version_code $SINGLEMDS)
17456         [[ $server_version -ge $(version_code 2.8.53) ]] ||
17457                 { skip "Need server version newer than 2.8.52"; return 0; }
17458
17459         remote_mds_nodsh && skip "remote MDS with nodsh" && return
17460         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
17461                 awk '/osp .*-osc-MDT/ { print $4}')
17462
17463         local osp
17464         for osp in $mosps; do
17465                 echo "Deactivate: " $osp
17466                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
17467                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
17468                         awk -vp=$osp '$4 == p { print $2 }')
17469                 [ $stat = IN ] || {
17470                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
17471                         error "deactivate error"
17472                 }
17473                 echo "Activate: " $osp
17474                 do_facet $SINGLEMDS $LCTL --device %$osp activate
17475                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
17476                         awk -vp=$osp '$4 == p { print $2 }')
17477                 [ $stat = UP ] || {
17478                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
17479                         error "activate error"
17480                 }
17481         done
17482 }
17483 run_test 404 "validate manual {de}activated works properly for OSPs"
17484
17485 test_405() {
17486         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) -o \
17487         [ $(lustre_version_code client) -lt $(version_code 2.6.99) ] &&
17488                 skip "Layout swap lock is not supported" && return
17489
17490         check_swap_layouts_support && return 0
17491
17492         test_mkdir $DIR/$tdir
17493         swap_lock_test -d $DIR/$tdir ||
17494                 error "One layout swap locked test failed"
17495 }
17496 run_test 405 "Various layout swap lock tests"
17497
17498 test_406() {
17499         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
17500         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
17501         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
17502         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
17503         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.50) ] &&
17504                 skip "Need MDS version at least 2.8.50" && return
17505
17506         local def_stripe_count=$($GETSTRIPE -c $MOUNT)
17507         local def_stripe_size=$($GETSTRIPE -S $MOUNT)
17508         local def_stripe_offset=$($GETSTRIPE -i $MOUNT)
17509         local def_pool=$($GETSTRIPE -p $MOUNT)
17510         local test_pool=$TESTNAME
17511
17512         if ! combined_mgs_mds ; then
17513                 mount_mgs_client
17514         fi
17515         pool_add $test_pool || error "pool_add failed"
17516         pool_add_targets $test_pool 0 $(($OSTCOUNT - 1)) 1 ||
17517                 error "pool_add_targets failed"
17518
17519         # parent set default stripe count only, child will stripe from both
17520         # parent and fs default
17521         $SETSTRIPE -c 1 -i 1 -S $((def_stripe_size * 2)) -p $test_pool $MOUNT ||
17522                 error "setstripe $MOUNT failed"
17523         $LFS mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
17524         $SETSTRIPE -c $OSTCOUNT $DIR/$tdir || error "setstripe $tdir failed"
17525         for i in $(seq 10); do
17526                 local f=$DIR/$tdir/$tfile.$i
17527                 touch $f || error "touch failed"
17528                 local count=$($GETSTRIPE -c $f)
17529                 [ $count -eq $OSTCOUNT ] ||
17530                         error "$f stripe count $count != $OSTCOUNT"
17531                 local offset=$($GETSTRIPE -i $f)
17532                 [ $offset -eq 1 ] || error "$f stripe offset $offset != 1"
17533                 local size=$($GETSTRIPE -S $f)
17534                 [ $size -eq $((def_stripe_size * 2)) ] ||
17535                         error "$f stripe size $size != $((def_stripe_size * 2))"
17536                 local pool=$($GETSTRIPE -p $f)
17537                 [ $pool == $test_pool ] || error "$f pool $pool != $test_pool"
17538         done
17539
17540         # change fs default striping, delete parent default striping, now child
17541         # will stripe from new fs default striping only
17542         $SETSTRIPE -c 1 -S $def_stripe_size -i 0 $MOUNT ||
17543                 error "change $MOUNT default stripe failed"
17544         $SETSTRIPE -c 0 $DIR/$tdir || error "delete $tdir default stripe failed"
17545         for i in $(seq 11 20); do
17546                 local f=$DIR/$tdir/$tfile.$i
17547                 touch $f || error "touch $f failed"
17548                 local count=$($GETSTRIPE -c $f)
17549                 [ $count -eq 1 ] || error "$f stripe count $count != 1"
17550                 local offset=$($GETSTRIPE -i $f)
17551                 [ $offset -eq 0 ] || error "$f stripe offset $offset != 0"
17552                 local size=$($GETSTRIPE -S $f)
17553                 [ $size -eq $def_stripe_size ] ||
17554                         error "$f stripe size $size != $def_stripe_size"
17555                 local pool=$($GETSTRIPE -p $f)
17556                 [ $pool == $test_pool ] || error "$f pool $pool isn't set"
17557
17558         done
17559
17560         unlinkmany $DIR/$tdir/$tfile. 1 20
17561
17562         # restore FS default striping
17563         if [ -z $def_pool ]; then
17564                 $SETSTRIPE -c $def_stripe_count -S $def_stripe_size \
17565                         -i $def_stripe_offset $MOUNT ||
17566                         error "restore default striping failed"
17567         else
17568                 $SETSTRIPE -c $def_stripe_count -S $def_stripe_size \
17569                         -i $def_stripe_offset -p $def_pool $MOUNT ||
17570                         error "restore default striping with $def_pool failed"
17571         fi
17572
17573         local f=$DIR/$tdir/$tfile
17574         pool_remove_all_targets $test_pool $f
17575         pool_remove $test_pool $f
17576
17577         if ! combined_mgs_mds ; then
17578                 umount_mgs_client
17579         fi
17580 }
17581 run_test 406 "DNE support fs default striping"
17582
17583 test_407() {
17584         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
17585         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
17586                 skip "Need MDS version at least 2.8.55" && return
17587         remote_mds_nodsh && skip "remote MDS with nodsh" && return
17588
17589         $LFS mkdir -i 0 -c 1 $DIR/$tdir.0 ||
17590                 error "$LFS mkdir -i 0 -c 1 $tdir.0 failed"
17591         $LFS mkdir -i 1 -c 1 $DIR/$tdir.1 ||
17592                 error "$LFS mkdir -i 1 -c 1 $tdir.1 failed"
17593         touch $DIR/$tdir.0/$tfile.0 || error "touch $tdir.0/$tfile.0 failed"
17594
17595         #define OBD_FAIL_DT_TXN_STOP    0x2019
17596         for idx in $(seq $MDSCOUNT); do
17597                 do_facet mds$idx "lctl set_param fail_loc=0x2019"
17598         done
17599         $LFS mkdir -c 2 $DIR/$tdir && error "$LFS mkdir -c 2 $tdir should fail"
17600         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1/$tfile.1 &&
17601                 error "mv $tdir.0/$tfile.0 $tdir.1/$tfile.1 should fail"
17602         true
17603 }
17604 run_test 407 "transaction fail should cause operation fail"
17605
17606 test_408() {
17607         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 oflag=direct
17608
17609         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
17610         lctl set_param fail_loc=0x8000040a
17611         # let ll_prepare_partial_page() fail
17612         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 conv=notrunc || true
17613
17614         rm -f $DIR/$tfile
17615
17616         # create at least 100 unused inodes so that
17617         # shrink_icache_memory(0) should not return 0
17618         touch $DIR/$tfile-{0..100}
17619         rm -f $DIR/$tfile-{0..100}
17620         sync
17621
17622         echo 2 > /proc/sys/vm/drop_caches
17623 }
17624 run_test 408 "drop_caches should not hang due to page leaks"
17625
17626 test_409()
17627 {
17628         [ $MDSCOUNT -lt 2 ] &&
17629                 skip "We need at least 2 MDTs for this test" && return
17630
17631         check_mount_and_prep
17632
17633         mkdir -p $DIR/$tdir || error "(0) Fail to mkdir"
17634         $LFS mkdir -i 1 -c 2 $DIR/$tdir/foo || error "(1) Fail to mkdir"
17635         touch $DIR/$tdir/guard || error "(2) Fail to create"
17636
17637         local PREFIX=$(str_repeat 'A' 128)
17638         echo "Create 1K hard links start at $(date)"
17639         createmany -l $DIR/$tdir/guard $DIR/$tdir/foo/${PREFIX}_ 1000 ||
17640                 error "(3) Fail to hard link"
17641
17642         echo "Links count should be right although linkEA overflow"
17643         stat $DIR/$tdir/guard || error "(4) Fail to stat"
17644         local linkcount=$(stat --format=%h $DIR/$tdir/guard)
17645         [ $linkcount -eq 1001 ] ||
17646                 error "(5) Unexpected hard links count: $linkcount"
17647
17648         echo "List all links start at $(date)"
17649         ls -l $DIR/$tdir/foo > /dev/null ||
17650                 error "(6) Fail to list $DIR/$tdir/foo"
17651
17652         echo "Unlink hard links start at $(date)"
17653         unlinkmany $DIR/$tdir/foo/${PREFIX}_ 1000 ||
17654                 error "(7) Fail to unlink"
17655 }
17656 run_test 409 "Large amount of cross-MDTs hard links on the same file"
17657
17658 test_410()
17659 {
17660         [[ $(lustre_version_code client) -lt $(version_code 2.9.59) ]] &&
17661                 skip "Need client version at least 2.9.59" && return
17662
17663         # Create a file, and stat it from the kernel
17664         local testfile=$DIR/$tfile
17665         touch $testfile
17666
17667         local run_id=$RANDOM
17668         local my_ino=$(stat --format "%i" $testfile)
17669
17670         # Try to insert the module. This will always fail as the
17671         # module is designed to not be inserted.
17672         insmod $LUSTRE/tests/kernel/kinode.ko run_id=$run_id fname=$testfile \
17673             &> /dev/null
17674
17675         # Anything but success is a test failure
17676         dmesg | grep -q \
17677             "lustre_kinode_$run_id: inode numbers are identical: $my_ino" ||
17678             error "no inode match"
17679 }
17680 run_test 410 "Test inode number returned from kernel thread"
17681
17682 cleanup_test411_cgroup() {
17683         trap 0
17684         rmdir "$1"
17685 }
17686
17687 test_411() {
17688         local cg_basedir=/sys/fs/cgroup/memory
17689         # LU-9966
17690         test -f "$cg_basedir/memory.kmem.limit_in_bytes" ||
17691                 { skip "no setup for cgroup"; return; }
17692
17693         dd if=/dev/zero of=$DIR/$tfile bs=1M count=100 conv=fsync ||
17694                 error "test file creation failed"
17695         cancel_lru_locks osc
17696
17697         # Create a very small memory cgroup to force a slab allocation error
17698         local cgdir=$cg_basedir/osc_slab_alloc
17699         mkdir $cgdir || error "cgroup mkdir '$cgdir' failed"
17700         trap "cleanup_test411_cgroup $cgdir" EXIT
17701         echo 2M > $cgdir/memory.kmem.limit_in_bytes
17702         echo 1M > $cgdir/memory.limit_in_bytes
17703
17704         # Should not LBUG, just be killed by oom-killer
17705         sh -c "echo \$$ > $cgdir/tasks && dd if=$DIR/$tfile of=/dev/null" &&
17706                 error "fail to trigger a memory allocation error"
17707
17708         cleanup_test411_cgroup $cgdir
17709
17710         return 0
17711 }
17712 run_test 411 "Slab allocation error with cgroup does not LBUG"
17713
17714 test_412() {
17715         [ $MDSCOUNT -lt 2 ] &&
17716                 skip "We need at least 2 MDTs for this test" && return
17717
17718         if [ $(lustre_version_code mds1) -lt $(version_code 2.10.55) ]; then
17719                 skip "Need server version at least 2.10.55" & exit 0
17720         fi
17721
17722         $LFS mkdir -i $((MDSCOUNT - 1)),$((MDSCOUNT - 2)) $DIR/$tdir ||
17723                 error "mkdir failed"
17724         $LFS getdirstripe $DIR/$tdir
17725         stripe_index=$($LFS getdirstripe -i $DIR/$tdir)
17726         [ $stripe_index -eq $((MDSCOUNT - 1)) ] ||
17727                 error "expect $((MDSCOUT - 1)) get $stripe_index"
17728         stripe_count=$($LFS getdirstripe -T $DIR/$tdir)
17729         [ $stripe_count -eq 2 ] ||
17730                 error "expect 2 get $stripe_count"
17731 }
17732 run_test 412 "mkdir on specific MDTs"
17733
17734 prep_801() {
17735         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
17736         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
17737                 skip "Need server version at least 2.9.55" & exit 0
17738         start_full_debug_logging
17739 }
17740
17741 post_801() {
17742         stop_full_debug_logging
17743 }
17744
17745 barrier_stat() {
17746         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
17747                 local st=$(do_facet mgs $LCTL barrier_stat $FSNAME |
17748                            awk '/The barrier for/ { print $7 }')
17749                 echo $st
17750         else
17751                 local st=$(do_facet mgs $LCTL barrier_stat -s $FSNAME)
17752                 echo \'$st\'
17753         fi
17754 }
17755
17756 barrier_expired() {
17757         local expired
17758
17759         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
17760                 expired=$(do_facet mgs $LCTL barrier_stat $FSNAME |
17761                           awk '/will be expired/ { print $7 }')
17762         else
17763                 expired=$(do_facet mgs $LCTL barrier_stat -t $FSNAME)
17764         fi
17765
17766         echo $expired
17767 }
17768
17769 test_801a() {
17770         prep_801
17771
17772         echo "Start barrier_freeze at: $(date)"
17773         #define OBD_FAIL_BARRIER_DELAY          0x2202
17774         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
17775         do_facet mgs $LCTL barrier_freeze $FSNAME 10 &
17776
17777         sleep 2
17778         local b_status=$(barrier_stat)
17779         echo "Got barrier status at: $(date)"
17780         [ "$b_status" = "'freezing_p1'" ] ||
17781                 error "(1) unexpected barrier status $b_status"
17782
17783         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
17784         wait
17785         b_status=$(barrier_stat)
17786         [ "$b_status" = "'frozen'" ] ||
17787                 error "(2) unexpected barrier status $b_status"
17788
17789         local expired=$(barrier_expired)
17790         echo "sleep $((expired + 3)) seconds, then the barrier will be expired"
17791         sleep $((expired + 3))
17792
17793         b_status=$(barrier_stat)
17794         [ "$b_status" = "'expired'" ] ||
17795                 error "(3) unexpected barrier status $b_status"
17796
17797         do_facet mgs $LCTL barrier_freeze $FSNAME 10 ||
17798                 error "(4) fail to freeze barrier"
17799
17800         b_status=$(barrier_stat)
17801         [ "$b_status" = "'frozen'" ] ||
17802                 error "(5) unexpected barrier status $b_status"
17803
17804         echo "Start barrier_thaw at: $(date)"
17805         #define OBD_FAIL_BARRIER_DELAY          0x2202
17806         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
17807         do_facet mgs $LCTL barrier_thaw $FSNAME &
17808
17809         sleep 2
17810         b_status=$(barrier_stat)
17811         echo "Got barrier status at: $(date)"
17812         [ "$b_status" = "'thawing'" ] ||
17813                 error "(6) unexpected barrier status $b_status"
17814
17815         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
17816         wait
17817         b_status=$(barrier_stat)
17818         [ "$b_status" = "'thawed'" ] ||
17819                 error "(7) unexpected barrier status $b_status"
17820
17821         #define OBD_FAIL_BARRIER_FAILURE        0x2203
17822         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2203
17823         do_facet mgs $LCTL barrier_freeze $FSNAME
17824
17825         b_status=$(barrier_stat)
17826         [ "$b_status" = "'failed'" ] ||
17827                 error "(8) unexpected barrier status $b_status"
17828
17829         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
17830         do_facet mgs $LCTL barrier_thaw $FSNAME
17831
17832         post_801
17833 }
17834 run_test 801a "write barrier user interfaces and stat machine"
17835
17836 test_801b() {
17837         prep_801
17838
17839         mkdir $DIR/$tdir || error "(1) fail to mkdir"
17840         createmany -d $DIR/$tdir/d 6 || "(2) fail to mkdir"
17841         touch $DIR/$tdir/d2/f10 || error "(3) fail to touch"
17842         touch $DIR/$tdir/d3/f11 || error "(4) fail to touch"
17843         touch $DIR/$tdir/d4/f12 || error "(5) fail to touch"
17844
17845         cancel_lru_locks mdc
17846
17847         # 180 seconds should be long enough
17848         do_facet mgs $LCTL barrier_freeze $FSNAME 180
17849
17850         local b_status=$(barrier_stat)
17851         [ "$b_status" = "'frozen'" ] ||
17852                 error "(6) unexpected barrier status $b_status"
17853
17854         mkdir $DIR/$tdir/d0/d10 &
17855         mkdir_pid=$!
17856
17857         touch $DIR/$tdir/d1/f13 &
17858         touch_pid=$!
17859
17860         ln $DIR/$tdir/d2/f10 $DIR/$tdir/d2/f14 &
17861         ln_pid=$!
17862
17863         mv $DIR/$tdir/d3/f11 $DIR/$tdir/d3/f15 &
17864         mv_pid=$!
17865
17866         rm -f $DIR/$tdir/d4/f12 &
17867         rm_pid=$!
17868
17869         stat $DIR/$tdir/d5 || error "(7) stat should succeed"
17870
17871         # To guarantee taht the 'stat' is not blocked
17872         b_status=$(barrier_stat)
17873         [ "$b_status" = "'frozen'" ] ||
17874                 error "(8) unexpected barrier status $b_status"
17875
17876         # let above commands to run at background
17877         sleep 5
17878
17879         ps -p $mkdir_pid || error "(9) mkdir should be blocked"
17880         ps -p $touch_pid || error "(10) touch should be blocked"
17881         ps -p $ln_pid || error "(11) link should be blocked"
17882         ps -p $mv_pid || error "(12) rename should be blocked"
17883         ps -p $rm_pid || error "(13) unlink should be blocked"
17884
17885         b_status=$(barrier_stat)
17886         [ "$b_status" = "'frozen'" ] ||
17887                 error "(14) unexpected barrier status $b_status"
17888
17889         do_facet mgs $LCTL barrier_thaw $FSNAME
17890         b_status=$(barrier_stat)
17891         [ "$b_status" = "'thawed'" ] ||
17892                 error "(15) unexpected barrier status $b_status"
17893
17894         wait $mkdir_pid || error "(16) mkdir should succeed"
17895         wait $touch_pid || error "(17) touch should succeed"
17896         wait $ln_pid || error "(18) link should succeed"
17897         wait $mv_pid || error "(19) rename should succeed"
17898         wait $rm_pid || error "(20) unlink should succeed"
17899
17900         post_801
17901 }
17902 run_test 801b "modification will be blocked by write barrier"
17903
17904 test_801c() {
17905         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
17906
17907         prep_801
17908
17909         stop mds2 || error "(1) Fail to stop mds2"
17910
17911         do_facet mgs $LCTL barrier_freeze $FSNAME 30
17912
17913         local b_status=$(barrier_stat)
17914         [ "$b_status" = "'expired'" -o "$b_status" = "'failed'" ] || {
17915                 do_facet mgs $LCTL barrier_thaw $FSNAME
17916                 error "(2) unexpected barrier status $b_status"
17917         }
17918
17919         do_facet mgs $LCTL barrier_rescan $FSNAME ||
17920                 error "(3) Fail to rescan barrier bitmap"
17921
17922         do_facet mgs $LCTL barrier_freeze $FSNAME 10
17923
17924         b_status=$(barrier_stat)
17925         [ "$b_status" = "'frozen'" ] ||
17926                 error "(4) unexpected barrier status $b_status"
17927
17928         do_facet mgs $LCTL barrier_thaw $FSNAME
17929         b_status=$(barrier_stat)
17930         [ "$b_status" = "'thawed'" ] ||
17931                 error "(5) unexpected barrier status $b_status"
17932
17933         local devname=$(mdsdevname 2)
17934
17935         start mds2 $devname $MDS_MOUNT_OPTS || error "(6) Fail to start mds2"
17936
17937         do_facet mgs $LCTL barrier_rescan $FSNAME ||
17938                 error "(7) Fail to rescan barrier bitmap"
17939
17940         post_801
17941 }
17942 run_test 801c "rescan barrier bitmap"
17943
17944 saved_MGS_MOUNT_OPTS=$MGS_MOUNT_OPTS
17945 saved_MDS_MOUNT_OPTS=$MDS_MOUNT_OPTS
17946 saved_OST_MOUNT_OPTS=$OST_MOUNT_OPTS
17947
17948 cleanup_802() {
17949         trap 0
17950
17951         stopall
17952         MGS_MOUNT_OPTS=$saved_MGS_MOUNT_OPTS
17953         MDS_MOUNT_OPTS=$saved_MDS_MOUNT_OPTS
17954         OST_MOUNT_OPTS=$saved_OST_MOUNT_OPTS
17955         setupall
17956 }
17957
17958 test_802() {
17959
17960         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
17961         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
17962                 skip "Need server version at least 2.9.55" & exit 0
17963
17964         mkdir $DIR/$tdir || error "(1) fail to mkdir"
17965
17966         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
17967                 error "(2) Fail to copy"
17968
17969         trap cleanup_802 EXIT
17970
17971         # sync by force before remount as readonly
17972         sync; sync_all_data; sleep 3; sync_all_data
17973
17974         stopall
17975
17976         MGS_MOUNT_OPTS=$(csa_add "$MGS_MOUNT_OPTS" -o rdonly_dev)
17977         MDS_MOUNT_OPTS=$(csa_add "$MDS_MOUNT_OPTS" -o rdonly_dev)
17978         OST_MOUNT_OPTS=$(csa_add "$OST_MOUNT_OPTS" -o rdonly_dev)
17979
17980         echo "Mount the server as read only"
17981         setupall server_only || error "(3) Fail to start servers"
17982
17983         echo "Mount client without ro should fail"
17984         mount_client $MOUNT &&
17985                 error "(4) Mount client without 'ro' should fail"
17986
17987         echo "Mount client with ro should succeed"
17988         mount_client $MOUNT ro ||
17989                 error "(5) Mount client with 'ro' should succeed"
17990
17991         echo "Modify should be refused"
17992         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
17993
17994         echo "Read should be allowed"
17995         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
17996                 error "(7) Read should succeed under ro mode"
17997
17998         cleanup_802
17999 }
18000 run_test 802 "simulate readonly device"
18001
18002 test_803() {
18003         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
18004         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.54) ] &&
18005                 skip "MDS needs to be newer than 2.10.54" && return
18006
18007         mkdir -p $DIR/$tdir
18008         # Create some objects on all MDTs to trigger related logs objects
18009         for idx in $(seq $MDSCOUNT); do
18010                 $LFS mkdir -c $MDSCOUNT -i $((idx % $MDSCOUNT)) \
18011                         $DIR/$tdir/dir${idx} ||
18012                         error "Fail to create $DIR/$tdir/dir${idx}"
18013         done
18014
18015         sync; sleep 5
18016         echo "before create:"
18017         $LFS df -i $MOUNT
18018         local before_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
18019
18020         for ((i=0; i<10; i++)); do
18021                 $LFS mkdir -c 1 -i 1 $DIR/$tdir/foo$i ||
18022                         error "Fail to create $DIR/$tdir/foo$i"
18023         done
18024
18025         sync; sleep 5
18026         echo "after create:"
18027         $LFS df -i $MOUNT
18028         local after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
18029
18030         [ $after_used -ge $((before_used + 10)) ] ||
18031                 error "before ($before_used) + 10 > after ($after_used)"
18032
18033         for ((i=0; i<10; i++)); do
18034                 rm -rf $DIR/$tdir/foo$i ||
18035                         error "Fail to remove $DIR/$tdir/foo$i"
18036         done
18037
18038         wait_delete_completed
18039         echo "after unlink:"
18040         $LFS df -i $MOUNT
18041         before_used=$after_used
18042         after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
18043
18044         [ $after_used -le $((before_used - 8)) ] ||
18045                 error "before ($before_used) - 8 < after ($after_used)"
18046 }
18047 run_test 803 "verify agent object for remote object"
18048
18049 test_804() {
18050         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
18051         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.54) ] &&
18052                 skip "MDS needs to be newer than 2.10.54" && return
18053
18054         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
18055                 skip "ldiskfs only test" && return 0
18056
18057         mkdir -p $DIR/$tdir
18058         $LFS mkdir -c 1 -i 1 $DIR/$tdir/dir0 ||
18059                 error "Fail to create $DIR/$tdir/dir0"
18060
18061         local fid=$($LFS path2fid $DIR/$tdir/dir0)
18062         local dev=$(mdsdevname 2)
18063
18064         do_facet mds2 "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
18065                 grep ${fid} || error "NOT found agent entry for dir0"
18066
18067         $LFS mkdir -c $MDSCOUNT -i 0 $DIR/$tdir/dir1 ||
18068                 error "Fail to create $DIR/$tdir/dir1"
18069
18070         touch $DIR/$tdir/dir1/foo0 ||
18071                 error "Fail to create $DIR/$tdir/dir1/foo0"
18072         fid=$($LFS path2fid $DIR/$tdir/dir1/foo0)
18073         local rc=0
18074
18075         for idx in $(seq $MDSCOUNT); do
18076                 dev=$(mdsdevname $idx)
18077                 do_facet mds${idx} \
18078                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
18079                         grep ${fid} && rc=$idx
18080         done
18081
18082         mv $DIR/$tdir/dir1/foo0 $DIR/$tdir/dir1/foo1 ||
18083                 error "Fail to rename foo0 to foo1"
18084         if [ $rc -eq 0 ]; then
18085                 for idx in $(seq $MDSCOUNT); do
18086                         dev=$(mdsdevname $idx)
18087                         do_facet mds${idx} \
18088                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
18089                         grep ${fid} && rc=$idx
18090                 done
18091         fi
18092
18093         mv $DIR/$tdir/dir1/foo1 $DIR/$tdir/dir1/foo2 ||
18094                 error "Fail to rename foo1 to foo2"
18095         if [ $rc -eq 0 ]; then
18096                 for idx in $(seq $MDSCOUNT); do
18097                         dev=$(mdsdevname $idx)
18098                         do_facet mds${idx} \
18099                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
18100                         grep ${fid} && rc=$idx
18101                 done
18102         fi
18103
18104         [ $rc -ne 0 ] || error "NOT found agent entry for foo"
18105
18106         ln $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir0/guard ||
18107                 error "Fail to link to $DIR/$tdir/dir1/foo2"
18108         mv $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir1/foo0 ||
18109                 error "Fail to rename foo2 to foo0"
18110         unlink $DIR/$tdir/dir1/foo0 ||
18111                 error "Fail to unlink $DIR/$tdir/dir1/foo0"
18112         rm -rf $DIR/$tdir/dir0 ||
18113                 error "Fail to rm $DIR/$tdir/dir0"
18114
18115         for idx in $(seq $MDSCOUNT); do
18116                 dev=$(mdsdevname $idx)
18117                 rc=0
18118
18119                 stop mds${idx}
18120                 run_e2fsck $(facet_active_host mds$idx) $dev -n ||
18121                         rc=$?
18122                 start mds${idx} $dev $MDS_MOUNT_OPTS ||
18123                         error "mount mds$idx failed"
18124                 df $MOUNT > /dev/null 2>&1
18125
18126                 # e2fsck should not return error
18127                 [ $rc -eq 0 ] ||
18128                         error "e2fsck detected error on MDT${idx}: rc=$rc"
18129         done
18130 }
18131 run_test 804 "verify agent entry for remote entry"
18132
18133 #
18134 # tests that do cleanup/setup should be run at the end
18135 #
18136
18137 test_900() {
18138         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
18139         local ls
18140         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
18141         $LCTL set_param fail_loc=0x903
18142
18143         cancel_lru_locks MGC
18144
18145         FAIL_ON_ERROR=true cleanup
18146         FAIL_ON_ERROR=true setup
18147 }
18148 run_test 900 "umount should not race with any mgc requeue thread"
18149
18150 complete $SECONDS
18151 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
18152 check_and_cleanup_lustre
18153 if [ "$I_MOUNTED" != "yes" ]; then
18154         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
18155 fi
18156 exit_status